Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sg3_utils/
Date: Thu, 17 Jun 2021 21:40:32
Message-Id: 1623966016.93d01458852abe97b147bd1fb48e344863a98f5a.floppym@gentoo
1 commit: 93d01458852abe97b147bd1fb48e344863a98f5a
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 17 21:25:46 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 17 21:40:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d01458
7
8 sys-apps/sg3_utils: drop 1.42
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 sys-apps/sg3_utils/Manifest | 1 -
13 sys-apps/sg3_utils/sg3_utils-1.42.ebuild | 43 --------------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/sys-apps/sg3_utils/Manifest b/sys-apps/sg3_utils/Manifest
17 index 28a02658113..cfa0aafc384 100644
18 --- a/sys-apps/sg3_utils/Manifest
19 +++ b/sys-apps/sg3_utils/Manifest
20 @@ -1,2 +1 @@
21 -DIST sg3_utils-1.42.tgz 1219231 BLAKE2B dd9ea2c324cb6f4c0ce770c90b7980da5e998bddc3a2be43a0aa9bea88dfe34291d0f58b393b2a5ac680c05dc673802ec9fae1ead37107bc49fa33bc7c4df503 SHA512 d16b65e36b2bccb4fc4c189f97e71fa38e6619f37d668a4ddd74a52c715fa62325288d9737812ed19c80547059dbd27be5a20565e27e1aabb571e8f5f8ac53ad
22 DIST sg3_utils-1.46.tar.xz 1031800 BLAKE2B 034af23d10da49938979ea4d0041c6ce4309b9ceac13f06bd524011dccf285e88fbc5f4c3f261ec3e316db86278ccff235015de43d98b0b62ff05a2f98df0850 SHA512 0b4caab97ccc11fb45e88219e460b37c6ff69b8f3c79e513279aef51783ff22399d141253abdbf55db198db0815bc39d30e9b1e3bd7dda5e15c5f4dae3fe89cf
23
24 diff --git a/sys-apps/sg3_utils/sg3_utils-1.42.ebuild b/sys-apps/sg3_utils/sg3_utils-1.42.ebuild
25 deleted file mode 100644
26 index d768a1f50c1..00000000000
27 --- a/sys-apps/sg3_utils/sg3_utils-1.42.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit epatch multilib
36 -
37 -DESCRIPTION="Apps for querying the sg SCSI interface"
38 -HOMEPAGE="http://sg.danny.cz/sg/"
39 -SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
44 -IUSE="static-libs"
45 -
46 -DEPEND="sys-devel/libtool"
47 -RDEPEND=""
48 -
49 -src_prepare() {
50 - epatch "${FILESDIR}"/${PN}-1.26-stdint.patch #580236
51 - epatch "${FILESDIR}"/${PN}-1.42-sysmacros.patch #580236
52 -}
53 -
54 -src_configure() {
55 - econf $(use_enable static-libs static)
56 -}
57 -
58 -src_install() {
59 - default
60 - dodoc COVERAGE doc/README examples/*.txt
61 - newdoc scripts/README README.scripts
62 -
63 - # Better fix for bug 231089; some packages look for sgutils2
64 - local path lib
65 - path="/usr/$(get_libdir)"
66 - for lib in "${ED}"${path}/libsgutils2.*; do
67 - lib=${lib##*/}
68 - dosym "${lib}" "${path}/${lib/libsgutils2/libsgutils}"
69 - done
70 -
71 - find "${ED}" -name '*.la' -delete || die
72 -}