public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2012-12-13 10:24 Michal Gorny (mgorny)
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2012-12-13 10:24 UTC (permalink / raw
  To: gentoo-commits

mgorny      12/12/13 10:24:39

  Modified:             ChangeLog
  Added:                pygments-1.5-r1.ebuild
  Log:
  Migrate to distutils-r1.
  
  (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.88                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	9 Nov 2012 12:07:43 -0000	1.87
+++ ChangeLog	13 Dec 2012 10:24:39 -0000	1.88
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.87 2012/11/09 12:07:43 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.88 2012/12/13 10:24:39 mgorny Exp $
+
+*pygments-1.5-r1 (13 Dec 2012)
+
+  13 Dec 2012; Michał Górny <mgorny@gentoo.org> +pygments-1.5-r1.ebuild:
+  Migrate to distutils-r1.
 
   10 Nov 2012; Ian Delaney <idella4@gentoo.org> pygments-1.5.ebuild:
   Added missing dep dev-texlive/texlive-latexrecommended under test?, fixes Bug



1.1                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: pygments-1.5-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.1 2012/12/13 10:24:39 mgorny Exp $

EAPI=4
PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} pypy{1_8,1_9} )

inherit distutils-r1

MY_PN="Pygments"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Pygments is a syntax highlighting package written in Python."
HOMEPAGE="http://pygments.org/ http://pypi.python.org/pypi/Pygments"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc test"

RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
	test? (
		dev-python/nose[${PYTHON_USEDEP}]
		virtual/ttf-fonts
		dev-texlive/texlive-latexrecommended
	)"

S="${WORKDIR}/${MY_P}"

DOCS=( CHANGES )

