summaryrefslogtreecommitdiff
path: root/dev-lang/regina-rexx
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-10-31 17:09:18 +0100
committerMichał Górny <mgorny@gentoo.org>2016-10-31 17:10:11 +0100
commit27b468288bbff5dbcec12c7786efdf4ef5b9bd3e (patch)
tree932d91f1c5801ce5a68abde0d812c5b2f12880de /dev-lang/regina-rexx
parent6e639e368bc6440190dd6002aaa9c8daa1c8f025 (diff)
downloadgentoo-27b468288bbff5dbcec12c7786efdf4ef5b9bd3e.tar.gz
gentoo-27b468288bbff5dbcec12c7786efdf4ef5b9bd3e.tar.xz
dev-lang/regina-rexx: Remove buggy 3.6 version (stable, masked), #515944
Diffstat (limited to 'dev-lang/regina-rexx')
-rw-r--r--dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch28
-rw-r--r--dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild48
2 files changed, 0 insertions, 76 deletions
diff --git a/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch b/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch
deleted file mode 100644
index af4b0244cb9..00000000000
--- a/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/Makefile.in 2011-12-31 09:50:28.000000000 +0100
-+++ b/Makefile.in 2012-12-15 18:29:37.691579584 +0100
-@@ -92,6 +92,7 @@
- REXX_BINARY_LIBS = @REXX_BINARY_LIBS@
- REGINA_BINARY_LIBS = @REGINA_BINARY_LIBS@
- LIBREGINA_BINARY_LIBS = @LIBREGINA_BINARY_LIBS@
-+LIBREGUTIL_BINARY_LIBS = @LIBREGINA_BINARY_LIBS@ @REXX_BINARY_LIBS@
- THREADER_BINARY_LIBS = @THREADER_BINARY_LIBS@
- EXECISER_BINARY_LIBS = @EXECISER_BINARY_LIBS@
- STACK_BINARY_LIBS = @STACK_BINARY_LIBS@
-@@ -926,7 +927,7 @@
- # $(CC) -c $(COPT) $(CC2O) $(DYN_COMP) $(regutildir)/regtrig.c
-
- $(SHLPRE)regutil$(MODPST): $(REGUTILOBJ) $(SHLPRE)$(SHLFILE)$(SHLPST) $(REGUTILEXP)
-- $(LD_RXLIB_UTILA) $(REGUTILEXPORTS) $(REGUTILOBJ) $(LD_RXLIB_UTILB) $(BOTHLIBS)
-+ $(LD_RXLIB_UTILA) $(REGUTILEXPORTS) $(REGUTILOBJ) $(LD_RXLIB_UTILB) $(BOTHLIBS) $(LIBREGUTIL_BINARY_LIBS)
- $(RANLIB_DYNAMIC)
-
-
-@@ -1009,7 +1010,7 @@
- $(INSTALL) -m 755 -c ./rxqueue$(binarybitprefix)$(EXE) $(DESTDIR)$(bindir)/rxqueue$(binarybitprefix)$(EXE)
- $(INSTALL) -m 755 -c ./rxstack$(binarybitprefix)$(EXE) $(DESTDIR)$(bindir)/rxstack$(binarybitprefix)$(EXE)
- $(INSTALL) -m 755 -c ./regina-config $(DESTDIR)$(bindir)/regina-config
-- -$(INSTALL) -m 755 -c ./rxstack.init.d $(DESTDIR)$(sysconfdir)/rc.d/init.d/rxstack
-+
- @echo "The system startup/shutdown script; rxstack, may have been installed into $(sysconfdir)/rc.d/init.d"
- @echo "You need to create the appropriate links to this script to start and stop rxstack automatically."
- -$(INSTALL) -m 755 -c ./$(LIBPRE)$(LIBFILE)$(LIBPST) $(DESTDIR)$(libdir)/$(LIBPRE)$(LIBFILE)$(LIBPST)
diff --git a/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild b/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild
deleted file mode 100644
index b3f95488eca..00000000000
--- a/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit autotools eutils toolchain-funcs
-
-DESCRIPTION="Portable Rexx interpreter"
-HOMEPAGE="http://regina-rexx.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/Regina-REXX-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1 MPL-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-
-S=${WORKDIR}/Regina-REXX-${PV}
-
-MAKEOPTS+=" -j1"
-
-DOCS=( BUGS HACKERS.txt README.Unix README_SAFE TODO )
-
-src_prepare() {
- sed -e 's/CFLAGS=/UPSTREAM_CFLAGS=/' -i common/incdebug.m4 || die
-
- epatch "${FILESDIR}"/${PN}-3.6-gentoo.patch
-
- eautoconf
- tc-export CC #don't move it as tc-getCC
-}
-
-src_compile() {
- emake LIBEXE="$(tc-getAR)"
-}
-
-src_install() {
- default
- newinitd "${FILESDIR}"/rxstack-r1 rxstack
-}
-
-pkg_postinst() {
- elog "You may want to run"
- elog
- elog "\trc-update add rxstack default"
- elog
- elog "to enable Rexx queues (optional)."
-}