Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mercurial: update to 5.8.
@ 2021-05-15 18:36 mobinmob
  2021-05-15 19:33 ` [PR PATCH] [Updated] " mobinmob
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: mobinmob @ 2021-05-15 18:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From eb480f921349dabd423e2e3f5f8a89504158a4b6 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..c1825769717d 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,44 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
 	cd tests
 	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
 	python3 run-tests.py ${makejobs}
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
+	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t \
+	 test-persistent-nodemap.t test-archive.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
@ 2021-05-15 19:33 ` mobinmob
  2021-05-15 20:13 ` mobinmob
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-05-15 19:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From 1174885e94dbf2899754fe5a52b897c933833ea9 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..8d4d7a1d7fec 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,42 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t \
+	 test-persistent-nodemap.t test-archive.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
  2021-05-15 19:33 ` [PR PATCH] [Updated] " mobinmob
@ 2021-05-15 20:13 ` mobinmob
  2021-05-17 13:44 ` [PR REVIEW] " Piraty
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-05-15 20:13 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#issuecomment-841718408

Comment:
@ericonr  @Chocimier  The build is now fixed :)

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
  2021-05-15 19:33 ` [PR PATCH] [Updated] " mobinmob
  2021-05-15 20:13 ` mobinmob
@ 2021-05-17 13:44 ` Piraty
  2021-05-17 13:59 ` [PR PATCH] [Updated] " mobinmob
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: Piraty @ 2021-05-17 13:44 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r633541862

Comment:
don't duplicate the variiable

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (2 preceding siblings ...)
  2021-05-17 13:44 ` [PR REVIEW] " Piraty
@ 2021-05-17 13:59 ` mobinmob
  2021-05-17 14:00 ` [PR REVIEW] " mobinmob
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-05-17 13:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From a467178f267178915e2b75cb8690878050d8e47d Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 27 ++++++++++++++++++++++-----
 1 file changed, 22 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..f76ee3266f61 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,40 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t \
+	 test-persistent-nodemap.t test-archive.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (3 preceding siblings ...)
  2021-05-17 13:59 ` [PR PATCH] [Updated] " mobinmob
@ 2021-05-17 14:00 ` mobinmob
  2021-05-17 20:51 ` Chocimier
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-05-17 14:00 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r633556915

Comment:
Done.

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

* Re: mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (4 preceding siblings ...)
  2021-05-17 14:00 ` [PR REVIEW] " mobinmob
@ 2021-05-17 20:51 ` Chocimier
  2021-05-18 19:30 ` [PR PATCH] [Updated] " mobinmob
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: Chocimier @ 2021-05-17 20:51 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#issuecomment-842630250

Comment:
Here fail only test-merge-tools.t due to minor wording difference and test-hghave.t due to hg not being on PATH. (x86_64 glibc and musl, -K)

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (5 preceding siblings ...)
  2021-05-17 20:51 ` Chocimier
@ 2021-05-18 19:30 ` mobinmob
  2021-07-05 14:03 ` mobinmob
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-05-18 19:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From e4f32ecc1e714e50a9c2f6f1c48b0dd4a9de404e Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 26 +++++++++++++++++++++-----
 1 file changed, 21 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..c47a313d2186 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,39 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-hghave.t test-merge-tools.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (6 preceding siblings ...)
  2021-05-18 19:30 ` [PR PATCH] [Updated] " mobinmob
@ 2021-07-05 14:03 ` mobinmob
  2021-07-05 15:13 ` [PR REVIEW] " Piraty
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 14:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From 4541593ded5c04b2282c9d6b503e3288e23997d0 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 26 +++++++++++++++++++++-----
 1 file changed, 21 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..c47a313d2186 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,39 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-hghave.t test-merge-tools.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (7 preceding siblings ...)
  2021-07-05 14:03 ` mobinmob
@ 2021-07-05 15:13 ` Piraty
  2021-07-05 16:12 ` [PR PATCH] [Updated] " mobinmob
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: Piraty @ 2021-07-05 15:13 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r664001591

