Author: tille Date: 2010-07-10 05:06:34 +0000 (Sat, 10 Jul 2010) New Revision: 5021
Modified: trunk/packages/ctapimkt/trunk/debian/changelog trunk/packages/ctapimkt/trunk/debian/control trunk/packages/ctapimkt/trunk/debian/rules Log: Fix soname issue in new upstream version Modified: trunk/packages/ctapimkt/trunk/debian/changelog =================================================================== --- trunk/packages/ctapimkt/trunk/debian/changelog 2010-07-10 05:04:17 UTC (rev 5020) +++ trunk/packages/ctapimkt/trunk/debian/changelog 2010-07-10 05:06:34 UTC (rev 5021) @@ -1,3 +1,13 @@ +libctapimkt (1.0.5-1) UNRELEASED; urgency=low + + * New upstream version + Closes: #557495 + * debian/control: + - Standards-Version: 3.9.0 (no changes needed) + - Build-Depends: libusb-dev + + -- Andreas Tille <[email protected]> Thu, 08 Jul 2010 11:40:28 +0200 + libctapimkt (1.0.1-1) unstable; urgency=low * Initial release (Closes: #554045) Modified: trunk/packages/ctapimkt/trunk/debian/control =================================================================== --- trunk/packages/ctapimkt/trunk/debian/control 2010-07-10 05:04:17 UTC (rev 5020) +++ trunk/packages/ctapimkt/trunk/debian/control 2010-07-10 05:06:34 UTC (rev 5021) @@ -3,8 +3,9 @@ Maintainer: Debian Med Packaging Team <[email protected]> DM-Upload-Allowed: yes Uploaders: Andreas Tille <[email protected]> -Build-Depends: debhelper (>= 7), autotools-dev, automake, d-shlibs (>= 0.38), cdbs -Standards-Version: 3.8.3 +Build-Depends: debhelper (>= 7), autotools-dev, automake, d-shlibs (>= 0.38), cdbs, + libusb-dev +Standards-Version: 3.9.0 Section: libs Homepage: http://sourceforge.net/projects/ctapi-mkt Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/libctapimkt/?rev=0&sc=0 @@ -13,7 +14,7 @@ Package: libctapimkt0-dev Section: libdevel Architecture: any -Depends: libctapimkt0 (= ${binary:Version}), ${devlibs:Depends}, ${misc:Depends} +Depends: libctapimkt0 (= ${binary:Version}), ${devlibs:Depends}, ${misc:Depends}, ctapi-dev Provides: libctapimkt-dev Conflicts: libctapimkt-dev Description: Read German Krankenversichertenkarte and eGK Modified: trunk/packages/ctapimkt/trunk/debian/rules =================================================================== --- trunk/packages/ctapimkt/trunk/debian/rules 2010-07-10 05:04:17 UTC (rev 5020) +++ trunk/packages/ctapimkt/trunk/debian/rules 2010-07-10 05:06:34 UTC (rev 5021) @@ -5,18 +5,24 @@ include /usr/share/cdbs/1/class/autotools.mk pkg=libctapimkt -version=1.0 +version=0 +## make sure we really use the ctapi.h header file from ctapi-dev package +#makebuilddir:: +# if [ -e ctapi.h ] ; then mv ctapi.h ctapi.h_ ; fi + common-binary-post-install-arch:: # Call d-shlibmove to comply with library packaging guide - d-devlibdeps debian/$(pkg)1-dev.substvars \ + d-devlibdeps debian/$(pkg)$(version)-dev.substvars \ debian/tmp/usr/lib/$(pkg).so # /bin/sh debian/debug/ - cp -a *.h debian/tmp - # cp -a doc/html/* debian/tmp/usr/share/doc/html + mkdir -p debian/$(pkg)$(version)-dev/usr/include + cp -a ctapimkt debian/$(pkg)$(version)-dev/usr/include d-shlibmove --commit \ - --movedev "debian/tmp/*.h" usr/include \ debian/tmp/usr/lib/$(pkg).so clean:: - rm -f debian/$(pkg)1-dev.substvars + rm -f debian/$(pkg)$(version)-dev.substvars +# # revert the rename of the original header file +# if [ -e ctapi.h_ ] ; then mv ctapi.h_ ctapi.h ; fi + _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
