diff options
author | nivit <nivit@FreeBSD.org> | 2010-12-18 05:20:56 +0800 |
---|---|---|
committer | nivit <nivit@FreeBSD.org> | 2010-12-18 05:20:56 +0800 |
commit | 0cd3f5a46e1231e3d22c94fa81363d1019399a80 (patch) | |
tree | f27eb968f7f66a86eff6fc45549f7f9c37e188d0 | |
parent | f5d226a4639c5894cdd0a3d31ec427bc7103e779 (diff) | |
download | freebsd-ports-graphics-0cd3f5a46e1231e3d22c94fa81363d1019399a80.tar.gz freebsd-ports-graphics-0cd3f5a46e1231e3d22c94fa81363d1019399a80.tar.zst freebsd-ports-graphics-0cd3f5a46e1231e3d22c94fa81363d1019399a80.zip |
- Update to 0.94.8
- Add files/patch-aksetup_helper.py
- Remove MD5 checksum from distinfo
-rw-r--r-- | audio/py-tagpy/Makefile | 4 | ||||
-rw-r--r-- | audio/py-tagpy/distinfo | 5 | ||||
-rw-r--r-- | audio/py-tagpy/files/patch-aksetup_helper.py | 17 |
3 files changed, 21 insertions, 5 deletions
diff --git a/audio/py-tagpy/Makefile b/audio/py-tagpy/Makefile index 6568c4012d2..e6654326dc9 100644 --- a/audio/py-tagpy/Makefile +++ b/audio/py-tagpy/Makefile @@ -6,8 +6,8 @@ # PORTNAME= tagpy -PORTVERSION= 0.94.7 -PORTREVISION= 1 +PORTVERSION= 0.94.8 +PORTREVISION= 0 CATEGORIES= audio python MASTER_SITES= CHEESESHOP \ http://nivi.interfree.it/distfiles/${PORTNAME}/ diff --git a/audio/py-tagpy/distinfo b/audio/py-tagpy/distinfo index 1bffc01934b..0b8d4f36a50 100644 --- a/audio/py-tagpy/distinfo +++ b/audio/py-tagpy/distinfo @@ -1,3 +1,2 @@ -MD5 (tagpy-0.94.7.tar.gz) = f2304a2e15511cce057c344ea5e15694 -SHA256 (tagpy-0.94.7.tar.gz) = 0fd077b6858091995c95c944b8621cd48a4246bdcb0bf4e44420ec3c5221e9b1 -SIZE (tagpy-0.94.7.tar.gz) = 150416 +SHA256 (tagpy-0.94.8.tar.gz) = 56eab8dd81510f8af18e19375a0ffd5cd25c8e555104be46a92c3dc08634a0dc +SIZE (tagpy-0.94.8.tar.gz) = 151986 diff --git a/audio/py-tagpy/files/patch-aksetup_helper.py b/audio/py-tagpy/files/patch-aksetup_helper.py new file mode 100644 index 00000000000..c51dcc1e600 --- /dev/null +++ b/audio/py-tagpy/files/patch-aksetup_helper.py @@ -0,0 +1,17 @@ +--- ./aksetup_helper.py.orig 2010-12-17 17:12:20.000000000 +0100 ++++ ./aksetup_helper.py 2010-12-17 17:12:30.000000000 +0100 +@@ -1,11 +1,11 @@ + # dealings with ez_setup ------------------------------------------------------ +-import distribute_setup +-distribute_setup.use_setuptools() ++#import distribute_setup ++#distribute_setup.use_setuptools() + + import setuptools + from setuptools import Extension + +-if 'distribute' not in setuptools.__file__: ++if False and 'distribute' not in setuptools.__file__: + print "-------------------------------------------------------------------------" + print "Setuptools conflict detected." + print "-------------------------------------------------------------------------" |