public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2011-12-06 21:45 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-12-06 21:45 UTC (permalink / raw
  To: gentoo-commits

tetromino    11/12/06 21:45:55

  Modified:             ChangeLog
  Added:                gtkmathview-0.8.0-r1.ebuild
  Log:
  Fix underlinking (bug #369117, thanks to flameeyes and Oschtan), and move to EAPI4 and drop .la files.
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.38                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	6 Mar 2011 13:13:51 -0000	1.37
+++ ChangeLog	6 Dec 2011 21:45:55 -0000	1.38
@@ -1,6 +1,14 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.37 2011/03/06 13:13:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.38 2011/12/06 21:45:55 tetromino Exp $
+
+*gtkmathview-0.8.0-r1 (06 Dec 2011)
+
+  06 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+  +gtkmathview-0.8.0-r1.ebuild, +files/gtkmathview-0.8.0-underlinking.patch,
+  +files/binreloc.m4:
+  Fix underlinking (bug #369117, thanks to flameeyes and Oschtan), and move to
+  EAPI4 and drop .la files.
 
   06 Mar 2011; Pacho Ramos <pacho@gentoo.org> gtkmathview-0.8.0.ebuild,
   +files/gtkmathview-0.8.0-fix-template.patch:



1.1                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.1 2011/12/06 21:45:55 tetromino Exp $

EAPI="4"

inherit autotools eutils

DESCRIPTION="Rendering engine for MathML documents"
HOMEPAGE="http://helm.cs.unibo.it/mml-widget/"
SRC_URI="http://helm.cs.unibo.it/mml-widget/sources/${P}.tar.gz"

LICENSE="LGPL-3"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk mathml svg t1lib"

RDEPEND=">=dev-libs/glib-2.2.1:2
	>=dev-libs/popt-1.7
	>=dev-libs/libxml2-2.6.7:2
	gtk? ( >=x11-libs/gtk+-2.2.1:2
		>=media-libs/t1lib-5:5
		>=dev-libs/gmetadom-0.1.8
		x11-libs/pango )
	mathml? ( media-fonts/texcm-ttf )
	t1lib?	( >=media-libs/t1lib-5:5 )"
DEPEND="${RDEPEND}
	dev-libs/libxslt
	dev-util/pkgconfig"

pkg_setup() {
	DOCS="ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO"
}

src_prepare() {
	epatch "${FILESDIR}"/${P}-gcc43.patch \
		"${FILESDIR}"/${P}-gcc44.patch \
		"${FILESDIR}"/${P}-cond-t1.patch

	# Fix building against libxml2[icu], bug #356095
	epatch "${FILESDIR}"/${P}-fix-template.patch

	# Fix building with gold, bug #369117; requires eautoreconf
	epatch "${FILESDIR}/${P}-underlinking.patch"

	# m4 macros from upstream git, required for eautoreconf
	if [[ ! -d ac-helpers ]]; then
		mkdir ac-helpers || die "mkdir failed"
		cp "${FILESDIR}/binreloc.m4" ac-helpers || die "cp failed"
	fi

	AT_M4DIR=ac-helpers eautoreconf
}

src_configure() {
	# --disable-popt will build only the library and not the frontend
	# TFM is needed for SVG, default value is 2
	econf $(use_enable gtk) $(use_enable gtk gmetadom) \
		$(use_enable svg) \
		$(use_with t1lib) \
		--with-popt \
		--enable-libxml2 \
		--enable-libxml2-reader \
		--enable-ps \
		--enable-tfm=2 \
		--enable-builder-cache \
		--enable-breaks \
		--enable-boxml \
		--disable-static
}

src_install() {
	default
	find "${D}" -name '*.la' -exec rm -f {} +
}






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-04-18 21:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-04-18 21:17 UTC (permalink / raw
  To: gentoo-commits

ago         12/04/18 21:17:17

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  Stable for amd64, wrt bug #410611
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.39                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	6 Dec 2011 21:45:55 -0000	1.38
+++ ChangeLog	18 Apr 2012 21:17:17 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.38 2011/12/06 21:45:55 tetromino Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.39 2012/04/18 21:17:17 ago Exp $
+
+  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
+  Stable for amd64, wrt bug #410611
 
 *gtkmathview-0.8.0-r1 (06 Dec 2011)
 



1.2                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtkmathview-0.8.0-r1.ebuild	6 Dec 2011 21:45:55 -0000	1.1
+++ gtkmathview-0.8.0-r1.ebuild	18 Apr 2012 21:17:17 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.1 2011/12/06 21:45:55 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.2 2012/04/18 21:17:17 ago Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-04-19 20:46 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2012-04-19 20:46 UTC (permalink / raw
  To: gentoo-commits

ranger      12/04/19 20:46:12

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  Marking gtkmathview-0.8.0-r1 ppc64 for bug 410611
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.40                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	18 Apr 2012 21:17:17 -0000	1.39
+++ ChangeLog	19 Apr 2012 20:46:12 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.39 2012/04/18 21:17:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.40 2012/04/19 20:46:12 ranger Exp $
+
+  19 Apr 2012; Brent Baude <ranger@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
+  Marking gtkmathview-0.8.0-r1 ppc64 stable for bug 410611
 
   18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
   Stable for amd64, wrt bug #410611



1.3                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gtkmathview-0.8.0-r1.ebuild	18 Apr 2012 21:17:17 -0000	1.2
+++ gtkmathview-0.8.0-r1.ebuild	19 Apr 2012 20:46:12 -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/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.2 2012/04/18 21:17:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.3 2012/04/19 20:46:12 ranger Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-04-29 16:19 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2012-04-29 16:19 UTC (permalink / raw
  To: gentoo-commits

maekke      12/04/29 16:19:23

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  x86 stable, bug #410611
  
  (Portage version: 2.1.10.57/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	19 Apr 2012 20:46:12 -0000	1.40
+++ ChangeLog	29 Apr 2012 16:19:23 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.40 2012/04/19 20:46:12 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.41 2012/04/29 16:19:23 maekke Exp $
+
+  29 Apr 2012; Markus Meier <maekke@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
+  x86 stable, bug #410611
 
   19 Apr 2012; Brent Baude <ranger@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
   Marking gtkmathview-0.8.0-r1 ppc64 stable for bug 410611



1.4                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gtkmathview-0.8.0-r1.ebuild	19 Apr 2012 20:46:12 -0000	1.3
+++ gtkmathview-0.8.0-r1.ebuild	29 Apr 2012 16:19:23 -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/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.3 2012/04/19 20:46:12 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.4 2012/04/29 16:19:23 maekke Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-05-16 15:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2012-05-16 15:08 UTC (permalink / raw
  To: gentoo-commits

jer         12/05/16 15:08:27

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  Stable for HPPA (bug #410611).
  
  (Portage version: 2.2.0_alpha105/cvs/Linux x86_64)

Revision  Changes    Path
1.44                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	13 May 2012 12:24:20 -0000	1.43
+++ ChangeLog	16 May 2012 15:08:27 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.43 2012/05/13 12:24:20 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.44 2012/05/16 15:08:27 jer Exp $
+
+  16 May 2012; Jeroen Roovers <jer@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
+  Stable for HPPA (bug #410611).
 
 *gtkmathview-0.8.0-r2 (13 May 2012)
 



1.6                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild?r1=1.5&r2=1.6

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gtkmathview-0.8.0-r1.ebuild	5 May 2012 03:52:29 -0000	1.5
+++ gtkmathview-0.8.0-r1.ebuild	16 May 2012 15:08:27 -0000	1.6
@@ -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/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.5 2012/05/05 03:52:29 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.6 2012/05/16 15:08:27 jer Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-05-24 14:13 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-24 14:13 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/05/24 14:13:18

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  ppc stable wrt #410611
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.45                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	16 May 2012 15:08:27 -0000	1.44
+++ ChangeLog	24 May 2012 14:13:17 -0000	1.45
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.44 2012/05/16 15:08:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.45 2012/05/24 14:13:17 ssuominen Exp $
+
+  24 May 2012; Samuli Suominen <ssuominen@gentoo.org>
+  gtkmathview-0.8.0-r1.ebuild:
+  ppc stable wrt #410611
 
   16 May 2012; Jeroen Roovers <jer@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
   Stable for HPPA (bug #410611).



1.7                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gtkmathview-0.8.0-r1.ebuild	16 May 2012 15:08:27 -0000	1.6
+++ gtkmathview-0.8.0-r1.ebuild	24 May 2012 14:13:17 -0000	1.7
@@ -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/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.6 2012/05/16 15:08:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.7 2012/05/24 14:13:17 ssuominen Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild
@ 2012-07-15 18:33 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-15 18:33 UTC (permalink / raw
  To: gentoo-commits

armin76     12/07/15 18:33:46

  Modified:             ChangeLog gtkmathview-0.8.0-r1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #410611
  
  (Portage version: 2.1.11.5/cvs/Linux ia64)

Revision  Changes    Path
1.48                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	29 May 2012 22:07:29 -0000	1.47
+++ ChangeLog	15 Jul 2012 18:33:46 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.47 2012/05/29 22:07:29 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.48 2012/07/15 18:33:46 armin76 Exp $
+
+  15 Jul 2012; Raúl Porcel <armin76@gentoo.org> gtkmathview-0.8.0-r1.ebuild:
+  alpha/ia64/sparc stable wrt #410611
 
   29 May 2012; Anthony G. Basile <blueness@gentoo.org>
   gtkmathview-0.8.0-r2.ebuild:



1.8                  x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild

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

Index: gtkmathview-0.8.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gtkmathview-0.8.0-r1.ebuild	24 May 2012 14:13:17 -0000	1.7
+++ gtkmathview-0.8.0-r1.ebuild	15 Jul 2012 18:33:46 -0000	1.8
@@ -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/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.7 2012/05/24 14:13:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r1.ebuild,v 1.8 2012/07/15 18:33:46 armin76 Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2






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

end of thread, other threads:[~2012-07-15 18:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-06 21:45 [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: ChangeLog gtkmathview-0.8.0-r1.ebuild Alexandre Rostovtsev (tetromino)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-18 21:17 Agostino Sarubbo (ago)
2012-04-19 20:46 Brent Baude (ranger)
2012-04-29 16:19 Markus Meier (maekke)
2012-05-16 15:08 Jeroen Roovers (jer)
2012-05-24 14:13 Samuli Suominen (ssuominen)
2012-07-15 18:33 Raul Porcel (armin76)

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