diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-02-24 22:22:16 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-02-24 22:50:21 +0100 |
commit | 3f0bbd0858d22072072ba3b9e448ab7bef55a683 (patch) | |
tree | 32e1e88e83233ac7bc33a10abdce4e7d7b5711ca /dev-lang/algol68g | |
parent | dev-lang/algol68g: bump to 3.5.1 (diff) | |
download | gentoo-3f0bbd0858d22072072ba3b9e448ab7bef55a683.tar.gz gentoo-3f0bbd0858d22072072ba3b9e448ab7bef55a683.tar.bz2 gentoo-3f0bbd0858d22072072ba3b9e448ab7bef55a683.zip |
dev-lang/algol68g: drop old 3.4.7
Bug: https://bugs.gentoo.org/920635
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/algol68g')
-rw-r--r-- | dev-lang/algol68g/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/algol68g/algol68g-3.4.7.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest index cfec3311d467..4bc3ab32da15 100644 --- a/dev-lang/algol68g/Manifest +++ b/dev-lang/algol68g/Manifest @@ -1,4 +1,3 @@ DIST algol68g-3.4.6.tar.gz 661358 BLAKE2B 1a825534833f2b4ff4025c3ca2d2f022c1c78cf8f8a365cc12e97af1cc4994228b705d6395e5c967d6a195cd2fc542212025133e6410d4876d43c36952dc60c0 SHA512 831585cb90c524014cc199256dbcf663868b37804071774e2eac5c64944e25513df4584421042d02140ee2695a918caec9b99c837d117e775d3721bf09065fb4 -DIST algol68g-3.4.7.tar.gz 661381 BLAKE2B ef7b72dd4a03f64c27b3907b8602bedc8cb11485a71280ea4d1da1dc984b32d94e99d394d74e73235c607a4d41585df72b661b584cfb2f8b158fe37f2c08fa73 SHA512 0c45968f08b1ccbdad2e57b9045a12641a5420957de15b8e62e5e8e699d512d8d4e7f4f4077ec89ba1713a9e8f067e57292245f602bc5546431a70598fa39db0 DIST algol68g-3.5.0.tar.gz 661454 BLAKE2B b46f96672cd9ab18cd74347a3fc71cfb686f10dc6cecd04bfa3dff19f57cc510bc08f61a1562097a0178a3ce562c7348cb3eaed97f0847e69de8dd202a9818ac SHA512 60cba4440a90df30c9114ff6e5e3779b97f0dcdf35778c7ae4c1f21cfacf1d6e16fa3bca353dcb41fb09de9d66b102d7db2ffabb71a2472277a8efb15c12896e DIST algol68g-3.5.1.tar.gz 661670 BLAKE2B ec0aa47f367af621f3cf8ebad81bd501bac31238b4a918943917fec4d9f66cf57f98f5bd4c4c02d315a8f1ac2fd789aafb6e331289fac417abf9301a2a5d339d SHA512 764038c7db567d5fc130d4c324b74f43d7dbcfd89efb7b12b1a6983314a7e13f17e105fa783fb3397fff3773b69699ca3f5fd3be873229db9bf91582f7bf52f4 diff --git a/dev-lang/algol68g/algol68g-3.4.7.ebuild b/dev-lang/algol68g/algol68g-3.4.7.ebuild deleted file mode 100644 index 6689c5616025..000000000000 --- a/dev-lang/algol68g/algol68g-3.4.7.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2024 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[@]}" -} |