diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-12 23:59:52 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-12 23:59:52 +0000 |
commit | fe9bd84f061581f1696dee3d90d33a050f76ceb2 (patch) | |
tree | 231ec1f2c90606f98d3c9b6f5dcac597e34104ae | |
parent | Version bump. (diff) | |
download | historical-fe9bd84f061581f1696dee3d90d33a050f76ceb2.tar.gz historical-fe9bd84f061581f1696dee3d90d33a050f76ceb2.tar.bz2 historical-fe9bd84f061581f1696dee3d90d33a050f76ceb2.zip |
Update HOMEPAGE.
Package-Manager: portage-14819-svn/cvs/Linux x86_64
-rw-r--r-- | dev-python/pygments/pygments-1.1.1.ebuild | 4 | ||||
-rw-r--r-- | dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild | 23 |
2 files changed, 10 insertions, 17 deletions
diff --git a/dev-python/pygments/pygments-1.1.1.ebuild b/dev-python/pygments/pygments-1.1.1.ebuild index 326d0bca3121..bc3d3cc120e3 100644 --- a/dev-python/pygments/pygments-1.1.1.ebuild +++ b/dev-python/pygments/pygments-1.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.1.1.ebuild,v 1.9 2009/11/11 00:13:37 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.1.1.ebuild,v 1.10 2009/11/12 23:59:52 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -11,7 +11,7 @@ MY_PN="Pygments" MY_P="${MY_PN}-${PV}" DESCRIPTION="Pygments is a syntax highlighting package written in Python." -HOMEPAGE="http://pygments.org/" +HOMEPAGE="http://pygments.org/ http://pypi.python.org/pypi/Pygments" SRC_URI="http://pypi.python.org/packages/source/P/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild b/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild index 0b154eba9e3b..93abfb337389 100644 --- a/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild +++ b/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild,v 1.9 2009/11/11 01:52:49 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyopenssl/pyopenssl-0.9-r1.ebuild,v 1.10 2009/11/12 23:55:47 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -11,7 +11,7 @@ MY_P=${P/openssl/OpenSSL} S=${WORKDIR}/${MY_P} DESCRIPTION="Python interface to the OpenSSL library" -HOMEPAGE="http://pyopenssl.sourceforge.net/" +HOMEPAGE="http://pyopenssl.sourceforge.net/ http://pypi.python.org/pypi/pyOpenSSL" SRC_URI="mirror://sourceforge/pyopenssl/${MY_P}.tar.gz" LICENSE="LGPL-2.1" @@ -22,8 +22,9 @@ IUSE="doc" RDEPEND=">=dev-libs/openssl-0.9.6g" DEPEND="${RDEPEND} doc? ( >=dev-tex/latex2html-2002.2 )" +RESTRICT_PYTHON_ABIS="3.*" -RESTRICT_PYTHON_ABIS="3*" +PYTHON_MODNAME="OpenSSL" src_prepare() { epatch "${FILESDIR}/${P}-tests.patch" @@ -57,21 +58,13 @@ src_install() { distutils_src_install if use doc; then - dohtml "${S}"/doc/html/* - dodoc "${S}"/doc/pyOpenSSL.* + dohtml doc/html/* + dodoc doc/pyOpenSSL.* fi # Install examples docinto examples - dodoc "${S}"/examples/* + dodoc examples/* docinto examples/simple - dodoc "${S}"/examples/simple/* -} - -pkg_postinst() { - python_mod_optimize OpenSSL -} - -pkg_postrm() { - python_mod_cleanup OpenSSL + dodoc examples/simple/* } |