* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-02-06 22:27 Gilles Dartiguelongue (eva)
0 siblings, 0 replies; 6+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2014-02-06 22:27 UTC (permalink / raw
To: gentoo-commits
eva 14/02/06 22:27:06
Modified: ChangeLog
Added: pango-1.36.2.ebuild
Log:
Version bump. Clean up old revisions.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Revision Changes Path
1.385 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.385&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.385&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.384&r2=1.385
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.384
retrieving revision 1.385
diff -u -r1.384 -r1.385
--- ChangeLog 20 Jan 2014 19:21:20 -0000 1.384
+++ ChangeLog 6 Feb 2014 22:27:06 -0000 1.385
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.384 2014/01/20 19:21:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.385 2014/02/06 22:27:06 eva Exp $
+
+*pango-1.36.2 (06 Feb 2014)
+
+ 06 Feb 2014; Gilles Dartiguelongue <eva@gentoo.org> +pango-1.36.2.ebuild:
+ Version bump. Clean up old revisions.
20 Jan 2014; Mike Frysinger <vapier@gentoo.org> pango-1.32.5.ebuild,
pango-1.34.1.ebuild, pango-1.36.1.ebuild:
1.1 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.1&content-type=text/plain
Index: pango-1.36.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.1 2014/02/06 22:27:06 eva Exp $
EAPI="5"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit autotools eutils gnome2 multilib toolchain-funcs
DESCRIPTION="Internationalized text layout and rendering library"
HOMEPAGE="http://www.pango.org/"
LICENSE="LGPL-2+ FTL"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
RDEPEND="
>=media-libs/harfbuzz-0.9.9:=[glib(+),truetype(+)]
>=dev-libs/glib-2.33.12:2
>=media-libs/fontconfig-2.10.91:1.0=
media-libs/freetype:2=
>=x11-libs/cairo-1.12.10:=[X?]
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
X? (
x11-libs/libXrender
x11-libs/libX11
>=x11-libs/libXft-2.0.0 )
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.15
virtual/pkgconfig
X? ( x11-proto/xproto )
!<=sys-devel/autoconf-2.63:2.5
"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.32.1-lib64.patch"
eautoreconf
gnome2_src_prepare
}
src_configure() {
tc-export CXX
gnome2_src_configure \
--with-cairo \
$(use_enable introspection) \
$(use_with X xft) \
"$(usex X --x-includes="${EPREFIX}/usr/include" "")" \
"$(usex X --x-libraries="${EPREFIX}/usr/$(get_libdir)" "")"
}
src_install() {
gnome2_src_install
local PANGO_CONFDIR="/etc/pango/${CHOST}"
dodir "${PANGO_CONFDIR}"
keepdir "${PANGO_CONFDIR}"
}
pkg_postinst() {
gnome2_pkg_postinst
einfo "Generating modules listing..."
local PANGO_CONFDIR="${EROOT}/etc/pango/${CHOST}"
local pango_conf="${PANGO_CONFDIR}/pango.modules"
local tmp_file=$(mktemp -t tmp_pango_ebuild.XXXXXXXXXX)
# be atomic!
if pango-querymodules --system \
"${EROOT}"usr/$(get_libdir)/pango/1.8.0/modules/*$(get_modname) \
> "${tmp_file}"; then
cat "${tmp_file}" > "${pango_conf}" || {
rm "${tmp_file}"; die; }
else
ewarn "Cannot update pango.modules, file generation failed"
fi
rm "${tmp_file}"
if [[ ${REPLACING_VERSIONS} < 1.30.1 ]]; then
elog "In >=${PN}-1.30.1, default configuration file locations moved from"
elog "~/.pangorc and ~/.pangox_aliases to ~/.config/pango/pangorc and"
elog "~/.config/pango/pangox.aliases"
fi
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-02-22 16:00 Pacho Ramos (pacho)
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2014-02-22 16:00 UTC (permalink / raw
To: gentoo-commits
pacho 14/02/22 16:00:00
Modified: pango-1.36.2.ebuild ChangeLog
Log:
arch stable, bug 888
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.2 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?r1=1.1&r2=1.2
Index: pango-1.36.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pango-1.36.2.ebuild 6 Feb 2014 22:27:06 -0000 1.1
+++ pango-1.36.2.ebuild 22 Feb 2014 16:00:00 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.1 2014/02/06 22:27:06 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.2 2014/02/22 16:00:00 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2+ FTL"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
1.386 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.386&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.386&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.385&r2=1.386
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.385
retrieving revision 1.386
diff -u -r1.385 -r1.386
--- ChangeLog 6 Feb 2014 22:27:06 -0000 1.385
+++ ChangeLog 22 Feb 2014 16:00:00 -0000 1.386
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.385 2014/02/06 22:27:06 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.386 2014/02/22 16:00:00 pacho Exp $
+
+ 22 Feb 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
+ arch stable, bug 888
*pango-1.36.2 (06 Feb 2014)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-02-22 22:47 Pacho Ramos (pacho)
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2014-02-22 22:47 UTC (permalink / raw
To: gentoo-commits
pacho 14/02/22 22:47:59
Modified: pango-1.36.2.ebuild ChangeLog
Log:
Fix wrong commit, bug 502160
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path
1.3 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?r1=1.2&r2=1.3
Index: pango-1.36.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pango-1.36.2.ebuild 22 Feb 2014 16:00:00 -0000 1.2
+++ pango-1.36.2.ebuild 22 Feb 2014 22:47:59 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.2 2014/02/22 16:00:00 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.3 2014/02/22 22:47:59 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2+ FTL"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
1.387 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.387&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.387&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.386&r2=1.387
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.386
retrieving revision 1.387
diff -u -r1.386 -r1.387
--- ChangeLog 22 Feb 2014 16:00:00 -0000 1.386
+++ ChangeLog 22 Feb 2014 22:47:59 -0000 1.387
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.386 2014/02/22 16:00:00 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.387 2014/02/22 22:47:59 pacho Exp $
+
+ 22 Feb 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
+ Fix wrong commit, bug 502160
22 Feb 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
arch stable, bug 888
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-03-09 10:56 Pacho Ramos (pacho)
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-09 10:56 UTC (permalink / raw
To: gentoo-commits
pacho 14/03/09 10:56:14
Modified: pango-1.36.2.ebuild ChangeLog
Log:
amd64 stable, bug 499954
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.4 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?r1=1.3&r2=1.4
Index: pango-1.36.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pango-1.36.2.ebuild 22 Feb 2014 22:47:59 -0000 1.3
+++ pango-1.36.2.ebuild 9 Mar 2014 10:56:13 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.3 2014/02/22 22:47:59 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.4 2014/03/09 10:56:13 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2+ FTL"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
1.389 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.389&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.389&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.388&r2=1.389
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.388
retrieving revision 1.389
diff -u -r1.388 -r1.389
--- ChangeLog 1 Mar 2014 13:33:52 -0000 1.388
+++ ChangeLog 9 Mar 2014 10:56:14 -0000 1.389
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.388 2014/03/01 13:33:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.389 2014/03/09 10:56:14 pacho Exp $
+
+ 09 Mar 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
+ amd64 stable, bug 499954
*pango-1.36.2-r1 (01 Mar 2014)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-03-09 12:04 Pacho Ramos (pacho)
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-09 12:04 UTC (permalink / raw
To: gentoo-commits
pacho 14/03/09 12:04:57
Modified: pango-1.36.2.ebuild ChangeLog
Log:
x86 stable, bug 499954
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.5 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?r1=1.4&r2=1.5
Index: pango-1.36.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pango-1.36.2.ebuild 9 Mar 2014 10:56:13 -0000 1.4
+++ pango-1.36.2.ebuild 9 Mar 2014 12:04:57 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.4 2014/03/09 10:56:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.5 2014/03/09 12:04:57 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2+ FTL"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
1.390 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.390&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.390&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.389&r2=1.390
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.389
retrieving revision 1.390
diff -u -r1.389 -r1.390
--- ChangeLog 9 Mar 2014 10:56:14 -0000 1.389
+++ ChangeLog 9 Mar 2014 12:04:57 -0000 1.390
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.389 2014/03/09 10:56:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.390 2014/03/09 12:04:57 pacho Exp $
+
+ 09 Mar 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
+ x86 stable, bug 499954
09 Mar 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
amd64 stable, bug 499954
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog
@ 2014-03-28 2:36 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2014-03-28 2:36 UTC (permalink / raw
To: gentoo-commits
jer 14/03/28 02:36:42
Modified: pango-1.36.2.ebuild ChangeLog
Log:
Stable for HPPA (bug #499954).
(Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.6 x11-libs/pango/pango-1.36.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild?r1=1.5&r2=1.6
Index: pango-1.36.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pango-1.36.2.ebuild 9 Mar 2014 12:04:57 -0000 1.5
+++ pango-1.36.2.ebuild 28 Mar 2014 02:36:42 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.5 2014/03/09 12:04:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.36.2.ebuild,v 1.6 2014/03/28 02:36:42 jer Exp $
EAPI="5"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2+ FTL"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="X +introspection"
1.391 x11-libs/pango/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.391&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.391&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.390&r2=1.391
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.390
retrieving revision 1.391
diff -u -r1.390 -r1.391
--- ChangeLog 9 Mar 2014 12:04:57 -0000 1.390
+++ ChangeLog 28 Mar 2014 02:36:42 -0000 1.391
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/pango
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.390 2014/03/09 12:04:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.391 2014/03/28 02:36:42 jer Exp $
+
+ 28 Mar 2014; Jeroen Roovers <jer@gentoo.org> pango-1.36.2.ebuild:
+ Stable for HPPA (bug #499954).
09 Mar 2014; Pacho Ramos <pacho@gentoo.org> pango-1.36.2.ebuild:
x86 stable, bug 499954
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-03-28 2:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-22 22:47 [gentoo-commits] gentoo-x86 commit in x11-libs/pango: pango-1.36.2.ebuild ChangeLog Pacho Ramos (pacho)
-- strict thread matches above, loose matches on Subject: below --
2014-03-28 2:36 Jeroen Roovers (jer)
2014-03-09 12:04 Pacho Ramos (pacho)
2014-03-09 10:56 Pacho Ramos (pacho)
2014-02-22 16:00 Pacho Ramos (pacho)
2014-02-06 22:27 Gilles Dartiguelongue (eva)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox