* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-06-06 16:00 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2011-06-06 16:00 UTC (permalink / raw
To: gentoo-commits
pacho 11/06/06 16:00:07
Modified: ChangeLog
Added: glib-2.28.8.ebuild
Log:
Version bump, also skip tests requiring dev-python/dbus-python and dev-util/desktop-file-utils when they are not available as cannot DEPEND on them due circular dependencies problem (bugs #286629 and #349236).
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Revision Changes Path
1.468 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.468&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.468&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.467&r2=1.468
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.467
retrieving revision 1.468
diff -u -r1.467 -r1.468
--- ChangeLog 5 Jun 2011 13:12:30 -0000 1.467
+++ ChangeLog 6 Jun 2011 16:00:07 -0000 1.468
@@ -1,6 +1,13 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.467 2011/06/05 13:12:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.468 2011/06/06 16:00:07 pacho Exp $
+
+*glib-2.28.8 (06 Jun 2011)
+
+ 06 Jun 2011; Pacho Ramos <pacho@gentoo.org> +glib-2.28.8.ebuild:
+ Version bump, also skip tests requiring dev-python/dbus-python and
+ dev-util/desktop-file-utils when they are not available as cannot DEPEND on
+ them due circular dependencies problem (bugs #286629 and #349236).
05 Jun 2011; Pacho Ramos <pacho@gentoo.org> glib-1.2.10-r5.ebuild,
-files/glib-2.24-punt-python-check.patch,
1.1 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.1&content-type=text/plain
Index: glib-2.28.8.ebuild
===================================================================
# 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.28.8.ebuild,v 1.1 2011/06/06 16:00:07 pacho Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit autotools gnome.org libtool eutils flag-o-matic pax-utils python virtualx
DESCRIPTION="The GLib library of C routines"
HOMEPAGE="http://www.gtk.org/"
SRC_URI="${SRC_URI}
http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz" # pkg.m4 for eautoreconf
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
sys-libs/zlib
xattr? ( sys-apps/attr )
fam? ( virtual/fam )"
DEPEND="${RDEPEND}
>=sys-devel/gettext-0.11
>=dev-util/gtk-doc-am-1.13
doc? (
>=dev-libs/libxslt-1.0
>=dev-util/gtk-doc-1.13
~app-text/docbook-xml-dtd-4.1.2 )
test? ( dev-util/pkgconfig
>=sys-apps/dbus-1.2.14 )
!<dev-util/gtk-doc-1.15-r2"
PDEPEND="introspection? ( dev-libs/gobject-introspection )
!<gnome-base/gvfs-1.6.4-r990" # Earlier versions do not work with glib
# XXX: Consider adding test? ( sys-devel/gdb ); assert-msg-test tries to use it
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
mv -vf "${WORKDIR}"/pkg-config-*/pkg.m4 "${WORKDIR}"/ || die
if use ia64 ; then
# Only apply for < 4.1
local major=$(gcc-major-version)
local minor=$(gcc-minor-version)
if (( major < 4 || ( major == 4 && minor == 0 ) )); then
epatch "${FILESDIR}/glib-2.10.3-ia64-atomic-ops.patch"
fi
fi
# Don't fail gio tests when ran without userpriv, upstream bug 552912
# This is only a temporary workaround, remove as soon as possible
epatch "${FILESDIR}/${PN}-2.18.1-workaround-gio-test-failure-without-userpriv.patch"
# Fix gmodule issues on fbsd; bug #184301
epatch "${FILESDIR}"/${PN}-2.12.12-fbsd.patch
# Don't check for python, hence removing the build-time python dep.
# We remove the gdb python scripts in src_install due to bug 291328
epatch "${FILESDIR}/${PN}-2.25-punt-python-check.patch"
# Fix test failure when upgrading from 2.22 to 2.24, upstream bug 621368
epatch "${FILESDIR}/${PN}-2.24-assert-test-failure.patch"
# Do not try to remove files on live filesystem, upstream bug #619274
sed 's:^\(.*"/desktop-app-info/delete".*\):/*\1*/:' \
-i "${S}"/gio/tests/desktop-app-info.c || die "sed failed"
# Disable failing tests, upstream bug #???
epatch "${FILESDIR}/${PN}-2.26.0-disable-locale-sensitive-test.patch"
epatch "${FILESDIR}/${PN}-2.26.0-disable-volumemonitor-broken-test.patch"
# Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
if ! has_version dev-util/desktop-file-utils ; then
sed -i -e "/appinfo\/associations/d" gio/tests/appinfo.c || die
sed -i -e "/desktop-app-info\/default/d" gio/tests/desktop-app-info.c || die
sed -i -e "/desktop-app-info\/fallback/d" gio/tests/desktop-app-info.c || die
sed -i -e "/desktop-app-info\/lastused/d" gio/tests/desktop-app-info.c || die
fi
# Disable tests requiring dev-python/dbus-python, bug #349236
if ! has_version dev-python/dbus-python ; then
sed -i -e "/connection\/filter/d" gio/tests/gdbus-connection.c || die
sed -i -e "/connection\/large_message/d" gio/tests/gdbus-connection-slow.c || die
sed -i -e "/gdbus\/proxy/d" gio/tests/gdbus-proxy.c || die
sed -i -e "/gdbus\/bus-watch-name/d" gio/tests/gdbus-names.c || die
sed -i -e "/gdbus\/proxy-well-known-name/d" gio/tests/gdbus-proxy-well-known-name.c || die
sed -i -e "/gdbus\/introspection-parser/d" gio/tests/gdbus-introspection.c || die
sed -i -e "/gdbus\/method-calls-in-thread/d" gio/tests/gdbus-threading.c || die
fi
if ! use test; then
# don't waste time building tests
sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
|| die "sed failed"
fi
# Needed for the punt-python-check patch, disabling timeout test
# Also needed to prevent croscompile failures, see bug #267603
AT_M4DIR="${WORKDIR}" eautoreconf
[[ ${CHOST} == *-freebsd* ]] && elibtoolize
epunt_cxx
}
src_configure() {
local myconf
# Building with --disable-debug highly unrecommended. It will build glib in
# an unusable form as it disables some commonly used API. Please do not
# convert this to the use_enable form, as it results in a broken build.
# -- compnerd (3/27/06)
use debug && myconf="--enable-debug"
# Always use internal libpcre, bug #254659
econf ${myconf} \
$(use_enable xattr) \
$(use_enable doc man) \
$(use_enable doc gtk-doc) \
$(use_enable fam) \
$(use_enable selinux) \
$(use_enable static-libs static) \
--enable-regex \
--with-pcre=internal \
--with-threads=posix \
--disable-dtrace \
--disable-systemtap
}
src_install() {
local f
emake DESTDIR="${D}" install || die "Installation failed"
# Do not install charset.alias even if generated, leave it to libiconv
rm -f "${ED}/usr/lib/charset.alias"
# Don't install gdb python macros, bug 291328
rm -rf "${ED}/usr/share/gdb/" "${ED}/usr/share/glib-2.0/gdb/"
dodoc AUTHORS ChangeLog* NEWS* README || die "dodoc failed"
insinto /usr/share/bash-completion
for f in gdbus gsettings; do
newins "${ED}/etc/bash_completion.d/${f}-bash-completion.sh" ${f} || die
done
rm -rf "${ED}/etc"
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
export XDG_CONFIG_DIRS=/etc/xdg
export XDG_DATA_DIRS=/usr/local/share:/usr/share
export G_DBUS_COOKIE_SHA1_KEYRING_DIR="${T}/temp"
export XDG_DATA_HOME="${T}"
unset GSETTINGS_BACKEND # bug 352451
# Related test is a bit nitpicking
mkdir "$G_DBUS_COOKIE_SHA1_KEYRING_DIR"
chmod 0700 "$G_DBUS_COOKIE_SHA1_KEYRING_DIR"
# Hardened: gdb needs this, bug #338891
if host-is-pax ; then
pax-mark -mr "${S}"/tests/.libs/assert-msg-test \
|| die "Hardened adjustment failed"
fi
# Need X for dbus-launch session X11 initialization
Xemake check || die "tests failed"
}
pkg_preinst() {
# Only give the introspection message if:
# * The user has it enabled
# * Has glib already installed
# * Previous version was different from new version
if use introspection && has_version "${CATEGORY}/${PN}"; then
if ! has_version "=${CATEGORY}/${PF}"; then
ewarn "You must rebuild gobject-introspection so that the installed"
ewarn "typelibs and girs are regenerated for the new APIs in glib"
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
}
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-06-08 17:47 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2011-06-08 17:47 UTC (permalink / raw
To: gentoo-commits
pacho 11/06/08 17:47:45
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Notify people about some tests will be skipped in certain situations and intruct them about how to run all of them. Thanks a lot to Gilles for explaining me the possible problems could appear if people ignores this situation.
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Revision Changes Path
1.469 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.469&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.469&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.468&r2=1.469
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.468
retrieving revision 1.469
diff -u -r1.468 -r1.469
--- ChangeLog 6 Jun 2011 16:00:07 -0000 1.468
+++ ChangeLog 8 Jun 2011 17:47:44 -0000 1.469
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.468 2011/06/06 16:00:07 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.469 2011/06/08 17:47:44 pacho Exp $
+
+ 08 Jun 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
+ Notify people about some tests will be skipped in certain situations and
+ intruct them about how to run all of them. Thanks a lot to Gilles for
+ explaining me the possible problems could appear if people ignores this
+ situation.
*glib-2.28.8 (06 Jun 2011)
1.2 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.1&r2=1.2
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glib-2.28.8.ebuild 6 Jun 2011 16:00:07 -0000 1.1
+++ glib-2.28.8.ebuild 8 Jun 2011 17:47:44 -0000 1.2
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.1 2011/06/06 16:00:07 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.2 2011/06/08 17:47:44 pacho Exp $
EAPI="3"
PYTHON_DEPEND="2"
@@ -76,6 +76,8 @@
# Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
if ! has_version dev-util/desktop-file-utils ; then
+ ewarn "Some tests will be skipped due dev-util/desktop-file-utils not being present on your system,"
+ ewarn "think on installing it to get these tests run."
sed -i -e "/appinfo\/associations/d" gio/tests/appinfo.c || die
sed -i -e "/desktop-app-info\/default/d" gio/tests/desktop-app-info.c || die
sed -i -e "/desktop-app-info\/fallback/d" gio/tests/desktop-app-info.c || die
@@ -84,6 +86,8 @@
# Disable tests requiring dev-python/dbus-python, bug #349236
if ! has_version dev-python/dbus-python ; then
+ ewarn "Some tests will be skipped due dev-python/dbus-python not being present on your system,"
+ ewarn "think on installing it to get these tests run."
sed -i -e "/connection\/filter/d" gio/tests/gdbus-connection.c || die
sed -i -e "/connection\/large_message/d" gio/tests/gdbus-connection-slow.c || die
sed -i -e "/gdbus\/proxy/d" gio/tests/gdbus-proxy.c || die
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-01 16:09 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2011-07-01 16:09 UTC (permalink / raw
To: gentoo-commits
pacho 11/07/01 16:09:55
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Really skip tests when unneeded (bug #373069 by Matt Turner).
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Revision Changes Path
1.472 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.472&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.472&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.471&r2=1.472
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.471
retrieving revision 1.472
diff -u -r1.471 -r1.472
--- ChangeLog 11 Jun 2011 15:04:18 -0000 1.471
+++ ChangeLog 1 Jul 2011 16:09:55 -0000 1.472
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.471 2011/06/11 15:04:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.472 2011/07/01 16:09:55 pacho Exp $
+
+ 01 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
+ Really skip tests when unneeded (bug #373069 by Matt Turner).
11 Jun 2011; Pacho Ramos <pacho@gentoo.org>
-files/glib-2.25-skip-tests-with-dbus-keyring.patch, -glib-2.26.1-r1.ebuild,
1.4 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.3&r2=1.4
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- glib-2.28.8.ebuild 11 Jun 2011 03:05:04 -0000 1.3
+++ glib-2.28.8.ebuild 1 Jul 2011 16:09:55 -0000 1.4
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.3 2011/06/11 03:05:04 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.4 2011/07/01 16:09:55 pacho Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -100,8 +100,7 @@
if ! use test; then
# don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed failed"
+ sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find -name Makefile.am -o -name Makefile.in) || die
fi
# Needed for the punt-python-check patch, disabling timeout test
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-01 21:07 Markos Chandras (hwoarang)
0 siblings, 0 replies; 15+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-07-01 21:07 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/07/01 21:07:09
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Stable on amd64 wrt bug #278255
(Portage version: 2.2.0_alpha42/cvs/Linux x86_64)
Revision Changes Path
1.473 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.473&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.473&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.472&r2=1.473
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.472
retrieving revision 1.473
diff -u -r1.472 -r1.473
--- ChangeLog 1 Jul 2011 16:09:55 -0000 1.472
+++ ChangeLog 1 Jul 2011 21:07:09 -0000 1.473
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.472 2011/07/01 16:09:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.473 2011/07/01 21:07:09 hwoarang Exp $
+
+ 01 Jul 2011; Markos Chandras <hwoarang@gentoo.org> glib-2.28.8.ebuild:
+ Stable on amd64 wrt bug #278255
01 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
Really skip tests when unneeded (bug #373069 by Matt Turner).
1.5 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.4&r2=1.5
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- glib-2.28.8.ebuild 1 Jul 2011 16:09:55 -0000 1.4
+++ glib-2.28.8.ebuild 1 Jul 2011 21:07:09 -0000 1.5
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.4 2011/07/01 16:09:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.5 2011/07/01 21:07:09 hwoarang Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-04 10:51 Pacho Ramos (pacho)
0 siblings, 0 replies; 15+ messages in thread
From: Pacho Ramos (pacho) @ 2011-07-04 10:51 UTC (permalink / raw
To: gentoo-commits
pacho 11/07/04 10:51:44
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Fix warning about skipped tests being shown even when tests are disabled by the user (bug #373963 by William Throwe).
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Revision Changes Path
1.474 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.474&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.474&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.473&r2=1.474
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.473
retrieving revision 1.474
diff -u -r1.473 -r1.474
--- ChangeLog 1 Jul 2011 21:07:09 -0000 1.473
+++ ChangeLog 4 Jul 2011 10:51:44 -0000 1.474
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.473 2011/07/01 21:07:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.474 2011/07/04 10:51:44 pacho Exp $
+
+ 04 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
+ Fix warning about skipped tests being shown even when tests are disabled by
+ the user (bug #373963 by William Throwe).
01 Jul 2011; Markos Chandras <hwoarang@gentoo.org> glib-2.28.8.ebuild:
Stable on amd64 wrt bug #278255
1.6 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.5&r2=1.6
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- glib-2.28.8.ebuild 1 Jul 2011 21:07:09 -0000 1.5
+++ glib-2.28.8.ebuild 4 Jul 2011 10:51:44 -0000 1.6
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.5 2011/07/01 21:07:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.6 2011/07/04 10:51:44 pacho Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -75,32 +75,32 @@
epatch "${FILESDIR}/${PN}-2.26.0-disable-locale-sensitive-test.patch"
epatch "${FILESDIR}/${PN}-2.26.0-disable-volumemonitor-broken-test.patch"
- # Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
- if ! has_version dev-util/desktop-file-utils ; then
- ewarn "Some tests will be skipped due dev-util/desktop-file-utils not being present on your system,"
- ewarn "think on installing it to get these tests run."
- sed -i -e "/appinfo\/associations/d" gio/tests/appinfo.c || die
- sed -i -e "/desktop-app-info\/default/d" gio/tests/desktop-app-info.c || die
- sed -i -e "/desktop-app-info\/fallback/d" gio/tests/desktop-app-info.c || die
- sed -i -e "/desktop-app-info\/lastused/d" gio/tests/desktop-app-info.c || die
- fi
-
- # Disable tests requiring dev-python/dbus-python, bug #349236
- if ! has_version dev-python/dbus-python ; then
- ewarn "Some tests will be skipped due dev-python/dbus-python not being present on your system,"
- ewarn "think on installing it to get these tests run."
- sed -i -e "/connection\/filter/d" gio/tests/gdbus-connection.c || die
- sed -i -e "/connection\/large_message/d" gio/tests/gdbus-connection-slow.c || die
- sed -i -e "/gdbus\/proxy/d" gio/tests/gdbus-proxy.c || die
- sed -i -e "/gdbus\/bus-watch-name/d" gio/tests/gdbus-names.c || die
- sed -i -e "/gdbus\/proxy-well-known-name/d" gio/tests/gdbus-proxy-well-known-name.c || die
- sed -i -e "/gdbus\/introspection-parser/d" gio/tests/gdbus-introspection.c || die
- sed -i -e "/gdbus\/method-calls-in-thread/d" gio/tests/gdbus-threading.c || die
- fi
-
if ! use test; then
# don't waste time building tests
sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find -name Makefile.am -o -name Makefile.in) || die
+ else
+ # Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
+ if ! has_version dev-util/desktop-file-utils ; then
+ ewarn "Some tests will be skipped due dev-util/desktop-file-utils not being present on your system,"
+ ewarn "think on installing it to get these tests run."
+ sed -i -e "/appinfo\/associations/d" gio/tests/appinfo.c || die
+ sed -i -e "/desktop-app-info\/default/d" gio/tests/desktop-app-info.c || die
+ sed -i -e "/desktop-app-info\/fallback/d" gio/tests/desktop-app-info.c || die
+ sed -i -e "/desktop-app-info\/lastused/d" gio/tests/desktop-app-info.c || die
+ fi
+
+ # Disable tests requiring dev-python/dbus-python, bug #349236
+ if ! has_version dev-python/dbus-python ; then
+ ewarn "Some tests will be skipped due dev-python/dbus-python not being present on your system,"
+ ewarn "think on installing it to get these tests run."
+ sed -i -e "/connection\/filter/d" gio/tests/gdbus-connection.c || die
+ sed -i -e "/connection\/large_message/d" gio/tests/gdbus-connection-slow.c || die
+ sed -i -e "/gdbus\/proxy/d" gio/tests/gdbus-proxy.c || die
+ sed -i -e "/gdbus\/bus-watch-name/d" gio/tests/gdbus-names.c || die
+ sed -i -e "/gdbus\/proxy-well-known-name/d" gio/tests/gdbus-proxy-well-known-name.c || die
+ sed -i -e "/gdbus\/introspection-parser/d" gio/tests/gdbus-introspection.c || die
+ sed -i -e "/gdbus\/method-calls-in-thread/d" gio/tests/gdbus-threading.c || die
+ fi
fi
# Needed for the punt-python-check patch, disabling timeout test
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-04 19:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 15+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-04 19:42 UTC (permalink / raw
To: gentoo-commits
aballier 11/07/04 19:42:16
Modified: ChangeLog glib-2.28.8.ebuild
Log:
implicit . argument to find is a GNUism that fails with BSDs find; the die call following it made glib impossile to build on G/FreeBSD
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Revision Changes Path
1.475 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.475&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.475&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.474&r2=1.475
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.474
retrieving revision 1.475
diff -u -r1.474 -r1.475
--- ChangeLog 4 Jul 2011 10:51:44 -0000 1.474
+++ ChangeLog 4 Jul 2011 19:42:16 -0000 1.475
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.474 2011/07/04 10:51:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.475 2011/07/04 19:42:16 aballier Exp $
+
+ 04 Jul 2011; Alexis Ballier <aballier@gentoo.org> glib-2.28.8.ebuild:
+ implicit . argument to find is a GNUism that fails with BSDs find; the die
+ call following it made glib impossile to build on G/FreeBSD
04 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
Fix warning about skipped tests being shown even when tests are disabled by
1.7 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.6&r2=1.7
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- glib-2.28.8.ebuild 4 Jul 2011 10:51:44 -0000 1.6
+++ glib-2.28.8.ebuild 4 Jul 2011 19:42:16 -0000 1.7
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.6 2011/07/04 10:51:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.7 2011/07/04 19:42:16 aballier Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -77,7 +77,7 @@
if ! use test; then
# don't waste time building tests
- sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find -name Makefile.am -o -name Makefile.in) || die
+ sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find . -name Makefile.am -o -name Makefile.in) || die
else
# Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
if ! has_version dev-util/desktop-file-utils ; then
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-14 10:06 Thomas Kahle (tomka)
0 siblings, 0 replies; 15+ messages in thread
From: Thomas Kahle (tomka) @ 2011-07-14 10:06 UTC (permalink / raw
To: gentoo-commits
tomka 11/07/14 10:06:24
Modified: ChangeLog glib-2.28.8.ebuild
Log:
x86 stable per bug 369909
(Portage version: 2.1.10.4/cvs/Linux i686)
Revision Changes Path
1.476 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.476&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.476&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.475&r2=1.476
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -r1.475 -r1.476
--- ChangeLog 4 Jul 2011 19:42:16 -0000 1.475
+++ ChangeLog 14 Jul 2011 10:06:24 -0000 1.476
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.475 2011/07/04 19:42:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.476 2011/07/14 10:06:24 tomka Exp $
+
+ 14 Jul 2011; Thomas Kahle <tomka@gentoo.org> glib-2.28.8.ebuild:
+ x86 stable per bug 369909
04 Jul 2011; Alexis Ballier <aballier@gentoo.org> glib-2.28.8.ebuild:
implicit . argument to find is a GNUism that fails with BSDs find; the die
1.8 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.7&r2=1.8
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- glib-2.28.8.ebuild 4 Jul 2011 19:42:16 -0000 1.7
+++ glib-2.28.8.ebuild 14 Jul 2011 10:06:24 -0000 1.8
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.7 2011/07/04 19:42:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.8 2011/07/14 10:06:24 tomka Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-07-17 20:43 Markus Meier (maekke)
0 siblings, 0 replies; 15+ messages in thread
From: Markus Meier (maekke) @ 2011-07-17 20:43 UTC (permalink / raw
To: gentoo-commits
maekke 11/07/17 20:43:06
Modified: ChangeLog glib-2.28.8.ebuild
Log:
arm stable, bug #369909
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Revision Changes Path
1.477 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.477&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.477&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.476&r2=1.477
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -r1.476 -r1.477
--- ChangeLog 14 Jul 2011 10:06:24 -0000 1.476
+++ ChangeLog 17 Jul 2011 20:43:06 -0000 1.477
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.476 2011/07/14 10:06:24 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.477 2011/07/17 20:43:06 maekke Exp $
+
+ 17 Jul 2011; Markus Meier <maekke@gentoo.org> glib-2.28.8.ebuild:
+ arm stable, bug #369909
14 Jul 2011; Thomas Kahle <tomka@gentoo.org> glib-2.28.8.ebuild:
x86 stable per bug 369909
1.9 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.8&r2=1.9
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- glib-2.28.8.ebuild 14 Jul 2011 10:06:24 -0000 1.8
+++ glib-2.28.8.ebuild 17 Jul 2011 20:43:06 -0000 1.9
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.8 2011/07/14 10:06:24 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.9 2011/07/17 20:43:06 maekke Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-08-10 20:07 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 15+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-08-10 20:07 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/08/10 20:07:52
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Fix circular depend with USE="test" and dev-util/pkgconfig. Remove libtool files.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Revision Changes Path
1.478 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.478&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.478&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.477&r2=1.478
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.477
retrieving revision 1.478
diff -u -r1.477 -r1.478
--- ChangeLog 17 Jul 2011 20:43:06 -0000 1.477
+++ ChangeLog 10 Aug 2011 20:07:52 -0000 1.478
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.477 2011/07/17 20:43:06 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.478 2011/08/10 20:07:52 ssuominen Exp $
+
+ 10 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.8.ebuild:
+ Fix circular depend with USE="test" and dev-util/pkgconfig. Remove libtool
+ files.
17 Jul 2011; Markus Meier <maekke@gentoo.org> glib-2.28.8.ebuild:
arm stable, bug #369909
1.11 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.10&r2=1.11
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- glib-2.28.8.ebuild 29 Jul 2011 04:13:33 -0000 1.10
+++ glib-2.28.8.ebuild 10 Aug 2011 20:07:52 -0000 1.11
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.10 2011/07/29 04:13:33 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.11 2011/08/10 20:07:52 ssuominen Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -29,8 +29,7 @@
>=dev-libs/libxslt-1.0
>=dev-util/gtk-doc-1.13
~app-text/docbook-xml-dtd-4.1.2 )
- test? ( dev-util/pkgconfig
- >=sys-apps/dbus-1.2.14 )
+ test? ( >=sys-apps/dbus-1.2.14 )
!<dev-util/gtk-doc-1.15-r2"
PDEPEND="introspection? ( dev-libs/gobject-introspection )
!<gnome-base/gvfs-1.6.4-r990" # Earlier versions do not work with glib
@@ -113,6 +112,12 @@
}
src_configure() {
+ # Avoid circular depend with dev-util/pkgconfig
+ if ! has_version dev-util/pkgconfig; then
+ export DBUS1_CFLAGS="-I/usr/include/dbus-1.0 -I/usr/$(get_libdir)/dbus-1.0/include"
+ export DBUS1_LIBS="-ldbus-1"
+ fi
+
local myconf
# Building with --disable-debug highly unrecommended. It will build glib in
@@ -153,6 +158,9 @@
newins "${ED}/etc/bash_completion.d/${f}-bash-completion.sh" ${f} || die
done
rm -rf "${ED}/etc"
+
+ # Redudant with pkg-config files in place
+ find "${ED}" -name '*.la' -exec rm -f {} +
}
src_test() {
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-08-13 16:44 Raul Porcel (armin76)
0 siblings, 0 replies; 15+ messages in thread
From: Raul Porcel (armin76) @ 2011-08-13 16:44 UTC (permalink / raw
To: gentoo-commits
armin76 11/08/13 16:44:11
Modified: ChangeLog glib-2.28.8.ebuild
Log:
alpha/ia64/s390/sh/sparc stable wrt #369909
(Portage version: 2.1.10.7/cvs/Linux ia64)
Revision Changes Path
1.479 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.479&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.479&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.478&r2=1.479
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.478
retrieving revision 1.479
diff -u -r1.478 -r1.479
--- ChangeLog 10 Aug 2011 20:07:52 -0000 1.478
+++ ChangeLog 13 Aug 2011 16:44:11 -0000 1.479
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.478 2011/08/10 20:07:52 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.479 2011/08/13 16:44:11 armin76 Exp $
+
+ 13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
+ alpha/ia64/s390/sh/sparc stable wrt #369909
10 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.8.ebuild:
Fix circular depend with USE="test" and dev-util/pkgconfig. Remove libtool
1.13 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.12&r2=1.13
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- glib-2.28.8.ebuild 10 Aug 2011 20:14:18 -0000 1.12
+++ glib-2.28.8.ebuild 13 Aug 2011 16:44:11 -0000 1.13
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.12 2011/08/10 20:14:18 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.13 2011/08/13 16:44:11 armin76 Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-08-13 18:45 Raul Porcel (armin76)
0 siblings, 0 replies; 15+ messages in thread
From: Raul Porcel (armin76) @ 2011-08-13 18:45 UTC (permalink / raw
To: gentoo-commits
armin76 11/08/13 18:45:00
Modified: ChangeLog glib-2.28.8.ebuild
Log:
m68k stable wrt #369909
(Portage version: 2.1.10.7/cvs/Linux ia64)
Revision Changes Path
1.480 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.480&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.480&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.479&r2=1.480
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.479
retrieving revision 1.480
diff -u -r1.479 -r1.480
--- ChangeLog 13 Aug 2011 16:44:11 -0000 1.479
+++ ChangeLog 13 Aug 2011 18:44:59 -0000 1.480
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.479 2011/08/13 16:44:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.480 2011/08/13 18:44:59 armin76 Exp $
+
+ 13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
+ m68k stable wrt #369909
13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #369909
1.14 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.13&r2=1.14
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- glib-2.28.8.ebuild 13 Aug 2011 16:44:11 -0000 1.13
+++ glib-2.28.8.ebuild 13 Aug 2011 18:44:59 -0000 1.14
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.13 2011/08/13 16:44:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.14 2011/08/13 18:44:59 armin76 Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-08-14 3:08 Nirbheek Chauhan (nirbheek)
0 siblings, 0 replies; 15+ messages in thread
From: Nirbheek Chauhan (nirbheek) @ 2011-08-14 3:08 UTC (permalink / raw
To: gentoo-commits
nirbheek 11/08/14 03:08:11
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Remove .la files only when USE=-static-libs. Previous commit by ssuominen punted .la files unconditionally, bug 379115
(Portage version: 2.2.0_alpha39_p14/cvs/Linux x86_64)
Revision Changes Path
1.481 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.481&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.481&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.480&r2=1.481
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.480
retrieving revision 1.481
diff -u -r1.480 -r1.481
--- ChangeLog 13 Aug 2011 18:44:59 -0000 1.480
+++ ChangeLog 14 Aug 2011 03:08:11 -0000 1.481
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.480 2011/08/13 18:44:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.481 2011/08/14 03:08:11 nirbheek Exp $
+
+ 14 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> glib-2.28.8.ebuild:
+ Remove .la files only when USE=-static-libs. Previous commit by ssuominen
+ punted .la files unconditionally, bug 379115
13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
m68k stable wrt #369909
1.15 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.14&r2=1.15
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- glib-2.28.8.ebuild 13 Aug 2011 18:44:59 -0000 1.14
+++ glib-2.28.8.ebuild 14 Aug 2011 03:08:11 -0000 1.15
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.14 2011/08/13 18:44:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.15 2011/08/14 03:08:11 nirbheek Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -159,8 +159,10 @@
done
rm -rf "${ED}/etc"
- # Redudant with pkg-config files in place
- find "${ED}" -name '*.la' -exec rm -f {} +
+ if ! use static-libs; then
+ # Redudant with pkg-config files in place
+ find "${ED}" -name '*.la' -exec rm -f {} + || die
+ fi
}
src_test() {
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-08-14 9:44 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 15+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-08-14 9:44 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/08/14 09:44:14
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Revert last libtool file preservation since we have usable pkg-config files wrt #379115.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Revision Changes Path
1.482 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.482&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.482&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.481&r2=1.482
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.481
retrieving revision 1.482
diff -u -r1.481 -r1.482
--- ChangeLog 14 Aug 2011 03:08:11 -0000 1.481
+++ ChangeLog 14 Aug 2011 09:44:14 -0000 1.482
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.481 2011/08/14 03:08:11 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.482 2011/08/14 09:44:14 ssuominen Exp $
+
+ 14 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.8.ebuild:
+ Revert last libtool file preservation since we have usable pkg-config files
+ wrt #379115.
14 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> glib-2.28.8.ebuild:
Remove .la files only when USE=-static-libs. Previous commit by ssuominen
1.16 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.15&r2=1.16
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- glib-2.28.8.ebuild 14 Aug 2011 03:08:11 -0000 1.15
+++ glib-2.28.8.ebuild 14 Aug 2011 09:44:14 -0000 1.16
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.15 2011/08/14 03:08:11 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.16 2011/08/14 09:44:14 ssuominen Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -159,10 +159,9 @@
done
rm -rf "${ED}/etc"
- if ! use static-libs; then
- # Redudant with pkg-config files in place
- find "${ED}" -name '*.la' -exec rm -f {} + || die
- fi
+ # Completely useless with or without USE static-libs, people need to use
+ # pkg-config
+ find "${ED}" -name '*.la' -exec rm -f {} +
}
src_test() {
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-10-05 16:51 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 15+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-05 16:51 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/10/05 16:51:48
Modified: ChangeLog glib-2.28.8.ebuild
Log:
ppc/ppc64 stable wrt #369909
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Revision Changes Path
1.485 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.485&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.485&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.484&r2=1.485
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.484
retrieving revision 1.485
diff -u -r1.484 -r1.485
--- ChangeLog 28 Sep 2011 11:19:21 -0000 1.484
+++ ChangeLog 5 Oct 2011 16:51:48 -0000 1.485
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.484 2011/09/28 11:19:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.485 2011/10/05 16:51:48 xarthisius Exp $
+
+ 05 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> glib-2.28.8.ebuild:
+ ppc/ppc64 stable wrt #369909
28 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.30.0.ebuild:
Use virtual/libffi instead of dev-libs/libffi in case we have to switch to
1.17 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.16&r2=1.17
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- glib-2.28.8.ebuild 14 Aug 2011 09:44:14 -0000 1.16
+++ glib-2.28.8.ebuild 5 Oct 2011 16:51:48 -0000 1.17
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.16 2011/08/14 09:44:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.17 2011/10/05 16:51:48 xarthisius Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
@ 2011-10-18 14:28 Jeroen Roovers (jer)
0 siblings, 0 replies; 15+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-18 14:28 UTC (permalink / raw
To: gentoo-commits
jer 11/10/18 14:28:10
Modified: ChangeLog glib-2.28.8.ebuild
Log:
Stable for HPPA (bug #385699).
(Portage version: 2.2.0_alpha68/cvs/Linux x86_64)
Revision Changes Path
1.489 dev-libs/glib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.489&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.489&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.488&r2=1.489
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.488
retrieving revision 1.489
diff -u -r1.488 -r1.489
--- ChangeLog 16 Oct 2011 21:37:16 -0000 1.488
+++ ChangeLog 18 Oct 2011 14:28:10 -0000 1.489
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/glib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.488 2011/10/16 21:37:16 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.489 2011/10/18 14:28:10 jer Exp $
+
+ 18 Oct 2011; Jeroen Roovers <jer@gentoo.org> glib-2.28.8.ebuild:
+ Stable for HPPA (bug #385699).
*glib-2.30.1-r1 (16 Oct 2011)
1.18 dev-libs/glib/glib-2.28.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.17&r2=1.18
Index: glib-2.28.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- glib-2.28.8.ebuild 5 Oct 2011 16:51:48 -0000 1.17
+++ glib-2.28.8.ebuild 18 Oct 2011 14:28:10 -0000 1.18
@@ -1,6 +1,6 @@
# 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.28.8.ebuild,v 1.17 2011/10/05 16:51:48 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.18 2011/10/18 14:28:10 jer Exp $
EAPI="3"
GNOME_TARBALL_SUFFIX="xz"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2"
SLOT="2"
-KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-linux"
IUSE="debug doc fam +introspection selinux +static-libs test xattr"
RDEPEND="virtual/libiconv
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2011-10-18 14:28 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-04 10:51 [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild Pacho Ramos (pacho)
-- strict thread matches above, loose matches on Subject: below --
2011-10-18 14:28 Jeroen Roovers (jer)
2011-10-05 16:51 Kacper Kowalik (xarthisius)
2011-08-14 9:44 Samuli Suominen (ssuominen)
2011-08-14 3:08 Nirbheek Chauhan (nirbheek)
2011-08-13 18:45 Raul Porcel (armin76)
2011-08-13 16:44 Raul Porcel (armin76)
2011-08-10 20:07 Samuli Suominen (ssuominen)
2011-07-17 20:43 Markus Meier (maekke)
2011-07-14 10:06 Thomas Kahle (tomka)
2011-07-04 19:42 Alexis Ballier (aballier)
2011-07-01 21:07 Markos Chandras (hwoarang)
2011-07-01 16:09 Pacho Ramos (pacho)
2011-06-08 17:47 Pacho Ramos (pacho)
2011-06-06 16:00 Pacho Ramos (pacho)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox