commit:     1288c53e6795ce7bdfd5f2730e457af3bb56bdfd
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 18:02:50 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 18:02:50 2022 +0000
URL:        https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1288c53e

dev-scheme/racket: drop unmaintined ebuild

maintained racket ebuilds are available in either ::gentoo
or ::racket-overlay repositories

Bug: https://bugs.gentoo.org/797100
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-scheme/racket/metadata.xml      | 36 -------------------
 dev-scheme/racket/racket-999.ebuild | 71 -------------------------------------
 2 files changed, 107 deletions(-)

diff --git a/dev-scheme/racket/metadata.xml b/dev-scheme/racket/metadata.xml
deleted file mode 100644
index c76b19a8..00000000
--- a/dev-scheme/racket/metadata.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-
-<pkgmetadata>
-  <herd>scheme</herd>
-  <longdescription lang="en">
-==Grow your Program==
-Racket's interactive mode encourages experimentation, and quick scripts easily 
compose into larger systems. Small scripts and large systems both benefit from 
native-code JIT compilation. When a system gets too big to keep in your head, 
you can add static types.
-
-==Grow your Language==
-Extend Racket whenever you need to. Mold it to better suit your tasks without 
sacrificing interoperability with existing libraries and without having to 
modify the tool chain. When less is more, you can remove parts of a language or 
start over and build a new one.
-
-==Grow your Skills==
-Whether you're just starting out, want to know more about programming language 
applications or models, looking to expand your horizons, or ready to dive into 
research, Racket can help you become a better programmer and system builder.
-  </longdescription>
-  <use>
-    <flag name='backtrace'>
-      Support GC backtrace dumps
-    </flag>
-    <flag name='futures'>
-      Enable racket/future library for fine-grained hardware parallelism
-    </flag>
-    <flag name='jit'>
-      Enable just-in-time compiler
-    </flag>
-    <flag name='places'>
-      Enable racket/place library for share-nothing parallelism and 
message-passing communication. Compared to futures, places are heavyweight, but 
they have a simpler performance model.
-    </flag>
-    <flag name='plot'>
-      Enable plot libraries
-    </flag>
-    <flag name='threads'>
-      Enable support for green threads
-    </flag>
-  </use>
-</pkgmetadata>

diff --git a/dev-scheme/racket/racket-999.ebuild 
b/dev-scheme/racket/racket-999.ebuild
deleted file mode 100644
index 4f388a66..00000000
--- a/dev-scheme/racket/racket-999.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-# for live ebuilds uncomment inherit git, comment SRC_URI and empty KEYWORDS
-
-inherit eutils
-inherit git-2
-
-DESCRIPTION="Racket is a general-purpose programming language with strong 
support for domain-specific languages."
-HOMEPAGE="http://racket-lang.org/";
-#SRC_URI="http://download.racket-lang.org/installers/${PV}/${PN}/${P}-src-unix.tgz";
-#SRC_URI="http://pre.racket-lang.org/installers/plt-${PV}-src-unix.tgz";
-EGIT_REPO_URI="git://git.racket-lang.org/plt.git"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="backtrace cairo doc futures jit places plot threads X"
-
-RDEPEND="X? ( x11-libs/cairo[X] ) virtual/libffi"
-
-DEPEND="${RDEPEND} !dev-tex/slatex"
-
-EGIT_SOURCEDIR="${WORKDIR}/${P}"
-S="${WORKDIR}/${P}/src"
-
-src_prepare() {
-       #remove bundled libraries
-       rm -rf foreign/libffi/
-
-       sed -e 
"s,docdir=\"\${datadir}/${PN}/doc,docdir=\"\${datadir}/doc/${PF}," -i configure 
|| die
-}
-
-src_configure() {
-# according to vapier, we should use the bundled libtool
-# such that we don't preclude cross-compile. Thus don't use
-# --enable-lt=/usr/bin/libtool
-       econf \
-               $(use_enable X gracket) \
-               $(use_enable plot) \
-               $(use_enable doc docs) \
-               --enable-shared \
-               $(use_enable jit) \
-               --enable-foreign \
-               $(use_enable places) \
-               $(use_enable futures) \
-               $(use_enable backtrace) \
-               $(use_enable threads pthread) \
-               --disable-perl \
-               $(use_with X x)
-}
-
-src_compile() {
-       emake || die
-}
-
-src_install() {
-       # deal with slatex
-       insinto /usr/share/texmf/tex/latex/slatex/
-       doins ../collects/slatex/slatex.sty
-
-       emake DESTDIR="${D}" install || die "emake install failed"
-
-       if use X; then
-               newicon ../collects/icons/PLT-206.png drracket.png
-               make_desktop_entry drracket "DrRacket" drracket "Development"
-       fi
-}

Reply via email to