merge NMU from Branden Robinson

This commit is contained in:
David Schleef 2001-11-07 23:20:47 +00:00
parent b1886b0378
commit 2c8ea61eb6
5 changed files with 35 additions and 13 deletions

18
debian/changelog vendored
View file

@ -1,3 +1,17 @@
comedilib (0.7.16-1.1) unstable; urgency=low
* NMU
* debian/control: bumped Standards-Version
* debian/ex.doc-base.package: removed dh_make template file
* debian/libcomedi0.postinst:
- don't try to create device files if they already exist
- don't use absolute path to ldconfig
* debian/libcomedi0.postrm: new; run ldconfig on remove, per Policy
* debian/libcomedi0.shlibs: refer to shared library package's real name
and use a legal version number (Closes: #118057)
-- Branden Robinson <branden@debian.org> Fri, 2 Nov 2001 14:37:34 -0500
comedilib (0.7.16-1) unstable; urgency=low
* Upstream version change
@ -45,7 +59,3 @@ comedilib (0.7.9-1) unstable; urgency=low
* Initial Release.
-- David Schleef <ds@stm.lbl.gov> Tue, 28 Mar 2000 11:44:42 -0800
Local variables:
mode: debian-changelog
End:

2
debian/control vendored
View file

@ -3,7 +3,7 @@ Section: devel
Priority: optional
Maintainer: David Schleef <ds@schleef.org>
Build-Depends: debhelper
Standards-Version: 3.5.2
Standards-Version: 3.5.6
Package: libcomedi-dev
Section: devel

View file

@ -1,16 +1,19 @@
#!/bin/sh
if [ "$1" = "configure" ]; then
/sbin/ldconfig
fi
# Policy says that the user should be asked before we do this.
for i in 0 1 2 3
do
mknod /dev/comedi$i c 98 $i
chown root.root /dev/comedi$i
chmod 666 /dev/comedi$i
if [ ! -e /dev/comedi$i ]; then
mknod /dev/comedi$i c 98 $i
chown root.root /dev/comedi$i
chmod 666 /dev/comedi$i
fi
done
#DEBHELPER#
if [ "$1" = "configure" ]; then
ldconfig
fi
exit 0

9
debian/libcomedi0.postrm vendored Normal file
View file

@ -0,0 +1,9 @@
#!/bin/sh
#DEBHELPER#
if [ "$1" = "remove" ]; then
ldconfig
fi
exit 0

View file

@ -1 +1 @@
libcomedi 0.7.12 comedilib (>> 0.7.12-0)
libcomedi 0 libcomedi0 (>> 0.7.16)