commit: 28bb5a6d72b71d2257ed32553740026eed2b430f Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Wed Oct 1 20:45:00 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Wed Oct 1 20:45:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28bb5a6d
net-libs/libcork: EAPI=8, fix tests, fix python, fix cmake-4 Closes: https://bugs.gentoo.org/957229 Closes: https://bugs.gentoo.org/953938 Closes: https://bugs.gentoo.org/775929 Closes: https://bugs.gentoo.org/761358 Closes: https://bugs.gentoo.org/716804 (obsolete) Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> net-libs/libcork/libcork-0.15.0-r2.ebuild | 42 ------------------------------- 1 file changed, 42 deletions(-) diff --git a/net-libs/libcork/libcork-0.15.0-r2.ebuild b/net-libs/libcork/libcork-0.15.0-r2.ebuild deleted file mode 100644 index d3dec4a8179c..000000000000 --- a/net-libs/libcork/libcork-0.15.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A simple, easily embeddable cross-platform C library" -HOMEPAGE="https://github.com/dcreager/libcork" -SRC_URI="https://github.com/dcreager/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" -IUSE="static-libs" - -RDEPEND="dev-libs/check" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-git.patch" - "${FILESDIR}/${P}-version.patch" -) - -src_prepare() { - if ! [ -e "${S}"/RELEASE-VERSION ] ; then - echo ${PV} > "${S}"/RELEASE-VERSION || die - fi - sed -i -e "s/-Werror/-Wextra/" \ - -e "/docs\/old/d" \ - CMakeLists.txt || die - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_STATIC=$(usex static-libs) - ) - cmake_src_configure -}
