public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-01-13  3:14 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2015-01-13  3:14 UTC (permalink / raw
  To: gentoo-commits

floppym     15/01/13 03:14:38

  Modified:             ChangeLog
  Added:                reportlab-3.1.8-r2.ebuild
  Log:
  Sync deps with setup.py.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.120                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	13 Jan 2015 02:55:17 -0000	1.119
+++ ChangeLog	13 Jan 2015 03:14:38 -0000	1.120
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.119 2015/01/13 02:55:17 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.120 2015/01/13 03:14:38 floppym Exp $
+
+*reportlab-3.1.8-r2 (13 Jan 2015)
+
+  13 Jan 2015; Mike Gilbert <floppym@gentoo.org> +reportlab-3.1.8-r2.ebuild:
+  Sync deps with setup.py.
 
 *reportlab-3.1.44-r1 (13 Jan 2015)
 



1.1                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.1 2015/01/13 03:14:38 floppym Exp $

EAPI="5"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
# Tests crash with pypy

inherit distutils-r1 flag-o-matic prefix

DESCRIPTION="Tools for generating printable PDF documents from any data source"
HOMEPAGE="http://www.reportlab.com/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
	http://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="doc examples"

RDEPEND="
	>=dev-python/pillow-2.4.0[${PYTHON_USEDEP}]
	>=dev-python/pip-1.4.1[${PYTHON_USEDEP}]
	>=dev-python/setuptools-2.2[${PYTHON_USEDEP}]
	media-fonts/dejavu
	media-libs/libart_lgpl
	sys-libs/zlib
"
DEPEND="${RDEPEND}
	app-arch/unzip
"

DISTUTILS_NO_PARALLEL_BUILD=1

src_unpack() {
	unpack ${P}.tar.gz
	cd ${P}/src/reportlab/fonts || die
	unpack pfbfer-20070710.zip
}

python_prepare_all() {
	sed -i \
		-e "s|/usr/lib/X11/fonts/TrueType/|${EPREFIX}/usr/share/fonts/dejavu/|" \
		-e 's|/usr/local/Acrobat|/opt/Acrobat|g' \
		-e 's|%(HOME)s/fonts|%(HOME)s/.fonts|g' \
		src/reportlab/rl_config.py || die

	eprefixify setup.py
	distutils-r1_python_prepare_all
}

python_compile_all() {
	use doc && emake -C docs html
}

python_compile() {
	if ! python_is_python3; then
		local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
	fi
	distutils-r1_python_compile
}

python_test() {
	pushd tests > /dev/null || die
	"${PYTHON}" runAll.py || die "Testing failed with ${EPYTHON}"
	popd > /dev/null || die
}

python_install_all() {
	use doc && local HTML_DOCS=( docs/build/html/. )
	use examples && local EXAMPLES=( demos/. tools/pythonpoint/demos )

	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-01-13  3:16 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2015-01-13  3:16 UTC (permalink / raw
  To: gentoo-commits

floppym     15/01/13 03:16:42

  Modified:             reportlab-3.1.8-r2.ebuild ChangeLog
  Log:
  Move forward stable keywords where possible.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.2                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- reportlab-3.1.8-r2.ebuild	13 Jan 2015 03:14:38 -0000	1.1
+++ reportlab-3.1.8-r2.ebuild	13 Jan 2015 03:16:42 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.1 2015/01/13 03:14:38 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.2 2015/01/13 03:16:42 floppym Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RDEPEND="



1.121                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	13 Jan 2015 03:14:38 -0000	1.120
+++ ChangeLog	13 Jan 2015 03:16:42 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.120 2015/01/13 03:14:38 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.121 2015/01/13 03:16:42 floppym Exp $
+
+  13 Jan 2015; Mike Gilbert <floppym@gentoo.org> reportlab-3.1.8-r2.ebuild:
+  Move forward stable keywords where possible.
 
 *reportlab-3.1.8-r2 (13 Jan 2015)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-02-21 14:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-21 14:17 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/21 14:17:11

  Modified:             reportlab-3.1.8-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #532440
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- reportlab-3.1.8-r2.ebuild	13 Jan 2015 03:16:42 -0000	1.2
+++ reportlab-3.1.8-r2.ebuild	21 Feb 2015 14:17:11 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.2 2015/01/13 03:16:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.3 2015/02/21 14:17:11 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RDEPEND="



1.122                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	13 Jan 2015 03:16:42 -0000	1.121
+++ ChangeLog	21 Feb 2015 14:17:11 -0000	1.122
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.121 2015/01/13 03:16:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.122 2015/02/21 14:17:11 ago Exp $
+
+  21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> reportlab-3.1.8-r2.ebuild:
+  Stable for ppc, wrt bug #532440
 
   13 Jan 2015; Mike Gilbert <floppym@gentoo.org> reportlab-3.1.8-r2.ebuild:
   Move forward stable keywords where possible.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-03-07  0:19 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07  0:19 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/07 00:19:08

  Modified:             reportlab-3.1.8-r2.ebuild ChangeLog
  Log:
  ppc64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- reportlab-3.1.8-r2.ebuild	21 Feb 2015 14:17:11 -0000	1.3
+++ reportlab-3.1.8-r2.ebuild	7 Mar 2015 00:19:08 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.3 2015/02/21 14:17:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.4 2015/03/07 00:19:08 pacho Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RDEPEND="



1.123                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	21 Feb 2015 14:17:11 -0000	1.122
+++ ChangeLog	7 Mar 2015 00:19:08 -0000	1.123
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.122 2015/02/21 14:17:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.123 2015/03/07 00:19:08 pacho Exp $
+
+  07 Mar 2015; Pacho Ramos <pacho@gentoo.org> reportlab-3.1.8-r2.ebuild:
+  ppc64 stable, bug 540290
 
   21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> reportlab-3.1.8-r2.ebuild:
   Stable for ppc, wrt bug #532440





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

* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-04-13  9:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13  9:26 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/13 09:26:50

  Modified:             reportlab-3.1.8-r2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #540290
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- reportlab-3.1.8-r2.ebuild	7 Mar 2015 00:19:08 -0000	1.4
+++ reportlab-3.1.8-r2.ebuild	13 Apr 2015 09:26:50 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.4 2015/03/07 00:19:08 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.5 2015/04/13 09:26:50 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RDEPEND="



1.125                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog	7 Mar 2015 08:22:30 -0000	1.124
+++ ChangeLog	13 Apr 2015 09:26:50 -0000	1.125
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.124 2015/03/07 08:22:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.125 2015/04/13 09:26:50 ago Exp $
+
+  13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> reportlab-3.1.8-r2.ebuild:
+  Stable for alpha, wrt bug #540290
 
   07 Mar 2015; Pacho Ramos <pacho@gentoo.org> reportlab-3.1.8-r2.ebuild:
   ppc stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog
@ 2015-04-14 12:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:51 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/14 12:51:12

  Modified:             reportlab-3.1.8-r2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #540290
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-python/reportlab/reportlab-3.1.8-r2.ebuild

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

Index: reportlab-3.1.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- reportlab-3.1.8-r2.ebuild	13 Apr 2015 09:26:50 -0000	1.5
+++ reportlab-3.1.8-r2.ebuild	14 Apr 2015 12:51:12 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.5 2015/04/13 09:26:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/reportlab-3.1.8-r2.ebuild,v 1.6 2015/04/14 12:51:12 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RDEPEND="



1.126                dev-python/reportlab/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog	13 Apr 2015 09:26:50 -0000	1.125
+++ ChangeLog	14 Apr 2015 12:51:12 -0000	1.126
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/reportlab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.125 2015/04/13 09:26:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reportlab/ChangeLog,v 1.126 2015/04/14 12:51:12 ago Exp $
+
+  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> reportlab-3.1.8-r2.ebuild:
+  Stable for ia64, wrt bug #540290
 
   13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> reportlab-3.1.8-r2.ebuild:
   Stable for alpha, wrt bug #540290





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

end of thread, other threads:[~2015-04-14 12:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-13  3:14 [gentoo-commits] gentoo-x86 commit in dev-python/reportlab: reportlab-3.1.8-r2.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-13  3:16 Mike Gilbert (floppym)
2015-02-21 14:17 Agostino Sarubbo (ago)
2015-03-07  0:19 Pacho Ramos (pacho)
2015-04-13  9:26 Agostino Sarubbo (ago)
2015-04-14 12:51 Agostino Sarubbo (ago)

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