* [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency
@ 2021-09-19 14:53 Fabrice Fontaine
2021-09-19 14:53 ` [Buildroot] [PATCH 2/2] package/wavemon: bump to version 0.9.4 Fabrice Fontaine
2021-10-05 14:18 ` [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2021-09-19 14:53 UTC (permalink / raw)
To: buildroot; +Cc: Jörg Krause, Fabrice Fontaine
libcap is an optional dependency which is enabled by default since
version 0.7.1 and
https://github.com/uoaerg/wavemon/commit/669c53e3359af5f6d4044126e22ab95f40a968f4
and can be explicitly enabled or disabled since version 0.9.0 and
https://github.com/uoaerg/wavemon/commit/af36fbe75649f745e205cd961302b656b8461e06
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/wavemon/wavemon.mk | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/package/wavemon/wavemon.mk b/package/wavemon/wavemon.mk
index 3ae1141ec4..d2af6c2bc0 100644
--- a/package/wavemon/wavemon.mk
+++ b/package/wavemon/wavemon.mk
@@ -13,4 +13,11 @@ WAVEMON_DEPENDENCIES = host-pkgconf libnl ncurses
# Handwritten Makefile.in, automake isn't used
WAVEMON_MAKE_OPTS = CC="$(TARGET_CC)"
+ifeq ($(BR2_PACKAGE_LIBCAP),y)
+WAVEMON_CONF_OPTS += --with-libcap
+WAVEMON_DEPENDENCIES += libcap
+else
+WAVEMON_CONF_OPTS += --without-libcap
+endif
+
$(eval $(autotools-package))
--
2.33.0
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] package/wavemon: bump to version 0.9.4
2021-09-19 14:53 [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Fabrice Fontaine
@ 2021-09-19 14:53 ` Fabrice Fontaine
2021-10-05 14:18 ` [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2021-09-19 14:53 UTC (permalink / raw)
To: buildroot; +Cc: Jörg Krause, Fabrice Fontaine
Use the new LICENSE file added in version 0.9.3 with
https://github.com/uoaerg/wavemon/commit/2251870415c5be3850ce59d99d0e352e55a3280a
as COPYING has been dropped with
https://github.com/uoaerg/wavemon/commit/bfa12c46c773e5fe49ec4f91fc6260aa4f66e258
https://github.com/uoaerg/wavemon/releases/tag/v0.9.2
https://github.com/uoaerg/wavemon/releases/tag/v0.9.3
https://github.com/uoaerg/wavemon/releases/tag/v0.9.4
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/wavemon/wavemon.hash | 4 ++--
package/wavemon/wavemon.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/wavemon/wavemon.hash b/package/wavemon/wavemon.hash
index 455e64cba8..7c685f6500 100644
--- a/package/wavemon/wavemon.hash
+++ b/package/wavemon/wavemon.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 5ebd5b79d3b7c546bc16b95161872c699a75e9acdfc6e3f02ec48dad10802067 wavemon-0.9.1.tar.gz
-sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
+sha256 e7e4167292136ca7ff12ddeb880904c10f33e97620ea6aa5f7838e859fdb40ed wavemon-0.9.4.tar.gz
+sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE
diff --git a/package/wavemon/wavemon.mk b/package/wavemon/wavemon.mk
index d2af6c2bc0..50e3fd275e 100644
--- a/package/wavemon/wavemon.mk
+++ b/package/wavemon/wavemon.mk
@@ -4,10 +4,10 @@
#
################################################################################
-WAVEMON_VERSION = 0.9.1
+WAVEMON_VERSION = 0.9.4
WAVEMON_SITE = $(call github,uoaerg,wavemon,v$(WAVEMON_VERSION))
WAVEMON_LICENSE = GPL-3.0+
-WAVEMON_LICENSE_FILES = COPYING
+WAVEMON_LICENSE_FILES = LICENSE
WAVEMON_DEPENDENCIES = host-pkgconf libnl ncurses
# Handwritten Makefile.in, automake isn't used
--
2.33.0
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency
2021-09-19 14:53 [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Fabrice Fontaine
2021-09-19 14:53 ` [Buildroot] [PATCH 2/2] package/wavemon: bump to version 0.9.4 Fabrice Fontaine
@ 2021-10-05 14:18 ` Peter Korsgaard
2021-10-05 16:41 ` Baruch Siach via buildroot
1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-05 14:18 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Jörg Krause, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> libcap is an optional dependency which is enabled by default since
> version 0.7.1 and
> https://github.com/uoaerg/wavemon/commit/669c53e3359af5f6d4044126e22ab95f40a968f4
> and can be explicitly enabled or disabled since version 0.9.0 and
> https://github.com/uoaerg/wavemon/commit/af36fbe75649f745e205cd961302b656b8461e06
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2021.02.x, 2021.05.x and 2021.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency
2021-10-05 14:18 ` [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Peter Korsgaard
@ 2021-10-05 16:41 ` Baruch Siach via buildroot
2021-10-05 16:55 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach via buildroot @ 2021-10-05 16:41 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Jörg Krause, Fabrice Fontaine, buildroot
Hi Peter,
On Tue, Oct 05 2021, Peter Korsgaard wrote:
>>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
>
> > libcap is an optional dependency which is enabled by default since
> > version 0.7.1 and
> > https://github.com/uoaerg/wavemon/commit/669c53e3359af5f6d4044126e22ab95f40a968f4
> > and can be explicitly enabled or disabled since version 0.9.0 and
> > https://github.com/uoaerg/wavemon/commit/af36fbe75649f745e205cd961302b656b8461e06
>
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> Committed to 2021.02.x, 2021.05.x and 2021.08.x, thanks.
Not in 2021.08.x as of commit 46da68c01bbf ("package/google-breakpad:
fix build with glibc >= 2.33").
baruch
--
~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency
2021-10-05 16:41 ` Baruch Siach via buildroot
@ 2021-10-05 16:55 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-05 16:55 UTC (permalink / raw)
To: Baruch Siach; +Cc: Jörg Krause, Fabrice Fontaine, buildroot
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> Hi Peter,
> On Tue, Oct 05 2021, Peter Korsgaard wrote:
>>>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
>>
>> > libcap is an optional dependency which is enabled by default since
>> > version 0.7.1 and
>> > https://github.com/uoaerg/wavemon/commit/669c53e3359af5f6d4044126e22ab95f40a968f4
>> > and can be explicitly enabled or disabled since version 0.9.0 and
>> > https://github.com/uoaerg/wavemon/commit/af36fbe75649f745e205cd961302b656b8461e06
>>
>> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>>
>> Committed to 2021.02.x, 2021.05.x and 2021.08.x, thanks.
> Not in 2021.08.x as of commit 46da68c01bbf ("package/google-breakpad:
> fix build with glibc >= 2.33").
Ups, fixed - Thanks!
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-05 16:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-19 14:53 [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Fabrice Fontaine
2021-09-19 14:53 ` [Buildroot] [PATCH 2/2] package/wavemon: bump to version 0.9.4 Fabrice Fontaine
2021-10-05 14:18 ` [Buildroot] [PATCH 1/2] package/wavemon: add libcap optional dependency Peter Korsgaard
2021-10-05 16:41 ` Baruch Siach via buildroot
2021-10-05 16:55 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox