From 4ead5818a5d230bcc875202c487761a9b786e945 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 4 Dec 2023 10:56:18 +0000 Subject: gentoo auto-resync : 04:12:2023 - 10:56:18 --- dev-lang/fuzion/Manifest | 2 +- dev-lang/fuzion/fuzion-0.085-r1.ebuild | 73 ++++++++++++++++++++++++++++++++++ dev-lang/fuzion/fuzion-0.085.ebuild | 72 --------------------------------- 3 files changed, 74 insertions(+), 73 deletions(-) create mode 100644 dev-lang/fuzion/fuzion-0.085-r1.ebuild delete mode 100644 dev-lang/fuzion/fuzion-0.085.ebuild (limited to 'dev-lang/fuzion') diff --git a/dev-lang/fuzion/Manifest b/dev-lang/fuzion/Manifest index 6b8f0d09d516..a247c1d1f46d 100644 --- a/dev-lang/fuzion/Manifest +++ b/dev-lang/fuzion/Manifest @@ -3,5 +3,5 @@ DIST fuzion-0.084.tar.gz 858114 BLAKE2B 0c0f30b22a85527ae7acf2150e18c79257ac60cd DIST fuzion-0.085.tar.gz 951247 BLAKE2B 5ae8999453759e0a8e5fb44b0aec833adb2c66ca9fea3e3092e2f298cc27a98c75abe0947337e9bb43920009d3bed8aa526a325fc58791d6177cb4f2d7ae7f23 SHA512 4a40eeffaa40b0568d90a20cf4125e7bddcc651fbe55b38866bb3cc90517749259336f776c33b762969986accae01e532b09418114b7c60e98377074bf144a17 EBUILD fuzion-0.083.ebuild 1314 BLAKE2B c7da07fb8a172d9d0124e7d835a76ff145f9352d4b008d3b0020e423f346c9fa9c169ac46672ddd8894f55e342c75679909da7e22983b989011ad255844eecfe SHA512 38a721c53b917f9eea7092f355bb7a83827183e5a6c6e4d53fbe7db47fa0b93e9c177dba47dcd7f64314cf87b7ce93f5b8a4970353bd621050093f53645f4ac8 EBUILD fuzion-0.084.ebuild 1340 BLAKE2B 2e490fa0bbc99582b0d86fb0328015170c2204b5c07cae1a9db123950b6c21232a2afdb467d6f002b3c26d7bb2dd53b5ac8926353d4c23bc67950da70a16a2bf SHA512 5ec1b75ed9775fedd9a83f358e25d5a992c6b1b64102ada90a026442c0504ec1bf5095679c2d2d9ff34609a3955e9b7159835c5495d318b38dcf660a260324fc -EBUILD fuzion-0.085.ebuild 1341 BLAKE2B 8f4a040dedbdd44bd8143f8b745e3f3ab3d3c87bfe882425c317f3787bcc310a17b001aea04cd099ea0d31a28a0265037d21c378e8c6dbfc336a3e2ad018ac91 SHA512 404aa42daa1ea44a96ac7b667c965434873ee89fd9dd3dde82a0f06324ad9786cbb5091b3c6c770a8d298fcb28f5d14fd335ebd697dff33ec7a5ace0cd91f1a8 +EBUILD fuzion-0.085-r1.ebuild 1381 BLAKE2B c94b86964694fbf237cc6c105d6246f438d69947b1dd6fc086f8ce34bbae36f012e0bd8f3e49b1d3dfa970b736eb4a9e320280333fc180433430d740ce1dfb00 SHA512 26d4608504fb4d691e0f06a2ad541da877902bf6a4ae1b965dd0158b64fabc1c8bcc53b902d3ea3fbfc7aa648e76e15caa5cb694ef489f76101ba0a6c0a0938a MISC metadata.xml 678 BLAKE2B 1785e807c53bd64819e1e7510d96a6d81bf316351d38633cd45f506fe79faad7334fb13ca646366c31146f66301dfbe638a71fffee0726867f6863340b7d14f3 SHA512 d61ffbe425b6a6b84dc1f813f279c0e655650e8b5273c69492f1092414ae956c8f1413bda3a87e5a28783a1d219d7d69282eeeaab1c8e6227a04c05ca0bea27b diff --git a/dev-lang/fuzion/fuzion-0.085-r1.ebuild b/dev-lang/fuzion/fuzion-0.085-r1.ebuild new file mode 100644 index 000000000000..65bbd19ac6a8 --- /dev/null +++ b/dev-lang/fuzion/fuzion-0.085-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-2 + +DESCRIPTION="A language with a focus on simplicity, safety and correctness" +HOMEPAGE="https://flang.dev/ + https://github.com/tokiwa-software/fuzion/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/tokiwa-software/${PN}.git" +else + SRC_URI="https://github.com/tokiwa-software/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=virtual/jre-17:* + dev-libs/boehm-gc +" +# jdk:17 for https://bugs.gentoo.org/916689 +DEPEND=" + virtual/jdk:17 +" +BDEPEND=" + test? ( sys-devel/clang:* ) +" + +DOCS=( README.md release_notes.md ) + +src_compile() { + emake -j1 +} + +src_test() { + emake -j1 run_tests_parallel +} + +src_install() { + # Remove unnecessary files from build directory. bug #893450 + local torm + local torm_path + for torm in tests run_tests.{failures,results} ; do + torm_path="${S}/build/${torm}" + + if [[ -e "${torm_path}" ]] ; then + rm -r "${torm_path}" || die "failed to remove ${torm_path}" + fi + done + + insinto "/usr/share/${PN}" + doins -r build/. + insopts -m755 + doins -r build/bin + + local bin + for bin in fz fzjava ; do + dosym -r "/usr/share/${PN}/bin/${bin}" "/usr/bin/${bin}" + done + + einstalldocs +} diff --git a/dev-lang/fuzion/fuzion-0.085.ebuild b/dev-lang/fuzion/fuzion-0.085.ebuild deleted file mode 100644 index ad9ea106d3a1..000000000000 --- a/dev-lang/fuzion/fuzion-0.085.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit java-pkg-2 - -DESCRIPTION="A language with a focus on simplicity, safety and correctness" -HOMEPAGE="https://flang.dev/ - https://github.com/tokiwa-software/fuzion/" - -if [[ "${PV}" == *9999* ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/tokiwa-software/${PN}.git" -else - SRC_URI="https://github.com/tokiwa-software/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" - - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=virtual/jre-17:* - dev-libs/boehm-gc -" -DEPEND=" - >=virtual/jdk-17:* -" -BDEPEND=" - test? ( sys-devel/clang:* ) -" - -DOCS=( README.md release_notes.md ) - -src_compile() { - emake -j1 -} - -src_test() { - emake -j1 run_tests_parallel -} - -src_install() { - # Remove unnecessary files from build directory. bug #893450 - local torm - local torm_path - for torm in tests run_tests.{failures,results} ; do - torm_path="${S}/build/${torm}" - - if [[ -e "${torm_path}" ]] ; then - rm -r "${torm_path}" || die "failed to remove ${torm_path}" - fi - done - - insinto "/usr/share/${PN}" - doins -r build/. - insopts -m755 - doins -r build/bin - - local bin - for bin in fz fzjava ; do - dosym -r "/usr/share/${PN}/bin/${bin}" "/usr/bin/${bin}" - done - - einstalldocs -} -- cgit v1.2.3