Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] python-systemd: add new package
@ 2017-07-20 21:08 Thomas Petazzoni
  2017-07-23  7:36 ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2017-07-20 21:08 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=e9a6a104bc82fe6425dfcf9344f560904793c8f1
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Add package for official python bindings availibe as a part of systemd
project at: https://github.com/systemd/python-systemd

Minimal config snippet for utils/test-pkg is as follows (sans
backslashes):

BR2_INIT_SYSTEMD=y
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_SYSTEMD=y

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 DEVELOPERS                                 |  1 +
 package/Config.in                          |  1 +
 package/python-systemd/Config.in           | 10 ++++++++++
 package/python-systemd/python-systemd.hash |  3 +++
 package/python-systemd/python-systemd.mk   | 15 +++++++++++++++
 5 files changed, 30 insertions(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index 53a0bba..7b7c5ab 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -98,6 +98,7 @@ F:	package/python-pathlib2/
 F:	package/python-pickleshare/
 F:	package/python-scandir/
 F:	package/python-simplegeneric/
+F:	package/python-systemd/
 F:	package/python-traitlets/
 
 N:	Andrey Yurovsky <yurovsky@gmail.com>
diff --git a/package/Config.in b/package/Config.in
index 1775fc1..7bb9471 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -863,6 +863,7 @@ menu "External python modules"
 	source "package/python-socketio/Config.in"
 	source "package/python-sortedcontainers//Config.in"
 	source "package/python-spidev/Config.in"
+	source "package/python-systemd/Config.in"
 	source "package/python-tempora/Config.in"
 	source "package/python-typepy/Config.in"
 	source "package/python-thrift/Config.in"
diff --git a/package/python-systemd/Config.in b/package/python-systemd/Config.in
new file mode 100644
index 0000000..599b43f
--- /dev/null
+++ b/package/python-systemd/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PYTHON_SYSTEMD
+	bool "python-systemd"
+	depends on BR2_PACKAGE_SYSTEMD
+	help
+	  Python module for native access to the systemd facilities.
+
+	  https://github.com/systemd/python-systemd
+
+comment "python-systemd needs systemd"
+	depends on !BR2_PACKAGE_SYSTEMD
diff --git a/package/python-systemd/python-systemd.hash b/package/python-systemd/python-systemd.hash
new file mode 100644
index 0000000..a645bec
--- /dev/null
+++ b/package/python-systemd/python-systemd.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi/systemd-python/, sha256 locally computed
+md5 8438acab31e6f1e3e963d36f3de62faa systemd-python-233.tar.gz
+sha256 06a3768b744884565d7961b44f4a51d164765bc59692f0f85ea6f11330a17da4 systemd-python-233.tar.gz
diff --git a/package/python-systemd/python-systemd.mk b/package/python-systemd/python-systemd.mk
new file mode 100644
index 0000000..242a2ea
--- /dev/null
+++ b/package/python-systemd/python-systemd.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# python-systemd
+#
+################################################################################
+
+PYTHON_SYSTEMD_VERSION = 233 # Should be kept in sync with $(SYSTEMD_VERSION)
+PYTHON_SYSTEMD_SOURCE = systemd-python-$(PYTHON_SYSTEMD_VERSION).tar.gz
+PYTHON_SYSTEMD_SITE = https://pypi.python.org/packages/10/89/d66ae73bdbc2614e4f2e90ddf9ef80d22c28f3cd70071345c3640465c14c
+PYTHON_SYSTEMD_SETUP_TYPE = distutils
+PYTHON_SYSTEMD_LICENSE = LGPL-2.1
+PYTHON_SYSTEMD_LICENSE_FILES = LICENSE.txt
+PYTHON_SYSTEMD_DEPENDENCIES = systemd # To be able to link against libsystemd
+
+$(eval $(python-package))

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

* [Buildroot] [git commit] python-systemd: add new package
  2017-07-20 21:08 [Buildroot] [git commit] python-systemd: add new package Thomas Petazzoni
@ 2017-07-23  7:36 ` Peter Korsgaard
  2017-07-23  7:57   ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2017-07-23  7:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > commit: https://git.buildroot.net/buildroot/commit/?id=e9a6a104bc82fe6425dfcf9344f560904793c8f1
 > branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

 > Add package for official python bindings availibe as a part of systemd
 > project at: https://github.com/systemd/python-systemd

 > Minimal config snippet for utils/test-pkg is as follows (sans
 > backslashes):

 > BR2_INIT_SYSTEMD=y
 > BR2_PACKAGE_PYTHON3=y
 > BR2_PACKAGE_PYTHON_SYSTEMD=y

So the # lines still got dropped :/

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [git commit] python-systemd: add new package
  2017-07-23  7:36 ` Peter Korsgaard
@ 2017-07-23  7:57   ` Thomas Petazzoni
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-07-23  7:57 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 23 Jul 2017 09:36:10 +0200, Peter Korsgaard wrote:

>  > commit: https://git.buildroot.net/buildroot/commit/?id=e9a6a104bc82fe6425dfcf9344f560904793c8f1
>  > branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master  
> 
>  > Add package for official python bindings availibe as a part of systemd
>  > project at: https://github.com/systemd/python-systemd  
> 
>  > Minimal config snippet for utils/test-pkg is as follows (sans
>  > backslashes):  
> 
>  > BR2_INIT_SYSTEMD=y
>  > BR2_PACKAGE_PYTHON3=y
>  > BR2_PACKAGE_PYTHON_SYSTEMD=y  
> 
> So the # lines still got dropped :/

Might have been dropped by the git pwam process, or perhaps I did a git
commit --amend to fixup something in the patch or commit log.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-07-23  7:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-20 21:08 [Buildroot] [git commit] python-systemd: add new package Thomas Petazzoni
2017-07-23  7:36 ` Peter Korsgaard
2017-07-23  7:57   ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox