From 5ef54149a7b0cd8ce43fbb549b3c340b749f0aa9 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 1 Aug 2021 21:28:55 +0200 Subject: net-libs/libcrafter: update EAPI 7 -> 8 Signed-off-by: David Seifert --- net-libs/libcrafter/libcrafter-1.0-r1.ebuild | 34 ++++++++++++++++++++++ net-libs/libcrafter/libcrafter-1.0.ebuild | 42 ---------------------------- net-libs/libcrafter/libcrafter-9999.ebuild | 30 ++++++++------------ 3 files changed, 45 insertions(+), 61 deletions(-) create mode 100644 net-libs/libcrafter/libcrafter-1.0-r1.ebuild delete mode 100644 net-libs/libcrafter/libcrafter-1.0.ebuild diff --git a/net-libs/libcrafter/libcrafter-1.0-r1.ebuild b/net-libs/libcrafter/libcrafter-1.0-r1.ebuild new file mode 100644 index 000000000000..9eb5e0583a60 --- /dev/null +++ b/net-libs/libcrafter/libcrafter-1.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A high level C++ network packet sniffing and crafting library" +HOMEPAGE="https://github.com/pellegre/libcrafter" +SRC_URI="https://github.com/pellegre/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-version-${PV}/${PN}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + dodoc "${WORKDIR}"/${PN}-version-${PV}/README + + find "${ED}" -name '*.la' -delete || die +} diff --git a/net-libs/libcrafter/libcrafter-1.0.ebuild b/net-libs/libcrafter/libcrafter-1.0.ebuild deleted file mode 100644 index 7b919920ad00..000000000000 --- a/net-libs/libcrafter/libcrafter-1.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -DESCRIPTION="A high level C++ network packet sniffing and crafting library" -HOMEPAGE="https://github.com/pellegre/libcrafter" -SRC_URI="https://github.com/pellegre/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -RDEPEND=" - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} -" -PATCHES=( - "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch -) -S=${WORKDIR}/${PN}-version-${PV}/${PN} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_install() { - default - - dodoc "${WORKDIR}"/${PN}-version-${PV}/README - - find "${ED}" -name '*.la' -delete || die -} diff --git a/net-libs/libcrafter/libcrafter-9999.ebuild b/net-libs/libcrafter/libcrafter-9999.ebuild index 16291e489096..609119bb53ca 100644 --- a/net-libs/libcrafter/libcrafter-9999.ebuild +++ b/net-libs/libcrafter/libcrafter-9999.ebuild @@ -1,38 +1,30 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + inherit autotools git-r3 DESCRIPTION="A high level C++ network packet sniffing and crafting library" HOMEPAGE="https://github.com/pellegre/libcrafter" EGIT_REPO_URI="https://github.com/pellegre/${PN}" +S="${WORKDIR}/${P}/${PN}" LICENSE="BSD" SLOT="0" -KEYWORDS="" -IUSE="static-libs" - -RDEPEND=" - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} -" -PATCHES=( - "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch -) -S=${WORKDIR}/${P}/${PN} +KEYWORDS="~amd64 ~x86" + +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch ) src_prepare() { default eautoreconf } -src_configure() { - econf $(use_enable static-libs static) -} - src_install() { default -- cgit v1.2.3-65-gdbad