Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] v2ray: update to 5.4.0
@ 2023-02-28 15:38 ipkalm
  2023-02-28 15:47 ` ipkalm
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: ipkalm @ 2023-02-28 15:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ipkalm/void-packages v2ray-5.4.0_1
https://github.com/void-linux/void-packages/pull/42502

v2ray: update to 5.4.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - i686-musl
  - aarch64
  - aarch64-musl
  - armv7l
  - armv7l-musl
  - armv6l
  - armv6l-musl
  - ppc64le


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-v2ray-5.4.0_1-42502.patch --]
[-- Type: text/x-diff, Size: 3714 bytes --]

From 67496b0c7b0ac783e0991b10561183549904b36a Mon Sep 17 00:00:00 2001
From: ipkalm <ipkalm@outlook.com>
Date: Wed, 22 Feb 2023 09:58:26 +0700
Subject: [PATCH] v2ray: update to 5.4.0

---
 srcpkgs/v2ray/INSTALL.msg            |  2 ++
 srcpkgs/v2ray/REMOVE                 | 12 ++++++++++++
 srcpkgs/v2ray/files/README.voidlinux | 17 +++++++++++++++++
 srcpkgs/v2ray/files/v2ray/run        |  4 +++-
 srcpkgs/v2ray/template               |  8 ++++++--
 5 files changed, 40 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/v2ray/INSTALL.msg
 create mode 100644 srcpkgs/v2ray/REMOVE
 create mode 100644 srcpkgs/v2ray/files/README.voidlinux

diff --git a/srcpkgs/v2ray/INSTALL.msg b/srcpkgs/v2ray/INSTALL.msg
new file mode 100644
index 000000000000..09daaef1902d
--- /dev/null
+++ b/srcpkgs/v2ray/INSTALL.msg
@@ -0,0 +1,2 @@
+Consult /usr/share/doc/v2ray/README.voidlinux for additional configuration
+instructions.
diff --git a/srcpkgs/v2ray/REMOVE b/srcpkgs/v2ray/REMOVE
new file mode 100644
index 000000000000..c2c085849f70
--- /dev/null
+++ b/srcpkgs/v2ray/REMOVE
@@ -0,0 +1,12 @@
+#
+# This script removes /etc/v2ray directory only if it is empty
+# and not during package update
+#
+
+if [ "$UPDATE" = "no" ]; then
+        case "$ACTION" in
+        post)
+                [ -d etc/v2ray ] && rmdir etc/v2ray 2>/dev/null
+                ;;
+        esac
+fi
diff --git a/srcpkgs/v2ray/files/README.voidlinux b/srcpkgs/v2ray/files/README.voidlinux
new file mode 100644
index 000000000000..53d9cc2c5bfc
--- /dev/null
+++ b/srcpkgs/v2ray/files/README.voidlinux
@@ -0,0 +1,17 @@
+By default `v2ray` runit service uses /etc/v2ray/config.json config file. 
+
+For change command-line options for `v2ray` runit service,
+add '/etc/sv/v2ray/conf' file with 'OPTS=' variable.
+For example:
+
+        # echo 'OPTS="-config /etc/v2ray/second_config.json"' > /etc/sv/v2ray/conf
+
+Now `sv start v2ray` will use '/etc/v2ray/second_config.json' config file. For more information read `v2ray help run`. 
+
+For use environment variables add them to /etc/v2ray/env/ directory.
+For example:
+
+        # echo 'false' > /etc/v2ray/env/v2ray.vmess.aead.forced
+
+It adds environment variable 'v2ray.vmess.aead.forced=false' to `v2ray run` command.
+For more information read about '-e dir' option in `man chpst`.
diff --git a/srcpkgs/v2ray/files/v2ray/run b/srcpkgs/v2ray/files/v2ray/run
index 2910b070fb90..4fcce104be3f 100644
--- a/srcpkgs/v2ray/files/v2ray/run
+++ b/srcpkgs/v2ray/files/v2ray/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
-exec chpst -u _v2ray v2ray run -config=/etc/v2ray/config.json 2>&1
+[ -r conf ] && . ./conf
+
+exec chpst -e /etc/v2ray/env -u _v2ray v2ray run ${OPTS:- -config=/etc/v2ray/config.json} 2>&1
diff --git a/srcpkgs/v2ray/template b/srcpkgs/v2ray/template
index 27dee8754f7e..cf05f005fd41 100644
--- a/srcpkgs/v2ray/template
+++ b/srcpkgs/v2ray/template
@@ -1,6 +1,6 @@
 # Template file for 'v2ray'
 pkgname=v2ray
-version=5.3.0
+version=5.4.0
 revision=1
 build_style=go
 go_import_path="github.com/v2fly/v2ray-core/v5"
@@ -12,7 +12,8 @@ maintainer="ipkalm <ipkalm@outlook.com>"
 license="MIT"
 homepage="https://github.com/v2fly/v2ray-core"
 distfiles="https://github.com/v2fly/v2ray-core/archive/v${version}/${pkgname}-${version}.tar.gz"
-checksum=8e97e2647cb1dee8aa7e71df276c56d74258b2d97bb490a362afa84bdf1b9e25
+checksum=86be35461a9dc7d037e0045771d99f1eae284fdb7aa0818a6782d18b6b003fca
+make_dirs="/etc/v2ray/env 0755 root root"
 conf_files="/etc/v2ray/config.json"
 
 system_accounts="_v2ray"
@@ -49,4 +50,7 @@ post_install() {
 	vmkdir etc/v2ray
 	vcopy release/config/*.json etc/v2ray/
 	vsv v2ray
+
+	# Void-specific documentation.
+	vdoc "${FILESDIR}/README.voidlinux"
 }

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

* Re: v2ray: update to 5.4.0
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
@ 2023-02-28 15:47 ` ipkalm
  2023-02-28 15:47 ` ipkalm
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-02-28 15:47 UTC (permalink / raw)
  To: ml

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

New comment by ipkalm on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#issuecomment-1448414371

Comment:
Locally I built again with `-Q` arg without any errors for `i686`.

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

* Re: v2ray: update to 5.4.0
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
  2023-02-28 15:47 ` ipkalm
