diff options
author | 2009-10-25 18:23:12 +0000 | |
---|---|---|
committer | 2009-10-25 18:23:12 +0000 | |
commit | baa1ae075ccc2a51f11c0f1fed78147565a4022d (patch) | |
tree | 8f3388999b79199f0acbce873b01d4a9ccf4c055 /net-zope/zope-security | |
parent | Initial addition. (diff) | |
download | gentoo-2-baa1ae075ccc2a51f11c0f1fed78147565a4022d.tar.gz gentoo-2-baa1ae075ccc2a51f11c0f1fed78147565a4022d.tar.bz2 gentoo-2-baa1ae075ccc2a51f11c0f1fed78147565a4022d.zip |
Initial addition.
(Portage version: 14724-svn/cvs/Linux x86_64)
Diffstat (limited to 'net-zope/zope-security')
-rw-r--r-- | net-zope/zope-security/ChangeLog | 10 | ||||
-rw-r--r-- | net-zope/zope-security/metadata.xml | 6 | ||||
-rw-r--r-- | net-zope/zope-security/zope-security-3.7.1.ebuild | 46 |
3 files changed, 62 insertions, 0 deletions
diff --git a/net-zope/zope-security/ChangeLog b/net-zope/zope-security/ChangeLog new file mode 100644 index 000000000000..d94f7ff66344 --- /dev/null +++ b/net-zope/zope-security/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-zope/zope-security +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-security/ChangeLog,v 1.1 2009/10/25 18:23:12 arfrever Exp $ + +*zope-security-3.7.1 (25 Oct 2009) + + 25 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +zope-security-3.7.1.ebuild, +metadata.xml: + Initial addition. Ebuild written by me. + diff --git a/net-zope/zope-security/metadata.xml b/net-zope/zope-security/metadata.xml new file mode 100644 index 000000000000..ecc751f37510 --- /dev/null +++ b/net-zope/zope-security/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>net-zope</herd> + <herd>python</herd> +</pkgmetadata> diff --git a/net-zope/zope-security/zope-security-3.7.1.ebuild b/net-zope/zope-security/zope-security-3.7.1.ebuild new file mode 100644 index 000000000000..5846a292166f --- /dev/null +++ b/net-zope/zope-security/zope-security-3.7.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-security/zope-security-3.7.1.ebuild,v 1.1 2009/10/25 18:23:12 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="${PN/-/.}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Zope3 Security Framework" +HOMEPAGE="http://pypi.python.org/pypi/zope.security" +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-python/pytz + dev-python/restrictedpython + net-zope/zope-component + net-zope/zope-configuration + net-zope/zope-exceptions + net-zope/zope-i18nmessageid + net-zope/zope-interface + net-zope/zope-location + net-zope/zope-proxy + net-zope/zope-schema" +DEPEND="${RDEPEND} + dev-python/setuptools" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="${PN/-//}" +DOCS="CHANGES.txt README.txt" + +src_install() { + distutils_src_install + + # Don't install C sources. + find "${D}" -name "*.c" | xargs rm -f +} |