public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog
@ 2014-05-17  8:18 Ian Delaney (idella4)
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-17  8:18 UTC (permalink / raw
  To: gentoo-commits

idella4     14/05/17 08:18:33

  Modified:             ChangeLog
  Added:                python-distutils-extra-2.38.ebuild
  Log:
  bump; drop py2.6 pypy2_0 add py3.4 pypy support, tidy
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.29                 dev-python/python-distutils-extra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	31 Mar 2014 20:40:58 -0000	1.28
+++ ChangeLog	17 May 2014 08:18:33 -0000	1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-distutils-extra
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.28 2014/03/31 20:40:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.29 2014/05/17 08:18:33 idella4 Exp $
+
+*python-distutils-extra-2.38 (17 May 2014)
+
+  17 May 2014; Ian Delaney <idella4@gentoo.org>
+  +python-distutils-extra-2.38.ebuild:
+  bump; drop py2.6 pypy2_0 add py3.4 pypy support, tidy
 
   31 Mar 2014; Michał Górny <mgorny@gentoo.org>
   python-distutils-extra-2.33-r1.ebuild, python-distutils-extra-2.37-r1.ebuild:



1.1                  dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild

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

Index: python-distutils-extra-2.38.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-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.1 2014/05/17 08:18:33 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )

inherit distutils-r1

DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
HOMEPAGE="https://launchpad.net/python-distutils-extra"
SRC_URI="http://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz"

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

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"

DOCS=( doc/{FAQ,README,setup.cfg.example,setup.py.example} )

DISTUTILS_IN_SOURCE_BUILD=1

python_prepare_all() {
	# Disable broken tests.
	sed \
		-e "s/test_desktop/_&/" -e "s/test_po(/_&/" \
		-e "s/test_policykit/_&/" -e "s/test_requires_provides/_&/" \
		-i test/auto.py || die

	distutils-r1_python_prepare_all
}

python_test() {
	# 5 tests fail with disabled byte-compilation (they rely on exact
	# output from python).
	local -x PYTHONDONTWRITEBYTECODE
	"${PYTHON}" test/auto.py || die "Tests fail with ${EPYTHON}"
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog
@ 2014-11-27 12:47 Ian Delaney (idella4)
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Delaney (idella4) @ 2014-11-27 12:47 UTC (permalink / raw
  To: gentoo-commits

idella4     14/11/27 12:47:08

  Modified:             python-distutils-extra-2.38.ebuild ChangeLog
  Log:
  clean old python impl
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild

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

Index: python-distutils-extra-2.38.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-distutils-extra-2.38.ebuild	17 May 2014 08:18:33 -0000	1.1
+++ python-distutils-extra-2.38.ebuild	27 Nov 2014 12:47:08 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.1 2014/05/17 08:18:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.2 2014/11/27 12:47:08 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
 
 inherit distutils-r1
 



1.31                 dev-python/python-distutils-extra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	10 Aug 2014 21:18:50 -0000	1.30
+++ ChangeLog	27 Nov 2014 12:47:08 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-distutils-extra
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.30 2014/08/10 21:18:50 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.31 2014/11/27 12:47:08 idella4 Exp $
+
+  27 Nov 2014; Ian Delaney <idella4@gentoo.org>
+  python-distutils-extra-2.38.ebuild:
+  clean old python impl
 
   10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org>
   python-distutils-extra-2.23.ebuild, python-distutils-extra-2.33.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog
@ 2014-12-04  9:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-04  9:58 UTC (permalink / raw
  To: gentoo-commits

ago         14/12/04 09:58:06

  Modified:             python-distutils-extra-2.38.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #530582
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild

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

Index: python-distutils-extra-2.38.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- python-distutils-extra-2.38.ebuild	27 Nov 2014 12:47:08 -0000	1.2
+++ python-distutils-extra-2.38.ebuild	4 Dec 2014 09:58:06 -0000	1.3
@@ -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-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.2 2014/11/27 12:47:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.3 2014/12/04 09:58:06 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.32                 dev-python/python-distutils-extra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	27 Nov 2014 12:47:08 -0000	1.31
+++ ChangeLog	4 Dec 2014 09:58:06 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-distutils-extra
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.31 2014/11/27 12:47:08 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.32 2014/12/04 09:58:06 ago Exp $
+
+  04 Dec 2014; Agostino Sarubbo <ago@gentoo.org>
+  python-distutils-extra-2.38.ebuild:
+  Stable for amd64, wrt bug #530582
 
   27 Nov 2014; Ian Delaney <idella4@gentoo.org>
   python-distutils-extra-2.38.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog
@ 2014-12-05 10:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-05 10:14 UTC (permalink / raw
  To: gentoo-commits

ago         14/12/05 10:14:53

  Modified:             python-distutils-extra-2.38.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #530582
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild

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

Index: python-distutils-extra-2.38.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- python-distutils-extra-2.38.ebuild	4 Dec 2014 09:58:06 -0000	1.3
+++ python-distutils-extra-2.38.ebuild	5 Dec 2014 10:14:53 -0000	1.4
@@ -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-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.3 2014/12/04 09:58:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.4 2014/12/05 10:14:53 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.33                 dev-python/python-distutils-extra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	4 Dec 2014 09:58:06 -0000	1.32
+++ ChangeLog	5 Dec 2014 10:14:53 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-distutils-extra
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.32 2014/12/04 09:58:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.33 2014/12/05 10:14:53 ago Exp $
+
+  05 Dec 2014; Agostino Sarubbo <ago@gentoo.org>
+  python-distutils-extra-2.38.ebuild:
+  Stable for x86, wrt bug #530582
 
   04 Dec 2014; Agostino Sarubbo <ago@gentoo.org>
   python-distutils-extra-2.38.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog
@ 2014-12-07 12:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-07 12:03 UTC (permalink / raw
  To: gentoo-commits

ago         14/12/07 12:03:34

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

Revision  Changes    Path
1.5                  dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild

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

Index: python-distutils-extra-2.38.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-distutils-extra-2.38.ebuild	5 Dec 2014 10:14:53 -0000	1.4
+++ python-distutils-extra-2.38.ebuild	7 Dec 2014 12:03:34 -0000	1.5
@@ -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-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.4 2014/12/05 10:14:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.38.ebuild,v 1.5 2014/12/07 12:03:34 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.34                 dev-python/python-distutils-extra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	5 Dec 2014 10:14:53 -0000	1.33
+++ ChangeLog	7 Dec 2014 12:03:34 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-distutils-extra
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.33 2014/12/05 10:14:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.34 2014/12/07 12:03:34 ago Exp $
+
+  07 Dec 2014; Agostino Sarubbo <ago@gentoo.org>
+  python-distutils-extra-2.38.ebuild:
+  Stable for ppc, wrt bug #530582
 
   05 Dec 2014; Agostino Sarubbo <ago@gentoo.org>
   python-distutils-extra-2.38.ebuild:





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

end of thread, other threads:[~2014-12-07 12:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-27 12:47 [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.38.ebuild ChangeLog Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2014-12-07 12:03 Agostino Sarubbo (ago)
2014-12-05 10:14 Agostino Sarubbo (ago)
2014-12-04  9:58 Agostino Sarubbo (ago)
2014-05-17  8:18 Ian Delaney (idella4)

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