From d934827bf44b7cfcf6711964418148fa60877668 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 25 Nov 2020 22:39:15 +0000 Subject: gentoo resync : 25.11.2020 --- sci-mathematics/axiom/Manifest | 6 - sci-mathematics/axiom/axiom-200805.ebuild | 96 ------------ .../axiom/files/axiom-200711-gcl-configure.patch | 11 -- .../noweb-2.9-insecure-tmp-file.Makefile.patch | 10 -- .../files/noweb-2.9-insecure-tmp-file.patch.input | 168 --------------------- sci-mathematics/axiom/metadata.xml | 8 - 6 files changed, 299 deletions(-) delete mode 100644 sci-mathematics/axiom/Manifest delete mode 100644 sci-mathematics/axiom/axiom-200805.ebuild delete mode 100644 sci-mathematics/axiom/files/axiom-200711-gcl-configure.patch delete mode 100644 sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.Makefile.patch delete mode 100644 sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.patch.input delete mode 100644 sci-mathematics/axiom/metadata.xml (limited to 'sci-mathematics/axiom') diff --git a/sci-mathematics/axiom/Manifest b/sci-mathematics/axiom/Manifest deleted file mode 100644 index f59327eb0eb3..000000000000 --- a/sci-mathematics/axiom/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX axiom-200711-gcl-configure.patch 445 BLAKE2B 28686847a31e279674d20067d96b901cf75f9e12f52623974bd321e697ef9e8f5111048ef946f4b37ee6ccd07b3a562e5227cc6eb65da949d12c3ceee4fc051b SHA512 fe03fccc6d165e2bc6785c39aa0b3fa5d44761054931162e7b96667e1ad29c941bbb38f1eabb81a638eee3cefeeeb8bf3b31e69f3f2a8f3871fa192466bfda64 -AUX noweb-2.9-insecure-tmp-file.Makefile.patch 439 BLAKE2B 514a35388961232b000b08dd8ac3d50d36fd4249499f989290a58ccee312fda651a4cfc26b83b50a4907dbe1f0d44010342d0f7f385a11fd259eb3d4073fd360 SHA512 2f13d849e01a68b2c04a978889755fd8d5160d929dae3ccb398015e40044cfcf2f40eca4824171fc65cec381f956c947886762383adddeeff541eb5f509f0425 -AUX noweb-2.9-insecure-tmp-file.patch.input 4819 BLAKE2B 47039b204a972c9d3df2218ba83143decb8c498ba71d3a1a5666f56ce39a2d142b3894bb926ade4fc58c8f9ec270cc1d1fd369d60cb5390f83b60178dc2e6e4f SHA512 90c7407823d47e89ee1268a1f4d06c13439d0fa77aee23f0db7e5875c7535f1083dedde622d9b1f5586232389bcebd1353f7e2dd0535fec5d039af8eddde9b9d -DIST axiom-may2008-src.tgz 207172456 BLAKE2B 67c400e10d1f53e70cbb28c09b0cefa1071916550606bbcf6695cbc407984bbab824f09bc7451d64d1432adfe8b673a75e9043168bba235fc3e775ce8e83199f SHA512 36f137622a3179aa8c84ddbe6506681a67e1f8d69db430777c3eb6aca0da24c601b2c63f586ead838f74ae3b2043d46b63d742e1dd1191fbf3a10affb958662c -EBUILD axiom-200805.ebuild 2856 BLAKE2B 84e334a1604f69e348a83be115346e86e6f058190fec5bb06c12db86f74fd247c0267904a3ff53c48f1e09dbef169b7900ca1197c5fa2261094c3acb24012065 SHA512 c0b6c81d3fef16810db118700e10008703d2a3ca6eea3ff8b741a335d0a351ba82463c2f4d8c5b83cb0816e8decaa6638b91bfd5c96e6090f82a93bb6bd029d0 -MISC metadata.xml 269 BLAKE2B 5511cf8f01948aaca0488a6ed41ed923b130bfea9ba90d49f39bff86cfbd1e956b662d07406c76ca8e7e1d2ceb54547740e9f61a0a16041e5fcf18d713f90f03 SHA512 ecf9121172cdf04793bdbf6684060c7f15fb2a25606e53d8fc7dbc78efe24e264affa600c1ee3106ce8216b7093dff66eced3f78dd6ca7bd6ee589d1c7912cd6 diff --git a/sci-mathematics/axiom/axiom-200805.ebuild b/sci-mathematics/axiom/axiom-200805.ebuild deleted file mode 100644 index ff9ea32b60ba..000000000000 --- a/sci-mathematics/axiom/axiom-200805.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils multilib flag-o-matic - -DESCRIPTION="Axiom is a general purpose Computer Algebra system" -HOMEPAGE="http://axiom.axiom-developer.org/" -SRC_URI="http://www.axiom-developer.org/axiom-website/downloads/${PN}-may2008-src.tgz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -# NOTE: Do not strip since this seems to remove some crucial -# runtime paths as well, thereby, breaking axiom -RESTRICT="strip" - -DEPEND="virtual/latex-base - x11-libs/libXaw - sys-apps/debianutils - sys-process/procps" -RDEPEND="" - -S="${WORKDIR}"/${PN} - -pkg_setup() { - # for 2.6.25 kernels and higher we need to have - # /proc/sys/kernel/randomize_va_space set to somthing other - # than 2, otherwise gcl fails to compile (see bug #186926). - local current_setting=$(/sbin/sysctl kernel.randomize_va_space 2>/dev/null | cut -d' ' -f3) - if [[ ${current_setting} == 2 ]]; then - echo - eerror "Your kernel has brk randomization enabled. This will" - eerror "cause axiom to fail to compile *and* run (see bug #186926)." - eerror "You can issue:" - eerror - eerror " /sbin/sysctl -w kernel.randomize_va_space=1" - eerror - eerror "as root to turn brk randomization off temporarily." - eerror "However, when not using axiom you may want to turn" - eerror "brk randomization back on via" - eerror - eerror " /sbin/sysctl -w kernel.randomize_va_space=2" - eerror - eerror "since it results in a less secure kernel." - die "Kernel brk randomization detected" - fi -} - -src_prepare() { - cp "${FILESDIR}"/noweb-2.9-insecure-tmp-file.patch.input \ - "${S}"/zips/noweb-2.9-insecure-tmp-file.patch \ - || die "Failed to fix noweb" - cp "${FILESDIR}"/${PN}-200711-gcl-configure.patch \ - "${S}"/zips/gcl-2.6.7.configure.in.patch \ - || die "Failed to fix gcl-2.6.7 configure" - epatch "${FILESDIR}"/noweb-2.9-insecure-tmp-file.Makefile.patch - - # lots of strict-aliasing badness - append-flags -fno-strict-aliasing -} - -src_compile() { - # use gcl 2.6.7 - sed -e "s:GCLVERSION=gcl-2.6.8pre$:GCLVERSION=gcl-2.6.7:" \ - -i Makefile.pamphlet Makefile \ - || die "Failed to select proper gcl" - - # fix libXpm.a location - sed -e "s:X11R6/lib:$(get_libdir):g" -i Makefile.pamphlet \ - || die "Failed to fix libXpm lib paths" - - # Let the fun begin... - AXIOM="${S}"/mnt/linux emake -j1 -} - -src_install() { - emake DESTDIR="${D}"/opt/axiom COMMAND="${D}"/opt/axiom/mnt/linux/bin/axiom install - - mv "${D}"/opt/axiom/mnt/linux/* "${D}"/opt/axiom \ - || die "Failed to mv axiom into its final destination path." - rm -fr "${D}"/opt/axiom/mnt \ - || die "Failed to remove old directory." - - dodir /usr/bin - dosym /opt/axiom/bin/axiom /usr/bin/axiom - - sed -e "2d;3i AXIOM=/opt/axiom" \ - -i "${D}"/opt/axiom/bin/axiom \ - || die "Failed to patch axiom runscript!" - - dodoc changelog readme faq -} diff --git a/sci-mathematics/axiom/files/axiom-200711-gcl-configure.patch b/sci-mathematics/axiom/files/axiom-200711-gcl-configure.patch deleted file mode 100644 index a5ecb58d7cc7..000000000000 --- a/sci-mathematics/axiom/files/axiom-200711-gcl-configure.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure 2008-02-01 09:06:15.000000000 -0500 -+++ configure.new 2008-02-01 09:03:18.000000000 -0500 -@@ -1711,7 +1711,7 @@ - # results, and the version is kept in special file). - - if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then -- system=MP-RAS-`${AWK} '{print $3}' /etc/.relid'` -+ system=MP-RAS-`${AWK} '{print $3}' '/etc/.relid'` - fi - if test "`uname -s`" = "AIX" ; then - system=AIX-`uname -v`.`uname -r` diff --git a/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.Makefile.patch b/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.Makefile.patch deleted file mode 100644 index b8cd40ea03bb..000000000000 --- a/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.Makefile.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile~ 2005-09-05 19:50:31.000000000 +0100 -+++ Makefile 2006-02-17 17:08:31.000000000 +0000 -@@ -85,6 +85,7 @@ - ${PATCH} <${ZIPS}/noweb.modules.c.patch ; \ - cd ${OBJ}/noweb/src ; \ - ${PATCH} <${ZIPS}/noweb.src.Makefile.patch ; \ -+ ${PATCH} -p0 <${ZIPS}/noweb-2.9-insecure-tmp-file.patch ; \ - ./awkname ${AWK} ; \ - ${ENV} ${MAKE} BIN=${MNT}/${SYS}/bin/lib LIB=${MNT}/${SYS}/bin/lib \ - MAN=${MNT}/${SYS}/bin/man \ diff --git a/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.patch.input b/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.patch.input deleted file mode 100644 index 00288a8a3133..000000000000 --- a/sci-mathematics/axiom/files/noweb-2.9-insecure-tmp-file.patch.input +++ /dev/null @@ -1,168 +0,0 @@ ---- awkname -+++ awkname -@@ -5,7 +5,7 @@ - esac - - rc=0 --new=/tmp/$$.new; old=/tmp/$$.old -+new=$(tempfile -p new); old=$(tempfile -p old) - - for file in lib/emptydefn lib/unmarkup lib/toascii \ - awk/noidx awk/totex awk/tohtml awk/noindex \ ---- awk/totex.nw -+++ awk/totex.nw -@@ -24,7 +24,7 @@ - @ - On an ugly system, we have to put it in a file. - <>= --awkfile=/tmp/totex$$.awk -+awkfile=$(tempfile -p totex) - trap 'rm -f $awkfile; exit 1' 0 1 2 15 # clean up files - cat > $awkfile << 'EOF' - <> ---- lib/toascii -+++ lib/toascii -@@ -7,9 +7,9 @@ - *) echo "This can't happen -- $i passed to toascii" 1>&2 ; exit 1 ;; - esac - done --awkfile="tmp/awk$$.tmp" --textfile="/tmp/text$$.tmp" --tagsfile="/tmp/tags$$.tmp" -+awkfile=$(tempfile -p awk -s .tmp) -+textfile=$(tempfile -p text -s .tmp) -+tagsfile=$(tempfile -p tags -s .tmp) - export awkfile textfile tagsfile - trap 'rm -f $awkfile $textfile $tagsfile' 0 1 2 10 14 15 - nawk 'BEGIN { textfile=ENVIRON["textfile"] ---- shell/cpif -+++ shell/cpif -@@ -17,7 +17,7 @@ - 0) echo 'Usage: '`basename $0`' [ -eq -ne ] file...' 1>&2; exit 2 - esac - --new=/tmp/$$ -+new=$(tempfile) - trap 'rm -f $new; exit 1' 1 2 15 # clean up files - - cat >$new ---- shell/nonu -+++ shell/nonu -@@ -2,7 +2,7 @@ - LIB=/usr/public/pkg/noweb/lib - # attempt to convert nuweb to noweb using sam - --tmp=/tmp/nonu$$ -+tmp=$(tempfile -p nonu) - trap '/bin/rm -f $tmp; exit 1' 1 2 15 # clean up files - cp $1 $tmp || exit 1 - ---- shell/roff.nw -+++ shell/roff.nw -@@ -80,7 +80,7 @@ - other, and quoting each quote is ugly. The pragmatic solution is to - copy the awk program into a temporary file, using a shell here-document. - <>= --awkfile="/tmp/noweb$$.awk" -+awkfile=$(tempfile -p noweb -s .awk) - trap 'rm -f $awkfile' 0 1 2 10 14 15 - cat > $awkfile << 'EOF' - <> -@@ -662,12 +662,13 @@ - - base="`basename $1 | sed '/\./s/\.[^.]*$//'`" - tagsfile="$base.nwt" -+tmpfile=$(tempfile -p tags) - (echo ".so $macrodir/tmac.w" - if [ -r "$tagsfile" ]; then -- cp $tagsfile /tmp/tags.$$ -+ cp $tagsfile $tmpfile - $AWK '<> -- <>' /tmp/tags.$$ -- rm -f /tmp/tags.$$ -+ <>' $tmpfile -+ rm -f $tmpfile - fi - cat "$@") | - ($ROFF $opts 2>$tagsfile) ---- shell/noroff -+++ shell/noroff -@@ -35,9 +35,10 @@ - - base="`basename $1 | sed '/\./s/\.[^.]*$//'`" - tagsfile="$base.nwt" -+tmpfile=$(tempfile -p tags) - (echo ".so $macrodir/tmac.w" - if [ -r "$tagsfile" ]; then -- cp $tagsfile /tmp/tags.$$ -+ cp $tagsfile $tmpfile - $AWK '{ - if (sub(/^###TAG### / , "")) tags[$1] = $2 - else if (sub(/^###BEGINCHUNKS###/, "")) printf ".de CLIST\n.CLISTBEGIN\n" -@@ -88,8 +89,8 @@ - # print str3 - # print convquote(str3) - # } -- function tag(s) { if (s in tags) return tags[s]; else return "???" }' /tmp/tags.$$ -- rm -f /tmp/tags.$$ -+ function tag(s) { if (s in tags) return tags[s]; else return "???" }' $tmpfile -+ rm -f $tmpfile - fi - cat "$@") | - ($ROFF $opts 2>$tagsfile) ---- shell/toroff -+++ shell/toroff -@@ -9,7 +9,7 @@ - exit 1;; - esac - done --awkfile="/tmp/noweb$$.awk" -+awkfile=$(tempfile -p noweb -s .awk) - trap 'rm -f $awkfile' 0 1 2 10 14 15 - cat > $awkfile << 'EOF' - /^@begin docs 0$/ { if (delay) next } ---- lib/toascii.nw -+++ lib/toascii.nw -@@ -28,9 +28,9 @@ - Also arranged here is a temporary file for storage of the awk program on an - ugly system, as discussed below. - <>= --awkfile="tmp/awk$$.tmp" --textfile="/tmp/text$$.tmp" --tagsfile="/tmp/tags$$.tmp" -+awkfile=$(tempfile -p awk -s .tmp) || { echo "$0: Cannot create temporary file" >&2; exit 1; } -+textfile=$(tempfile -p text -s .tmp) || { echo "$0: Cannot create temporary file" >&2; exit 1; } -+tagsfile=$(tempfile -p tags -s .tmp) || { echo "$0: Cannot create temporary file" >&2; exit 1; } - export awkfile textfile tagsfile - trap 'rm -f $awkfile $textfile $tagsfile' 0 1 2 10 14 15 - @ %def textfile tagsfile awkfile ---- shell/roff.mm -+++ shell/roff.mm -@@ -214,7 +214,7 @@ - .ADDLIST 1a - .PRINTLIST - --awkfile="/tmp/noweb$$.awk" -+awkfile=$(tempfile -p noweb -s .awk) || { echo "$0: Cannot create temporary file" >&2; exit 1; } - trap 'rm -f $awkfile' 0 1 2 10 14 15 - cat > $awkfile \&<< 'EOF' - \c -@@ -1628,14 +1628,15 @@ - tagsfile="$base.nwt" - (echo ".so $macrodir/tmac.w" - if [ -r "$tagsfile" ]; then -- cp $tagsfile /tmp/tags.$$ -+ tagstemp=$(tempfile -p tags) || { echo "$0: Cannot create temporary file" >&2; exit 1; } -+ cp $tagsfile $tagstemp - $AWK '\c - .USE "action for \*[BEGINCONVQUOTE]tags\*[ENDCONVQUOTE] line" 11c - \& - \c - .USE "functions" 8a --\&' /tmp/tags.$$ -- rm -f /tmp/tags.$$ -+\&' $tagstemp -+ rm -f $tagstemp - fi - cat "$@") | - ($ROFF $opts 2>$tagsfile) diff --git a/sci-mathematics/axiom/metadata.xml b/sci-mathematics/axiom/metadata.xml deleted file mode 100644 index 514f7304d513..000000000000 --- a/sci-mathematics/axiom/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - sci-mathematics@gentoo.org - Gentoo Mathematics Project - - -- cgit v1.2.3