r1868: debian changes
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 3 May 2002 02:33:47 +0000 (02:33 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 3 May 2002 02:33:47 +0000 (02:33 +0000)
debian/changelog
debian/dirs [new file with mode: 0644]
debian/rules
make-dist.sh

index b6537bf6f1e1af7764239f4d7a6e6ff86314dfd1..ea65fefde749d67fc6ec3bd28ac60d95358c41c2 100644 (file)
@@ -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 <kevin@rosenberg.net>  Thu,  2 May 2002 15:37:50 -0600
 
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..0c182b7
--- /dev/null
@@ -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
index a7d0713697bed5b4223af669e93bf35ed27acddf..a7c00e3aaa3e34a37fa3e3448859e535e3039451 100755 (executable)
@@ -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)
index 7c0922f51cd0aa0d8f98a8890b12161f122466f1..306e79b08ff243699cdd534c43ecb91b38e9235a 100755 (executable)
@@ -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