Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-qrcode: update to 7.3.1
@ 2022-10-13  5:39 anjandev
  2022-10-13  5:43 ` anjandev
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: anjandev @ 2022-10-13  5:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 485 bytes --]

There is a new pull request by anjandev against master on the void-packages repository

https://github.com/anjandev/void-packages qr
https://github.com/void-linux/void-packages/pull/39928

python3-qrcode: update to 7.3.1

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/39928.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qr-39928.patch --]
[-- Type: text/x-diff, Size: 1111 bytes --]

From a1bee5b754cccd5587849daa0dba99ebd29c468f Mon Sep 17 00:00:00 2001
From: Anjandev Momi <anjan@momi.ca>
Date: Wed, 12 Oct 2022 22:38:09 -0700
Subject: [PATCH] python3-qrcode: update to 7.3.1

---
 srcpkgs/python3-qrcode/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..30fe06b6a477 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
-revision=5
+version=7.3.1
+revision=1
 wrksrc="qrcode-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -12,7 +12,7 @@ maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
 
 do_check() {
 	python3 setup.py test

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

* Re: python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
@ 2022-10-13  5:43 ` anjandev
  2022-10-13  5:58 ` [PR PATCH] [Updated] " anjandev
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: anjandev @ 2022-10-13  5:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 400 bytes --]

New comment by anjandev on void-packages repository

https://github.com/void-linux/void-packages/pull/39928#issuecomment-1277058375

Comment:
Tests fail with:

```
ModuleNotFoundError: No module named 'Image'
```

This function requires an optional dependency: `python3-Pillow`. I tested it with that package and it works. The optional dependency is already recommended when the user installs.

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

* Re: [PR PATCH] [Updated] python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
  2022-10-13  5:43 ` anjandev
@ 2022-10-13  5:58 ` anjandev
  2022-10-13  6:06 ` anjandev
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: anjandev @ 2022-10-13  5:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

There is an updated pull request by anjandev against master on the void-packages repository

https://github.com/anjandev/void-packages qr
https://github.com/void-linux/void-packages/pull/39928

python3-qrcode: update to 7.3.1

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/39928.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qr-39928.patch --]
[-- Type: text/x-diff, Size: 1240 bytes --]

From 9da2a225b4ee65e7da60eff1dad9c45809b4551b Mon Sep 17 00:00:00 2001
From: Anjandev Momi <anjan@momi.ca>
Date: Wed, 12 Oct 2022 22:38:09 -0700
Subject: [PATCH] python3-qrcode: update to 7.3.1

---
 srcpkgs/python3-qrcode/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..aee92b923edc 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
-revision=5
+version=7.3.1
+revision=1
 wrksrc="qrcode-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-six"
-checkdepends="python3-six"
+checkdepends="python3-six python3-Pillow"
 short_desc="QR Code image generator (Python3)"
 maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
 
 do_check() {
 	python3 setup.py test

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

* Re: [PR PATCH] [Updated] python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
  2022-10-13  5:43 ` anjandev
  2022-10-13  5:58 ` [PR PATCH] [Updated] " anjandev
@ 2022-10-13  6:06 ` anjandev
  2022-10-13  6:09 ` anjandev
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: anjandev @ 2022-10-13  6:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

There is an updated pull request by anjandev against master on the void-packages repository

https://github.com/anjandev/void-packages qr
https://github.com/void-linux/void-packages/pull/39928

python3-qrcode: update to 7.3.1

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/39928.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qr-39928.patch --]
[-- Type: text/x-diff, Size: 1315 bytes --]

From 0c8164bdc40d802444bd787ea850611b723f89f3 Mon Sep 17 00:00:00 2001
From: Anjandev Momi <anjan@momi.ca>
Date: Wed, 12 Oct 2022 22:38:09 -0700
Subject: [PATCH] python3-qrcode: update to 7.3.1

---
 srcpkgs/python3-qrcode/template | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..b907c50e0b06 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,18 +1,20 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
-revision=5
+version=7.3.1
+revision=1
 wrksrc="qrcode-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-six"
-checkdepends="python3-six"
+checkdepends="python3-six python3-Pillow"
 short_desc="QR Code image generator (Python3)"
 maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
