From: Amadeusz Żołnowski Date: Tue, 20 Dec 2011 15:36:56 +0000 (+0000) Subject: dev-python/platinfo: Initial ebuild. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=6e39b87fefd0c5a591118a77a9a99b257c34519e;p=gentoo.git dev-python/platinfo: Initial ebuild. Package-Manager: portage-2.1.10.41/cvs/Linux x86_64 --- diff --git a/dev-python/platinfo/ChangeLog b/dev-python/platinfo/ChangeLog new file mode 100644 index 000000000000..7d04732966d2 --- /dev/null +++ b/dev-python/platinfo/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/platinfo +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/platinfo/ChangeLog,v 1.1 2011/12/20 15:36:56 aidecoe Exp $ + +*platinfo-0.15.0 (20 Dec 2011) + + 20 Dec 2011; Amadeusz Å»ołnowski + +platinfo-0.15.0.ebuild, +metadata.xml: + Initial ebuild. + diff --git a/dev-python/platinfo/Manifest b/dev-python/platinfo/Manifest new file mode 100644 index 000000000000..ca41e1a0b61e --- /dev/null +++ b/dev-python/platinfo/Manifest @@ -0,0 +1,18 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +DIST platinfo-0.15.0.zip 31022 RMD160 3d50b3a64babad33fded3cd74f435ae197ce1827 SHA1 b0e346b6f3f2567c1cfd80943ee3344a92a48dd0 SHA256 57159fddb7e338576f34cd644ffe7793c61d11a3aa5ecaa3e4f5e46ebed46757 +EBUILD platinfo-0.15.0.ebuild 504 RMD160 a63b03c9df94a3b432e94b47b346b8d15744b9f9 SHA1 8a450717caa1c1f83f05b6410e5b603e65190b59 SHA256 faa7d1d593dc6873556f5d9989f16c484ed45b08870e237ef09a5713fdd6d94c +MISC ChangeLog 362 RMD160 e45ae1eb4cf140e39e9aba5d2a6cc2eef27da746 SHA1 0390020109826ef8b69613acec01fe28c870bbb8 SHA256 d698fa09248c7751e699e9109913dcf0d06d9d16212e5c072bc1657519e0282a +MISC metadata.xml 915 RMD160 de25cb9e386f4619da61043def651be6086380f1 SHA1 166fece46bb21f249f6967420efca391d2990520 SHA256 5627571424ff0eaef8d4d35050dbbdaf59919d882759b090a9936737d3c50c22 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.18 (GNU/Linux) + +iQEcBAEBAgAGBQJO8KueAAoJEPATRTHh2/q1U/UH/iyxI8C8GNo13q4JOrOSmIUs +e0jkLIfW42VnPeeWllgXKjwn5KTW52+GuvefjXTC6W1YokMnRl9E7FVMwU5420xW +eBrYQLNh4nNnQWZu1iU8dULmgKY3Hq2xbxVEX9ZpMqEx1xftafrGcpjwQsaqFbyu +D4IaSoKn5pOLhCykvcg/D2F1LGRVNgXyk638TOMegs6Bqk2Q3sEOJi24Wg1SqZsG +N8NvthUUEKxxbum4kdnoFBp5RQ+0ZP/sT8TFrSJxfBrGHI5jebhYbNDIoktPG7Is +f6N+mXm3/nbFPPXxgWz46Qu/UdONDRnOdifXCEtN53VDlVpS0PC2Txiptq2kTOI= +=CLFa +-----END PGP SIGNATURE----- diff --git a/dev-python/platinfo/metadata.xml b/dev-python/platinfo/metadata.xml new file mode 100644 index 000000000000..4db3a662b0f4 --- /dev/null +++ b/dev-python/platinfo/metadata.xml @@ -0,0 +1,25 @@ + + + + python + + aidecoe@gentoo.org + Amadeusz Å»ołnowski + + + This is a small Python module that determines and returns standardized + names for platforms, where the "standard" is Trent Mick's reasoning :) + from experience building ActivePython on a fairly large number of + platforms. + + The driving goal is to provide platform names that are: + - relatively short + - readable (as much as possible making matching the given name to an + actually machine self-explanatory) + - be capable enough to produce all names needed to distinguish all + platform-specific application builds + - generally safe for usage in filenames + - not ugly (e.g. "MSWin32" is ugly) + + + diff --git a/dev-python/platinfo/platinfo-0.15.0.ebuild b/dev-python/platinfo/platinfo-0.15.0.ebuild new file mode 100644 index 000000000000..02049f7dacf9 --- /dev/null +++ b/dev-python/platinfo/platinfo-0.15.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/platinfo/platinfo-0.15.0.ebuild,v 1.1 2011/12/20 15:36:56 aidecoe Exp $ + +EAPI=4 + +inherit distutils + +DESCRIPTION="Determines and returns consistent names for platforms" +HOMEPAGE="http://code.google.com/p/platinfo/" +SRC_URI="http://platinfo.googlecode.com/files/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}"