Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-sh: update to 1.14.3.
@ 2022-08-10  5:16 pfpulux
  2022-08-10 19:33 ` icp1994
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: pfpulux @ 2022-08-10  5:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/pfpulux/void-packages python3-sh
https://github.com/void-linux/void-packages/pull/38578

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

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

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

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

From a852426039be21236b3dd1e25022881bb0f4f90c Mon Sep 17 00:00:00 2001
From: Pulux <pulux@pf4sh.eu>
Date: Wed, 10 Aug 2022 07:16:08 +0200
Subject: [PATCH] python3-sh: update to 1.14.3.

---
 ...n-some-systems.-Use-a-random-dir-ins.patch | 46 -------------------
 srcpkgs/python3-sh/template                   |  6 +--
 2 files changed, 3 insertions(+), 49 deletions(-)
 delete mode 100644 srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch

diff --git a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch b/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
deleted file mode 100644
index 1c0063a411e0..000000000000
--- a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 6b9fc9ace0219fd7199cb0d0261b01e364e96fe2 Mon Sep 17 00:00:00 2001
-From: Erik Cederstrand <erik@cederstrand.dk>
-Date: Mon, 16 Aug 2021 08:18:31 +0200
-Subject: [PATCH] CWD may be /tmp on some systems. Use a random dir instead.
- Fixes #582
-
----
- test.py | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/test.py b/test.py
-index 4e9e8e0..d438e30 100644
---- a/test.py
-+++ b/test.py
-@@ -2261,13 +2261,15 @@ p.wait()
- 
-     def test_pushd(self):
-         """ test basic pushd functionality """
-+        child = realpath(tempfile.mkdtemp())
-+
-         old_wd1 = sh.pwd().strip()
-         old_wd2 = os.getcwd()
- 
-         self.assertEqual(old_wd1, old_wd2)
--        self.assertNotEqual(old_wd1, tempdir)
-+        self.assertNotEqual(old_wd1, child)
- 
--        with sh.pushd(tempdir):
-+        with sh.pushd(child):
-             new_wd1 = sh.pwd().strip()
-             new_wd2 = os.getcwd()
- 
-@@ -2276,8 +2278,8 @@ p.wait()
-         self.assertEqual(old_wd3, old_wd4)
-         self.assertEqual(old_wd1, old_wd3)
- 
--        self.assertEqual(new_wd1, tempdir)
--        self.assertEqual(new_wd2, tempdir)
-+        self.assertEqual(new_wd1, child)
-+        self.assertEqual(new_wd2, child)
- 
-     def test_pushd_cd(self):
-         """ test that pushd works like pushd/popd with built-in cd correctly """
--- 
-2.32.0
-
diff --git a/srcpkgs/python3-sh/template b/srcpkgs/python3-sh/template
index 440c03cee0cc..a75148f0352c 100644
--- a/srcpkgs/python3-sh/template
+++ b/srcpkgs/python3-sh/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-sh'
 pkgname=python3-sh
-version=1.14.2
-revision=3
+version=1.14.3
+revision=1
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -12,7 +12,7 @@ maintainer="pulux <pulux@pf4sh.de>"
 license="MIT"
 homepage="https://github.com/amoffat/sh"
 distfiles="${PYPI_SITE}/s/sh/sh-${version}.tar.gz"
-checksum=9d7bd0334d494b2a4609fe521b2107438cdb21c0e469ffeeb191489883d6fe0d
+checksum=e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7
 
 post_install() {
 	vlicense LICENSE.txt

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
@ 2022-08-10 19:33 ` icp1994
  2022-08-11  4:49 ` classabbyamp
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: icp1994 @ 2022-08-10 19:33 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1211177567

Comment:
The failing test is weird. It always fails for me when run on a clean build but passes on subsequent invocations.

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
  2022-08-10 19:33 ` icp1994
@ 2022-08-11  4:49 ` classabbyamp
  2022-08-11 19:25 ` icp1994
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2022-08-11  4:49 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1211550981

