public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/chez/
Date: Wed, 13 Mar 2024 16:40:21 +0000 (UTC)	[thread overview]
Message-ID: <1710348012.bc06ea53ac8b3a977551a8ba4afe98933a9f4f21.xgqt@gentoo> (raw)

commit:     bc06ea53ac8b3a977551a8ba4afe98933a9f4f21
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 14:22:37 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 16:40:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc06ea53

dev-scheme/chez: drop old 9.6.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-scheme/chez/Manifest          |  1 -
 dev-scheme/chez/chez-9.6.2.ebuild | 75 ---------------------------------------
 2 files changed, 76 deletions(-)

diff --git a/dev-scheme/chez/Manifest b/dev-scheme/chez/Manifest
index 2a44964075e1..b4d20f48a2aa 100644
--- a/dev-scheme/chez/Manifest
+++ b/dev-scheme/chez/Manifest
@@ -1,3 +1,2 @@
 DIST chez-10.0.0.tar.gz 9109529 BLAKE2B 66b37350b0d711c4f86b8c0e0e9ca6f0c7de22591b592ff0950822c2cf4a489db1fbb2f655cbecf4a771740ffd9bba638481f20d59c5c8143468d333d57f4907 SHA512 094298744bd69033366305330d660299023c5bc5776df86f28af119f9f4cddc463366fc8f955084463137b6186843fcd34026d2714b932baa4841d6522a8dd92
-DIST chez-9.6.2.tar.gz 35691078 BLAKE2B f8436754eca64ac2b1cd9138c546b31a9ae0c05ae8f7d8afd74205e2c03289050354b6bb03cfa9d26b887f0606dd9410d0a8bc8f2da517a6132781dfaa18a243 SHA512 65b6a1dce571568dcc9725086b41065a7c7d56eab10eb78039da192dfbb91568d2bec72005e8ce84cefe3ba87220fdb3aa870e9f05e60fbf2b838f4467cb4a52
 DIST chez-9.6.4.tar.gz 35679113 BLAKE2B dd008181caa7b74d35fed4a67dbbf2719af9ab7288ac6b5577fe2caf3ba4f34c5f9192fe2ca08b00d48e16d75b6c82324c1f222fe4fd321649d109dd221ffc40 SHA512 00c33650d0f980c9d28ad4871c97da67b9f25e3fde5a3188b2bbbc9cc813e63e3c9055bc6a94addedbea52cd531cbb56bcdc5e2fda6c6ca37b30166c2797e53a

diff --git a/dev-scheme/chez/chez-9.6.2.ebuild b/dev-scheme/chez/chez-9.6.2.ebuild
deleted file mode 100644
index d843641e5a15..000000000000
--- a/dev-scheme/chez/chez-9.6.2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="A programming language based on R6RS"
-HOMEPAGE="https://cisco.github.io/ChezScheme/ https://github.com/cisco/ChezScheme"
-SRC_URI="https://github.com/cisco/ChezScheme/releases/download/v${PV}/csv${PV//a}.tar.gz
-	-> ${P}.tar.gz"
-S="${WORKDIR}"/csv${PV//a}
-
-# Chez Scheme itself is Apache 2.0, but it vendors Nanopass and stex
-# which are both MIT licensed.
-LICENSE="Apache-2.0 MIT"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~x86"
-IUSE="X ncurses threads"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	app-arch/lz4:=
-	sys-apps/util-linux
-	sys-libs/zlib:=
-	ncurses? ( sys-libs/ncurses:= )
-"
-DEPEND="${RDEPEND}"
-RDEPEND="
-	${RDEPEND}
-	X? ( x11-libs/libX11 )
-"
-
-src_prepare() {
-	tc-export AR CC CXX LD RANLIB
-
-	default
-
-	if use ncurses ; then
-		local nclibs="\"$($(tc-getPKG_CONFIG) --libs ncurses)\""
-		sed -i "s|ncursesLib=-lncurses|ncursesLib=${nclibs}|g" configure || die
-	fi
-
-	# Remove -Werror
-	sed -i "/^C = /s|-Werror||g" c/Mf-* || die
-}
-
-src_configure() {
-	local myconfargs=(
-		$(usex threads '--threads' '')
-		$(usex ncurses '' '--disable-curses')
-		$(usex X '' '--disable-x11')
-		--installprefix="/usr"
-		--installbin="/usr/bin"
-		--installlib="/usr/$(get_libdir)"
-		--installman="/usr/share/man"
-		--installschemename=chezscheme
-		--installpetitename=chezscheme-petite
-		--installscriptname=chezscheme-script
-		--libkernel
-		--nogzip-man-pages
-		LZ4=$($(tc-getPKG_CONFIG) --libs liblz4)
-		ZLIB=$($(tc-getPKG_CONFIG) --libs zlib)
-	)
-	sh ./configure "${myconfargs[@]}" || die
-}
-
-src_install() {
-	# TempRoot == DESTDIR
-	emake TempRoot="${D}" install
-	einstalldocs
-
-	find "${ED}"/usr/$(get_libdir)/csv${PV//a}/examples \
-		 \( -name "*.md" -o -name "*.so" \)  -delete || die
-}


             reply	other threads:[~2024-03-13 16:40 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-13 16:40 Maciej Barć [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-22 17:34 [gentoo-commits] repo/gentoo:master commit in: dev-scheme/chez/ Arthur Zamarin
2024-11-14 23:40 Maciej Barć
2024-07-31 17:51 Matthew Smith
2024-06-29 10:47 Maciej Barć
2024-05-23 22:08 Maciej Barć
2024-03-13 16:40 Maciej Barć
2024-03-13 12:05 Arthur Zamarin
2024-02-07 22:21 Maciej Barć
2024-01-03  2:20 Ionen Wolkens
2023-12-08  0:29 Maciej Barć
2023-10-18 22:05 Maciej Barć
2023-10-17 13:39 Maciej Barć
2023-10-17 13:39 Maciej Barć
2023-10-01 18:07 Arthur Zamarin
2023-08-30 18:29 Maciej Barć
2023-08-30 18:29 Maciej Barć
2023-08-29 20:03 Maciej Barć
2023-08-29 20:03 Maciej Barć
2023-07-11  8:43 Jakov Smolić
2023-04-27 23:00 Maciej Barć
2023-04-26 21:25 Maciej Barć
2022-08-25 16:23 Maciej Barć
2022-08-16 19:43 Sam James
2022-07-16  7:52 Matthew Smith
2022-07-16  7:52 Matthew Smith
2022-05-29  7:22 Jakov Smolić
2022-04-25 21:35 Maciej Barć
2022-03-26 17:19 Maciej Barć
2022-02-16 11:34 Maciej Barć
2022-02-16 10:50 Maciej Barć
2021-12-27  9:52 Jakov Smolić
2021-12-13 19:53 Maciej Barć
2021-11-25 18:18 Maciej Barć

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1710348012.bc06ea53ac8b3a977551a8ba4afe98933a9f4f21.xgqt@gentoo \
    --to=xgqt@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox