deluge 1.3.0 checksum error

David Evans devans at macports.org
Thu Sep 30 11:55:55 PDT 2010


 On 9/30/10 11:15 AM, Joshua Root wrote:
> Going back to the OP's concerns: since the old version is available on
> our server, you can just diff its contents against the new one's to see
> what changed.
>
> - Josh
Changes are limited to minor changes to setup.py and a date update to
the ChangeLog
Nothing that looks too nefarious.

Diff follows.

Will update port per Ryan's suggestion

Dave

diff -ur deluge-mp/deluge-1.3.0/ChangeLog deluge-dt/deluge-1.3.0/ChangeLog
--- deluge-mp/deluge-1.3.0/ChangeLog    2010-09-13 18:22:08.000000000 -0700
+++ deluge-dt/deluge-1.3.0/ChangeLog    2010-09-18 11:31:31.000000000 -0700
@@ -1,4 +1,4 @@
-=== Deluge 1.3.0 (13 September 2010) ===
+=== Deluge 1.3.0 (18 September 2010) ===
        * Fix issue where the save_timer is cancelled when it's not active
        * Fix unhandled exception when adding a torrent to the session
        * Moved xdg import so it is not called on Windows, where it is
unused. fixes #1343
diff -ur deluge-mp/deluge-1.3.0/setup.py deluge-dt/deluge-1.3.0/setup.py
--- deluge-mp/deluge-1.3.0/setup.py     2010-09-13 19:23:05.000000000 -0700
+++ deluge-dt/deluge-1.3.0/setup.py     2010-09-18 11:31:31.000000000 -0700
@@ -35,7 +35,6 @@
 from distutils.command.build import build as _build
 from distutils.command.build_ext import build_ext as _build_ext
 from distutils.command.clean import clean as _clean
-from setuptools.command.install import install as _install
 try:
     from sphinx.setup_command import BuildDoc
 except ImportError:
@@ -387,14 +386,6 @@
             self.run_command(cmd_name)
         _clean.run(self)
 
-class install(_install):
-    def run(self):
-        for cmd_name in self.get_sub_commands():
-            self.run_command(cmd_name)
-        _install.run(self)
-        if not self.root:
-            self.do_egg_install()
-
 cmdclass = {
     'build': build,
     'build_trans': build_trans,
@@ -404,7 +395,6 @@
     'build_ext_debug': build_ext_debug,
     'clean_plugins': clean_plugins,
     'clean': clean,
-    'install': install
 }
 
 # Data files to be installed to the system
@@ -452,14 +442,11 @@
     data_files = _data_files,
     ext_package = "deluge",
     ext_modules = _ext_modules,
-    include_package_data = True,
     package_data = {"deluge": ["ui/gtkui/glade/*.glade",
                                 "data/pixmaps/*.png",
                                 "data/pixmaps/*.svg",
                                 "data/pixmaps/*.ico",
                                 "data/pixmaps/flags/*.png",
-                                "data/revision",
-                                "data/GeoIP.dat",
                                 "plugins/*.egg",
                                 "i18n/*.pot",
                                 "i18n/*/LC_MESSAGES/*.mo",
@@ -470,8 +457,16 @@
                                 "ui/web/images/*.gif",
                                 "ui/web/images/*.png",
                                 "ui/web/js/*.js",
+                                "ui/web/js/*/*.js",
+                                "ui/web/js/*/.order",
+                                "ui/web/js/*/*/*.js",
+                                "ui/web/js/*/*/.order",
                                 "ui/web/render/*.html",
-                                "ui/web/themes/*/*/*/*"
+                                "ui/web/themes/css/*.css",
+                                "ui/web/themes/images/*/*.gif",
+                                "ui/web/themes/images/*/*.png",
+                                "ui/web/themes/images/*/*/*.gif",
+                                "ui/web/themes/images/*/*/*.png"
                                 ]},
     packages = find_packages(exclude=["plugins", "docs", "tests"]),
     entry_points = """



More information about the macports-users mailing list