[Pkg-voip-commits] r1868 - sofia-sip/trunk/debian
George Danchev
danchev-guest at costa.debian.org
Tue Jun 13 14:39:39 UTC 2006
Author: danchev-guest
Date: 2006-06-13 14:39:39 +0000 (Tue, 13 Jun 2006)
New Revision: 1868
Modified:
sofia-sip/trunk/debian/TODO.Debian
sofia-sip/trunk/debian/rules
sofia-sip/trunk/debian/watch
Log:
add --prefix=/usr, fix watch, update TODO
Modified: sofia-sip/trunk/debian/TODO.Debian
===================================================================
--- sofia-sip/trunk/debian/TODO.Debian 2006-06-13 12:31:26 UTC (rev 1867)
+++ sofia-sip/trunk/debian/TODO.Debian 2006-06-13 14:39:39 UTC (rev 1868)
@@ -1,15 +1,25 @@
-1 [done] File ITP and close it from debian/changelog
-
-2 [done] Create print-version, get-orig-source (with hash checking) for debian/rules
-
-3 [done] Adjust Maintainer/Uploadrs
-
-4 avoid a harmless warning from CDBS:
+1 avoid a harmless warning from CDBS:
debian/rules:12: warning: overriding commands for target `debian/stamp-autotools-files'
/usr/share/cdbs/1/class/autotools-files.mk:54: warning: ignoring old commands for
target `debian/stamp-autotools-files'
-5 [done] Do we need a watch file ? msp: Not mandatory, but useful for tracking upgrades and qa page.
+2 Use the following snippet as stolen from libpkg-guide,
+ to find out library package names according to the the library's SONAME
+#!/bin/sh
+if [ -f "$1" ];
+then
+ objdump -p $1 | \
+ sed -n -e's/^[[:space:]]*SONAME[[:space:]]*//p' | \
+ sed -e's/\([0-9]\)\.so\./\1-/; s/\.so\.//'
+ objdump -p $1 | \
+ sed -n -e's/^[[:space:]]*SONAME[[:space:]]*//p' | \
+ sed -e's/\(0-9\)\.so\./\1/; s/\.so\.//; s/$/-dev/'
+else
+ echo -e "\ngimmi a shared object library filename\n"
+fi
+
+
+3 Write manpages for: localinfo, sip-date, sip-dig, sip-options, stunc
Modified: sofia-sip/trunk/debian/rules
===================================================================
--- sofia-sip/trunk/debian/rules 2006-06-13 12:31:26 UTC (rev 1867)
+++ sofia-sip/trunk/debian/rules 2006-06-13 14:39:39 UTC (rev 1868)
@@ -7,9 +7,10 @@
DEB_CONFIGURE_PREFIX=/usr
DEB_CONFIGURE_SYSCONFDIR=/etc
+#DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr
debian/stamp-autotools-files:
- ./configure
+ ./configure --prefix=/usr
touch debian/stamp-autotools-files
# The following is for internal development usage only
Modified: sofia-sip/trunk/debian/watch
===================================================================
--- sofia-sip/trunk/debian/watch 2006-06-13 12:31:26 UTC (rev 1867)
+++ sofia-sip/trunk/debian/watch 2006-06-13 14:39:39 UTC (rev 1868)
@@ -4,6 +4,8 @@
version=3
# Uncomment to find new files on sourceforge, for debscripts >= 2.9
-http://sf.net/sofia-sip/sofia-sip-(.*)\.tar\.gz debian svn-upgrade
+#http://sf.net/sofia-sip/sofia-sip-(.*)\.tar\.gz debian svn-upgrade
-
+# NOTE: We do not want to match versions like: sofia-sip-2543-1.11.6.tar.gz,
+# but triple digit-dot only versions like: sofia-sip-1.11.9.tar.gz
+http://heanet.dl.sourceforge.net/sofia-sip/sofia-sip-([\d]+)\.([\d]+)\.([\d]+)\.tar\.gz debian svn-upgrade
More information about the Pkg-voip-commits
mailing list