Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/1] License issue about dbus-python
@ 2014-07-11 13:55 David Bachelart
  2014-07-11 13:56 ` [Buildroot] [PATCH 1/1] python-dbus: new package David Bachelart
  2014-07-11 13:59 ` [Buildroot] [PATCH 0/1] License issue about dbus-python Gustavo Zacarias
  0 siblings, 2 replies; 5+ messages in thread
From: David Bachelart @ 2014-07-11 13:55 UTC (permalink / raw)
  To: buildroot

Hi,

I would like to add dbus-python package to buildroot. I'm no license 
expert, and I do not know how I can fill the license field in the 
makefile. The COPYING file does not clearly give a license name.

Regards,

David Bachelart (1):
  python-dbus: new package

 package/Config.in                  |    1 +
 package/python-dbus/Config.in      |   17 +++++++++++++++++
 package/python-dbus/python-dbus.mk |   16 ++++++++++++++++
 3 files changed, 34 insertions(+)
 create mode 100644 package/python-dbus/Config.in
 create mode 100644 package/python-dbus/python-dbus.mk

-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/1] python-dbus: new package
  2014-07-11 13:55 [Buildroot] [PATCH 0/1] License issue about dbus-python David Bachelart
@ 2014-07-11 13:56 ` David Bachelart
  2014-07-15 18:27   ` Thomas Petazzoni
  2014-07-11 13:59 ` [Buildroot] [PATCH 0/1] License issue about dbus-python Gustavo Zacarias
  1 sibling, 1 reply; 5+ messages in thread
From: David Bachelart @ 2014-07-11 13:56 UTC (permalink / raw)
  To: buildroot

python-dbus is a binding for libdbus, the reference implementation of
D-Bus

Signed-off-by: David Bachelart <david.bachelart@bbright.com>
---
 package/Config.in                  |    1 +
 package/python-dbus/Config.in      |   17 +++++++++++++++++
 package/python-dbus/python-dbus.mk |   16 ++++++++++++++++
 3 files changed, 34 insertions(+)
 create mode 100644 package/python-dbus/Config.in
 create mode 100644 package/python-dbus/python-dbus.mk

diff --git a/package/Config.in b/package/Config.in
index c626968..c979560 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -459,6 +459,7 @@ menu "external python modules"
 	source "package/python-bottle/Config.in"
 	source "package/python-configobj/Config.in"
 	source "package/python-crc16/Config.in"
+	source "package/python-dbus/Config.in"
 	source "package/python-dialog/Config.in"
 	source "package/python-dpkt/Config.in"
 	source "package/python-id3/Config.in"
diff --git a/package/python-dbus/Config.in b/package/python-dbus/Config.in
new file mode 100644
index 0000000..b463514
--- /dev/null
+++ b/package/python-dbus/Config.in
@@ -0,0 +1,17 @@
+config BR2_PACKAGE_PYTHON_DBUS
+	bool "python-dbus"
+	depends on BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_DBUS
+	select BR2_PACKAGE_DBUS_GLIB
+	select BR2_PACKAGE_PYTHON_PYEXPAT
+	help
+     D-Bus is a message bus, used for sending messages between 
+     applications. Conceptually, it fits somewhere in between raw 
+     sockets and CORBA in terms of complexity.
+
+     This package provides a Python interface to D-Bus.
+
+     See the dbus description for more information about D-Bus in 
+     general.
+ 
+     http://www.freedesktop.org/wiki/Software/DBusBindings#Python
diff --git a/package/python-dbus/python-dbus.mk b/package/python-dbus/python-dbus.mk
new file mode 100644
index 0000000..c6aa58a
--- /dev/null
+++ b/package/python-dbus/python-dbus.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# python-dbus
+#
+################################################################################
+
+PYTHON_DBUS_VERSION = 1.2.0
+PYTHON_DBUS_SOURCE = dbus-python-$(PYTHON_DBUS_VERSION).tar.gz
+PYTHON_DBUS_SITE = http://dbus.freedesktop.org/releases/dbus-python/
+
+PYTHON_DBUS_LICENSE = 
+PYTHON_DBUS_LICENSE_FILES = COPYING
+
+PYTHON_DBUS_DEPENDENCIES = dbus-glib
+
+$(eval $(autotools-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH 0/1] License issue about dbus-python
  2014-07-11 13:55 [Buildroot] [PATCH 0/1] License issue about dbus-python David Bachelart
  2014-07-11 13:56 ` [Buildroot] [PATCH 1/1] python-dbus: new package David Bachelart
@ 2014-07-11 13:59 ` Gustavo Zacarias
  1 sibling, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2014-07-11 13:59 UTC (permalink / raw)
  To: buildroot

On 07/11/2014 10:55 AM, David Bachelart wrote:

> Hi,
> 
> I would like to add dbus-python package to buildroot. I'm no license 
> expert, and I do not know how I can fill the license field in the 
> makefile. The COPYING file does not clearly give a license name.
> 
> Regards,

Hi.
That package has been in buildroot releases for some time now... as
dbus-python (the proper upstream name) :)
Regards.

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

* [Buildroot] [PATCH 1/1] python-dbus: new package
  2014-07-11 13:56 ` [Buildroot] [PATCH 1/1] python-dbus: new package David Bachelart
@ 2014-07-15 18:27   ` Thomas Petazzoni
  2014-07-16  9:00     ` David Bachelart
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2014-07-15 18:27 UTC (permalink / raw)
  To: buildroot

Dear David Bachelart,

On Fri, 11 Jul 2014 15:56:00 +0200, David Bachelart wrote:
> python-dbus is a binding for libdbus, the reference implementation of
> D-Bus
> 
> Signed-off-by: David Bachelart <david.bachelart@bbright.com>
> ---
>  package/Config.in                  |    1 +
>  package/python-dbus/Config.in      |   17 +++++++++++++++++
>  package/python-dbus/python-dbus.mk |   16 ++++++++++++++++
>  3 files changed, 34 insertions(+)
>  create mode 100644 package/python-dbus/Config.in
>  create mode 100644 package/python-dbus/python-dbus.mk

Thanks for the patch! However, as Gustavo Zacarias reported, we already
have this package, under the name dbus-python. So I've marked your
patch as Rejected in our patch tracking system. Do not hesitate to let
us know if the existing dbus-python package doesn't work for you, for
some reason.

Thanks!

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

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

* [Buildroot] [PATCH 1/1] python-dbus: new package
  2014-07-15 18:27   ` Thomas Petazzoni
@ 2014-07-16  9:00     ` David Bachelart
  0 siblings, 0 replies; 5+ messages in thread
From: David Bachelart @ 2014-07-16  9:00 UTC (permalink / raw)
  To: buildroot

Oops.

Right. Sorry, I did not see that.

Regards,
David
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140716/46e4da4a/attachment.html>

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

end of thread, other threads:[~2014-07-16  9:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-11 13:55 [Buildroot] [PATCH 0/1] License issue about dbus-python David Bachelart
2014-07-11 13:56 ` [Buildroot] [PATCH 1/1] python-dbus: new package David Bachelart
2014-07-15 18:27   ` Thomas Petazzoni
2014-07-16  9:00     ` David Bachelart
2014-07-11 13:59 ` [Buildroot] [PATCH 0/1] License issue about dbus-python Gustavo Zacarias

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