summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2020-01-28 11:24:17 +0200
committerMart Raudsepp <leio@gentoo.org>2020-01-28 11:34:20 +0200
commit706b2598eb5d296972237be7be6eed6b851f95ae (patch)
tree1743cacd6904181d31d7c77643e4583000ddfa7b /dev-libs/satyr/satyr-0.26.ebuild
parentdev-libs/libreport: remove old (diff)
downloadgentoo-706b2598eb5d296972237be7be6eed6b851f95ae.tar.gz
gentoo-706b2598eb5d296972237be7be6eed6b851f95ae.tar.bz2
gentoo-706b2598eb5d296972237be7be6eed6b851f95ae.zip
dev-libs/satyr: remove old
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'dev-libs/satyr/satyr-0.26.ebuild')
-rw-r--r--dev-libs/satyr/satyr-0.26.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-libs/satyr/satyr-0.26.ebuild b/dev-libs/satyr/satyr-0.26.ebuild
deleted file mode 100644
index face20cac54a..000000000000
--- a/dev-libs/satyr/satyr-0.26.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools python-r1 toolchain-funcs
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure processing"
-HOMEPAGE="https://github.com/abrt/satyr"
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0/3"
-
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-KEYWORDS="amd64 x86"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
- >=dev-libs/elfutils-0.158
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
- ./gen-version || die # Needs to be run before full autoreconf
- eautoreconf
- use python && python_copy_sources
-}
-
-src_configure() {
- local myargs=(
- --localstatedir="${EPREFIX}/var"
- --without-rpm
- # Build breaks without and we aren't supporting Python2 anyway
- --without-python2
- $(usex python "--with-python3" "--without-python3")
- )
-
- econf "${myargs[@]}"
-}