You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/xlsx2csv/xlsx2csv-0.15.ebuild

45 lines
1.0 KiB

# 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
}