diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-24 12:27:05 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-24 12:27:05 +0000 |
commit | 5e1571e0fac7f36aee7c712bc65e2062489114dc (patch) | |
tree | a74320608e111b67e2b28e0b47094b0db9477dbb /dev-cpp/commoncpp2 | |
parent | sparc stable wrt #188383 (diff) | |
download | gentoo-2-5e1571e0fac7f36aee7c712bc65e2062489114dc.tar.gz gentoo-2-5e1571e0fac7f36aee7c712bc65e2062489114dc.tar.bz2 gentoo-2-5e1571e0fac7f36aee7c712bc65e2062489114dc.zip |
Added pkg_postinst ABI breakage warning (thanks to dragonheart)
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'dev-cpp/commoncpp2')
-rw-r--r-- | dev-cpp/commoncpp2/ChangeLog | 6 | ||||
-rw-r--r-- | dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/dev-cpp/commoncpp2/ChangeLog b/dev-cpp/commoncpp2/ChangeLog index 02f4e18b6fe2..b280013d51e5 100644 --- a/dev-cpp/commoncpp2/ChangeLog +++ b/dev-cpp/commoncpp2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-cpp/commoncpp2 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.35 2007/12/24 09:31:55 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.36 2007/12/24 12:27:05 dev-zero Exp $ + + 24 Dec 2007; Tiziano Müller <dev-zero@gentoo.org> + commoncpp2-1.6.1.ebuild: + Added pkg_postinst ABI breakage warning (thanks to dragonheart) *commoncpp2-1.6.1 (24 Dec 2007) diff --git a/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild index 23c10c564eab..4d9995f4da41 100644 --- a/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild +++ b/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.1 2007/12/24 09:31:55 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.2 2007/12/24 12:27:05 dev-zero Exp $ inherit eutils autotools @@ -57,6 +57,12 @@ src_install () { fi } +pkg_postinst() { + ewarn "There's a change in the ABI between version 1.5.x and 1.6.x, please" + ewarn "run the following command to find broken packages and rebuild them:" + ewarn " revdep-rebuild --library=libccext2-1.5.so" +} + # Some of the tests hang forever #src_test() { # cd "${S}/tests" |