diff options
-rw-r--r-- | dev-python/pymetar/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/pymetar/Manifest | 4 | ||||
-rw-r--r-- | dev-python/pymetar/files/digest-pymetar-0.8 | 1 | ||||
-rw-r--r-- | dev-python/pymetar/metadata.xml | 11 | ||||
-rw-r--r-- | dev-python/pymetar/pymetar-0.8.ebuild | 20 |
5 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/pymetar/ChangeLog b/dev-python/pymetar/ChangeLog new file mode 100644 index 000000000000..acfd8ebf2496 --- /dev/null +++ b/dev-python/pymetar/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/pymetar +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pymetar/ChangeLog,v 1.1 2004/07/09 09:44:19 lucass Exp $ + +*pymetar-0.8 (09 Jul 2004) + + 09 Jul 2004; Lukasz Strzygowski <lucass@gentoo.org> +metadata.xml, + +pymetar-0.8.ebuild: + Initial import. Thanks for submission to Tobias Klausmann. + diff --git a/dev-python/pymetar/Manifest b/dev-python/pymetar/Manifest new file mode 100644 index 000000000000..a4d52e1e914b --- /dev/null +++ b/dev-python/pymetar/Manifest @@ -0,0 +1,4 @@ +MD5 279a4097254cdad30aba89faacc34e00 pymetar-0.8.ebuild 655 +MD5 3bfe9d3d3dec8eab7cc3c3092977fdcf metadata.xml 455 +MD5 92d13ae4a04bacd65f50d679604bd377 ChangeLog 391 +MD5 e9de4b7454094ffc8836c1a4f12990a9 files/digest-pymetar-0.8 62 diff --git a/dev-python/pymetar/files/digest-pymetar-0.8 b/dev-python/pymetar/files/digest-pymetar-0.8 new file mode 100644 index 000000000000..e3c81e08d8b6 --- /dev/null +++ b/dev-python/pymetar/files/digest-pymetar-0.8 @@ -0,0 +1 @@ +MD5 228eedaddc7821f2ed086d91f9d56b68 pymetar-0.8.tar.gz 19548 diff --git a/dev-python/pymetar/metadata.xml b/dev-python/pymetar/metadata.xml new file mode 100644 index 000000000000..48f4620a5cdc --- /dev/null +++ b/dev-python/pymetar/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<longdescription> +This library downloads the weather report for a given station +ID (get yours from http://www.nws.noaa.gov/tg/siteloc.shtml), +decodes it and provides easy access to all the data found in the +report. Documentation and a small example app are inside the tarball. +</longdescription> +</pkgmetadata> diff --git a/dev-python/pymetar/pymetar-0.8.ebuild b/dev-python/pymetar/pymetar-0.8.ebuild new file mode 100644 index 000000000000..b69499513926 --- /dev/null +++ b/dev-python/pymetar/pymetar-0.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pymetar/pymetar-0.8.ebuild,v 1.1 2004/07/09 09:44:19 lucass Exp $ + +inherit distutils + +HOMEPAGE="http://www.schwarzvogel.de/software-pymetar.shtml" +DESCRIPTION="PyMETAR downloads the weather report for a given station ID, decodes it and the provides easy access to all the data found in the report." +SRC_URI="http://www.schwarzvogel.de/pkgs/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/python" + +src_install(){ + distutils_src_install + dodoc librarydoc.txt THANKS TODO +} + |