diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-03-13 21:54:58 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-03-13 21:54:58 +0000 |
commit | ab425349b33df4def2e73b920f83ef5d74bf49c1 (patch) | |
tree | 2daed0e371fe0fe8e07f2b9ba574929a5cb2f0b4 /misc | |
parent | dfffebd1575a462359151d41ea9634c5d1e9d886 (diff) | |
download | freebsd-ports-ab425349b33df4def2e73b920f83ef5d74bf49c1.zip |
New port: misc/py-XlsxWriter: Python module for creating Excel XLSX files
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/py-XlsxWriter/Makefile | 19 | ||||
-rw-r--r-- | misc/py-XlsxWriter/distinfo | 3 | ||||
-rw-r--r-- | misc/py-XlsxWriter/pkg-descr | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 4f18651f6ee9..426ef8e99bb9 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -370,6 +370,7 @@ SUBDIR += py-QSpectrumAnalyzer SUBDIR += py-SimpleSoapy SUBDIR += py-SoapySDR + SUBDIR += py-XlsxWriter SUBDIR += py-alive-progress SUBDIR += py-cinder SUBDIR += py-colorbrewer diff --git a/misc/py-XlsxWriter/Makefile b/misc/py-XlsxWriter/Makefile new file mode 100644 index 000000000000..162cb3d986ed --- /dev/null +++ b/misc/py-XlsxWriter/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= XlsxWriter +PORTVERSION= 1.3.7 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python module for creating Excel XLSX files + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= distutils concurrent autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/misc/py-XlsxWriter/distinfo b/misc/py-XlsxWriter/distinfo new file mode 100644 index 000000000000..10012a296faa --- /dev/null +++ b/misc/py-XlsxWriter/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1615672133 +SHA256 (XlsxWriter-1.3.7.tar.gz) = 9b1ade2d1ba5d9b40a6d1de1d55ded4394ab8002718092ae80a08532c2add2e6 +SIZE (XlsxWriter-1.3.7.tar.gz) = 255776 diff --git a/misc/py-XlsxWriter/pkg-descr b/misc/py-XlsxWriter/pkg-descr new file mode 100644 index 000000000000..ac5f5c43441b --- /dev/null +++ b/misc/py-XlsxWriter/pkg-descr @@ -0,0 +1,7 @@ +XlsxWriter is a Python module for writing files in the Excel 2007+ XLSX file +format. + +XlsxWriter can be used to write text, numbers, formulas and hyperlinks to +multiple worksheets and it supports features such as formatting and many more. + +WWW: https://github.com/jmcnamara/XlsxWriter |