Merge pull request #2623 from alihanozturk/master

programming/language/python/* v.bump and rebuild
This commit is contained in:
Ertuğrul Erata
2017-01-25 23:23:20 +02:00
committed by GitHub
55 changed files with 653 additions and 228 deletions
+7 -4
View File
@@ -8,16 +8,19 @@ from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir="jbigkit"
def build():
autotools.make("CC=%s CFLAGS='%s'" % (get.CC(), get.CFLAGS()))
def check():
autotools.make("test")
autotools.make("-j1 test")
def install():
autotools.rawInstall("DESTDIR=%s prefix=/usr libdir=/usr/lib" % get.installDIR())
pisitools.insinto("/usr/include/", "libjbig/jbig*.h")
pisitools.insinto("/usr/lib/", "libjbig/libjbig*.so")
pisitools.insinto("/usr/bin/", "pbmtools/jbgtopbm")
pisitools.insinto("/usr/bin/", "pbmtools/pbmtojbg")
pisitools.insinto("/usr/bin/", "pbmtools/jbgtopbm85")
pisitools.insinto("/usr/bin/", "pbmtools/pbmtojbg85")
pisitools.doman("pbmtools/jbgtopbm.1", "pbmtools/pbmtojbg.1")
pisitools.dodoc("ANNOUNCE", "CHANGES", "COPYING", "TODO")
@@ -1,186 +0,0 @@
diff -Naur jbigkit/libjbig/Makefile jbigkit.oden/libjbig/Makefile
--- jbigkit/libjbig/Makefile 2008-08-30 19:20:52.000000000 +0200
+++ jbigkit.oden/libjbig/Makefile 2009-01-31 20:12:02.000000000 +0100
@@ -3,27 +3,51 @@
# Select an ANSI/ISO C compiler here, GNU gcc is recommended
CC = gcc
+CFLAGS = -g -O2 -Wall -ansi -pedantic -fPIC # --coverage
+LDFLAGS =
-# Options for the compiler: A high optimization level is suggested
-CFLAGS = -g -O -Wall -ansi -pedantic # --coverage
-
-all: libjbig.a tstcodec tstcodec85
-
-tstcodec: tstcodec.o jbig.o jbig_ar.o
- $(CC) $(CFLAGS) -o tstcodec $+
-
-tstcodec85: tstcodec85.o jbig85.o jbig_ar.o
- $(CC) $(CFLAGS) -o tstcodec85 $+
-
-libjbig.a: jbig.o jbig_ar.o
- rm -f libjbig.a
- ar rc libjbig.a jbig.o jbig_ar.o
- -ranlib libjbig.a
-
-libjbig85.a: jbig85.o jbig_ar.o
- rm -f libjbig85.a
- ar rc libjbig85.a jbig85.o jbig_ar.o
- -ranlib libjbig85.a
+prefix=/usr/local
+libdir=$(prefix)/lib
+includedir=$(prefix)/include
+bindir=$(prefix)/bin
+mandir=$(prefix)/share/man
+
+LT_CURRENT=1
+LT_REVISION=0
+LT_AGE=0
+
+all: libjbig.la libjbig85.la tstcodec tstcodec85
+
+tstcodec: tstcodec.o libjbig.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(LDFLAGS) \
+ -o tstcodec tstcodec.o libjbig.la
+
+tstcodec85: tstcodec85.o libjbig85.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(LDFLAGS) \
+ -o tstcodec85 tstcodec85.o libjbig85.la
+
+%.lo: %.c
+ libtool --mode=compile --tag=CC $(CC) $(CFLAGS) -c $*.c
+
+libjbig.la: jbig.lo jbig_ar.lo
+ libtool --mode=link --tag=CC $(CC) $(LDFLAGS) \
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
+ -o libjbig.la jbig.lo jbig_ar.lo -rpath $(libdir)
+
+libjbig85.la: jbig85.lo jbig_ar.lo
+ libtool --mode=link --tag=CC $(CC) $(LDFLAGS) \
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
+ -o libjbig85.la jbig85.lo jbig_ar.lo -rpath $(libdir)
+
+jbig.lo: jbig.c jbig.h
+jbig85.lo: jbig85.c jbig.h
+
+install:
+ install -m0755 -d $(DESTDIR)$(libdir)
+ install -m0755 -d $(DESTDIR)$(includedir)
+ libtool --mode=install install libjbig.la $(DESTDIR)$(libdir)
+ libtool --mode=install install libjbig85.la $(DESTDIR)$(libdir)
+ install -m0644 jbig85.h jbig_ar.h jbig.h $(DESTDIR)$(includedir)
jbig.o: jbig.c jbig.h jbig_ar.h
jbig85.o: jbig85.c jbig85.h jbig_ar.h
@@ -46,3 +70,5 @@
clean:
rm -f *.{o,gcda,gcno,gcov} *~ core gmon.out dbg_d\=??.pbm t82test.pbm
rm -f tstcodec tstcodec85
+ rm -rf .libs
+ rm -f *.*o *.*a
diff -Naur jbigkit/Makefile jbigkit.oden/Makefile
--- jbigkit/Makefile 2008-08-30 22:40:22.000000000 +0200
+++ jbigkit.oden/Makefile 2009-01-31 20:11:24.000000000 +0100
@@ -10,8 +10,6 @@
CFLAGS = $(CCFLAGS) -I../libjbig
-VERSION=2.0
-
all: lib pbm
@echo "Enter 'make test' in order to start some automatic tests."
@@ -25,6 +23,10 @@
(cd libjbig; make "CC=$(CC)" "CFLAGS=$(CFLAGS)" test)
(cd pbmtools; make "CC=$(CC)" "CFLAGS=$(CFLAGS)" test)
+install:
+ make -C libjbig install
+ make -C pbmtools install
+
clean:
rm -f *~ core
(cd libjbig; make clean)
diff -Naur jbigkit/pbmtools/Makefile jbigkit.oden/pbmtools/Makefile
--- jbigkit/pbmtools/Makefile 2008-08-26 00:26:39.000000000 +0200
+++ jbigkit.oden/pbmtools/Makefile 2009-01-31 20:11:24.000000000 +0100
@@ -5,37 +5,50 @@
CC = gcc
# Options for the compiler
-CFLAGS = -g -Wall -ansi -pedantic -I../libjbig # --coverage
+CFLAGS = -g -Wall -ansi -pedantic -fPIC # --coverage
+CPPFLAGS = -I../libjbig
+LDFLAGS =
+
+prefix=/usr/local
+libdir=$(prefix)/lib
+includedir=$(prefix)/include
+bindir=$(prefix)/bin
+mandir=$(prefix)/share/man
.SUFFIXES: .1 .5 .txt $(SUFFIXES)
all: pbmtojbg jbgtopbm pbmtojbg85 jbgtopbm85 \
pbmtojbg.txt jbgtopbm.txt pbm.txt pgm.txt
-pbmtojbg: pbmtojbg.o ../libjbig/libjbig.a
- $(CC) $(CFLAGS) -o pbmtojbg pbmtojbg.o -L../libjbig -ljbig
-
-jbgtopbm: jbgtopbm.o ../libjbig/libjbig.a
- $(CC) $(CFLAGS) -o jbgtopbm jbgtopbm.o -L../libjbig -ljbig
-
-pbmtojbg85: pbmtojbg85.o ../libjbig/libjbig85.a
- $(CC) $(CFLAGS) -o pbmtojbg85 pbmtojbg85.o -L../libjbig -ljbig85
-
-jbgtopbm85: jbgtopbm85.o ../libjbig/libjbig85.a
- $(CC) $(CFLAGS) -o jbgtopbm85 jbgtopbm85.o -L../libjbig -ljbig85
+pbmtojbg: pbmtojbg.o ../libjbig/libjbig.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \
+ -o pbmtojbg pbmtojbg.o ../libjbig/libjbig.la
+
+jbgtopbm: jbgtopbm.o ../libjbig/libjbig.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \
+ -o jbgtopbm jbgtopbm.o ../libjbig/libjbig.la
+
+pbmtojbg85: pbmtojbg85.o ../libjbig/libjbig85.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \
+ -o pbmtojbg85 pbmtojbg85.o ../libjbig/libjbig85.la
+
+jbgtopbm85: jbgtopbm85.o ../libjbig/libjbig85.la
+ libtool --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \
+ -o jbgtopbm85 jbgtopbm85.o ../libjbig/libjbig85.la
jbgtopbm.o: jbgtopbm.c ../libjbig/jbig.h
pbmtojbg.o: pbmtojbg.c ../libjbig/jbig.h
jbgtopbm85.o: jbgtopbm85.c ../libjbig/jbig85.h
pbmtojbg85.o: pbmtojbg85.c ../libjbig/jbig85.h
-../libjbig/libjbig.a: ../libjbig/jbig.c ../libjbig/jbig.h \
- ../libjbig/jbig_ar.c ../libjbig/jbig_ar.h
- make -C ../libjbig libjbig.a
-
-../libjbig/libjbig85.a: ../libjbig/jbig85.c ../libjbig/jbig85.h \
- ../libjbig/jbig_ar.c ../libjbig/jbig_ar.h
- make -C ../libjbig libjbig85.a
+install:
+ install -m0755 -d $(DESTDIR)$(bindir)
+ install -m0755 -d $(DESTDIR)$(mandir)/man1
+ install -m0755 -d $(DESTDIR)$(mandir)/man5
+ libtool --mode=install install pbmtojbg jbgtopbm \
+ pbmtojbg85 jbgtopbm85 $(DESTDIR)$(bindir)
+ install -m0644 pbmtojbg.1 jbgtopbm.1 $(DESTDIR)$(mandir)/man1
+ install -m0644 pbm.5 pgm.5 $(DESTDIR)$(mandir)/man5
test: test82 test85
@@ -149,6 +162,7 @@
groff -man -Tascii -P -c -P -b -P -u $< >$@
clean:
- rm -f *.o *~ core pbmtojbg jbgtopbm pbmtojbg85 jbgtopbm85
+ rm -f *.*o *.*a *~ core pbmtojbg jbgtopbm pbmtojbg85 jbgtopbm85
rm -f test-*.jbg test-*.pbm test-*.pgm test-*.jbg85 test-*.pbm85
rm -f *.gcda *.gcno
+ rm -rf .libs
@@ -0,0 +1,77 @@
diff -up jbigkit-2.1/pbmtools/pbmtojbg85.c.warnings jbigkit-2.1/pbmtools/pbmtojbg85.c
--- jbigkit-2.1/pbmtools/pbmtojbg85.c.warnings 2008-08-26 00:26:39.000000000 +0200
+++ jbigkit-2.1/pbmtools/pbmtojbg85.c 2012-07-17 16:24:56.741332942 +0200
@@ -72,9 +72,12 @@ static unsigned long getint(FILE *f)
while ((c = getc(f)) != EOF && !(c == 13 || c == 10)) ;
if (c != EOF) {
ungetc(c, f);
- fscanf(f, "%lu", &i);
+ if (fscanf(f, "%lu", &i) != 1) {
+ /* should never fail, since c must be a digit */
+ fprintf(stderr, "Unexpected failure reading digit '%c'\n", c);
+ exit(1);
+ }
}
-
return i;
}
@@ -239,7 +242,9 @@ int main (int argc, char **argv)
break;
case '4':
/* PBM raw binary format */
- fread(next_line, bpl, 1, fin);
+ if (fread(next_line, bpl, 1, fin) != 1) {
+ /* silence compiler warnings; ferror/feof checked below */
+ }
break;
default:
fprintf(stderr, "Unsupported PBM type P%c!\n", type);
diff -up jbigkit-2.1/pbmtools/pbmtojbg.c.warnings jbigkit-2.1/pbmtools/pbmtojbg.c
--- jbigkit-2.1/pbmtools/pbmtojbg.c.warnings 2008-07-16 22:59:41.000000000 +0200
+++ jbigkit-2.1/pbmtools/pbmtojbg.c 2012-07-17 16:23:46.584285686 +0200
@@ -88,7 +88,11 @@ static unsigned long getint(FILE *f)
while ((c = getc(f)) != EOF && !(c == 13 || c == 10)) ;
if (c != EOF) {
ungetc(c, f);
- fscanf(f, "%lu", &i);
+ if (fscanf(f, "%lu", &i) != 1) {
+ /* should never fail, since c must be a digit */
+ fprintf(stderr, "Unexpected failure reading digit '%c'\n", c);
+ exit(1);
+ }
}
return i;
@@ -302,7 +306,9 @@ int main (int argc, char **argv)
break;
case '4':
/* PBM raw binary format */
- fread(bitmap[0], bitmap_size, 1, fin);
+ if (fread(bitmap[0], bitmap_size, 1, fin) != 1) {
+ /* silence compiler warnings; ferror/feof checked below */
+ }
break;
case '2':
case '5':
@@ -314,8 +320,18 @@ int main (int argc, char **argv)
for (j = 0; j < bpp; j++)
image[x * bpp + (bpp - 1) - j] = v >> (j * 8);
}
- } else
- fread(image, width * height, bpp, fin);
+ } else {
+ if (fread(image, width * height, bpp, fin) != (size_t) bpp) {
+ if (ferror(fin)) {
+ fprintf(stderr, "Problem while reading input file '%s", fnin);
+ perror("'");
+ exit(1);
+ } else {
+ fprintf(stderr, "Unexpected end of input file '%s'!\n", fnin);
+ exit(1);
+ }
+ }
+ }
jbg_split_planes(width, height, planes, encode_planes, image, bitmap,
use_graycode);
free(image);
@@ -0,0 +1,160 @@
diff -Naur jbigkit-2.1.old/libjbig/Makefile jbigkit-2.1/libjbig/Makefile
--- jbigkit-2.1.old/libjbig/Makefile 2014-03-27 19:47:15.000000000 +0100
+++ jbigkit-2.1/libjbig/Makefile 2014-08-04 10:45:31.865773710 +0200
@@ -4,25 +4,27 @@
CC = gcc
# Options for the compiler: A high optimization level is suggested
-CFLAGS = -g -O -W -Wall -ansi -pedantic # --coverage
+CFLAGS = $(RPM_OPT_FLAGS) -W -Wall -ansi -pedantic # --coverage
+PICFLAGS := -fPIC -DPIC
-all: libjbig.a libjbig85.a tstcodec tstcodec85
+all: libjbig.so.$(VERSION) tstcodec tstcodec85
-tstcodec: tstcodec.o jbig.o jbig_ar.o
- $(CC) $(CFLAGS) -o tstcodec tstcodec.o jbig.o jbig_ar.o
+tstcodec: tstcodec.o libjbig.so
+ $(CC) $(CFLAGS) -o tstcodec $< -L. -ljbig
-tstcodec85: tstcodec85.o jbig85.o jbig_ar.o
- $(CC) $(CFLAGS) -o tstcodec85 tstcodec85.o jbig85.o jbig_ar.o
+tstcodec85: tstcodec85.o libjbig85.so
+ $(CC) $(CFLAGS) -o tstcodec85 $^ -L. -ljbig
-libjbig.a: jbig.o jbig_ar.o
- rm -f libjbig.a
- ar rc libjbig.a jbig.o jbig_ar.o
- -ranlib libjbig.a
+%.so: %.so.$(VERSION)
+ ln -sf $< $@
-libjbig85.a: jbig85.o jbig_ar.o
- rm -f libjbig85.a
- ar rc libjbig85.a jbig85.o jbig_ar.o
- -ranlib libjbig85.a
+libjbig.so.$(VERSION): jbig.o jbig_ar.o
+ $(CC) $(CFLAGS) -shared -Wl,-soname,$@ -o $@ $^
+
+libjbig85.so.$(VERSION): jbig85.o jbig_ar.o
+ $(CC) $(CFLAGS) -shared -Wl,-soname,$@ -o $@ $^
+
+jbig.o jbig85.o jbig_ar.o: CFLAGS += $(PICFLAGS)
jbig.o: jbig.c jbig.h jbig_ar.h
jbig85.o: jbig85.c jbig85.h jbig_ar.h
@@ -43,11 +45,11 @@
clang --analyze *.c
test: tstcodec tstcodec85
- ./tstcodec
- ./tstcodec85
+ LD_LIBRARY_PATH=`pwd` ./tstcodec
+ LD_LIBRARY_PATH=`pwd` ./tstcodec85
t82test.pbm: tstcodec
- ./tstcodec $@
+ LD_LIBRARY_PATH=`pwd` ./tstcodec $@
clean:
rm -f *.o *.gcda *.gcno *.gcov *.plist *~ core gmon.out dbg_d\=??.pbm
diff -Naur jbigkit-2.1.old/Makefile jbigkit-2.1/Makefile
--- jbigkit-2.1.old/Makefile 2014-03-27 19:47:15.000000000 +0100
+++ jbigkit-2.1/Makefile 2014-08-04 10:52:09.242027746 +0200
@@ -4,25 +4,26 @@
CC = gcc
# Options for the compiler: A high optimization level is suggested
-CFLAGS = -O2 -W -Wno-unused-result
+CFLAGS = $(RPM_OPT_FLAGS) -W -Wno-unused-result
# CFLAGS = -O -g -W -Wall -Wno-unused-result -ansi -pedantic # -DDEBUG
export CC CFLAGS
VERSION=2.1
+export VERSION
all: lib pbm
@echo "Enter 'make test' in order to start some automatic tests."
lib:
- cd libjbig && $(MAKE) -e
+ make -C libjbig
pbm: lib
- cd pbmtools && $(MAKE) -e
+ make -C pbmtools
test: lib pbm
- cd libjbig && $(MAKE) test
- cd pbmtools && $(MAKE) test
+ LD_LIBRARY_PATH=`pwd`/libjbig make -C libjbig test
+ LD_LIBRARY_PATH=`pwd`/libjbig make -C pbmtools test
analyze:
cd libjbig && $(MAKE) analyze
@@ -30,8 +31,8 @@
clean:
rm -f *~ core
- cd libjbig && $(MAKE) clean
- cd pbmtools && $(MAKE) clean
+ make -C libjbig clean
+ make -C pbmtools clean
distribution:
rm -rf jbigkit-$(VERSION)
diff -Naur jbigkit-2.1.old/pbmtools/Makefile jbigkit-2.1/pbmtools/Makefile
--- jbigkit-2.1.old/pbmtools/Makefile 2014-03-27 19:47:15.000000000 +0100
+++ jbigkit-2.1/pbmtools/Makefile 2014-08-04 10:49:47.694581174 +0200
@@ -4,26 +4,26 @@
CC = gcc
# Options for the compiler
-CFLAGS = -g -O -W -Wall -Wno-unused-result -ansi -pedantic # --coverage
+CFLAGS = $(RPM_OPT_FLAGS) -W -Wall -Wno-unused-result -ansi -pedantic # --coverage
CPPFLAGS = -I../libjbig
.SUFFIXES: .1 .5 .txt $(SUFFIXES)
.PHONY: txt test test82 test85 clean
-all: pbmtojbg jbgtopbm pbmtojbg85 jbgtopbm85 txt
+all: pbmtojbg jbgtopbm pbmtojbg85 jbgtopbm85 # txt
txt: pbmtojbg.txt jbgtopbm.txt pbm.txt pgm.txt
-pbmtojbg: pbmtojbg.o ../libjbig/libjbig.a
+pbmtojbg: pbmtojbg.o ../libjbig/libjbig.so
$(CC) $(CFLAGS) -o pbmtojbg pbmtojbg.o -L../libjbig -ljbig
-jbgtopbm: jbgtopbm.o ../libjbig/libjbig.a
+jbgtopbm: jbgtopbm.o ../libjbig/libjbig.so
$(CC) $(CFLAGS) -o jbgtopbm jbgtopbm.o -L../libjbig -ljbig
-pbmtojbg85: pbmtojbg85.o ../libjbig/libjbig85.a
+pbmtojbg85: pbmtojbg85.o ../libjbig/libjbig85.so
$(CC) $(CFLAGS) -o pbmtojbg85 pbmtojbg85.o -L../libjbig -ljbig85
-jbgtopbm85: jbgtopbm85.o ../libjbig/libjbig85.a
+jbgtopbm85: jbgtopbm85.o ../libjbig/libjbig85.so
$(CC) $(CFLAGS) -o jbgtopbm85 jbgtopbm85.o -L../libjbig -ljbig85
jbgtopbm.o: jbgtopbm.c ../libjbig/jbig.h
@@ -31,13 +31,13 @@
jbgtopbm85.o: jbgtopbm85.c ../libjbig/jbig85.h
pbmtojbg85.o: pbmtojbg85.c ../libjbig/jbig85.h
-../libjbig/libjbig.a: ../libjbig/jbig.c ../libjbig/jbig.h \
+../libjbig/libjbig.so: ../libjbig/jbig.c ../libjbig/jbig.h \
../libjbig/jbig_ar.c ../libjbig/jbig_ar.h
- make -C ../libjbig libjbig.a
+ make -C ../libjbig libjbig.so
-../libjbig/libjbig85.a: ../libjbig/jbig85.c ../libjbig/jbig85.h \
+../libjbig/libjbig85.so: ../libjbig/jbig85.c ../libjbig/jbig85.h \
../libjbig/jbig_ar.c ../libjbig/jbig_ar.h
- make -C ../libjbig libjbig85.a
+ make -C ../libjbig libjbig85.so
analyze:
clang $(CPPFLAGS) --analyze *.c
+10 -2
View File
@@ -13,9 +13,10 @@
<IsA>app:console</IsA>
<Summary>A portable library of compression and decompression functions</Summary>
<Description>JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents.</Description>
<Archive sha1sum="cfb7d3121f02a74bfb229217858a0d149b6589ef" type="targz">http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-2.0.tar.gz</Archive>
<Archive sha1sum="4864646df004e8331d19f2fa103ed731fdb6c099" type="targz">https://www.cl.cam.ac.uk/~mgk25/jbigkit/download/jbigkit-2.1.tar.gz</Archive>
<Patches>
<Patch level="1">jbigkit-2.0-shared.diff</Patch>
<Patch level="1">jbigkit-2.1-shared.diff</Patch>
<Patch level="1">jbigkit-2.0-warnings.patch</Patch>
</Patches>
</Source>
@@ -41,6 +42,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.1</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>2.0</Version>
+8 -1
View File
@@ -13,7 +13,7 @@
<IsA>app:gui</IsA>
<Summary>MMX, SSE, and SSE2 SIMD accelerated JPEG library</Summary>
<Description>libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal.</Description>
<Archive sha1sum="2666158ccd5318513f875867bbc4af52f6eb9f0b" type="targz">mirrors://sourceforge/libjpeg-turbo/1.4.2/libjpeg-turbo-1.4.2.tar.gz</Archive>
<Archive sha1sum="ebb3f9e94044c77831a3e8c809c7ea7506944622" type="targz">mirrors://sourceforge/libjpeg-turbo/1.5.1/libjpeg-turbo-1.5.1.tar.gz</Archive>
<Patches>
<!--Patch>fix_doc.patch</Patch-->
</Patches>
@@ -63,6 +63,13 @@
</Package>
<History>
<Update release="4">
<Date>2017-01-25</Date>
<Version>1.5.1</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-06-09</Date>
<Version>1.4.2</Version>
@@ -0,0 +1,33 @@
From 7757b91a71631ada835740733f3dab51eda36df8 Mon Sep 17 00:00:00 2001
From: erouault <erouault>
Date: Tue, 13 Dec 2016 18:15:48 +0000
Subject: [PATCH] * libtiff/tif_fax3.h: revert change done on 2016-01-09 that
made Param member of TIFFFaxTabEnt structure a uint16 to reduce size of the
binary. It happens that the Hylafax software uses the tables that follow this
typedef (TIFFFaxMainTable, TIFFFaxWhiteTable, TIFFFaxBlackTable), also they
are not in a public libtiff header. Raised by Lee Howard. Fixes
http://bugzilla.maptools.org/show_bug.cgi?id=2636
---
ChangeLog | 10 ++++++++++
libtiff/tif_fax3.h | 4 +++-
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/libtiff/tif_fax3.h b/libtiff/tif_fax3.h
index aafb5a7..2b64290 100644
--- a/libtiff/tif_fax3.h
+++ b/libtiff/tif_fax3.h
@@ -81,10 +81,12 @@ extern void _TIFFFax3fillruns(unsigned char*, uint32*, uint32*, uint32);
#define S_MakeUp 11
#define S_EOL 12
+/* WARNING: do not change the layout of this structure as the Halyfax software */
+/* really depends on it. See http://bugzilla.maptools.org/show_bug.cgi?id=2636 */
typedef struct { /* state table entry */
unsigned char State; /* see above */
unsigned char Width; /* width of code in bits */
- uint16 Param; /* unsigned 16-bit run length in bits */
+ uint32 Param; /* unsigned 32-bit run length in bits (holds on 16 bit actually, but cannot be changed. See above warning) */
} TIFFFaxTabEnt;
extern const TIFFFaxTabEnt TIFFFaxMainTable[];
+11 -1
View File
@@ -12,11 +12,14 @@
<IsA>library</IsA>
<Summary>Library for manipulation of TIFF (Tag Image File Format) images</Summary>
<Description>This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data.</Description>
<Archive sha1sum="652e97b78f1444237a82cbcfe014310e776eb6f0" type="targz">ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz</Archive>
<Archive sha1sum="2c1b64478e88f93522a42dd5271214a0e5eae648" type="targz">http://download.osgeo.org/libtiff/tiff-4.0.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>jbigkit-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">fix-hylafax.patch</Patch>
</Patches>
</Source>
<Package>
@@ -74,6 +77,13 @@
</Files>
</Package>
<History>
<Update release="4">
<Date>2017-01-25</Date>
<Version>4.0.7</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-06-09</Date>
<Version>4.0.3</Version>
+7
View File
@@ -61,6 +61,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.25</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.25</Version>
+8 -1
View File
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>A free implementation of the unicode bidirectional algorithm</Summary>
<Description>GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm.</Description>
<Archive sha1sum="5a6ff82fdee31d27053c39e03223666ac1cb7a6a" type="tarbz2">http://fribidi.org/download/fribidi-0.19.6.tar.bz2</Archive>
<Archive sha1sum="e470e078eafe6c065708def3e037c129c0d7367d" type="tarbz2">https://www.fribidi.org/download/fribidi-0.19.7.tar.bz2</Archive>
</Source>
<Package>
@@ -40,6 +40,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.19.7</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.19.6</Version>
+7
View File
@@ -36,6 +36,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.4.0</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.4.0</Version>
+7
View File
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>5.0.3</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>5.0.3</Version>
+9 -2
View File
@@ -15,7 +15,7 @@
<Archive sha1sum="3cda64c06ca9b617d976c490651db4391a162e1f" type="tarbz2">http://download.videolan.org/pub/videolan/libdvdread/5.0.3/libdvdread-5.0.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libdvdcss-devel</Dependency>
<Dependency>git</Dependency>
<Dependency>git</Dependency>
</BuildDependencies>
</Source>
@@ -23,7 +23,7 @@
<Name>libdvdread</Name>
<RuntimeDependencies>
<Dependency>libdvdcss</Dependency>
<Dependency>glibc</Dependency>
<Dependency>glibc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -44,6 +44,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>5.0.3</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>5.0.3</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Opus is a totally open, royalty-free, highly versatile audio codec</Summary>
<Description>Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.</Description>
<Archive sha1sum="35005f5549e2583f5770590135984dcfce6f3d58" type="targz">http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz</Archive>
<Archive sha1sum="c7ecd67321c0e72c928ffc1013d725fc537e633f" type="targz">http://downloads.xiph.org/releases/opus/opus-1.1.4.tar.gz</Archive>
</Source>
<Package>
@@ -48,6 +48,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.1.4</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.1</Version>
+8 -1
View File
@@ -14,7 +14,7 @@
<IsA>app:console</IsA>
<Summary>The Oil Runtime Compiler</Summary>
<Description>Optimized Inner Loop Runtime Compiler</Description>
<Archive sha1sum="1cc2205e91d283519109b2c851ddf98a4f60f9e9" type="tarxz">https://gstreamer.freedesktop.org/src/orc/orc-0.4.25.tar.xz</Archive>
<Archive sha1sum="8a735b48051facb35b2b2cc57e8e2014a1e25c8a" type="tarxz">https://gstreamer.freedesktop.org/src/orc/orc-0.4.26.tar.xz</Archive>
<BuildDependencies>
<Dependency>valgrind</Dependency>
</BuildDependencies>
@@ -56,6 +56,13 @@
</Package>
<History>
<Update release="4">
<Date>2017-01-24</Date>
<Version>0.4.26</Version>
<Comment>Version bump</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-06-12</Date>
<Version>0.4.25</Version>
+7
View File
@@ -44,6 +44,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.0.1</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.0.1</Version>
+10 -3
View File
@@ -12,10 +12,10 @@
<IsA>library</IsA>
<Summary>A library for reading and editing audio meta data</Summary>
<Description>TagLib is a library for reading and editing the meta data of several popular audio formats.</Description>
<Archive sha1sum="4fa426c453297e62c1d1eff64a46e76ed8bebb45" type="targz">http://taglib.github.io/releases/taglib-1.9.1.tar.gz</Archive>
<Archive sha1sum="80a30eeae67392f636c9f113c60d778c2995c99e" type="targz">http://taglib.org/releases/taglib-1.11.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
</Source>
@@ -23,7 +23,7 @@
<Name>taglib</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.11.1</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.9.1</Version>
+7
View File
@@ -40,6 +40,13 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>2.9.1</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-06-12</Date>
<Version>2.9.1</Version>
+7
View File
@@ -41,6 +41,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.5.1</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.5.1</Version>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Python bindings for parted</Summary>
<Description>pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them.</Description>
<Archive sha1sum="3b8d3dcb3ce2c15ed4305748eff251d5c90a1548" type="targz">https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz</Archive>
<Archive sha1sum="ee5f3ec70b0cc5c4704771484e439699e15191c5" type="targz">https://github.com/rhinstaller/pyparted/archive/v3.10.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-decorator</Dependency>
<Dependency>python-devel</Dependency>
@@ -34,6 +34,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>3.10.7</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>3.10.5</Version>
@@ -12,7 +12,7 @@
<IsA>app:console</IsA>
<Summary>A small but fast and easy to use stand-alone template engine written in pure python</Summary>
<Description>Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code.</Description>
<Archive sha1sum="1ce4c8bc722444ec3e77ef9db76faebbd17a40d8" type="targz">https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.2.tar.gz</Archive>
<Archive sha1sum="47b1db51d9ebbdbaa26934ed055ee51a7190142a" type="targz">https://pypi.python.org/packages/f4/3f/28387a5bbc6883082c16784c6135440b94f9d5938fb156ff579798e18eda/Jinja2-2.9.4.tar.gz</Archive>
<BuildDependencies>
<!-- For creating documentations-->
<!--<Dependency>python-sphinx</Dependency>-->
@@ -40,6 +40,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.9.4</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>2.7.2</Version>
@@ -27,6 +27,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.23</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.23</Version>
@@ -32,6 +32,13 @@
</Package>
<History>
<Update release="4">
<Date>2017-01-25</Date>
<Version>3.12</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-01-16</Date>
<Version>3.12</Version>
@@ -54,4 +61,4 @@
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>A syntax highlighting package written in Python</Summary>
<Description>python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code.</Description>
<Archive sha1sum="53d831b83b1e4d4f16fec604057e70519f9f02fb" type="targz">https://pypi.python.org/packages/source/P/Pygments/Pygments-1.6.tar.gz</Archive>
<Archive sha1sum="5c6714bd6fd950c1478889f7b72fc7f6771d5163" type="targz">https://pypi.python.org/packages/71/2a/2e4e77803a8bd6408a2903340ac498cb0a2181811af7c9ec92cb70b0308a/Pygments-2.2.0.tar.gz</Archive>
</Source>
<Package>
@@ -36,6 +36,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.2.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.6</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>US-ASCII transliterations of Unicode text</Summary>
<Description>python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module.</Description>
<Archive sha1sum="ef5e4022a7f532aaa92774a28251fe7351bebee0" type="targz">https://pypi.python.org/packages/source/U/Unidecode/Unidecode-0.04.18.tar.gz</Archive>
<Archive sha1sum="cb03212d39806a6cbb1eadfb3f3a66c86af5a075" type="targz">https://pypi.python.org/packages/ba/64/410af95d27f2a8824112d17ed41ea7ce6d2cbc8a4832c2e548d3408fad0a/Unidecode-0.04.20.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.04.20</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.04.18</Version>
@@ -30,6 +30,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-24</Date>
<Version>1.4.0</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.4.0</Version>
@@ -12,4 +12,4 @@ def build():
def install():
pythonmodules.install()
pisitools.dodoc("PKG-INFO", "MANIFEST*")
pisitools.dodoc("PKG-INFO")
@@ -10,7 +10,7 @@
<IsA>app</IsA>
<Summary>The ssl.match_hostname() function from Python 3.4</Summary>
<Description>The ssl.match_hostname() function from Python 3.4</Description>
<Archive sha1sum="da4e41f3b110279d2382df47ac1e4f10c63cf954" type="targz">https://pypi.python.org/packages/3a/15/f9e48bfd2b971ade10ad0c03babab057791c260b05322cbd3f47e27be108/backports.ssl_match_hostname-3.4.0.2.tar.gz</Archive>
<Archive sha1sum="0567c136707a5f53b95aa793b79cc8d5c61d8e22" type="targz">https://pypi.python.org/packages/76/21/2dc61178a2038a5cb35d14b61467c6ac632791ed05131dda72c20e7b9e23/backports.ssl_match_hostname-3.5.0.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
@@ -30,6 +30,13 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>3.5.0.1</Version>
<Comment>Version bump</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-06-15</Date>
<Version>3.4.0.2</Version>
@@ -10,8 +10,6 @@ from pisi.actionsapi import shelltools
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
WorkDir = "Beaker-%s" % get.srcVERSION()
def install():
pythonmodules.install()
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>A Session and Caching library with WSGI Middleware</Summary>
<Description>python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications.</Description>
<Archive sha1sum="e354c7dc7946595f58f027e880e47b01c288abfb" type="targz">http://pypi.python.org/packages/source/B/Beaker/Beaker-1.6.4.tar.gz</Archive>
<Archive sha1sum="380055121a6d4740c0831333a1d573545bee918c" type="targz">https://github.com/bbangert/beaker/archive/1.8.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
</BuildDependencies>
@@ -27,6 +27,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.8.1</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.6.4</Version>
@@ -46,6 +46,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.10.0</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.10.0</Version>
@@ -29,6 +29,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.3.7</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.3.7</Version>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Python interface to the CUPS API</Summary>
<Description>python-cups contains python bindings to wrap the CUPS API.</Description>
<Archive sha1sum="71d2136f817dfa225f7dfa0e77b35ab1422f9f80" type="tarbz2">http://cyberelk.net/tim/data/pycups/pycups-1.9.72.tar.bz2</Archive>
<Archive sha1sum="561dc41a0025ad3467e7d151ee2ce84e5e564f9d" type="tarbz2">http://cyberelk.net/tim/data/pycups/pycups-1.9.73.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cups-devel</Dependency>
<Dependency>python-devel</Dependency>
@@ -31,6 +31,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.9.73</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.9.72</Version>
@@ -12,10 +12,10 @@
<IsA>library</IsA>
<Summary>Python module to simplify the usage of decorators</Summary>
<Description>python-decorator simplifies the usage of decorators for the average programmer.</Description>
<Archive sha1sum="9ca491f88a5b5456d0f0eb8d26cf6ebd780e2934" type="targz">http://pypi.python.org/packages/source/d/decorator/decorator-4.0.2.tar.gz</Archive>
<Archive sha1sum="f2ddc2de311b8d2afae7bba8efec6131a7f4b986" type="targz">https://pypi.python.org/packages/cc/ac/5a16f1fc0506ff72fcc8fd4e858e3a1c231f224ab79bb7c4c9b2094cc570/decorator-4.0.11.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-nose</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-setuptools</Dependency>
</BuildDependencies>
</Source>
@@ -28,6 +28,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>4.0.11</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>4.0.2</Version>
@@ -10,7 +10,7 @@
<IsA>app:console</IsA>
<Summary>Python client for Docker.</Summary>
<Description>A Python library for the Docker Remote API. It does everything the docker command does, but from within Python run containers, manage them, pull/push images, etc.</Description>
<Archive sha1sum="f20e51eae6f39762d6c1d8f3349785507d140f28" type="targz">https://github.com/docker/docker-py/archive/1.8.1.tar.gz</Archive>
<Archive sha1sum="653bad33f42de753d90b9ced35c621eeb236a960" type="targz">https://github.com/docker/docker-py/archive/2.0.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
@@ -34,6 +34,13 @@
</Files>
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.0.2</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.8.1</Version>
@@ -32,6 +32,13 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>1.6.8</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-11-24</Date>
<Version>1.6.8</Version>
@@ -91,6 +91,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.24.0</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>2.24.0</Version>
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.1.7</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.1.7</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>lxml is the most feature-rich and easy-to-use library</Summary>
<Description>lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language.</Description>
<Archive sha1sum="7a6e92f8ca482aab79835e1c9cd8410400792cd9" type="targz">http://lxml.de/files/lxml-3.3.5.tgz</Archive>
<Archive sha1sum="c23051e339242773ab5ce4201ff5cc0c86a880ca" type="targz">http://lxml.de/files/lxml-3.7.2.tgz</Archive>
<BuildDependencies>
<Dependency>libxml2-devel</Dependency>
<Dependency>python-devel</Dependency>
@@ -49,6 +49,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>3.7.2</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>3.3.5</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>A python templating language</Summary>
<Description>python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages.</Description>
<Archive sha1sum="aa01bafca5a835eb92a9048be92414fa83da102b" type="targz">http://pypi.python.org/packages/source/M/Mako/Mako-0.9.1.tar.gz</Archive>
<Archive sha1sum="8cbc52319268525208c88dd3ef62c929069e4b24" type="targz">https://pypi.python.org/packages/56/4b/cb75836863a6382199aefb3d3809937e21fa4cb0db15a4f4ba0ecc2e7e8e/Mako-1.0.6.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
</BuildDependencies>
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.0.6</Version>
<Comment>Version Bump</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-09-22</Date>
<Version>0.9.1</Version>
@@ -12,10 +12,10 @@
<IsA>library</IsA>
<Summary>An audio tag editing library</Summary>
<Description>Mutagen is an audio metadata tag reader and writer implemented in pure Python.</Description>
<Archive sha1sum="4006517ce55770639621d2880af9ffc3378569ad" type="targz">https://bitbucket.org/lazka/mutagen/downloads/mutagen-1.32.tar.gz</Archive>
<Archive sha1sum="cf0afd755035eb2143737f445a8a370ba30516e8" type="targz">https://bitbucket.org/lazka/mutagen/downloads/mutagen-1.36.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
@@ -34,10 +34,17 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>1.36.2</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-06-18</Date>
<Version>1.32</Version>
<Comment>Version bump.</Comment>
<Comment>First release</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.3.7</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.3.7</Version>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>The fundamental package needed for scientific computing with Python</Summary>
<Description>Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities.</Description>
<Archive sha1sum="8fe1d5f36bab3f1669520b4c7d8ab59a21a984da" type="targz">mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz</Archive>
<Archive sha1sum="b275752aa4855c9e3ed1689bbaa4491bc4b5f716" type="targz">mirrors://sourceforge/numpy/numpy-1.11.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-nose</Dependency>
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.11.2</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.8.1</Version>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>PIL is the Python Imaging Library.</Summary>
<Description>The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities.</Description>
<Archive sha1sum="eaa57b9d4b44c287e974b18696f52c6ac4f90382" type="targz">https://github.com/python-pillow/Pillow/archive/3.1.0.tar.gz</Archive>
<Archive sha1sum="bfa275aef5aab12db7fa6b275499600f34f6ffab" type="targz">https://github.com/python-pillow/Pillow/archive/4.0.0a.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-tk</Dependency>
<Dependency>python-devel</Dependency>
@@ -57,6 +57,13 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>4.0.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-06-18</Date>
<Version>3.1.0</Version>
@@ -24,6 +24,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.4.4</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.4.4</Version>
@@ -38,6 +38,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.53</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.53</Version>
@@ -66,6 +66,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>2.28.6</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>2.28.6</Version>
@@ -11,7 +11,7 @@
<Summary>Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.</Summary>
<Description>Pythons standard urllib2 module provides most of the HTTP capabilities you need</Description>
<License>MIT</License>
<Archive sha1sum="17f01c47a0d7c676f6291608ef2f43db3fa74095" type="targz">https://pypi.python.org/packages/source/r/requests/requests-2.9.1.tar.gz</Archive>
<Archive sha1sum="827f7c8abb5a57d980d9870908724613b8b120c1" type="targz">https://pypi.python.org/packages/16/09/37b69de7c924d318e51ece1c4ceb679bf93be9d05973bb30c35babd596e2/requests-2.13.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
</BuildDependencies>
@@ -29,6 +29,13 @@
</Package>
<History>
<Update release="4">
<Date>2017-01-25</Date>
<Version>2.13.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-06-09</Date>
<Version>2.9.1</Version>
@@ -12,7 +12,7 @@
<IsA>app:console</IsA>
<Summary>Python 2 and 3 compatibility utilities.</Summary>
<Description>python-six provides simple utilities for wrapping over differences between Python 2 and Python 3.</Description>
<Archive sha1sum="d168e6d01f0900875c6ecebc97da72d0fda31129" type="targz">http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz</Archive>
<Archive sha1sum="30d480d2e352e8e4c2aae042cf1bf33368ff0920" type="targz">https://pypi.python.org/packages/b3/b2/238e2590826bfdd113244a40d9d3eb26918bd798fc187e2360a8367068db/six-1.10.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
</BuildDependencies>
@@ -30,6 +30,13 @@
<History>
<Update release="4">
<Date>2017-01-25</Date>
<Version>1.10.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-06-10</Date>
<Version>1.9.0</Version>
@@ -32,6 +32,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.0.13</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.0.13</Version>
@@ -12,7 +12,7 @@
<IsA>app:console</IsA>
<Summary>Python documentation generator. It can generate HTML or Latex outputs</Summary>
<Description>It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support.</Description>
<Archive sha1sum="448cdb89d96c85993e01fe793ce7786494cbcda7" type="targz">http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.2.1.tar.gz</Archive>
<Archive sha1sum="71dac26c76c3d60651f92ba52f9b4f6bb19d1d13" type="targz">https://pypi.python.org/packages/e3/87/e271f7f0d498c7fdaec009c27955401d18ef357c0d468e1eb2be36bdc68c/Sphinx-1.5.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>docutils</Dependency>
<Dependency>python-Pygments</Dependency>
@@ -47,6 +47,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>1.5.2</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.3.1</Version>
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Python bindings for libudev library</Summary>
<Description>These bindings enable using of udev library in Python programs.</Description>
<Archive sha1sum="b36bc5c553ce9b56d32a5e45063a2c88156771c0" type="targz">https://pypi.python.org/packages/source/p/pyudev/pyudev-0.16.1.tar.gz</Archive>
<Archive sha1sum="58263b4358951d3a990bce7661e2e2ff30ca6cbe" type="targz">https://pypi.python.org/packages/bc/a2/31a07829acea8e70a28c247f43fa5d981229ae0f9edfeddedf52de00709b/pyudev-0.21.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>eudev-devel</Dependency>
@@ -44,6 +44,13 @@
</Package-->
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.21.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.16.1</Version>
@@ -10,7 +10,7 @@
<IsA>app:console</IsA>
<Summary>WebSocket client library for Python</Summary>
<Description>websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions.</Description>
<Archive sha1sum="1ae08f0a73671ae24261a71b48a2eb40ab4269a9" type="targz">https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz</Archive>
<Archive sha1sum="4d3e3d413aefe28864f8e8c416640c4a42c5a0d6" type="targz">https://github.com/websocket-client/websocket-client/archive/v0.40.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
@@ -31,6 +31,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.40.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.37.0</Version>
@@ -32,6 +32,13 @@
</Package>
<History>
<Update release="3">
<Date>2017-01-25</Date>
<Version>0.15.19</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.15.19</Version>
@@ -58,6 +58,13 @@
</Package>
<History>
<Update release="2">
<Date>2017-01-25</Date>
<Version>3.0.2.0</Version>
<Comment>Rebuild for new toolchain</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-07-02</Date>
<Version>3.0.2.0</Version>