* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-03-09 8:00 Patrick Lauer (patrick)
0 siblings, 0 replies; 8+ messages in thread
From: Patrick Lauer (patrick) @ 2012-03-09 8:00 UTC (permalink / raw
To: gentoo-commits
patrick 12/03/09 08:00:12
Modified: ChangeLog
Added: pysvn-1.7.6.ebuild
Log:
Bump/fix for #395533 #407065
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.23 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 27 Feb 2012 23:12:46 -0000 1.22
+++ ChangeLog 9 Mar 2012 08:00:12 -0000 1.23
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.22 2012/02/27 23:12:46 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.23 2012/03/09 08:00:12 patrick Exp $
+
+*pysvn-1.7.6 (09 Mar 2012)
+
+ 09 Mar 2012; Patrick Lauer <patrick@gentoo.org> +pysvn-1.7.6.ebuild:
+ Bump/fix for #395533 #407065
27 Feb 2012; Sebastian Pipping <sping@gentoo.org> pysvn-1.7.5.ebuild:
Adjust dependency to require subversion before 1.7 (bug #395533)
1.1 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.1&content-type=text/plain
Index: pysvn-1.7.6.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.1 2012/03/09 08:00:12 patrick Exp $
EAPI="3"
PYTHON_DEPEND="*"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
inherit python toolchain-funcs
DESCRIPTION="Object-oriented python bindings for subversion"
HOMEPAGE="http://pysvn.tigris.org/"
SRC_URI="http://pysvn.barrys-emacs.org/source_kits/${P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-freebsd ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"
RDEPEND=">=dev-python/pycxx-6.2.0
<dev-vcs/subversion-1.8" # (bug #395533)
DEPEND="${RDEPEND}
dev-python/setuptools"
src_prepare() {
# Don't use internal copy of dev-python/pycxx.
rm -fr Import
# Fix harmless SyntaxErrors with Python 3.
sed -e "/^DISTDIR=/d" -i Source/pysvn_common.mak
python_copy_sources
preparation() {
cd Source
if has "${PYTHON_ABI}" 2.4 2.5; then
"$(PYTHON)" setup.py backport || die "Backport failed"
fi
}
python_execute_function -s preparation
}
src_configure() {
configuration() {
cd Source
"$(PYTHON)" setup.py configure \
--pycxx-src-dir="${EPREFIX}/usr/share/python$(python_get_version)/CXX" \
--apr-inc-dir="${EPREFIX}/usr/include/apr-1" \
--apu-inc-dir="${EPREFIX}/usr/include/apr-1" \
--svn-root-dir="${EPREFIX}/usr" || return 1
sed \
-e 's:^\(CCFLAGS=\)\(.*\):\1$(CFLAGS) \2:g' \
-e 's:^\(CCCFLAGS=\)\(.*\):\1$(CXXFLAGS) \2:g' \
-e "/^CCC=/s:g++:$(tc-getCXX):" \
-e "/^CC=/s:gcc:$(tc-getCC):" \
-e "/^LDSHARED=/s:g++:$(tc-getCXX) ${LDFLAGS}:" \
-i Makefile || die "sed failed"
}
python_execute_function -s configuration
}
src_compile() {
building() {
cd Source
emake
}
python_execute_function -s building
}
src_test() {
testing() {
cd Source
emake test || return 1
emake -C ../Tests || return 1
}
python_execute_function -s testing
}
src_install() {
installation() {
cd Source/pysvn
exeinto "$(python_get_sitedir)/pysvn"
doexe _pysvn*$(get_modname) || die "doexe failed"
insinto "$(python_get_sitedir)/pysvn"
doins __init__.py || die "doins failed"
}
python_execute_function -s installation
if use doc; then
dohtml -r Docs/ || die "dohtml failed"
fi
if use examples; then
docinto examples
dodoc Examples/Client/* || die "dodoc examples failed"
fi
}
pkg_postinst() {
python_mod_optimize pysvn
}
pkg_postrm() {
python_mod_cleanup pysvn
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-03-10 15:11 Justin Lecher (jlec)
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-10 15:11 UTC (permalink / raw
To: gentoo-commits
jlec 12/03/10 15:11:30
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Moved to EAPI=4 and imported changes from progress overlay including FLAGS respect patch, typo fix backport from upstream, fix test # 389241 & 387777, thanks Arfrever for the work
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.2&r2=1.3
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pysvn-1.7.6.ebuild 10 Mar 2012 13:08:55 -0000 1.2
+++ pysvn-1.7.6.ebuild 10 Mar 2012 15:11:30 -0000 1.3
@@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.2 2012/03/10 13:08:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.3 2012/03/10 15:11:30 jlec Exp $
-EAPI="3"
+EAPI=4
PYTHON_DEPEND="*"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-*"
-inherit python toolchain-funcs
+inherit eutils python toolchain-funcs
DESCRIPTION="Object-oriented python bindings for subversion"
HOMEPAGE="http://pysvn.tigris.org/"
@@ -27,6 +27,11 @@
# Don't use internal copy of dev-python/pycxx.
rm -fr Import
+ epatch "${FILESDIR}/${P}-respect_flags.patch"
+
+ # http://pysvn.tigris.org/source/browse/pysvn?view=rev&revision=1469
+ sed -e "s/PYSVN_HAS_SVN_CLIENT_CTX_T__CONFLICT_FUNC_16/PYSVN_HAS_SVN_CLIENT_CTX_T__CONFLICT_FUNC_1_6/" -i Source/pysvn_svnenv.hpp
+
# Fix harmless SyntaxErrors with Python 3.
sed -e "/^DISTDIR=/d" -i Source/pysvn_common.mak
@@ -48,15 +53,7 @@
--pycxx-src-dir="${EPREFIX}/usr/share/python$(python_get_version)/CXX" \
--apr-inc-dir="${EPREFIX}/usr/include/apr-1" \
--apu-inc-dir="${EPREFIX}/usr/include/apr-1" \
- --svn-root-dir="${EPREFIX}/usr" || return 1
-
- sed \
- -e 's:^\(CCFLAGS=\)\(.*\):\1$(CFLAGS) \2:g' \
- -e 's:^\(CCCFLAGS=\)\(.*\):\1$(CXXFLAGS) \2:g' \
- -e "/^CCC=/s:g++:$(tc-getCXX):" \
- -e "/^CC=/s:gcc:$(tc-getCC):" \
- -e "/^LDSHARED=/s:g++:$(tc-getCXX) ${LDFLAGS}:" \
- -i Makefile || die "sed failed"
+ --svn-root-dir="${EPREFIX}/usr"
}
python_execute_function -s configuration
}
@@ -64,16 +61,15 @@
src_compile() {
building() {
cd Source
- emake
+ emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
}
python_execute_function -s building
}
src_test() {
testing() {
- cd Source
- emake test || return 1
- emake -C ../Tests || return 1
+ cd Tests
+ LC_ALL="en_US.UTF-8" emake
}
python_execute_function -s testing
}
@@ -82,19 +78,19 @@
installation() {
cd Source/pysvn
exeinto "$(python_get_sitedir)/pysvn"
- doexe _pysvn*$(get_modname) || die "doexe failed"
+ doexe _pysvn*$(get_modname)
insinto "$(python_get_sitedir)/pysvn"
- doins __init__.py || die "doins failed"
+ doins __init__.py
}
python_execute_function -s installation
if use doc; then
- dohtml -r Docs/ || die "dohtml failed"
+ dohtml -r Docs/
fi
if use examples; then
docinto examples
- dodoc Examples/Client/* || die "dodoc examples failed"
+ dodoc Examples/Client/*
fi
}
1.25 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 10 Mar 2012 13:08:55 -0000 1.24
+++ ChangeLog 10 Mar 2012 15:11:30 -0000 1.25
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.24 2012/03/10 13:08:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.25 2012/03/10 15:11:30 jlec Exp $
+
+ 10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild,
+ +files/pysvn-1.7.6-respect_flags.patch:
+ Moved to EAPI=4 and imported changes from progress overlay including FLAGS
+ respect patch, typo fix backport from upstream, fix test # 389241 & 387777,
+ thanks Arfrever for the work
10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.5.ebuild,
pysvn-1.7.6.ebuild:
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-03-10 16:00 Justin Lecher (jlec)
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-10 16:00 UTC (permalink / raw
To: gentoo-commits
jlec 12/03/10 16:00:49
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Py2.4 is gone, tanks Arfrever telling me that
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.4 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.3&r2=1.4
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pysvn-1.7.6.ebuild 10 Mar 2012 15:11:30 -0000 1.3
+++ pysvn-1.7.6.ebuild 10 Mar 2012 16:00:49 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.3 2012/03/10 15:11:30 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.4 2012/03/10 16:00:49 jlec Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -32,15 +32,12 @@
# http://pysvn.tigris.org/source/browse/pysvn?view=rev&revision=1469
sed -e "s/PYSVN_HAS_SVN_CLIENT_CTX_T__CONFLICT_FUNC_16/PYSVN_HAS_SVN_CLIENT_CTX_T__CONFLICT_FUNC_1_6/" -i Source/pysvn_svnenv.hpp
- # Fix harmless SyntaxErrors with Python 3.
- sed -e "/^DISTDIR=/d" -i Source/pysvn_common.mak
-
python_copy_sources
preparation() {
cd Source
- if has "${PYTHON_ABI}" 2.4 2.5; then
- "$(PYTHON)" setup.py backport || die "Backport failed"
+ if [[ "$(python_get_version -l)" == "2.5" ]]; then
+ python_execute "$(PYTHON)" setup.py backport || die "Backport failed"
fi
}
python_execute_function -s preparation
1.26 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 10 Mar 2012 15:11:30 -0000 1.25
+++ ChangeLog 10 Mar 2012 16:00:49 -0000 1.26
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.25 2012/03/10 15:11:30 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.26 2012/03/10 16:00:49 jlec Exp $
+
+ 10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild:
+ Py2.4 is gone, tanks Arfrever telling me that
10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild,
+files/pysvn-1.7.6-respect_flags.patch:
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-03-10 16:03 Justin Lecher (jlec)
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-10 16:03 UTC (permalink / raw
To: gentoo-commits
jlec 12/03/10 16:03:24
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Fix DEPS, remove setuptools which aren't needed
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.5 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.4&r2=1.5
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pysvn-1.7.6.ebuild 10 Mar 2012 16:00:49 -0000 1.4
+++ pysvn-1.7.6.ebuild 10 Mar 2012 16:03:23 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.4 2012/03/10 16:00:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.5 2012/03/10 16:03:23 jlec Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -18,10 +18,10 @@
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-freebsd ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"
-RDEPEND=">=dev-python/pycxx-6.2.0
+DEPEND="
+ >=dev-python/pycxx-6.2.0
<dev-vcs/subversion-1.8" # (bug #395533)
-DEPEND="${RDEPEND}
- dev-python/setuptools"
+RDEPEND="${DEPEND}"
src_prepare() {
# Don't use internal copy of dev-python/pycxx.
1.27 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 10 Mar 2012 16:00:49 -0000 1.26
+++ ChangeLog 10 Mar 2012 16:03:23 -0000 1.27
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.26 2012/03/10 16:00:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.27 2012/03/10 16:03:23 jlec Exp $
+
+ 10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild:
+ Fix DEPS, remove setuptools which aren't needed
10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild:
Py2.4 is gone, tanks Arfrever telling me that
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-03-30 22:34 Mike Gilbert (floppym)
0 siblings, 0 replies; 8+ messages in thread
From: Mike Gilbert (floppym) @ 2012-03-30 22:34 UTC (permalink / raw
To: gentoo-commits
floppym 12/03/30 22:34:27
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
python_execute does not exist ing gentoo-x86.
(Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.5&r2=1.6
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pysvn-1.7.6.ebuild 10 Mar 2012 16:03:23 -0000 1.5
+++ pysvn-1.7.6.ebuild 30 Mar 2012 22:34:26 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.5 2012/03/10 16:03:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.6 2012/03/30 22:34:26 floppym Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -37,7 +37,7 @@
preparation() {
cd Source
if [[ "$(python_get_version -l)" == "2.5" ]]; then
- python_execute "$(PYTHON)" setup.py backport || die "Backport failed"
+ "$(PYTHON)" setup.py backport || die "Backport failed"
fi
}
python_execute_function -s preparation
1.28 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 10 Mar 2012 16:03:23 -0000 1.27
+++ ChangeLog 30 Mar 2012 22:34:26 -0000 1.28
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.27 2012/03/10 16:03:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.28 2012/03/30 22:34:26 floppym Exp $
+
+ 30 Mar 2012; Mike Gilbert <floppym@gentoo.org> pysvn-1.7.6.ebuild:
+ python_execute does not exist ing gentoo-x86.
10 Mar 2012; Justin Lecher <jlec@gentoo.org> pysvn-1.7.6.ebuild:
Fix DEPS, remove setuptools which aren't needed
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2012-10-20 7:51 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-10-20 7:51 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/10/20 07:51:37
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Mark ~amd64-linux
(Portage version: 2.2.0_alpha138/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Revision Changes Path
1.7 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.6&r2=1.7
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pysvn-1.7.6.ebuild 30 Mar 2012 22:34:26 -0000 1.6
+++ pysvn-1.7.6.ebuild 20 Oct 2012 07:51:37 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.6 2012/03/30 22:34:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.7 2012/10/20 07:51:37 xarthisius Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -15,7 +15,7 @@
LICENSE="Apache-1.1"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-freebsd ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"
DEPEND="
1.29 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.28&r2=1.29
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog 30 Mar 2012 22:34:26 -0000 1.28
+++ ChangeLog 20 Oct 2012 07:51:37 -0000 1.29
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.28 2012/03/30 22:34:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.29 2012/10/20 07:51:37 xarthisius Exp $
+
+ 20 Oct 2012; Kacper Kowalik <xarthisius@gentoo.org> pysvn-1.7.6.ebuild:
+ Mark ~amd64-linux
30 Mar 2012; Mike Gilbert <floppym@gentoo.org> pysvn-1.7.6.ebuild:
python_execute does not exist ing gentoo-x86.
@@ -115,4 +118,3 @@
+files/skip-root-test.patch, +metadata.xml, +pysvn-1.6.3-r1.ebuild:
Initial import, ebuild from sunrise overlay. Thanks to idl0r and all the
others who worked on this in the last 2 years.
-
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2013-01-05 12:07 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-05 12:07 UTC (permalink / raw
To: gentoo-commits
ago 13/01/05 12:07:53
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #449782
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.8 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.7&r2=1.8
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pysvn-1.7.6.ebuild 20 Oct 2012 07:51:37 -0000 1.7
+++ pysvn-1.7.6.ebuild 5 Jan 2013 12:07:53 -0000 1.8
@@ -1,6 +1,6 @@
-# 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/pysvn/pysvn-1.7.6.ebuild,v 1.7 2012/10/20 07:51:37 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.8 2013/01/05 12:07:53 ago Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -15,7 +15,7 @@
LICENSE="Apache-1.1"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"
DEPEND="
1.30 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 20 Oct 2012 07:51:37 -0000 1.29
+++ ChangeLog 5 Jan 2013 12:07:53 -0000 1.30
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.29 2012/10/20 07:51:37 xarthisius Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.30 2013/01/05 12:07:53 ago Exp $
+
+ 05 Jan 2013; Agostino Sarubbo <ago@gentoo.org> pysvn-1.7.6.ebuild:
+ Stable for amd64, wrt bug #449782
20 Oct 2012; Kacper Kowalik <xarthisius@gentoo.org> pysvn-1.7.6.ebuild:
Mark ~amd64-linux
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog
@ 2013-01-13 11:40 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-13 11:40 UTC (permalink / raw
To: gentoo-commits
ago 13/01/13 11:40:59
Modified: pysvn-1.7.6.ebuild ChangeLog
Log:
Stable for x86, wrt bug #449782
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.9 dev-python/pysvn/pysvn-1.7.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild?r1=1.8&r2=1.9
Index: pysvn-1.7.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pysvn-1.7.6.ebuild 5 Jan 2013 12:07:53 -0000 1.8
+++ pysvn-1.7.6.ebuild 13 Jan 2013 11:40:59 -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/pysvn/pysvn-1.7.6.ebuild,v 1.8 2013/01/05 12:07:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.6.ebuild,v 1.9 2013/01/13 11:40:59 ago Exp $
EAPI=4
PYTHON_DEPEND="*"
@@ -15,7 +15,7 @@
LICENSE="Apache-1.1"
SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~ppc x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"
DEPEND="
1.31 dev-python/pysvn/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 5 Jan 2013 12:07:53 -0000 1.30
+++ ChangeLog 13 Jan 2013 11:40:59 -0000 1.31
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysvn
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.30 2013/01/05 12:07:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.31 2013/01/13 11:40:59 ago Exp $
+
+ 13 Jan 2013; Agostino Sarubbo <ago@gentoo.org> pysvn-1.7.6.ebuild:
+ Stable for x86, wrt bug #449782
05 Jan 2013; Agostino Sarubbo <ago@gentoo.org> pysvn-1.7.6.ebuild:
Stable for amd64, wrt bug #449782
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-01-13 11:41 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-30 22:34 [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.6.ebuild ChangeLog Mike Gilbert (floppym)
-- strict thread matches above, loose matches on Subject: below --
2013-01-13 11:40 Agostino Sarubbo (ago)
2013-01-05 12:07 Agostino Sarubbo (ago)
2012-10-20 7:51 Kacper Kowalik (xarthisius)
2012-03-10 16:03 Justin Lecher (jlec)
2012-03-10 16:00 Justin Lecher (jlec)
2012-03-10 15:11 Justin Lecher (jlec)
2012-03-09 8:00 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox