summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-11-30 13:38:58 +0000
committerSam James <sam@gentoo.org>2024-11-30 13:51:07 +0000
commit88b9c1bcbfd4a21436c3f69413ab31b50bae1e9d (patch)
tree2470ac691235dc8c63a69b5cea32a98e7e2af31b /dev-scheme
parentdev-scheme/goosh: drop 1.3-r2 (diff)
downloadgentoo-88b9c1bcbfd4a21436c3f69413ab31b50bae1e9d.tar.gz
gentoo-88b9c1bcbfd4a21436c3f69413ab31b50bae1e9d.tar.bz2
gentoo-88b9c1bcbfd4a21436c3f69413ab31b50bae1e9d.zip
dev-scheme/guile-colorized: drop 0.1_p20191205
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r--dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
deleted file mode 100644
index 79eef16351ba..000000000000
--- a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Colorized REPL for GNU Guile"
-HOMEPAGE="https://gitlab.com/NalaGinrut/guile-colorized/"
-
-if [[ "${PV}" == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/NalaGinrut/${PN}.git"
-else
- # Latest release (before this commit from 2019) was in 2015
- COMMIT_SHA="1625a79f0e31849ebd537e2a58793fb45678c58f"
- SRC_URI="https://gitlab.com/NalaGinrut/${PN}/-/archive/${COMMIT_SHA}.tar.bz2 -> ${P}.tar.bz2"
- KEYWORDS="~amd64"
- S="${WORKDIR}/${PN}-${COMMIT_SHA}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND=">=dev-scheme/guile-2.0.9:="
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
-
- # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
- find "${S}" -name "*.scm" -exec touch {} + || die
-}
-
-src_install() {
- einstalldocs
-
- local loadpath=$(guile -c '(display (string-append (car %load-path) "/ice-9"))')
- mkdir -p "${D}${loadpath}"
- emake TARGET="${D}${loadpath}" install
-}