python_test() {
	cp -r -l tests "${BUILD_DIR}"/ || die

	if [[ ${EPYTHON} == python3.* ]]; then
		# Notes:
		#   -W is not supported by python3.1
		#   -n causes Python to write into hardlinked files
		2to3 -w "${BUILD_DIR}"/tests/*.py || die
	fi

	nosetests -w "${BUILD_DIR}"/tests || die
}

python_install_all() {
	use doc && local HTML_DOCS=( docs/build/. )

	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2012-12-16  9:54 Michal Gorny (mgorny)
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2012-12-16  9:54 UTC (permalink / raw
  To: gentoo-commits

mgorny      12/12/16 09:54:52

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Re-enable python2.5, seems that the test failure was my fault somehow.
  
  (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.2                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.1&r2=1.2

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pygments-1.5-r1.ebuild	13 Dec 2012 10:24:39 -0000	1.1
+++ pygments-1.5-r1.ebuild	16 Dec 2012 09:54:52 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.1 2012/12/13 10:24:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.2 2012/12/16 09:54:52 mgorny Exp $
 
 EAPI=4
-PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} pypy{1_8,1_9} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_8,1_9} )
 
 inherit distutils-r1
 



1.89                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	13 Dec 2012 10:24:39 -0000	1.88
+++ ChangeLog	16 Dec 2012 09:54:52 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.88 2012/12/13 10:24:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.89 2012/12/16 09:54:52 mgorny Exp $
+
+  16 Dec 2012; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
+  Re-enable python2.5, seems that the test failure was my fault somehow.
 
 *pygments-1.5-r1 (13 Dec 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2012-12-17 19:58 Michal Gorny (mgorny)
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2012-12-17 19:58 UTC (permalink / raw
  To: gentoo-commits

mgorny      12/12/17 19:58:40

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Bump to EAPI=5 to make Paludis happy, bug #447524.
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.3                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.2&r2=1.3

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pygments-1.5-r1.ebuild	16 Dec 2012 09:54:52 -0000	1.2
+++ pygments-1.5-r1.ebuild	17 Dec 2012 19:58:40 -0000	1.3
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.2 2012/12/16 09:54:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.3 2012/12/17 19:58:40 mgorny Exp $
 
-EAPI=4
+EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_8,1_9} )
 
 inherit distutils-r1



1.90                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	16 Dec 2012 09:54:52 -0000	1.89
+++ ChangeLog	17 Dec 2012 19:58:40 -0000	1.90
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.89 2012/12/16 09:54:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.90 2012/12/17 19:58:40 mgorny Exp $
+
+  17 Dec 2012; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
+  Bump to EAPI=5 to make Paludis happy, bug #447524.
 
   16 Dec 2012; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
   Re-enable python2.5, seems that the test failure was my fault somehow.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-01-13  0:06 Michal Gorny (mgorny)
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2013-01-13  0:06 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/01/13 00:06:31

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Enable pypy2.0.
  
  (Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.4                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.3&r2=1.4

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pygments-1.5-r1.ebuild	17 Dec 2012 19:58:40 -0000	1.3
+++ pygments-1.5-r1.ebuild	13 Jan 2013 00:06:31 -0000	1.4
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.3 2012/12/17 19:58:40 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.4 2013/01/13 00:06:31 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_8,1_9} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_9,2_0} )
 
 inherit distutils-r1
 
@@ -38,7 +38,7 @@
 		# Notes:
 		#   -W is not supported by python3.1
 		#   -n causes Python to write into hardlinked files
-		2to3 -w "${BUILD_DIR}"/tests/*.py || die
+		2to3 --no-diffs -w "${BUILD_DIR}"/tests/*.py || die
 	fi
 
 	nosetests -w "${BUILD_DIR}"/tests || die



1.91                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	17 Dec 2012 19:58:40 -0000	1.90
+++ ChangeLog	13 Jan 2013 00:06:31 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.90 2012/12/17 19:58:40 mgorny Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.91 2013/01/13 00:06:31 mgorny Exp $
+
+  13 Jan 2013; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
+  Enable pypy2.0.
 
   17 Dec 2012; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
   Bump to EAPI=5 to make Paludis happy, bug #447524.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-01-18 11:11 Michal Gorny (mgorny)
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Gorny (mgorny) @ 2013-01-18 11:11 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/01/18 11:11:01

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Enable python3.3. Remove unnecessary DOCS.
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.5                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.4&r2=1.5

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pygments-1.5-r1.ebuild	13 Jan 2013 00:06:31 -0000	1.4
+++ pygments-1.5-r1.ebuild	18 Jan 2013 11:11:01 -0000	1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.4 2013/01/13 00:06:31 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.5 2013/01/18 11:11:01 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_9,2_0} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
 
 inherit distutils-r1
 
@@ -29,8 +29,6 @@
 
 S="${WORKDIR}/${MY_P}"
 
-DOCS=( CHANGES )
-
 python_test() {
 	cp -r -l tests "${BUILD_DIR}"/ || die
 



1.92                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	13 Jan 2013 00:06:31 -0000	1.91
+++ ChangeLog	18 Jan 2013 11:11:01 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.91 2013/01/13 00:06:31 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.92 2013/01/18 11:11:01 mgorny Exp $
+
+  18 Jan 2013; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
+  Enable python3.3. Remove unnecessary DOCS.
 
   13 Jan 2013; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
   Enable pypy2.0.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-02 21:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-02 21:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/02 21:56:35

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #454314
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  dev-python/pygments/pygments-1.5-r1.ebuild

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

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pygments-1.5-r1.ebuild	18 Jan 2013 11:11:01 -0000	1.5
+++ pygments-1.5-r1.ebuild	2 Feb 2013 21:56:35 -0000	1.6
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.5 2013/01/18 11:11:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.6 2013/02/02 21:56:35 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.93                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.92&r2=1.93

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	18 Jan 2013 11:11:01 -0000	1.92
+++ ChangeLog	2 Feb 2013 21:56:35 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.92 2013/01/18 11:11:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.93 2013/02/02 21:56:35 ago Exp $
+
+  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for amd64, wrt bug #454314
 
   18 Jan 2013; Michał Górny <mgorny@gentoo.org> pygments-1.5-r1.ebuild:
   Enable python3.3. Remove unnecessary DOCS.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-02 22:01 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-02 22:01 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/02 22:01:16

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #454314
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.6&r2=1.7

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pygments-1.5-r1.ebuild	2 Feb 2013 21:56:35 -0000	1.6
+++ pygments-1.5-r1.ebuild	2 Feb 2013 22:01:16 -0000	1.7
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.6 2013/02/02 21:56:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.7 2013/02/02 22:01:16 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.94                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	2 Feb 2013 21:56:35 -0000	1.93
+++ ChangeLog	2 Feb 2013 22:01:16 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.93 2013/02/02 21:56:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.94 2013/02/02 22:01:16 ago Exp $
+
+  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for x86, wrt bug #454314
 
   02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for amd64, wrt bug #454314





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-25 21:48 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-25 21:48 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/25 21:48:19

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #455724
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.7&r2=1.8

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pygments-1.5-r1.ebuild	2 Feb 2013 22:01:16 -0000	1.7
+++ pygments-1.5-r1.ebuild	25 Feb 2013 21:48:18 -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.7 2013/02/02 22:01:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.8 2013/02/25 21:48:18 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.97                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	15 Feb 2013 15:19:53 -0000	1.96
+++ ChangeLog	25 Feb 2013 21:48:19 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.96 2013/02/15 15:19:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.97 2013/02/25 21:48:19 ago Exp $
+
+  25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for ppc, wrt bug #455724
 
   15 Feb 2013; Michał Górny <mgorny@gentoo.org> pygments-1.6.ebuild:
   Verbosely report the implementation failing tests.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-25 22:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-25 22:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/25 22:12:02

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #455724
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.8&r2=1.9

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pygments-1.5-r1.ebuild	25 Feb 2013 21:48:18 -0000	1.8
+++ pygments-1.5-r1.ebuild	25 Feb 2013 22:12:02 -0000	1.9
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.8 2013/02/25 21:48:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.9 2013/02/25 22:12:02 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.98                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	25 Feb 2013 21:48:19 -0000	1.97
+++ ChangeLog	25 Feb 2013 22:12:02 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.97 2013/02/25 21:48:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.98 2013/02/25 22:12:02 ago Exp $
+
+  25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for ppc64, wrt bug #455724
 
   25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for ppc, wrt bug #455724





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-26 10:18 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-26 10:18 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/26 10:18:42

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #455724
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.9&r2=1.10

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- pygments-1.5-r1.ebuild	25 Feb 2013 22:12:02 -0000	1.9
+++ pygments-1.5-r1.ebuild	26 Feb 2013 10:18:42 -0000	1.10
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.9 2013/02/25 22:12:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.10 2013/02/26 10:18:42 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.99                 dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	25 Feb 2013 22:12:02 -0000	1.98
+++ ChangeLog	26 Feb 2013 10:18:42 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.98 2013/02/25 22:12:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.99 2013/02/26 10:18:42 ago Exp $
+
+  26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for alpha, wrt bug #455724
 
   25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for ppc64, wrt bug #455724





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-26 11:42 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-26 11:42 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/26 11:42:55

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #455724
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.10&r2=1.11

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- pygments-1.5-r1.ebuild	26 Feb 2013 10:18:42 -0000	1.10
+++ pygments-1.5-r1.ebuild	26 Feb 2013 11:42:55 -0000	1.11
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.10 2013/02/26 10:18:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.11 2013/02/26 11:42:55 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.100                dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	26 Feb 2013 10:18:42 -0000	1.99
+++ ChangeLog	26 Feb 2013 11:42:55 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.99 2013/02/26 10:18:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.100 2013/02/26 11:42:55 ago Exp $
+
+  26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for ia64, wrt bug #455724
 
   26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for alpha, wrt bug #455724





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-26 13:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-26 13:11 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/26 13:11:27

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #455724
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.11&r2=1.12

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pygments-1.5-r1.ebuild	26 Feb 2013 11:42:55 -0000	1.11
+++ pygments-1.5-r1.ebuild	26 Feb 2013 13:11:27 -0000	1.12
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.11 2013/02/26 11:42:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.12 2013/02/26 13:11:27 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.101                dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	26 Feb 2013 11:42:55 -0000	1.100
+++ ChangeLog	26 Feb 2013 13:11:27 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.100 2013/02/26 11:42:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.101 2013/02/26 13:11:27 ago Exp $
+
+  26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for sparc, wrt bug #455724
 
   26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for ia64, wrt bug #455724





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-02-26 14:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-26 14:50 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/26 14:50:07

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #455724
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.12&r2=1.13

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- pygments-1.5-r1.ebuild	26 Feb 2013 13:11:27 -0000	1.12
+++ pygments-1.5-r1.ebuild	26 Feb 2013 14:50:07 -0000	1.13
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.12 2013/02/26 13:11:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.13 2013/02/26 14:50:07 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.102                dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	26 Feb 2013 13:11:27 -0000	1.101
+++ ChangeLog	26 Feb 2013 14:50:07 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.101 2013/02/26 13:11:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.102 2013/02/26 14:50:07 ago Exp $
+
+  26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for s390, wrt bug #455724
 
   26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for sparc, wrt bug #455724





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-03-01 12:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-01 12:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/01 12:30:12

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #455724
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.15                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.14&r2=1.15

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- pygments-1.5-r1.ebuild	28 Feb 2013 14:12:45 -0000	1.14
+++ pygments-1.5-r1.ebuild	1 Mar 2013 12:30:12 -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.14 2013/02/28 14:12:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.15 2013/03/01 12:30:12 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.104                dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	28 Feb 2013 14:12:45 -0000	1.103
+++ ChangeLog	1 Mar 2013 12:30:12 -0000	1.104
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.103 2013/02/28 14:12:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.104 2013/03/01 12:30:12 ago Exp $
+
+  01 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for arm, wrt bug #455724
 
   28 Feb 2013; Jeroen Roovers <jer@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for HPPA (bug #455724).





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog
@ 2013-03-05  9:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-05  9:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/05 09:14:04

  Modified:             pygments-1.5-r1.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #455724
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.16                 dev-python/pygments/pygments-1.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild?r1=1.15&r2=1.16

Index: pygments-1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- pygments-1.5-r1.ebuild	1 Mar 2013 12:30:12 -0000	1.15
+++ pygments-1.5-r1.ebuild	5 Mar 2013 09:14:04 -0000	1.16
@@ -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/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.15 2013/03/01 12:30:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.5-r1.ebuild,v 1.16 2013/03/05 09:14:04 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
@@ -16,7 +16,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.105                dev-python/pygments/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	1 Mar 2013 12:30:12 -0000	1.104
+++ ChangeLog	5 Mar 2013 09:14:04 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pygments
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.104 2013/03/01 12:30:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.105 2013/03/05 09:14:04 ago Exp $
+
+  05 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
+  Stable for sh, wrt bug #455724
 
   01 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygments-1.5-r1.ebuild:
   Stable for arm, wrt bug #455724





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

end of thread, other threads:[~2013-03-05  9:14 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-26 10:18 [gentoo-commits] gentoo-x86 commit in dev-python/pygments: pygments-1.5-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-05  9:14 Agostino Sarubbo (ago)
2013-03-01 12:30 Agostino Sarubbo (ago)
2013-02-26 14:50 Agostino Sarubbo (ago)
2013-02-26 13:11 Agostino Sarubbo (ago)
2013-02-26 11:42 Agostino Sarubbo (ago)
2013-02-25 22:12 Agostino Sarubbo (ago)
2013-02-25 21:48 Agostino Sarubbo (ago)
2013-02-02 22:01 Agostino Sarubbo (ago)
2013-02-02 21:56 Agostino Sarubbo (ago)
2013-01-18 11:11 Michal Gorny (mgorny)
2013-01-13  0:06 Michal Gorny (mgorny)
2012-12-17 19:58 Michal Gorny (mgorny)
2012-12-16  9:54 Michal Gorny (mgorny)
2012-12-13 10:24 Michal Gorny (mgorny)

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