summaryrefslogtreecommitdiff
path: root/sys-block
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-11-15 12:09:49 +0000
committerSam James <sam@gentoo.org>2025-11-15 12:09:49 +0000
commite7bafcf3cc13d087bcca8adabcb948672eb4ed53 (patch)
tree5e5baa4bbee11e856c9f706b1ad4700d89adb079 /sys-block
parent8182cbbbfbdc0a6e09713426e7dff1db16e982fe (diff)
downloadgentoo-e7bafcf3cc13d087bcca8adabcb948672eb4ed53.tar.gz
gentoo-e7bafcf3cc13d087bcca8adabcb948672eb4ed53.tar.bz2
gentoo-e7bafcf3cc13d087bcca8adabcb948672eb4ed53.zip
sys-block/thin-provisioning-tools: drop 0.9.0-r2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r--sys-block/thin-provisioning-tools/thin-provisioning-tools-0.9.0-r2.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.9.0-r2.ebuild b/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.9.0-r2.ebuild
deleted file mode 100644
index 6a64f029cebc..000000000000
--- a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.9.0-r2.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="A suite of tools for thin provisioning on Linux"
-HOMEPAGE="https://github.com/jthornber/thin-provisioning-tools"
-
-if [[ ${PV} != *9999 ]]; then
- SRC_URI="https://github.com/jthornber/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
-else
- inherit git-r3
- EGIT_REPO_URI='https://github.com/jthornber/thin-provisioning-tools.git'
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="static test"
-RESTRICT="!test? ( test )"
-
-LIB_DEPEND="dev-libs/expat[static-libs(+)]
- dev-libs/libaio[static-libs(+)]"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
-DEPEND="${RDEPEND}
- static? ( ${LIB_DEPEND} )
- test? (
- >=dev-cpp/gtest-1.8.0
- )
- dev-libs/boost"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.7.0-build-fixes.patch
- "${FILESDIR}"/${PN}-0.9.0-build-fixes.patch
- "${FILESDIR}"/0.9.0-remove-boost_iostreams.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- use static && append-ldflags -static
- local myeconfargs=(
- --prefix="${EPREFIX}"/
- --bindir="${EPREFIX}"/sbin
- --with-optimisation=''
- $(use_enable test testing)
- )
- STRIP=true econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- emake V=
-}
-
-src_test() {
- emake V= unit-test
-}
-
-src_install() {
- emake V= DESTDIR="${D}" DATADIR="${ED}/usr/share" install
- dodoc README.md TODO.org
-}