testing
-=item * Anthony Fok <foka@gpu.srv.ualberta.ca>,
+=item * Anthony Fok <foka@debian.org>,
-debian package: make/debian/*
+debian package: debian/*
=item * Franc,ois Pinard <pinard@iro.umontreal.ca>,
#
-EXTRA_DISTFILES = README.debian changelog control copyright examples\
+EXTRA_DISTFILES = README.debian TODO changelog control copyright\
info.ex menu.ex postinst postinst.old.sh postrm preinst rules watch
When it is stablized in the future, these new fonts will probably be
added into the standard special.map file.
-Anthony Fok <foka@gpu.srv.ualberta.ca>, Thu, 23 Oct 1997 16:59:32 -0600
+Anthony Fok <foka@debian.org>, Thu, 23 Oct 1997 16:59:32 -0600
--- /dev/null
+* Move lytodvi.sh to a proper place. It is currently placed in
+ /usr/doc/lilypond. (1997-11-25)
+lilypond (0.1.33-1) unstable; urgency=low
+
+ * New upstream release
+ * Changed my maintainer e-mail address to <foka@debian.org>. :)
+
+ -- Anthony Fok <foka@debian.org> Tue, 25 Nov 1997 00:22:57 -0700
+
+lilypond (0.1.32-2) unstable; urgency=low
+
+ * Commented out run_texhash() in postinst by mistake. Fixed.
+
+ -- Anthony Fok <foka@gpu.srv.ualberta.ca> Sun, 23 Nov 1997 03:04:29 -0700
+
+lilypond (0.1.32-1) unstable; urgency=low
+
+ * New upstream release
+ * Applied a small fix to postinst. The font-entries-search-and-replace
+ add_fonts() subroutine was slightly buggy.
+ * Unpatched ./configure. It turned out that I spelt "--enable-optimise"
+ as "--enable-optimize" in debian/rules by mistake. Oops! :) Thanks
+ to the upstream author for pointing this out! :)
+ * The upstream authors has included the ./debian/* files in the pristine
+ source archive! They also fixed some minor errors in README.debian
+ and copyright. Thanks a lot! :)
+ * Removed the line "dh_clean" from "binary-arch:" and switched the order
+ of dh_clean in "clean:" in debian/rules. dh_clean was deleting
+ the zero-byte file ./make/out/Site.make, causing the build to fail.
+
+ -- Anthony Fok <foka@gpu.srv.ualberta.ca> Sun, 23 Nov 1997 01:39:31 -0700
+
lilypond (0.1.29-1) unstable; urgency=low
* New upstream release
"stray" automatically generated TFM and PK font files were placed in
the wrong directories because they were not listed in
/usr/lib/texmf/fontname/special.map.
- * Did some minor clean-up in debian/rules.
+ * Did some minor clean-up in debian/rules and switched to debhelper.
* Updated Standards-Version to 2.3.0.1
-- Anthony Fok <foka@gpu.srv.ualberta.ca> Tue, 11 Nov 1997 02:31:33 -0700
Local variables:
mode: debian-changelog
-add-log-mailing-address: "foka@gpu.srv.ualberta.ca"
+add-log-mailing-address: "foka@debian.org"
End:
Source: lilypond
Section: contrib/tex
Priority: optional
-Maintainer: Anthony Fok <foka@gpu.srv.ualberta.ca>
+Maintainer: Anthony Fok <foka@debian.org>
Standards-Version: 2.3.0.1
Package: lilypond
-This package was debianized by Anthony Fok foka@gpu.srv.ualberta.ca on
+This package was debianized by Anthony Fok foka@debian.org on
Wed, 6 Aug 1997 04:30:28 -0600
It was downloaded from
- ftp://pcnov095.win.tue.nl/pub/lilypond/development/lilypond-0.1.29.tar.gz
+ ftp://pcnov095.win.tue.nl/pub/lilypond/development/lilypond-0.1.33.tar.gz
It is also available from:
ftp://alpha.gnu.org/gnu/
#
# postinst script for the Debian GNU/Linux lilypond package
#
-# by Anthony Fok <foka@gpu.srv.ualberta.ca>
+# by Anthony Fok <foka@debian.org>
# Initial release: Sun, 26 Oct 1997 03:23:00 -0700
-# Last modified: Mon, 10 Nov 1997 22:26:10 -0700
+# Last modified: Sun, 23 Nov 1997 03:04:16 -0700
use strict;
use File::Copy;
$font_supplier = "public";
$font_typeface = "lilypond";
-# @fonts = qw( dyn10 font-en-tja vette-beam );
@fonts = qw( feta );
$std_TEXMF = "/usr/lib/texmf"; # Debian's standard $TEXMF
if (length($font) < 8) { $font .= "\t"; }
$entries .= "$font\t$supplier\t\t$typeface\n";
}
- if ($_[0] !~ /$entries/m) {
+
+ $_[0] =~ /((^\w+\s+$supplier\s+$typeface\n)+)/m;
+
+ if ($1 ne $entries) {
($_[0] =~ s/(^\w+\s+$supplier\s+$typeface\n)+/$entries/m)
or ($_[0] =~ s/(?=^beam\s+public\s+music\n)/$entries/m)
or die " Can't add font entries to $specialmap: $!";
#!/bin/bash -e
#
# postinst script for the Debian GNU/Linux lilypond package
-# by Anthony Fok <foka@gpu.srv.ualberta.ca>
+# by Anthony Fok <foka@debian.org>
# This is free software; see the GNU General Public Licence
# version 2 or later for copying conditions. There is NO warranty.
# Last modified: Wed, 6 Aug 1997 13:42:45 -0600
#!/bin/bash -e
#
# postrm script for the Debian GNU/Linux lilypond package
-# by Anthony Fok <foka@gpu.srv.ualberta.ca>
+# by Anthony Fok <foka@debian.org>
# This is free software; see the GNU General Public Licence
# version 2 or later for copying conditions. There is NO warranty.
# Last modified: Mon, 10 Nov 1997 22:44:37 -0700
#!/bin/bash -e
#
# preinst script for the Debian GNU/Linux lilypond package
-# by Anthony Fok <foka@gpu.srv.ualberta.ca>
+# by Anthony Fok <foka@debian.org>
# This is free software; see the GNU General Public Licence
# version 2 or later for copying conditions. There is NO warranty.
# Last modified: Tue, 11 Nov 1997 01:25:15 -0700
# This is free software; see the GNU General Public Licence
# version 2 or later for copying conditions. There is NO warranty.
#
-# Currently maintained by Anthony Fok <foka@gpu.srv.ualberta.ca>
+# Currently maintained by Anthony Fok <foka@debian.org>
# for Debian GNU/Linux.
package=lilypond
SHELL=/bin/bash
# Uncomment this to turn on verbose mode.
-export DH_VERBOSE=1
+#export DH_VERBOSE=1
build: build-stamp
build-stamp:
dh_testdir
dh_testroot
rm -f build-stamp
- dh_clean
-$(MAKE) distclean
+ # Don't put dh_clean before "make distclean"! dh_clean is
+ # "too smart" and it deletes too many files!
+ dh_clean
rm -f {,*/}out/{*,.build} flower/config.{log,status}
# Build architecture-independent files here.
binary-arch: build
dh_testdir
dh_testroot
- dh_clean
dh_installdirs usr/lib/texmf/doc
$(MAKE) prefix=`pwd`/debian/tmp/usr install
ln -fs ../../../doc/lilypond debian/tmp/usr/lib/texmf/doc/lilypond
dh_installdocs BUGS TODO NEWS DEDICATION ANNOUNCE README \
Documentation/out/*.text Documentation/*.doc \
- Documentation/lelie_logo.xpm
- dh_installexamples
+ Documentation/lelie_logo.xpm bin/lytodvi.sh
+ dh_installexamples input/*.ly input/*.tex
# dh_installmenu
# dh_installcron
# dh_installmanpages