All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] Add libcap-ng package.
@ 2012-03-23  0:51 Marek Belisko
  2012-03-23  0:51 ` [Buildroot] [PATCH 2/2] Add bluez package Marek Belisko
  2012-04-04 20:06 ` [Buildroot] [PATCH 1/2] Add libcap-ng package Peter Korsgaard
  0 siblings, 2 replies; 7+ messages in thread
From: Marek Belisko @ 2012-03-23  0:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
---
 package/Config.in              |    1 +
 package/libcap-ng/Config.in    |   10 ++++++++++
 package/libcap-ng/libcap-ng.mk |   12 ++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 package/libcap-ng/Config.in
 create mode 100644 package/libcap-ng/libcap-ng.mk

diff --git a/package/Config.in b/package/Config.in
index 85583c6..ccc9b34 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -377,6 +377,7 @@ source "package/argp-standalone/Config.in"
 source "package/boost/Config.in"
 source "package/libatomic_ops/Config.in"
 source "package/libcap/Config.in"
+source "package/libcap-ng/Config.in"
 source "package/libdaemon/Config.in"
 source "package/libelf/Config.in"
 source "package/libevent/Config.in"
diff --git a/package/libcap-ng/Config.in b/package/libcap-ng/Config.in
new file mode 100644
index 0000000..d1663cd
--- /dev/null
+++ b/package/libcap-ng/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_LIBCAP_NG
+	bool "libcap-ng"
+	help
+	  The libcap-ng library is intended to make programming with
+	  posix capabilities much easier than the traditional libcap
+	  library. It includes utilities that can analyse all currently
+	  running applications and print out any capabilities and whether
+	  or not it has an open ended bounding set.
+
+	  http://people.redhat.com/sgrubb/libcap-ng/
diff --git a/package/libcap-ng/libcap-ng.mk b/package/libcap-ng/libcap-ng.mk
new file mode 100644
index 0000000..6ea5de4
--- /dev/null
+++ b/package/libcap-ng/libcap-ng.mk
@@ -0,0 +1,12 @@
+#############################################################
+#
+# libcap-ng
+#
+#############################################################
+
+LIBCAP_NG_VERSION = 0.6.6
+LIBCAP_NG_SITE = http://people.redhat.com/sgrubb/libcap-ng/
+LIBCAP_NG_SOURCE = libcap-ng-$(LIBCAP_NG_VERSION).tar.gz
+LIBCAP_NG_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.5.4

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

* [Buildroot] [PATCH 2/2] Add bluez package.
  2012-03-23  0:51 [Buildroot] [PATCH 1/2] Add libcap-ng package Marek Belisko
@ 2012-03-23  0:51 ` Marek Belisko
  2012-03-23  7:57   ` Yegor Yefremov
  2012-04-04 20:06 ` [Buildroot] [PATCH 1/2] Add libcap-ng package Peter Korsgaard
  1 sibling, 1 reply; 7+ messages in thread
From: Marek Belisko @ 2012-03-23  0:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
---
 package/Config.in            |    1 +
 package/libbluez/Config.in   |    8 ++++++++
 package/libbluez/libbluez.mk |   14 ++++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 package/libbluez/Config.in
 create mode 100644 package/libbluez/libbluez.mk

diff --git a/package/Config.in b/package/Config.in
index ccc9b34..50ef982 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -326,6 +326,7 @@ endmenu
 
 menu "Hardware handling"
 source "package/libaio/Config.in"
+source "package/libbluez/Config.in"
 source "package/libraw1394/Config.in"
 source "package/tslib/Config.in"
 source "package/libftdi/Config.in"
diff --git a/package/libbluez/Config.in b/package/libbluez/Config.in
new file mode 100644
index 0000000..ac2b4b7
--- /dev/null
+++ b/package/libbluez/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBBLUEZ
+	bool "libbluez"
+	select BR2_PACKAGE_DBUS
+	help
+	  BlueZ provides support for the core Bluetooth layers and protocols.
+	  It is flexible, efficient and uses a modular implementation.
+		
+	  http://www.bluez.org
diff --git a/package/libbluez/libbluez.mk b/package/libbluez/libbluez.mk
new file mode 100644
index 0000000..34f22eb
--- /dev/null
+++ b/package/libbluez/libbluez.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# libbluez
+#
+#############################################################
+
+LIBBLUEZ_VERSION = 4.99
+LIBBLUEZ_SITE = http://www.kernel.org/pub/linux/bluetooth/
+LIBBLUEZ_SOURCE = bluez-$(LIBBLUEZ_VERSION).tar.gz
+LIBBLUEZ_INSTALL_STAGING = YES
+
+LIBBLUEZ_DEPENDENCIES = dbus
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.5.4

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

* [Buildroot] [PATCH 2/2] Add bluez package.
  2012-03-23  0:51 ` [Buildroot] [PATCH 2/2] Add bluez package Marek Belisko