+# packages needed to run tests are not packaged in void
+make_check=no
 
 do_check() {
 	python3 setup.py test

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

* Re: python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
                   ` (2 preceding siblings ...)
  2022-10-13  6:06 ` anjandev
@ 2022-10-13  6:09 ` anjandev
  2022-10-13  8:54 ` [PR REVIEW] " paper42
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: anjandev @ 2022-10-13  6:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 400 bytes --]

New comment by anjandev on void-packages repository

https://github.com/void-linux/void-packages/pull/39928#issuecomment-1277058375

Comment:
Tests fail with:

```
ModuleNotFoundError: No module named 'Image'
```

This function requires an optional dependency: `python3-Pillow`. I tested it with that package and it works. The optional dependency is already recommended when the user installs.

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

* Re: [PR REVIEW] python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
                   ` (3 preceding siblings ...)
  2022-10-13  6:09 ` anjandev
@ 2022-10-13  8:54 ` paper42
  2022-10-13 21:14 ` [PR PATCH] [Updated] " anjandev
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-10-13  8:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/39928#discussion_r994354736

Comment:
could you list a few here so when/if they are added, we know tests can be enabled here?

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

* Re: [PR PATCH] [Updated] python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
                   ` (4 preceding siblings ...)
  2022-10-13  8:54 ` [PR REVIEW] " paper42
@ 2022-10-13 21:14 ` anjandev
  2023-01-12  2:29 ` github-actions
  2023-01-27  1:59 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 12+ messages in thread
From: anjandev @ 2022-10-13 21:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

There is an updated pull request by anjandev against master on the void-packages repository

https://github.com/anjandev/void-packages qr
https://github.com/void-linux/void-packages/pull/39928

python3-qrcode: update to 7.3.1

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/39928.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qr-39928.patch --]
[-- Type: text/x-diff, Size: 1323 bytes --]

From 406e2990ef92ce08b6c4ebb72be8d89eb2a856f8 Mon Sep 17 00:00:00 2001
From: Anjandev Momi <anjan@momi.ca>
Date: Wed, 12 Oct 2022 22:38:09 -0700
Subject: [PATCH] python3-qrcode: update to 7.3.1

---
 srcpkgs/python3-qrcode/template | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..65f9fae97ed7 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,18 +1,20 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
-revision=5
+version=7.3.1
+revision=1
 wrksrc="qrcode-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-six"
-checkdepends="python3-six"
+checkdepends="python3-six python3-Pillow"
 short_desc="QR Code image generator (Python3)"
 maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
+# pymaging package needed to run tests are not packaged in void
+make_check=no
 
 do_check() {
 	python3 setup.py test

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

* Re: python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
                   ` (5 preceding siblings ...)
  2022-10-13 21:14 ` [PR PATCH] [Updated] " anjandev
@ 2023-01-12  2:29 ` github-actions
  2023-01-27  1:59 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2023-01-12  2:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/39928#issuecomment-1379733334

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: python3-qrcode: update to 7.3.1
  2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
                   ` (6 preceding siblings ...)
  2023-01-12  2:29 ` github-actions
@ 2023-01-27  1:59 ` github-actions
  7 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2023-01-27  1:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 337 bytes --]

There's a closed pull request on the void-packages repository

python3-qrcode: update to 7.3.1
https://github.com/void-linux/void-packages/pull/39928

Description:

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



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

* [PR PATCH] python3-qrcode: update to 7.3.1.
@ 2022-02-13 13:57 MouadCharradi
  0 siblings, 0 replies; 12+ messages in thread
From: MouadCharradi @ 2022-02-13 13:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1240 bytes --]

There is a new pull request by MouadCharradi against master on the void-packages repository

https://github.com/MouadCharradi/void-packages python3-qrcode
https://github.com/void-linux/void-packages/pull/35583

python3-qrcode: update to 7.3.1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/35583.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-qrcode-35583.patch --]
[-- Type: text/x-diff, Size: 1253 bytes --]

From 7ee8759ed013d19493cd47a6d69d8dd495cb39e2 Mon Sep 17 00:00:00 2001
From: MouadCharradi <charradimouad58@gmail.com>
Date: Sun, 13 Feb 2022 14:55:04 +0100
Subject: [PATCH] python3-qrcode: update to 7.3.1.

