summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-06-26 15:29:22 +0000
committerJustin Lecher <jlec@gentoo.org>2013-06-26 15:29:22 +0000
commit258289a5a3140d0a7e96a52390489c135af10dc8 (patch)
tree021ec23a0fca4d610bbc9a4d2820e4533107f056 /sci-libs/mpir
parentclarify dependencies (diff)
downloadgentoo-2-258289a5a3140d0a7e96a52390489c135af10dc8.tar.gz
gentoo-2-258289a5a3140d0a7e96a52390489c135af10dc8.tar.bz2
gentoo-2-258289a5a3140d0a7e96a52390489c135af10dc8.zip
sci-libs/mpir: Drop old
(Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'sci-libs/mpir')
-rw-r--r--sci-libs/mpir/ChangeLog6
-rw-r--r--sci-libs/mpir/metadata.xml6
-rw-r--r--sci-libs/mpir/mpir-2.2.1.ebuild65
-rw-r--r--sci-libs/mpir/mpir-2.5.1.ebuild62
-rw-r--r--sci-libs/mpir/mpir-2.6.0-r1.ebuild63
-rw-r--r--sci-libs/mpir/mpir-2.6.0.ebuild62
6 files changed, 8 insertions, 256 deletions
diff --git a/sci-libs/mpir/ChangeLog b/sci-libs/mpir/ChangeLog
index 3a1e3fc18568..53800825d150 100644
--- a/sci-libs/mpir/ChangeLog
+++ b/sci-libs/mpir/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.22 2013/06/25 13:01:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.23 2013/06/26 15:29:22 jlec Exp $
+
+ 26 Jun 2013; Justin Lecher <jlec@gentoo.org> -mpir-2.2.1.ebuild,
+ -mpir-2.5.1.ebuild, -mpir-2.6.0.ebuild, -mpir-2.6.0-r1.ebuild, metadata.xml:
+ Drop old
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
Stable for amd64, wrt bug #474076
diff --git a/sci-libs/mpir/metadata.xml b/sci-libs/mpir/metadata.xml
index ea212fd9d22f..daf70f0500f8 100644
--- a/sci-libs/mpir/metadata.xml
+++ b/sci-libs/mpir/metadata.xml
@@ -3,8 +3,8 @@
<pkgmetadata>
<herd>sci</herd>
<maintainer>
- <email>tomka@gentoo.org</email>
- <name>Thomas Kahle</name>
+ <email>tomka@gentoo.org</email>
+ <name>Thomas Kahle</name>
</maintainer>
<longdescription>
MPIR is an open source multiprecision integer (bignum) library forked
@@ -17,6 +17,6 @@ professional and amateur mathematicians, computer scientists and
hobbyists.
</longdescription>
<use>
- <flag name='cpudetection'>Enables runtime cpudetection (useful for bindist, compatability on other CPUs)</flag>
+ <flag name="cpudetection">Enables runtime cpudetection (useful for bindist, compatability on other CPUs)</flag>
</use>
</pkgmetadata>
diff --git a/sci-libs/mpir/mpir-2.2.1.ebuild b/sci-libs/mpir/mpir-2.2.1.ebuild
deleted file mode 100644
index f7d4f4a763ee..000000000000
--- a/sci-libs/mpir/mpir-2.2.1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.2.1.ebuild,v 1.3 2011/05/14 09:33:32 tomka Exp $
-
-EAPI="3"
-
-inherit eutils autotools
-
-DESCRIPTION="Library for arbitrary precision integer arithmetic derived from version 4.2.1 of gmp"
-HOMEPAGE="http://www.mpir.org/"
-SRC_URI="http://www.mpir.org/${P}.tar.bz2"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+cxx cpudetection"
-
-DEPEND="x86? ( dev-lang/yasm )
- amd64? ( dev-lang/yasm )"
-RDEPEND=""
-
-src_prepare(){
- epatch \
- "${FILESDIR}/${PN}-2.2.0-yasm.patch" \
- "${FILESDIR}/${PN}-1.3.0-ABI-multilib.patch"
- # In the same way there was QA regarding executable stacks
- # with GMP we have some here as well. We cannot apply the
- # GMP solution as yasm is used, at least on x86/amd64.
- # Furthermore we are able to patch config.ac.
-
- ebegin "Patching assembler files to remove executable sections"
-
- for i in $(find . -type f -name '*.asm') ; do
- cat >> $i <<-EOF
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
- EOF
- done
-
- for i in $(find . -type f -name '*.as') ; do
- cat >> $i <<-EOF
- %ifidn __OUTPUT_FORMAT__,elf
- section .note.GNU-stack noalloc noexec nowrite progbits
- %endif
- EOF
- done
-
- eend
-
- eautoreconf
-}
-
-src_configure() {
-# beware that cpudetection aka fat binaries is x86/amd64 only.
-# Place mpir in profiles/arch/$arch/package.use.mask when making it available on $arch.
- econf \
- $(use_enable cxx) \
- $(use_enable cpudetection fat)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog README NEWS || die
-}
diff --git a/sci-libs/mpir/mpir-2.5.1.ebuild b/sci-libs/mpir/mpir-2.5.1.ebuild
deleted file mode 100644
index 3fd6c080a4b2..000000000000
--- a/sci-libs/mpir/mpir-2.5.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.5.1.ebuild,v 1.3 2012/08/03 19:53:49 bicatali Exp $
-
-EAPI=4
-
-inherit eutils autotools-utils
-
-DESCRIPTION="Library for arbitrary precision integer arithmetic (fork of gmp)"
-HOMEPAGE="http://www.mpir.org/"
-SRC_URI="http://www.mpir.org/${P}.tar.lzma"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="+cxx cpudetection static-libs"
-
-DEPEND="x86? ( dev-lang/yasm )
- amd64? ( dev-lang/yasm )"
-RDEPEND=""
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${PN}-2.2.0-yasm.patch \
- "${FILESDIR}"/${PN}-1.3.0-ABI-multilib.patch \
- "${FILESDIR}"/${PN}-2.5.1-automake-1.12.patch
-
- # In the same way there was QA regarding executable stacks
- # with GMP we have some here as well. We cannot apply the
- # GMP solution as yasm is used, at least on x86/amd64.
- # Furthermore we are able to patch config.ac.
- ebegin "Patching assembler files to remove executable sections"
- local i
- for i in $(find . -type f -name '*.asm') ; do
- cat >> $i <<-EOF
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
- EOF
- done
-
- for i in $(find . -type f -name '*.as') ; do
- cat >> $i <<-EOF
- %ifidn __OUTPUT_FORMAT__,elf
- section .note.GNU-stack noalloc noexec nowrite progbits
- %endif
- EOF
- done
- eend
- eautoreconf
-}
-
-src_configure() {
- # beware that cpudetection aka fat binaries is x86/amd64 only.
- # Place mpir in profiles/arch/$arch/package.use.mask
- # when making it available on $arch.
- myeconfargs+=(
- $(use_enable cxx)
- $(use_enable cpudetection fat)
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/mpir/mpir-2.6.0-r1.ebuild b/sci-libs/mpir/mpir-2.6.0-r1.ebuild
deleted file mode 100644
index f18e6567c1f8..000000000000
--- a/sci-libs/mpir/mpir-2.6.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r1.ebuild,v 1.1 2013/02/19 16:03:02 tomka Exp $
-
-EAPI=4
-
-inherit autotools-utils eutils toolchain-funcs
-
-DESCRIPTION="Library for arbitrary precision integer arithmetic (fork of gmp)"
-HOMEPAGE="http://www.mpir.org/"
-SRC_URI="http://www.mpir.org/${P}.tar.lzma"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="+cxx cpudetection static-libs"
-
-DEPEND="x86? ( dev-lang/yasm )
- amd64? ( dev-lang/yasm )"
-RDEPEND=""
-
-src_prepare() {
- tc-export CC
- epatch \
- "${FILESDIR}"/${PN}-2.6.0-yasm.patch \
- "${FILESDIR}"/${PN}-1.3.0-ABI-multilib.patch \
- "${FILESDIR}"/${PN}-2.5.1-automake-1.12.patch
-
- # In the same way there was QA regarding executable stacks
- # with GMP we have some here as well. We cannot apply the
- # GMP solution as yasm is used, at least on x86/amd64.
- # Furthermore we are able to patch config.ac.
- ebegin "Patching assembler files to remove executable sections"
- local i
- for i in $(find . -type f -name '*.asm') ; do
- cat >> $i <<-EOF
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
- EOF
- done
-
- for i in $(find . -type f -name '*.as') ; do
- cat >> $i <<-EOF
- %ifidn __OUTPUT_FORMAT__,elf
- section .note.GNU-stack noalloc noexec nowrite progbits
- %endif
- EOF
- done
- eend
- eautoreconf
-}
-
-src_configure() {
- # beware that cpudetection aka fat binaries is x86/amd64 only.
- # Place mpir in profiles/arch/$arch/package.use.mask
- # when making it available on $arch.
- myeconfargs+=(
- $(use_enable cxx)
- $(use_enable cpudetection fat)
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/mpir/mpir-2.6.0.ebuild b/sci-libs/mpir/mpir-2.6.0.ebuild
deleted file mode 100644
index 78c2408d0a6c..000000000000
--- a/sci-libs/mpir/mpir-2.6.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0.ebuild,v 1.4 2013/02/18 20:34:02 ago Exp $
-
-EAPI=4
-
-inherit eutils autotools-utils
-
-DESCRIPTION="Library for arbitrary precision integer arithmetic (fork of gmp)"
-HOMEPAGE="http://www.mpir.org/"
-SRC_URI="http://www.mpir.org/${P}.tar.lzma"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="+cxx cpudetection static-libs"
-
-DEPEND="x86? ( dev-lang/yasm )
- amd64? ( dev-lang/yasm )"
-RDEPEND=""
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${PN}-2.6.0-yasm.patch \
- "${FILESDIR}"/${PN}-1.3.0-ABI-multilib.patch \
- "${FILESDIR}"/${PN}-2.5.1-automake-1.12.patch
-
- # In the same way there was QA regarding executable stacks
- # with GMP we have some here as well. We cannot apply the
- # GMP solution as yasm is used, at least on x86/amd64.
- # Furthermore we are able to patch config.ac.
- ebegin "Patching assembler files to remove executable sections"
- local i
- for i in $(find . -type f -name '*.asm') ; do
- cat >> $i <<-EOF
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
- EOF
- done
-
- for i in $(find . -type f -name '*.as') ; do
- cat >> $i <<-EOF
- %ifidn __OUTPUT_FORMAT__,elf
- section .note.GNU-stack noalloc noexec nowrite progbits
- %endif
- EOF
- done
- eend
- eautoreconf
-}
-
-src_configure() {
- # beware that cpudetection aka fat binaries is x86/amd64 only.
- # Place mpir in profiles/arch/$arch/package.use.mask
- # when making it available on $arch.
- myeconfargs+=(
- $(use_enable cxx)
- $(use_enable cpudetection fat)
- )
- autotools-utils_src_configure
-}