All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6
@ 2021-10-22 22:20 Peter Seiderer
  2021-10-22 22:20 ` [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016 Peter Seiderer
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Peter Seiderer @ 2021-10-22 22:20 UTC (permalink / raw)
  To: buildroot; +Cc: Martin Bark, Thomas Petazzoni, Asaf Kahlon

- the last version bump of package/python-cffi (790c10d) ignored
  the comment 'Please keep in sync with package/python3-cffi/python3-cffi.mk',
  so catch up now

Fixes:

  ERROR: No hash found for cffi-1.14.2.tar.gz

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/python3-cffi/python3-cffi.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/python3-cffi/python3-cffi.mk b/package/python3-cffi/python3-cffi.mk
index 7541e71b73..52ea3b3fbf 100644
--- a/package/python3-cffi/python3-cffi.mk
+++ b/package/python3-cffi/python3-cffi.mk
@@ -5,9 +5,9 @@
 ################################################################################
 
 # Please keep in sync with package/python-cffi/python-cffi.mk
-PYTHON3_CFFI_VERSION = 1.14.2
+PYTHON3_CFFI_VERSION = 1.14.6
 PYTHON3_CFFI_SOURCE = cffi-$(PYTHON3_CFFI_VERSION).tar.gz
-PYTHON3_CFFI_SITE = https://files.pythonhosted.org/packages/f7/09/88bbe20b76ca76be052c366fe77aa5e3cd6e5f932766e5597fecdd95b2a8
+PYTHON3_CFFI_SITE = https://files.pythonhosted.org/packages/2e/92/87bb61538d7e60da8a7ec247dc048f7671afe17016cd0008b3b710012804
 PYTHON3_CFFI_SETUP_TYPE = setuptools
 PYTHON3_CFFI_LICENSE = MIT
 PYTHON3_CFFI_LICENSE_FILES = LICENSE
-- 
2.33.1

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

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

* [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016
  2021-10-22 22:20 [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Peter Seiderer
@ 2021-10-22 22:20 ` Peter Seiderer
  2021-10-24 13:26   ` Thomas Petazzoni
  2021-10-24 13:25 ` [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Thomas Petazzoni
  2021-10-26 11:45 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Peter Seiderer @ 2021-10-22 22:20 UTC (permalink / raw)
  To: buildroot; +Cc: Martin Bark, Thomas Petazzoni, Asaf Kahlon

- bump version to 20211016

- add host-python3-cryptography dependency (needed since upstream
  commit [1])

[1] https://salsa.debian.org/debian/ca-certificates/-/commit/8033d52259172b4bddc0f8bbcb6f6566b348db72

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/ca-certificates/ca-certificates.hash | 4 ++--
 package/ca-certificates/ca-certificates.mk   | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/ca-certificates/ca-certificates.hash b/package/ca-certificates/ca-certificates.hash
index 024034c977..a1675b999e 100644
--- a/package/ca-certificates/ca-certificates.hash
+++ b/package/ca-certificates/ca-certificates.hash
@@ -1,6 +1,6 @@
 # hashes from: $(CA_CERTIFICATES_SITE)/ca-certificates_$(CA_CERTIFICATES_VERSION).dsc :
-sha1  c9875aa16e42981c6975e59a11727539053e2299  ca-certificates_20210119.tar.xz
-sha256  daa3afae563711c30a0586ddae4336e8e3974c2b627faaca404c4e0141b64665  ca-certificates_20210119.tar.xz
+sha1  bce5a8fac45456dbebf256f3a812c6cd0a853e3e  ca-certificates_20211016.tar.xz
+sha256  2ae9b6dc5f40c25d6d7fe55e07b54f12a8967d1955d3b7b2f42ee46266eeef88  ca-certificates_20211016.tar.xz
 
 # Locally computed
 sha256  e85e1bcad3a915dc7e6f41412bc5bdeba275cadd817896ea0451f2140a93967c  debian/copyright
diff --git a/package/ca-certificates/ca-certificates.mk b/package/ca-certificates/ca-certificates.mk
index 94302ea96b..0b75a8c778 100644
--- a/package/ca-certificates/ca-certificates.mk
+++ b/package/ca-certificates/ca-certificates.mk
@@ -4,10 +4,10 @@
 #
 ################################################################################
 
-CA_CERTIFICATES_VERSION = 20210119
+CA_CERTIFICATES_VERSION = 20211016
 CA_CERTIFICATES_SOURCE = ca-certificates_$(CA_CERTIFICATES_VERSION).tar.xz
-CA_CERTIFICATES_SITE = https://snapshot.debian.org/archive/debian/20210325T091936Z/pool/main/c/ca-certificates
-CA_CERTIFICATES_DEPENDENCIES = host-openssl host-python3
+CA_CERTIFICATES_SITE = https://snapshot.debian.org/archive/debian/20211022T144903Z/pool/main/c/ca-certificates
+CA_CERTIFICATES_DEPENDENCIES = host-openssl host-python3 host-python3-cryptography
 CA_CERTIFICATES_LICENSE = GPL-2.0+ (script), MPL-2.0 (data)
 CA_CERTIFICATES_LICENSE_FILES = debian/copyright
 
-- 
2.33.1

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

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

* Re: [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6
  2021-10-22 22:20 [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Peter Seiderer
  2021-10-22 22:20 ` [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016 Peter Seiderer
@ 2021-10-24 13:25 ` Thomas Petazzoni
  2021-10-26 11:45 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-10-24 13:25 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Martin Bark, Asaf Kahlon, buildroot

On Sat, 23 Oct 2021 00:20:32 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> - the last version bump of package/python-cffi (790c10d) ignored
>   the comment 'Please keep in sync with package/python3-cffi/python3-cffi.mk',
>   so catch up now
> 
> Fixes:
> 
>   ERROR: No hash found for cffi-1.14.2.tar.gz
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/python3-cffi/python3-cffi.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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 v1 2/2] package/ca-certificates: bump version to 20211016
  2021-10-22 22:20 ` [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016 Peter Seiderer
@ 2021-10-24 13:26   ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-10-24 13:26 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Martin Bark, Asaf Kahlon, buildroot

On Sat, 23 Oct 2021 00:20:33 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> - bump version to 20211016
> 
> - add host-python3-cryptography dependency (needed since upstream
>   commit [1])
> 
> [1] https://salsa.debian.org/debian/ca-certificates/-/commit/8033d52259172b4bddc0f8bbcb6f6566b348db72
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/ca-certificates/ca-certificates.hash | 4 ++--
>  package/ca-certificates/ca-certificates.mk   | 6 +++---
>  2 files changed, 5 insertions(+), 5 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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 v1 1/2] package/python3-cffi: bump version to 1.14.6
  2021-10-22 22:20 [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Peter Seiderer
  2021-10-22 22:20 ` [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016 Peter Seiderer
  2021-10-24 13:25 ` [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Thomas Petazzoni
@ 2021-10-26 11:45 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-26 11:45 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Asaf Kahlon, Martin Bark, Thomas Petazzoni, buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > - the last version bump of package/python-cffi (790c10d) ignored
 >   the comment 'Please keep in sync with package/python3-cffi/python3-cffi.mk',
 >   so catch up now

 > Fixes:

 >   ERROR: No hash found for cffi-1.14.2.tar.gz

 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>

Committed to 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

end of thread, other threads:[~2021-10-26 11:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-22 22:20 [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Peter Seiderer
2021-10-22 22:20 ` [Buildroot] [PATCH v1 2/2] package/ca-certificates: bump version to 20211016 Peter Seiderer
2021-10-24 13:26   ` Thomas Petazzoni
2021-10-24 13:25 ` [Buildroot] [PATCH v1 1/2] package/python3-cffi: bump version to 1.14.6 Thomas Petazzoni
2021-10-26 11:45 ` Peter Korsgaard

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.