summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2024-07-14 18:40:30 -0400
committerMichael Orlitzky <mjo@gentoo.org>2024-07-14 18:40:30 -0400
commit7f93fa2143bc9164e166ca444b98c1a5f7555943 (patch)
tree524c545fc154d04f6c52264a6fdc19a05e8f77ea /sci-mathematics
parentsci-mathematics/pari: drop 2.15.4-r1 (diff)
downloadgentoo-7f93fa2143bc9164e166ca444b98c1a5f7555943.tar.gz
gentoo-7f93fa2143bc9164e166ca444b98c1a5f7555943.tar.bz2
gentoo-7f93fa2143bc9164e166ca444b98c1a5f7555943.zip
sci-mathematics/nauty: drop 2.8.8
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/nauty/nauty-2.8.8.ebuild79
1 files changed, 0 insertions, 79 deletions
diff --git a/sci-mathematics/nauty/nauty-2.8.8.ebuild b/sci-mathematics/nauty/nauty-2.8.8.ebuild
deleted file mode 100644
index 6651ae996063..000000000000
--- a/sci-mathematics/nauty/nauty-2.8.8.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-MY_PV=${PV//./_}
-DEBIAN_PATCH_VERSION=1
-
-DESCRIPTION="Computing automorphism groups of graphs and digraphs"
-HOMEPAGE="https://pallini.di.uniroma1.it/"
-
-SRC_URI="https://pallini.di.uniroma1.it/${PN}${MY_PV}.tar.gz
- mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}+ds-${DEBIAN_PATCH_VERSION}.debian.tar.xz
- https://src.fedoraproject.org/rpms/nauty/raw/rawhide/f/nauty-includes.patch"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~riscv ~x86"
-IUSE="cpu_flags_x86_popcnt examples"
-
-BDEPEND="sys-apps/help2man"
-DEPEND="dev-libs/gmp:0
- sys-libs/zlib
- sci-mathematics/cliquer"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}${MY_PV}"
-
-DOCS=( schreier.txt formats.txt changes24-28.txt )
-
-PATCHES=(
- "${WORKDIR}/debian/patches/upstream-fix-gt_numorbits.patch"
- "${WORKDIR}/debian/patches/upstream-zlib-dimacs2g.patch"
- "${WORKDIR}/debian/patches/upstream-C2help2man.patch"
- "${WORKDIR}/debian/patches/upstream-autotoolization.patch"
- "${DISTDIR}/nauty-includes.patch"
- "${WORKDIR}/debian/patches/unbundle-cliquer.patch"
- "${WORKDIR}/debian/patches/format.patch"
- "${WORKDIR}/debian/patches/uninitialized.patch"
- "${WORKDIR}/debian/patches/fall-off.patch"
- "${WORKDIR}/debian/patches/noreturn.patch"
-)
-
-src_prepare() {
- default
- rm makefile || die
-
- # The debian patch looks for <cliquer.h>, but the autotools-form of
- # cliquer installs that header as <cliquer/cliquer.h>.
- sed -e 's~<cliquer\.h>~<cliquer/cliquer\.h>~' -i nautycliquer.h || die
-
- eautoreconf
-}
-
-src_configure() {
- econf --disable-static \
- --enable-tls \
- --enable-generic \
- $(use_enable cpu_flags_x86_popcnt popcnt)
-}
-
-src_test() {
- # It arrives non-executable in v2.8.8.
- chmod +x runalltests || die
- default
-}
-
-src_install() {
- default
-
- if use examples; then
- docinto examples
- dodoc nautyex*.c
- fi
-
- find "${ED}" -name '*.la' -delete || die
-}