From: W. Trevor King Date: Wed, 8 Jun 2011 11:54:43 +0000 (-0400) Subject: Add py2app and dependencies using my g-pypi tip. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a7b4df023a5690dc54e881019deacdc2a48018c3;p=wtk-prefix-overlay.git Add py2app and dependencies using my g-pypi tip. --- diff --git a/dev-python/altgraph/Manifest b/dev-python/altgraph/Manifest new file mode 100644 index 0000000..400b8db --- /dev/null +++ b/dev-python/altgraph/Manifest @@ -0,0 +1,2 @@ +DIST altgraph-0.9.tar.gz 357117 RMD160 48263978c5634d970a58a7372a81bed55ecaefd9 SHA1 94a434c1af98c8637969d3942d4f04bb633c382c SHA256 417bad62eaa554d8671b2268e0371a7853e0cd1054e0c6f613ada09e447c94d2 +EBUILD altgraph-0.9.ebuild 687 RMD160 02469e8c67b69e703eed633e2f38cb9b81f18d53 SHA1 1d5e467e0fab900e09b8378d8abeb13078a66dea SHA256 321cdcb6ff23807387f797933c0cd36fdc5a71c3a4b99055bdc779c385d524d7 diff --git a/dev-python/altgraph/altgraph-0.9.ebuild b/dev-python/altgraph/altgraph-0.9.ebuild new file mode 100644 index 0000000..e165395 --- /dev/null +++ b/dev-python/altgraph/altgraph-0.9.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Python graph (network) package" +HOMEPAGE="http://packages.python.org/altgraph" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc" +DEPEND="dev-python/setuptools" + +src_install() { + distutils_src_install + if use doc; then + dodoc "${S}"/doc/* + fi +} diff --git a/dev-python/macholib/Manifest b/dev-python/macholib/Manifest new file mode 100644 index 0000000..0fa550b --- /dev/null +++ b/dev-python/macholib/Manifest @@ -0,0 +1,2 @@ +DIST macholib-1.4.1.tar.gz 374468 RMD160 4a44823e58d2084d919cf70f4e0d2fda560aebd4 SHA1 18024efabd97a24f1b2bec0c2fece7e8a0170a03 SHA256 c40d26f275e8af0f023f4adbc48f655bf54f3ea60c5a91094e5247b0d550c54a +EBUILD macholib-1.4.1.ebuild 700 RMD160 843995d678d680613c4633ad4a065aff92472fc2 SHA1 540b32ce079bd5825b87adfbd24c2ca4246d937a SHA256 5165dbc89a20ef14b944be5b71bc9fbdcbfb42dbe1ebdebac6d17a12739c4e67 diff --git a/dev-python/macholib/macholib-1.4.1.ebuild b/dev-python/macholib/macholib-1.4.1.ebuild new file mode 100644 index 0000000..dfb933d --- /dev/null +++ b/dev-python/macholib/macholib-1.4.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Mach-O header analysis and editing" +HOMEPAGE="http://bitbucket.org/ronaldoussoren/macholib" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc" +DEPEND="dev-python/setuptools" +RDEPEND=">=dev-python/altgraph-0.9" + +src_install() { + distutils_src_install + if use doc; then + dodoc "${S}"/doc/* + fi + +} diff --git a/dev-python/modulegraph/Manifest b/dev-python/modulegraph/Manifest new file mode 100644 index 0000000..3916eab --- /dev/null +++ b/dev-python/modulegraph/Manifest @@ -0,0 +1,2 @@ +DIST modulegraph-0.9.tar.gz 57580 RMD160 5d3e18d473b2542d8b9757cd0614e4d58e782a22 SHA1 07d30f785d17b11a540537e910b887bf8589a58e SHA256 af34fd924ebbbb4f74b634fa1e50f2e5fbb6796c59a920f43455c0145c97bfcb +EBUILD modulegraph-0.9.ebuild 713 RMD160 1e3594c0fc54c15936abdac479cdeb531f9e3f11 SHA1 b95b0dc99ae8e913576a2520faeeba9983ba63dc SHA256 714654c13e0c54bb633b080432b4462b1520e7546daa0d164cbe8ea99a9dd1b6 diff --git a/dev-python/modulegraph/modulegraph-0.9.ebuild b/dev-python/modulegraph/modulegraph-0.9.ebuild new file mode 100644 index 0000000..77bc83b --- /dev/null +++ b/dev-python/modulegraph/modulegraph-0.9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Python module dependency analysis tool" +HOMEPAGE="http://bitbucket.org/ronaldoussoren/modulegraph%22" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc" +DEPEND="dev-python/setuptools" +RDEPEND=">=dev-python/altgraph-0.9" + +src_install() { + distutils_src_install + if use doc; then + dodoc "${S}"/doc/* + fi +} diff --git a/dev-python/py2app/ChangeLog b/dev-python/py2app/ChangeLog new file mode 100644 index 0000000..c14b683 --- /dev/null +++ b/dev-python/py2app/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/py2app +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 05 Jun 2011; W. Trevor King py2app-9999.ebuild: + Version bump to Mercurial source. + + 10 May 2008 Arne Babenhauserheide py2app-0.3.6.ebuild + Initial ebuild submitted with bug #221261 diff --git a/dev-python/py2app/Manifest b/dev-python/py2app/Manifest new file mode 100644 index 0000000..8929422 --- /dev/null +++ b/dev-python/py2app/Manifest @@ -0,0 +1,2 @@ +DIST py2app-0.6.3.tar.gz 5374634 RMD160 601e08e0292f2c115f55e85619fb2d979255b1aa SHA1 cb7daad349cdd491d2021cb05b96be471628acf4 SHA256 eebd18ed35717c15430860f7e93674415fc753fa12b3727451b4c6c693950043 +EBUILD py2app-0.6.3.ebuild 713 RMD160 39784231ccb18d657a962bf33cc917d3ee5abe58 SHA1 2336ceab02a31679abebe0795634f17e5d754558 SHA256 8689d836529ffa9ece069005ba8bf768495cd9f880fb3873163e4a9e16e78dcf diff --git a/dev-python/py2app/metadata.xml b/dev-python/py2app/metadata.xml new file mode 100644 index 0000000..301d220 --- /dev/null +++ b/dev-python/py2app/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/py2app/py2app-0.6.3.ebuild b/dev-python/py2app/py2app-0.6.3.ebuild new file mode 100644 index 0000000..e439a3e --- /dev/null +++ b/dev-python/py2app/py2app-0.6.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Create standalone Mac OS X applications with Python" +HOMEPAGE="http://bitbucket.org/ronaldoussoren/${PN}" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~x86" +SLOT="0" +IUSE="doc examples" +DEPEND="dev-python/setuptools" +RDEPEND=">=dev-python/altgraph-0.9 + >=dev-python/modulegraph-0.9 + >=dev-python/macholib-1.4" + +src_install() { + distutils_src_install + if use doc; then + dodoc "${S}"/doc/* + fi + if use examples; then + insinto /usr/share/doc/"${PF}"/examples + doins -r "${S}"/examples/* + fi +}