@ 2023-02-28 15:47 ` ipkalm
  2023-02-28 15:52 ` ipkalm
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-02-28 15:47 UTC (permalink / raw)
  To: ml

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

New comment by ipkalm on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#issuecomment-1448414371

Comment:
Locally I built again with `-Q` arg for `i686` without any errors .

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

* Re: v2ray: update to 5.4.0
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
  2023-02-28 15:47 ` ipkalm
  2023-02-28 15:47 ` ipkalm
@ 2023-02-28 15:52 ` ipkalm
  2023-03-20 23:01 ` [PR PATCH] [Updated] " ipkalm
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-02-28 15:52 UTC (permalink / raw)
  To: ml

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

New comment by ipkalm on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#issuecomment-1448414371

Comment:
Locally I built again with `-Q` arg for `i686` without any errors . It seem like network error during dependencies download.

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

* Re: [PR PATCH] [Updated] v2ray: update to 5.4.0
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (2 preceding siblings ...)
  2023-02-28 15:52 ` ipkalm
@ 2023-03-20 23:01 ` ipkalm
  2023-04-23  3:59 ` ipkalm
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-03-20 23:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ipkalm/void-packages v2ray-5.4.0_1
https://github.com/void-linux/void-packages/pull/42502

v2ray: update to 5.4.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - i686-musl
  - aarch64
  - aarch64-musl
  - armv7l
  - armv7l-musl
  - armv6l
  - armv6l-musl
  - ppc64le


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-v2ray-5.4.0_1-42502.patch --]
[-- Type: text/x-diff, Size: 3714 bytes --]

From 193d2e26d234bbdf9b08ebf22dc4a14d5b55e111 Mon Sep 17 00:00:00 2001
From: ipkalm <ipkalm@outlook.com>
Date: Wed, 22 Feb 2023 09:58:26 +0700
Subject: [PATCH] v2ray: update to 5.4.0

---
 srcpkgs/v2ray/INSTALL.msg            |  2 ++
 srcpkgs/v2ray/REMOVE                 | 12 ++++++++++++
 srcpkgs/v2ray/files/README.voidlinux | 17 +++++++++++++++++
 srcpkgs/v2ray/files/v2ray/run        |  4 +++-
 srcpkgs/v2ray/template               |  8 ++++++--
 5 files changed, 40 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/v2ray/INSTALL.msg
 create mode 100644 srcpkgs/v2ray/REMOVE
 create mode 100644 srcpkgs/v2ray/files/README.voidlinux

diff --git a/srcpkgs/v2ray/INSTALL.msg b/srcpkgs/v2ray/INSTALL.msg
new file mode 100644
index 000000000000..09daaef1902d
--- /dev/null
+++ b/srcpkgs/v2ray/INSTALL.msg
@@ -0,0 +1,2 @@
+Consult /usr/share/doc/v2ray/README.voidlinux for additional configuration
+instructions.
diff --git a/srcpkgs/v2ray/REMOVE b/srcpkgs/v2ray/REMOVE
new file mode 100644
index 000000000000..c2c085849f70
--- /dev/null
+++ b/srcpkgs/v2ray/REMOVE
@@ -0,0 +1,12 @@
+#
+# This script removes /etc/v2ray directory only if it is empty
+# and not during package update
+#
+
+if [ "$UPDATE" = "no" ]; then
+        case "$ACTION" in
+        post)
+                [ -d etc/v2ray ] && rmdir etc/v2ray 2>/dev/null
+                ;;
+        esac
+fi
diff --git a/srcpkgs/v2ray/files/README.voidlinux b/srcpkgs/v2ray/files/README.voidlinux
new file mode 100644
index 000000000000..53d9cc2c5bfc
--- /dev/null
+++ b/srcpkgs/v2ray/files/README.voidlinux
@@ -0,0 +1,17 @@
+By default `v2ray` runit service uses /etc/v2ray/config.json config file. 
+
+For change command-line options for `v2ray` runit service,
+add '/etc/sv/v2ray/conf' file with 'OPTS=' variable.
+For example:
+
+        # echo 'OPTS="-config /etc/v2ray/second_config.json"' > /etc/sv/v2ray/conf
+
+Now `sv start v2ray` will use '/etc/v2ray/second_config.json' config file. For more information read `v2ray help run`. 
+
+For use environment variables add them to /etc/v2ray/env/ directory.
+For example:
+
+        # echo 'false' > /etc/v2ray/env/v2ray.vmess.aead.forced
+
+It adds environment variable 'v2ray.vmess.aead.forced=false' to `v2ray run` command.
+For more information read about '-e dir' option in `man chpst`.
diff --git a/srcpkgs/v2ray/files/v2ray/run b/srcpkgs/v2ray/files/v2ray/run
index 2910b070fb90..4fcce104be3f 100644
--- a/srcpkgs/v2ray/files/v2ray/run
+++ b/srcpkgs/v2ray/files/v2ray/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
-exec chpst -u _v2ray v2ray run -config=/etc/v2ray/config.json 2>&1
+[ -r conf ] && . ./conf
+
+exec chpst -e /etc/v2ray/env -u _v2ray v2ray run ${OPTS:- -config=/etc/v2ray/config.json} 2>&1
diff --git a/srcpkgs/v2ray/template b/srcpkgs/v2ray/template
index 27dee8754f7e..cf05f005fd41 100644
--- a/srcpkgs/v2ray/template
+++ b/srcpkgs/v2ray/template
@@ -1,6 +1,6 @@
 # Template file for 'v2ray'
 pkgname=v2ray
-version=5.3.0
+version=5.4.0
 revision=1
 build_style=go
 go_import_path="github.com/v2fly/v2ray-core/v5"
@@ -12,7 +12,8 @@ maintainer="ipkalm <ipkalm@outlook.com>"
 license="MIT"
 homepage="https://github.com/v2fly/v2ray-core"
 distfiles="https://github.com/v2fly/v2ray-core/archive/v${version}/${pkgname}-${version}.tar.gz"
-checksum=8e97e2647cb1dee8aa7e71df276c56d74258b2d97bb490a362afa84bdf1b9e25
+checksum=86be35461a9dc7d037e0045771d99f1eae284fdb7aa0818a6782d18b6b003fca
+make_dirs="/etc/v2ray/env 0755 root root"
 conf_files="/etc/v2ray/config.json"
 
 system_accounts="_v2ray"
@@ -49,4 +50,7 @@ post_install() {
 	vmkdir etc/v2ray
 	vcopy release/config/*.json etc/v2ray/
 	vsv v2ray
+
+	# Void-specific documentation.
+	vdoc "${FILESDIR}/README.voidlinux"
 }

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

* Re: [PR PATCH] [Updated] v2ray: update to 5.4.0
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (3 preceding siblings ...)
  2023-03-20 23:01 ` [PR PATCH] [Updated] " ipkalm