Comment:
I wonder what dir it's listing for this

https://github.com/amoffat/sh/blob/develop/test.py#L862-L866


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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
  2022-08-10 19:33 ` icp1994
  2022-08-11  4:49 ` classabbyamp
@ 2022-08-11 19:25 ` icp1994
  2022-08-11 19:28 ` classabbyamp
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: icp1994 @ 2022-08-11 19:25 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1212396987

Comment:
`masterdir/tmp` is being operated on. Both `ls -A1` and `os.listdir(".")` outputs the contents properly. Even if you manually wipe with `rm -r masterdir/tmp/*`, on a clean build you get `AssertionError: 1 != 0`. But wiping `tmp` and running `./xbps-src check` again passes immediately after that :confounded:

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (2 preceding siblings ...)
  2022-08-11 19:25 ` icp1994
@ 2022-08-11 19:28 ` classabbyamp
  2022-08-12 16:55 ` icp1994
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2022-08-11 19:28 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1212400010

Comment:
maybe another test is creating files in tmp?

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (3 preceding siblings ...)
  2022-08-11 19:28 ` classabbyamp
@ 2022-08-12 16:55 ` icp1994
  2022-08-12 16:57 ` classabbyamp
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: icp1994 @ 2022-08-12 16:55 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1213324441

Comment:
It does generate 2 files under `masterdir/tmp` for me after each invocation but that happens in later tests, executed after the two function calls in this test. Even then I couldn't figure out a reason why it would pass the tests on rebuilds with an empty `tmp` since the conditions seem identical to a clean build. Might just be that test has some race condition or flaky or [weird issue with ls and wc](https://unix.stackexchange.com/a/113472).

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (4 preceding siblings ...)
  2022-08-12 16:55 ` icp1994
@ 2022-08-12 16:57 ` classabbyamp
  2022-08-12 19:05 ` [PR PATCH] [Updated] " pfpulux
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2022-08-12 16:57 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#issuecomment-1213326293

Comment:
ok, let's disable this test then.

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

* Re: [PR PATCH] [Updated] python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (5 preceding siblings ...)
  2022-08-12 16:57 ` classabbyamp
@ 2022-08-12 19:05 ` pfpulux
  2022-08-12 19:06 ` [PR REVIEW] " classabbyamp
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: pfpulux @ 2022-08-12 19:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/pfpulux/void-packages python3-sh
https://github.com/void-linux/void-packages/pull/38578

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

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

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

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

From 6c3ea36b76cae0604ca517922a2988f5f6396ba8 Mon Sep 17 00:00:00 2001
From: Pulux <pulux@pf4sh.eu>
Date: Wed, 10 Aug 2022 07:16:08 +0200
Subject: [PATCH] python3-sh: update to 1.14.3.

---
 ...n-some-systems.-Use-a-random-dir-ins.patch | 46 -------------------
 srcpkgs/python3-sh/template                   |  9 ++--
 2 files changed, 5 insertions(+), 50 deletions(-)
 delete mode 100644 srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch

