commit:     2624213a0f9619f48485eb6e32a412b17f702c16
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Jan 17 11:51:28 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 11:51:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2624213a

sci-libs/cln: Remove old

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-libs/cln/Manifest                  |  2 --
 sci-libs/cln/cln-1.3.3.ebuild          | 63 ----------------------------------
 sci-libs/cln/cln-1.3.4.ebuild          | 63 ----------------------------------
 sci-libs/cln/files/cln-1.3.2-arm.patch | 13 -------
 4 files changed, 141 deletions(-)

diff --git a/sci-libs/cln/Manifest b/sci-libs/cln/Manifest
index 5163b24bc02..67d39b02d57 100644
--- a/sci-libs/cln/Manifest
+++ b/sci-libs/cln/Manifest
@@ -1,3 +1 @@
-DIST cln-1.3.3.tar.bz2 1300229 BLAKE2B 
ca7985771d300b2bf0a1e5d6acda90de2596e0a8910c293500c8c218578814a82867ac24b641d3e3a36897a1a0ebf09a136ba6d64c7a1ed61133aa0b89ecacea
 SHA512 
ee829cd03a2d36215a4d4e76cc0aa6c5abe6ff967ed366d752da1dc0c47dbec56e0521e92fb35574c038305fb767991c5c7fd12ad03583080da3f923fbfecdaf
-DIST cln-1.3.4.tar.bz2 1281348 BLAKE2B 
7681ae5a421f2992e16b48541b46aceb988d697d95d2457fbe2f8c0f7e8ca95e6fbfb0fc309ea29a4669bc3d4fdf9c670fdf25b202019457ffba392f15bf2fa4
 SHA512 
2178a64b4388b3018c3847f6fb192ea51eb9c8618302986d7706accef17184e3333ddeca218d726f93f3b985598952ad58d705c9081201985611e383f788a631
 DIST cln-1.3.6.tar.bz2 1330815 BLAKE2B 
89ddd0079ac746b262dac01ae0fc1ceb250956c530883d93430e62866e09fdd964c4f96edb21260f9aa40f739450996e1bf21503a30cc02fffaba08a1bd45264
 SHA512 
a32a1449c5f0edac1444e58f500ef1a72ffab8dad65125082eff0995cc9855b45f38b89c7f754e3d4487756a8cd3f7db1e534865b8d0384fd28246f444ed7d14

diff --git a/sci-libs/cln/cln-1.3.3.ebuild b/sci-libs/cln/cln-1.3.3.ebuild
deleted file mode 100644
index e7a8fa5e0ad..00000000000
--- a/sci-libs/cln/cln-1.3.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils flag-o-matic
-
-DESCRIPTION="Class library (C++) for numbers"
-HOMEPAGE="https://www.ginac.de/CLN/";
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="doc examples"
-
-RDEPEND="dev-libs/gmp:0="
-DEPEND="${RDEPEND}
-       doc? ( virtual/latex-base )"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.3.2-arm.patch )
-
-pkg_setup() {
-       use sparc && append-cppflags -DNO_ASM
-       use hppa && append-cppflags -DNO_ASM
-       use arm && append-cppflags -DNO_ASM
-}
-
-src_prepare() {
-       # avoid building examples
-       # do it in Makefile.in to avoid time consuming eautoreconf
-       sed -i \
-               -e '/^SUBDIRS.*=/s/examples doc benchmarks/doc/' \
-               Makefile.in || die
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=( --disable-static )
-       autotools-utils_src_configure
-}
-
-src_compile() {
-       autotools-utils_src_compile
-       if use doc; then
-               cd "${BUILD_DIR}"
-               export VARTEXFONTS="${T}/fonts"
-               emake html pdf
-               DOCS=("${BUILD_DIR}/doc/cln.pdf")
-               HTML_DOCS=("${BUILD_DIR}/doc/")
-       fi
-}
-
-src_install() {
-       autotools-utils_src_install
-       if use examples; then
-               docompress -x /usr/share/doc/${PF}/examples
-               insinto /usr/share/doc/${PF}/examples
-               doins examples/*.cc
-       fi
-
-       find "${ED}" -name '*.la' -delete || die
-}

diff --git a/sci-libs/cln/cln-1.3.4.ebuild b/sci-libs/cln/cln-1.3.4.ebuild
deleted file mode 100644
index c57efba5bf2..00000000000
--- a/sci-libs/cln/cln-1.3.4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils flag-o-matic
-
-DESCRIPTION="Class library (C++) for numbers"
-HOMEPAGE="https://www.ginac.de/CLN/";
-SRC_URI="https://www.ginac.de/CLN/${P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="doc examples"
-
-RDEPEND="dev-libs/gmp:0="
-DEPEND="${RDEPEND}
-       doc? ( virtual/latex-base )"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.3.2-arm.patch )
-
-pkg_setup() {
-       use sparc && append-cppflags -DNO_ASM
-       use hppa && append-cppflags -DNO_ASM
-       use arm && append-cppflags -DNO_ASM
-}
-
-src_prepare() {
-       # avoid building examples
-       # do it in Makefile.in to avoid time consuming eautoreconf
-       sed -i \
-               -e '/^SUBDIRS.*=/s/examples doc benchmarks/doc/' \
-               Makefile.in || die
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=( --disable-static )
-       autotools-utils_src_configure
-}
-
-src_compile() {
-       autotools-utils_src_compile
-       if use doc; then
-               cd "${BUILD_DIR}"
-               export VARTEXFONTS="${T}/fonts"
-               emake html pdf
-               DOCS=("${BUILD_DIR}/doc/cln.pdf")
-               HTML_DOCS=("${BUILD_DIR}/doc/")
-       fi
-}
-
-src_install() {
-       autotools-utils_src_install
-       if use examples; then
-               docompress -x /usr/share/doc/${PF}/examples
-               insinto /usr/share/doc/${PF}/examples
-               doins examples/*.cc
-       fi
-
-       find "${ED}" -name '*.la' -delete || die
-}

diff --git a/sci-libs/cln/files/cln-1.3.2-arm.patch 
b/sci-libs/cln/files/cln-1.3.2-arm.patch
deleted file mode 100644
index 571bd24e68f..00000000000
--- a/sci-libs/cln/files/cln-1.3.2-arm.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/base/digitseq/cl_asm_arm_.cc   2009-05-10 16:32:30.000000000 -0400
-+++ src/base/digitseq/cl_asm_arm_.cc.new       2009-12-29 09:03:02.161401990 
-0500
-@@ -77,8 +77,8 @@
- #else
- #define DECLARE_FUNCTION(x)
- #endif
--#define GLABEL(x) _##x##:
--#define LABEL(x) x##:
-+#define GLABEL(x) _##x:
-+#define LABEL(x) x:
- #define RRX rrx
- #define END
- 

Reply via email to