[113902] trunk/dports/lang/python34

jwa at macports.org jwa at macports.org
Mon Nov 25 05:50:26 PST 2013


Revision: 113902
          https://trac.macports.org/changeset/113902
Author:   jwa at macports.org
Date:     2013-11-25 05:50:26 -0800 (Mon, 25 Nov 2013)
Log Message:
-----------
python34: version bump to 3.4.0b1, remove an unnecessary patch due to upstream

Modified Paths:
--------------
    trunk/dports/lang/python34/Portfile

Removed Paths:
-------------
    trunk/dports/lang/python34/files/patch-Lib-distutils-dist.py.diff

Modified: trunk/dports/lang/python34/Portfile
===================================================================
--- trunk/dports/lang/python34/Portfile	2013-11-25 13:46:14 UTC (rev 113901)
+++ trunk/dports/lang/python34/Portfile	2013-11-25 13:50:26 UTC (rev 113902)
@@ -7,9 +7,8 @@
 name                    python34
 
 # Remember to keep py34-tkinter and py34-gdbm's versions sync'd with this
-version                 3.4.0a4
-epoch                   20131020
-revision                1
+version                 3.4.0b1
+epoch                   20131124
 
 set major               [lindex [split $version .] 0]
 set branch              [join [lrange [split ${version} .] 0 1] .]
@@ -30,12 +29,11 @@
 
 use_xz					yes
 
-checksums           rmd160  20d105639c23869b7abab051f70e300a237ec1ca \
-                    sha256  882c08c6482473bc947133a070485bce64bbc43ca27c7008cd293561faf2d193
+checksums               rmd160  bef39d01fa6b67e53b61cf65baff317474e7ffd3 \
+                        sha256  98d6f43bd6b31d334c094d968c4e2ae1eb60f398b93fae81e606c0ea17ee0241
 
 patchfiles              patch-setup.py.diff \
                         patch-Lib-cgi.py.diff \
-                        patch-Lib-distutils-dist.py.diff \
                         patch-configure.diff \
                         patch-setup.py-disabled_modules.diff \
                         patch-libedit.diff

Deleted: trunk/dports/lang/python34/files/patch-Lib-distutils-dist.py.diff
===================================================================
--- trunk/dports/lang/python34/files/patch-Lib-distutils-dist.py.diff	2013-11-25 13:46:14 UTC (rev 113901)
+++ trunk/dports/lang/python34/files/patch-Lib-distutils-dist.py.diff	2013-11-25 13:50:26 UTC (rev 113902)
@@ -1,51 +0,0 @@
---- Lib/distutils/dist.py.orig	2008-07-26 16:09:45.000000000 -0400
-+++ Lib/distutils/dist.py	2009-01-31 11:37:17.000000000 -0500
-@@ -54,6 +54,7 @@
-                       ('quiet', 'q', "run quietly (turns verbosity off)"),
-                       ('dry-run', 'n', "don't actually do anything"),
-                       ('help', 'h', "show detailed help message"),
-+                      ('no-user-cfg', None,'ignore pydistutils.cfg in your home directory'),
-                      ]
- 
-     # 'common_usage' is a short (2-3 line) string describing the common
-@@ -260,6 +261,12 @@
-                     else:
-                         sys.stderr.write(msg + "\n")
- 
-+        # no-user-cfg is handled before other command line args
-+        # because other args override the config files, and this
-+        # one is needed before we can load the config files.
-+        # If attrs['script_args'] wasn't passed, assume false.
-+        self.want_user_cfg = '--no-user-cfg' not in (self.script_args or [])
-+
-         self.finalize_options()
- 
-     def get_option_dict(self, command):
-@@ -315,6 +322,9 @@
-         Distutils __inst__.py file lives), a file in the user's home
-         directory named .pydistutils.cfg on Unix and pydistutils.cfg
-         on Windows/Mac, and setup.cfg in the current directory.
-+
-+        The file in the user's home directory can be disabled with the
-+        --no-user-cfg option.
-         """
-         files = []
-         check_environ()
-@@ -335,7 +345,7 @@
- 
-         # And look for the user config file
-         user_file = os.path.join(os.path.expanduser('~'), user_filename)
--        if os.path.isfile(user_file):
-+        if self.want_user_cfg and os.path.isfile(user_file):
-             files.append(user_file)
- 
-         # All platforms support local setup.cfg
-@@ -343,6 +353,8 @@
-         if os.path.isfile(local_file):
-             files.append(local_file)
- 
-+        if DEBUG:
-+            print("using config files: %s" % ', '.join(files))
-         return files
- 
-     def parse_config_files(self, filenames=None):
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20131125/0848c82e/attachment.html>


More information about the macports-changes mailing list