* [PR PATCH] New package: src-1.37
@ 2024-03-09 18:26 Eloitor
2024-03-09 18:32 ` [PR PATCH] [Updated] " Eloitor
` (20 more replies)
0 siblings, 21 replies; 22+ messages in thread
From: Eloitor @ 2024-03-09 18:26 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 670 bytes --]
There is a new pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1852 bytes --]
From a4234bcd2ee8c4ee55dba665497d80069a774b10 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.37
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 15 +++++++++++++++
2 files changed, 25 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..dae6380b237f90
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,15 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
@ 2024-03-09 18:32 ` Eloitor
2024-03-09 18:37 ` Eloitor
` (19 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-09 18:32 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1898 bytes --]
From 75390113e85e29c40216a6de9881bb76d0e1a70f Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.37
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..5567befe63d9bb
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
2024-03-09 18:32 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-09 18:37 ` Eloitor
2024-03-09 18:38 ` Eloitor
` (18 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-09 18:37 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 272 bytes --]
New comment by Eloitor on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#issuecomment-1986944691
Comment:
I don't know how to fix the tests...
Reported upstream but the author cannot reproduce: https://gitlab.com/esr/src/-/issues/28
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
2024-03-09 18:32 ` [PR PATCH] [Updated] " Eloitor
2024-03-09 18:37 ` Eloitor
@ 2024-03-09 18:38 ` Eloitor
2024-03-10 8:06 ` [PR REVIEW] " meator
` (17 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-09 18:38 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 300 bytes --]
New comment by Eloitor on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#issuecomment-1986944691
Comment:
The package works fine, but I don't know how to fix the tests...
Reported upstream but the author cannot reproduce: https://gitlab.com/esr/src/-/issues/28
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR REVIEW] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (2 preceding siblings ...)
2024-03-09 18:38 ` Eloitor
@ 2024-03-10 8:06 ` meator
2024-03-10 9:22 ` [PR PATCH] [Updated] " Eloitor
` (16 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: meator @ 2024-03-10 8:06 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 307 bytes --]
New review comment by meator on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#discussion_r1518788365
Comment:
```suggestion
hostmakedepends="python3 rsc"
```
It tries to execute `rcs --version 2>/dev/null` in build and check stages. The check error persists though.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (3 preceding siblings ...)
2024-03-10 8:06 ` [PR REVIEW] " meator
@ 2024-03-10 9:22 ` Eloitor
2024-03-10 9:22 ` [PR REVIEW] " Eloitor
` (15 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 9:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 2627 bytes --]
From 75390113e85e29c40216a6de9881bb76d0e1a70f Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH 1/2] New package: src-1.37
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..5567befe63d9bb
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
+
+post_install() {
+ vlicense COPYING
+}
From 7af47dd35313f7a0de5290c1671f01107ac3abd2 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Sun, 10 Mar 2024 10:22:11 +0100
Subject: [PATCH 2/2] Update srcpkgs/src/template
Co-authored-by: meator <meator.dev@gmail.com>
---
srcpkgs/src/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
index 5567befe63d9bb..39b007106a2e26 100644
--- a/srcpkgs/src/template
+++ b/srcpkgs/src/template
@@ -3,7 +3,7 @@ pkgname=src
version=1.37
revision=1
build_style=gnu-makefile
-hostmakedepends="python3"
+hostmakedepends="python3 rsc"
depends="python3 rcs"
checkdepends="python3 pylint shellcheck"
short_desc="Simple Revision Control"
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR REVIEW] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (4 preceding siblings ...)
2024-03-10 9:22 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-10 9:22 ` Eloitor
2024-03-10 9:49 ` [PR PATCH] [Updated] [Waiting 1.38] " Eloitor
` (14 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 9:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 176 bytes --]
New review comment by Eloitor on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#discussion_r1518801432
Comment:
Wouldn't it be checkdepends?
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (5 preceding siblings ...)
2024-03-10 9:22 ` [PR REVIEW] " Eloitor
@ 2024-03-10 9:49 ` Eloitor
2024-03-10 16:36 ` [PR REVIEW] " meator
` (13 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 9:49 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[Waiting 1.38] New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1902 bytes --]
From 8e441e3ba5bac73b53b15e46195d9732127e59f0 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.37
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..0de0318c35246e
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck rcs"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR REVIEW] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (6 preceding siblings ...)
2024-03-10 9:49 ` [PR PATCH] [Updated] [Waiting 1.38] " Eloitor
@ 2024-03-10 16:36 ` meator
2024-03-10 17:12 ` [PR PATCH] [Updated] " Eloitor
` (12 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: meator @ 2024-03-10 16:36 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 216 bytes --]
New review comment by meator on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#discussion_r1518893364
Comment:
> Wouldn't it be checkdepends?
It is used in the build stage also.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (7 preceding siblings ...)
2024-03-10 16:36 ` [PR REVIEW] " meator
@ 2024-03-10 17:12 ` Eloitor
2024-03-10 17:17 ` Eloitor
` (11 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 17:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[Waiting 1.38] New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 2940 bytes --]
From 5ca2ede9375a4bb923a5ca97df920fbab042b60a Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.37
---
srcpkgs/python3-pyqtdeploy/template | 19 +++++++++++++++++++
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
3 files changed, 48 insertions(+)
create mode 100644 srcpkgs/python3-pyqtdeploy/template
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/python3-pyqtdeploy/template b/srcpkgs/python3-pyqtdeploy/template
new file mode 100644
index 00000000000000..9ab9ade9f36efd
--- /dev/null
+++ b/srcpkgs/python3-pyqtdeploy/template
@@ -0,0 +1,19 @@
+# Template file for 'python3-pyqtdeploy'
+pkgname=python3-pyqtdeploy
+version=3.3.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3 python3-toml python3-PyQt5"
+checkdepends="python3-toml python3-PyQt5 tox"
+short_desc="PyQt Application Deployment Tool"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD"
+homepage="https://www.riverbankcomputing.com/software/pyqtdeploy/"
+changelog="https://www.riverbankcomputing.com/hg/pyqtdeploy/raw-file/tip/NEWS"
+distfiles="$PYPI_SITE/p/pyqtdeploy/pyqtdeploy-${version}.tar.gz"
+checksum=f2802707cca6d38672b3b8f0f3f373f40b2a6b892c0dd1d613ca1e670d10e98b
+
+post_install() {
+ vlicense PKG-INFO
+}
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..44912996ecece0
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (8 preceding siblings ...)
2024-03-10 17:12 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-10 17:17 ` Eloitor
2024-03-10 17:18 ` [PR REVIEW] " Eloitor
` (10 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 17:17 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[Waiting 1.38] New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1902 bytes --]
From 076b274a0882db394a0f8289cc270ba4cf269527 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.37
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..44912996ecece0
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.37
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=1a5ff9e562f1191673523b65873017447fbde7935007668d422c6c2d01096067
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR REVIEW] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (9 preceding siblings ...)
2024-03-10 17:17 ` Eloitor
@ 2024-03-10 17:18 ` Eloitor
2024-03-11 15:10 ` [PR PATCH] [Updated] " Eloitor
` (9 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-10 17:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 157 bytes --]
New review comment by Eloitor on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#discussion_r1518902233
Comment:
ok thanks
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [Waiting 1.38] New package: src-1.37
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (10 preceding siblings ...)
2024-03-10 17:18 ` [PR REVIEW] " Eloitor
@ 2024-03-11 15:10 ` Eloitor
2024-03-11 15:22 ` [PR PATCH] [Updated] [WIP] New package: src-1.38 Eloitor
` (8 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 15:10 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[Waiting 1.38] New package: src-1.37
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1907 bytes --]
From 02c79ece931e341b5d044ae8c0ca4935cc2071b3 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..bbce6880f3640b
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [WIP] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (11 preceding siblings ...)
2024-03-11 15:10 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-11 15:22 ` Eloitor
2024-03-11 15:27 ` Eloitor
` (7 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 15:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 681 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[WIP] New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1924 bytes --]
From 924c1e627cc4e797105321f9b12384fdc3f23250 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..44d08ec383a7a5
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [WIP] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (12 preceding siblings ...)
2024-03-11 15:22 ` [PR PATCH] [Updated] [WIP] New package: src-1.38 Eloitor
@ 2024-03-11 15:27 ` Eloitor
2024-03-11 15:40 ` Eloitor
` (6 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 15:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 681 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[WIP] New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1967 bytes --]
From c14fbd7ad63b2c48398ef2b481512bdb46d779cd Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 23 +++++++++++++++++++++++
2 files changed, 33 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..65911bdc3a2e93
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,23 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+do_check() {
+ make check
+}
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [WIP] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (13 preceding siblings ...)
2024-03-11 15:27 ` Eloitor
@ 2024-03-11 15:40 ` Eloitor
2024-03-11 15:58 ` Eloitor
` (5 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 15:40 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 681 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[WIP] New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 1931 bytes --]
From 5c8fceacd660e512591a71022c3c6b7999c14547 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..f3c7219e277b41
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] [WIP] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (14 preceding siblings ...)
2024-03-11 15:40 ` Eloitor
@ 2024-03-11 15:58 ` Eloitor
2024-03-11 16:05 ` Eloitor
` (4 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 15:58 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 681 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
[WIP] New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 2574 bytes --]
From 69352eb8785bcca1d5dbd4dbf6fb52310dfb5c41 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/fix_test.patch | 11 +++++++++++
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
3 files changed, 40 insertions(+)
create mode 100644 srcpkgs/src/patches/fix_test.patch
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/fix_test.patch b/srcpkgs/src/patches/fix_test.patch
new file mode 100644
index 00000000000000..d577b0a61adaba
--- /dev/null
+++ b/srcpkgs/src/patches/fix_test.patch
@@ -0,0 +1,11 @@
+--- a/srctest
++++ b/srctest
+@@ -108,7 +108,7 @@ fi
+
+ # If you want to change where command captures and diffs live, modifying
+ # this variable will do it.
+-tap_capture="/tmp/tap$$"
++tap_capture="tmp/tap$$"
+
+ # Set this to add a fixed preamble to every TAP message
+ tap_preamble=""
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..82c60459daf7ec
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck diffutils grep sed git"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (15 preceding siblings ...)
2024-03-11 15:58 ` Eloitor
@ 2024-03-11 16:05 ` Eloitor
2024-06-10 1:50 ` github-actions
` (3 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-03-11 16:05 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 181 bytes --]
New comment by Eloitor on void-packages repository
https://github.com/void-linux/void-packages/pull/49204#issuecomment-1988801344
Comment:
Checks are fixed now, ready for review.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (16 preceding siblings ...)
2024-03-11 16:05 ` Eloitor
@ 2024-06-10 1:50 ` github-actions
2024-06-10 10:48 ` [PR PATCH] [Updated] " Eloitor
` (2 subsequent siblings)
20 siblings, 0 replies; 22+ messages in thread
From: github-actions @ 2024-06-10 1:50 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/49204#issuecomment-2157036707
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] 22+ messages in thread
* Re: [PR PATCH] [Updated] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (17 preceding siblings ...)
2024-06-10 1:50 ` github-actions
@ 2024-06-10 10:48 ` Eloitor
2024-08-19 14:25 ` Eloitor
2024-08-20 11:12 ` Eloitor
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-06-10 10:48 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 2574 bytes --]
From 75ca0a71615d7e546f913e79ee12e4f4fc60bf32 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.38
---
srcpkgs/src/patches/fix_test.patch | 11 +++++++++++
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
3 files changed, 40 insertions(+)
create mode 100644 srcpkgs/src/patches/fix_test.patch
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/fix_test.patch b/srcpkgs/src/patches/fix_test.patch
new file mode 100644
index 00000000000000..d577b0a61adaba
--- /dev/null
+++ b/srcpkgs/src/patches/fix_test.patch
@@ -0,0 +1,11 @@
+--- a/srctest
++++ b/srctest
+@@ -108,7 +108,7 @@ fi
+
+ # If you want to change where command captures and diffs live, modifying
+ # this variable will do it.
+-tap_capture="/tmp/tap$$"
++tap_capture="tmp/tap$$"
+
+ # Set this to add a fixed preamble to every TAP message
+ tap_preamble=""
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..82c60459daf7ec
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.38
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck diffutils grep sed git"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=229ef5ff0949fd502ca57d3f275eafd96979581c44632321604d2fa6536a35bd
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (18 preceding siblings ...)
2024-06-10 10:48 ` [PR PATCH] [Updated] " Eloitor
@ 2024-08-19 14:25 ` Eloitor
2024-08-20 11:12 ` Eloitor
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-08-19 14:25 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 2571 bytes --]
From 801d42cf91608b518ff3c8c9502a87d21434215d Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.40
---
srcpkgs/src/patches/fix_test.patch | 11 +++++++++++
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++++
srcpkgs/src/template | 19 +++++++++++++++++++
3 files changed, 40 insertions(+)
create mode 100644 srcpkgs/src/patches/fix_test.patch
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/fix_test.patch b/srcpkgs/src/patches/fix_test.patch
new file mode 100644
index 00000000000000..d577b0a61adaba
--- /dev/null
+++ b/srcpkgs/src/patches/fix_test.patch
@@ -0,0 +1,11 @@
+--- a/srctest
++++ b/srctest
+@@ -108,7 +108,7 @@ fi
+
+ # If you want to change where command captures and diffs live, modifying
+ # this variable will do it.
+-tap_capture="/tmp/tap$$"
++tap_capture="tmp/tap$$"
+
+ # Set this to add a fixed preamble to every TAP message
+ tap_preamble=""
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..7ac1509b15e06e
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.40
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck diffutils grep sed git"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@duck.com>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=8fbeb819945f36712818a528a255179ed888850fce1f339cbe8b7a6c2a9cf5e7
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PR PATCH] [Updated] New package: src-1.38
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
` (19 preceding siblings ...)
2024-08-19 14:25 ` Eloitor
@ 2024-08-20 11:12 ` Eloitor
20 siblings, 0 replies; 22+ messages in thread
From: Eloitor @ 2024-08-20 11:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 675 bytes --]
There is an updated pull request by Eloitor against master on the void-packages repository
https://github.com/Eloitor/void-packages simple-revision-control
https://github.com/void-linux/void-packages/pull/49204
New package: src-1.38
#### 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**
#### 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/49204.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-simple-revision-control-49204.patch --]
[-- Type: text/x-diff, Size: 3929 bytes --]
From 40394f67124d7713e488de9a6bb1769f5e80dbff Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@duck.com>
Date: Sat, 9 Mar 2024 12:52:40 +0100
Subject: [PATCH] New package: src-1.40
---
srcpkgs/src/patches/fix_test.patch | 11 +++++++++
srcpkgs/src/patches/rcs_version.patch | 10 ++++++++
srcpkgs/src/patches/tmp_pacify_pylint.patch | 27 +++++++++++++++++++++
srcpkgs/src/template | 19 +++++++++++++++
4 files changed, 67 insertions(+)
create mode 100644 srcpkgs/src/patches/fix_test.patch
create mode 100644 srcpkgs/src/patches/rcs_version.patch
create mode 100644 srcpkgs/src/patches/tmp_pacify_pylint.patch
create mode 100644 srcpkgs/src/template
diff --git a/srcpkgs/src/patches/fix_test.patch b/srcpkgs/src/patches/fix_test.patch
new file mode 100644
index 00000000000000..d577b0a61adaba
--- /dev/null
+++ b/srcpkgs/src/patches/fix_test.patch
@@ -0,0 +1,11 @@
+--- a/srctest
++++ b/srctest
+@@ -108,7 +108,7 @@ fi
+
+ # If you want to change where command captures and diffs live, modifying
+ # this variable will do it.
+-tap_capture="/tmp/tap$$"
++tap_capture="tmp/tap$$"
+
+ # Set this to add a fixed preamble to every TAP message
+ tap_preamble=""
diff --git a/srcpkgs/src/patches/rcs_version.patch b/srcpkgs/src/patches/rcs_version.patch
new file mode 100644
index 00000000000000..67d69c1eda15b2
--- /dev/null
+++ b/srcpkgs/src/patches/rcs_version.patch
@@ -0,0 +1,10 @@
+--- a/src
++++ b/src
+@@ -3103,7 +3103,7 @@ class RCS(RevisionMixin):
+ # rcs --version fails under OS X
+ # rcs -V throws an obsolescence warning under GNU RCS 5.9.4
+ # We choose the more portable option here.
+- rawversion = capture_or_die("rcs -V 2>/dev/null")
++ rawversion = capture_or_die("rcs --version 2>/dev/null")
+ m = re.search(r"[0-9]+\.[0-9]+\.[0-9]+".encode("ascii"), rawversion)
+ return m and polystr(m.group(0))
diff --git a/srcpkgs/src/patches/tmp_pacify_pylint.patch b/srcpkgs/src/patches/tmp_pacify_pylint.patch
new file mode 100644
index 00000000000000..27761f37c5fd85
--- /dev/null
+++ b/srcpkgs/src/patches/tmp_pacify_pylint.patch
@@ -0,0 +1,27 @@
+--- a/src
++++ b/src
+@@ -1715,6 +1715,7 @@ def checkout_method(*args):
+ for arg in ctx.args:
+ metadata = History(arg)
+ ctx.resolve(metadata)
++ revision = None # pacify pylint
+ if ctx.is_empty():
+ ctx.select_tip(metadata)
+ revision = ctx.seq[0].native
+@@ -1766,6 +1767,7 @@ def commit_method(*args):
+ branch = args.pop(0)
+ else:
+ break
++ comment = None # pacify pylint
+ if not register_only:
+ comment = CommentContext("commit", args)
+ ctx = CommandContext(
+@@ -1780,6 +1782,8 @@ def commit_method(*args):
+ if os.path.isdir(arg):
+ croak("cannot commit directory '%s'" % arg)
+ for arg in ctx.args:
++ trailer = None # Pacify pylint
++ diff = None # Pacify pylint
+ if not registered(arg):
+ trailer = "Committing initial revision of {0}.\n".format(arg)
+ revcount = 0
diff --git a/srcpkgs/src/template b/srcpkgs/src/template
new file mode 100644
index 00000000000000..7ac1509b15e06e
--- /dev/null
+++ b/srcpkgs/src/template
@@ -0,0 +1,19 @@
+# Template file for 'src'
+pkgname=src
+version=1.40
+revision=1
+build_style=gnu-makefile
+hostmakedepends="python3 rcs sccs ruby-asciidoctor"
+depends="python3 rcs"
+checkdepends="python3 python pylint shellcheck diffutils grep sed git"
+short_desc="Simple Revision Control"
+maintainer="Eloi Torrents <eloitor@duck.com>"
+license="BSD-2-Clause"
+homepage="http://www.catb.org/~esr/src"
+changelog="http://www.catb.org/~esr/src/NEWS.html"
+distfiles="http://www.catb.org/~esr/src/src-${version}.tar.gz"
+checksum=8fbeb819945f36712818a528a255179ed888850fce1f339cbe8b7a6c2a9cf5e7
+
+post_install() {
+ vlicense COPYING
+}
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2024-08-20 11:12 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-09 18:26 [PR PATCH] New package: src-1.37 Eloitor
2024-03-09 18:32 ` [PR PATCH] [Updated] " Eloitor
2024-03-09 18:37 ` Eloitor
2024-03-09 18:38 ` Eloitor
2024-03-10 8:06 ` [PR REVIEW] " meator
2024-03-10 9:22 ` [PR PATCH] [Updated] " Eloitor
2024-03-10 9:22 ` [PR REVIEW] " Eloitor
2024-03-10 9:49 ` [PR PATCH] [Updated] [Waiting 1.38] " Eloitor
2024-03-10 16:36 ` [PR REVIEW] " meator
2024-03-10 17:12 ` [PR PATCH] [Updated] " Eloitor
2024-03-10 17:17 ` Eloitor
2024-03-10 17:18 ` [PR REVIEW] " Eloitor
2024-03-11 15:10 ` [PR PATCH] [Updated] " Eloitor
2024-03-11 15:22 ` [PR PATCH] [Updated] [WIP] New package: src-1.38 Eloitor
2024-03-11 15:27 ` Eloitor
2024-03-11 15:40 ` Eloitor
2024-03-11 15:58 ` Eloitor
2024-03-11 16:05 ` Eloitor
2024-06-10 1:50 ` github-actions
2024-06-10 10:48 ` [PR PATCH] [Updated] " Eloitor
2024-08-19 14:25 ` Eloitor
2024-08-20 11:12 ` Eloitor
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).