All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pv: bump to version 1.6.20
@ 2021-09-14 21:25 Fabrice Fontaine
  2021-09-18 17:56 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-09-14 21:25 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

- Drop patch (already in version)
- Update indentation in hash file (two spaces)

https://github.com/a-j-wood/pv/releases/tag/v1.6.19
https://github.com/a-j-wood/pv/releases/tag/v1.6.20

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .../0001-configure.in-tighten-AIX-test.patch  | 57 -------------------
 package/pv/pv.hash                            |  2 +-
 package/pv/pv.mk                              |  2 +-
 3 files changed, 2 insertions(+), 59 deletions(-)
 delete mode 100644 package/pv/0001-configure.in-tighten-AIX-test.patch

diff --git a/package/pv/0001-configure.in-tighten-AIX-test.patch b/package/pv/0001-configure.in-tighten-AIX-test.patch
deleted file mode 100644
index 2e0d2af247..0000000000
--- a/package/pv/0001-configure.in-tighten-AIX-test.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From cd7605723eb8e6d8231644f1cf62f1e80badf074 Mon Sep 17 00:00:00 2001
-From: Peter Korsgaard <peter@korsgaard.com>
-Date: Mon, 20 Aug 2018 15:57:22 +0200
-Subject: [PATCH] configure.in: tighten AIX test
-
-Depending on the configuration, the cpp output may contain the string 'yes'
-in a comment if built under a path containing 'yes', confusing the _AIX
-test:
-
-${CROSS}-cpp conftest.h
-\# 1 "conftest.h"
-\# 1 "<built-in>"
-\# 1 "<command-line>"
-\# 31 "<command-line>"
-\# 1 "/home/peko/source/buildroot/output-yes/host/x86_64-buildroot-linux-gnu/sysroot/usr/include/stdc-predef.h" 1 3 4
-\# 32 "<command-line>" 2
-\# 1 "conftest.txt"
-
-Fix it by only matching on 'yes' on a line by itself.
-
-Upstream-status: submitted to author
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
-
- autoconf/configure.in | 2 +-
- configure             | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/autoconf/configure.in b/autoconf/configure.in
-index bd45004..487c42b 100644
---- a/autoconf/configure.in
-+++ b/autoconf/configure.in
-@@ -86,7 +86,7 @@ AC_PROG_MAKE_SET
- 
- dnl AIX needs -lc128
- dnl
--AC_EGREP_CPP([yes], [#ifdef _AIX
-+AC_EGREP_CPP([^yes$], [#ifdef _AIX
- yes
- #endif
- ], [LIBS="$LIBS -lc128"])
-diff --git a/configure b/configure
-index 7c11be0..59267b9 100755
---- a/configure
-+++ b/configure
-@@ -3377,7 +3377,7 @@ yes
- 
- _ACEOF
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
--  $EGREP "yes" >/dev/null 2>&1; then
-+  $EGREP "^yes$" >/dev/null 2>&1; then
-   LIBS="$LIBS -lc128"
- fi
- rm -f conftest*
--- 
-2.11.0
-
diff --git a/package/pv/pv.hash b/package/pv/pv.hash
index 1ce1191d54..b3dd71f74b 100644
--- a/package/pv/pv.hash
+++ b/package/pv/pv.hash
@@ -1,5 +1,5 @@
 # Locally calculated after checking pgp signature
-sha256	608ef935f7a377e1439c181c4fc188d247da10d51a19ef79bcdee5043b0973f1  pv-1.6.6.tar.bz2
+sha256  e831951eff0718fba9b1ef286128773b9d0e723e1fbfae88d5a3188814fdc603  pv-1.6.20.tar.bz2
 
 # Hash for license file
 sha256  280e182171df3e9bb4a9b407326e88521151fcb8f4f8557255f26177d5900ccf  doc/COPYING
diff --git a/package/pv/pv.mk b/package/pv/pv.mk
index 122cc0c5ca..27060cf07e 100644
--- a/package/pv/pv.mk
+++ b/package/pv/pv.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PV_VERSION = 1.6.6
+PV_VERSION = 1.6.20
 PV_SOURCE = pv-$(PV_VERSION).tar.bz2
 PV_SITE = http://www.ivarch.com/programs/sources
 PV_LICENSE = Artistic-2.0
-- 
2.33.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/pv: bump to version 1.6.20
  2021-09-14 21:25 [Buildroot] [PATCH 1/1] package/pv: bump to version 1.6.20 Fabrice Fontaine
@ 2021-09-18 17:56 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2021-09-18 17:56 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Fabrice, All,

On 2021-09-14 23:25 +0200, Fabrice Fontaine spake thusly:
> - Drop patch (already in version)
> - Update indentation in hash file (two spaces)
> 
> https://github.com/a-j-wood/pv/releases/tag/v1.6.19
> https://github.com/a-j-wood/pv/releases/tag/v1.6.20
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  .../0001-configure.in-tighten-AIX-test.patch  | 57 -------------------
>  package/pv/pv.hash                            |  2 +-
>  package/pv/pv.mk                              |  2 +-
>  3 files changed, 2 insertions(+), 59 deletions(-)
>  delete mode 100644 package/pv/0001-configure.in-tighten-AIX-test.patch
> 
> diff --git a/package/pv/0001-configure.in-tighten-AIX-test.patch b/package/pv/0001-configure.in-tighten-AIX-test.patch
> deleted file mode 100644
> index 2e0d2af247..0000000000
> --- a/package/pv/0001-configure.in-tighten-AIX-test.patch
> +++ /dev/null
> @@ -1,57 +0,0 @@
> -From cd7605723eb8e6d8231644f1cf62f1e80badf074 Mon Sep 17 00:00:00 2001
> -From: Peter Korsgaard <peter@korsgaard.com>
> -Date: Mon, 20 Aug 2018 15:57:22 +0200
> -Subject: [PATCH] configure.in: tighten AIX test
> -
> -Depending on the configuration, the cpp output may contain the string 'yes'
> -in a comment if built under a path containing 'yes', confusing the _AIX
> -test:
> -
> -${CROSS}-cpp conftest.h
> -\# 1 "conftest.h"
> -\# 1 "<built-in>"
> -\# 1 "<command-line>"
> -\# 31 "<command-line>"
> -\# 1 "/home/peko/source/buildroot/output-yes/host/x86_64-buildroot-linux-gnu/sysroot/usr/include/stdc-predef.h" 1 3 4
> -\# 32 "<command-line>" 2
> -\# 1 "conftest.txt"
> -
> -Fix it by only matching on 'yes' on a line by itself.
> -
> -Upstream-status: submitted to author
> -Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ----
> -
> - autoconf/configure.in | 2 +-
> - configure             | 2 +-
> - 2 files changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/autoconf/configure.in b/autoconf/configure.in
> -index bd45004..487c42b 100644
> ---- a/autoconf/configure.in
> -+++ b/autoconf/configure.in
> -@@ -86,7 +86,7 @@ AC_PROG_MAKE_SET
> - 
> - dnl AIX needs -lc128
> - dnl
> --AC_EGREP_CPP([yes], [#ifdef _AIX
> -+AC_EGREP_CPP([^yes$], [#ifdef _AIX
> - yes
> - #endif
> - ], [LIBS="$LIBS -lc128"])
> -diff --git a/configure b/configure
> -index 7c11be0..59267b9 100755
> ---- a/configure
> -+++ b/configure
> -@@ -3377,7 +3377,7 @@ yes
> - 
> - _ACEOF
> - if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
> --  $EGREP "yes" >/dev/null 2>&1; then
> -+  $EGREP "^yes$" >/dev/null 2>&1; then
> -   LIBS="$LIBS -lc128"
> - fi
> - rm -f conftest*
> --- 
> -2.11.0
> -
> diff --git a/package/pv/pv.hash b/package/pv/pv.hash
> index 1ce1191d54..b3dd71f74b 100644
> --- a/package/pv/pv.hash
> +++ b/package/pv/pv.hash
> @@ -1,5 +1,5 @@
>  # Locally calculated after checking pgp signature
> -sha256	608ef935f7a377e1439c181c4fc188d247da10d51a19ef79bcdee5043b0973f1  pv-1.6.6.tar.bz2
> +sha256  e831951eff0718fba9b1ef286128773b9d0e723e1fbfae88d5a3188814fdc603  pv-1.6.20.tar.bz2
>  
>  # Hash for license file
>  sha256  280e182171df3e9bb4a9b407326e88521151fcb8f4f8557255f26177d5900ccf  doc/COPYING
> diff --git a/package/pv/pv.mk b/package/pv/pv.mk
> index 122cc0c5ca..27060cf07e 100644
> --- a/package/pv/pv.mk
> +++ b/package/pv/pv.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -PV_VERSION = 1.6.6
> +PV_VERSION = 1.6.20
>  PV_SOURCE = pv-$(PV_VERSION).tar.bz2
>  PV_SITE = http://www.ivarch.com/programs/sources
>  PV_LICENSE = Artistic-2.0
> -- 
> 2.33.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@lists.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@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-09-18 17:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14 21:25 [Buildroot] [PATCH 1/1] package/pv: bump to version 1.6.20 Fabrice Fontaine
2021-09-18 17:56 ` Yann E. MORIN

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.