Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymountboot/
Date: Sun, 24 May 2020 10:33:08
Message-Id: 1590316378.d1d1b93c210fa2626e6e2abf3e93a1831503fd42.mgorny@gentoo
1 commit: d1d1b93c210fa2626e6e2abf3e93a1831503fd42
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 24 10:32:06 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 24 10:32:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1d1b93c
7
8 dev-python/pymountboot: Bump to 0.2.3
9
10 Closes: https://bugs.gentoo.org/706956
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/pymountboot/Manifest | 1 +
14 dev-python/pymountboot/pymountboot-0.2.3.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-python/pymountboot/Manifest b/dev-python/pymountboot/Manifest
18 index ff7e918df98..68d2bc3c01b 100644
19 --- a/dev-python/pymountboot/Manifest
20 +++ b/dev-python/pymountboot/Manifest
21 @@ -1 +1,2 @@
22 DIST pymountboot-0.2.2.tar.bz2 4098 BLAKE2B bbfbe631313189e6aef684ff29e73fcf2dcbbb998528103afe9c89e517e5a6c13bf6e05ced7c2eb05f668e0cc269212618b648043b65fb95da2e1b46c37476ac SHA512 bb6ec0772300b2edf9864a09ff64f67ad99f0cd29b009793e1b2a590be48146640c927b5772023d27e68fc2fba51652a55ab66d1cf875dd9b4134f043ac353c9
23 +DIST pymountboot-0.2.3.tar.gz 4065 BLAKE2B 81ef6c967a2e8eaa76155446e0c59208ee10e5e3b40fbe9d910d5e4faf3ac1963146ef1df634c4795b56e709b90fb92edb57916586c8a1e5fa14ad92e1721f42 SHA512 fee4c8444b89ff0375c75eb44ec396d1c1e65d4bb08ff230ae0fdb1f822115ed44bf9904c284d3623768df0b4041ef7ab4cf9717596148d3df76badd0a3aa92a
24
25 diff --git a/dev-python/pymountboot/pymountboot-0.2.3.ebuild b/dev-python/pymountboot/pymountboot-0.2.3.ebuild
26 new file mode 100644
27 index 00000000000..4d0cc67eb79
28 --- /dev/null
29 +++ b/dev-python/pymountboot/pymountboot-0.2.3.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=no
37 +PYTHON_COMPAT=( python{3_6,3_7,3_8} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python extension module to (re)mount /boot"
42 +HOMEPAGE="https://github.com/mgorny/pymountboot/"
43 +SRC_URI="
44 + https://github.com/mgorny/pymountboot/archive/v${PV}.tar.gz
45 + -> ${P}.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +
52 +RDEPEND=">=sys-apps/util-linux-2.20"
53 +DEPEND="${RDEPEND}"