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: Wed, 10 Jan 2018 09:31:27
Message-Id: 1515576647.6a514c6f017bfbf921745cfe87e54dd2b15b236b.mgorny@gentoo
1 commit: 6a514c6f017bfbf921745cfe87e54dd2b15b236b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 10 09:17:47 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 10 09:30:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a514c6f
7
8 app-portage/unsymlink-lib: Bump to v11, with lib32 removal fix
9
10 Bump to v11 that improves handling of lib32 removal failures. The errors
11 are now fatal and request resuming explicitly, rather than outputting
12 a warning that is easily missed. This also lets us allow lib32
13 to be a mount point again.
14
15 This version also tries to give more explicit explanation when lib32
16 is actually a mount point. However, the os.path.ismount() function
17 does not seem to detect bind mounts, as in the linked bug report.
18
19 Closes: https://bugs.gentoo.org/643632
20
21 app-portage/unsymlink-lib/Manifest | 1 +
22 app-portage/unsymlink-lib/unsymlink-lib-11.ebuild | 25 +++++++++++++++++++++++
23 2 files changed, 26 insertions(+)
24
25 diff --git a/app-portage/unsymlink-lib/Manifest b/app-portage/unsymlink-lib/Manifest
26 index e619d36b530..ffc84aef2eb 100644
27 --- a/app-portage/unsymlink-lib/Manifest
28 +++ b/app-portage/unsymlink-lib/Manifest
29 @@ -1,2 +1,3 @@
30 DIST unsymlink-lib-10.tar.gz 8710 BLAKE2B 23c3e483f57480ffdc73a6fe4a16f3956c4e402f8490ae0a0f35659e3b1f3acf4f76e4ae8ea8f9b538d5c5f7226be7d72a735f12174329cde5e895b80af9063e SHA512 a00bed24336b9cec5870c43723b236ecf3e847e21c64ef5a119a31bc98adf4bd4b43594be423c593c1cf104fd3de41e91398bf0920eca57339a1e12768855a3b
31 +DIST unsymlink-lib-11.tar.gz 8766 BLAKE2B 786870765ad065c58e539dafed63f350c4fc251552f44ad8cd1d2bdca12295f5db859d01143e5bdcbd61806433a57961e9b0c0852919b656804cc4cefbb2b621 SHA512 afd5ad53812ea4bfe60a42b05fdac6059042519fc438e69dc76168104c0e39b49374c8bda278c3901e88f137b4f051f2c4648f1d7a190d8755e8d6ac2717ab1f
32 DIST unsymlink-lib-9.tar.gz 8695 BLAKE2B 436c1f62a608ba016e1b4de6c998fe9667a22f345b9be68fe10e584a39a3389049d511615ecf9fe6e6845fc199082af68066dc71e6cb8edb43222480833e1d24 SHA512 24bf1a2c6a0cf7336f343617ddefe2fb56e39efbf5278d432abd282a41e001130fe227efee2c3ccd0d66661b74a7a4dbc241f7e208be1c54844a7a612aabf28d
33
34 diff --git a/app-portage/unsymlink-lib/unsymlink-lib-11.ebuild b/app-portage/unsymlink-lib/unsymlink-lib-11.ebuild
35 new file mode 100644
36 index 00000000000..6ca4f9fdb17
37 --- /dev/null
38 +++ b/app-portage/unsymlink-lib/unsymlink-lib-11.ebuild
39 @@ -0,0 +1,25 @@
40 +# Copyright 1999-2017 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +
43 +EAPI=6
44 +
45 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
46 +inherit python-single-r1
47 +
48 +DESCRIPTION="Convert your system to SYMLINK_LIB=no"
49 +HOMEPAGE="https://github.com/mgorny/unsymlink-lib"
50 +SRC_URI="https://github.com/mgorny/unsymlink-lib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="BSD-2"
53 +SLOT="0"
54 +KEYWORDS="~amd64"
55 +IUSE=""
56 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
57 +
58 +RDEPEND="${PYTHON_DEPS}
59 + sys-apps/portage[${PYTHON_USEDEP}]"
60 +
61 +src_install() {
62 + python_doscript unsymlink-lib
63 + dodoc README
64 +}