[xiph-cvs] cvs commit: ao/debian libao0-dev.dirs libao0-dev.docs libao0-dev.files libao0-dev.postinst libao0-dev.postrm libao0-dev.preinst libao0-dev.prerm libao0-dev.undocumented libao0.dirs libao0.files libao0.postinst libao0.postrm libao0.preinst libao0.prerm control rules
Chris Cheney
calc at xiph.org
Thu Nov 9 13:57:47 PST 2000
calc 00/11/09 13:57:47
Modified: debian control rules
Added: debian libao0-dev.dirs libao0-dev.docs libao0-dev.files
libao0-dev.postinst libao0-dev.postrm
libao0-dev.preinst libao0-dev.prerm
libao0-dev.undocumented libao0.dirs libao0.files
libao0.postinst libao0.postrm libao0.preinst
libao0.prerm
Log:
Added new libao0 files to Debian directory
Revision Changes Path
1.3 +4 -3 ao/debian/control
Index: control
===================================================================
RCS file: /usr/local/cvsroot/ao/debian/control,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- control 2000/11/07 05:57:21 1.2
+++ control 2000/11/09 21:57:45 1.3
@@ -5,16 +5,17 @@
Build-Depends: debhelper
Standards-Version: 3.1.1
-Package: libao-dev
+Package: libao0-dev
Architecture: any
-Depends: libao (= ${Source-Version}), libc6-dev
+Depends: libao0 (= ${Source-Version}), libc6-dev
Description: Cross Platform Audio Output Library Development
The libao-devel package contains the header files and documentation
needed to develop applications with libao.
-Package: libao
+Package: libao0
Architecture: any
Depends: ${shlibs:Depends}
+Suggests: libasound1
Description: Cross Platform Audio Output Library
Libao is a cross platform audio output library. It currently supports
ESD, OSS, Solaris, and IRIX.
1.2 +1 -1 ao/debian/rules
Index: rules
===================================================================
RCS file: /usr/local/cvsroot/ao/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rules 2000/11/07 04:43:33 1.1
+++ rules 2000/11/09 21:57:45 1.2
@@ -95,7 +95,7 @@
dh_makeshlibs
dh_installdeb
# dh_perl
- dh_shlibdeps
+ dh_shlibdeps --exclude=/usr/lib/ao
dh_gencontrol
dh_md5sums
dh_builddeb
1.1 ao/debian/libao0-dev.dirs
Index: libao0-dev.dirs
===================================================================
usr/lib
usr/lib/ao
usr/include
usr/include/ao
1.1 ao/debian/libao0-dev.docs
Index: libao0-dev.docs
===================================================================
README
TODO
doc/API
doc/DRIVERS
doc/USAGE
doc/WANTED
1.1 ao/debian/libao0-dev.files
Index: libao0-dev.files
===================================================================
usr/include/ao/*.h
usr/lib/*.so
usr/lib/*.la
usr/lib/ao/*.la
usr/share/aclocal/ao.m4
1.1 ao/debian/libao0-dev.postinst
Index: libao0-dev.postinst
===================================================================
#! /bin/sh
# postinst script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
case "$1" in
configure)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
1.1 ao/debian/libao0-dev.postrm
Index: libao0-dev.postrm
===================================================================
#! /bin/sh
# postrm script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 0
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
1.1 ao/debian/libao0-dev.preinst
Index: libao0-dev.preinst
===================================================================
#! /bin/sh
# preinst script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <new-preinst> `install'
# * <new-preinst> `install' <old-version>
# * <new-preinst> `upgrade' <old-version>
# * <old-preinst> `abort-upgrade' <new-version>
#
# For details see /usr/share/doc/packaging-manual/
case "$1" in
install|upgrade)
# if [ "$1" = "upgrade" ]
# then
# start-stop-daemon --stop --quiet --oknodo \
# --pidfile /var/run/libao.pid \
# --exec /usr/sbin/libao 2>/dev/null || true
# fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
1.1 ao/debian/libao0-dev.prerm
Index: libao0-dev.prerm
===================================================================
#! /bin/sh
# prerm script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <prerm> `remove'
# * <old-prerm> `upgrade' <new-version>
# * <new-prerm> `failed-upgrade' <old-version>
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <deconfigured's-prerm> `deconfigure' `in-favour'
# <package-being-installed> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
remove|upgrade|deconfigure)
# install-info --quiet --remove /usr/info/libao.info.gz
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
1.1 ao/debian/libao0-dev.undocumented
Index: libao0-dev.undocumented
===================================================================
ao-config.1
1.1 ao/debian/libao0.dirs
Index: libao0.dirs
===================================================================
usr/lib
usr/lib/ao
1.1 ao/debian/libao0.files
Index: libao0.files
===================================================================
usr/lib/*.so.*
usr/lib/ao/*.so
1.1 ao/debian/libao0.postinst
Index: libao0.postinst
===================================================================
#! /bin/sh
# postinst script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
#
# quoting from the policy:
# Any necessary prompting should almost always be confined to the
# post-installation script, and should be protected with a conditional
# so that unnecessary prompting doesn't happen if a package's
# installation fails and the `postinst' is called with `abort-upgrade',
# `abort-remove' or `abort-deconfigure'.
case "$1" in
configure)
ldconfig
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
1.1 ao/debian/libao0.postrm
Index: libao0.postrm
===================================================================
#! /bin/sh
# postrm script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 0
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
1.1 ao/debian/libao0.preinst
Index: libao0.preinst
===================================================================
#! /bin/sh
# preinst script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <new-preinst> `install'
# * <new-preinst> `install' <old-version>
# * <new-preinst> `upgrade' <old-version>
# * <old-preinst> `abort-upgrade' <new-version>
#
# For details see /usr/share/doc/packaging-manual/
case "$1" in
install|upgrade)
# if [ "$1" = "upgrade" ]
# then
# start-stop-daemon --stop --quiet --oknodo \
# --pidfile /var/run/libao.pid \
# --exec /usr/sbin/libao 2>/dev/null || true
# fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
1.1 ao/debian/libao0.prerm
Index: libao0.prerm
===================================================================
#! /bin/sh
# prerm script for libao
#
# see: dh_installdeb(1)
et -e
# summary of how this script can be called:
# * <prerm> `remove'
# * <old-prerm> `upgrade' <new-version>
# * <new-prerm> `failed-upgrade' <old-version>
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <deconfigured's-prerm> `deconfigure' `in-favour'
# <package-being-installed> <version> `removing'
# <conflicting-package> <version>
# for details, see /usr/share/doc/packaging-manual/
case "$1" in
remove|upgrade|deconfigure)
# install-info --quiet --remove /usr/info/libao.info.gz
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list