Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/recover-broken-vdb/
Date: Wed, 29 Sep 2021 16:01:11
Message-Id: 1632931256.5a889977242ed6788c3b3e5dd3030167906eda14.sam@gentoo
1 commit: 5a889977242ed6788c3b3e5dd3030167906eda14
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 29 16:00:26 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 29 16:00:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a889977
7
8 app-portage/recover-broken-vdb: add 0.0.5
9
10 Closes: https://bugs.gentoo.org/815373
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-portage/recover-broken-vdb/Manifest | 1 +
14 .../recover-broken-vdb-0.0.5.ebuild | 29 ++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/app-portage/recover-broken-vdb/Manifest b/app-portage/recover-broken-vdb/Manifest
18 index e7f619fd9c9..df124c7c157 100644
19 --- a/app-portage/recover-broken-vdb/Manifest
20 +++ b/app-portage/recover-broken-vdb/Manifest
21 @@ -1,2 +1,3 @@
22 DIST recover-broken-vdb-0.0.3.tar.gz 12492 BLAKE2B aa3fb529cac6d61ed7f41364c784c3879fe1993ace84ad48e648db4bb970c348a55714091a0c467c75234f8e0eecf448fbd20e198c0998240e5f89d0a285dca1 SHA512 e102406b1921527e2564f28d3fcc28e7507f7148b849f35ba0157fc299135ecfc304a3c60ed06900daea95382645414268eb008dcc405112fdf8d74fc1a64d41
23 DIST recover-broken-vdb-0.0.4.tar.gz 12693 BLAKE2B f9690aa16dbe1121dc7ffcfe2caac51530fb0d55bb1da9069bff53c5c43ba350a9fc14f957999e9136d52fbc241ff3017fa564da7bdbf54fa47f998fa6358665 SHA512 b6e7c1fa7c1870719ce93ff679a470c0e880de84a236fe077cb54cae8cb4e921a1c649f1a676e9f10256ff13d8a373f03d18a8ef84c0979d9a02fceed769a07a
24 +DIST recover-broken-vdb-0.0.5.tar.gz 12739 BLAKE2B c818e1d24f2f6b049c42da7819ccbaab021e734ea92bef17b9201a48a039bb5b4c77002f85efc2cf1b1dfae36eb07b39b8dc0d1ac0acfeb00224945c98dbe149 SHA512 5b55a0296fb4c30b5173efa383ab7ffc8219bacb0366c19fdf8a636404829bda5ce501d8c6c436cacae954aa1b7bbc4426b9c5bf3a9cee0ab6159f25c1f919fb
25
26 diff --git a/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.5.ebuild b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.5.ebuild
27 new file mode 100644
28 index 00000000000..ce233e99dd6
29 --- /dev/null
30 +++ b/app-portage/recover-broken-vdb/recover-broken-vdb-0.0.5.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DISTUTILS_SINGLE_IMPL=1
38 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Check Portage's VDB for internal inconsistency on ELF metadata"
44 +HOMEPAGE="https://github.com/thesamesam/recover-broken-vdb"
45 +if [[ ${PV} == *9999 ]] ; then
46 + inherit git-r3
47 + EGIT_REPO_URI="https://github.com/thesamesam/recover-broken-vdb.git"
48 +else
49 + SRC_URI="https://github.com/thesamesam/recover-broken-vdb/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
50 + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
51 +fi
52 +
53 +LICENSE="GPL-2"
54 +SLOT="0"
55 +
56 +# Require latest version of pax-utils to avoid users breaking their systems again
57 +# The tool itself works fine with older versions
58 +RDEPEND=">=app-misc/pax-utils-1.3.3
59 + sys-apps/file
60 + $(python_gen_cond_dep 'sys-apps/portage[${PYTHON_USEDEP}]')"