Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/distro/
Date: Thu, 16 Feb 2017 16:54:53
Message-Id: 1487264065.044a63e1562dd413a4b1d438e769057a6630b7e8.bicatali@gentoo
1 commit: 044a63e1562dd413a4b1d438e769057a6630b7e8
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 18:35:48 2017 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 16 16:54:25 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=044a63e1
7
8 dev-python/distro: initial import
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/distro/Manifest | 1 +
13 dev-python/distro/distro-1.0.2.ebuild | 21 +++++++++++++++++++++
14 dev-python/distro/metadata.xml | 20 ++++++++++++++++++++
15 3 files changed, 42 insertions(+)
16
17 diff --git a/dev-python/distro/Manifest b/dev-python/distro/Manifest
18 new file mode 100644
19 index 0000000000..c7fac57301
20 --- /dev/null
21 +++ b/dev-python/distro/Manifest
22 @@ -0,0 +1 @@
23 +DIST distro-1.0.2.tar.gz 27787 SHA256 77ec1f3695eed4dcda4e0e89d04dfcd91a20d3080d34f9294c5da47235382745 SHA512 df29ca40c1e7dd6e370396ceca684f5ce41fe50450faea104132d0e5dee05a91a525db715835c7efbca020e9c2e063bde9a6da07967eda6bfa8180856e175abb WHIRLPOOL 064c3ad4e0b82249a70dcb45d1b70ed3122209378fc83564060eeb815731b7454fa5952f794a4438a6f24b7cabfe6576c629598bc8f6f93ea2867a0f771856ee
24
25 diff --git a/dev-python/distro/distro-1.0.2.ebuild b/dev-python/distro/distro-1.0.2.ebuild
26 new file mode 100644
27 index 0000000000..96faecd113
28 --- /dev/null
29 +++ b/dev-python/distro/distro-1.0.2.ebuild
30 @@ -0,0 +1,21 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Reliable machine-readable Linux distribution information for Python"
42 +HOMEPAGE="http://distro.readthedocs.io/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="Apache-2.0"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +DEPEND=""
51 +RDEPEND=""
52
53 diff --git a/dev-python/distro/metadata.xml b/dev-python/distro/metadata.xml
54 new file mode 100644
55 index 0000000000..ea74de39e0
56 --- /dev/null
57 +++ b/dev-python/distro/metadata.xml
58 @@ -0,0 +1,20 @@
59 +<?xml version="1.0" encoding="UTF-8"?>
60 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
61 +<pkgmetadata>
62 + <maintainer type="project">
63 + <email>python@g.o</email>
64 + <name>Python</name>
65 + </maintainer>
66 + <longdescription>
67 + distro (for: Linux Distribution) provides information about the
68 + Linux distribution it runs on, such as a reliable machine-readable
69 + ID, or version information. It is a renewed alternative
70 + implementation for Python's original platform.linux_distribution
71 + function, but it also provides much more functionality which isn't
72 + necessarily Python bound like a command-line interface.
73 + </longdescription>
74 + <upstream>
75 + <remote-id type="pypi">distro</remote-id>
76 + <remote-id type="github">nir0s/distro</remote-id>
77 + </upstream>
78 +</pkgmetadata>