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: Thu, 04 Jan 2018 17:51:44
Message-Id: 1515088293.7aa35d43fbeab580b40fee279aafbc5c543e4931.mgorny@gentoo
1 commit: 7aa35d43fbeab580b40fee279aafbc5c543e4931
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 17:50:51 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 17:51:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa35d43
7
8 app-portage/unsymlink-lib: Bump to v9
9
10 Bump to the v9 bugfix release that explicitly fails whenever mount
11 points are found in /lib* or /usr/lib*. While this is far from perfect,
12 it prevents unexpected failures later on.
13
14 Bug: https://bugs.gentoo.org/643194
15
16 app-portage/unsymlink-lib/Manifest | 1 +
17 app-portage/unsymlink-lib/unsymlink-lib-9.ebuild | 25 ++++++++++++++++++++++++
18 2 files changed, 26 insertions(+)
19
20 diff --git a/app-portage/unsymlink-lib/Manifest b/app-portage/unsymlink-lib/Manifest
21 index 37876c548c5..4e6124a0c9f 100644
22 --- a/app-portage/unsymlink-lib/Manifest
23 +++ b/app-portage/unsymlink-lib/Manifest
24 @@ -1,2 +1,3 @@
25 DIST unsymlink-lib-6.tar.gz 7108 BLAKE2B c11007514b37421c9d1dc0a0f0b55dd56812e04adb63f6d830c44ffb26ff307cfa4671f3345892e1676f90f91ec2b15d20bf95fa949959e99417c8484ddb651f SHA512 52866b74a66c66317502b9b7bc3b4e87d6a6a22a5274f2957fbdef6370ca4fbc49bfe8177ee4ad10739fb86718884aba8e30fc82ec2490463730f6d2eb025bb8
26 DIST unsymlink-lib-8.tar.gz 8080 BLAKE2B 6d8ede65903973aec3c61ab1e920b858d853656163210bc7ddd6ef910779404b9fc92ba57095d96eca6220fdf17ce2906e5573bb27c1385508bee89c9a53a989 SHA512 bbc0d1d9845769af27242d17c75c89f91f90500a15db9b73882901d251ad0642bbae8bc778dede33c9a8931a0c580d632db0bb9117e2379548425e8c8c64b2ff
27 +DIST unsymlink-lib-9.tar.gz 8695 BLAKE2B 436c1f62a608ba016e1b4de6c998fe9667a22f345b9be68fe10e584a39a3389049d511615ecf9fe6e6845fc199082af68066dc71e6cb8edb43222480833e1d24 SHA512 24bf1a2c6a0cf7336f343617ddefe2fb56e39efbf5278d432abd282a41e001130fe227efee2c3ccd0d66661b74a7a4dbc241f7e208be1c54844a7a612aabf28d
28
29 diff --git a/app-portage/unsymlink-lib/unsymlink-lib-9.ebuild b/app-portage/unsymlink-lib/unsymlink-lib-9.ebuild
30 new file mode 100644
31 index 00000000000..6ca4f9fdb17
32 --- /dev/null
33 +++ b/app-portage/unsymlink-lib/unsymlink-lib-9.ebuild
34 @@ -0,0 +1,25 @@
35 +# Copyright 1999-2017 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
41 +inherit python-single-r1
42 +
43 +DESCRIPTION="Convert your system to SYMLINK_LIB=no"
44 +HOMEPAGE="https://github.com/mgorny/unsymlink-lib"
45 +SRC_URI="https://github.com/mgorny/unsymlink-lib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="BSD-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +IUSE=""
51 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 +
53 +RDEPEND="${PYTHON_DEPS}
54 + sys-apps/portage[${PYTHON_USEDEP}]"
55 +
56 +src_install() {
57 + python_doscript unsymlink-lib
58 + dodoc README
59 +}