commit: 39b966f23bc98a0a8762b7e539fd10393ad86c12 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Sep 18 19:15:48 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Sep 18 21:50:21 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39b966f2
dev-lang/algol68g: bump to 3.9.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> dev-lang/algol68g/Manifest | 1 + dev-lang/algol68g/algol68g-3.9.5.ebuild | 42 +++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest index ea2afc45c63e..c22459114878 100644 --- a/dev-lang/algol68g/Manifest +++ b/dev-lang/algol68g/Manifest @@ -1,3 +1,4 @@ DIST algol68g-3.5.15.tar.gz 662704 BLAKE2B a2a2e7e9ddeec276a88b4c5841e02dbfb3589e098428c15498af775caeb99ed028a6c96d2f7e798c50340b093d93065ce0627ebda4dc107bf034ce9fa4c66daf SHA512 48cc170ba001cb33a30819c947a5f4d9d86b869c21fcc9bbb8cedc5366beb46bf4410f253bd302cb9bf48c59140cd37aaf89b051a88fc738309771d6de7fb794 DIST algol68g-3.7.4.tar.gz 665675 BLAKE2B 00181f55c4cd1b347275bea42aa5742e8fcfd6efb89592575f34a2302552dab941268842ca2cab3c409b58e8be3c590dc5ae1c4955c6dd11277b728995a9d35c SHA512 a047bb3fca636e993aecb34ee8b416b5c5f5403e79e18aece74eb727cccd662db842ac295e330d56b3bb53562c68c00d82b489811d86eb873c82e83eda1e33d3 DIST algol68g-3.8.0.tar.gz 666200 BLAKE2B 4a75a40a2161f6271c5d0e3c61668a2acb0b7dc02073f8dd0dda9292273096980899646206e0eec1a7aac7d2f6b948b6ffd994451d4a90448cd0fe1269554963 SHA512 5826ee62acadbd077f43395c41fc88467e56485a1da290e6def3d1ca224ed360f265111b9fd4c808821eeccd4e2555e7e3fd460cdda875db0a0427af82025ee3 +DIST algol68g-3.9.5.tar.gz 669324 BLAKE2B 39142082924d8b2fc88ebb288b946d8c7fce16a1ebb6925e9b115e580562b3da3cdfe92a16809964578844b8736bdd4bda579f085363bb729d5f1bce3f4bfb5e SHA512 fb48aed8d7ec06af3e2caf424e0519e24eaff6e5491c85d84efe52a4686a9a8c7248ea3e4461b3865215172fcc5c843f9155579fedefa8f5723aa4630801aaca diff --git a/dev-lang/algol68g/algol68g-3.9.5.ebuild b/dev-lang/algol68g/algol68g-3.9.5.ebuild new file mode 100644 index 000000000000..7f9932a481f7 --- /dev/null +++ b/dev-lang/algol68g/algol68g-3.9.5.ebuild @@ -0,0 +1,42 @@ +# 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 + https://dev.gentoo.org/~xgqt/distfiles/mirrored/${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[@]}" +}
