diff options
author | Modestas Vainius <modestas@vainius.eu> | 2008-08-02 19:50:30 +0000 |
---|---|---|
committer | Modestas Vainius <modestas@vainius.eu> | 2008-08-02 19:50:30 +0000 |
commit | d784099ec28acbeddb1e4629c7c2273b8ec96750 (patch) | |
tree | 1ccf5e0a6798930e8191cfbb7f9aebda0823a370 | |
parent | f4392618284ccd8ead3e20c266b20d48b9cf4c92 (diff) | |
download | qt4-x11-d784099ec28acbeddb1e4629c7c2273b8ec96750.tar.gz |
Leave shlibs at (>= 4.4.0) since 4.4.1 is supposed to be backwards and
forward compatible with 4.4.0.
NOTE: untested. Please check if it works when packages are built.
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index c74710d..b4a390b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -qt4-x11 (4.4.1-0r1) UNRELEASED; urgency=low +qt4-x11 (4.4.1-0r2) UNRELEASED; urgency=low * New upstream release. @@ -37,8 +37,10 @@ qt4-x11 (4.4.1-0r1) UNRELEASED; urgency=low - 14_add_libraries_to_gui_build_where_actually_needed.diff - 20_mips_atomic_ops.diff - 50_kfreebsd_build_fix.diff + * Leave shlibs at (>= 4.4.0) since 4.4.1 is supposed to be backwards and + forward compatible with 4.4.0. - -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 09 Jul 2008 02:53:33 +0200 + -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 02 Aug 2008 22:49:17 +0300 qt4-x11 (4.4.0-4) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 5160573..8b63248 100755 --- a/debian/rules +++ b/debian/rules @@ -22,7 +22,12 @@ DEB_DH_INSTALL_SOURCEDIR := debian/tmp DEB_DH_INSTALL_ARGS := --exclude=.debug DEB_MAKE_CLEAN_TARGET := confclean distclean -DEB_DH_MAKESHLIBS_ARGS_ALL := -V + +# Shlibs of the current upstream version +#DEB_DH_MAKESHLIBS_ARGS_ALL := -V +# Specific shlibs version +SHLIBSVERSION := 4.4.0 +$(foreach libpkg,$(filter-out %-dev %-dbg,$(filter lib%,$(DEB_ARCH_PACKAGES))),$(eval DEB_DH_MAKESHLIBS_ARGS_$(libpkg) := -V'$(libpkg) (>= $(SHLIBSVERSION))')) DEB_DH_STRIP_ARGS_libqt4-dbg := --exclude=.debug |