@ 2012-03-23  7:57   ` Yegor Yefremov
  2012-03-23  8:28     ` Belisko Marek
  0 siblings, 1 reply; 7+ messages in thread
From: Yegor Yefremov @ 2012-03-23  7:57 UTC (permalink / raw)
  To: buildroot

On Fri, Mar 23, 2012 at 1:51 AM, Marek Belisko
<marek.belisko@open-nandra.com> wrote:
> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
> ---
> ?package/Config.in ? ? ? ? ? ?| ? ?1 +
> ?package/libbluez/Config.in ? | ? ?8 ++++++++
> ?package/libbluez/libbluez.mk | ? 14 ++++++++++++++
> ?3 files changed, 23 insertions(+), 0 deletions(-)
> ?create mode 100644 package/libbluez/Config.in
> ?create mode 100644 package/libbluez/libbluez.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index ccc9b34..50ef982 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -326,6 +326,7 @@ endmenu
>
> ?menu "Hardware handling"
> ?source "package/libaio/Config.in"
> +source "package/libbluez/Config.in"
> ?source "package/libraw1394/Config.in"
> ?source "package/tslib/Config.in"
> ?source "package/libftdi/Config.in"
> diff --git a/package/libbluez/Config.in b/package/libbluez/Config.in
> new file mode 100644
> index 0000000..ac2b4b7
> --- /dev/null
> +++ b/package/libbluez/Config.in
> @@ -0,0 +1,8 @@
> +config BR2_PACKAGE_LIBBLUEZ
> + ? ? ? bool "libbluez"
> + ? ? ? select BR2_PACKAGE_DBUS
> + ? ? ? help
> + ? ? ? ? BlueZ provides support for the core Bluetooth layers and protocols.
> + ? ? ? ? It is flexible, efficient and uses a modular implementation.
> +
> + ? ? ? ? http://www.bluez.org
> diff --git a/package/libbluez/libbluez.mk b/package/libbluez/libbluez.mk
> new file mode 100644
> index 0000000..34f22eb
> --- /dev/null
> +++ b/package/libbluez/libbluez.mk
> @@ -0,0 +1,14 @@
> +#############################################################
> +#
> +# libbluez
> +#
> +#############################################################
> +
> +LIBBLUEZ_VERSION = 4.99
> +LIBBLUEZ_SITE = http://www.kernel.org/pub/linux/bluetooth/
> +LIBBLUEZ_SOURCE = bluez-$(LIBBLUEZ_VERSION).tar.gz
> +LIBBLUEZ_INSTALL_STAGING = YES
> +
> +LIBBLUEZ_DEPENDENCIES = dbus
> +
> +$(eval $(call AUTOTARGETS))
> --
> 1.7.5.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

We already have bluez package. package/bluez_utils/bluez_utils.mk and
libbluetooth will be installed in staging. Am I missing something?

Yegor

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

* [Buildroot] [PATCH 2/2] Add bluez package.
  2012-03-23  7:57   ` Yegor Yefremov
@ 2012-03-23  8:28     ` Belisko Marek
  2012-03-25 20:29       ` Arnout Vandecappelle
  0 siblings, 1 reply; 7+ messages in thread
From: Belisko Marek @ 2012-03-23  8:28 UTC (permalink / raw)
  To: buildroot

On Fri, Mar 23, 2012 at 8:57 AM, Yegor Yefremov
<yegorslists@googlemail.com> wrote:
> On Fri, Mar 23, 2012 at 1:51 AM, Marek Belisko
> <marek.belisko@open-nandra.com> wrote:
>> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
>> ---
>> ?package/Config.in ? ? ? ? ? ?| ? ?1 +
>> ?package/libbluez/Config.in ? | ? ?8 ++++++++
>> ?package/libbluez/libbluez.mk | ? 14 ++++++++++++++
>> ?3 files changed, 23 insertions(+), 0 deletions(-)
>> ?create mode 100644 package/libbluez/Config.in
>> ?create mode 100644 package/libbluez/libbluez.mk
>>
>> diff --git a/package/Config.in b/package/Config.in
>> index ccc9b34..50ef982 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -326,6 +326,7 @@ endmenu
>>
>> ?menu "Hardware handling"
>> ?source "package/libaio/Config.in"
>> +source "package/libbluez/Config.in"
>> ?source "package/libraw1394/Config.in"
>> ?source "package/tslib/Config.in"
>> ?source "package/libftdi/Config.in"
>> diff --git a/package/libbluez/Config.in b/package/libbluez/Config.in
>> new file mode 100644
>> index 0000000..ac2b4b7
>> --- /dev/null
>> +++ b/package/libbluez/Config.in
>> @@ -0,0 +1,8 @@
>> +config BR2_PACKAGE_LIBBLUEZ
>> + ? ? ? bool "libbluez"
>> + ? ? ? select BR2_PACKAGE_DBUS
>> + ? ? ? help
>> + ? ? ? ? BlueZ provides support for the core Bluetooth layers and protocols.
>> + ? ? ? ? It is flexible, efficient and uses a modular implementation.
>> +
>> + ? ? ? ? http://www.bluez.org
>> diff --git a/package/libbluez/libbluez.mk b/package/libbluez/libbluez.mk
>> new file mode 100644
>> index 0000000..34f22eb
>> --- /dev/null
>> +++ b/package/libbluez/libbluez.mk
>> @@ -0,0 +1,14 @@
>> +#############################################################
>> +#
>> +# libbluez
>> +#
>> +#############################################################
>> +
>> +LIBBLUEZ_VERSION = 4.99
>> +LIBBLUEZ_SITE = http://www.kernel.org/pub/linux/bluetooth/
>> +LIBBLUEZ_SOURCE = bluez-$(LIBBLUEZ_VERSION).tar.gz
>> +LIBBLUEZ_INSTALL_STAGING = YES
>> +
>> +LIBBLUEZ_DEPENDENCIES = dbus
>> +
>> +$(eval $(call AUTOTARGETS))
>> --
>> 1.7.5.4
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
> We already have bluez package. package/bluez_utils/bluez_utils.mk and
> libbluetooth will be installed in staging. Am I missing something?
If wanna use just library you can save some space to not compile whole utils.
But I'm not sure about that ;)
>
> Yegor

marek

-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

* [Buildroot] [PATCH 2/2] Add bluez package.
  2012-03-23  8:28     ` Belisko Marek
