Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sg3_utils/
Date: Tue, 18 Sep 2018 11:13:57
Message-Id: 1537269220.281f0ff7c13d8e0c6800747a4d1719099dc99908.whissi@gentoo
1 commit: 281f0ff7c13d8e0c6800747a4d1719099dc99908
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 18 11:13:40 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 18 11:13:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=281f0ff7
7
8 sys-apps/sg3_utils: drop old
9
10 Our =sys-apps/sg3_utils-1.43 wasn't really upstream's 1.43 release
11 due to a git mirror sync failure.
12
13 Upstream's v1.43 was re-released as v1.44 and is available in the
14 repository.
15
16 Package-Manager: Portage-2.3.49, Repoman-2.3.10
17
18 sys-apps/sg3_utils/Manifest | 1 -
19 sys-apps/sg3_utils/sg3_utils-1.43.ebuild | 44 --------------------------------
20 2 files changed, 45 deletions(-)
21
22 diff --git a/sys-apps/sg3_utils/Manifest b/sys-apps/sg3_utils/Manifest
23 index 786e00243ea..ad410ad62b3 100644
24 --- a/sys-apps/sg3_utils/Manifest
25 +++ b/sys-apps/sg3_utils/Manifest
26 @@ -1,3 +1,2 @@
27 DIST sg3_utils-1.42.tgz 1219231 BLAKE2B dd9ea2c324cb6f4c0ce770c90b7980da5e998bddc3a2be43a0aa9bea88dfe34291d0f58b393b2a5ac680c05dc673802ec9fae1ead37107bc49fa33bc7c4df503 SHA512 d16b65e36b2bccb4fc4c189f97e71fa38e6619f37d668a4ddd74a52c715fa62325288d9737812ed19c80547059dbd27be5a20565e27e1aabb571e8f5f8ac53ad
28 -DIST sg3_utils-1.43.tar.gz 1180760 BLAKE2B 20475d974f9f4c0f275499a63f921b587df76e1b8addcd5201fd5db95e100eb0b4c8c97aba7e9651ae069c43e30cd7b780643212307dec6d53e5b91cd2c653e8 SHA512 5f2eea6f61300e288ce32ca613179a944de34576fd6e596c4c3aa6cc2c0ef397cf5bfd2c148b737f678aac0c574321994525486430ea14ae8e7cb1c02184636f
29 DIST sg3_utils-1.44.tar.xz 922152 BLAKE2B 8596ef78fbb7ade5a969f485b0f4ff63863dc8a5ff58fe630cffa91900ba9946b47ddf857346aa3904da8502afa4928f54baf99428344d2e561a90e52c8533ed SHA512 4f4d5536ebed62f2c81c55741043d9ac3f4610a4dd6ef2e3125f041afd57aae03a32c2affe84a960c9f61fb6f84784bc901c756a8c36c1bc97082fa61e73ae8d
30
31 diff --git a/sys-apps/sg3_utils/sg3_utils-1.43.ebuild b/sys-apps/sg3_utils/sg3_utils-1.43.ebuild
32 deleted file mode 100644
33 index 78f997750df..00000000000
34 --- a/sys-apps/sg3_utils/sg3_utils-1.43.ebuild
35 +++ /dev/null
36 @@ -1,44 +0,0 @@
37 -# Copyright 1999-2017 Gentoo Foundation
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=5
41 -
42 -inherit eutils multilib
43 -
44 -DESCRIPTION="Apps for querying the sg SCSI interface"
45 -HOMEPAGE="http://sg.danny.cz/sg/"
46 -SRC_URI="https://github.com/hreinecke/sg3_utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
51 -IUSE="static-libs"
52 -
53 -DEPEND="sys-devel/libtool"
54 -RDEPEND=""
55 -PDEPEND=">=sys-apps/rescan-scsi-bus-1.24"
56 -
57 -src_prepare() {
58 - epatch "${FILESDIR}"/${PN}-1.26-stdint.patch #580236
59 - epatch "${FILESDIR}"/${PN}-1.42-sysmacros.patch #580236
60 -}
61 -
62 -src_configure() {
63 - econf $(use_enable static-libs static)
64 -}
65 -
66 -src_install() {
67 - default
68 - dodoc COVERAGE doc/README examples/*.txt
69 - newdoc scripts/README README.scripts
70 -
71 - # Better fix for bug 231089; some packages look for sgutils2
72 - local path lib
73 - path="/usr/$(get_libdir)"
74 - for lib in "${ED}"${path}/libsgutils2.*; do
75 - lib=${lib##*/}
76 - dosym "${lib}" "${path}/${lib/libsgutils2/libsgutils}"
77 - done
78 -
79 - prune_libtool_files
80 -}