commit: 626f48ca9f8b033b861d5b308eff228ef15e8a14
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu May 27 21:06:17 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May 27 21:06:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626f48ca
sci-libs/cddlib: Remove old 094j
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-libs/cddlib/Manifest | 1 -
sci-libs/cddlib/cddlib-094j.ebuild | 53 --------------------------------------
2 files changed, 54 deletions(-)
diff --git a/sci-libs/cddlib/Manifest b/sci-libs/cddlib/Manifest
index 66a3bfcac3f..a14352b359b 100644
--- a/sci-libs/cddlib/Manifest
+++ b/sci-libs/cddlib/Manifest
@@ -1,2 +1 @@
-DIST cddlib-0.94j.tar.gz 1364746 BLAKE2B
60e81fccf8abd8d60fb7261d1d2d61b7ad2b60285e7dfa760905e2cb5b01f1570c27920728c12fc6994135e4b29ba8e1709066ddf2e2eff00f8f48b093ebd43e
SHA512
b82d5e06538a29143a79f7ba7287a1784292e28f086071041e500fd81387a30c3fca6fae9049752f57b62d50b385d73681276d42d24941e3a43893da00452ea6
DIST cddlib-0.94m.tar.gz 1351298 BLAKE2B
0e1931ba94771f0dcae0ee10b003940ca331839eb8ce001ab02c4f1b382dde74d7dfcf74f4c62e1ae7214a3139547c09f56ef0cba5df74fc03a63ab741b64690
SHA512
50997bda38c36990456345881dc1eac65b1880aa510ea3812ae46a122ba7696bf3577f2b6976ff16811ee00f0a920c8ed6f1e7de0a4060bfaa96def11bab816e
diff --git a/sci-libs/cddlib/cddlib-094j.ebuild
b/sci-libs/cddlib/cddlib-094j.ebuild
deleted file mode 100644
index e53e3ec982f..00000000000
--- a/sci-libs/cddlib/cddlib-094j.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# This should have been dealt with versionator in the direction
-# 0.94x -> 094x - now we are screwed.
-MY_PV="0.94j"
-MY_P="${PN}-${MY_PV}"
-DESCRIPTION="C library implementing the Double Description Method"
-HOMEPAGE="https://www.inf.ethz.ch/personal/fukudak/cdd_home/"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2+"
-KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples static-libs tools"
-
-DEPEND="dev-libs/gmp:0"
-RDEPEND="dev-libs/gmp:0="
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- if ! use tools; then
- rm "${ED}"/usr/bin/* || die
- fi
-
- if ! use static-libs; then
- find "${ED}" -name '*.la' -delete || die
- fi
-
- # Nobody wants the dvi/ps manual...
- rm "${ED}/usr/share/doc/${PF}"/cddlibman.{dvi,ps} || die
-
- # since the PDF manual is installed by default.
- if ! use doc; then
- rm "${ED}/usr/share/doc/${PF}"/cddlibman.pdf || die
- fi
-
- # The docs and examples are *both* installed by default, so we
- # have to remove the examples if the user doesn't want them.
- docompress -x "/usr/share/doc/${PF}"/examples{,-ext,-ine,-ine3d}
- if ! use examples; then
- rm -r "${ED}/usr/share/doc/${PF}"/examples{,-ext,-ine,-ine3d}
|| die
- fi
-}