mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] pv: version bump 1.4.12 -> 1.9.31
@ 2025-02-08 14:45 Bruno Thomsen
  2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
  2025-02-17  7:24 ` [ptxdist] [APPLIED] pv: version bump 1.4.12 -> 1.9.31 Michael Olbrich
  0 siblings, 2 replies; 6+ messages in thread
From: Bruno Thomsen @ 2025-02-08 14:45 UTC (permalink / raw)
  To: ptxdist; +Cc: bruno.thomsen

Compression type changed from tar.bz2 to tar.gz.

Add GPL-3.0-or-later license and license files with md5sum.

Update download URL from HTTP to HTTPS.

Changes in configure script:

--- pv-1.4.12
+++ pv-1.9.31
@@ -2,10 +2,13 @@
 	--sysconfdir=/etc
 	--localstatedir=/var
 	--libdir=/usr/lib
+	--build=x86_64-host-linux-gnu
+	--host=arm-v7a-linux-gnueabihf
+	--disable-largefile
+	--disable-nls
+	--disable-rpath
 	--enable-debugging
 	--enable-profiling
-	--enable-lfs
-	--enable-static-nls
-	--disable-nls
 	--disable-splice
 	--disable-ipc
+	--without-ncurses

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/pv.make | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/rules/pv.make b/rules/pv.make
index 0213816e9..03d324d70 100644
--- a/rules/pv.make
+++ b/rules/pv.make
@@ -14,13 +14,17 @@ PACKAGES-$(PTXCONF_PV) += pv
 #
 # Paths and names
 #
-PV_VERSION	:= 1.4.12
-PV_MD5		:= 605adc0f369496bca92b0656cf86b25e
-PV		:= pv-$(PV_VERSION)
-PV_SUFFIX	:= tar.bz2
-PV_URL		:= http://www.ivarch.com/programs/sources/$(PV).$(PV_SUFFIX)
-PV_SOURCE	:= $(SRCDIR)/$(PV).$(PV_SUFFIX)
-PV_DIR		:= $(BUILDDIR)/$(PV)
+PV_VERSION		:= 1.9.31
+PV_MD5			:= 9ea909b3dade3f3fba407a03c01a9bcf
+PV			:= pv-$(PV_VERSION)
+PV_SUFFIX		:= tar.gz
+PV_URL			:= https://www.ivarch.com/programs/sources/$(PV).$(PV_SUFFIX)
+PV_SOURCE		:= $(SRCDIR)/$(PV).$(PV_SUFFIX)
+PV_DIR			:= $(BUILDDIR)/$(PV)
+PV_LICENSE		:= GPL-3.0-or-later
+PV_LICENSE_FILES	:= \
+	file://docs/COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
+	file://README.md;startline=54;endline=70;md5=eb1be9d96c222fb839ee3fc200867c64
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -37,8 +41,9 @@ PV_CONF_OPT	:= \
 	--disable-nls \
 	--disable-splice \
 	--disable-ipc \
-	--$(call ptx/endis, PTXCONF_GLOBAL_LARGE_FILE)-lfs \
-	--enable-debugging
+	--$(call ptx/endis, PTXCONF_GLOBAL_LARGE_FILE)-largefile \
+	--enable-debugging \
+	--without-ncurses
 
 # ----------------------------------------------------------------------------
 # Target-Install

base-commit: 5569375a9988a028bed77005c9d293c6cba2a2c3
-- 
2.48.1




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

* [ptxdist] [PATCH 2/2] Revert "pv: move to staging"
  2025-02-08 14:45 [ptxdist] [PATCH 1/2] pv: version bump 1.4.12 -> 1.9.31 Bruno Thomsen
@ 2025-02-08 14:45 ` Bruno Thomsen
  2025-02-14  9:54   ` Michael Olbrich
                     ` (2 more replies)
  2025-02-17  7:24 ` [ptxdist] [APPLIED] pv: version bump 1.4.12 -> 1.9.31 Michael Olbrich
  1 sibling, 3 replies; 6+ messages in thread
From: Bruno Thomsen @ 2025-02-08 14:45 UTC (permalink / raw)
  To: ptxdist; +Cc: bruno.thomsen

Package has been updated to latest upstream release from 2025-01-28.

This reverts commit 91986bc436945d3e1697c7685e50ecfa6a24c377.
---
 rules/pv.in | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/rules/pv.in b/rules/pv.in
index b1b0cd9b8..5e94364ec 100644
--- a/rules/pv.in
+++ b/rules/pv.in
@@ -1,6 +1,4 @@
-## SECTION=staging
-## old section:
-### SECTION=shell_and_console
+## SECTION=shell_and_console
 
 config PV
 	tristate
@@ -13,7 +11,3 @@ config PV
 	  quickly data is passing through, how long it has taken, how near to
 	  completion it is, and an estimate of how long it will be until
 	  completion.
-
-	  STAGING: remove in PTXdist 2026.03.0
-	  Unmaintained in PTXdist, fails to build with current toolchains.
-	  Needs updating to the latest version.
-- 
2.48.1




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

* Re: [ptxdist] [PATCH 2/2] Revert "pv: move to staging"
  2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
@ 2025-02-14  9:54   ` Michael Olbrich
  2025-02-14 22:38   ` Bruno Thomsen
  2025-02-17  7:24   ` [ptxdist] [APPLIED] " Michael Olbrich
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2025-02-14  9:54 UTC (permalink / raw)
  To: ptxdist; +Cc: bruno.thomsen

