[Pkg-privacy-commits] [onioncircuits] 17/62: Install i18n

Intrigeri intrigeri at moszumanska.debian.org
Thu Feb 18 20:20:02 UTC 2016


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to branch master
in repository onioncircuits.

commit 1a9432b2597fa7e4bbbb3c04979021a6b21db42f
Author: Tails developers <tails at boum.org>
Date:   Sat Feb 21 17:10:03 2015 +0100

    Install i18n
---
 README   |  4 +++-
 setup.py | 32 ++++++++++++++++++++++++++++++--
 2 files changed, 33 insertions(+), 3 deletions(-)

diff --git a/README b/README
index b5008d4..ef42ebd 100644
--- a/README
+++ b/README
@@ -9,10 +9,12 @@ Tor Monitor depends on python (>= 2.7), python-gi (>= 1.42), python-stem
 
 It recommends pycountry (>= 1.8).
 
+Tor Monitor also build-depends on python-distutils-extra.
+
 On Debian system (>= 8.0), these can be installed with:
 
     apt-get install python-gi python-stem python-pycountry \
-         gir1.2-gtk-3.0 gir1.2-glib-2.0
+         python-distutils-extra gir1.2-gtk-3.0 gir1.2-glib-2.0
 
 Installation
 ============
diff --git a/setup.py b/setup.py
index c45a6c4..90d6569 100755
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,38 @@
 #!/usr/bin/env python
-from distutils.core import setup
+#
+# Tor Monitor - a GTK applicaton to display Tor circuits and streams
+# Copyright (C) 2015  Tails developers
+#
+# This program 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 3 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
+from distutils.core import setup, Command
+from DistUtilsExtra.command import *
 
 setup(name='tormonitor',
       version='0.1',
+      description='a GTK applicaton to display Tor circuits and streams',
+      author='Tails developers',
+      author_email='tails at boum.org',
+      license='GNU GPL v3',
       scripts=['tormonitor'],
       data_files=[('share/icons/hicolor/scalable/apps', ['tormonitor.svg']),
                   ('share/applications', ['tormonitor.desktop'])],
-      requires=['stem','gi']
+      requires=['stem', 'gi'],
+      cmdclass = { "build" : build_extra.build_extra,
+                   "build_i18n" :  build_i18n.build_i18n,
+                   "build_help" :  build_help.build_help,
+                   "build_icons" :  build_icons.build_icons,
+                   "clean": clean_i18n.clean_i18n,
+                 }
      )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/onioncircuits.git



More information about the Pkg-privacy-commits mailing list