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.5.ebuild ChangeLog
@ 2011-03-09 14:44 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-03-09 14:44 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/03/09 14:44:33

  Modified:             ChangeLog
  Added:                pysvn-1.7.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha26_p10/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	5 Feb 2011 22:49:58 -0000	1.18
+++ ChangeLog	9 Mar 2011 14:44:33 -0000	1.19
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pysvn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.18 2011/02/05 22:49:58 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.19 2011/03/09 14:44:33 arfrever Exp $
+
+*pysvn-1.7.5 (09 Mar 2011)
+
+  09 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +pysvn-1.7.5.ebuild:
+  Version bump.
 
   05 Feb 2011; Markus Meier <maekke@gentoo.org> pysvn-1.7.4.ebuild:
   add ~arm, bug #350648



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

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

Index: pysvn-1.7.5.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.1 2011/03/09 14:44:33 arfrever 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"
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" \
			--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] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.5.ebuild ChangeLog
@ 2011-04-15 21:45 Christoph Mende (angelos)
  0 siblings, 0 replies; 4+ messages in thread
From: Christoph Mende (angelos) @ 2011-04-15 21:45 UTC (permalink / raw
  To: gentoo-commits

angelos     11/04/15 21:45:30

  Modified:             pysvn-1.7.5.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #362769
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

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

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

Index: pysvn-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pysvn-1.7.5.ebuild	9 Mar 2011 14:44:33 -0000	1.1
+++ pysvn-1.7.5.ebuild	15 Apr 2011 21:45:30 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.1 2011/03/09 14:44:33 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.2 2011/04/15 21:45:30 angelos Exp $
 
 EAPI="3"
 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 ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="doc examples"
 
 RDEPEND=">=dev-python/pycxx-6.2.0



1.20                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	9 Mar 2011 14:44:33 -0000	1.19
+++ ChangeLog	15 Apr 2011 21:45:30 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pysvn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.19 2011/03/09 14:44:33 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.20 2011/04/15 21:45:30 angelos Exp $
+
+  15 Apr 2011; Christoph Mende <angelos@gentoo.org> pysvn-1.7.5.ebuild:
+  Stable on amd64 wrt bug #362769
 
 *pysvn-1.7.5 (09 Mar 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.5.ebuild ChangeLog
@ 2011-04-18 18:27 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2011-04-18 18:27 UTC (permalink / raw
  To: gentoo-commits

tomka       11/04/18 18:27:39

  Modified:             pysvn-1.7.5.ebuild ChangeLog
  Log:
  x86 stable per bug 362769
  
  (Portage version: 2.1.9.46/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-python/pysvn/pysvn-1.7.5.ebuild

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

Index: pysvn-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pysvn-1.7.5.ebuild	15 Apr 2011 21:45:30 -0000	1.2
+++ pysvn-1.7.5.ebuild	18 Apr 2011 18:27:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.2 2011/04/15 21:45:30 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.3 2011/04/18 18:27:39 tomka Exp $
 
 EAPI="3"
 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 ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="doc examples"
 
 RDEPEND=">=dev-python/pycxx-6.2.0



1.21                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	15 Apr 2011 21:45:30 -0000	1.20
+++ ChangeLog	18 Apr 2011 18:27:39 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pysvn
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.20 2011/04/15 21:45:30 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.21 2011/04/18 18:27:39 tomka Exp $
+
+  18 Apr 2011; Thomas Kahle <tomka@gentoo.org> pysvn-1.7.5.ebuild:
+  x86 stable per bug 362769
 
   15 Apr 2011; Christoph Mende <angelos@gentoo.org> pysvn-1.7.5.ebuild:
   Stable on amd64 wrt bug #362769






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.5.ebuild ChangeLog
@ 2012-02-27 23:12 Sebastian Pipping (sping)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastian Pipping (sping) @ 2012-02-27 23:12 UTC (permalink / raw
  To: gentoo-commits

sping       12/02/27 23:12:47

  Modified:             pysvn-1.7.5.ebuild ChangeLog
  Log:
  dev-python/pysvn: Require SVN <1.7 (bug #395533)
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/pysvn/pysvn-1.7.5.ebuild

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

Index: pysvn-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pysvn-1.7.5.ebuild	18 Apr 2011 18:27:39 -0000	1.3
+++ pysvn-1.7.5.ebuild	27 Feb 2012 23:12:46 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# 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.5.ebuild,v 1.3 2011/04/18 18:27:39 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.5.ebuild,v 1.4 2012/02/27 23:12:46 sping Exp $
 
 EAPI="3"
 PYTHON_DEPEND="*"
@@ -19,7 +19,7 @@
 IUSE="doc examples"
 
 RDEPEND=">=dev-python/pycxx-6.2.0
-	dev-vcs/subversion"
+	<dev-vcs/subversion-1.7"  # (bug #395533)
 DEPEND="${RDEPEND}
 	dev-python/setuptools"
 



1.22                 dev-python/pysvn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	18 Apr 2011 18:27:39 -0000	1.21
+++ ChangeLog	27 Feb 2012 23:12:46 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pysvn
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.21 2011/04/18 18:27:39 tomka Exp $
+# 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 $
+
+  27 Feb 2012; Sebastian Pipping <sping@gentoo.org> pysvn-1.7.5.ebuild:
+  Adjust dependency to require subversion before 1.7 (bug #395533)
 
   18 Apr 2011; Thomas Kahle <tomka@gentoo.org> pysvn-1.7.5.ebuild:
   x86 stable per bug 362769






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

end of thread, other threads:[~2012-02-27 23:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-09 14:44 [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: pysvn-1.7.5.ebuild ChangeLog Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-15 21:45 Christoph Mende (angelos)
2011-04-18 18:27 Thomas Kahle (tomka)
2012-02-27 23:12 Sebastian Pipping (sping)

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