From 784c82ccc3c8bcc0fa28b003aa62a50ec5cc4d9a Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Mon, 13 Jul 2020 06:54:08 +0200 Subject: app-text/xindy: Remove last-rited pkg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- app-text/xindy/Manifest | 1 - app-text/xindy/files/xindy-2.4-configure.patch | 21 ------------ app-text/xindy/files/xindy-2.4-locale.patch | 22 ------------- app-text/xindy/files/xindy-2.4-nogrep.patch | 13 -------- app-text/xindy/files/xindy-2.4-perl5.26.patch | 11 ------- app-text/xindy/metadata.xml | 25 -------------- app-text/xindy/xindy-2.4-r1.ebuild | 45 -------------------------- 7 files changed, 138 deletions(-) delete mode 100644 app-text/xindy/Manifest delete mode 100644 app-text/xindy/files/xindy-2.4-configure.patch delete mode 100644 app-text/xindy/files/xindy-2.4-locale.patch delete mode 100644 app-text/xindy/files/xindy-2.4-nogrep.patch delete mode 100644 app-text/xindy/files/xindy-2.4-perl5.26.patch delete mode 100644 app-text/xindy/metadata.xml delete mode 100644 app-text/xindy/xindy-2.4-r1.ebuild (limited to 'app-text') diff --git a/app-text/xindy/Manifest b/app-text/xindy/Manifest deleted file mode 100644 index bb5e218f36ce..000000000000 --- a/app-text/xindy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST xindy-2.4.tar.gz 498024 BLAKE2B 67cc7f96e4937e8130c66449226d581f121e7b06a82bde40f3f880e48e48e49805856e39c7670a34080731168ee7386beffe52fa6c3e8142a3d66f4c7ebb8ce3 SHA512 d718954c0c9efcf36dcc99518542b45b3fbbb922b98989c56feb542b00944003adb5834656add0aa88b1983f98e1d9d76e5355aaf9e6ad39f3e0dd109a18ade4 diff --git a/app-text/xindy/files/xindy-2.4-configure.patch b/app-text/xindy/files/xindy-2.4-configure.patch deleted file mode 100644 index b76341f1f759..000000000000 --- a/app-text/xindy/files/xindy-2.4-configure.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- xindy-2.4/configure.ac.orig 2010-05-10 16:12:10.000000000 -0700 -+++ xindy-2.4/configure.ac 2010-09-28 23:43:39.591495118 -0700 -@@ -42,12 +42,16 @@ - - # Test for building make-rules - AC_ARG_ENABLE(make-rules, AS_HELP_STRING([--enable-make-rules ],[build and install make-rules package (default is YES)]),[BUILDRULES=$enableval],[BUILDRULES=yes]) --test "$BUILDRULES" = "yes" && AC_PROG_LATEX -+if test "x$BUILDRULES" = "xyes"; then -+ AC_PROG_LATEX -+fi - AM_CONDITIONAL(BUILDRULES, test "$BUILDRULES" = "yes") - - # Test for building Documentation - AC_ARG_ENABLE(docs, AS_HELP_STRING([--enable-docs ],[build and install documentation (default is YES)]),[BUILDDOCS=$enableval],[BUILDDOCS=yes]) --test "$BUILDDOCS" = "yes" && AC_PROG_PDFLATEX -+if test "x$BUILDDOCS" = "xyes"; then -+ AC_PROG_PDFLATEX -+fi - AM_CONDITIONAL(BUILDDOCS, test "$BUILDDOCS" = "yes") - - # Checks for programs: diff --git a/app-text/xindy/files/xindy-2.4-locale.patch b/app-text/xindy/files/xindy-2.4-locale.patch deleted file mode 100644 index c2edccc4bef6..000000000000 --- a/app-text/xindy/files/xindy-2.4-locale.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- xindy-2.4.orig/src/Makefile.am -+++ xindy-2.4/src/Makefile.am -@@ -41,7 +41,7 @@ - DEFAULTS = defaults.xdy - DUMP_XINDY = dump-xindy.lsp - MEMFILE = xindy.mem --CLISP = @CLISP@ -q -E iso-8859-1 -+CLISP = @CLISP@ -q - - xindy.mem: $(DEFAULTS) $(FAS) $(DUMP_XINDY) - rm -f $(MEMFILE) ---- xindy-2.4.orig/user-commands/xindy.in -+++ xindy-2.4/user-commands/xindy.in -@@ -777,7 +777,7 @@ - sub call_xindy ( $$ ) { - my ($mem_file, $xindy_exp) = @_; - -- my @command = ($clisp, '-M', $mem_file, '-E', 'iso-8859-1'); -+ my @command = ($clisp, '-M', $mem_file); - if ( $interactive ) { - print "Proposed xindy expression:\n\n$xindy_exp\n" unless $quiet; - } else { diff --git a/app-text/xindy/files/xindy-2.4-nogrep.patch b/app-text/xindy/files/xindy-2.4-nogrep.patch deleted file mode 100644 index 41f1b3a03609..000000000000 --- a/app-text/xindy/files/xindy-2.4-nogrep.patch +++ /dev/null @@ -1,13 +0,0 @@ -https://bugs.gentoo.org/573794 - ---- xindy-2.4-orig/make-rules/inputenc/Makefile.am -+++ xindy-2.4/make-rules/inputenc/Makefile.am -@@ -43,7 +43,7 @@ - latin.xdy : latin1.xdy latin2.xdy latin3.xdy - echo ';; Generated from latin?.xdy' >latin.xdy - echo >>latin.xdy -- sort -u latin?.xdy | grep -v '^;' >>latin.xdy -+ sort -u latin?.xdy | sed '/^;/d' >>latin.xdy - - %.xdy %.idx : - $(PERL) $(srcdir)/make-testidx.pl TS1,T2A,T1 $* >$*.tex diff --git a/app-text/xindy/files/xindy-2.4-perl5.26.patch b/app-text/xindy/files/xindy-2.4-perl5.26.patch deleted file mode 100644 index 657b5e94c362..000000000000 --- a/app-text/xindy/files/xindy-2.4-perl5.26.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- xindy-2.4/make-rules/inputenc/make-inp-rules.pl -+++ xindy-2.4/make-rules/inputenc/make-inp-rules.pl -@@ -8,7 +8,7 @@ - - - while () { -- if (/\\indexentry{(.+)--([8-9a-f][0-9a-f])\}\{1\}/) { -+ if (/\\indexentry\{(.+)--([8-9a-f][0-9a-f])\}\{1\}/) { - if (!($1 =~ /inputenc Error/)) { - $i = hex($2); - $macro = $1; diff --git a/app-text/xindy/metadata.xml b/app-text/xindy/metadata.xml deleted file mode 100644 index 8916aa9cb8ad..000000000000 --- a/app-text/xindy/metadata.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - tex@gentoo.org - Gentoo TeX Project - - - common-lisp@gentoo.org - Gentoo Common Lisp Project - - - xindy is an index processor that can be used to generate book-like indexes - for arbitrary document-preparation systems. This includes systems such as - TeX and LaTeX, the roff-family, SGML/XML-based systems (e.g., HTML) that - process some kind of text and generate indexing information. The kernel - system is not fixed to any specific system, but can be configured to work - together with such systems. - - In comparison to other index processors xindy has several powerful features - that make it an ideal framework for describing and generating complex - indices, addressing especially international indexing. Have a look at - xindy's Overview that describes its most important features! - - diff --git a/app-text/xindy/xindy-2.4-r1.ebuild b/app-text/xindy/xindy-2.4-r1.ebuild deleted file mode 100644 index a9f5d4c7ff04..000000000000 --- a/app-text/xindy/xindy-2.4-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="A Flexible Indexing System" -HOMEPAGE="http://www.xindy.org/ https://github.com/jschrod/xindy.ctan" -SRC_URI="http://www.xindy.org/${P}.tar.gz" - -# The latest development is now on the TeXlive SVN. -# The author jschrod backports it from time to time to his github repo. - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc x86" -IUSE="doc" - -RDEPEND="virtual/latex-base - dev-texlive/texlive-fontsrecommended - >=dev-lisp/clisp-2.44.1-r1 - dev-texlive/texlive-langcyrillic" -DEPEND="${RDEPEND} - dev-lang/perl - sys-devel/flex" - -PATCHES=("${FILESDIR}"/${P}-configure.patch - "${FILESDIR}"/${P}-locale.patch - "${FILESDIR}"/${P}-nogrep.patch - "${FILESDIR}"/${P}-perl5.26.patch) -DOCS=(AUTHORS ChangeLog.Gour NEWS README) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf $(use_enable doc docs) -} - -src_compile() { - VARTEXFONTS="${T}/fonts" emake -} -- cgit v1.2.3-65-gdbad