On Wed, 28 Oct 2009 23:49:35 -0500, Manoj Srivastava wrote: > Package: baycomepp > Version: 0.10-12 > Severity: serious > Justification: The package installs shared libraries in a directory controlled > User: [email protected] > Usertags: postinst-must-call-ldconfig > > Refer to Debian Policy Manual section 8.1.1 (ldconfig) for details.
The attached patch fixes this bug, but the output of dpkg-shlibdeps doesn't make me happy: dpkg-shlibdeps: warning: symbol sig_usr2 used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol parport_direct_emul_ops used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol logging used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol parport_ops used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol pp_direct_flags used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol sighandler used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol pp_direct_iobase used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol state used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol parport_direct_ops used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: symbol errprintf used by debian/baycomepp/usr/lib/baycomfpga_init.so found in none of the libraries. dpkg-shlibdeps: warning: 8 other similar warnings have been skipped (use -v to see them all). Cheers, gregor -- .''`. http://info.comodo.priv.at/ -- GPG Key IDs: 0x00F3CFE4, 0x8649AA06 : :' : Debian GNU/Linux user, admin, & developer - http://www.debian.org/ `. `' Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/ `- BOFH excuse #273: The cord jumped over and hit the power switch.
diff -u baycomepp-0.10/debian/changelog baycomepp-0.10/debian/changelog
--- baycomepp-0.10/debian/changelog
+++ baycomepp-0.10/debian/changelog
@@ -1,3 +1,11 @@
+baycomepp (0.10-12.2) UNRELEASED; urgency=low
+
+ * Non-maintainer upload.
+ * Fix "postinst-must-call-ldconfig /usr/lib/baycomfpga_init.so"
+ by adding minimal debian/{postinst,postrm} (closes: #553111).
+
+ -- gregor herrmann <[email protected]> Sat, 28 Nov 2009 18:06:20 +0100
+
baycomepp (0.10-12.1) unstable; urgency=low
* Retiring - remove myself from the uploaders list.
only in patch2:
unchanged:
--- baycomepp-0.10.orig/debian/postrm
+++ baycomepp-0.10/debian/postrm
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ remove)
+ ldconfig
+ ;;
+ *)
+ ;;
+esac
+
+#DEBHELPER#
only in patch2:
unchanged:
--- baycomepp-0.10.orig/debian/postinst
+++ baycomepp-0.10/debian/postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ ldconfig
+ ;;
+ *)
+ ;;
+esac
+
+#DEBHELPER#
signature.asc
Description: Digital signature

