summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-09-11 23:53:41 +0000
committerTim Harder <radhermit@gentoo.org>2011-09-11 23:53:41 +0000
commit06d04193bf32566d5ffeca8646ac03f31e015b00 (patch)
treeebcb8504f4c721a42d6dfb2119be62d9b7715a20 /app-text
parentVersion bump and add bash-completion-r1 (diff)
downloadhistorical-06d04193bf32566d5ffeca8646ac03f31e015b00.tar.gz
historical-06d04193bf32566d5ffeca8646ac03f31e015b00.tar.bz2
historical-06d04193bf32566d5ffeca8646ac03f31e015b00.zip
Remove old.
Package-Manager: portage-2.2.0_alpha55/cvs/Linux x86_64
Diffstat (limited to 'app-text')
-rw-r--r--app-text/csvfix/ChangeLog6
-rw-r--r--app-text/csvfix/csvfix-1.00c.ebuild49
-rw-r--r--app-text/csvfix/files/csvfix-1.00c-tests.patch60
-rw-r--r--app-text/xindy/ChangeLog6
-rw-r--r--app-text/xindy/files/xindy-2.3-clisp-2.48.patch24
-rw-r--r--app-text/xindy/xindy-2.3.ebuild41
6 files changed, 10 insertions, 176 deletions
diff --git a/app-text/csvfix/ChangeLog b/app-text/csvfix/ChangeLog
index 1072024e8a78..43d384b567ad 100644
--- a/app-text/csvfix/ChangeLog
+++ b/app-text/csvfix/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/csvfix
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/ChangeLog,v 1.3 2011/08/07 18:53:36 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/ChangeLog,v 1.4 2011/09/11 23:53:41 radhermit Exp $
+
+ 11 Sep 2011; Tim Harder <radhermit@gentoo.org> -csvfix-1.00c.ebuild,
+ -files/csvfix-1.00c-tests.patch:
+ Remove old.
*csvfix-1.10a (07 Aug 2011)
diff --git a/app-text/csvfix/csvfix-1.00c.ebuild b/app-text/csvfix/csvfix-1.00c.ebuild
deleted file mode 100644
index aa539c685cc5..000000000000
--- a/app-text/csvfix/csvfix-1.00c.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/csvfix-1.00c.ebuild,v 1.1 2011/04/22 05:05:34 radhermit Exp $
-
-EAPI=4
-
-inherit eutils toolchain-funcs versionator
-
-MY_P="${PN}_src_$(delete_all_version_separators)"
-DESCRIPTION="A stream editor for manipulating CSV files"
-HOMEPAGE="http://code.google.com/p/csvfix/"
-SRC_URI="http://csvfix.googlecode.com/files/${MY_P}.zip
- doc? ( http://csvfix.googlecode.com/files/${PN}_man_html_100.zip )"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-# Currently fails the exec test
-RESTRICT="test"
-
-RDEPEND="dev-libs/expat"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${PN}-build
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-make.patch \
- "${FILESDIR}"/${P}-tests.patch
-
- edos2unix $(find csvfix/test -type f)
-}
-
-src_compile() {
- emake CC="$(tc-getCXX)" AR="$(tc-getAR)" lin
-}
-
-src_test() {
- cd ${PN}/test
- chmod +x run1 runall
- ./runall || die "tests failed"
-}
-
-src_install() {
- dobin csvfix/bin/csvfix
- use doc && dohtml "${WORKDIR}"/HTML/*
-}
diff --git a/app-text/csvfix/files/csvfix-1.00c-tests.patch b/app-text/csvfix/files/csvfix-1.00c-tests.patch
deleted file mode 100644
index 0b89f9c17588..000000000000
--- a/app-text/csvfix/files/csvfix-1.00c-tests.patch
+++ /dev/null
@@ -1,60 +0,0 @@
---- csvfix-build.orig/csvfix/test/run1
-+++ csvfix-build/csvfix/test/run1
-@@ -1,4 +1,4 @@
--#!bash
-+#!/bin/bash
- # run1
- # run single test
- # copyright (C) 2008 Neil Butterworth
-@@ -49,7 +49,7 @@
- fi
-
- # exe to be tested - used in tests
--CSVED=../bin/csvfix.exe
-+CSVED=../bin/csvfix
- export CSVED
-
- if [ ! -f "$CSVED" ]
-@@ -64,7 +64,7 @@
- fi
-
- # where to find diff & where to put output
--DIFF=/bin/diff
-+DIFF=/usr/bin/diff
- DIFFOUT=tmp/_diffout
- WINDIFF="C:/Program Files/Microsoft Visual Studio/Common/Tools/WINDIFF.EXE"
- TEST=`basename $TEST`
-@@ -133,5 +133,7 @@
- fi
- else
- echo "Execution problem with $TEST - please correct"
-+ color_red "FAILED $TEST"
-+ exit 1
- fi
-
---- csvfix-build.orig/csvfix/test/runall
-+++ csvfix-build/csvfix/test/runall
-@@ -1,4 +1,4 @@
--#!bash
-+#!/bin/bash
- # runall.bash
- # run all tests and report
-
-@@ -9,7 +9,7 @@
- FAILS=0
- for TEST in tests/*.test
- do
-- TESTNAME=`basename $TEST`
-+ TESTNAME=`basename $TEST`
- if ./run1 $TESTNAME
- then
- let PASSES=PASSES+1
-@@ -22,3 +22,8 @@
- echo $FAILS failed, $PASSES passed
- echo ""
-
-+if [[ $FAILS -gt 0 ]]; then
-+ exit 1
-+else
-+ exit 0
-+fi
diff --git a/app-text/xindy/ChangeLog b/app-text/xindy/ChangeLog
index e21227275b0f..8d6b817a1170 100644
--- a/app-text/xindy/ChangeLog
+++ b/app-text/xindy/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/xindy
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/ChangeLog,v 1.17 2011/08/13 06:29:35 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/ChangeLog,v 1.18 2011/09/11 23:51:08 radhermit Exp $
+
+ 11 Sep 2011; Tim Harder <radhermit@gentoo.org> -xindy-2.3.ebuild,
+ -files/xindy-2.3-clisp-2.48.patch:
+ Remove old.
13 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> xindy-2.4.ebuild:
ppc stable wrt #356789
diff --git a/app-text/xindy/files/xindy-2.3-clisp-2.48.patch b/app-text/xindy/files/xindy-2.3-clisp-2.48.patch
deleted file mode 100644
index cb00a03f1f49..000000000000
--- a/app-text/xindy/files/xindy-2.3-clisp-2.48.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Nuar rte.orig/Makefile.am rte/Makefile.am
---- rte.orig/Makefile.am 2009-09-07 11:32:27.960203413 +0300
-+++ rte/Makefile.am 2009-09-07 11:33:18.297274183 +0300
-@@ -75,7 +75,7 @@
- xindy-build-dir: $(CLISP_PREREQ)
- $(RM_R) xindy-build-dir
- $(MAKE) -C ordrules ordrulei.c
-- $(clisp_link) add-module-set ordrules $(fulldir) $@
-+ $(clisp_link) add $(fulldir) $@ ordrules
- cp $@/lisp.run $(binariesdir)/xindy.run
- cp $@/lispinit.mem $(binariesdir)/base.mem
-
-diff -Nuar rte.orig/Makefile.in rte/Makefile.in
---- rte.orig/Makefile.in 2009-09-07 11:32:28.150197349 +0300
-+++ rte/Makefile.in 2009-09-07 11:32:54.205447337 +0300
-@@ -318,7 +318,7 @@
- xindy-build-dir: $(CLISP_PREREQ)
- $(RM_R) xindy-build-dir
- $(MAKE) -C ordrules ordrulei.c
-- $(clisp_link) add-module-set ordrules $(fulldir) $@
-+ $(clisp_link) add $(fulldir) $@ ordrules
- cp $@/lisp.run $(binariesdir)/xindy.run
- cp $@/lispinit.mem $(binariesdir)/base.mem
-
diff --git a/app-text/xindy/xindy-2.3.ebuild b/app-text/xindy/xindy-2.3.ebuild
deleted file mode 100644
index fda70a04fbcf..000000000000
--- a/app-text/xindy/xindy-2.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/xindy-2.3.ebuild,v 1.10 2010/04/24 11:12:33 aballier Exp $
-
-inherit eutils
-
-DESCRIPTION="A Flexible Indexing System"
-
-HOMEPAGE="http://www.xindy.org/"
-SRC_URI="mirror://sourceforge/xindy/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc x86"
-
-IUSE="doc"
-RDEPEND="virtual/latex-base
- >=dev-lisp/clisp-2.44.1-r1
- || ( dev-texlive/texlive-langcyrillic app-text/ptex )"
-DEPEND="${RDEPEND}
- sys-devel/flex"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- has_version '>=dev-lisp/clisp-2.48' && epatch "${FILESDIR}/${P}-clisp-2.48.patch"
-}
-
-src_compile() {
- local clisp_dir
- clisp_dir=`clisp --version | grep "Installation directory:" | sed 's/Installation directory: //'`
- econf \
- $(use_enable doc docs) \
- --enable-external-clisp --enable-clisp-dir=${clisp_dir}
- VARTEXFONTS="${T}/fonts" emake -j1 || die "Make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
- dodoc AUTHORS ChangeLog.Gour NEWS README
-}