summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYixun Lan <dlan@gentoo.org>2021-01-14 07:08:06 +0800
committerYixun Lan <dlan@gentoo.org>2021-01-14 07:08:06 +0800
commitc61fd0e05e39b21eb1e4545212e16fc011ccad1d (patch)
tree6ebd27964f3a09c57abbe1adcfbda3921829bdbb /dev-libs/libev
parentsys-power/thermald: drop old (diff)
downloadgentoo-c61fd0e05e39b21eb1e4545212e16fc011ccad1d.tar.gz
gentoo-c61fd0e05e39b21eb1e4545212e16fc011ccad1d.tar.bz2
gentoo-c61fd0e05e39b21eb1e4545212e16fc011ccad1d.zip
dev-libs/libev: drop old
Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-libs/libev')
-rw-r--r--dev-libs/libev/Manifest1
-rw-r--r--dev-libs/libev/libev-4.31.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/libev/Manifest b/dev-libs/libev/Manifest
index 9640fcc4c080..88ac5d5ab5bd 100644
--- a/dev-libs/libev/Manifest
+++ b/dev-libs/libev/Manifest
@@ -1,2 +1 @@
-DIST libev-4.31.tar.gz 565540 BLAKE2B 59df831f4cfc9a615234d8d5b845a687ea41cc27aea84698e213bfacb79d8f9862ff776c2bf3888495cc303daf3b9073a1f660eaedb1437ebaa6d678c8ef0873 SHA512 c2687c2e538c724ec8d02ce5bf6875d2e697c57623c4d5c4e6a09c5c480dd7ea38bb7af290f120ff9e61f0ecfc9b6a07a653a9f44ea8ecf2487438756105bd18
DIST libev-4.33.tar.gz 569527 BLAKE2B 8a6cae25ffde10b24a5bbf084f6a8559af326b37acdbdf47dda34b7f0c7955f3ebd26958594444a574cfa3e2b4011e4be93ad2bd994ffd4c094bf36620e67ba5 SHA512 c662a65360115e0b2598e3e8824cf7b33360c43a96ac9233f6b6ea2873a10102551773cad0e89e738541e75af9fd4f3e3c11cd2f251c5703aa24f193128b896b
diff --git a/dev-libs/libev/libev-4.31.ebuild b/dev-libs/libev/libev-4.31.ebuild
deleted file mode 100644
index 1fddcfefdde2..000000000000
--- a/dev-libs/libev/libev-4.31.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="A high-performance event loop/event model with lots of feature"
-HOMEPAGE="http://software.schmorp.de/pkg/libev.html"
-SRC_URI="http://dist.schmorp.de/libev/${P}.tar.gz
- http://dist.schmorp.de/libev/Attic/${P}.tar.gz"
-
-LICENSE="|| ( BSD GPL-2 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="elibc_glibc static-libs"
-
-# Bug #283558
-DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 )"
-RDEPEND="${DEPEND}"
-
-DOCS=( Changes README )
-
-# bug #411847
-PATCHES=( "${FILESDIR}/${PN}-4.25-pc.patch" )
-
-src_prepare() {
- default
- sed -i -e "/^include_HEADERS/s/ event.h//" Makefile.am || die
-
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" \
- econf \
- --disable-maintainer-mode \
- $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
- if ! use static-libs; then
- find "${D}" -name '*.la' -type f -delete || die
- fi
- einstalldocs
-}