dev-libs/libfmt: Cleanup old version
authorCraig Andrews <candrews@gentoo.org>
Thu, 19 Mar 2020 18:26:29 +0000 (14:26 -0400)
committerCraig Andrews <candrews@gentoo.org>
Thu, 19 Mar 2020 18:26:29 +0000 (14:26 -0400)
Bug: https://bugs.gentoo.org/704462
Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Craig Andrews <candrews@gentoo.org>
dev-libs/libfmt/Manifest
dev-libs/libfmt/libfmt-5.3.0.ebuild [deleted file]

index 1c10bf6ac3cbac3114b651a93a40d01c0ec3efc7..f3d23b1a402ee4293086cb82eb0a9e4e72110d41 100644 (file)
@@ -1,2 +1 @@
-DIST libfmt-5.3.0.tar.gz 662493 BLAKE2B 462c54c227132b2398977ff575f74e63e973825968b106e09cb0f3da859f1d851a6dd1799c05e3ae6adff2ac972f4af259c42fdf8429346b2830134571c31480 SHA512 9ef0f3d328681253c1e1776576d54d67dec49c19fd7fc422ae63c3610b01a3f05f6e83cdf5e913dfd09bac42e52fe35c38ebe1ea91f4207d226a32aaf69eb4a8
 DIST libfmt-6.1.2.tar.gz 723160 BLAKE2B 36e7451a8732c62dcbf47e6d287ea582827b6196a468b8648803ea1bc9a37a5f681d87488f748d749183d97783ac7fb47a3f2aeed64fc6a684f9ee85b67ae28d SHA512 8770bf4bd2bb6d938e75e0cf1e665c41930dbd9d2a6825274a5a43cd1d85b9c9ca621bb040ed099429f0e16bddbc3399361c453eb1bf3fc01376e6ad9dd875b7
diff --git a/dev-libs/libfmt/libfmt-5.3.0.ebuild b/dev-libs/libfmt/libfmt-5.3.0.ebuild
deleted file mode 100644 (file)
index c8550ae..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-multilib eapi7-ver
-
-DESCRIPTION="Small, safe and fast formatting library"
-HOMEPAGE="https://github.com/fmtlib/fmt"
-
-LICENSE="BSD-2"
-IUSE="test"
-RESTRICT="!test? ( test )"
-SLOT="0/$(ver_cut 1)"
-
-if [[ ${PV} == *9999 ]] ; then
-       EGIT_REPO_URI="https://github.com/fmtlib/fmt.git"
-       inherit git-r3
-else
-       SRC_URI="https://github.com/fmtlib/fmt/archive/${PV}.tar.gz -> ${P}.tar.gz"
-       KEYWORDS="amd64 ppc ppc64 x86"
-       S="${WORKDIR}/fmt-${PV}"
-fi
-
-DEPEND=""
-RDEPEND=""
-
-multilib_src_configure() {
-       local mycmakeargs=(
-               -DFMT_CMAKE_DIR="$(get_libdir)/cmake/fmt"
-               -DFMT_LIB_DIR="$(get_libdir)"
-               -DFMT_TEST=$(usex test)
-               -DBUILD_SHARED_LIBS=ON
-       )
-       cmake-utils_src_configure
-}