diff --git a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch b/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
deleted file mode 100644
index 1c0063a411e0..000000000000
--- a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 6b9fc9ace0219fd7199cb0d0261b01e364e96fe2 Mon Sep 17 00:00:00 2001
-From: Erik Cederstrand <erik@cederstrand.dk>
-Date: Mon, 16 Aug 2021 08:18:31 +0200
-Subject: [PATCH] CWD may be /tmp on some systems. Use a random dir instead.
- Fixes #582
-
----
- test.py | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/test.py b/test.py
-index 4e9e8e0..d438e30 100644
---- a/test.py
-+++ b/test.py
-@@ -2261,13 +2261,15 @@ p.wait()
- 
-     def test_pushd(self):
-         """ test basic pushd functionality """
-+        child = realpath(tempfile.mkdtemp())
-+
-         old_wd1 = sh.pwd().strip()
-         old_wd2 = os.getcwd()
- 
-         self.assertEqual(old_wd1, old_wd2)
--        self.assertNotEqual(old_wd1, tempdir)
-+        self.assertNotEqual(old_wd1, child)
- 
--        with sh.pushd(tempdir):
-+        with sh.pushd(child):
-             new_wd1 = sh.pwd().strip()
-             new_wd2 = os.getcwd()
- 
-@@ -2276,8 +2278,8 @@ p.wait()
-         self.assertEqual(old_wd3, old_wd4)
-         self.assertEqual(old_wd1, old_wd3)
- 
--        self.assertEqual(new_wd1, tempdir)
--        self.assertEqual(new_wd2, tempdir)
-+        self.assertEqual(new_wd1, child)
-+        self.assertEqual(new_wd2, child)
- 
-     def test_pushd_cd(self):
-         """ test that pushd works like pushd/popd with built-in cd correctly """
--- 
-2.32.0
-
diff --git a/srcpkgs/python3-sh/template b/srcpkgs/python3-sh/template
index 440c03cee0cc..9f9f031171a5 100644
--- a/srcpkgs/python3-sh/template
+++ b/srcpkgs/python3-sh/template
@@ -1,18 +1,19 @@
 # Template file for 'python3-sh'
 pkgname=python3-sh
-version=1.14.2
-revision=3
+version=1.14.3
+revision=1
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
-checkdepends="python3-Pygments python3-coverage python3-coveralls python3-docopt python3-docutils flake8"
+# checkdepends="python3-Pygments python3-coverage python3-coveralls python3-docopt python3-docutils flake8"
 short_desc="Python subprocess replacement (Python3)"
 maintainer="pulux <pulux@pf4sh.de>"
 license="MIT"
 homepage="https://github.com/amoffat/sh"
 distfiles="${PYPI_SITE}/s/sh/sh-${version}.tar.gz"
