public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild
@ 2012-12-19 16:38 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2012-12-19 16:38 UTC (permalink / raw
  To: gentoo-commits

tetromino    12/12/19 16:38:13

  Modified:             ChangeLog
  Added:                pango-1.32.5.ebuild
  Log:
  Version bump for gnome-3.6; now uses an external harfbuzz library and supports Unicode 6.1. The pangox library was split off into a separate package (pangox-compat). Keywords dropped due to harfbuzz dependency.
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)

Revision  Changes    Path
1.361                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.361&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.361&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.360&r2=1.361

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.360
retrieving revision 1.361
diff -u -r1.360 -r1.361
--- ChangeLog	16 Dec 2012 06:47:12 -0000	1.360
+++ ChangeLog	19 Dec 2012 16:38:13 -0000	1.361
@@ -1,6 +1,14 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.360 2012/12/16 06:47:12 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.361 2012/12/19 16:38:13 tetromino Exp $
+
+*pango-1.32.5 (19 Dec 2012)
+
+  19 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
+  +files/pango-1.32.1-lib64.patch, +pango-1.32.5.ebuild:
+  Version bump for gnome-3.6; now uses an external harfbuzz library and
+  supports Unicode 6.1. The pangox library was split off into a separate
+  package (pangox-compat). Keywords dropped due to harfbuzz dependency.
 
   16 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> metadata.xml:
   Switch to global introspection USE flag.



1.1                  x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.1&content-type=text/plain

