|
Lines 1-6
Link Here
|
| 1 |
--- ./setup.py.orig 2011-12-14 16:33:47.000000000 -0800 |
1 |
--- setup.py 2012-05-03 13:47:11.000000000 -0700 |
| 2 |
+++ ./setup.py 2012-04-16 10:58:58.477390915 -0700 |
2 |
+++ setup.py 2012-06-01 11:40:31.000000000 -0700 |
| 3 |
@@ -17,67 +17,19 @@ |
3 |
@@ -17,74 +17,19 @@ |
| 4 |
|
4 |
|
| 5 |
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### |
5 |
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### |
| 6 |
|
6 |
|
|
Lines 54-59
Link Here
|
| 54 |
- DistUtilsExtra.auto.install_auto.run(self) |
54 |
- DistUtilsExtra.auto.install_auto.run(self) |
| 55 |
- update_data_path(self.prefix, previous_value) |
55 |
- update_data_path(self.prefix, previous_value) |
| 56 |
- |
56 |
- |
|
|
57 |
-from distutils.cmd import Command |
| 58 |
-class OverrideI18NCommand(Command): |
| 59 |
- def initialize_options(self): pass |
| 60 |
- def finalize_options(self): pass |
| 61 |
- def run(self): |
| 62 |
- self.distribution.data_files.append(('share/applications', ['pithos.desktop'])) |
| 63 |
- |
| 57 |
-from DistUtilsExtra.command.build_extra import build_extra |
64 |
-from DistUtilsExtra.command.build_extra import build_extra |
| 58 |
-from DistUtilsExtra.command.build_icons import build_icons |
65 |
-from DistUtilsExtra.command.build_icons import build_icons |
| 59 |
- |
66 |
- |
|
Lines 63-80
Link Here
|
| 63 |
name='pithos', |
70 |
name='pithos', |
| 64 |
- version='0.3', |
71 |
- version='0.3', |
| 65 |
- ext_modules=[], |
72 |
- ext_modules=[], |
| 66 |
- license='GPL-3', |
73 |
+ version='0.3.17', |
| 67 |
+ version='0.3.14', |
74 |
license='GPL-3', |
| 68 |
+ description='Pandora.com client for the GNOME desktop', |
|
|
| 69 |
author='Kevin Mehall', |
75 |
author='Kevin Mehall', |
| 70 |
author_email='km@kevinmehall.net', |
76 |
author_email='km@kevinmehall.net', |
| 71 |
- description='Pandora.com client for the GNOME desktop', |
77 |
description='Pandora.com client for the GNOME desktop', |
| 72 |
- #long_description='Here a longer description', |
78 |
- #long_description='Here a longer description', |
| 73 |
url='https://launchpad.net/pithos', |
79 |
url='https://launchpad.net/pithos', |
| 74 |
- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra} |
80 |
- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra, 'build_i18n':OverrideI18NCommand} |
| 75 |
- ) |
81 |
- ) |
| 76 |
- |
82 |
- |
| 77 |
+ license='GPL-3', |
|
|
| 78 |
+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], |
83 |
+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], |
| 79 |
+ package_dir = {'pithos':'pithos'} |
84 |
+ package_dir = {'pithos':'pithos'} |
| 80 |
+) |
85 |
+) |