Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3
@ 2023-12-26 16:55 Fabrice Fontaine
  2023-12-26 16:55 ` [Buildroot] [PATCH 2/2] package/libcap-ng: bump to version 0.8.4 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2023-12-26 16:55 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

python3 is an optional dependency (enabled by default) since bump to
version 0.7.7 in commit 4314c86b0b932c3d381ae59b641366697906868f and
https://github.com/stevegrubb/libcap-ng/commit/02fc25f9d3a00c7d7ccd619d8d678511a73b940b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libcap-ng/libcap-ng.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libcap-ng/libcap-ng.mk b/package/libcap-ng/libcap-ng.mk
index 46f72c702e..c33460d951 100644
--- a/package/libcap-ng/libcap-ng.mk
+++ b/package/libcap-ng/libcap-ng.mk
@@ -12,10 +12,10 @@ LIBCAP_NG_CPE_ID_VENDOR = libcap-ng_project
 LIBCAP_NG_INSTALL_STAGING = YES
 
 LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
-LIBCAP_NG_CONF_OPTS = --without-python
+LIBCAP_NG_CONF_OPTS = --without-python --without-python3
 
 HOST_LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
-HOST_LIBCAP_NG_CONF_OPTS = --without-python
+HOST_LIBCAP_NG_CONF_OPTS = --without-python --without-python3
 
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] package/libcap-ng: bump to version 0.8.4
  2023-12-26 16:55 [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Fabrice Fontaine
@ 2023-12-26 16:55 ` Fabrice Fontaine
  2023-12-29 20:53 ` [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Yann E. MORIN
  2024-01-10 19:41 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2023-12-26 16:55 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

python2 support has been dropped with
https://github.com/stevegrubb/libcap-ng/commit/868a82672a398aec96eba60e73b9a8e8892c4d4a

https://github.com/stevegrubb/libcap-ng/blob/v0.8.4/ChangeLog

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libcap-ng/libcap-ng.hash | 2 +-
 package/libcap-ng/libcap-ng.mk   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/libcap-ng/libcap-ng.hash b/package/libcap-ng/libcap-ng.hash
index d4590dd739..bb4280368d 100644
--- a/package/libcap-ng/libcap-ng.hash
+++ b/package/libcap-ng/libcap-ng.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  bed6f6848e22bb2f83b5f764b2aef0ed393054e803a8e3a8711cb2a39e6b492d  libcap-ng-0.8.3.tar.gz
+sha256  68581d3b38e7553cb6f6ddf7813b1fc99e52856f21421f7b477ce5abd2605a8a  libcap-ng-0.8.4.tar.gz
 sha256  32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670  COPYING
 sha256  f18a0811fa0e220ccbc42f661545e77f0388631e209585ed582a1c693029c6aa  COPYING.LIB
diff --git a/package/libcap-ng/libcap-ng.mk b/package/libcap-ng/libcap-ng.mk
index c33460d951..5e3ca20029 100644
--- a/package/libcap-ng/libcap-ng.mk
+++ b/package/libcap-ng/libcap-ng.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBCAP_NG_VERSION = 0.8.3
+LIBCAP_NG_VERSION = 0.8.4
 LIBCAP_NG_SITE = http://people.redhat.com/sgrubb/libcap-ng
 LIBCAP_NG_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (library)
 LIBCAP_NG_LICENSE_FILES = COPYING COPYING.LIB
@@ -12,10 +12,10 @@ LIBCAP_NG_CPE_ID_VENDOR = libcap-ng_project
 LIBCAP_NG_INSTALL_STAGING = YES
 
 LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
-LIBCAP_NG_CONF_OPTS = --without-python --without-python3
+LIBCAP_NG_CONF_OPTS = --without-python3
 
 HOST_LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
-HOST_LIBCAP_NG_CONF_OPTS = --without-python --without-python3
+HOST_LIBCAP_NG_CONF_OPTS = --without-python3
 
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3
  2023-12-26 16:55 [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Fabrice Fontaine
  2023-12-26 16:55 ` [Buildroot] [PATCH 2/2] package/libcap-ng: bump to version 0.8.4 Fabrice Fontaine
@ 2023-12-29 20:53 ` Yann E. MORIN
  2024-01-10 19:41 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2023-12-29 20:53 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Fabrice, All,

On 2023-12-26 17:55 +0100, Fabrice Fontaine spake thusly:
> python3 is an optional dependency (enabled by default) since bump to
> version 0.7.7 in commit 4314c86b0b932c3d381ae59b641366697906868f and
> https://github.com/stevegrubb/libcap-ng/commit/02fc25f9d3a00c7d7ccd619d8d678511a73b940b
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Both, applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/libcap-ng/libcap-ng.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libcap-ng/libcap-ng.mk b/package/libcap-ng/libcap-ng.mk
> index 46f72c702e..c33460d951 100644
> --- a/package/libcap-ng/libcap-ng.mk
> +++ b/package/libcap-ng/libcap-ng.mk
> @@ -12,10 +12,10 @@ LIBCAP_NG_CPE_ID_VENDOR = libcap-ng_project
>  LIBCAP_NG_INSTALL_STAGING = YES
>  
>  LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
> -LIBCAP_NG_CONF_OPTS = --without-python
> +LIBCAP_NG_CONF_OPTS = --without-python --without-python3
>  
>  HOST_LIBCAP_NG_CONF_ENV = ac_cv_prog_swig_found=no
> -HOST_LIBCAP_NG_CONF_OPTS = --without-python
> +HOST_LIBCAP_NG_CONF_OPTS = --without-python --without-python3
>  
>  $(eval $(autotools-package))
>  $(eval $(host-autotools-package))
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3
  2023-12-26 16:55 [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Fabrice Fontaine
  2023-12-26 16:55 ` [Buildroot] [PATCH 2/2] package/libcap-ng: bump to version 0.8.4 Fabrice Fontaine
  2023-12-29 20:53 ` [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Yann E. MORIN
@ 2024-01-10 19:41 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-01-10 19:41 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > python3 is an optional dependency (enabled by default) since bump to
 > version 0.7.7 in commit 4314c86b0b932c3d381ae59b641366697906868f and
 > https://github.com/stevegrubb/libcap-ng/commit/02fc25f9d3a00c7d7ccd619d8d678511a73b940b

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2023.02.x and 2023.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-01-10 19:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-26 16:55 [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Fabrice Fontaine
2023-12-26 16:55 ` [Buildroot] [PATCH 2/2] package/libcap-ng: bump to version 0.8.4 Fabrice Fontaine
2023-12-29 20:53 ` [Buildroot] [PATCH 1/2] package/libcap-ng: disable python3 Yann E. MORIN
2024-01-10 19:41 ` Peter Korsgaard

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