aboutsummaryrefslogtreecommitdiffstats
path: root/app-office
diff options
context:
space:
mode:
authorWolfgang Müller2021-08-29 11:35:13 +0200
committerWolfgang Müller2021-08-29 11:35:13 +0200
commit2f4925d8a2d678bdeb57a8835ca20a997188bf8a (patch)
treecd6a851e04caa663f7ea81f6170fccb66cbb8a03 /app-office
parentaecee2379f575179dd3127b26f5436a5a9e6e0e0 (diff)
downloadpramantha-2f4925d8a2d678bdeb57a8835ca20a997188bf8a.tar.gz
app-office/visidata: Add 2.5
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Diffstat (limited to 'app-office')
-rw-r--r--app-office/visidata/Manifest3
-rw-r--r--app-office/visidata/metadata.xml7
-rw-r--r--app-office/visidata/visidata-2.5.ebuild34
3 files changed, 44 insertions, 0 deletions
diff --git a/app-office/visidata/Manifest b/app-office/visidata/Manifest
new file mode 100644
index 0000000..30951cb
--- /dev/null
+++ b/app-office/visidata/Manifest
@@ -0,0 +1,3 @@
+DIST visidata-2.5.tar.gz 987451 BLAKE2B 511950fab0d7161d1e635de72c31c13c30d8b041b9a20eaed03714f9eff3881d3e5a782bec71a65e8abb891ca7a9beeffd1ddafd6edcff898e1790f66fb0da0a SHA512 921b51a10a40590a0fa3515deae5cb5ddd2bb7b8df72bd45a5607461969928b98804bbc9fc3f9c169b21ec4d14a0deab6644d2291c632542ff975bd59b19cb93
+EBUILD visidata-2.5.ebuild 1148 BLAKE2B 2dd1e6eb7269600279d18e4769388b98f135bdf20c16ac6a04ae46fbb65cf6054bed9b8df5bbf3d303e0e378443d978de8d9efc16c77de98b8fbdbbfc750453a SHA512 e104b7bcc2a06d3ff2c33fd7edce4ebaa63e04d7619e788dc0d61d7009d88e01463f7c7b9f50d0fee4036bc9ae5100bdaf7e7b47c26635cc1919e2552a8c2644
+MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0
diff --git a/app-office/visidata/metadata.xml b/app-office/visidata/metadata.xml
new file mode 100644
index 0000000..c544433
--- /dev/null
+++ b/app-office/visidata/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>wolf@oriole.systems</email>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-office/visidata/visidata-2.5.ebuild b/app-office/visidata/visidata-2.5.ebuild
new file mode 100644
index 0000000..e329160
--- /dev/null
+++ b/app-office/visidata/visidata-2.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_9 )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="An interactive multitool for tabular data"
+HOMEPAGE="https://www.visidata.org"
+SRC_URI="https://github.com/saulpw/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+RESTRICT="test"
+
+DEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+pkg_postinst() {
+ optfeature "support for Excel spreadsheets (xls)" dev-python/xlrd
+ optfeature "support for Excel spreadsheets (xlsx)" dev-python/openpyxl
+ optfeature "support for HTML and XML" dev-python/lxml
+ optfeature "support for PNG" dev-python/pypng
+ optfeature "support for Shapefile geographic data (shp)" sci-libs/pyshp
+ optfeature "support for Stata (dta)" dev-python/pandas
+ optfeature "support for TrueType Fonts (ttf)" dev-python/fonttools
+ optfeature "support for YAML" dev-python/pyyaml
+ optfeature "support for all pandas formats" dev-python/pandas
+ optfeature "support for the Hierarchical Data Format (hdf5)" dev-python/h5py
+}