commit: 1221ce7b3e08f6e02fc55af7278062b8edbd3c5b
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sat Nov 28 09:11:55 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sat Nov 28 09:11:55 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1221ce7b
sci-libs/omalloc: Removed deprecated package
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
sci-libs/omalloc/files/omalloc-0.9.6-gentoo.diff | 133 -----------------------
sci-libs/omalloc/files/parallel-build.patch | 25 -----
sci-libs/omalloc/metadata.xml | 15 ---
sci-libs/omalloc/omalloc-0.9.6.ebuild | 39 -------
4 files changed, 212 deletions(-)
diff --git a/sci-libs/omalloc/files/omalloc-0.9.6-gentoo.diff
b/sci-libs/omalloc/files/omalloc-0.9.6-gentoo.diff
deleted file mode 100644
index 6491bf47e..000000000
--- a/sci-libs/omalloc/files/omalloc-0.9.6-gentoo.diff
+++ /dev/null
@@ -1,133 +0,0 @@
---- Makefile.in
-+++ Makefile.in
-@@ -8,7 +8,8 @@
-
- SHELL = /bin/sh
- VERSION = @VERSION@
--
-+LIBOMALLOC_SO = libomalloc.so
-+LIBOMALLOC_SOVER= libomalloc.so.$(VERSION)
- ##
- ## various paths
- ##
-@@ -83,9 +84,11 @@
- omAllocSystem.h omFindExec.h omStats.h \
- omBin.h omDefaultConfig.h omStructs.h \
- omBinPage.h omInline.h omGetBackTrace.h \
--omReturn.h omRet2Info.h omAllocFunc.h
-+omReturn.h omRet2Info.h omAllocFunc.h \
-+omTables.h
-
- OBJS := $(CSOURCES:.c=.o) $(GSOURCES:.c=.o)
-+OBJS_SHARED := $(CSOURCES:.c=.o_pic) $(GSOURCES:.c=.o_pic)
- OBJS_NDEBUG := $(CSOURCES:.c=.o_ndebug) $(GSOURCES:.c=.o_ndebug)
-
- SOURCES=${CSOURCES} omGetPageSize.h omMallocSystem.h gmalloc.c dlmalloc.h
dlmalloc.c \
-@@ -103,6 +106,9 @@
- %.o: %.c omConfig.h omlimits.h omTables.h omalloc.h omTables.inc
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $<
-
-+%.o_pic: %.c omConfig.h omlimits.h mylimits.h omTables.h omalloc.h
omTables.inc
-+ ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -fPIC -c $< -o $@
-+
- %.o_ndebug: %.c omConfig.h omlimits.h mylimits.h omTables.h omalloc.h
omTables.inc
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -DOM_NDEBUG -c $< -o $@
-
-@@ -113,9 +119,12 @@
- %.aso: %.aso.o
- ./$< > $@
-
--all: libomalloc.a libomalloc_ndebug.a omalloc.h omalloc.o omalloc_debug.o
-+all: lib omalloc.h omalloc.o omalloc_debug.o
-+
-+lib: libomalloc.a $(LIBOMALLOC_SOVER)
-
--lib: libomalloc.a
-+$(LIBOMALLOC_SOVER): $(OBJS_SHARED) Makefile omConfig.h omlimits.h mylimits.h
-+ $(CC) -shared -Wl,-soname,$(LIBOMALLOC_SO).0 $(LDFLAGS) -o $@
$(OBJS_SHARED)
-
- libomalloc.a: $(OBJS) Makefile omConfig.h omlimits.h mylimits.h
- rm -f $@
-@@ -130,10 +139,10 @@
- omalloc.h: $(HEADERS)
- ./makeheader om_Alloc.h $@
-
--omalloc.o: omalloc.c
-+omalloc.o: omalloc.c omalloc.h
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -DOM_NDEBUG -c $< -o $@
-
--omalloc_debug.o: omalloc_debug.c
-+omalloc_debug.o: omalloc_debug.c omalloc.h
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $< -o $@
-
- omTables.inc: omTables
-@@ -190,37 +199,32 @@
- install-nolns: install
-
- install-libsingular:
-- $(MKINSTALLDIRS) $(includedir)/singular
-- $(INSTALL) omalloc.h $(includedir)/singular
-+ $(INSTALL) -D omalloc.h $(DESTDIR)$(includedir)/singular
-
- install: all
-- $(MKINSTALLDIRS) $(libdir)
-- $(MKINSTALLDIRS) $(includedir)
-- $(INSTALL_DATA) libomalloc.a $(libdir)
-- $(RANLIB) $(libdir)/libomalloc.a
-- $(INSTALL_DATA) libomalloc_ndebug.a $(libdir)
-- $(RANLIB) $(libdir)/libomalloc_ndebug.a
-- $(INSTALL_DATA) omalloc.o $(libdir)
-- $(INSTALL_DATA) omalloc_debug.o $(libdir)
-- $(INSTALL_DATA) omalloc.h $(includedir)
-- $(INSTALL_DATA) omalloc.c $(includedir)
-- $(INSTALL_DATA) omlimits.h $(includedir)
-- $(INSTALL_DATA) mylimits.h $(includedir)
-+ $(INSTALL_DATA) -D $(LIBOMALLOC_SOVER)
$(DESTDIR)$(libdir)/$(LIBOMALLOC_SOVER)
-+ $(LN_S) $(LIBOMALLOC_SOVER) $(DESTDIR)$(libdir)/$(LIBOMALLOC_SO)
-+ $(LN_S) $(LIBOMALLOC_SOVER) $(DESTDIR)$(libdir)/$(LIBOMALLOC_SO).0
-+ $(INSTALL_DATA) -D libomalloc.a $(DESTDIR)$(libdir)/libomalloc.a
-+ $(RANLIB) $(DESTDIR)$(libdir)/libomalloc.a
-+ $(INSTALL_DATA) omalloc.o $(DESTDIR)$(libdir)/omalloc.o
-+ $(INSTALL_DATA) -D omalloc.h $(DESTDIR)$(includedir)/omalloc.h
-+ $(INSTALL_DATA) omalloc.c $(DESTDIR)$(includedir)/omalloc.c
-+ $(INSTALL_DATA) omlimits.h $(DESTDIR)$(includedir)/omlimits.h
-+ $(INSTALL_DATA) mylimits.h $(DESTDIR)$(includedir)/mylimits.h
-
- install_all: install libomalloc_p.a
-- $(INSTALL_DATA) libomalloc_p.a $(libdir)
-- $(RANLIB) $(libdir)/libomalloc_p.a
-+ $(INSTALL_DATA) -D libomalloc_p.a $(DESTDIR)$(libdir)/libomalloc_p.a
-+ $(RANLIB) $(DESTDIR)$(libdir)/libomalloc_p.a
-
--install_min: libomalloc_ndebug.a omalloc.o
-- $(MKINSTALLDIRS) $(libdir)
-- $(MKINSTALLDIRS) $(includedir)
-- $(INSTALL_DATA) libomalloc_ndebug.a $(libdir)
-- $(RANLIB) $(libdir)/libomalloc_ndebug.a
-- $(INSTALL_DATA) omalloc.o $(libdir)
-- $(INSTALL_DATA) omalloc.h $(includedir)
-- $(INSTALL_DATA) omalloc.c $(includedir)
-- $(INSTALL_DATA) omlimits.h $(includedir)
-- $(INSTALL_DATA) mylimits.h $(includedir)
-+install_min: omalloc.o
-+ $(INSTALL_DATA) -D libomalloc.a $(DESTDIR)$(libdir)/libomalloc.a
-+ $(RANLIB) $(DESTDIR)$(libdir)/libomalloc.a
-+ $(INSTALL_DATA) omalloc.o $(DESTDIR)$(libdir)/omalloc.o
-+ $(INSTALL_DATA) -D omalloc.h $(DESTDIR)$(includedir)/omalloc.h
-+ $(INSTALL_DATA) omalloc.c $(DESTDIR)$(includedir)/omalloc.c
-+ $(INSTALL_DATA) omlimits.h $(DESTDIR)$(includedir)/omlimits.h
-+ $(INSTALL_DATA) mylimits.h $(DESTDIR)$(includedir)/mylimits.h
-
- uninstall:
- rm -f $(includedir)/omalloc.h $(includedir)/omalloc.c
-@@ -266,9 +270,8 @@
- ## check
- ##
-
--check: omtTest omtTest_ndebug
-+check: omtTest
- ./omtTest
-- ./omtTest_ndebug
-
- ##
- ## Below here is stuff for developpers
diff --git a/sci-libs/omalloc/files/parallel-build.patch
b/sci-libs/omalloc/files/parallel-build.patch
deleted file mode 100644
index 45aeb641d..000000000
--- a/sci-libs/omalloc/files/parallel-build.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- Makefile.in.org 2010-07-05 12:00:56.000000000 +0200
-+++ Makefile.in 2010-07-05 12:05:02.000000000 +0200
-@@ -83,7 +83,8 @@
- omAllocSystem.h omFindExec.h omStats.h \
- omBin.h omDefaultConfig.h omStructs.h \
- omBinPage.h omInline.h omGetBackTrace.h \
--omReturn.h omRet2Info.h omAllocFunc.h
-+omReturn.h omRet2Info.h omAllocFunc.h \
-+omTables.h
-
- OBJS := $(CSOURCES:.c=.o) $(GSOURCES:.c=.o)
- OBJS_NDEBUG := $(CSOURCES:.c=.o_ndebug) $(GSOURCES:.c=.o_ndebug)
-@@ -130,10 +131,10 @@
- omalloc.h: $(HEADERS)
- ./makeheader om_Alloc.h $@
-
--omalloc.o: omalloc.c
-+omalloc.o: omalloc.c omalloc.h
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -DOM_NDEBUG -c $< -o $@
-
--omalloc_debug.o: omalloc_debug.c
-+omalloc_debug.o: omalloc_debug.c omalloc.h
- ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $< -o $@
-
- omTables.inc: omTables
diff --git a/sci-libs/omalloc/metadata.xml b/sci-libs/omalloc/metadata.xml
deleted file mode 100644
index aa6213746..000000000
--- a/sci-libs/omalloc/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>[email protected]</email>
- <name>Thomas Kahle</name>
- </maintainer>
- <maintainer type="project">
- <email>[email protected]</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
-omalloc is the memory management of Singular
-</longdescription>
-</pkgmetadata>
diff --git a/sci-libs/omalloc/omalloc-0.9.6.ebuild
b/sci-libs/omalloc/omalloc-0.9.6.ebuild
deleted file mode 100644
index bfb71ea88..000000000
--- a/sci-libs/omalloc/omalloc-0.9.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs versionator
-
-Sing_PV=$(replace_all_version_separators -)
-Sing_DIR=$(get_version_component_range 1-3 ${MY_PV})
-MY_PV_SHARE=${MY_PV}
-
-DESCRIPTION="omalloc is the memory management of the Singular algebra system"
-HOMEPAGE="http://www.singular.uni-kl.de/"
-SRC_COM="http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/3-1-1"
-SRC_URI="${SRC_COM}/Singular-3-1-1-2.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S=${WORKDIR}/Singular-3-1-1/omalloc
-
-pkg_setup() {
- tc-export CC CXX
-}
-
-src_prepare (){
- epatch "${FILESDIR}"/${P}-gentoo.diff
-}
-
-src_configure() {
- econf \
- $(use_with debug)
-}
-
-src_test () {
- emake check
-}