mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-libs/re2: remove old
Package-Manager: portage-2.3.2_p8
This commit is contained in:
@@ -1,4 +1 @@
|
||||
DIST re2-20130115.tgz 1020951 SHA256 a95d83ed8203817587f7cc368b6f7199d8a4b1558372c306b07201058b92e1fe SHA512 ef1378d89397bf594ece7817ef91171e467a3408046f769eca08beba900a0e70f652e7c4e3b667b3a9d5cef044b08ed74ef7d564ffb965ab75bb9a3964c9ab5a WHIRLPOOL 2cbf47b1816e35e5c7f359a310b4421ad635d1513167ffabf98db84397be800f8b98d4808705754f0e2db14bbeb0d62e47ac3abb385e299c503126a9f874daf5
|
||||
DIST re2-20130712.tgz 1028311 SHA256 c30e43524280ebc2b9afa8c40ad477d0b2665bc81b663e9ae1b8b48e053af54b SHA512 910e7c7f5b3268746355c2e14dc6a4e32105207abcf8cb56b76fc554be41768e4e4a6b526c9335e95be0bb111025876b61ede1cfebcbec4a4062d53bb1448e08 WHIRLPOOL e5cf26a6c8586503c1639dd3f528cace8a4d7ca4c4ff97e08b12f45753ff67ad78656513658eabd678ac8ab88f1de5279960428fffe1b9e0535afdba44e7e8a3
|
||||
DIST re2-20140304.tgz 1050493 SHA256 0bffd1a57de2f4b218ca0f77d8850bfd59c82944a98256c6edba25260e0196a7 SHA512 a426e8d69d2c7614087990180539c5b1aa2c544dee14b144098f810b76b6062d7de9efaf1e90e83c61c8e4382a066201862d09965f1a6a9f86e2912011ad9d40 WHIRLPOOL d998a6dd9edac52fe0c4ed7e895940380d9b67220711d68aed02294c8f65a644a59f77bddce116ccf79860c633046fa2b5060ef45d5cb5ea5bc0c1965cdce052
|
||||
DIST re2-2016-05-01.tar.gz 399509 SHA256 d9d13f0ea4e1c6628b1cb85eeee284d4fdd4948da94b1f205096254927092e3d SHA512 6d37ab1eae51a73f60d3c8280ea1162c420638363f0eb1313d7c2d5cee65a5abd4c2927da1a53572afbcb7d07fac2993a7e54c6cbc85e24aaae93c46dab19b14 WHIRLPOOL b601349800341d213b01219cf2171873be551488c71c2c06fbab1da27c20719fca12e0cfac30ac4e8ed0eb062a445b4c008491fd0e379f629434e0c9b4649a7e
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils multilib multilib-build toolchain-funcs
|
||||
|
||||
DESCRIPTION="An efficent, principled regular expression library"
|
||||
HOMEPAGE="https://code.google.com/p/re2/"
|
||||
SRC_URI="https://re2.googlecode.com/files/${PN}-${PV##*_p}.tgz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE=""
|
||||
|
||||
# TODO: the directory in the tarball should really be versioned.
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
# Fix problems with FilteredRE2 symbols not being exported.
|
||||
epatch "${FILESDIR}/${PN}-symbols-r0.patch"
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
mymake() {
|
||||
cd "${BUILD_DIR}" || die
|
||||
local makeopts=(
|
||||
AR="$(tc-getAR)"
|
||||
CXX="$(tc-getCXX)"
|
||||
CXXFLAGS="${CXXFLAGS} -pthread"
|
||||
LDFLAGS="${LDFLAGS} -pthread"
|
||||
NM="$(tc-getNM)"
|
||||
)
|
||||
emake "${makeopts[@]}" "$@"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
multilib_foreach_abi mymake
|
||||
}
|
||||
|
||||
src_test() {
|
||||
multilib_foreach_abi mymake shared-test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
myinstall() {
|
||||
cd "${BUILD_DIR}" || die
|
||||
emake DESTDIR="${ED}" prefix=usr libdir=usr/$(get_libdir) install
|
||||
multilib_check_headers
|
||||
}
|
||||
multilib_foreach_abi myinstall
|
||||
dodoc AUTHORS CONTRIBUTORS README doc/syntax.txt
|
||||
dohtml doc/syntax.html
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils multilib toolchain-funcs
|
||||
|
||||
DESCRIPTION="An efficent, principled regular expression library"
|
||||
HOMEPAGE="https://code.google.com/p/re2/"
|
||||
SRC_URI="https://re2.googlecode.com/files/${PN}-${PV##*_p}.tgz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm x86"
|
||||
IUSE=""
|
||||
|
||||
# TODO: the directory in the tarball should really be versioned.
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
# Fix problems with FilteredRE2 symbols not being exported.
|
||||
epatch "${FILESDIR}/${PN}-symbols-r0.patch"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
makeopts=(
|
||||
AR="$(tc-getAR)"
|
||||
CXX="$(tc-getCXX)"
|
||||
CXXFLAGS="${CXXFLAGS} -pthread"
|
||||
LDFLAGS="${LDFLAGS} -pthread"
|
||||
NM="$(tc-getNM)"
|
||||
)
|
||||
emake "${makeopts[@]}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake "${makeopts[@]}" shared-test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" prefix=usr libdir=usr/$(get_libdir) install
|
||||
# TODO: the upstream should not build static library at all.
|
||||
rm "${ED}/usr/$(get_libdir)/libre2.a" || die
|
||||
dodoc AUTHORS CONTRIBUTORS README doc/syntax.txt
|
||||
dohtml doc/syntax.html
|
||||
}
|
||||
@@ -1,52 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils multilib multilib-minimal toolchain-funcs
|
||||
|
||||
DESCRIPTION="An efficent, principled regular expression library"
|
||||
HOMEPAGE="https://code.google.com/p/re2/"
|
||||
SRC_URI="https://re2.googlecode.com/files/${PN}-${PV##*_p}.tgz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE=""
|
||||
|
||||
# TODO: the directory in the tarball should really be versioned.
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-compile-r0.patch"
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
mymake() {
|
||||
local makeopts=(
|
||||
AR="$(tc-getAR)"
|
||||
CXX="$(tc-getCXX)"
|
||||
CXXFLAGS="${CXXFLAGS} -pthread"
|
||||
LDFLAGS="${LDFLAGS} -pthread"
|
||||
NM="$(tc-getNM)"
|
||||
)
|
||||
emake "${makeopts[@]}" "$@"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
mymake
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
mymake static-test
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake DESTDIR="${ED}" prefix=usr libdir=usr/$(get_libdir) install
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
dodoc AUTHORS CONTRIBUTORS README doc/syntax.txt
|
||||
dohtml doc/syntax.html
|
||||
}
|
||||
@@ -1,45 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit flag-o-matic eutils multilib multilib-minimal toolchain-funcs
|
||||
|
||||
DESCRIPTION="An efficent, principled regular expression library"
|
||||
HOMEPAGE="https://code.google.com/p/re2/"
|
||||
SRC_URI="https://re2.googlecode.com/files/${PN}-${PV##*_p}.tgz"
|
||||
|
||||
LICENSE="BSD"
|
||||
# Symbols removed in version 20140110
|
||||
# http://upstream-tracker.org/compat_reports/re2/20131024_to_20140110/abi_compat_report.html
|
||||
# https://code.google.com/p/re2/issues/detail?id=111
|
||||
SLOT="0/0.20140110"
|
||||
KEYWORDS="amd64 ~arm ~arm64 x86"
|
||||
IUSE=""
|
||||
|
||||
# TODO: the directory in the tarball should really be versioned.
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export AR CXX NM
|
||||
append-cxxflags -pthread
|
||||
append-ldflags -pthread
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
emake static-test
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake DESTDIR="${ED}" prefix=usr libdir=usr/$(get_libdir) install
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
dodoc AUTHORS CONTRIBUTORS README doc/syntax.txt
|
||||
dohtml doc/syntax.html
|
||||
}
|
||||
Reference in New Issue
Block a user