On Sat, Feb 08, 2025 at 03:45:33PM +0100, Bruno Thomsen wrote:
> Package has been updated to latest upstream release from 2025-01-28.
> 
> This reverts commit 91986bc436945d3e1697c7685e50ecfa6a24c377.

Same here, needs Signed-off-by.

Michael

> ---
>  rules/pv.in | 8 +-------
>  1 file changed, 1 insertion(+), 7 deletions(-)
> 
> diff --git a/rules/pv.in b/rules/pv.in
> index b1b0cd9b8..5e94364ec 100644
> --- a/rules/pv.in
> +++ b/rules/pv.in
> @@ -1,6 +1,4 @@
> -## SECTION=staging
> -## old section:
> -### SECTION=shell_and_console
> +## SECTION=shell_and_console
>  
>  config PV
>  	tristate
> @@ -13,7 +11,3 @@ config PV
>  	  quickly data is passing through, how long it has taken, how near to
>  	  completion it is, and an estimate of how long it will be until
>  	  completion.
> -
> -	  STAGING: remove in PTXdist 2026.03.0
> -	  Unmaintained in PTXdist, fails to build with current toolchains.
> -	  Needs updating to the latest version.
> -- 
> 2.48.1
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

* Re: [ptxdist] [PATCH 2/2] Revert "pv: move to staging"
  2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
  2025-02-14  9:54   ` Michael Olbrich
@ 2025-02-14 22:38   ` Bruno Thomsen
  2025-02-17  7:24   ` [ptxdist] [APPLIED] " Michael Olbrich
  2 siblings, 0 replies; 6+ messages in thread
From: Bruno Thomsen @ 2025-02-14 22:38 UTC (permalink / raw)
  To: ptxdist

Den lør. 8. feb. 2025 kl. 15.45 skrev Bruno Thomsen <bruno.thomsen@gmail.com>:
>
> Package has been updated to latest upstream release from 2025-01-28.
>
> This reverts commit 91986bc436945d3e1697c7685e50ecfa6a24c377.

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>

> ---
>  rules/pv.in | 8 +-------
>  1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/rules/pv.in b/rules/pv.in
> index b1b0cd9b8..5e94364ec 100644
> --- a/rules/pv.in
> +++ b/rules/pv.in
> @@ -1,6 +1,4 @@
> -## SECTION=staging
> -## old section:
> -### SECTION=shell_and_console
> +## SECTION=shell_and_console
>
>  config PV
>         tristate
> @@ -13,7 +11,3 @@ config PV
>           quickly data is passing through, how long it has taken, how near to
>           completion it is, and an estimate of how long it will be until
>           completion.
> -
> -         STAGING: remove in PTXdist 2026.03.0
> -         Unmaintained in PTXdist, fails to build with current toolchains.
> -         Needs updating to the latest version.
> --
> 2.48.1
>



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

* Re: [ptxdist] [APPLIED] pv: version bump 1.4.12 -> 1.9.31
  2025-02-08 14:45 [ptxdist] [PATCH 1/2] pv: version bump 1.4.12 -> 1.9.31 Bruno Thomsen
  2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
@ 2025-02-17  7:24 ` Michael Olbrich
  1 sibling, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2025-02-17  7:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as 6ea307a94a6ba659db8f435d00157a2f56ad079a.

Michael

[sent from post-receive hook]

