Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] monero: fix runit script.
@ 2021-08-11 21:26 mobinmob
  2021-08-18 16:32 ` [PR PATCH] [Updated] " mobinmob
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: mobinmob @ 2021-08-11 21:26 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages monerod-fix
https://github.com/void-linux/void-packages/pull/32460

monero: fix runit script.
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds after with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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/32460.patch is attached

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

From 1b20490e47ceb02831c109ba689def7a63dffaf9 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 12 Aug 2021 00:25:05 +0300
Subject: [PATCH] monero: fix runit script.

Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds after with 'EOF on stdin, exiting'.
---
 srcpkgs/monero/files/monerod/run | 2 +-
 srcpkgs/monero/template          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/monero/files/monerod/run b/srcpkgs/monero/files/monerod/run
index 0d120dc8afe8..bc06010c7c2e 100644
--- a/srcpkgs/monero/files/monerod/run
+++ b/srcpkgs/monero/files/monerod/run
@@ -1,2 +1,2 @@
 #!/bin/sh
-exec chpst -u monero:monero /usr/bin/monerod --config-file /etc/monerod.conf
+exec chpst -u monero:monero /usr/bin/monerod --non-interactive --config-file /etc/monerod.conf
diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template
index 3617a446f098..3fffef95ba57 100644
--- a/srcpkgs/monero/template
+++ b/srcpkgs/monero/template
@@ -1,7 +1,7 @@
 # Template file for 'monero'
 pkgname=monero
 version=0.17.2.0
-revision=1
+revision=2
 _randomx_version="1.1.8"
 # the revision monero uses as a submodule for the specific version
 _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"

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

* Re: [PR PATCH] [Updated] monero: fix runit script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
@ 2021-08-18 16:32 ` mobinmob
  2021-08-18 16:32 ` [PR PATCH] [Updated] monero: fix monerod service script mobinmob
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mobinmob @ 2021-08-18 16:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages monerod-fix
https://github.com/void-linux/void-packages/pull/32460

monero: fix runit script.
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds after with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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/32460.patch is attached

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

From bb1bc8e81f7889bc4b333b079af2ba90cddf4271 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 12 Aug 2021 00:25:05 +0300
Subject: [PATCH] monero: fix monerod service script.

Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds after with 'EOF on stdin, exiting'.
---
 srcpkgs/monero/files/monerod/run | 2 +-
 srcpkgs/monero/template          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/monero/files/monerod/run b/srcpkgs/monero/files/monerod/run
index 0d120dc8afe8..bc06010c7c2e 100644
--- a/srcpkgs/monero/files/monerod/run
+++ b/srcpkgs/monero/files/monerod/run
@@ -1,2 +1,2 @@
 #!/bin/sh
-exec chpst -u monero:monero /usr/bin/monerod --config-file /etc/monerod.conf
+exec chpst -u monero:monero /usr/bin/monerod --non-interactive --config-file /etc/monerod.conf
diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template
index 3617a446f098..3fffef95ba57 100644
--- a/srcpkgs/monero/template
+++ b/srcpkgs/monero/template
@@ -1,7 +1,7 @@
 # Template file for 'monero'
 pkgname=monero
 version=0.17.2.0
-revision=1
+revision=2
 _randomx_version="1.1.8"
 # the revision monero uses as a submodule for the specific version
 _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"

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

* Re: [PR PATCH] [Updated] monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
  2021-08-18 16:32 ` [PR PATCH] [Updated] " mobinmob
@ 2021-08-18 16:32 ` mobinmob
  2021-08-18 16:34 ` mobinmob
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mobinmob @ 2021-08-18 16:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages monerod-fix
https://github.com/void-linux/void-packages/pull/32460

monero: fix monerod service script.
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds after with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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/32460.patch is attached

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

From 5e62bc42af5ab2f7ac38f3d0f8f31c34f54c7bd3 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 12 Aug 2021 00:25:05 +0300
Subject: [PATCH] monero: fix monerod service script.

Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.
---
 srcpkgs/monero/files/monerod/run | 2 +-
 srcpkgs/monero/template          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/monero/files/monerod/run b/srcpkgs/monero/files/monerod/run
index 0d120dc8afe8..bc06010c7c2e 100644
--- a/srcpkgs/monero/files/monerod/run
+++ b/srcpkgs/monero/files/monerod/run
@@ -1,2 +1,2 @@
 #!/bin/sh
-exec chpst -u monero:monero /usr/bin/monerod --config-file /etc/monerod.conf
+exec chpst -u monero:monero /usr/bin/monerod --non-interactive --config-file /etc/monerod.conf
diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template
index 3617a446f098..3fffef95ba57 100644
--- a/srcpkgs/monero/template
+++ b/srcpkgs/monero/template
@@ -1,7 +1,7 @@
 # Template file for 'monero'
 pkgname=monero
 version=0.17.2.0
-revision=1
+revision=2
 _randomx_version="1.1.8"
 # the revision monero uses as a submodule for the specific version
 _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"

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

* Re: [PR PATCH] [Updated] monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
  2021-08-18 16:32 ` [PR PATCH] [Updated] " mobinmob
  2021-08-18 16:32 ` [PR PATCH] [Updated] monero: fix monerod service script mobinmob
@ 2021-08-18 16:34 ` mobinmob
  2021-08-18 16:34 ` mobinmob
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mobinmob @ 2021-08-18 16:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages monerod-fix
https://github.com/void-linux/void-packages/pull/32460

monero: fix monerod service script.
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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/32460.patch is attached

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

From b70567f478e9d9858bcf38e36931e4f31994825f Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 12 Aug 2021 00:25:05 +0300
Subject: [PATCH] monero: fix monerod service script.

Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.
---
 srcpkgs/monero/files/monerod/run | 2 +-
 srcpkgs/monero/template          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/monero/files/monerod/run b/srcpkgs/monero/files/monerod/run
