public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog
@ 2014-04-16  8:52 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-04-16  8:52 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/04/16 08:52:24

  Modified:             ChangeLog
  Added:                python-fastimport-0.9.2-r1.ebuild
  Log:
  Convert to distutils-r1. Enable tests.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.7                  dev-python/python-fastimport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	11 Aug 2012 09:29:36 -0000	1.6
+++ ChangeLog	16 Apr 2014 08:52:23 -0000	1.7
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-fastimport
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.6 2012/08/11 09:29:36 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.7 2014/04/16 08:52:23 mgorny Exp $
+
+*python-fastimport-0.9.2-r1 (16 Apr 2014)
+
+  16 Apr 2014; Michał Górny <mgorny@gentoo.org>
+  +python-fastimport-0.9.2-r1.ebuild:
+  Convert to distutils-r1. Enable tests.
 
   11 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
   python-fastimport-0.9.2.ebuild:
@@ -30,4 +36,3 @@
   13 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
   +python-fastimport-0.9.0.ebuild, +metadata.xml:
   New ebuild for a fastimport format parser library, needed for bzr-fastimport.
-



1.1                  dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild

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

Index: python-fastimport-0.9.2-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.1 2014/04/16 08:52:23 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} pypy )

inherit distutils-r1

DESCRIPTION="Library for parsing the fastimport VCS serialization format"
HOMEPAGE="https://launchpad.net/python-fastimport"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND=""
DEPEND="
	test? (
		dev-python/testtools[${PYTHON_USEDEP}]
		virtual/python-unittest2[${PYTHON_USEDEP}]
	)"

python_test() {
	local test_runner=( "${PYTHON}" -m unittest )

	if [[ ${EPYTHON} == python2.6 ]]; then
		test_runner=( unit2 )
	fi

	"${test_runner[@]}" fastimport.tests.test_suite \
		|| die "Tests fail with ${EPYTHON}"
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog
@ 2014-07-06 12:47 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-07-06 12:47 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/07/06 12:47:19

  Modified:             python-fastimport-0.9.2-r1.ebuild ChangeLog
  Log:
  Clean up obsolete dependencies on virtual/python-argparse and virtual/python-unittest2 (those packages were only required for <=python-2.6).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.2                  dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild

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

Index: python-fastimport-0.9.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-fastimport-0.9.2-r1.ebuild	16 Apr 2014 08:52:23 -0000	1.1
+++ python-fastimport-0.9.2-r1.ebuild	6 Jul 2014 12:47:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.1 2014/04/16 08:52:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.2 2014/07/06 12:47:19 mgorny Exp $
 
 EAPI=5
 
@@ -21,7 +21,6 @@
 DEPEND="
 	test? (
 		dev-python/testtools[${PYTHON_USEDEP}]
-		virtual/python-unittest2[${PYTHON_USEDEP}]
 	)"
 
 python_test() {



1.8                  dev-python/python-fastimport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	16 Apr 2014 08:52:23 -0000	1.7
+++ ChangeLog	6 Jul 2014 12:47:19 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/python-fastimport
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.7 2014/04/16 08:52:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.8 2014/07/06 12:47:19 mgorny Exp $
+
+  06 Jul 2014; Michał Górny <mgorny@gentoo.org>
+  python-fastimport-0.9.2-r1.ebuild:
+  Clean up obsolete dependencies on virtual/python-argparse and virtual/python-
+  unittest2 (those packages were only required for <=python-2.6).
 
 *python-fastimport-0.9.2-r1 (16 Apr 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog
@ 2015-04-08  8:05 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08  8:05 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 08:05:20

  Modified:             python-fastimport-0.9.2-r1.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.3                  dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild

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

Index: python-fastimport-0.9.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- python-fastimport-0.9.2-r1.ebuild	6 Jul 2014 12:47:19 -0000	1.2
+++ python-fastimport-0.9.2-r1.ebuild	8 Apr 2015 08:05:20 -0000	1.3
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.2 2014/07/06 12:47:19 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.3 2015/04/08 08:05:20 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} pypy )
+PYTHON_COMPAT=( python2_7 pypy )
 
 inherit distutils-r1
 



1.10                 dev-python/python-fastimport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	13 Mar 2015 23:24:10 -0000	1.9
+++ ChangeLog	8 Apr 2015 08:05:20 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-fastimport
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.9 2015/03/13 23:24:10 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.10 2015/04/08 08:05:20 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org>
+  python-fastimport-0.9.2-r1.ebuild:
+  Drop old Python implementations
 
   13 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -python-fastimport-0.9.1.ebuild:
   Remove old.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog
@ 2015-05-21 13:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-05-21 13:26 UTC (permalink / raw
  To: gentoo-commits

ago         15/05/21 13:26:54

  Modified:             python-fastimport-0.9.2-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #535360
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild

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

Index: python-fastimport-0.9.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- python-fastimport-0.9.2-r1.ebuild	8 Apr 2015 08:05:20 -0000	1.3
+++ python-fastimport-0.9.2-r1.ebuild	21 May 2015 13:26:54 -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/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.3 2015/04/08 08:05:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.4 2015/05/21 13:26:54 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND=""



1.11                 dev-python/python-fastimport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	8 Apr 2015 08:05:20 -0000	1.10
+++ ChangeLog	21 May 2015 13:26:54 -0000	1.11
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-fastimport
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.10 2015/04/08 08:05:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.11 2015/05/21 13:26:54 ago Exp $
+
+  21 May 2015; Agostino Sarubbo <ago@gentoo.org>
+  python-fastimport-0.9.2-r1.ebuild:
+  Stable for amd64, wrt bug #535360
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org>
   python-fastimport-0.9.2-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog
@ 2015-05-27 11:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-05-27 11:25 UTC (permalink / raw
  To: gentoo-commits

ago         15/05/27 11:25:50

  Modified:             python-fastimport-0.9.2-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #535360
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild

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

Index: python-fastimport-0.9.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-fastimport-0.9.2-r1.ebuild	21 May 2015 13:26:54 -0000	1.4
+++ python-fastimport-0.9.2-r1.ebuild	27 May 2015 11:25: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/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.4 2015/05/21 13:26:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/python-fastimport-0.9.2-r1.ebuild,v 1.5 2015/05/27 11:25:50 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND=""



1.12                 dev-python/python-fastimport/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	21 May 2015 13:26:54 -0000	1.11
+++ ChangeLog	27 May 2015 11:25:50 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-fastimport
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.11 2015/05/21 13:26:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-fastimport/ChangeLog,v 1.12 2015/05/27 11:25:50 ago Exp $
+
+  27 May 2015; Agostino Sarubbo <ago@gentoo.org>
+  python-fastimport-0.9.2-r1.ebuild:
+  Stable for x86, wrt bug #535360
 
   21 May 2015; Agostino Sarubbo <ago@gentoo.org>
   python-fastimport-0.9.2-r1.ebuild:





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

end of thread, other threads:[~2015-05-27 11:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-06 12:47 [gentoo-commits] gentoo-x86 commit in dev-python/python-fastimport: python-fastimport-0.9.2-r1.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-27 11:25 Agostino Sarubbo (ago)
2015-05-21 13:26 Agostino Sarubbo (ago)
2015-04-08  8:05 Michal Gorny (mgorny)
2014-04-16  8:52 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