@ 2023-04-23  3:59 ` ipkalm
  2023-04-23  4:01 ` [PR PATCH] [Closed]: v2ray: update to 5.4.1 ipkalm
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-04-23  3:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ipkalm/void-packages v2ray-5.4.0_1
https://github.com/void-linux/void-packages/pull/42502

v2ray: update to 5.4.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - i686-musl
  - aarch64
  - aarch64-musl
  - armv7l
  - armv7l-musl
  - armv6l
  - armv6l-musl
  - ppc64le


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-v2ray-5.4.0_1-42502.patch --]
[-- Type: text/x-diff, Size: 3793 bytes --]

From 20236650bfed4482d26a181c1721629d42c8ebbd Mon Sep 17 00:00:00 2001
From: ipkalm <ipkalm@outlook.com>
Date: Sun, 23 Apr 2023 10:55:20 +0700
Subject: [PATCH] v2ray: update to 5.4.1

---
 srcpkgs/v2ray/INSTALL.msg            |  2 ++
 srcpkgs/v2ray/REMOVE                 | 12 ++++++++++++
 srcpkgs/v2ray/files/README.voidlinux | 17 +++++++++++++++++
 srcpkgs/v2ray/files/v2ray/run        |  4 +++-
 srcpkgs/v2ray/template               | 10 +++++++---
 5 files changed, 41 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/v2ray/INSTALL.msg
 create mode 100644 srcpkgs/v2ray/REMOVE
 create mode 100644 srcpkgs/v2ray/files/README.voidlinux

