From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A742715814C for ; Sat, 16 Sep 2023 14:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA8832BC029; Sat, 16 Sep 2023 14:48:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 717042BC029 for ; Sat, 16 Sep 2023 14:48:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83F3C335D3C for ; Sat, 16 Sep 2023 14:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BD5D11C0 for ; Sat, 16 Sep 2023 14:48:12 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1694875652.22555208f1d31be10c804710fedef8baa2695cca.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/fennel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/fennel/Manifest dev-lang/fennel/fennel-1.3.0.ebuild X-VCS-Directories: dev-lang/fennel/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 22555208f1d31be10c804710fedef8baa2695cca X-VCS-Branch: master Date: Sat, 16 Sep 2023 14:48:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2b8c3c70-4cab-4d32-ae69-3c9332ebac2f X-Archives-Hash: a7114750e88e2975d3e388440743bb9d commit: 22555208f1d31be10c804710fedef8baa2695cca Author: Maciej Barć gentoo org> AuthorDate: Sat Sep 16 12:49:07 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Sep 16 14:47:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22555208 dev-lang/fennel: drop old 1.3.0 Signed-off-by: Maciej Barć gentoo.org> dev-lang/fennel/Manifest | 1 - dev-lang/fennel/fennel-1.3.0.ebuild | 44 ------------------------------------- 2 files changed, 45 deletions(-) diff --git a/dev-lang/fennel/Manifest b/dev-lang/fennel/Manifest index ed06aecc5add..685acef2fe52 100644 --- a/dev-lang/fennel/Manifest +++ b/dev-lang/fennel/Manifest @@ -1,2 +1 @@ -DIST fennel-1.3.0.tar.gz 280241 BLAKE2B b8b79b7c439d68e8e3e3eedbd50e8789cccad2a278df908d7432501722077ab884a0d18927a853fea70fc1ec682e929d5337b087662b64b0da4e0fffcad62d9f SHA512 b4b9b96f71d1cbbf5c81eae737aca01f7d417a227925d19008a923f5045a86a355297f927ecdb719653097f73d6d6df148955b1973e4483dd14e863384ca0ff3 DIST fennel-1.3.1.tar.gz 293564 BLAKE2B 9fc465a06d8df86468197408dbb2c4e1c20a630911d1d999763cb274ed5bafa8dc4260416f10edc294bb9b7e56379f7842137d016059f0f2bc61d15391449447 SHA512 421d479c4527898123020ecc231e5eea38c5f5f1216f4a0bed0a39b8123d6a21ba1b0e876d281dfde447fe000e34a81f706303b4daa2626cc7559c063990cd5f diff --git a/dev-lang/fennel/fennel-1.3.0.ebuild b/dev-lang/fennel/fennel-1.3.0.ebuild deleted file mode 100644 index 0723a737c2b2..000000000000 --- a/dev-lang/fennel/fennel-1.3.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Fails to build with with "lua5-1". -LUA_COMPAT=( lua5-{3,4} luajit ) - -inherit lua-single - -DESCRIPTION="Lisp-like language that compiles to Lua" -HOMEPAGE="https://fennel-lang.org/ - https://sr.ht/~technomancy/fennel/" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://git.sr.ht/~technomancy/${PN}" -else - SRC_URI="https://git.sr.ht/~technomancy/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0/${PV}" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -RDEPEND="${LUA_DEPS}" -BDEPEND="${RDEPEND}" - -src_prepare() { - default - - # Turn off broken(?) tests. bug https://bugs.gentoo.org/906351 - sed -i -e 's|"failures",||' -e 's|"repl",||' test/init.lua || die -} - -src_install() { - emake LUA_LIB_DIR="${ED}/$(lua_get_lmod_dir)" PREFIX="${ED}/usr" install - - rm -r "${ED}"/usr/man || die - doman ${PN}.1 - - dodoc *.md -}