diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-13 10:19:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-13 10:19:01 +0000 |
commit | 0ab048b6557ea0a337b96f5d0558694a237dfab8 (patch) | |
tree | 89dbb0a558beba1894d348fc537cc8d5e8a3d74a /debian/mksnapshot | |
parent | 9cb6901edf2145a9111f11b15acf9d74494bd04d (diff) |
Update the debian packaging for use in a standalone uClibc
system, rather than being a subordinate lib under a glibc
based system.
-Erik
Diffstat (limited to 'debian/mksnapshot')
-rwxr-xr-x | debian/mksnapshot | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/mksnapshot b/debian/mksnapshot deleted file mode 100755 index d4e6cd41f..000000000 --- a/debian/mksnapshot +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - - -topdir=$(pwd) -today=$(date +%Y%m%d) -version=0.9.19 -dir=uclibc-${version}-cvs${today} - -mkdir -p ${topdir}/uclibc-tmp -cd ${topdir}/uclibc-tmp - -export CVSROOT=':pserver:anonymous@cvs.uclibc.org:/var/cvs' -if ! grep -q '^.pserver.anonymous.cvs.uclibc.org..var.cvs' ~/.cvspass -then - echo "$CVSROOT" 'A' >>~/.cvspass -fi -#export CVSROOT='ds@cvs.uclibc.org:/var/cvs' - -cvs co -d ${dir} uClibc - -cd ${topdir}/uclibc-tmp/${dir}/debian -echo "uclibc (${version}-cvs${today}-1) unstable; urgency=low" >changelog.tmp -echo >>changelog.tmp -echo " * This is an automatic snapshot of uClibc CVS" >>changelog.tmp -echo >>changelog.tmp -echo " -- David Schleef <ds@schleef.org> $(date -R)" >>changelog.tmp -echo >>changelog.tmp -cat changelog >>changelog.tmp -mv changelog.tmp changelog - -cd ${topdir}/uclibc-tmp -tar -czf ../uclibc_${version}-cvs${today}.orig.tar.gz ${dir} - -cd ${topdir} -rm -rf uclibc-tmp - |