All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies
@ 2017-08-02  5:57 yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 1/4] python-mistune: add host variant yegorslists at googlemail.com
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: yegorslists at googlemail.com @ 2017-08-02  5:57 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Current version needed Automat, that will be added in this series.

And the bumped version also needs hyperlink, that is meanwhile available.

Yegor Yefremov (4):
  python-mistune: add host variant
  python-m2r: new package
  python-automat: new package
  python-twisted: bump to version 17.5.0

 package/Config.in                          |  2 ++
 package/python-automat/Config.in           |  8 ++++++++
 package/python-automat/python-automat.hash |  3 +++
 package/python-automat/python-automat.mk   | 15 +++++++++++++++
 package/python-m2r/Config.in               |  8 ++++++++
 package/python-m2r/python-m2r.hash         |  3 +++
 package/python-m2r/python-m2r.mk           | 16 ++++++++++++++++
 package/python-mistune/python-mistune.mk   |  1 +
 package/python-twisted/Config.in           |  2 ++
 package/python-twisted/python-twisted.hash |  4 ++--
 package/python-twisted/python-twisted.mk   |  4 ++--
 11 files changed, 62 insertions(+), 4 deletions(-)
 create mode 100644 package/python-automat/Config.in
 create mode 100644 package/python-automat/python-automat.hash
 create mode 100644 package/python-automat/python-automat.mk
 create mode 100644 package/python-m2r/Config.in
 create mode 100644 package/python-m2r/python-m2r.hash
 create mode 100644 package/python-m2r/python-m2r.mk

-- 
2.11.0

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 1/4] python-mistune: add host variant
  2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
@ 2017-08-02  5:57 ` yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 2/4] python-m2r: new package yegorslists at googlemail.com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: yegorslists at googlemail.com @ 2017-08-02  5:57 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Host variant is required by host-python-m2r.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/python-mistune/python-mistune.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/python-mistune/python-mistune.mk b/package/python-mistune/python-mistune.mk
index 6bc0b2066..4141729da 100644
--- a/package/python-mistune/python-mistune.mk
+++ b/package/python-mistune/python-mistune.mk
@@ -12,3 +12,4 @@ PYTHON_MISTUNE_LICENSE_FILES = LICENSE
 PYTHON_MISTUNE_SETUP_TYPE = setuptools
 
 $(eval $(python-package))
+$(eval $(host-python-package))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 2/4] python-m2r: new package
  2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 1/4] python-mistune: add host variant yegorslists at googlemail.com
@ 2017-08-02  5:57 ` yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 3/4] python-automat: " yegorslists at googlemail.com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: yegorslists at googlemail.com @ 2017-08-02  5:57 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Host variant is needed to generate long description
for python-automat package.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in                  |  1 +
 package/python-m2r/Config.in       |  8 ++++++++
 package/python-m2r/python-m2r.hash |  3 +++
 package/python-m2r/python-m2r.mk   | 16 ++++++++++++++++
 4 files changed, 28 insertions(+)
 create mode 100644 package/python-m2r/Config.in
 create mode 100644 package/python-m2r/python-m2r.hash
 create mode 100644 package/python-m2r/python-m2r.mk

diff --git a/package/Config.in b/package/Config.in
index 86d714dae..8366ad580 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -767,6 +767,7 @@ menu "External python modules"
 	source "package/python-lmdb/Config.in"
 	source "package/python-logbook/Config.in"
 	source "package/python-lxml/Config.in"
+	source "package/python-m2r/Config.in"
 	source "package/python-mad/Config.in"
 	source "package/python-mako/Config.in"
 	source "package/python-markdown/Config.in"
