Compare commits
No commits in common. "c8-beta" and "c8s" have entirely different histories.
12
.gitignore
vendored
12
.gitignore
vendored
@ -1 +1,11 @@
|
|||||||
SOURCES/netpbm-10.82.00.tar.xz
|
/netpbm-10.61.02.tar.xz
|
||||||
|
/netpbm-10.66.02.tar.xz
|
||||||
|
/netpbm-10.71.02.tar.xz
|
||||||
|
/netpbm-10.75.99.tar.xz
|
||||||
|
/netpbm-10.76.00.tar.xz
|
||||||
|
/netpbm-10.77.00.tar.xz
|
||||||
|
/netpbm-10.78.00.tar.xz
|
||||||
|
/netpbm-10.79.00.tar.xz
|
||||||
|
/netpbm-10.80.00.tar.xz
|
||||||
|
/netpbm-10.81.00.tar.xz
|
||||||
|
/netpbm-10.82.00.tar.xz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
a33148501a050c578d0f48976a1117984bc0fe49 SOURCES/netpbm-10.82.00.tar.xz
|
|
9
netpbm-python3.patch
Normal file
9
netpbm-python3.patch
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
diff -urNp old/buildtools/makeman new/buildtools/makeman
|
||||||
|
--- old/buildtools/makeman 2018-01-03 12:15:55.000000000 +0100
|
||||||
|
+++ new/buildtools/makeman 2018-02-26 14:18:39.993760106 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
#
|
||||||
|
# makeman -- compile netpbm's stereotyped HTML to troff markup
|
||||||
|
#
|
32
netpbm2tar.sh
Executable file
32
netpbm2tar.sh
Executable file
@ -0,0 +1,32 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Source0 is prepared by
|
||||||
|
# svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/advanced netpbm-%{version}
|
||||||
|
# svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/userguide netpbm-%{version}/userguide
|
||||||
|
# svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/trunk/test netpbm-%{version}/test
|
||||||
|
# and removing the .svn directories ( find -name "\.svn" -type d -print0 | xargs -0 rm -rf )
|
||||||
|
# and removing the ppmtompeg code, due to patents ( rm -rf netpbm-%{version}/converter/ppm/ppmtompeg/ )
|
||||||
|
|
||||||
|
VERSION=$1
|
||||||
|
if [[ -z $VERSION ]]; then
|
||||||
|
echo "Version is missing as argument"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
NETPBM_NAME="netpbm-$VERSION"
|
||||||
|
TEMP_DIR="/var/tmp/netpbm"
|
||||||
|
TARBALL="$TEMP_DIR/$NETPBM_NAME.tar.xz"
|
||||||
|
mkdir -p $TEMP_DIR
|
||||||
|
pushd $TEMP_DIR
|
||||||
|
svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/advanced $NETPBM_NAME
|
||||||
|
svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/userguide $NETPBM_NAME/userguide
|
||||||
|
svn checkout https://netpbm.svn.sourceforge.net/svnroot/netpbm/trunk/test $NETPBM_NAME/test
|
||||||
|
find -name '\.svn' -type d -print0 | xargs -0 rm -rf
|
||||||
|
rm -rf $NETPBM_NAME/converter/ppm/ppmtompeg/
|
||||||
|
tar -cJvf $NETPBM_NAME.tar.xz $NETPBM_NAME
|
||||||
|
rm -rf $NETPBM_NAME/
|
||||||
|
popd
|
||||||
|
if [[ -f "$TARBALL" ]]; then
|
||||||
|
cp $TARBALL .
|
||||||
|
rm $TARBALL
|
||||||
|
fi
|
||||||
|
exit 0
|
Loading…
Reference in New Issue
Block a user