On Mon, 17 Feb 2025 08:24:47 +0100, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Compression type changed from tar.bz2 to tar.gz.
> 
> Add GPL-3.0-or-later license and license files with md5sum.
> 
> Update download URL from HTTP to HTTPS.
> 
> Changes in configure script:
> 
>  --- pv-1.4.12
>  +++ pv-1.9.31
>  @@ -2,10 +2,13 @@
>   	--sysconfdir=/etc
>   	--localstatedir=/var
>   	--libdir=/usr/lib
>  +	--build=x86_64-host-linux-gnu
>  +	--host=arm-v7a-linux-gnueabihf
>  +	--disable-largefile
>  +	--disable-nls
>  +	--disable-rpath
>   	--enable-debugging
>   	--enable-profiling
>  -	--enable-lfs
>  -	--enable-static-nls
>  -	--disable-nls
>   	--disable-splice
>   	--disable-ipc
>  +	--without-ncurses
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20250208144533.148473-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/pv.make b/rules/pv.make
> index 0213816e916b..03d324d70d74 100644
> --- a/rules/pv.make
> +++ b/rules/pv.make
> @@ -14,13 +14,17 @@ PACKAGES-$(PTXCONF_PV) += pv
>  #
>  # Paths and names
>  #
> -PV_VERSION	:= 1.4.12
> -PV_MD5		:= 605adc0f369496bca92b0656cf86b25e
> -PV		:= pv-$(PV_VERSION)
> -PV_SUFFIX	:= tar.bz2
> -PV_URL		:= http://www.ivarch.com/programs/sources/$(PV).$(PV_SUFFIX)
> -PV_SOURCE	:= $(SRCDIR)/$(PV).$(PV_SUFFIX)
> -PV_DIR		:= $(BUILDDIR)/$(PV)
> +PV_VERSION		:= 1.9.31
> +PV_MD5			:= 9ea909b3dade3f3fba407a03c01a9bcf
> +PV			:= pv-$(PV_VERSION)
> +PV_SUFFIX		:= tar.gz
> +PV_URL			:= https://www.ivarch.com/programs/sources/$(PV).$(PV_SUFFIX)
> +PV_SOURCE		:= $(SRCDIR)/$(PV).$(PV_SUFFIX)
> +PV_DIR			:= $(BUILDDIR)/$(PV)
> +PV_LICENSE		:= GPL-3.0-or-later
> +PV_LICENSE_FILES	:= \
> +	file://docs/COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
> +	file://README.md;startline=54;endline=70;md5=eb1be9d96c222fb839ee3fc200867c64
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -37,8 +41,9 @@ PV_CONF_OPT	:= \
>  	--disable-nls \
>  	--disable-splice \
>  	--disable-ipc \
> -	--$(call ptx/endis, PTXCONF_GLOBAL_LARGE_FILE)-lfs \
> -	--enable-debugging
> +	--$(call ptx/endis, PTXCONF_GLOBAL_LARGE_FILE)-largefile \
> +	--enable-debugging \
> +	--without-ncurses
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



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

* Re: [ptxdist] [APPLIED] Revert "pv: move to staging"
  2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
  2025-02-14  9:54   ` Michael Olbrich
  2025-02-14 22:38   ` Bruno Thomsen
@ 2025-02-17  7:24   ` Michael Olbrich
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2025-02-17  7:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as 629c2365037f7aff5f45f6851762f9b80229657c.

Michael

[sent from post-receive hook]

On Mon, 17 Feb 2025 08:24:48 +0100, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Package has been updated to latest upstream release from 2025-01-28.
> 
> This reverts commit 91986bc436945d3e1697c7685e50ecfa6a24c377.
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20250208144533.148473-2-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/pv.in b/rules/pv.in
> index b1b0cd9b8a43..5e94364ec72b 100644
> --- a/rules/pv.in
> +++ b/rules/pv.in
> @@ -1,6 +1,4 @@
> -## SECTION=staging
> -## old section:
> -### SECTION=shell_and_console
> +## SECTION=shell_and_console
>  
>  config PV
>  	tristate
> @@ -13,7 +11,3 @@ config PV
>  	  quickly data is passing through, how long it has taken, how near to
>  	  completion it is, and an estimate of how long it will be until
>  	  completion.
> -
> -	  STAGING: remove in PTXdist 2026.03.0
> -	  Unmaintained in PTXdist, fails to build with current toolchains.
> -	  Needs updating to the latest version.



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

end of thread, other threads:[~2025-02-17  7:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-08 14:45 [ptxdist] [PATCH 1/2] pv: version bump 1.4.12 -> 1.9.31 Bruno Thomsen
2025-02-08 14:45 ` [ptxdist] [PATCH 2/2] Revert "pv: move to staging" Bruno Thomsen
2025-02-14  9:54   ` Michael Olbrich
2025-02-14 22:38   ` Bruno Thomsen
2025-02-17  7:24   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-02-17  7:24 ` [ptxdist] [APPLIED] pv: version bump 1.4.12 -> 1.9.31 Michael Olbrich

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