-checksum=9d7bd0334d494b2a4609fe521b2107438cdb21c0e469ffeeb191489883d6fe0d
+checksum=e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7
+make_check=no
 
 post_install() {
 	vlicense LICENSE.txt

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

* Re: [PR REVIEW] python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (6 preceding siblings ...)
  2022-08-12 19:05 ` [PR PATCH] [Updated] " pfpulux
@ 2022-08-12 19:06 ` classabbyamp
  2022-11-11  2:13 ` github-actions
  2022-11-26  2:01 ` [PR PATCH] [Closed]: " github-actions
  9 siblings, 0 replies; 12+ messages in thread
From: classabbyamp @ 2022-08-12 19:06 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38578#discussion_r944764534

Comment:
I don't think we need to disable test altogether if just one fails

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

* Re: python3-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (7 preceding siblings ...)
  2022-08-12 19:06 ` [PR REVIEW] " classabbyamp
@ 2022-11-11  2:13 ` github-actions
  2022-11-26  2:01 ` [PR PATCH] [Closed]: " github-actions
  9 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2022-11-11  2:13 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/38578#issuecomment-1311139790

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-sh: update to 1.14.3.
  2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
                   ` (8 preceding siblings ...)
  2022-11-11  2:13 ` github-actions
@ 2022-11-26  2:01 ` github-actions
  9 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2022-11-26  2:01 UTC (permalink / raw)
  To: ml

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

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

python3-sh: update to 1.14.3.
https://github.com/void-linux/void-packages/pull/38578

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

* [PR PATCH] python3-sh: update to 1.14.3.
@ 2023-01-22  5:57 pfpulux
  0 siblings, 0 replies; 12+ messages in thread
From: pfpulux @ 2023-01-22  5:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/pfpulux/void-packages python3-sh
https://github.com/void-linux/void-packages/pull/41794

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

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
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/41794.patch is attached

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

From 65d750766473d4b2cccd8ccf134a282408c77623 Mon Sep 17 00:00:00 2001
From: Pulux <pulux@pf4sh.eu>
Date: Sun, 22 Jan 2023 06:56:38 +0100
Subject: [PATCH] python3-sh: update to 1.14.3.

---
 ...n-some-systems.-Use-a-random-dir-ins.patch | 46 -------------------
 srcpkgs/python3-sh/template                   |  8 ++--
 2 files changed, 4 insertions(+), 50 deletions(-)
 delete mode 100644 srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch

diff --git a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch b/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
deleted file mode 100644
index 1c0063a411e0..000000000000
--- a/srcpkgs/python3-sh/patches/0001-CWD-may-be-tmp-on-some-systems.-Use-a-random-dir-ins.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 6b9fc9ace0219fd7199cb0d0261b01e364e96fe2 Mon Sep 17 00:00:00 2001
-From: Erik Cederstrand <erik@cederstrand.dk>
-Date: Mon, 16 Aug 2021 08:18:31 +0200
-Subject: [PATCH] CWD may be /tmp on some systems. Use a random dir instead.
- Fixes #582
-
----
- test.py | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/test.py b/test.py
-index 4e9e8e0..d438e30 100644
---- a/test.py
-+++ b/test.py
-@@ -2261,13 +2261,15 @@ p.wait()
- 
-     def test_pushd(self):
-         """ test basic pushd functionality """
-+        child = realpath(tempfile.mkdtemp())
-+
-         old_wd1 = sh.pwd().strip()
-         old_wd2 = os.getcwd()
- 
-         self.assertEqual(old_wd1, old_wd2)
--        self.assertNotEqual(old_wd1, tempdir)
-+        self.assertNotEqual(old_wd1, child)
- 
--        with sh.pushd(tempdir):
-+        with sh.pushd(child):
-             new_wd1 = sh.pwd().strip()
-             new_wd2 = os.getcwd()
- 
-@@ -2276,8 +2278,8 @@ p.wait()
-         self.assertEqual(old_wd3, old_wd4)
-         self.assertEqual(old_wd1, old_wd3)
- 
--        self.assertEqual(new_wd1, tempdir)
--        self.assertEqual(new_wd2, tempdir)
-+        self.assertEqual(new_wd1, child)
-+        self.assertEqual(new_wd2, child)
- 
-     def test_pushd_cd(self):
-         """ test that pushd works like pushd/popd with built-in cd correctly """
--- 
-2.32.0
-
diff --git a/srcpkgs/python3-sh/template b/srcpkgs/python3-sh/template
index 47e97a175991..a36c8805052b 100644
--- a/srcpkgs/python3-sh/template
+++ b/srcpkgs/python3-sh/template
@@ -1,17 +1,17 @@
 # Template file for 'python3-sh'
 pkgname=python3-sh
-version=1.14.2
-revision=4
+version=1.14.3
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
 checkdepends="python3-Pygments python3-coverage python3-coveralls python3-docopt python3-docutils flake8"
 short_desc="Python subprocess replacement (Python3)"
-maintainer="pulux <pulux@pf4sh.de>"
+maintainer="pulux <pulux@pf4sh.eu>"
 license="MIT"
 homepage="https://github.com/amoffat/sh"
 distfiles="${PYPI_SITE}/s/sh/sh-${version}.tar.gz"
-checksum=9d7bd0334d494b2a4609fe521b2107438cdb21c0e469ffeeb191489883d6fe0d
+checksum=e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7
 
 post_install() {
 	vlicense LICENSE.txt

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

end of thread, other threads:[~2023-01-22  5:57 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-10  5:16 [PR PATCH] python3-sh: update to 1.14.3 pfpulux
2022-08-10 19:33 ` icp1994
2022-08-11  4:49 ` classabbyamp
2022-08-11 19:25 ` icp1994
2022-08-11 19:28 ` classabbyamp
2022-08-12 16:55 ` icp1994
2022-08-12 16:57 ` classabbyamp
2022-08-12 19:05 ` [PR PATCH] [Updated] " pfpulux
2022-08-12 19:06 ` [PR REVIEW] " classabbyamp
2022-11-11  2:13 ` github-actions
2022-11-26  2:01 ` [PR PATCH] [Closed]: " github-actions
2023-01-22  5:57 [PR PATCH] " pfpulux

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).