1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------
# Copyright (c) 2009-2019 Jendrik Seipp
#
# RedNotebook is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# RedNotebook is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with RedNotebook; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# -----------------------------------------------------------------------
"""
This is the install file for RedNotebook.
To install the program, run "python setup.py install"
To do a (test) installation to a different dir: "python setup.py install --root=test-dir"
To only compile the translations, run "python setup.py build_trans"
"""
from distutils import cmd
from distutils.command.build import build as _build
from distutils.command.install_data import install_data as _install_data
from distutils.core import setup
import glob
import os
import subprocess
import sys
DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, DIR)
from rednotebook import info
MSGFMT = os.path.join(DIR, "rednotebook", "external", "msgfmt.py")
def build_translation_files(po_dir, locale_dir):
assert os.path.isdir(po_dir), po_dir
for src in sorted(glob.glob(os.path.join(po_dir, "*.po"))):
lang, _ = os.path.splitext(os.path.basename(src))
dest = os.path.join(locale_dir, lang, "LC_MESSAGES", "rednotebook.mo")
dest_dir = os.path.dirname(dest)
if not os.path.exists(dest_dir):
os.makedirs(dest_dir)
print("Compiling {src} to {dest}".format(**locals()))
subprocess.check_call([sys.executable, MSGFMT, "--output-file", dest, src])
class build_trans(cmd.Command):
"""
Code taken from mussorgsky
(https://garage.maemo.org/plugins/ggit/browse.php/?p=mussorgsky;a=blob;f=setup.py;hb=HEAD)
"""
description = "Compile .po files into .mo files"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
po_dir = os.path.join(os.path.dirname(os.curdir), "po")
dest_path = os.path.join("build", "locale")
build_translation_files(po_dir, dest_path)
class build(_build):
sub_commands = _build.sub_commands + [("build_trans", None)]
def run(self):
_build.run(self)
class install_data(_install_data):
def run(self):
for lang in os.listdir("build/locale/"):
lang_dir = os.path.join("share", "locale", lang, "LC_MESSAGES")
lang_file = os.path.join(
"build", "locale", lang, "LC_MESSAGES", "rednotebook.mo"
)
self.data_files.append((lang_dir, [lang_file]))
_install_data.run(self)
cmdclass = {"build": build, "build_trans": build_trans, "install_data": install_data}
parameters = {
"name": "rednotebook",
"version": info.version,
"description": "Graphical daily journal with calendar, templates and keyword searching",
"long_description": info.comments,
"author": info.author,
"author_email": info.author_mail,
"maintainer": info.author,
"maintainer_email": info.author_mail,
"url": info.url,
"license": "GPL",
"keywords": "journal, diary",
"scripts": ["rednotebook/rednotebook"],
"packages": [
"rednotebook",
"rednotebook.external",
"rednotebook.gui",
"rednotebook.util",
],
"package_data": {
"rednotebook": [
"images/*.png",
"images/rednotebook-icon/*.png",
"images/rednotebook-icon/rednotebook.svg",
"files/*.cfg",
"files/*.glade",
"files/*.lang",
"files/*.xml",
]
},
"data_files": [
("share/applications", ["data/rednotebook.desktop"]),
(
"share/icons/hicolor/scalable/apps",
["rednotebook/images/rednotebook-icon/rednotebook.svg"],
),
("share/metainfo", ["data/rednotebook.appdata.xml"]),
],
"cmdclass": cmdclass,
"extras_require": {
"dev_style": [
"black==19.10b0",
"flake8",
"flake8-2020",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-executable",
"isort>=5.0,<5.1",
"pyupgrade==2.6.2",
"vulture==1.6",
],
},
}
if __name__ == "__main__":
# Additionally use MANIFEST.in for image files
setup(**parameters)
|