public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.7.ebuild ChangeLog
@ 2013-03-12 16:56 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-03-12 16:56 UTC (permalink / raw
  To: gentoo-commits

idella4     13/03/12 16:56:52

  Modified:             ChangeLog
  Added:                pysvn-1.7.7.ebuild
  Log:
  bump, some test scripts fial, test restrited
  
  (Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.32                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	13 Jan 2013 11:40:59 -0000	1.31
+++ ChangeLog	12 Mar 2013 16:56:52 -0000	1.32
@@ -1,6 +1,13 @@
 # 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.31 2013/01/13 11:40:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.32 2013/03/12 16:56:52 idella4 Exp $
+
+*pysvn-1.7.7 (12 Mar 2013)
+
+  12 Mar 2013; Ian Delaney <idella4@gentoo.org>
+  +files/pysvn-1.7.7-respect_flags.patch, +pysvn-1.7.7.ebuild,
+  files/pysvn-1.7.6-respect_flags.patch, pysvn-1.7.6.ebuild:
+  bump, some test scripts fial, test restrited
 
   13 Jan 2013; Agostino Sarubbo <ago@gentoo.org> pysvn-1.7.6.ebuild:
   Stable for x86, wrt bug #449782



1.1                  dev-python/pysvn/pysvn-1.7.7.ebuild

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

Index: pysvn-1.7.7.ebuild
===================================================================
# 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.7.ebuild,v 1.1 2013/03/12 16:56:52 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} )

inherit eutils distutils-r1 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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="doc examples"

DEPEND="
	>=dev-python/pycxx-6.2.0
	<dev-vcs/subversion-1.8"  # (bug #395533)
RDEPEND="${DEPEND}"
# Currently fail, no facility to add new issue upstream
RESTRICT="test"

python_prepare() {
	# Don't use internal copy of dev-python/pycxx.
	rm -fr Import

	epatch "${FILESDIR}"/${PN}-1.7.7-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

	pushd Source > /dev/null
	if [[ "${EPYTHON:6:3}" == "2.5" ]]; then
		"${PYTHON}" setup.py backport || die "Backport failed"
	fi
}

python_configure() {
	cd Source
	# all config options from 1.7.6 are all already set
	"${PYTHON}" setup.py configure
}

python_compile() {
	cd Source
	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
}

python_test() {
	cd Tests
	LC_ALL="en_US.UTF-8" emake
}

python_install() {
	cd Source/pysvn
	exeinto "$(python_get_sitedir)"/pysvn
	doexe _pysvn*$(get_modname)
	insinto "$(python_get_sitedir)"/pysvn
	doins __init__.py

	use doc && dohtml -r Docs/

	if use examples; then
		docinto examples
		dodoc Examples/Client/*
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.7.ebuild ChangeLog
@ 2013-03-19 10:02 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 2+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2013-03-19 10:02 UTC (permalink / raw
  To: gentoo-commits

xarthisius    13/03/19 10:02:02

  Modified:             pysvn-1.7.7.ebuild ChangeLog
  Log:
  Split installing python-abi specific files from docs and examples to prevent parallel install failures
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)

Revision  Changes    Path
1.2                  dev-python/pysvn/pysvn-1.7.7.ebuild

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

Index: pysvn-1.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pysvn-1.7.7.ebuild	12 Mar 2013 16:56:52 -0000	1.1
+++ pysvn-1.7.7.ebuild	19 Mar 2013 10:02:02 -0000	1.2
@@ -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.7.ebuild,v 1.1 2013/03/12 16:56:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.7.ebuild,v 1.2 2013/03/19 10:02:02 xarthisius Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} )
@@ -60,7 +60,9 @@
 	doexe _pysvn*$(get_modname)
 	insinto "$(python_get_sitedir)"/pysvn
 	doins __init__.py
+}
 
+python_install_all() {
 	use doc && dohtml -r Docs/
 
 	if use examples; then



1.33                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	12 Mar 2013 16:56:52 -0000	1.32
+++ ChangeLog	19 Mar 2013 10:02:02 -0000	1.33
@@ -1,6 +1,10 @@
 # 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.32 2013/03/12 16:56:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.33 2013/03/19 10:02:02 xarthisius Exp $
+
+  19 Mar 2013; Kacper Kowalik <xarthisius@gentoo.org> pysvn-1.7.7.ebuild:
+  Split installing python-abi specific files from docs and examples to prevent
+  parallel install failures
 
 *pysvn-1.7.7 (12 Mar 2013)
 





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

end of thread, other threads:[~2013-03-19 10:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-19 10:02 [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.7.ebuild ChangeLog Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-12 16:56 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