Gentoo Archives: gentoo-commits

From: Steven Davies <gentoo-guru@××××××××.uk>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/python-btrfs/
Date: Sun, 16 May 2021 18:38:27
Message-Id: 1621190291.cda326bc4e2c42f159312ec9347ae5678f23cfc0.gentoo-guru@gentoo
1 commit: cda326bc4e2c42f159312ec9347ae5678f23cfc0
2 Author: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
3 AuthorDate: Sun May 16 18:38:11 2021 +0000
4 Commit: Steven Davies <gentoo-guru <AT> steev <DOT> me <DOT> uk>
5 CommitDate: Sun May 16 18:38:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cda326bc
7
8 sys-fs/python-btrfs: Version bump
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Steven Davies <gentoo-guru <AT> steev.me.uk>
12
13 sys-fs/python-btrfs/Manifest | 1 +
14 sys-fs/python-btrfs/python-btrfs-13.ebuild | 28 ++++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/sys-fs/python-btrfs/Manifest b/sys-fs/python-btrfs/Manifest
18 index c97445d33..6ef6e6aeb 100644
19 --- a/sys-fs/python-btrfs/Manifest
20 +++ b/sys-fs/python-btrfs/Manifest
21 @@ -1 +1,2 @@
22 DIST python-btrfs-12.tar.gz 92369 BLAKE2B bc899900c4d436ca4ad940247ac6edc9022f09f604c4c9b78288065e8950a9ba86147d1d9992e2410edb9907a2e7748467b1ae92d33b21c6e7ab9149c84431e3 SHA512 93d7ac4b0c8cc62e5a89b0ffd269695c2c52a4111385ec00d2cb467b6d1c35e59a450c128ca4ddedf91955f51962092ec2e2431ce3d9243d25beeaa2d2ec38ac
23 +DIST python-btrfs-13.tar.gz 93110 BLAKE2B 286e5d1d9aa66ce5072f2fe144b2da6bbcde65dd90eb21efe1eb69b9aaa3230d76e8b8baffcfd269ce5d53e1004b5fc6c5546125bc1a5c26413ba8abc66f068a SHA512 5117b9c6542fe191eccbed56a15bb5d8eadc2d3c0edd986a3e1a33d0b63f58c3db5e7f6d234c43a83d1cc74eea3e106c5882a92926c3087601edc36e6672721f
24
25 diff --git a/sys-fs/python-btrfs/python-btrfs-13.ebuild b/sys-fs/python-btrfs/python-btrfs-13.ebuild
26 new file mode 100644
27 index 000000000..f61c7435f
28 --- /dev/null
29 +++ b/sys-fs/python-btrfs/python-btrfs-13.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8,9} )
37 +DISTUTILS_USE_SETUPTOOLS="no"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python 3 module to inspect btrfs filesystems"
42 +HOMEPAGE="https://github.com/knorrie/python-btrfs"
43 +SRC_URI="https://github.com/knorrie/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE="examples"
49 +
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 +
52 +RDEPEND="${PYTHON_DEPS}"
53 +DEPEND="${RDEPEND}"
54 +
55 +python_install_all() {
56 + use examples && local DOCS=( README.md CHANGES examples )
57 + distutils-r1_python_install_all
58 +}