diff --git a/package/python-m2r/Config.in b/package/python-m2r/Config.in
new file mode 100644
index 000000000..44dafaa46
--- /dev/null
+++ b/package/python-m2r/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PYTHON_M2R
+	bool "python-m2r"
+	select BR2_PACKAGE_PYTHON_MISTUNE # runtime
+	select BR2_PACKAGE_PYTHON_DOCUTILS # runtime
+	help
+	  Markdown to reStructuredText converter.
+
+	  https://github.com/miyakogi/m2r
diff --git a/package/python-m2r/python-m2r.hash b/package/python-m2r/python-m2r.hash
new file mode 100644
index 000000000..102da33b5
--- /dev/null
+++ b/package/python-m2r/python-m2r.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi/m2r/json, sha256 locally computed
+md5	aac67f2167a3d81c8ccd7615e9c2cb7a  m2r-0.1.6.tar.gz
+sha256	a26bc2e25e0ad3f8650385aea25cf734ac4fcd30e54faec92fd39675da75e527  m2r-0.1.6.tar.gz
diff --git a/package/python-m2r/python-m2r.mk b/package/python-m2r/python-m2r.mk
new file mode 100644
index 000000000..b506ad851
--- /dev/null
+++ b/package/python-m2r/python-m2r.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# python-m2r
+#
+################################################################################
+
+PYTHON_M2R_VERSION = 0.1.6
+PYTHON_M2R_SOURCE = m2r-$(PYTHON_M2R_VERSION).tar.gz
+PYTHON_M2R_SITE = https://pypi.python.org/packages/8d/74/558f9aba132bb34cd661fad9e17d42bfa1332363466ff314e600096f78c3
+PYTHON_M2R_SETUP_TYPE = setuptools
+PYTHON_M2R_LICENSE = MIT
+PYTHON_M2R_LICENSE_FILES = LICENSE
+HOST_PYTHON_M2R_DEPENDENCIES = host-python-docutils host-python-mistune
+
+$(eval $(python-package))
+$(eval $(host-python-package))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 3/4] python-automat: new package
  2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 1/4] python-mistune: add host variant yegorslists at googlemail.com
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 2/4] python-m2r: new package yegorslists at googlemail.com
@ 2017-08-02  5:57 ` yegorslists at googlemail.com
  2017-08-13 15:58   ` Arnout Vandecappelle
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 4/4] python-twisted: bump to version 17.5.0 yegorslists at googlemail.com
  2017-08-13 15:55 ` [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies Arnout Vandecappelle
  4 siblings, 1 reply; 7+ messages in thread
From: yegorslists at googlemail.com @ 2017-08-02  5:57 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in                          |  1 +
 package/python-automat/Config.in           |  8 ++++++++
 package/python-automat/python-automat.hash |  3 +++
 package/python-automat/python-automat.mk   | 15 +++++++++++++++
 4 files changed, 27 insertions(+)
 create mode 100644 package/python-automat/Config.in
 create mode 100644 package/python-automat/python-automat.hash
 create mode 100644 package/python-automat/python-automat.mk

diff --git a/package/Config.in b/package/Config.in
index 8366ad580..72b52c5d7 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -689,6 +689,7 @@ menu "External python modules"
 	source "package/python-asn1crypto/Config.in"
 	source "package/python-attrs/Config.in"
 	source "package/python-autobahn/Config.in"
+	source "package/python-automat/Config.in"
 	source "package/python-babel/Config.in"
 	source "package/python-backports-abc/Config.in"
 	source "package/python-backports-shutil-get-terminal-size/Config.in"
diff --git a/package/python-automat/Config.in b/package/python-automat/Config.in
new file mode 100644
index 000000000..910b3d6ae
--- /dev/null
+++ b/package/python-automat/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PYTHON_AUTOMAT
+	bool "python-automat"
+	select BR2_PACKAGE_PYTHON_ATTRS # runtime
+	select BR2_PACKAGE_PYTHON_SIX # runtime
+	help
+	  Self-service finite-state machines for the programmer on the go.
+
+	  https://github.com/glyph/Automat
diff --git a/package/python-automat/python-automat.hash b/package/python-automat/python-automat.hash
new file mode 100644
index 000000000..c0e350523
--- /dev/null
+++ b/package/python-automat/python-automat.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi/automat/json, sha256 locally computed
+md5	ad7bba58d262d8956d732330cb5ef53d  Automat-0.6.0.tar.gz
+sha256	3c1fd04ecf08ac87b4dd3feae409542e9bf7827257097b2b6ed5692f69d6f6a8  Automat-0.6.0.tar.gz
diff --git a/package/python-automat/python-automat.mk b/package/python-automat/python-automat.mk
new file mode 100644
index 000000000..96a4f5150
--- /dev/null
+++ b/package/python-automat/python-automat.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# python-automat
+#
+################################################################################
+
+PYTHON_AUTOMAT_VERSION = 0.6.0
+PYTHON_AUTOMAT_SOURCE = Automat-$(PYTHON_AUTOMAT_VERSION).tar.gz
+PYTHON_AUTOMAT_SITE = https://pypi.python.org/packages/de/05/b8e453085cf8a7f27bb1226596f4ccf5cc9e758377d60284f990bbdc592c
+PYTHON_AUTOMAT_SETUP_TYPE = setuptools
+PYTHON_AUTOMAT_LICENSE = MIT
+PYTHON_AUTOMAT_LICENSE_FILES = LICENSE
+PYTHON_AUTOMAT_DEPENDENCIES = host-python-m2r host-python-setuptools-scm
+
+$(eval $(python-package))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 4/4] python-twisted: bump to version 17.5.0
  2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
                   ` (2 preceding siblings ...)
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 3/4] python-automat: " yegorslists at googlemail.com
@ 2017-08-02  5:57 ` yegorslists at googlemail.com
  2017-08-13 15:55 ` [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies Arnout Vandecappelle
  4 siblings, 0 replies; 7+ messages in thread
From: yegorslists at googlemail.com @ 2017-08-02  5:57 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Also fix/add runtime dependencies: Automat and hyperlink modules.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/python-twisted/Config.in           | 2 ++
 package/python-twisted/python-twisted.hash | 4 ++--
 package/python-twisted/python-twisted.mk   | 4 ++--
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/package/python-twisted/Config.in b/package/python-twisted/Config.in
index 7fe4289d4..6b1a4fc2c 100644
--- a/package/python-twisted/Config.in
+++ b/package/python-twisted/Config.in
@@ -1,7 +1,9 @@
 config BR2_PACKAGE_PYTHON_TWISTED
 	bool "python-twisted"
 	select BR2_PACKAGE_PYTHON_INCREMENTAL
+	select BR2_PACKAGE_PYTHON_AUTOMAT # runtime
 	select BR2_PACKAGE_PYTHON_CONSTANTLY # runtime
+	select BR2_PACKAGE_PYTHON_HYPERLINK # runtime
 	select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE # runtime
 	help
 	  Twisted is an event-driven networking engine written in Python.
diff --git a/package/python-twisted/python-twisted.hash b/package/python-twisted/python-twisted.hash
index 360e16d54..c22f33643 100644
--- a/package/python-twisted/python-twisted.hash
+++ b/package/python-twisted/python-twisted.hash
@@ -1,3 +1,3 @@
 # md5 from https://pypi.python.org/pypi/twisted/json, sha256 locally computed
-md5 5b4b9ea5a480bec9c1449ffb57b2052a Twisted-17.1.0.tar.bz2
-sha256 dbf211d70afe5b4442e3933ff01859533eba9f13d8b3e2e1b97dc2125e2d44dc Twisted-17.1.0.tar.bz2
+md5 cd5c287802dcbaf7be15cf937c922b71 Twisted-17.5.0.tar.bz2
+sha256 f198a494f0df2482f7c5f99d7f3eef33d22763ffc76641b36fec476b878002ea Twisted-17.5.0.tar.bz2
diff --git a/package/python-twisted/python-twisted.mk b/package/python-twisted/python-twisted.mk
index 9b3ced57b..fe276d641 100644
--- a/package/python-twisted/python-twisted.mk
+++ b/package/python-twisted/python-twisted.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_TWISTED_VERSION = 17.1.0
+PYTHON_TWISTED_VERSION = 17.5.0
 PYTHON_TWISTED_SOURCE = Twisted-$(PYTHON_TWISTED_VERSION).tar.bz2
-PYTHON_TWISTED_SITE = https://pypi.python.org/packages/d2/5d/ed5071740be94da625535f4333793d6fd238f9012f0fee189d0c5d00bd74
+PYTHON_TWISTED_SITE = https://pypi.python.org/packages/31/bf/7f86a8f8b9778e90d8b2921e9f442a8c8aa33fd2489fc10f236bc8af1749
 PYTHON_TWISTED_SETUP_TYPE = setuptools
 PYTHON_TWISTED_LICENSE = MIT
 PYTHON_TWISTED_LICENSE_FILES = LICENSE
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies
  2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
                   ` (3 preceding siblings ...)
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 4/4] python-twisted: bump to version 17.5.0 yegorslists at googlemail.com
@ 2017-08-13 15:55 ` Arnout Vandecappelle
  4 siblings, 0 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2017-08-13 15:55 UTC (permalink / raw)
  To: buildroot



On 02-08-17 07:57, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Current version needed Automat, that will be added in this series.
> 
> And the bumped version also needs hyperlink, that is meanwhile available.

 Series applied to next, thanks.

 Regards,
 Arnout
-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 3/4] python-automat: new package
  2017-08-02  5:57 ` [Buildroot] [PATCH v2 3/4] python-automat: " yegorslists at googlemail.com
@ 2017-08-13 15:58   ` Arnout Vandecappelle
  0 siblings, 0 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2017-08-13 15:58 UTC (permalink / raw)
  To: buildroot



