diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2023-03-28 16:16:36 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2023-03-28 16:17:05 -0500 |
commit | a097feff6e2ddde6d47a6fdd2024186873c82d59 (patch) | |
tree | 2d5310e19343ce8903346abd345e7aa3d588745c /sys-block | |
parent | app-admin/ansible-core: drop 2.14.2 (diff) | |
download | gentoo-a097feff6e2ddde6d47a6fdd2024186873c82d59.tar.gz gentoo-a097feff6e2ddde6d47a6fdd2024186873c82d59.tar.bz2 gentoo-a097feff6e2ddde6d47a6fdd2024186873c82d59.zip |
sys-block/tgt: drop 1.0.85
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/tgt/Manifest | 1 | ||||
-rw-r--r-- | sys-block/tgt/tgt-1.0.85.ebuild | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/sys-block/tgt/Manifest b/sys-block/tgt/Manifest index af099cc34300..bae6815c6b7d 100644 --- a/sys-block/tgt/Manifest +++ b/sys-block/tgt/Manifest @@ -1,2 +1 @@ -DIST tgt-1.0.85.tar.gz 304648 BLAKE2B fb2c004c9e4ac614b0dfd58d5e9f641b6ca061a716cfc2c7888eb205e461178f6b04c4bbddc7abd1fc797bd6623c265bc01fc73f75b83dfa84cc35656a306f61 SHA512 847e4c4f80e9bdc46910eb9ab49a150d985a8fcdb77e67eabf5eb12845d9faafee76f9b7a5d71d5b3504205288d77fcf3e0f04e7f835ab8ad829700c13d783d4 DIST tgt-1.0.86.tar.gz 304697 BLAKE2B 60233019e9f09dd4288ca70f398992452dc00f7a2f46d82e333a9e1bfa4fe5dcc8583da3d4ce4382b32c60b1b009dd03d36faa9770faa11222b9ec4592bd6d96 SHA512 f4e8e87691be2793c5eee9d7dc744ae3a7b47f710f559141f0533de345f727fb68223a3090282f5c51f70ea55fbf5936d81e3b08ce953b7ac48013295c32bef7 diff --git a/sys-block/tgt/tgt-1.0.85.ebuild b/sys-block/tgt/tgt-1.0.85.ebuild deleted file mode 100644 index 2fa39d5d7845..000000000000 --- a/sys-block/tgt/tgt-1.0.85.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs systemd - -DESCRIPTION="Linux SCSI target framework (tgt)" -HOMEPAGE="http://stgt.sourceforge.net" -SRC_URI="https://github.com/fujita/tgt/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm64 ~ppc ppc64 x86" -IUSE="fcoe fcp ibmvio infiniband rbd" - -DEPEND=" - app-text/docbook-xsl-stylesheets - dev-libs/libxslt - dev-perl/Config-General - rbd? ( sys-cluster/ceph ) - infiniband? ( sys-cluster/rdma-core ) -" -RDEPEND="${DEPEND} - dev-libs/libaio - sys-apps/sg3_utils" - -pkg_setup() { - tc-export CC -} - -src_prepare() { - default - sed -i -e 's:\($(CC)\) $^:\1 $(LDFLAGS) $^:' usr/Makefile || die - # make sure xml docs are generated before trying to install them - sed -i -e "s@install: @& all @g" doc/Makefile || die - sed -i -e 's|-Werror||g' usr/Makefile || die -} - -src_compile() { - local myconf - use ibmvio && myconf="${myconf} IBMVIO=1" - use infiniband && myconf="${myconf} ISCSI_RDMA=1" - use fcp && myconf="${myconf} FCP=1" - use fcoe && myconf="${myconf} FCOE=1" - use rbd && myconf="${myconf} CEPH_RBD=1" - - emake -C usr/ KERNELSRC="${KERNEL_DIR}" ISCSI=1 ${myconf} - emake -C doc -} - -src_install() { - emake install-programs install-scripts install-doc DESTDIR="${D}" docdir=/usr/share/doc/${PF} - newinitd "${FILESDIR}"/tgtd.initd tgtd - newconfd "${FILESDIR}"/tgtd.confd tgtd - systemd_dounit "${S}"/scripts/tgtd.service - dodir /etc/tgt - keepdir /etc/tgt -} |