Comment:
don't duplicate the variable

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (8 preceding siblings ...)
  2021-07-05 15:13 ` [PR REVIEW] " Piraty
@ 2021-07-05 16:12 ` mobinmob
  2021-07-05 16:13 ` [PR REVIEW] " mobinmob
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 16:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From 20459e8e0bb9c8088adc3bac41e78222ad28cbf9 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..1127af86b699 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,9 +1,9 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
 checkdepends="iana-etc tar unzip which xz"
@@ -12,12 +12,25 @@ maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-hghave.t test-merge-tools.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (9 preceding siblings ...)
  2021-07-05 16:12 ` [PR PATCH] [Updated] " mobinmob
@ 2021-07-05 16:13 ` mobinmob
  2021-07-05 19:05 ` mobinmob
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 16:13 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r664034466

Comment:
Done.

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (10 preceding siblings ...)
  2021-07-05 16:13 ` [PR REVIEW] " mobinmob
@ 2021-07-05 19:05 ` mobinmob
  2021-07-05 19:29 ` [PR PATCH] [Updated] " mobinmob
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 19:05 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r664034466

Comment:
Done, thank you.

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (11 preceding siblings ...)
  2021-07-05 19:05 ` mobinmob
@ 2021-07-05 19:29 ` mobinmob
  2021-07-05 19:30 ` [PR REVIEW] " mobinmob
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 19:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From 838f9c54537122e918ab9511462e6a13dfe4db90 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.

---
 srcpkgs/mercurial/template | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..4e2dca217cbf 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,38 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
-checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=fc5d6a8f6478d88ef83cdd0ab6d86ad68ee722bbdf4964e6a0b47c3c6ba5309f
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-hghave.t test-merge-tools.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: [PR REVIEW] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (12 preceding siblings ...)
  2021-07-05 19:29 ` [PR PATCH] [Updated] " mobinmob
@ 2021-07-05 19:30 ` mobinmob
  2021-07-20  7:45 ` [PR PATCH] [Updated] " mobinmob
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-05 19:30 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#discussion_r664101328

Comment:
Pushed again - removed the wrong line... :(

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

* Re: [PR PATCH] [Updated] mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (13 preceding siblings ...)
  2021-07-05 19:30 ` [PR REVIEW] " mobinmob
@ 2021-07-20  7:45 ` mobinmob
  2021-07-20  7:45 ` mobinmob
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-20  7:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages mercurial-update
https://github.com/void-linux/void-packages/pull/30916

mercurial: update to 5.8.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/30916.patch is attached

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

From 29495234722a41c959b7aaf44d3e11adcbf2b4a1 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 15 May 2021 21:34:40 +0300
Subject: [PATCH] mercurial: update to 5.8.1.

---
 srcpkgs/mercurial/template | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template
index a8b24bffbee2..1f48965c139b 100644
--- a/srcpkgs/mercurial/template
+++ b/srcpkgs/mercurial/template
@@ -1,23 +1,38 @@
 # Template file for 'mercurial'
 pkgname=mercurial
-version=5.6.1
+version=5.8.1
 revision=1
 build_style=python3-module
-hostmakedepends="python3 python3-setuptools python3-devel"
+hostmakedepends="python3 python3-setuptools python3-devel gettext"
 makedepends="python3-devel"
 depends="python3 ca-certificates"
-checkdepends="iana-etc tar unzip which xz"
+# cvs tests fail
+checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
+ python3-Pygments"
 short_desc="Fast, lightweight source control management system"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.mercurial-scm.org/"
 distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
