diff mbox

[v2,1/3] python-xlrd: new package

Message ID 1466673311-15845-1-git-send-email-yegorslists@googlemail.com
State Superseded
Headers show

Commit Message

Yegor Yefremov June 23, 2016, 9:15 a.m. UTC
From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in                    |  1 +
 package/python-xlrd/Config.in        | 11 +++++++++++
 package/python-xlrd/python-xlrd.hash |  4 ++++
 package/python-xlrd/python-xlrd.mk   | 14 ++++++++++++++
 4 files changed, 30 insertions(+)
 create mode 100644 package/python-xlrd/Config.in
 create mode 100644 package/python-xlrd/python-xlrd.hash
 create mode 100644 package/python-xlrd/python-xlrd.mk

Comments

Arnout Vandecappelle June 23, 2016, 8:56 p.m. UTC | #1
On 23-06-16 11:15, yegorslists@googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  package/Config.in                    |  1 +
>  package/python-xlrd/Config.in        | 11 +++++++++++
>  package/python-xlrd/python-xlrd.hash |  4 ++++
>  package/python-xlrd/python-xlrd.mk   | 14 ++++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/python-xlrd/Config.in
>  create mode 100644 package/python-xlrd/python-xlrd.hash
>  create mode 100644 package/python-xlrd/python-xlrd.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index a2a02a8..e5ddc3e 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -776,6 +776,7 @@ menu "External python modules"
>  	source "package/python-werkzeug/Config.in"
>  	source "package/python-ws4py/Config.in"
>  	source "package/python-wsaccel/Config.in"
> +	source "package/python-xlrd/Config.in"
>  	source "package/python-xlsxwriter/Config.in"
>  	source "package/python-zope-interface/Config.in"
>  endmenu
> diff --git a/package/python-xlrd/Config.in b/package/python-xlrd/Config.in
> new file mode 100644
> index 0000000..81331f9
> --- /dev/null
> +++ b/package/python-xlrd/Config.in
> @@ -0,0 +1,11 @@
> +config BR2_PACKAGE_PYTHON_XLRD
> +	bool "python-xlrd"
> +	select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON
> +	select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3
> +	select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
> +	select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
> +	help
> +	  Library for developers to extract data from Microsoft Excel (tm)
> +	  spreadsheet files.

 I think it would be better to specify explicitly which Excel versions are
supported. It's all of them, but still, better to be explicit about it.

> +
> +	  http://www.python-excel.org/
> diff --git a/package/python-xlrd/python-xlrd.hash b/package/python-xlrd/python-xlrd.hash
> new file mode 100644
> index 0000000..8075605
> --- /dev/null
> +++ b/package/python-xlrd/python-xlrd.hash
> @@ -0,0 +1,4 @@
> +# md5 from https://pypi.python.org/pypi/xlrd/json
> +md5	9a91b688cd4945477ac28187a54f9a3b  xlrd-1.0.0.tar.gz
> +# sha256 calculated by scanpypi
> +sha256	0ff87dd5d50425084f7219cb6f86bb3eb5aa29063f53d50bf270ed007e941069  xlrd-1.0.0.tar.gz
> diff --git a/package/python-xlrd/python-xlrd.mk b/package/python-xlrd/python-xlrd.mk
> new file mode 100644
> index 0000000..a31657a
> --- /dev/null
> +++ b/package/python-xlrd/python-xlrd.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# python-xlrd
> +#
> +################################################################################
> +
> +PYTHON_XLRD_VERSION = 1.0.0
> +PYTHON_XLRD_SOURCE = xlrd-$(PYTHON_XLRD_VERSION).tar.gz
> +PYTHON_XLRD_SITE = https://pypi.python.org/packages/42/85/25caf967c2d496067489e0bb32df069a8361e1fd96a7e9f35408e56b3aab
> +PYTHON_XLRD_SETUP_TYPE = setuptools
> +PYTHON_XLRD_LICENSE = BSD-3c, BSD-4c

 Even though licenses.py specifies BSD-4c, the actual source code doesn't. In
