Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/tgt/
Date: Sun, 03 Apr 2022 03:37:08
Message-Id: 1648956514.376a3794f7c81a7de4fdfb8be806e3631833e09f.prometheanfire@gentoo
1 commit: 376a3794f7c81a7de4fdfb8be806e3631833e09f
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 03:28:34 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 03:28:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376a3794
7
8 sys-block/tgt: 1.0.82 bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 sys-block/tgt/Manifest | 1 +
14 sys-block/tgt/tgt-1.0.82.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 59 insertions(+)
16
17 diff --git a/sys-block/tgt/Manifest b/sys-block/tgt/Manifest
18 index 1ab5d0241c31..1a9f52b5142a 100644
19 --- a/sys-block/tgt/Manifest
20 +++ b/sys-block/tgt/Manifest
21 @@ -1,2 +1,3 @@
22 DIST tgt-1.0.79.tar.gz 297825 BLAKE2B 5b48e8390ce092d2b34a7ce4bb5845ba8beb0bd6965877d1109c80b78315eea970537601e7286e1eebcdfe8f8a8b545d58b5f64185ae016f887fe0d0854c2d52 SHA512 8cae6c43521e087fed72f98ae9659995961f987170c9799f8ebb018c0571ae78f79ce490a42dd0fddc6d1c3e946105e00b7cb02e3186026e4642d1711a990fe1
23 DIST tgt-1.0.80.tar.gz 298256 BLAKE2B 3a678730b3c492832b96e160e9672354aa32a3cc463e2845b1b475c238172b99c1706d3d387697c199c4f3004d8b2c4230d17bd356ce9103028525f8007c89a9 SHA512 6e48013a7da527799f25dc224bb261f7c5cf0aa3893bc337b9f4878a45d116be701a373c533ab6fa79771ccd633501c83b48084828bf6167af72e35795bb1c4f
24 +DIST tgt-1.0.82.tar.gz 304687 BLAKE2B 42b43e7f9c23ddacba1c573b189480fc7e34bd5bcc58a8267e56b79d7e5a54d65c5624ac33ed7334c32085ea2fbd3c0719f82188262934658eda291c059e53c9 SHA512 e81a56fae8010ee2af8643b6accc1e51f6667e27b07c986e6a5412dcb483b46ccc0e4fe1aeb399c352282284fe516f3fc1cab5d8cbb431cc9f97f00d5faa0430
25
26 diff --git a/sys-block/tgt/tgt-1.0.82.ebuild b/sys-block/tgt/tgt-1.0.82.ebuild
27 new file mode 100644
28 index 000000000000..43d1f60ba296
29 --- /dev/null
30 +++ b/sys-block/tgt/tgt-1.0.82.ebuild
31 @@ -0,0 +1,58 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit toolchain-funcs systemd
37 +
38 +DESCRIPTION="Linux SCSI target framework (tgt)"
39 +HOMEPAGE="http://stgt.sourceforge.net"
40 +SRC_URI="https://github.com/fujita/tgt/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
45 +IUSE="fcoe fcp ibmvio infiniband rbd"
46 +
47 +DEPEND="
48 + app-text/docbook-xsl-stylesheets
49 + dev-libs/libxslt
50 + dev-perl/Config-General
51 + rbd? ( sys-cluster/ceph )
52 + infiniband? ( sys-cluster/rdma-core )
53 +"
54 +RDEPEND="${DEPEND}
55 + dev-libs/libaio
56 + sys-apps/sg3_utils"
57 +
58 +pkg_setup() {
59 + tc-export CC
60 +}
61 +
62 +src_prepare() {
63 + default
64 + sed -i -e 's:\($(CC)\) $^:\1 $(LDFLAGS) $^:' usr/Makefile || die
65 + # make sure xml docs are generated before trying to install them
66 + sed -i -e "s@install: @& all @g" doc/Makefile || die
67 + sed -i -e 's|-Werror||g' usr/Makefile || die
68 +}
69 +
70 +src_compile() {
71 + local myconf
72 + use ibmvio && myconf="${myconf} IBMVIO=1"
73 + use infiniband && myconf="${myconf} ISCSI_RDMA=1"
74 + use fcp && myconf="${myconf} FCP=1"
75 + use fcoe && myconf="${myconf} FCOE=1"
76 + use rbd && myconf="${myconf} CEPH_RBD=1"
77 +
78 + emake -C usr/ KERNELSRC="${KERNEL_DIR}" ISCSI=1 ${myconf}
79 + emake -C doc
80 +}
81 +
82 +src_install() {
83 + emake install-programs install-scripts install-doc DESTDIR="${D}" docdir=/usr/share/doc/${PF}
84 + newinitd "${FILESDIR}"/tgtd.initd tgtd
85 + newconfd "${FILESDIR}"/tgtd.confd tgtd
86 + systemd_dounit "${S}"/scripts/tgtd.service
87 + dodir /etc/tgt
88 + keepdir /etc/tgt
89 +}