[xiph-cvs] cvs commit: ogg-python/debian pyogg.dirs pyogg.docs pyogg.postinst pyogg.postrm pyogg.preinst pyogg.prerm README.Debian changelog control rules

Chris Cheney calc at xiph.org
Mon Feb 26 07:08:41 PST 2001



calc        01/02/26 07:08:41

  Modified:    debian   README.Debian changelog control rules
  Added:       debian   pyogg.dirs pyogg.docs pyogg.postinst pyogg.postrm
                        pyogg.preinst pyogg.prerm
  Log:
  Debian Lots of stupid fixes

Revision  Changes    Path
1.3       +2 -2      ogg-python/debian/README.Debian

Index: README.Debian
===================================================================
RCS file: /usr/local/cvsroot/ogg-python/debian/README.Debian,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.Debian	2001/02/19 06:37:24	1.2
+++ README.Debian	2001/02/26 15:08:39	1.3
@@ -1,5 +1,5 @@
-ogg-python for Debian
----------------------
+pyogg for Debian
+----------------
 
 Nothing important to mention at this time.
 

1.2       +1 -1      ogg-python/debian/changelog

Index: changelog
===================================================================
RCS file: /usr/local/cvsroot/ogg-python/debian/changelog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- changelog	2001/02/19 06:00:19	1.1
+++ changelog	2001/02/26 15:08:39	1.2
@@ -1,4 +1,4 @@
-ogg-python (0.2-1) unstable; urgency=low
+pyogg (0.2-1) unstable; urgency=low
 
   * Initial Release.
 

1.5       +2 -2      ogg-python/debian/control

Index: control
===================================================================
RCS file: /usr/local/cvsroot/ogg-python/debian/control,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- control	2001/02/26 05:21:05	1.4
+++ control	2001/02/26 15:08:39	1.5
@@ -1,11 +1,11 @@
-Source: ogg-python
+Source: pyogg
 Section: interpreters
 Priority: optional
 Maintainer: Christopher L Cheney <ccheney at debian.org>
 Build-Depends: debhelper (>> 2.0.0), libogg-dev (>> 1.0beta4), python-base, python-distutils
 Standards-Version: 3.5.2.0
 
-Package: ogg-python
+Package: pyogg
 Architecture: any
 Depends: ${shlibs:Depends}
 Description: A Python interface to the Ogg library

1.2       +1 -1      ogg-python/debian/rules

Index: rules
===================================================================
RCS file: /usr/local/cvsroot/ogg-python/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rules	2001/02/19 06:00:19	1.1
+++ rules	2001/02/26 15:08:39	1.2
@@ -41,7 +41,7 @@
         dh_clean -k
         dh_installdirs
 
-	python setup.py install --prefix $(CURDIR)/debian/ogg-python/usr
+	python setup.py install --prefix $(CURDIR)/debian/pyogg/usr
 
 
 # Build architecture-independent files here.

1.1                  ogg-python/debian/pyogg.dirs

Index: pyogg.dirs
===================================================================
usr/lib

1.1                  ogg-python/debian/pyogg.docs

Index: pyogg.docs
===================================================================
NEWS
README

1.1                  ogg-python/debian/pyogg.postinst

Index: pyogg.postinst
===================================================================
#! /bin/sh
# postinst script for pyogg
#
# 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                  ogg-python/debian/pyogg.postrm

Index: pyogg.postrm
===================================================================
#! /bin/sh
# postrm script for pyogg
#
# 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                  ogg-python/debian/pyogg.preinst

Index: pyogg.preinst
===================================================================
#! /bin/sh
# preinst script for pyogg
#
# 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)
    ;;

    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                  ogg-python/debian/pyogg.prerm

Index: pyogg.prerm
===================================================================
#! /bin/sh
# prerm script for pyogg
#
# 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)
        ;;
    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