index 0d120dc8afe8..bc06010c7c2e 100644
--- a/srcpkgs/monero/files/monerod/run
+++ b/srcpkgs/monero/files/monerod/run
@@ -1,2 +1,2 @@
 #!/bin/sh
-exec chpst -u monero:monero /usr/bin/monerod --config-file /etc/monerod.conf
+exec chpst -u monero:monero /usr/bin/monerod --non-interactive --config-file /etc/monerod.conf
diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template
index 3617a446f098..3fffef95ba57 100644
--- a/srcpkgs/monero/template
+++ b/srcpkgs/monero/template
@@ -1,7 +1,7 @@
 # Template file for 'monero'
 pkgname=monero
 version=0.17.2.0
-revision=1
+revision=2
 _randomx_version="1.1.8"
 # the revision monero uses as a submodule for the specific version
 _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"

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

* Re: monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (2 preceding siblings ...)
  2021-08-18 16:34 ` mobinmob
@ 2021-08-18 16:34 ` mobinmob
  2021-10-01 15:08 ` [PR PATCH] [Updated] " sgn
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mobinmob @ 2021-08-18 16:34 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/32460#issuecomment-901259800

Comment:
- Reword the commit message to make it more clear,
- Rebase on master to force rebuild and clear ci.

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

* Re: [PR PATCH] [Updated] monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (3 preceding siblings ...)
  2021-08-18 16:34 ` mobinmob
@ 2021-10-01 15:08 ` sgn
  2021-10-30 23:27 ` Piraty
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sgn @ 2021-10-01 15:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages monerod-fix
https://github.com/void-linux/void-packages/pull/32460

monero: fix monerod service script.
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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/32460.patch is attached

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

From b70567f478e9d9858bcf38e36931e4f31994825f Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Thu, 12 Aug 2021 00:25:05 +0300
Subject: [PATCH] monero: fix monerod service script.

Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.
---
 srcpkgs/monero/files/monerod/run | 2 +-
 srcpkgs/monero/template          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/monero/files/monerod/run b/srcpkgs/monero/files/monerod/run
index 0d120dc8afe8..bc06010c7c2e 100644
--- a/srcpkgs/monero/files/monerod/run
+++ b/srcpkgs/monero/files/monerod/run
@@ -1,2 +1,2 @@
 #!/bin/sh
-exec chpst -u monero:monero /usr/bin/monerod --config-file /etc/monerod.conf
+exec chpst -u monero:monero /usr/bin/monerod --non-interactive --config-file /etc/monerod.conf
diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template
index 3617a446f098..3fffef95ba57 100644
--- a/srcpkgs/monero/template
+++ b/srcpkgs/monero/template
@@ -1,7 +1,7 @@
 # Template file for 'monero'
 pkgname=monero
 version=0.17.2.0
-revision=1
+revision=2
 _randomx_version="1.1.8"
 # the revision monero uses as a submodule for the specific version
 _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"

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

* Re: monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (4 preceding siblings ...)
  2021-10-01 15:08 ` [PR PATCH] [Updated] " sgn
@ 2021-10-30 23:27 ` Piraty
  2022-01-09 21:01 ` Piraty
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Piraty @ 2021-10-30 23:27 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/32460#issuecomment-955607384

Comment:
remove that merge commit from the branch

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

* Re: monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (5 preceding siblings ...)
  2021-10-30 23:27 ` Piraty
@ 2022-01-09 21:01 ` Piraty
  2022-01-10 18:47 ` mobinmob
  2022-01-12 19:38 ` [PR PATCH] [Closed]: " Piraty
  8 siblings, 0 replies; 10+ messages in thread
From: Piraty @ 2022-01-09 21:01 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/32460#issuecomment-1008422836

Comment:
ping

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

* Re: monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (6 preceding siblings ...)
  2022-01-09 21:01 ` Piraty
@ 2022-01-10 18:47 ` mobinmob
  2022-01-12 19:38 ` [PR PATCH] [Closed]: " Piraty
  8 siblings, 0 replies; 10+ messages in thread
From: mobinmob @ 2022-01-10 18:47 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/32460#issuecomment-1009238491

Comment:
@Piraty I did not push that merge commit...

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

* Re: [PR PATCH] [Closed]: monero: fix monerod service script.
  2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
                   ` (7 preceding siblings ...)
  2022-01-10 18:47 ` mobinmob
@ 2022-01-12 19:38 ` Piraty
  8 siblings, 0 replies; 10+ messages in thread
From: Piraty @ 2022-01-12 19:38 UTC (permalink / raw)
  To: ml

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

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

monero: fix monerod service script.
https://github.com/void-linux/void-packages/pull/32460

Description:
Without the --non-interactive switch the daemon starts in the foreground
but crashes after a few seconds with 'EOF on stdin, exiting'.

<!-- 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
- [X] 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] 10+ messages in thread

end of thread, other threads:[~2022-01-12 19:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-11 21:26 [PR PATCH] monero: fix runit script mobinmob
2021-08-18 16:32 ` [PR PATCH] [Updated] " mobinmob
2021-08-18 16:32 ` [PR PATCH] [Updated] monero: fix monerod service script mobinmob
2021-08-18 16:34 ` mobinmob
2021-08-18 16:34 ` mobinmob
2021-10-01 15:08 ` [PR PATCH] [Updated] " sgn
2021-10-30 23:27 ` Piraty
2022-01-09 21:01 ` Piraty
2022-01-10 18:47 ` mobinmob
2022-01-12 19:38 ` [PR PATCH] [Closed]: " Piraty

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