From 514d1bbe260df2521fe60f1a3ec87cfcfde1a829 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Jul 2021 19:04:28 +0100 Subject: gentoo resync : 17.07.2021 --- dev-lang/parrot/Manifest | 2 +- dev-lang/parrot/parrot-8.1.0-r3.ebuild | 101 --------------------------------- dev-lang/parrot/parrot-8.1.0-r4.ebuild | 100 ++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+), 102 deletions(-) delete mode 100644 dev-lang/parrot/parrot-8.1.0-r3.ebuild create mode 100644 dev-lang/parrot/parrot-8.1.0-r4.ebuild (limited to 'dev-lang/parrot') diff --git a/dev-lang/parrot/Manifest b/dev-lang/parrot/Manifest index 5b04285ce23c..a43daad2ceb7 100644 --- a/dev-lang/parrot/Manifest +++ b/dev-lang/parrot/Manifest @@ -1,3 +1,3 @@ DIST parrot-8.1.0.tar.gz 4700495 BLAKE2B a90cd3c43be2a6812eaf5a5881cfd97e7011b5b82234c5eaf61e54cba923544a2f2c649387afe55d4e710a1e92ff31b1d32454a230fda6005b40778598f1915e SHA512 f5c4ffeb22a8f4949081ba9d98e3129eb067f6f0ed139248ca1d521570ccbada5dfa69ca2e390868a00ed275780552a5cd06eb271ff14ff753bf8375b7c658c2 -EBUILD parrot-8.1.0-r3.ebuild 2493 BLAKE2B 2c4699627e852eb6b9eb19765cbc17abebc97340fe087aa1b2d63af90e684ce4e13e78bbcd5638d3e48d6314983edbb57c6ba6c1d28c2b034745bcd2dde594b2 SHA512 44636b8d381991e5c331da817f22aab5507305c7c3a91202fb11d52f29495d191d5ddb8311051e532674419da8c813f9b1ced9010d1fc6724026e31dad71ea42 +EBUILD parrot-8.1.0-r4.ebuild 2497 BLAKE2B bb0e7eacc42ec6f8c0eb8e4b5faff568f5c18aa73b5494b7606ca682ed81b2b7c49a7a7a821ec681cacaeb286904fa4853a25c8f4d6fad0750152e28182fc20c SHA512 8e389ae6adda374e0f60feb4eb7585a3e47f4e76d66b93303297b247be1d1854c1632083ae9f2c3bf082809e8b1950b6806ef70daf16084d8f497af987fa662e MISC metadata.xml 215 BLAKE2B 0147839ca51bcb1aed1f611c6a8c04aea7b280c6ca8857677d4ee111e14fac125e4b1878283502b65f58da42ea8e52febe6dd827a2bec28f1f24bafe562f1acd SHA512 595468e29b960c38b6144f0314eaa244039140156c1edff5dd904ecd0e3ea8bf58ce07d724704011cbbe44f26442d6ee19dec7b558fe3773ceb240f931be9f66 diff --git a/dev-lang/parrot/parrot-8.1.0-r3.ebuild b/dev-lang/parrot/parrot-8.1.0-r3.ebuild deleted file mode 100644 index ad319217e9f1..000000000000 --- a/dev-lang/parrot/parrot-8.1.0-r3.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib - -# weird failures -RESTRICT="test" - -DESCRIPTION="Virtual machine designed to compile and execute bytecode for dynamic languages" -HOMEPAGE="http://www.parrot.org/" -SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" - -LICENSE="Artistic-2" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="opengl nls doc examples gdbm +gmp ssl +unicode pcre" - -CDEPEND="sys-libs/readline:0= - dev-libs/libffi:= - net-libs/libnsl:0= - opengl? ( media-libs/freeglut ) - nls? ( sys-devel/gettext ) - unicode? ( >=dev-libs/icu-2.6:= ) - gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) - gmp? ( >=dev-libs/gmp-4.1.4:0= ) - ssl? ( dev-libs/openssl:0= ) - pcre? ( dev-libs/libpcre ) -" -RDEPEND="${CDEPEND} - doc? ( dev-perl/JSON )" -DEPEND="${CDEPEND}" -BDEPEND="dev-lang/perl[doc?] - ${RDEPEND}" - -src_configure() { - myconf="--disable-rpath" - use unicode || myconf+=" --without-icu" - use ssl || myconf+=" --without-crypto" - use gdbm || myconf+=" --without-gdbm" - use nls || myconf+=" --without-gettext" - use gmp || myconf+=" --without-gmp" - use opengl || myconf+=" --without-opengl" - use pcre || myconf+=" --without-pcre" - - perl Configure.pl \ - --ccflags="${CFLAGS}" \ - --linkflags="${LDFLAGS}" \ - --prefix="${EPREFIX}"/usr \ - --libdir="${EPREFIX}"/usr/$(get_libdir) \ - --mandir="${EPREFIX}"/usr/share/man \ - --sysconfdir="${EPREFIX}"/etc \ - --sharedstatedir="${EPREFIX}"/var/lib/parrot \ - $myconf || die -} - -src_compile() { - export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib - # occasionally dies in parallel make - emake -j1 - if use doc ; then - emake -j1 html - fi -} - -src_test() { - emake -j1 test -} - -src_install() { - emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" - dosym parrot-ops2c /usr/bin/ops2c - rm -vfr "${ED}/usr/share/doc/${PF}/parrot" || die "Unable to prune excess docs" - DOCS=( - CREDITS - ChangeLog - DONORS.pod - PBC_COMPAT - PLATFORMS - README.pod - RESPONSIBLE_PARTIES - TODO - ) - use doc && DOCS+=( editor ) - use examples && DOCS+=( examples ) - use doc && HTML_DOCS=( - docs/html/developer.html - docs/html/DONORS.pod.html - docs/html/index.html - docs/html/ops.html - docs/html/parrotbug.html - docs/html/pdds.html - docs/html/pmc.html - docs/html/tools.html - docs/html/docs - docs/html/src - docs/html/tools - ) - einstalldocs -} diff --git a/dev-lang/parrot/parrot-8.1.0-r4.ebuild b/dev-lang/parrot/parrot-8.1.0-r4.ebuild new file mode 100644 index 000000000000..1612f5348710 --- /dev/null +++ b/dev-lang/parrot/parrot-8.1.0-r4.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual machine designed to compile and execute bytecode for dynamic languages" +HOMEPAGE="http://www.parrot.org/" +SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" + +LICENSE="Artistic-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="opengl nls doc examples gdbm +gmp ssl +unicode pcre" + +# weird failures +RESTRICT="test" + +CDEPEND="sys-libs/readline:0= + dev-libs/libffi:= + net-libs/libnsl:0= + virtual/libcrypt:= + opengl? ( media-libs/freeglut ) + nls? ( sys-devel/gettext ) + unicode? ( >=dev-libs/icu-2.6:= ) + gdbm? ( >=sys-libs/gdbm-1.8.3-r1:= ) + gmp? ( >=dev-libs/gmp-4.1.4:0= ) + ssl? ( dev-libs/openssl:0= ) + pcre? ( dev-libs/libpcre ) +" +RDEPEND="${CDEPEND} + doc? ( dev-perl/JSON )" +DEPEND="${CDEPEND}" +BDEPEND="dev-lang/perl[doc?] + ${RDEPEND}" + +src_configure() { + myconf="--disable-rpath" + use unicode || myconf+=" --without-icu" + use ssl || myconf+=" --without-crypto" + use gdbm || myconf+=" --without-gdbm" + use nls || myconf+=" --without-gettext" + use gmp || myconf+=" --without-gmp" + use opengl || myconf+=" --without-opengl" + use pcre || myconf+=" --without-pcre" + + perl Configure.pl \ + --ccflags="${CFLAGS}" \ + --linkflags="${LDFLAGS}" \ + --prefix="${EPREFIX}"/usr \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + --mandir="${EPREFIX}"/usr/share/man \ + --sysconfdir="${EPREFIX}"/etc \ + --sharedstatedir="${EPREFIX}"/var/lib/parrot \ + $myconf || die +} + +src_compile() { + export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib + # occasionally dies in parallel make + emake -j1 + if use doc ; then + emake -j1 html + fi +} + +src_test() { + emake -j1 test +} + +src_install() { + emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" + dosym parrot-ops2c /usr/bin/ops2c + rm -vfr "${ED}/usr/share/doc/${PF}/parrot" || die "Unable to prune excess docs" + DOCS=( + CREDITS + ChangeLog + DONORS.pod + PBC_COMPAT + PLATFORMS + README.pod + RESPONSIBLE_PARTIES + TODO + ) + use doc && DOCS+=( editor ) + use examples && DOCS+=( examples ) + use doc && HTML_DOCS=( + docs/html/developer.html + docs/html/DONORS.pod.html + docs/html/index.html + docs/html/ops.html + docs/html/parrotbug.html + docs/html/pdds.html + docs/html/pmc.html + docs/html/tools.html + docs/html/docs + docs/html/src + docs/html/tools + ) + einstalldocs +} -- cgit v1.2.3