diff -u sympow-1.019/debian/copyright sympow-1.019/debian/copyright --- sympow-1.019/debian/copyright +++ sympow-1.019/debian/copyright @@ -43,0 +44,6 @@ + +The data files in debian/datafiles were obtained from +sympow-1.018.1.p4.spkg from the Sage 3.0.4 distribution tarball +(licensed under the GPL), which can be obtained from +. They were generated by the sympow +developer using sympow -new_data. diff -u sympow-1.019/debian/sympow.install sympow-1.019/debian/sympow.install --- sympow-1.019/debian/sympow.install +++ sympow-1.019/debian/sympow.install @@ -1,5 +1,5 @@ *.gp usr/lib/sympow/ -datafiles usr/lib/sympow/ -new_data usr/lib/sympow/datafiles +debian/datafiles usr/lib/sympow/ +new_data usr/lib/sympow/ sympow usr/lib/sympow/ debian/binary/sympow usr/bin/ diff -u sympow-1.019/debian/changelog sympow-1.019/debian/changelog --- sympow-1.019/debian/changelog +++ sympow-1.019/debian/changelog @@ -1,3 +1,11 @@ +sympow (1.019-3) unstable; urgency=low + + * Include precomputed data files. + * Install new_data into the same directory as sympow. + * Update Standards-Version to 3.8.0. + + -- Tim Abbott Mon, 21 Jul 2008 20:41:51 -0400 + sympow (1.019-2) unstable; urgency=low * Improve the description. diff -u sympow-1.019/debian/rules sympow-1.019/debian/rules --- sympow-1.019/debian/rules +++ sympow-1.019/debian/rules @@ -9,5 +9,13 @@ +debian/datafiles/param_data: + mkdir -p debian/datafiles + cd debian && sh ./armd.sh + +common-build-arch common-build-indep:: + sh debian/gen-data + Makefile: ./Configure clean:: rm -f Makefile + rm -f debian/datafiles/*.bin diff -u sympow-1.019/debian/control sympow-1.019/debian/control --- sympow-1.019/debian/control +++ sympow-1.019/debian/control @@ -4,7 +4,7 @@ Maintainer: Tim Abbott Homepage: http://www.maths.bris.ac.uk/~mamjw/ Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 5), quilt, patchutils (>= 0.2.25), cdbs (>= 0.4.27), pari-gp -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Package: sympow Architecture: any diff -u sympow-1.019/debian/control.in sympow-1.019/debian/control.in --- sympow-1.019/debian/control.in +++ sympow-1.019/debian/control.in @@ -4,7 +4,7 @@ Maintainer: Tim Abbott Homepage: http://www.maths.bris.ac.uk/~mamjw/ Build-Depends: @cdbs@, pari-gp -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Package: sympow Architecture: any only in patch2: unchanged: --- sympow-1.019.orig/debian/gen-data +++ sympow-1.019/debian/gen-data @@ -0,0 +1,6 @@ +#!/bin/sh + +for x in debian/datafiles/*M.txt; do + NUM=`grep -c AT $x` + ./sympow -txt2bin $NUM ${x//txt/bin} < $x +done