@ 2012-03-25 20:29       ` Arnout Vandecappelle
  2012-03-26  6:08         ` Belisko Marek
  0 siblings, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2012-03-25 20:29 UTC (permalink / raw)
  To: buildroot

On Friday 23 March 2012 09:28:37 Belisko Marek wrote:
> On Fri, Mar 23, 2012 at 8:57 AM, Yegor Yefremov
> <yegorslists@googlemail.com> wrote:
> > We already have bluez package. package/bluez_utils/bluez_utils.mk and
> > libbluetooth will be installed in staging. Am I missing something?
> If wanna use just library you can save some space to not compile whole utils.

 But your not doing that AFAICS.  You're using exactly the same source tar
as bluez_utils, and you don't have any config option to disable the utils.

 Regards,
 Arnout


-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
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:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH 2/2] Add bluez package.
  2012-03-25 20:29       ` Arnout Vandecappelle
@ 2012-03-26  6:08         ` Belisko Marek
  0 siblings, 0 replies; 7+ messages in thread
From: Belisko Marek @ 2012-03-26  6:08 UTC (permalink / raw)
  To: buildroot

On Sun, Mar 25, 2012 at 10:29 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On Friday 23 March 2012 09:28:37 Belisko Marek wrote:
>> On Fri, Mar 23, 2012 at 8:57 AM, Yegor Yefremov
>> <yegorslists@googlemail.com> wrote:
>> > We already have bluez package. package/bluez_utils/bluez_utils.mk and
>> > libbluetooth will be installed in staging. Am I missing something?
>> If wanna use just library you can save some space to not compile whole utils.
>
> ?But your not doing that AFAICS. ?You're using exactly the same source tar
> as bluez_utils, and you don't have any config option to disable the utils.
Arnout you're completely right. I messed it around. Sorry. Will stick
to bluez_utils.
>
> ?Regards,
> ?Arnout
>
>
> --
> Arnout Vandecappelle ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? arnout at mind be
> Senior Embedded Software Architect ? ? ? ? ? ? ? ? +32-16-286540
> 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: ?7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

regards,

marek

-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

* [Buildroot] [PATCH 1/2] Add libcap-ng package.
  2012-03-23  0:51 [Buildroot] [PATCH 1/2] Add libcap-ng package Marek Belisko
  2012-03-23  0:51 ` [Buildroot] [PATCH 2/2] Add bluez package Marek Belisko
@ 2012-04-04 20:06 ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2012-04-04 20:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Marek" == Marek Belisko <marek.belisko@open-nandra.com> writes:

 Marek> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-04-04 20:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-23  0:51 [Buildroot] [PATCH 1/2] Add libcap-ng package Marek Belisko
2012-03-23  0:51 ` [Buildroot] [PATCH 2/2] Add bluez package Marek Belisko
2012-03-23  7:57   ` Yegor Yefremov
2012-03-23  8:28     ` Belisko Marek
2012-03-25 20:29       ` Arnout Vandecappelle
2012-03-26  6:08         ` Belisko Marek
2012-04-04 20:06 ` [Buildroot] [PATCH 1/2] Add libcap-ng package Peter Korsgaard

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.