From 8de1da92cf18dd5341b3472a192fe52d34ca465a Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 3 May 2002 02:33:47 +0000 Subject: [PATCH] r1868: debian changes --- debian/changelog | 2 +- debian/dirs | 10 ++++++++++ debian/rules | 2 +- make-dist.sh | 13 +++++++------ 4 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 debian/dirs diff --git a/debian/changelog b/debian/changelog index b6537bf..ea65fef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ cl-uffi (0.4.4-5) unstable; urgency=low - * Commented-out DH_VERBOSE flag + * Commented-out DH_VERBOSE flag. -- Kevin Rosenberg Thu, 2 May 2002 15:37:50 -0600 diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..0c182b7 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,10 @@ +usr/ +usr/share +usr/share/common-lisp +usr/share/common-lisp/repositories +usr/share/common-lisp/repositories/uffi +usr/share/common-lisp/repositories/uffi/mcl +usr/share/common-lisp/source +usr/share/common-lisp/systems +usr/share/doc/cl-uffi +usr/share/doc/cl-uffi/html diff --git a/debian/rules b/debian/rules index a7d0713..a7c00e3 100755 --- a/debian/rules +++ b/debian/rules @@ -58,7 +58,7 @@ install: build dh_installdirs # Add here commands to install the package into debian/uffi. - cp $(SYSDIR)/uffi.system.debian $(SYSDIR)/uffi.system + cp uffi.system.debian $(SYSDIR)/uffi.system chmod 0644 $(SYSDIR)/uffi.system chown root.root $(SYSDIR)/uffi.system $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl) $(REPOSITORYDIR) diff --git a/make-dist.sh b/make-dist.sh index 7c0922f..306e79b 100755 --- a/make-dist.sh +++ b/make-dist.sh @@ -15,8 +15,8 @@ DEBDIR=${DEBPKG}-${VERSION} TAG=upstream_version_`echo $VERSION | tr . _` echo "(re)tagging with release tag '$TAG'" -cvs -q rtag -d $TAG $PKG -cvs -q tag -F $TAG +#cvs -q rtag -d $TAG $PKG +#cvs -q tag -F $TAG # build the tarball @@ -29,16 +29,15 @@ cp -a ${TOPDIR} ${DISTDIR} # Remove junk from distribution dir find ${DISTDIR} -type f -name .cvsignore -exec rm {} \; find ${DISTDIR} -type d -name CVS | xargs rm -r +find ${DISTDIR} -type f -name *~ -or -name \#* -or -name \#*\# |xargs rm -f find ${DISTDIR}/doc -type f -name *.tex -or -name *.aux -or \ - -name *.log -or -name *.out -or -name *.dvi -or \ - -name *~ -or -name ".#*" -or -name "#*#" |xargs rm -f + -name *.log -or -name *.out -or -name *.dvi | xargs rm -f # Create original distribution archives rm -rf ${DISTDIR}/debian GZIP=-9 tar czf ${DISTDIR}.tar.gz ${DISTDIR} cp -a ${DISTDIR} ${DEBDIR} -# rm -f ${DEBDIR}/debian/.cvsignore GZIP=-9 tar czf ${DEBPKG}_${VERSION}.orig.tar.gz ${DEBDIR} find ${DISTDIR} -type f -and -name *.cl -or -name *.list -or \ @@ -49,6 +48,8 @@ find ${DISTDIR} -type f -and -name *.cl -or -name *.list -or \ zip -rq ${DISTDIR}.zip ${DISTDIR} cp -a ${TOPDIR}/debian ${DEBDIR} +rm -f ${DEBDIR}/debian/.cvsignore +rm -rf ${DEBDIR}/debian/CVS cd ${DEBDIR} dpkg-buildpackage -rfakeroot -kkevin@b9.com -a @@ -59,7 +60,7 @@ rm -rf ${DISTDIR} lintian ${DEBPKG}_${VERSION}-*.changes -mkdir -p /usr/local/share/Packages/${DEBPKG} +mkdir -p /usr/local/src/Packages/${DEBPKG} mv ${DEBPKG}_${VERSION}* /usr/local/src/Packages/${DEBPKG} cd ${TOPDIR} exit 0 -- 2.34.1