fact, several files explicitly mention that they are not derived from Giffin's
code. So I would say: just keep BSD-3c. licenses.py still contains the -4c so an
attentive legal department will still do vetting on their own.

 Regards,
 Arnout

> +PYTHON_XLRD_LICENSE_FILES = xlrd/licences.py
> +
> +$(eval $(python-package))
>
Yegor Yefremov June 24, 2016, 6:27 a.m. UTC | #2
Hi Arnout,

On Thu, Jun 23, 2016 at 10:56 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 23-06-16 11:15, yegorslists@googlemail.com wrote:
>> From: Yegor Yefremov <yegorslists@googlemail.com>
>>
>> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>> ---
>>  package/Config.in                    |  1 +
>>  package/python-xlrd/Config.in        | 11 +++++++++++
>>  package/python-xlrd/python-xlrd.hash |  4 ++++
>>  package/python-xlrd/python-xlrd.mk   | 14 ++++++++++++++
>>  4 files changed, 30 insertions(+)
>>  create mode 100644 package/python-xlrd/Config.in
>>  create mode 100644 package/python-xlrd/python-xlrd.hash
>>  create mode 100644 package/python-xlrd/python-xlrd.mk
>>
>> diff --git a/package/Config.in b/package/Config.in
>> index a2a02a8..e5ddc3e 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -776,6 +776,7 @@ menu "External python modules"
>>       source "package/python-werkzeug/Config.in"
>>       source "package/python-ws4py/Config.in"
>>       source "package/python-wsaccel/Config.in"
>> +     source "package/python-xlrd/Config.in"
>>       source "package/python-xlsxwriter/Config.in"
>>       source "package/python-zope-interface/Config.in"
>>  endmenu
>> diff --git a/package/python-xlrd/Config.in b/package/python-xlrd/Config.in
>> new file mode 100644
>> index 0000000..81331f9
>> --- /dev/null
>> +++ b/package/python-xlrd/Config.in
>> @@ -0,0 +1,11 @@
>> +config BR2_PACKAGE_PYTHON_XLRD
>> +     bool "python-xlrd"
>> +     select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON
>> +     select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3
>> +     select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
>> +     select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
>> +     help
>> +       Library for developers to extract data from Microsoft Excel (tm)
>> +       spreadsheet files.
>
>  I think it would be better to specify explicitly which Excel versions are
> supported. It's all of them, but still, better to be explicit about it.

Will do.

>> +
>> +       http://www.python-excel.org/
>> diff --git a/package/python-xlrd/python-xlrd.hash b/package/python-xlrd/python-xlrd.hash
>> new file mode 100644
>> index 0000000..8075605
>> --- /dev/null
>> +++ b/package/python-xlrd/python-xlrd.hash
>> @@ -0,0 +1,4 @@
>> +# md5 from https://pypi.python.org/pypi/xlrd/json
>> +md5  9a91b688cd4945477ac28187a54f9a3b  xlrd-1.0.0.tar.gz
>> +# sha256 calculated by scanpypi
>> +sha256       0ff87dd5d50425084f7219cb6f86bb3eb5aa29063f53d50bf270ed007e941069  xlrd-1.0.0.tar.gz
>> diff --git a/package/python-xlrd/python-xlrd.mk b/package/python-xlrd/python-xlrd.mk
>> new file mode 100644
>> index 0000000..a31657a
>> --- /dev/null
>> +++ b/package/python-xlrd/python-xlrd.mk
>> @@ -0,0 +1,14 @@
>> +################################################################################
>> +#
>> +# python-xlrd
>> +#
>> +################################################################################
>> +
>> +PYTHON_XLRD_VERSION = 1.0.0
>> +PYTHON_XLRD_SOURCE = xlrd-$(PYTHON_XLRD_VERSION).tar.gz
>> +PYTHON_XLRD_SITE = https://pypi.python.org/packages/42/85/25caf967c2d496067489e0bb32df069a8361e1fd96a7e9f35408e56b3aab
>> +PYTHON_XLRD_SETUP_TYPE = setuptools
>> +PYTHON_XLRD_LICENSE = BSD-3c, BSD-4c
>
>  Even though licenses.py specifies BSD-4c, the actual source code doesn't. In
> fact, several files explicitly mention that they are not derived from Giffin's
> code. So I would say: just keep BSD-3c. licenses.py still contains the -4c so an
> attentive legal department will still do vetting on their own.