On 02-08-17 07:57, yegorslists at googlemail.com wrote:
> +config BR2_PACKAGE_PYTHON_AUTOMAT
> +	bool "python-automat"
> +	select BR2_PACKAGE_PYTHON_ATTRS # runtime
> +	select BR2_PACKAGE_PYTHON_SIX # runtime
> +	help
> +	  Self-service finite-state machines for the programmer on the go.

 I had to rewrap this before applying to next. Please use the check-package
script before submitting your patches.

 Regards,
 Arnout

> +
> +	  https://github.com/glyph/Automat

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-08-13 15:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-02  5:57 [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies yegorslists at googlemail.com
2017-08-02  5:57 ` [Buildroot] [PATCH v2 1/4] python-mistune: add host variant yegorslists at googlemail.com
2017-08-02  5:57 ` [Buildroot] [PATCH v2 2/4] python-m2r: new package yegorslists at googlemail.com
2017-08-02  5:57 ` [Buildroot] [PATCH v2 3/4] python-automat: " yegorslists at googlemail.com
2017-08-13 15:58   ` Arnout Vandecappelle
2017-08-02  5:57 ` [Buildroot] [PATCH v2 4/4] python-twisted: bump to version 17.5.0 yegorslists at googlemail.com
2017-08-13 15:55 ` [Buildroot] [PATCH v2 0/4] Bump python-twisted and fix dependencies Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.