-checksum=e55c254f4904c45226a106780e57f4279aee03368f6ff6a981d5d2a38243ffad
+checksum=81baa3fe2087bdda2dd119d7ea948f6badebaeb7b528a7d18b277e2ceb22b19b
+
+pre_check() {
+	if [ "$XBPS_TARGET_LIBC" = musl ]; then
+		# fix hardcoded strerror() value from glibc
+		vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
+	fi
+}
 
 do_check() {
+	if [ "$XBPS_CHECK_PKGS" = full ]; then
+		_additional_test=--allow-slow-tests
+	else
+		_additional_test='test-s*'
+	fi
+
 	cd tests
-	rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
-	python3 run-tests.py ${makejobs}
+	rm test-hghave.t test-merge-tools.t
+	python3 run-tests.py ${makejobs} ${_additional_test}
 }
 
 post_install() {

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

* Re: mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (14 preceding siblings ...)
  2021-07-20  7:45 ` [PR PATCH] [Updated] " mobinmob
@ 2021-07-20  7:45 ` mobinmob
  2021-07-20  7:45 ` mobinmob
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-20  7:45 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#issuecomment-883174226

Comment:
- Rebased on master.
- Updates to 5.8.1.

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

* Re: mercurial: update to 5.8.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (15 preceding siblings ...)
  2021-07-20  7:45 ` mobinmob
@ 2021-07-20  7:45 ` mobinmob
  2021-07-21 21:09 ` mercurial: update to 5.8.1 Chocimier
  2021-07-21 21:09 ` [PR PATCH] [Merged]: " Chocimier
  18 siblings, 0 replies; 20+ messages in thread
From: mobinmob @ 2021-07-20  7:45 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#issuecomment-883174226

Comment:
- Rebased on master.
- Updated to 5.8.1.

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

* Re: mercurial: update to 5.8.1.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (16 preceding siblings ...)
  2021-07-20  7:45 ` mobinmob
@ 2021-07-21 21:09 ` Chocimier
  2021-07-21 21:09 ` [PR PATCH] [Merged]: " Chocimier
  18 siblings, 0 replies; 20+ messages in thread
From: Chocimier @ 2021-07-21 21:09 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/30916#issuecomment-884501506

Comment:
Thanks!

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

* Re: [PR PATCH] [Merged]: mercurial: update to 5.8.1.
  2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
                   ` (17 preceding siblings ...)
  2021-07-21 21:09 ` mercurial: update to 5.8.1 Chocimier
@ 2021-07-21 21:09 ` Chocimier
  18 siblings, 0 replies; 20+ messages in thread
From: Chocimier @ 2021-07-21 21:09 UTC (permalink / raw)
  To: ml

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

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

mercurial: update to 5.8.1.
https://github.com/void-linux/void-packages/pull/30916

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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
-->


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

end of thread, other threads:[~2021-07-21 21:09 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-15 18:36 [PR PATCH] mercurial: update to 5.8 mobinmob
2021-05-15 19:33 ` [PR PATCH] [Updated] " mobinmob
2021-05-15 20:13 ` mobinmob
2021-05-17 13:44 ` [PR REVIEW] " Piraty
2021-05-17 13:59 ` [PR PATCH] [Updated] " mobinmob
2021-05-17 14:00 ` [PR REVIEW] " mobinmob
2021-05-17 20:51 ` Chocimier
2021-05-18 19:30 ` [PR PATCH] [Updated] " mobinmob
2021-07-05 14:03 ` mobinmob
2021-07-05 15:13 ` [PR REVIEW] " Piraty
2021-07-05 16:12 ` [PR PATCH] [Updated] " mobinmob
2021-07-05 16:13 ` [PR REVIEW] " mobinmob
2021-07-05 19:05 ` mobinmob
2021-07-05 19:29 ` [PR PATCH] [Updated] " mobinmob
2021-07-05 19:30 ` [PR REVIEW] " mobinmob
2021-07-20  7:45 ` [PR PATCH] [Updated] " mobinmob
2021-07-20  7:45 ` mobinmob
2021-07-20  7:45 ` mobinmob
2021-07-21 21:09 ` mercurial: update to 5.8.1 Chocimier
2021-07-21 21:09 ` [PR PATCH] [Merged]: " Chocimier

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