Index: pango-1.32.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.1 2012/12/19 16:38:13 tetromino 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="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-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:=
	>=dev-libs/glib-2.33.12:2
	>=media-libs/fontconfig-2.5.0:1.0=
	media-libs/freetype:2=
	>=x11-libs/cairo-1.7.6:=[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.13
	virtual/pkgconfig
	X? ( x11-proto/xproto )
	!<=sys-devel/autoconf-2.63:2.5"

src_prepare() {
	tc-export CXX
	DOCS="AUTHORS ChangeLog* NEWS README THANKS"
	G2CONF="${G2CONF}
		$(use_enable introspection)
		$(use_with X xft)
		"$(usex X --x-includes="${EPREFIX}/usr/include" "")"
		"$(usex X --x-libraries="${EPREFIX}/usr/$(get_libdir)" "")

	epatch "${FILESDIR}/${PN}-1.32.1-lib64.patch"
	eautoreconf

	gnome2_src_prepare
}

src_install() {
	gnome2_src_install

	local PANGO_CONFDIR="${EROOT}/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: ChangeLog pango-1.32.5.ebuild
@ 2012-12-24  4:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-24  4:07 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/24 04:07:33

  Modified:             ChangeLog pango-1.32.5.ebuild
  Log:
  Marked ~hppa (bug #447854).
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.363                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.363&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.363&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.362&r2=1.363

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.362
retrieving revision 1.363
diff -u -r1.362 -r1.363
--- ChangeLog	23 Dec 2012 20:55:06 -0000	1.362
+++ ChangeLog	24 Dec 2012 04:07:33 -0000	1.363
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.362 2012/12/23 20:55:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.363 2012/12/24 04:07:33 jer Exp $
+
+  24 Dec 2012; Jeroen Roovers <jer@gentoo.org> pango-1.32.5.ebuild:
+  Marked ~hppa (bug #447854).
 
   23 Dec 2012; Agostino Sarubbo <ago@gentoo.org> pango-1.32.5.ebuild:
   Add ~ppc64, wrt bug #447854



1.3                  x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?r1=1.2&r2=1.3

Index: pango-1.32.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pango-1.32.5.ebuild	23 Dec 2012 20:55:06 -0000	1.2
+++ pango-1.32.5.ebuild	24 Dec 2012 04:07:33 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.2 2012/12/23 20:55:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.3 2012/12/24 04:07:33 jer Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="X +introspection"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild
@ 2012-12-28 13:47 Fabian Groffen (grobian)
  0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen (grobian) @ 2012-12-28 13:47 UTC (permalink / raw
  To: gentoo-commits

grobian     12/12/28 13:47:01

  Modified:             ChangeLog pango-1.32.5.ebuild
  Log:
  Fix double prefix
  
  (Portage version: 2.2.01.21418-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)

Revision  Changes    Path
1.364                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.364&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.364&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.363&r2=1.364

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -r1.363 -r1.364
--- ChangeLog	24 Dec 2012 04:07:33 -0000	1.363
+++ ChangeLog	28 Dec 2012 13:47:01 -0000	1.364
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.363 2012/12/24 04:07:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.364 2012/12/28 13:47:01 grobian Exp $
+
+  28 Dec 2012; Fabian Groffen <grobian@gentoo.org> pango-1.32.5.ebuild:
+  Fix double prefix
 
   24 Dec 2012; Jeroen Roovers <jer@gentoo.org> pango-1.32.5.ebuild:
   Marked ~hppa (bug #447854).



1.4                  x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?r1=1.3&r2=1.4

Index: pango-1.32.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pango-1.32.5.ebuild	24 Dec 2012 04:07:33 -0000	1.3
+++ pango-1.32.5.ebuild	28 Dec 2012 13:47:01 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.3 2012/12/24 04:07:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.4 2012/12/28 13:47:01 grobian Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -52,7 +52,7 @@
 src_install() {
 	gnome2_src_install
 
-	local PANGO_CONFDIR="${EROOT}/etc/pango/${CHOST}"
+	local PANGO_CONFDIR="/etc/pango/${CHOST}"
 	dodir "${PANGO_CONFDIR}"
 	keepdir "${PANGO_CONFDIR}"
 }





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild
@ 2013-01-28 13:51 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-28 13:51 UTC (permalink / raw
  To: gentoo-commits

aballier    13/01/28 13:51:34

  Modified:             ChangeLog pango-1.32.5.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.368                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.368&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.368&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.367&r2=1.368

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.367
retrieving revision 1.368
diff -u -r1.367 -r1.368
--- ChangeLog	6 Jan 2013 11:20:53 -0000	1.367
+++ ChangeLog	28 Jan 2013 13:51:34 -0000	1.368
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.367 2013/01/06 11:20:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.368 2013/01/28 13:51:34 aballier Exp $
+
+  28 Jan 2013; Alexis Ballier <aballier@gentoo.org> pango-1.32.5.ebuild:
+  keyword ~amd64-fbsd
 
   06 Jan 2013; Agostino Sarubbo <ago@gentoo.org> pango-1.32.5.ebuild:
   Add ~sparc, wrt bug #449220



1.8                  x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?r1=1.7&r2=1.8

Index: pango-1.32.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pango-1.32.5.ebuild	6 Jan 2013 11:20:53 -0000	1.7
+++ pango-1.32.5.ebuild	28 Jan 2013 13:51:34 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.7 2013/01/06 11:20:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.8 2013/01/28 13:51:34 aballier Exp $
 
 EAPI="5"
 GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="X +introspection"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild
@ 2013-10-17 20:42 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2013-10-17 20:42 UTC (permalink / raw
  To: gentoo-commits

maekke      13/10/17 20:42:28

  Modified:             ChangeLog pango-1.32.5.ebuild
  Log:
  arm stable, bug #476364
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.377                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.377&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.377&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.376&r2=1.377

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.376
retrieving revision 1.377
diff -u -r1.376 -r1.377
--- ChangeLog	9 Jun 2013 23:06:38 -0000	1.376
+++ ChangeLog	17 Oct 2013 20:42:28 -0000	1.377
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.376 2013/06/09 23:06:38 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.377 2013/10/17 20:42:28 maekke Exp $
+
+  17 Oct 2013; Markus Meier <maekke@gentoo.org> pango-1.32.5.ebuild:
+  arm stable, bug #476364
 
   09 Jun 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml:
   Add upstream CPE tag (security info) from ChromiumOS.



1.14                 x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?r1=1.13&r2=1.14

Index: pango-1.32.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- pango-1.32.5.ebuild	6 Jun 2013 14:24:31 -0000	1.13
+++ pango-1.32.5.ebuild	17 Oct 2013 20:42:28 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.13 2013/06/06 14:24:31 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.14 2013/10/17 20:42:28 maekke 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 ~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 ~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"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild
@ 2013-10-24 13:26 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2013-10-24 13:26 UTC (permalink / raw
  To: gentoo-commits

jer         13/10/24 13:26:26

  Modified:             ChangeLog pango-1.32.5.ebuild
  Log:
  Stable for HPPA (bug #476364).
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.378                x11-libs/pango/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.378&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.378&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.377&r2=1.378

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
retrieving revision 1.377
retrieving revision 1.378
diff -u -r1.377 -r1.378
--- ChangeLog	17 Oct 2013 20:42:28 -0000	1.377
+++ ChangeLog	24 Oct 2013 13:26:26 -0000	1.378
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/pango
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.377 2013/10/17 20:42:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.378 2013/10/24 13:26:26 jer Exp $
+
+  24 Oct 2013; Jeroen Roovers <jer@gentoo.org> pango-1.32.5.ebuild:
+  Stable for HPPA (bug #476364).
 
   17 Oct 2013; Markus Meier <maekke@gentoo.org> pango-1.32.5.ebuild:
   arm stable, bug #476364



1.15                 x11-libs/pango/pango-1.32.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild?r1=1.14&r2=1.15

Index: pango-1.32.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- pango-1.32.5.ebuild	17 Oct 2013 20:42:28 -0000	1.14
+++ pango-1.32.5.ebuild	24 Oct 2013 13:26:26 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.14 2013/10/17 20:42:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.32.5.ebuild,v 1.15 2013/10/24 13:26:26 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 ~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 ~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"
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-10-24 13:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-19 16:38 [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.32.5.ebuild Alexandre Rostovtsev (tetromino)
  -- strict thread matches above, loose matches on Subject: below --
2012-12-24  4:07 Jeroen Roovers (jer)
2012-12-28 13:47 Fabian Groffen (grobian)
2013-01-28 13:51 Alexis Ballier (aballier)
2013-10-17 20:42 Markus Meier (maekke)
2013-10-24 13:26 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox