summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-02-23 04:22:14 +0000
committerTim Harder <radhermit@gentoo.org>2012-02-23 04:22:14 +0000
commitf80cd8a58490e9ce16b6b8d2f0abba7b3b3f81f7 (patch)
treea253500ef6271e23e8b48dd6ffcabe5db1f1ef86 /app-text/xlsx2csv
parentVersion bump. (diff)
downloadgentoo-2-f80cd8a58490e9ce16b6b8d2f0abba7b3b3f81f7.tar.gz
gentoo-2-f80cd8a58490e9ce16b6b8d2f0abba7b3b3f81f7.tar.bz2
gentoo-2-f80cd8a58490e9ce16b6b8d2f0abba7b3b3f81f7.zip
Remove old.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'app-text/xlsx2csv')
-rw-r--r--app-text/xlsx2csv/ChangeLog6
-rw-r--r--app-text/xlsx2csv/xlsx2csv-0.14.ebuild44
-rw-r--r--app-text/xlsx2csv/xlsx2csv-0.15.ebuild44
3 files changed, 5 insertions, 89 deletions
diff --git a/app-text/xlsx2csv/ChangeLog b/app-text/xlsx2csv/ChangeLog
index 2a7fb1f47cfe..e86bc18b1ee4 100644
--- a/app-text/xlsx2csv/ChangeLog
+++ b/app-text/xlsx2csv/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/xlsx2csv
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xlsx2csv/ChangeLog,v 1.5 2012/02/23 04:21:40 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/xlsx2csv/ChangeLog,v 1.6 2012/02/23 04:22:14 radhermit Exp $
+
+ 23 Feb 2012; Tim Harder <radhermit@gentoo.org> -xlsx2csv-0.14.ebuild,
+ -xlsx2csv-0.15.ebuild:
+ Remove old.
*xlsx2csv-0.17 (23 Feb 2012)
diff --git a/app-text/xlsx2csv/xlsx2csv-0.14.ebuild b/app-text/xlsx2csv/xlsx2csv-0.14.ebuild
deleted file mode 100644
index 22bf3a3a4c98..000000000000
--- a/app-text/xlsx2csv/xlsx2csv-0.14.ebuild
+++ /dev/null
@@ -1,44 +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/xlsx2csv/xlsx2csv-0.14.ebuild,v 1.1 2011/07/19 19:12:20 radhermit Exp $
-
-EAPI=4
-
-DESCRIPTION="Convert MS Office xlsx files to CSV"
-HOMEPAGE="https://github.com/dilshod/xlsx2csv"
-SRC_URI="https://github.com/downloads/dilshod/${PN}/${P}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="app-arch/unzip
- test? ( dev-lang/python[xml] )"
-RDEPEND="dev-lang/python[xml]"
-
-S="${WORKDIR}/${PN}"
-
-src_test() {
- local failure=0
- for i in test/*.xlsx ; do
- echo -n "test: $i "
- if [[ $(basename $i) == "sheets.xlsx" ]] ; then
- ./xlsx2csv.py -s 0 "$i" | diff -u "test/$(basename "$i" .xlsx).csv" - >/dev/null
- else
- ./xlsx2csv.py -i "$i" | diff -u "test/$(basename "$i" .xlsx).csv" - >/dev/null
- fi
- if [[ $? -ne 0 ]] ; then
- echo "FAILED"
- failure=1
- else
- echo "PASSED"
- fi
- done
- [[ $failure -ne 0 ]] && die "tests failed"
-}
-
-src_install() {
- newbin xlsx2csv.py xlsx2csv
- dodoc CHANGELOG README
-}
diff --git a/app-text/xlsx2csv/xlsx2csv-0.15.ebuild b/app-text/xlsx2csv/xlsx2csv-0.15.ebuild
deleted file mode 100644
index e8a4209994f8..000000000000
--- a/app-text/xlsx2csv/xlsx2csv-0.15.ebuild
+++ /dev/null
@@ -1,44 +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/xlsx2csv/xlsx2csv-0.15.ebuild,v 1.1 2011/09/21 04:19:15 radhermit Exp $
-
-EAPI=4
-
-DESCRIPTION="Convert MS Office xlsx files to CSV"
-HOMEPAGE="https://github.com/dilshod/xlsx2csv"
-SRC_URI="mirror://github/dilshod/${PN}/${P}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="app-arch/unzip
- test? ( dev-lang/python[xml] )"
-RDEPEND="dev-lang/python[xml]"
-
-S="${WORKDIR}/${PN}"
-
-src_test() {
- local failure=0
- for i in test/*.xlsx ; do
- echo -n "test: $i "
- if [[ $(basename $i) == "sheets.xlsx" ]] ; then
- ./xlsx2csv.py -s 0 "$i" | diff -u "test/$(basename "$i" .xlsx).csv" - >/dev/null
- else
- ./xlsx2csv.py -i "$i" | diff -u "test/$(basename "$i" .xlsx).csv" - >/dev/null
- fi
- if [[ $? -ne 0 ]] ; then
- echo "FAILED"
- failure=1
- else
- echo "PASSED"
- fi
- done
- [[ $failure -ne 0 ]] && die "tests failed"
-}
-
-src_install() {
- newbin xlsx2csv.py xlsx2csv
- dodoc CHANGELOG README
-}