diff --git a/srcpkgs/v2ray/INSTALL.msg b/srcpkgs/v2ray/INSTALL.msg
new file mode 100644
index 000000000000..09daaef1902d
--- /dev/null
+++ b/srcpkgs/v2ray/INSTALL.msg
@@ -0,0 +1,2 @@
+Consult /usr/share/doc/v2ray/README.voidlinux for additional configuration
+instructions.
diff --git a/srcpkgs/v2ray/REMOVE b/srcpkgs/v2ray/REMOVE
new file mode 100644
index 000000000000..c2c085849f70
--- /dev/null
+++ b/srcpkgs/v2ray/REMOVE
@@ -0,0 +1,12 @@
+#
+# This script removes /etc/v2ray directory only if it is empty
+# and not during package update
+#
+
+if [ "$UPDATE" = "no" ]; then
+        case "$ACTION" in
+        post)
+                [ -d etc/v2ray ] && rmdir etc/v2ray 2>/dev/null
+                ;;
+        esac
+fi
diff --git a/srcpkgs/v2ray/files/README.voidlinux b/srcpkgs/v2ray/files/README.voidlinux
new file mode 100644
index 000000000000..53d9cc2c5bfc
--- /dev/null
+++ b/srcpkgs/v2ray/files/README.voidlinux
@@ -0,0 +1,17 @@
+By default `v2ray` runit service uses /etc/v2ray/config.json config file. 
+
+For change command-line options for `v2ray` runit service,
+add '/etc/sv/v2ray/conf' file with 'OPTS=' variable.
+For example:
+
+        # echo 'OPTS="-config /etc/v2ray/second_config.json"' > /etc/sv/v2ray/conf
+
+Now `sv start v2ray` will use '/etc/v2ray/second_config.json' config file. For more information read `v2ray help run`. 
+
+For use environment variables add them to /etc/v2ray/env/ directory.
+For example:
+
+        # echo 'false' > /etc/v2ray/env/v2ray.vmess.aead.forced
+
+It adds environment variable 'v2ray.vmess.aead.forced=false' to `v2ray run` command.
+For more information read about '-e dir' option in `man chpst`.
diff --git a/srcpkgs/v2ray/files/v2ray/run b/srcpkgs/v2ray/files/v2ray/run
index 2910b070fb90..4fcce104be3f 100644
--- a/srcpkgs/v2ray/files/v2ray/run
+++ b/srcpkgs/v2ray/files/v2ray/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
-exec chpst -u _v2ray v2ray run -config=/etc/v2ray/config.json 2>&1
+[ -r conf ] && . ./conf
+
+exec chpst -e /etc/v2ray/env -u _v2ray v2ray run ${OPTS:- -config=/etc/v2ray/config.json} 2>&1
diff --git a/srcpkgs/v2ray/template b/srcpkgs/v2ray/template
index 2034e96813d9..77d469628a43 100644
--- a/srcpkgs/v2ray/template
+++ b/srcpkgs/v2ray/template
@@ -1,7 +1,7 @@
 # Template file for 'v2ray'
 pkgname=v2ray
