All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/python-passlib: bump to version 1.7.4
@ 2021-07-21 22:29 Fabrice Fontaine
  2021-07-24 20:25 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-07-21 22:29 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Thomas Petazzoni, Asaf Kahlon

- Update site URL
- Update indentation in hash file (two spaces)
- Update hash of LICENSE due to update in year with
  https://foss.heptapod.net/python-libs/passlib/-/commit/02ca63576ac7749c28ef48365218f291eac9b8e1

https://passlib.readthedocs.io/en/stable/history/1.7.html#whats-new

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

diff --git a/package/python-passlib/Config.in b/package/python-passlib/Config.in
index 23546a18a5..ed4097c562 100644
--- a/package/python-passlib/Config.in
+++ b/package/python-passlib/Config.in
@@ -4,4 +4,4 @@ config BR2_PACKAGE_PYTHON_PASSLIB
 	  comprehensive password hashing framework supporting over 30
 	  schemes.
 
-	  https://bitbucket.org/ecollins/passlib
+	  https://passlib.readthedocs.io
diff --git a/package/python-passlib/python-passlib.hash b/package/python-passlib/python-passlib.hash
index 867223e19a..c0652865aa 100644
--- a/package/python-passlib/python-passlib.hash
+++ b/package/python-passlib/python-passlib.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/passlib/json
-md5	b908529cfd4c33057c244324c692eae7  passlib-1.7.2.tar.gz
-sha256	8d666cef936198bc2ab47ee9b0410c94adf2ba798e5a84bf220be079ae7ab6a8  passlib-1.7.2.tar.gz
+md5  3a229cbd00dfb33e99885b43325e0591  passlib-1.7.4.tar.gz
+sha256  defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04  passlib-1.7.4.tar.gz
 # Locally computed sha256 checksums
-sha256	49a74ad666f456493d6b9e2cda7c55e46ad512ce2c67db4accaddb27bb240bb9  LICENSE
+sha256  a95ba8f1af88ff8d5f0d0c33519f430b7f9d8992b69d4bc369ac0423a7a05a89  LICENSE
diff --git a/package/python-passlib/python-passlib.mk b/package/python-passlib/python-passlib.mk
index 6ab94fd66e..013fec74de 100644
--- a/package/python-passlib/python-passlib.mk
+++ b/package/python-passlib/python-passlib.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_PASSLIB_VERSION = 1.7.2
+PYTHON_PASSLIB_VERSION = 1.7.4
 PYTHON_PASSLIB_SOURCE = passlib-$(PYTHON_PASSLIB_VERSION).tar.gz
-PYTHON_PASSLIB_SITE = https://files.pythonhosted.org/packages/6d/6b/4bfca0c13506535289b58f9c9761d20f56ed89439bfe6b8e07416ce58ee1
+PYTHON_PASSLIB_SITE = https://files.pythonhosted.org/packages/b6/06/9da9ee59a67fae7761aab3ccc84fa4f3f33f125b370f1ccdb915bf967c11
 PYTHON_PASSLIB_SETUP_TYPE = setuptools
 PYTHON_PASSLIB_LICENSE = BSD-3-Clause
 PYTHON_PASSLIB_LICENSE_FILES = LICENSE
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/python-passlib: bump to version 1.7.4
  2021-07-21 22:29 [Buildroot] [PATCH 1/1] package/python-passlib: bump to version 1.7.4 Fabrice Fontaine
@ 2021-07-24 20:25 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2021-07-24 20:25 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Asaf Kahlon, buildroot

On Thu, 22 Jul 2021 00:29:57 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> - Update site URL
> - Update indentation in hash file (two spaces)
> - Update hash of LICENSE due to update in year with
>   https://foss.heptapod.net/python-libs/passlib/-/commit/02ca63576ac7749c28ef48365218f291eac9b8e1
> 
> https://passlib.readthedocs.io/en/stable/history/1.7.html#whats-new
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/python-passlib/Config.in           | 2 +-
>  package/python-passlib/python-passlib.hash | 6 +++---
>  package/python-passlib/python-passlib.mk   | 4 ++--
>  3 files changed, 6 insertions(+), 6 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-07-24 20:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21 22:29 [Buildroot] [PATCH 1/1] package/python-passlib: bump to version 1.7.4 Fabrice Fontaine
2021-07-24 20:25 ` Thomas Petazzoni

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.