Should I also reduce license types in xlwt too?

Yegor
Arnout Vandecappelle June 24, 2016, 10:40 p.m. UTC | #3
On 24-06-16 08:27, Yegor Yefremov wrote:
> >  Even though licenses.py specifies BSD-4c, the actual source code doesn't. In
> > fact, several files explicitly mention that they are not derived from Giffin's
> > code. So I would say: just keep BSD-3c. licenses.py still contains the -4c so an
> > attentive legal department will still do vetting on their own.
> Should I also reduce license types in xlwt too?

 I haven't looked at xlwt, but probably yes. Just look at the headers in each
file to see if there is any with a BSD-4c or copyright Giffin.

 Regards,
 Arnout
diff mbox

Patch

diff --git a/package/Config.in b/package/Config.in
index a2a02a8..e5ddc3e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -776,6 +776,7 @@  menu "External python modules"
 	source "package/python-werkzeug/Config.in"
 	source "package/python-ws4py/Config.in"
 	source "package/python-wsaccel/Config.in"
+	source "package/python-xlrd/Config.in"
 	source "package/python-xlsxwriter/Config.in"
 	source "package/python-zope-interface/Config.in"
 endmenu
diff --git a/package/python-xlrd/Config.in b/package/python-xlrd/Config.in
new file mode 100644
index 0000000..81331f9
--- /dev/null
+++ b/package/python-xlrd/Config.in
@@ -0,0 +1,11 @@ 
+config BR2_PACKAGE_PYTHON_XLRD
+	bool "python-xlrd"
+	select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3
+	select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
+	help
+	  Library for developers to extract data from Microsoft Excel (tm)
+	  spreadsheet files.
+
+	  http://www.python-excel.org/
diff --git a/package/python-xlrd/python-xlrd.hash b/package/python-xlrd/python-xlrd.hash
new file mode 100644
index 0000000..8075605
--- /dev/null
+++ b/package/python-xlrd/python-xlrd.hash
@@ -0,0 +1,4 @@ 
+# md5 from https://pypi.python.org/pypi/xlrd/json
+md5	9a91b688cd4945477ac28187a54f9a3b  xlrd-1.0.0.tar.gz
+# sha256 calculated by scanpypi
+sha256	0ff87dd5d50425084f7219cb6f86bb3eb5aa29063f53d50bf270ed007e941069  xlrd-1.0.0.tar.gz
diff --git a/package/python-xlrd/python-xlrd.mk b/package/python-xlrd/python-xlrd.mk
new file mode 100644
index 0000000..a31657a
--- /dev/null
+++ b/package/python-xlrd/python-xlrd.mk
@@ -0,0 +1,14 @@ 
+################################################################################
+#
+# python-xlrd
+#
+################################################################################
+
+PYTHON_XLRD_VERSION = 1.0.0
+PYTHON_XLRD_SOURCE = xlrd-$(PYTHON_XLRD_VERSION).tar.gz
+PYTHON_XLRD_SITE = https://pypi.python.org/packages/42/85/25caf967c2d496067489e0bb32df069a8361e1fd96a7e9f35408e56b3aab
+PYTHON_XLRD_SETUP_TYPE = setuptools
+PYTHON_XLRD_LICENSE = BSD-3c, BSD-4c
+PYTHON_XLRD_LICENSE_FILES = xlrd/licences.py
+
+$(eval $(python-package))