From 2c272f0c3c2629aec18b3aff05e104e50d1c14f4 Mon Sep 17 00:00:00 2001 From: "Markus Rennings (mren)" Date: Wed, 15 Oct 2008 17:30:19 +0000 Subject: dev-python/pysvn: Version bump svn path=/sunrise/; revision=7227 --- dev-python/pysvn/ChangeLog | 4 +++ dev-python/pysvn/Manifest | 6 ++-- dev-python/pysvn/pysvn-1.6.1.ebuild | 60 ------------------------------------- dev-python/pysvn/pysvn-1.6.2.ebuild | 60 +++++++++++++++++++++++++++++++++++++ 4 files changed, 67 insertions(+), 63 deletions(-) delete mode 100644 dev-python/pysvn/pysvn-1.6.1.ebuild create mode 100644 dev-python/pysvn/pysvn-1.6.2.ebuild (limited to 'dev-python') diff --git a/dev-python/pysvn/ChangeLog b/dev-python/pysvn/ChangeLog index 2b42ee7d1..c25959329 100644 --- a/dev-python/pysvn/ChangeLog +++ b/dev-python/pysvn/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Oct 2008; Markus Rennings (mren) -pysvn-1.6.1.ebuild, + +pysvn-1.6.2.ebuild: + Version bump + 16 Sep 2008; Markus Rennings (mren) -pysvn-1.6.0.ebuild, +pysvn-1.6.1.ebuild: version bump diff --git a/dev-python/pysvn/Manifest b/dev-python/pysvn/Manifest index 5a6edebb7..436d91221 100644 --- a/dev-python/pysvn/Manifest +++ b/dev-python/pysvn/Manifest @@ -1,4 +1,4 @@ -DIST pysvn-1.6.1.tar.gz 216419 RMD160 45b1cb91ccfb4882aad6c3ed9ca13da8e630a181 SHA1 62f0e2ad4c6f4f50f7d3c3f04de22759c924783c SHA256 86cb8d2f6076458aa157bf6e10fb5802f182629432e7c93687842c737e9f170d -EBUILD pysvn-1.6.1.ebuild 1394 RMD160 cc87e6ea08de2cee0b5857a45f724b89afa404eb SHA1 9e3ae9e50d058479b17aab05d6283e6561fcc639 SHA256 f4427734e8f9da15b2adeb6f0729122012497e9b28c03eb7a236339d91f489d7 -MISC ChangeLog 1652 RMD160 9f1ee62614053fc932c44fb6c0aca9586312c520 SHA1 6eafc21fc4a072b7db0fa35197c4f63d3784eebb SHA256 0e24288a0a8794ba0d201c4cc427061e258a99d1024b1be9ed00c4568c6018eb +DIST pysvn-1.6.2.tar.gz 220638 RMD160 9f2268a2e8be763bffae70ba8966575c387134b8 SHA1 8e796ae1ab819b9d995974e97678395050cc3d24 SHA256 140c28fe9171cb231fb07c78066ccc74e316e20a63e3f1d5a7cdd10da3b7847e +EBUILD pysvn-1.6.2.ebuild 1394 RMD160 cc87e6ea08de2cee0b5857a45f724b89afa404eb SHA1 9e3ae9e50d058479b17aab05d6283e6561fcc639 SHA256 f4427734e8f9da15b2adeb6f0729122012497e9b28c03eb7a236339d91f489d7 +MISC ChangeLog 1765 RMD160 e7b2e76ce87991e74530f39c8d3315636fee744d SHA1 f12185b98c6c3ef0bb90f38a0cab8270e28c3995 SHA256 97bf0ab1289757163bdfc59f3a1a85fb6e8eb12f66755b396f39b8c7e119ce7c MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/dev-python/pysvn/pysvn-1.6.1.ebuild b/dev-python/pysvn/pysvn-1.6.1.ebuild deleted file mode 100644 index 1dfa865a9..000000000 --- a/dev-python/pysvn/pysvn-1.6.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils python toolchain-funcs multilib - -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 ~ppc ~x86" -IUSE="examples" - -DEPEND=">=dev-util/subversion-1.2.0" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}/Source" - -src_unpack() { - unpack ${A} - cd "${S}" - - python setup.py configure || die "configure failed" - - # we want our CFLAGS as well - 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):" \ - -i Makefile \ - || die "sed failed in Makefile" -} - -src_install() { - python_version - - cd pysvn - exeinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} - doexe _pysvn*.so - insinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} - doins __init__.py - - cd "${S}/../Docs" - dohtml *.html *.js - - if use examples; then - insinto "/usr/share/doc/${PF}/Examples" - doins -r "${S}"/../Examples/* - fi -} - -pkg_postinst() { - python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" -} - -pkg_postrm() { - python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" -} diff --git a/dev-python/pysvn/pysvn-1.6.2.ebuild b/dev-python/pysvn/pysvn-1.6.2.ebuild new file mode 100644 index 000000000..1dfa865a9 --- /dev/null +++ b/dev-python/pysvn/pysvn-1.6.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils python toolchain-funcs multilib + +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 ~ppc ~x86" +IUSE="examples" + +DEPEND=">=dev-util/subversion-1.2.0" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}/Source" + +src_unpack() { + unpack ${A} + cd "${S}" + + python setup.py configure || die "configure failed" + + # we want our CFLAGS as well + 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):" \ + -i Makefile \ + || die "sed failed in Makefile" +} + +src_install() { + python_version + + cd pysvn + exeinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} + doexe _pysvn*.so + insinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} + doins __init__.py + + cd "${S}/../Docs" + dohtml *.html *.js + + if use examples; then + insinto "/usr/share/doc/${PF}/Examples" + doins -r "${S}"/../Examples/* + fi +} + +pkg_postinst() { + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" +} + +pkg_postrm() { + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" +} -- cgit v1.2.3-65-gdbad