-version=5.3.0
-revision=2
+version=5.4.1
+revision=1
 build_style=go
 go_import_path="github.com/v2fly/v2ray-core/v5"
 go_ldflags="-X github.com/v2fly/v2ray-core/v5.codename=$pkgname
@@ -12,7 +12,8 @@ maintainer="ipkalm <ipkalm@outlook.com>"
 license="MIT"
 homepage="https://github.com/v2fly/v2ray-core"
 distfiles="https://github.com/v2fly/v2ray-core/archive/v${version}/${pkgname}-${version}.tar.gz"
-checksum=8e97e2647cb1dee8aa7e71df276c56d74258b2d97bb490a362afa84bdf1b9e25
+checksum=e208bca255c4689a30104e965039d73fa138a7a6e902f820cff94b5b772b042b
+make_dirs="/etc/v2ray/env 0755 root root"
 conf_files="/etc/v2ray/config.json"
 
 system_accounts="_v2ray"
@@ -49,4 +50,7 @@ post_install() {
 	vmkdir etc/v2ray
 	vcopy release/config/*.json etc/v2ray/
 	vsv v2ray
+
+	# Void-specific documentation.
+	vdoc "${FILESDIR}/README.voidlinux"
 }

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

* Re: [PR PATCH] [Closed]: v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (4 preceding siblings ...)
  2023-04-23  3:59 ` ipkalm
@ 2023-04-23  4:01 ` ipkalm
  2023-06-25 19:10 ` [PR REVIEW] " Duncaen
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ipkalm @ 2023-04-23  4:01 UTC (permalink / raw)
  To: ml

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

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

v2ray: update to 5.4.1
https://github.com/void-linux/void-packages/pull/42502

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - i686-musl
  - aarch64
  - aarch64-musl
  - armv7l
  - armv7l-musl
  - armv6l
  - armv6l-musl
  - ppc64le


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

* Re: [PR REVIEW] v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (7 preceding siblings ...)
  2023-06-25 19:10 ` Duncaen
@ 2023-06-25 19:10 ` Duncaen
  2023-06-25 19:10 ` Duncaen
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2023-06-25 19:10 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#discussion_r1241266277

Comment:
the conf file can already export environment variables. for consistency with other service please remove it.

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

* Re: [PR REVIEW] v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (8 preceding siblings ...)
  2023-06-25 19:10 ` Duncaen
@ 2023-06-25 19:10 ` Duncaen
  2023-09-24  1:45 ` github-actions
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2023-06-25 19:10 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#discussion_r1241266431

Comment:
I feel like the readme is pointless if the service follows how every other service is configured.

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

* Re: [PR REVIEW] v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (6 preceding siblings ...)
  2023-06-25 19:10 ` [PR REVIEW] " Duncaen
@ 2023-06-25 19:10 ` Duncaen
  2023-06-25 19:10 ` Duncaen
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2023-06-25 19:10 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#discussion_r1241266000

Comment:
This should not be required. xbps does that.

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

* Re: [PR REVIEW] v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (5 preceding siblings ...)
  2023-04-23  4:01 ` [PR PATCH] [Closed]: v2ray: update to 5.4.1 ipkalm
@ 2023-06-25 19:10 ` Duncaen
  2023-06-25 19:10 ` Duncaen
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2023-06-25 19:10 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/42502#discussion_r1241265944

Comment:
Please don't add noise install messages, this is not required and results in users just ignoring them all together.


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

* Re: v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (9 preceding siblings ...)
  2023-06-25 19:10 ` Duncaen
@ 2023-09-24  1:45 ` github-actions
  2023-12-24  1:47 ` github-actions
  2024-01-07  1:49 ` [PR PATCH] [Closed]: " github-actions
  12 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2023-09-24  1:45 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/42502#issuecomment-1732452755

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] 14+ messages in thread

* Re: v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (10 preceding siblings ...)
  2023-09-24  1:45 ` github-actions
@ 2023-12-24  1:47 ` github-actions
  2024-01-07  1:49 ` [PR PATCH] [Closed]: " github-actions
  12 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2023-12-24  1:47 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/42502#issuecomment-1868410148

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] 14+ messages in thread

* Re: [PR PATCH] [Closed]: v2ray: update to 5.4.1
  2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
                   ` (11 preceding siblings ...)
  2023-12-24  1:47 ` github-actions
@ 2024-01-07  1:49 ` github-actions
  12 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2024-01-07  1:49 UTC (permalink / raw)
  To: ml

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

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

v2ray: update to 5.4.1
https://github.com/void-linux/void-packages/pull/42502

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - i686-musl
  - aarch64
  - aarch64-musl
  - armv7l
  - armv7l-musl
  - armv6l
  - armv6l-musl
  - ppc64le


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

end of thread, other threads:[~2024-01-07  1:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-28 15:38 [PR PATCH] v2ray: update to 5.4.0 ipkalm
2023-02-28 15:47 ` ipkalm
2023-02-28 15:47 ` ipkalm
2023-02-28 15:52 ` ipkalm
2023-03-20 23:01 ` [PR PATCH] [Updated] " ipkalm
2023-04-23  3:59 ` ipkalm
2023-04-23  4:01 ` [PR PATCH] [Closed]: v2ray: update to 5.4.1 ipkalm
2023-06-25 19:10 ` [PR REVIEW] " Duncaen
2023-06-25 19:10 ` Duncaen
2023-06-25 19:10 ` Duncaen
2023-06-25 19:10 ` Duncaen
2023-09-24  1:45 ` github-actions
2023-12-24  1:47 ` github-actions
2024-01-07  1:49 ` [PR PATCH] [Closed]: " github-actions

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