diff options
author | 2016-10-26 11:13:42 +0200 | |
---|---|---|
committer | 2016-10-26 11:13:42 +0200 | |
commit | 55fa79653549050ad4809e1b9571f99b0f5390a6 (patch) | |
tree | 895584b5b8f33880d56fa135fa362ff140d3437f /dev-python/pyparted | |
parent | net-analyzer/tcpdump: Version bump. (diff) | |
download | gentoo-55fa79653549050ad4809e1b9571f99b0f5390a6.tar.gz gentoo-55fa79653549050ad4809e1b9571f99b0f5390a6.tar.bz2 gentoo-55fa79653549050ad4809e1b9571f99b0f5390a6.zip |
dev-python/pyparted: Version bump.
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/pyparted')
-rw-r--r-- | dev-python/pyparted/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyparted/pyparted-3.10.7.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/pyparted/Manifest b/dev-python/pyparted/Manifest index 2fdb9ead7d07..3a6bc0a6c231 100644 --- a/dev-python/pyparted/Manifest +++ b/dev-python/pyparted/Manifest @@ -1,3 +1,4 @@ DIST pyparted-3.10.3.tar.gz 96927 SHA256 ba385beff0bd31e64886ac1ed699306c49474dcf5dc33f96f867d208f8d7e992 SHA512 238da222bb76e6838861f4fdff63f52823d0c7ace068fd4f40d5ccf5de5b7c26fadf52add689ec143755d568c52788b79262ba1090639560c3b54daa67e6507f WHIRLPOOL 9fab91096f345507fc3528c960ae8e151975abd36e8e76f5f55b48aabee6c23ac6e16c7b471b1b01a5977c7157f32b3726b1ce0fbb0d221ba0a07a0df9f19c13 DIST pyparted-3.10.4.tar.gz 99746 SHA256 1121d6457dac0efa64cd1efe326ba2147c25c27e2ade3e1043cdbd188ab828a1 SHA512 8af3381b548f4f08eadfec2607b9b355d503fefc3057fd76c1bbe63d17f885a37604594593a1b2160c46ee608e4dcf217c7b0e2aee33d5ed4eeb9283f5bee030 WHIRLPOOL a8341ad50f5ed00623f291c146fae98069c64bb05928f3c5d37ad186dfe1b3c41a6dd6df543506b23ff3747d754ba4c27d180032d40d454e44527a9f72f05610 DIST pyparted-3.10.5.tar.gz 99638 SHA256 8cbaf024fbbc73cdceab2eac0937035052da48295970fe9eaa84b19d8e353e19 SHA512 c3cdc370d9a86278d47b97ed0b54d225fc6e92285aabda3ed529c0df67f4f45835016c7eea7bc02981f9273961948d5d7096f8f35c1f8eafde67ad241d9ec9fa WHIRLPOOL d79d8fcbaf04ae3f1a61b27bace5fd101fd70b271d11ff45be9dc3aebad6c7f5ad2e80e1694a68ebb0ad3a9633d3b8161ba7276f7f60a8696e365451989c63f3 +DIST pyparted-3.10.7.tar.gz 99879 SHA256 5914e3a60437fe3e3758a9e86ee4a539dfa46cfe18e3df386a5cf1f75a963431 SHA512 c57fed2a8d04511b12891fd59b6dd6840439aada7e5ebeab14a56e6e4f201c249046ee87d9d25af1b3f02960994efb0a2973f25928a9df85d48bbd1bc196ab07 WHIRLPOOL 9ffa320c496e511d4735209dbb7e9c1b6328e11513839a1299f1b5c3d32c7ed225d081db43482ee57774a13de862d3fef24fa80dba34a117386b8f63dd07ba74 diff --git a/dev-python/pyparted/pyparted-3.10.7.ebuild b/dev-python/pyparted/pyparted-3.10.7.ebuild new file mode 100644 index 000000000000..9176e67930e4 --- /dev/null +++ b/dev-python/pyparted/pyparted-3.10.7.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5}} ) +inherit distutils-r1 + +DESCRIPTION="Python bindings for sys-block/parted" +HOMEPAGE="https://github.com/rhinstaller/pyparted/" +SRC_URI="${HOMEPAGE}archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +REQUIRED_USE=" + test? ( python_targets_python2_7 ) +" + +RDEPEND=" + >=sys-block/parted-3.1 + dev-python/decorator[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( dev-python/pychecker ) + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/${PN}-3.10.3-greater.patch +) + +python_test() { + if [[ ${EPYTHON} = python2* ]]; then + emake test + else + einfo "Skipping ${EPYTHON}" + fi +} |