Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/slatex/
Date: Sat, 29 Aug 2020 09:07:16
Message-Id: 1598691959.e72ee252c9d45b8c995cf83067112e766cee197f.zlogene@gentoo
1 commit: e72ee252c9d45b8c995cf83067112e766cee197f
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 09:05:59 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 09:05:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e72ee252
7
8 dev-tex/slatex: remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/591046
11 Closes: https://bugs.gentoo.org/641822
12
13 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
14
15 dev-tex/slatex/Manifest | 1 -
16 dev-tex/slatex/metadata.xml | 11 -------
17 dev-tex/slatex/slatex-20090928_p20180415.ebuild | 42 -------------------------
18 3 files changed, 54 deletions(-)
19
20 diff --git a/dev-tex/slatex/Manifest b/dev-tex/slatex/Manifest
21 deleted file mode 100644
22 index da5cf04cb08..00000000000
23 --- a/dev-tex/slatex/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST slatex-20090928_p20180415.tar.bz2 48075 BLAKE2B b79b11a790411cd02a1e5bcb8c2db023696d4387e0b68af79f0f06cdfbc7e0bd59b0274e6fd5a13665de86274a20998dfa64f45f72c3468773c668a5bf0e2ecf SHA512 13d86f30409918d46d83f4c052d19ab48521f2435c3c142e673aac81e42c04bd2b0f597d46002bc7cc3109215b1954b23329266ad346d123845b6d9a8f45efc4
27
28 diff --git a/dev-tex/slatex/metadata.xml b/dev-tex/slatex/metadata.xml
29 deleted file mode 100644
30 index 909e90edc46..00000000000
31 --- a/dev-tex/slatex/metadata.xml
32 +++ /dev/null
33 @@ -1,11 +0,0 @@
34 -<?xml version="1.0" encoding="UTF-8"?>
35 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 -<pkgmetadata>
37 - <maintainer type="project">
38 - <email>scheme@g.o</email>
39 - <name>Gentoo Scheme Project</name>
40 - </maintainer>
41 - <longdescription lang="en">
42 -SLaTeX is a Scheme program that allows you to write programs or program fragments ``as is'' in your TeX or LaTeX source. It is particularly geared to the programming languages Scheme and other Lisps, eg, Common Lisp. The formatting of the code includes assigning appropriate fonts and colors to the various tokens in the code (keywords, variables, constants, data), at the same time retaining the proper indentation when going to the non-monospace (non-typewriter) fonts provided by TeX. SLaTeX comes with two databases that recognize the identifier conventions of Scheme and Common Lisp respectively. These can be modified by the user with easy TeX commands. In addition, the user can tell SLaTeX to typeset certain identifiers as specially suited TeX expressions (ie, beyond just fonting them). All this is done without interfering with the identifier conventions of the language of the programming code. In sum, no change need be made to your (presumably running) program code in order to get
43 a typeset version with a desired look: You can get a spectrum of styles ranging from no fonting through basic default fonting to various ``mathematical''-looking output for pedagogic or other reasons.
44 - </longdescription>
45 -</pkgmetadata>
46
47 diff --git a/dev-tex/slatex/slatex-20090928_p20180415.ebuild b/dev-tex/slatex/slatex-20090928_p20180415.ebuild
48 deleted file mode 100644
49 index afcfca95701..00000000000
50 --- a/dev-tex/slatex/slatex-20090928_p20180415.ebuild
51 +++ /dev/null
52 @@ -1,42 +0,0 @@
53 -# Copyright 1999-2020 Gentoo Authors
54 -# Distributed under the terms of the GNU General Public License v2
55 -
56 -EAPI=7
57 -
58 -# for updating the texmf database, id est latex-package_rehash
59 -inherit latex-package
60 -
61 -DESCRIPTION="A Scheme program allowing you to write Scheme in your (La)TeX source"
62 -HOMEPAGE="http://www.ccs.neu.edu/home/dorai/slatex/slatxdoc.html"
63 -SRC_URI="http://www.ccs.neu.edu/home/dorai/slatex/${PN}.tar.bz2 -> ${P}.tar.bz2"
64 -
65 -LICENSE="Apache-2.0"
66 -SLOT="0"
67 -KEYWORDS="~amd64 ~x86"
68 -
69 -RDEPEND="dev-scheme/guile"
70 -DEPEND="${RDEPEND}
71 - dev-scheme/scmxlate"
72 -
73 -S="${WORKDIR}/${PN}"
74 -
75 -TARGET_DIR="/usr/share/${PN}"
76 -
77 -src_prepare() {
78 - default
79 - sed "s:\"/home/dorai/.www/slatex/slatex.scm\":\"${TARGET_DIR}/slatex.scm\":" \
80 - -i scmxlate-slatex-src.scm || die "sed failed"
81 -}
82 -
83 -src_compile() {
84 - local command="(load \"/usr/share/scmxlate/scmxlate.scm\")"
85 - guile -c "${command}" <<< "guile" || die
86 -}
87 -
88 -src_install() {
89 - insinto "${TARGET_DIR}"
90 - doins slatex.scm
91 - insinto "${TEXMF}/tex/latex/${PN}"
92 - doins slatex.sty
93 - dobin slatex
94 -}