aboutsummaryrefslogtreecommitdiff
path: root/archivers/py-lzma
diff options
context:
space:
mode:
authorSofian Brabez <sbz@FreeBSD.org>2011-03-28 13:26:00 +0000
committerSofian Brabez <sbz@FreeBSD.org>2011-03-28 13:26:00 +0000
commitf83bf6e8a8fc8755bc3b09ca430e09b7bf35eefa (patch)
treec064f5ffb006f736caf1090068ce8323c0663c07 /archivers/py-lzma
parent1e195bd7ec33f67ce5ca6d7f6d981f2d7f953d3a (diff)
downloadports-f83bf6e8a8fc8755bc3b09ca430e09b7bf35eefa.tar.gz
ports-f83bf6e8a8fc8755bc3b09ca430e09b7bf35eefa.zip
- Update to 0.4.4
Approved by: jadawin@ (mentor)
Notes
Notes: svn path=/head/; revision=271935
Diffstat (limited to 'archivers/py-lzma')
-rw-r--r--archivers/py-lzma/Makefile2
-rw-r--r--archivers/py-lzma/distinfo4
-rw-r--r--archivers/py-lzma/files/patch-src__7zip__C__CpuArch.c26
3 files changed, 3 insertions, 29 deletions
diff --git a/archivers/py-lzma/Makefile b/archivers/py-lzma/Makefile
index f187be13cfef..69a38b67b1f5 100644
--- a/archivers/py-lzma/Makefile
+++ b/archivers/py-lzma/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= lzma
-PORTVERSION= 0.4.3
+PORTVERSION= 0.4.4
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/archivers/py-lzma/distinfo b/archivers/py-lzma/distinfo
index 9ef4d47fa527..d3e9cd94773c 100644
--- a/archivers/py-lzma/distinfo
+++ b/archivers/py-lzma/distinfo
@@ -1,2 +1,2 @@
-SHA256 (pylzma-0.4.3.tar.gz) = ddfc7fc7bfe1d4b84c88c981ce0c508a96766fdcdf53c415b63b3ca8f60a4239
-SIZE (pylzma-0.4.3.tar.gz) = 104857
+SHA256 (pylzma-0.4.4.tar.gz) = ba65fbeee504bd10af275399df10e5603a33226a3e22d393dfa59ae99765cff1
+SIZE (pylzma-0.4.4.tar.gz) = 106537
diff --git a/archivers/py-lzma/files/patch-src__7zip__C__CpuArch.c b/archivers/py-lzma/files/patch-src__7zip__C__CpuArch.c
deleted file mode 100644
index d138e1ffc2b4..000000000000
--- a/archivers/py-lzma/files/patch-src__7zip__C__CpuArch.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./src/7zip/C/CpuArch.c.orig 2010-07-21 22:13:50.000000000 +0200
-+++ ./src/7zip/C/CpuArch.c 2011-01-27 02:31:44.000000000 +0100
-@@ -72,14 +72,15 @@
-
- #else
-
-- __asm__ __volatile__ (
-- "cpuid"
-- : "=a" (*a) ,
-- "=b" (*b) ,
-- "=c" (*c) ,
-- "=d" (*d)
-- : "0" (function)) ;
--
-+ /* fix GCC build error with -fPIC by storing ebx value before calling cpuid */
-+ __asm__ __volatile__(
-+ "pushl %%ebx \n\t"
-+ "cpuid \n\t"
-+ "movl %%ebx, %1 \n\t"
-+ "popl %%ebx \n\t"
-+ : "=a"(*a), "=r"(*b), "=c"(*c), "=d"(*d)
-+ : "a"(function)
-+ : "cc");
- #endif
-
- #else