mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libpopt: Version bump. 1.18 -> 1.19
@ 2022-09-22 13:16 Christian Melki
  2022-09-28 14:28 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2022-09-22 13:16 UTC (permalink / raw)
  To: ptxdist

https://github.com/rpm-software-management/popt/releases/tag/popt-1.19-release
Mostly bugfixes.

* Be explicit about new configure option, as default.
* License file changed. Actually funny. Listed as MIT, but
for 22 years, it went unnoticed that the actual license file was wrong.
This is now corrected.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libpopt.make | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/rules/libpopt.make b/rules/libpopt.make
index 4289d45f3..86259fd5e 100644
--- a/rules/libpopt.make
+++ b/rules/libpopt.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBPOPT) += libpopt
 #
 # Paths and names
 #
-LIBPOPT_VERSION	:= 1.18
-LIBPOPT_MD5	:= 450f2f636e6a3aa527de803d0ae76c5a
+LIBPOPT_VERSION	:= 1.19
+LIBPOPT_MD5	:= eaa2135fddb6eb03f2c87ee1823e5a78
 LIBPOPT		:= popt-$(LIBPOPT_VERSION)
 LIBPOPT_SUFFIX	:= tar.gz
 LIBPOPT_URL	:= \
@@ -24,7 +24,7 @@ LIBPOPT_URL	:= \
 LIBPOPT_SOURCE	:= $(SRCDIR)/$(LIBPOPT).$(LIBPOPT_SUFFIX)
 LIBPOPT_DIR	:= $(BUILDDIR)/$(LIBPOPT)
 LIBPOPT_LICENSE	:= MIT
-LIBPOPT_LICENSE_FILES := file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d
+LIBPOPT_LICENSE_FILES := file://COPYING;md5=e0206ac9471d06667e076212db20c5f4
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -39,7 +39,8 @@ LIBPOPT_CONF_OPT	:= \
 	$(GLOBAL_LARGE_FILE_OPTION) \
 	--disable-build-gcov \
 	--$(call ptx/endis, PTXCONF_LIBPOPT_NLS)-nls \
-	--disable-rpath
+	--disable-rpath \
+	--disable-werror
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.34.1




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

* Re: [ptxdist] [APPLIED] libpopt: Version bump. 1.18 -> 1.19
  2022-09-22 13:16 [ptxdist] [PATCH] libpopt: Version bump. 1.18 -> 1.19 Christian Melki
@ 2022-09-28 14:28 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-09-28 14:28 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 10b4f41510dd11d71ca2b1a999d043fddfc8563c.

Michael

[sent from post-receive hook]

On Wed, 28 Sep 2022 16:28:55 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> https://github.com/rpm-software-management/popt/releases/tag/popt-1.19-release
> Mostly bugfixes.
> 
> * Be explicit about new configure option, as default.
> * License file changed. Actually funny. Listed as MIT, but
> for 22 years, it went unnoticed that the actual license file was wrong.
> This is now corrected.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20220922131601.2871846-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libpopt.make b/rules/libpopt.make
> index 4289d45f3e36..86259fd5e9a0 100644
> --- a/rules/libpopt.make
> +++ b/rules/libpopt.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBPOPT) += libpopt
>  #
>  # Paths and names
>  #
> -LIBPOPT_VERSION	:= 1.18
> -LIBPOPT_MD5	:= 450f2f636e6a3aa527de803d0ae76c5a
> +LIBPOPT_VERSION	:= 1.19
> +LIBPOPT_MD5	:= eaa2135fddb6eb03f2c87ee1823e5a78
>  LIBPOPT		:= popt-$(LIBPOPT_VERSION)
>  LIBPOPT_SUFFIX	:= tar.gz
>  LIBPOPT_URL	:= \
> @@ -24,7 +24,7 @@ LIBPOPT_URL	:= \
>  LIBPOPT_SOURCE	:= $(SRCDIR)/$(LIBPOPT).$(LIBPOPT_SUFFIX)
>  LIBPOPT_DIR	:= $(BUILDDIR)/$(LIBPOPT)
>  LIBPOPT_LICENSE	:= MIT
> -LIBPOPT_LICENSE_FILES := file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d
> +LIBPOPT_LICENSE_FILES := file://COPYING;md5=e0206ac9471d06667e076212db20c5f4
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -39,7 +39,8 @@ LIBPOPT_CONF_OPT	:= \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
>  	--disable-build-gcov \
>  	--$(call ptx/endis, PTXCONF_LIBPOPT_NLS)-nls \
> -	--disable-rpath
> +	--disable-rpath \
> +	--disable-werror
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



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

end of thread, other threads:[~2022-09-28 14:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-22 13:16 [ptxdist] [PATCH] libpopt: Version bump. 1.18 -> 1.19 Christian Melki
2022-09-28 14:28 ` [ptxdist] [APPLIED] " Michael Olbrich

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