From a3437249cba058014b62d69f44685e47678b7774 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 20 Jun 2002 15:48:56 +0000 Subject: [PATCH] r2147: *** empty log message *** --- debian/rules | 3 ++- make-upstream.sh | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 51b0565..ea9c3a7 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,7 @@ INSTALLDIRFLAGS := -d -g root -o root -m 0755 SOURCEDIR := $(prefix)/usr/share/common-lisp/source/${pkg} DOCDIR := $(prefix)/usr/share/doc/${debpkg} -UPSTREAM_VER := $(shell sed -n -e "s/${DEBPKG} (\(.*\)-[0-9.]).*/\1/p" < debian/changelog |head -1) +UPSTREAM_VER := $(shell sed -n -e "s/${debpkg} (\(.*\)-[0-9.]).*/\1/p" < debian/changelog |head -1) clc-source := $(SOURCEDIR)-$(UPSTREAM_VER) @@ -60,6 +60,7 @@ install: build dh_installdirs # Add here commands to install the package into debian/uffi. + $(INSTALL) $(INSTALLDIRFLAGS) $(clc-source) $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl *.system) $(clc-source) $(INSTALL) $(INSTALLFLAGS) $(shell echo src/mcl/*.cl) $(clc-source)/mcl $(INSTALL) $(INSTALLFLAGS) doc/html/* $(DOCDIR)/html diff --git a/make-upstream.sh b/make-upstream.sh index 2acb3ae..d945491 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -12,17 +12,23 @@ usage () { Usage: $progname [options] Creates upstream archives Options: + -c Commit and tag CVS tree with current version numbers -t Tag CVS tree with current version numbers + -f Force creation of upstream archive, even if exists' -h Print this brief help EOF } +opt_force=0 + # Command line while [ $# != 0 ]; do value="`echo x\"$1\" | sed -e 's/^x-.//'`" case "$1" in -h) usage; exit 0 ;; + -c) opt_commit=1; opt_tag=1 ;; -t) opt_tag=1 ;; + -f) opt_force=1 ;; *) usage; exit 0 ;; esac shift -- 2.34.1