diff options
author | Mike Gilbert <floppym@gentoo.org> | 2015-07-09 02:26:10 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2015-07-09 02:26:10 +0000 |
commit | 7c8f229fece57d502f1628d76dd7f5571c5133fa (patch) | |
tree | ea246936c8bb09e678cf8430757dee298f7c0dee | |
parent | Mask dev-python/python-systemd. (diff) | |
download | gentoo-2-7c8f229fece57d502f1628d76dd7f5571c5133fa.tar.gz gentoo-2-7c8f229fece57d502f1628d76dd7f5571c5133fa.tar.bz2 gentoo-2-7c8f229fece57d502f1628d76dd7f5571c5133fa.zip |
Split-out python modules from sys-apps/systemd.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
-rw-r--r-- | dev-python/python-systemd/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/python-systemd/Manifest | 3 | ||||
-rw-r--r-- | dev-python/python-systemd/metadata.xml | 7 | ||||
-rw-r--r-- | dev-python/python-systemd/python-systemd-230.ebuild | 26 |
4 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/python-systemd/ChangeLog b/dev-python/python-systemd/ChangeLog new file mode 100644 index 000000000000..c26602971a4c --- /dev/null +++ b/dev-python/python-systemd/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/python-systemd +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-systemd/ChangeLog,v 1.1 2015/07/09 02:26:10 floppym Exp $ + +*python-systemd-230 (09 Jul 2015) + + 09 Jul 2015; Mike Gilbert <floppym@gentoo.org> +metadata.xml, + +python-systemd-230.ebuild: + Split-out python modules from sys-apps/systemd. diff --git a/dev-python/python-systemd/Manifest b/dev-python/python-systemd/Manifest new file mode 100644 index 000000000000..ea1c615102e0 --- /dev/null +++ b/dev-python/python-systemd/Manifest @@ -0,0 +1,3 @@ +DIST python-systemd-230.tar.gz 39329 SHA256 656a83ff695f5de7d63411a86ea38601ad5a918595eebd0817d7b8e68642c64d SHA512 3c26c59b9005a45c3aeea8a6838ece9b5aa27dd7394ebe75319c1536b52462a847f18a79fdc8cf3bf6df9a70af63c84d5ff66a9587519dd9a006cc3df4966ce8 WHIRLPOOL 0de7ff6919bdf1c6c9cdafd71944801396157281fae1583bb060da4cf800369f97bb0c9f484f81635ed8b2e170db2bbbecf59adac0470a910167333f93c607e6 +EBUILD python-systemd-230.ebuild 618 SHA256 db371a4f2a5ff63c9a61205b40db390fd158d4925278c32561dbfb097dedcdf6 SHA512 c4553044e9058f4132ac1d350501453aa7b747c11469163f8e8bab627e7c3db742070932e499015b59563ba01af1fcb6d9b2204f416227f537fbfecb2d949363 WHIRLPOOL 3feddb9fdae8fd1ff614562c73e2b3652877377ef6ace6511bcf0005b16e083b652c875a857c8abe144cdda79a5020d96448254678ffa86aa187adfd12ebdc31 +MISC metadata.xml 204 SHA256 6daa72e19b0320f853a5564fd54b34605219134f66582912fb25e7e7eddc0b70 SHA512 1dba4e98ca3776491c76eb1f6024cff29569b9907ea674fbe7aa78a7a1b4f594adcd3954d3fd686401098713a8155c6908e36c50b1958510cf013eac79e51698 WHIRLPOOL bcbfbc43c26c1c1d6a07cb9046c39de18c8bc1b6e62ff96ed7d83ba13361fd95197034a8ca61eb9bc69db95e171173a8ce4d7190be560ee851ca1d06eaa917ee diff --git a/dev-python/python-systemd/metadata.xml b/dev-python/python-systemd/metadata.xml new file mode 100644 index 000000000000..e41300d04d6d --- /dev/null +++ b/dev-python/python-systemd/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>systemd@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/dev-python/python-systemd/python-systemd-230.ebuild b/dev-python/python-systemd/python-systemd-230.ebuild new file mode 100644 index 000000000000..bd3fad1d7197 --- /dev/null +++ b/dev-python/python-systemd/python-systemd-230.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-systemd/python-systemd-230.ebuild,v 1.1 2015/07/09 02:26:10 floppym Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Python module for native access to the systemd facilities" +HOMEPAGE="https://github.com/systemd/python-systemd" +SRC_URI="https://github.com/systemd/python-systemd/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-apps/systemd" +RDEPEND="${DEPEND} + !sys-apps/systemd[python(-)]" + +src_compile() { + emake systemd/id128-constants.h + distutils-r1_src_compile +} |