summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2011-01-11 16:23:49 +0000
committerPacho Ramos <pacho@gentoo.org>2011-01-11 16:23:49 +0000
commit211e6716ab38dd4e200e47880b6400ace1f7e5a8 (patch)
tree49903b63c8b3baa2bb057cf3a419ffd00a1325d0 /dev-libs
parentsys-kernel/genkernel: Use e2fsprogs 1.41.14 for experimental branch (diff)
downloadgentoo-2-211e6716ab38dd4e200e47880b6400ace1f7e5a8.tar.gz
gentoo-2-211e6716ab38dd4e200e47880b6400ace1f7e5a8.tar.bz2
gentoo-2-211e6716ab38dd4e200e47880b6400ace1f7e5a8.zip
Inform users about possible breakage when updating glib and not dbus-glib, bug #297483.
(Portage version: 2.1.9.30/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/glib/ChangeLog8
-rw-r--r--dev-libs/glib/glib-2.26.1.ebuild12
2 files changed, 16 insertions, 4 deletions
diff --git a/dev-libs/glib/ChangeLog b/dev-libs/glib/ChangeLog
index 2a11a5f372fe..0d53c717f03a 100644
--- a/dev-libs/glib/ChangeLog
+++ b/dev-libs/glib/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.433 2010/12/16 18:09:21 grobian Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.434 2011/01/11 16:23:49 pacho Exp $
+
+ 11 Jan 2011; Pacho Ramos <pacho@gentoo.org> glib-2.26.1.ebuild:
+ Inform users about possible breakage when updating glib and not dbus-glib,
+ bug #297483.
16 Dec 2010; Fabian Groffen <grobian@gentoo.org> glib-2.26.1.ebuild:
Do not use ED with DESTDIR
diff --git a/dev-libs/glib/glib-2.26.1.ebuild b/dev-libs/glib/glib-2.26.1.ebuild
index 7d2c6f302d7b..da86b097caf9 100644
--- a/dev-libs/glib/glib-2.26.1.ebuild
+++ b/dev-libs/glib/glib-2.26.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.26.1.ebuild,v 1.2 2010/12/16 18:09:21 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.26.1.ebuild,v 1.3 2011/01/11 16:23:49 pacho Exp $
EAPI="3"
@@ -151,3 +151,11 @@ pkg_preinst() {
fi
fi
}
+
+pkg_postinst() {
+ # Inform users about possible breakage when updating glib and not dbus-glib, bug #297483
+ if has_version dev-libs/dbus-glib; then
+ ewarn "If you experience a breakage after updating dev-libs/glib try"
+ ewarn "rebuilding dev-libs/dbus-glib"
+ fi
+}