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.
51 lines
1.2 KiB
51 lines
1.2 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-text/xlsx2csv/xlsx2csv-0.20.ebuild,v 1.1 2012/08/17 02:10:44 radhermit Exp $
|
|
|
|
EAPI="4"
|
|
PYTHON_DEPEND="2"
|
|
PYTHON_USE_WITH="xml"
|
|
|
|
inherit python
|
|
|
|
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"
|
|
|
|
src_prepare() {
|
|
python_convert_shebangs -r 2 ${PN}.py
|
|
}
|
|
|
|
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
|
|
elif [[ $(basename $i) == "skip_empty_lines.xlsx" ]] ; then
|
|
./xlsx2csv.py -i "$i" | diff -u "test/$(basename "$i" .xlsx).csv" - >/dev/null
|
|
else
|
|
./xlsx2csv.py "$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
|
|
}
|