commit: 85a070d31e5febb6971339aceb66cc166fd682cd Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Jul 28 16:42:58 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Jul 28 17:12:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a070d3
dev-lang/algol68g: bump to 3.6.0 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> dev-lang/algol68g/Manifest | 1 + dev-lang/algol68g/algol68g-3.6.0.ebuild | 41 +++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest index 5cfe302661ff..278ef1067f60 100644 --- a/dev-lang/algol68g/Manifest +++ b/dev-lang/algol68g/Manifest @@ -1,2 +1,3 @@ DIST algol68g-3.5.14.tar.gz 662412 BLAKE2B 95806e4c5ba2f2d74b4ea40abe56f07a6dcfff5c545489183a24c554b7d1281b058ca8adac1e4ad734b8a88c2ae7468aa1d445ef7e1a787f6d923a38a6f1c4f1 SHA512 307eade62ee63c70e094fe20c9c7b83de50185ccaca96389b9252e300a78fec40374d38598f972b2bee4369d86f48edc29f66a31177a0348085ec26f8b6f0e96 DIST algol68g-3.5.15.tar.gz 662704 BLAKE2B a2a2e7e9ddeec276a88b4c5841e02dbfb3589e098428c15498af775caeb99ed028a6c96d2f7e798c50340b093d93065ce0627ebda4dc107bf034ce9fa4c66daf SHA512 48cc170ba001cb33a30819c947a5f4d9d86b869c21fcc9bbb8cedc5366beb46bf4410f253bd302cb9bf48c59140cd37aaf89b051a88fc738309771d6de7fb794 +DIST algol68g-3.6.0.tar.gz 662789 BLAKE2B d30106b4bb8b97a53bf766f5f1abdb0a354d8d47e8a169065752241c82423a03c1adc700265ad915017b5dff6a8710fdc65cc12950d0b540ae45382f71118edc SHA512 dc86714867670385fe390ff76c2c32dfa41093230995d116dd2e065da7b58e8f21f800a84adbc58edbea108670e23c4284df44621c305248bb7051206749c8fb diff --git a/dev-lang/algol68g/algol68g-3.6.0.ebuild b/dev-lang/algol68g/algol68g-3.6.0.ebuild new file mode 100644 index 000000000000..703e6c6c442f --- /dev/null +++ b/dev-lang/algol68g/algol68g-3.6.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Algol 68 Genie compiler-interpreter" +HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html" +SRC_URI="https://jmvdveer.home.xs4all.nl/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline" + +RDEPEND=" + curl? ( net-misc/curl ) + gsl? ( sci-libs/gsl:= ) + mpfr? ( dev-libs/mpfr:= ) + plotutils? ( media-libs/plotutils ) + postgres? ( dev-db/postgresql:* ) + readline? ( sys-libs/readline:= ) +" +DEPEND=" + ${RDEPEND} +" + +PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" ) + +src_configure() { + local -a myconf=( + $(use_enable curl) + $(use_enable gsl) + $(use_enable mpfr) + $(use_enable ncurses curses) + $(use_enable plotutils) + $(use_enable postgres postgresql) + $(use_enable readline) + $(use_with ncurses) + ) + econf "${myconf[@]}" +}
