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: app-portage/unsymlink-lib/
Date: Mon, 29 Jun 2020 15:53:27
Message-Id: 1593445944.b364a0971bc840ce7c6097135c4f059e68f540d5.mgorny@gentoo
1 commit: b364a0971bc840ce7c6097135c4f059e68f540d5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 29 15:26:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 29 15:52:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b364a097
7
8 app-portage/unsymlink-lib: Bump to v18
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/unsymlink-lib/Manifest | 1 +
13 app-portage/unsymlink-lib/unsymlink-lib-18.ebuild | 29 +++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/app-portage/unsymlink-lib/Manifest b/app-portage/unsymlink-lib/Manifest
17 index eaf132652fa..7b3a42c8941 100644
18 --- a/app-portage/unsymlink-lib/Manifest
19 +++ b/app-portage/unsymlink-lib/Manifest
20 @@ -1 +1,2 @@
21 DIST unsymlink-lib-17.tar.gz 10550 BLAKE2B 036cf63e3619113763f01086fbd952fb2a6efda4d4f4989a5d8cadc0d47b439cba0fab84d53336d615ccbec4e0815519cd4709162f11bbf5fa42c770b928f6f2 SHA512 b981419e320da74f983c184f2b9739b0f1cdae7adf1b9d29c3221b7d010432f6844ff3bdf93793b2f701e2337acebc28a6bd2df0763a081cd8e53a8400aaea42
22 +DIST unsymlink-lib-18.tar.gz 10807 BLAKE2B 0c15ba8fadc96641139db68068c6402f24bd9129b452a8996c393ee899b274e7a5c96d58c2745b74ec3dbb469008a6756041b153abbbe3f29aca5f93c8700834 SHA512 bb08f1c35046d756aee752c7cd28f8eb93c562587f2fbc0070817c11fd42f3d12fade9c8ad29c508813e10993f5b622c9d33da52e49dfa7e16b1997a72d491f5
23
24 diff --git a/app-portage/unsymlink-lib/unsymlink-lib-18.ebuild b/app-portage/unsymlink-lib/unsymlink-lib-18.ebuild
25 new file mode 100644
26 index 00000000000..03c0f831738
27 --- /dev/null
28 +++ b/app-portage/unsymlink-lib/unsymlink-lib-18.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6,7,8} )
36 +inherit python-single-r1
37 +
38 +DESCRIPTION="Convert your system to SYMLINK_LIB=no"
39 +HOMEPAGE="https://github.com/mgorny/unsymlink-lib"
40 +SRC_URI="https://github.com/mgorny/unsymlink-lib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
46 +# tests are docker-based, you need a running docker daemon and you
47 +# should expect leftover images
48 +RESTRICT="test"
49 +
50 +RDEPEND="${PYTHON_DEPS}
51 + $(python_gen_cond_dep '
52 + sys-apps/portage[${PYTHON_MULTI_USEDEP}]
53 + ')"
54 +
55 +src_install() {
56 + python_doscript unsymlink-lib
57 + dodoc README
58 +}