---
 srcpkgs/python3-qrcode/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..aee92b923edc 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
-revision=5
+version=7.3.1
+revision=1
 wrksrc="qrcode-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-six"
-checkdepends="python3-six"
+checkdepends="python3-six python3-Pillow"
 short_desc="QR Code image generator (Python3)"
 maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
 
 do_check() {
 	python3 setup.py test

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

* [PR PATCH] python3-qrcode: update to 7.3.1.
@ 2022-02-13  3:43 MouadCharradi
  0 siblings, 0 replies; 12+ messages in thread
From: MouadCharradi @ 2022-02-13  3:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1240 bytes --]

There is a new pull request by MouadCharradi against master on the void-packages repository

https://github.com/MouadCharradi/void-packages python3-qrcode
https://github.com/void-linux/void-packages/pull/35575

python3-qrcode: update to 7.3.1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/35575.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-qrcode-35575.patch --]
[-- Type: text/x-diff, Size: 1072 bytes --]

From 14fe947f6e68e0993aff7d005dd73f5de9b17bbd Mon Sep 17 00:00:00 2001
From: MouadCharradi <charradimouad58@gmail.com>
Date: Sun, 13 Feb 2022 04:41:09 +0100
Subject: [PATCH] python3-qrcode: update to 7.3.1.

---
 srcpkgs/python3-qrcode/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..6abb8c0dce44 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
+version=7.3.1
 revision=5
 wrksrc="qrcode-${version}"
 build_style=python3-module
@@ -12,7 +12,7 @@ maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
 
 do_check() {
 	python3 setup.py test

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

* [PR PATCH] python3-qrcode: update to 7.3.1.
@ 2022-02-13  1:06 MouadCharradi
  0 siblings, 0 replies; 12+ messages in thread
From: MouadCharradi @ 2022-02-13  1:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1232 bytes --]

There is a new pull request by MouadCharradi against master on the void-packages repository

https://github.com/MouadCharradi/void-packages master
https://github.com/void-linux/void-packages/pull/35571

python3-qrcode: update to 7.3.1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/35571.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-35571.patch --]
[-- Type: text/x-diff, Size: 1072 bytes --]

From 112a1088ac189b2735996d32d2db3c9a1cc3392b Mon Sep 17 00:00:00 2001
From: MouadCharradi <charradimouad58@gmail.com>
Date: Sun, 13 Feb 2022 01:44:34 +0100
Subject: [PATCH] python3-qrcode: update to 7.3.1.

---
 srcpkgs/python3-qrcode/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template
index 50a1966adb5b..6abb8c0dce44 100644
--- a/srcpkgs/python3-qrcode/template
+++ b/srcpkgs/python3-qrcode/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-qrcode'
 pkgname=python3-qrcode
-version=6.1
+version=7.3.1
 revision=5
 wrksrc="qrcode-${version}"
 build_style=python3-module
@@ -12,7 +12,7 @@ maintainer="Charles E. Lehner <cel@celehner.com>"
 license="BSD-3-Clause"
 homepage="https://github.com/lincolnloop/python-qrcode"
 distfiles="${PYPI_SITE}/q/qrcode/qrcode-${version}.tar.gz"
-checksum=505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369
+checksum=375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578
 
 do_check() {
 	python3 setup.py test

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

end of thread, other threads:[~2023-01-27  1:59 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-13  5:39 [PR PATCH] python3-qrcode: update to 7.3.1 anjandev
2022-10-13  5:43 ` anjandev
2022-10-13  5:58 ` [PR PATCH] [Updated] " anjandev
2022-10-13  6:06 ` anjandev
2022-10-13  6:09 ` anjandev
2022-10-13  8:54 ` [PR REVIEW] " paper42
2022-10-13 21:14 ` [PR PATCH] [Updated] " anjandev
2023-01-12  2:29 ` github-actions
2023-01-27  1:59 ` [PR PATCH] [Closed]: " github-actions
  -- strict thread matches above, loose matches on Subject: below --
2022-02-13 13:57 [PR PATCH] " MouadCharradi
2022-02-13  3:43 MouadCharradi
2022-02-13  1:06 MouadCharradi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).