Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gtk-sharp-module.eclass
Date: Sun, 23 Aug 2009 00:14:33
Message-Id: E1Mf0j9-0004SB-Sd@stork.gentoo.org
1 loki_val 09/08/23 00:14:31
2
3 Modified: gtk-sharp-module.eclass
4 Log:
5 The gnome-desktop-sharp assembly is currently locked to libgnome-desktop.so.11. Since it seems Gnome upstream will not make ABI-incompatible changes for now, we can relax dependencies. Solves bug 279072.
6
7 Revision Changes Path
8 1.25 eclass/gtk-sharp-module.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?rev=1.25&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?rev=1.25&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?r1=1.24&r2=1.25
13
14 Index: gtk-sharp-module.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v
17 retrieving revision 1.24
18 retrieving revision 1.25
19 diff -u -r1.24 -r1.25
20 --- gtk-sharp-module.eclass 3 May 2009 20:03:10 -0000 1.24
21 +++ gtk-sharp-module.eclass 23 Aug 2009 00:14:31 -0000 1.25
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.24 2009/05/03 20:03:10 loki_val Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.25 2009/08/23 00:14:31 loki_val Exp $
27
28 # @ECLASS: gtk-sharp-module.eclass
29 # @MAINTAINER:
30 @@ -203,9 +203,11 @@
31 ;;
32 #gnome-desktop-sharp tarball
33 gnome-desktop-sharp-*)
34 - # NOTE: This is REQUIRED to be locked to PV_MAJOR
35 - # libgnome-desktop-2.so.INTEGER is hardcoded in gnomedesktop-sharp.dll.config
36 - add_depend "=gnome-base/gnome-desktop-${PV_MAJOR}*"
37 + # NOTE: libgnome-desktop-2.so has been known to make binary-
38 + # incompatible changes, requiring .so bumps. gnome-desktop-sharp
39 + # is locked to a specific .so.n version, so strict dependencies
40 + # may be required in the future (as it has in the past).
41 + add_depend ">=gnome-base/gnome-desktop-${PV_MAJOR}"
42 ;;
43 gnome-panel-sharp-*)
44 add_depend ">=gnome-base/gnome-panel-${PV_MAJOR}"