Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: infisical 0.14.2
@ 2023-10-13 11:45 0xdeadbad
  2023-10-13 16:50 ` 0xdeadbad
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-13 11:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-glibc


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

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

From 50eae55ae6fe2d7ca8842839a21cf2404e14e5cf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Fri, 13 Oct 2023 07:36:17 -0300
Subject: [PATCH] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++
 srcpkgs/infisical/template                    | 54 +++++++++++++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..39d05f4f62bac
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..5f7ddd57399e7
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,54 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+archs="x86_64 aarch64"
+create_wrksrc=true
+makedepends="go wget tar"
+checkdepends="go git"
+short_desc="CLI tool for infisical, an open-source secret management platform"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+fetch_cmd="wget"
+nopie=true
+XBPS_CHECK_PKGS=true
+
+unset build_style
+
+function do_extract() {
+    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
+        --strip-components=2 \
+        infisical-infisical-cli-v${version}/cli
+}
+
+function do_build() {
+    go build \
+        -o infisical \
+        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
+        ${XBPS_BUILDDIR}/${pkgname}-${version}
+}
+
+function do_check() {
+    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
+    go test github.com/Infisical/infisical-merge/packages/cmd
+    go test github.com/Infisical/infisical-merge/report
+    go test github.com/Infisical/infisical-merge/config
+    go test github.com/Infisical/infisical-merge/detect
+}
+
+function do_install() {
+    vbin infisical
+}
+
+function post_install() {
+    go run . man | gzip -c > "infisical.1.gz"
+    vman "infisical.1.gz"
+
+    for sh in bash zsh fish; do
+	    go run . completion "$sh" > "infisical.$sh"
+        vcompletion "infisical.$sh" "$sh"
+    done
+}
\ No newline at end of file

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
@ 2023-10-13 16:50 ` 0xdeadbad
  2023-10-13 17:21 ` classabbyamp
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-13 16:50 UTC (permalink / raw)
  To: ml

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

New comment by 0xdeadbad on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1761816036

Comment:
Ok, I just woke up and this looks terrible. Going to refactor-fix

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
  2023-10-13 16:50 ` 0xdeadbad
@ 2023-10-13 17:21 ` classabbyamp
  2023-10-14  2:40 ` [PR PATCH] [Updated] " 0xdeadbad
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2023-10-13 17:21 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1761886216

Comment:
- no need to restrict the architectures (especially as what you put limits you to glibc only)
- use the go `build_style`, as it takes care of most things for you
- `build_helper=qemu` allows the `go run` to work in cross
- don't override `do_extract`, use `build_wrksrc` to change the working directory of the build
- `XBPS_CHECK_PKGS` should never be set in templates, that's internal to xbps-src
- there's no need to use `wget`, the default (`xbps-fetch`) should work fine
- indent with tabs
- gzipping the manpage is useless because `vman` will ungz the file

```patch
From aa70f48c14a71f0101b1a1400baa79621a45337d Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Fri, 13 Oct 2023 13:16:27 -0400
Subject: [PATCH] fixup! New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch |  4 +-
 srcpkgs/infisical/template                    | 58 ++++++-------------
 2 files changed, 21 insertions(+), 41 deletions(-)

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
index 39d05f4f62b..90bcc9ba20b 100644
--- a/srcpkgs/infisical/patches/fix_login..go.patch
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -1,5 +1,5 @@
---- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
-+++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
 @@ -117,7 +117,7 @@
  
  		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5f7ddd57399..5ee034221e5 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -2,53 +2,33 @@
 pkgname=infisical
 version=0.14.2
 revision=1
-archs="x86_64 aarch64"
-create_wrksrc=true
-makedepends="go wget tar"
-checkdepends="go git"
-short_desc="CLI tool for infisical, an open-source secret management platform"
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
 maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
 license="MIT"
 homepage="https://infisical.com"
 distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
 checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
-fetch_cmd="wget"
-nopie=true
-XBPS_CHECK_PKGS=true
 
-unset build_style
-
-function do_extract() {
-    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
-        --strip-components=2 \
-        infisical-infisical-cli-v${version}/cli
-}
-
-function do_build() {
-    go build \
-        -o infisical \
-        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
-        ${XBPS_BUILDDIR}/${pkgname}-${version}
+do_check() {
+	go test ./...
 }
 
-function do_check() {
-    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
-    go test github.com/Infisical/infisical-merge/packages/cmd
-    go test github.com/Infisical/infisical-merge/report
-    go test github.com/Infisical/infisical-merge/config
-    go test github.com/Infisical/infisical-merge/detect
-}
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-function do_install() {
-    vbin infisical
-}
+	go run . man > infisical.1
+	vman infisical.1
 
-function post_install() {
-    go run . man | gzip -c > "infisical.1.gz"
-    vman "infisical.1.gz"
+	for sh in bash zsh fish; do
+		go run . completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
 
-    for sh in bash zsh fish; do
-	    go run . completion "$sh" > "infisical.$sh"
-        vcompletion "infisical.$sh" "$sh"
-    done
-}
\ No newline at end of file
+	vlicense "${wrksrc}"/LICENSE
+}
-- 
2.42.0

```

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

* Re: [PR PATCH] [Updated] New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
  2023-10-13 16:50 ` 0xdeadbad
  2023-10-13 17:21 ` classabbyamp
@ 2023-10-14  2:40 ` 0xdeadbad
  2023-10-14  2:58 ` classabbyamp
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14  2:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-glibc


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

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

From 50eae55ae6fe2d7ca8842839a21cf2404e14e5cf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Fri, 13 Oct 2023 07:36:17 -0300
Subject: [PATCH 1/2] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++
 srcpkgs/infisical/template                    | 54 +++++++++++++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..39d05f4f62bac
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..5f7ddd57399e7
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,54 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+archs="x86_64 aarch64"
+create_wrksrc=true
+makedepends="go wget tar"
+checkdepends="go git"
+short_desc="CLI tool for infisical, an open-source secret management platform"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+fetch_cmd="wget"
+nopie=true
+XBPS_CHECK_PKGS=true
+
+unset build_style
+
+function do_extract() {
+    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
+        --strip-components=2 \
+        infisical-infisical-cli-v${version}/cli
+}
+
+function do_build() {
+    go build \
+        -o infisical \
+        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
+        ${XBPS_BUILDDIR}/${pkgname}-${version}
+}
+
+function do_check() {
+    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
+    go test github.com/Infisical/infisical-merge/packages/cmd
+    go test github.com/Infisical/infisical-merge/report
+    go test github.com/Infisical/infisical-merge/config
+    go test github.com/Infisical/infisical-merge/detect
+}
+
+function do_install() {
+    vbin infisical
+}
+
+function post_install() {
+    go run . man | gzip -c > "infisical.1.gz"
+    vman "infisical.1.gz"
+
+    for sh in bash zsh fish; do
+	    go run . completion "$sh" > "infisical.$sh"
+        vcompletion "infisical.$sh" "$sh"
+    done
+}
\ No newline at end of file

From 68d6ffd6746f5624b737838198ad57c7ece77ec3 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Fri, 13 Oct 2023 13:16:27 -0400
Subject: [PATCH 2/2] fixup! New package: infisical 0.14.2

Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
---
 srcpkgs/infisical/patches/fix_login..go.patch |  4 +-
 srcpkgs/infisical/template                    | 58 ++++++-------------
 2 files changed, 21 insertions(+), 41 deletions(-)

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
index 39d05f4f62bac..90bcc9ba20b9f 100644
--- a/srcpkgs/infisical/patches/fix_login..go.patch
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -1,5 +1,5 @@
---- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
-+++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
 @@ -117,7 +117,7 @@
  
  		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5f7ddd57399e7..5ee034221e585 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -2,53 +2,33 @@
 pkgname=infisical
 version=0.14.2
 revision=1
-archs="x86_64 aarch64"
-create_wrksrc=true
-makedepends="go wget tar"
-checkdepends="go git"
-short_desc="CLI tool for infisical, an open-source secret management platform"
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
 maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
 license="MIT"
 homepage="https://infisical.com"
 distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
 checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
-fetch_cmd="wget"
-nopie=true
-XBPS_CHECK_PKGS=true
 
-unset build_style
-
-function do_extract() {
-    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
-        --strip-components=2 \
-        infisical-infisical-cli-v${version}/cli
-}
-
-function do_build() {
-    go build \
-        -o infisical \
-        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
-        ${XBPS_BUILDDIR}/${pkgname}-${version}
+do_check() {
+	go test ./...
 }
 
-function do_check() {
-    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
-    go test github.com/Infisical/infisical-merge/packages/cmd
-    go test github.com/Infisical/infisical-merge/report
-    go test github.com/Infisical/infisical-merge/config
-    go test github.com/Infisical/infisical-merge/detect
-}
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-function do_install() {
-    vbin infisical
-}
+	go run . man > infisical.1
+	vman infisical.1
 
-function post_install() {
-    go run . man | gzip -c > "infisical.1.gz"
-    vman "infisical.1.gz"
+	for sh in bash zsh fish; do
+		go run . completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
 
-    for sh in bash zsh fish; do
-	    go run . completion "$sh" > "infisical.$sh"
-        vcompletion "infisical.$sh" "$sh"
-    done
-}
\ No newline at end of file
+	vlicense "${wrksrc}"/LICENSE
+}

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (2 preceding siblings ...)
  2023-10-14  2:40 ` [PR PATCH] [Updated] " 0xdeadbad
@ 2023-10-14  2:58 ` classabbyamp
  2023-10-14  3:25 ` [PR PATCH] [Updated] " 0xdeadbad
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2023-10-14  2:58 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1762515489

Comment:
ah that probably worked for me because I have binfmts set up locally. instead of `go run . ...` use `vtargetrun "${DESTDIR}"/usr/bin/infisical ...`

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

* Re: [PR PATCH] [Updated] New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (3 preceding siblings ...)
  2023-10-14  2:58 ` classabbyamp
@ 2023-10-14  3:25 ` 0xdeadbad
  2023-10-14  3:37 ` 0xdeadbad
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14  3:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-glibc


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

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

From 50eae55ae6fe2d7ca8842839a21cf2404e14e5cf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Fri, 13 Oct 2023 07:36:17 -0300
Subject: [PATCH 1/3] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++
 srcpkgs/infisical/template                    | 54 +++++++++++++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..39d05f4f62bac
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..5f7ddd57399e7
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,54 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+archs="x86_64 aarch64"
+create_wrksrc=true
+makedepends="go wget tar"
+checkdepends="go git"
+short_desc="CLI tool for infisical, an open-source secret management platform"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+fetch_cmd="wget"
+nopie=true
+XBPS_CHECK_PKGS=true
+
+unset build_style
+
+function do_extract() {
+    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
+        --strip-components=2 \
+        infisical-infisical-cli-v${version}/cli
+}
+
+function do_build() {
+    go build \
+        -o infisical \
+        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
+        ${XBPS_BUILDDIR}/${pkgname}-${version}
+}
+
+function do_check() {
+    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
+    go test github.com/Infisical/infisical-merge/packages/cmd
+    go test github.com/Infisical/infisical-merge/report
+    go test github.com/Infisical/infisical-merge/config
+    go test github.com/Infisical/infisical-merge/detect
+}
+
+function do_install() {
+    vbin infisical
+}
+
+function post_install() {
+    go run . man | gzip -c > "infisical.1.gz"
+    vman "infisical.1.gz"
+
+    for sh in bash zsh fish; do
+	    go run . completion "$sh" > "infisical.$sh"
+        vcompletion "infisical.$sh" "$sh"
+    done
+}
\ No newline at end of file

From 68d6ffd6746f5624b737838198ad57c7ece77ec3 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Fri, 13 Oct 2023 13:16:27 -0400
Subject: [PATCH 2/3] fixup! New package: infisical 0.14.2

Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
---
 srcpkgs/infisical/patches/fix_login..go.patch |  4 +-
 srcpkgs/infisical/template                    | 58 ++++++-------------
 2 files changed, 21 insertions(+), 41 deletions(-)

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
index 39d05f4f62bac..90bcc9ba20b9f 100644
--- a/srcpkgs/infisical/patches/fix_login..go.patch
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -1,5 +1,5 @@
---- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
-+++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
 @@ -117,7 +117,7 @@
  
  		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5f7ddd57399e7..5ee034221e585 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -2,53 +2,33 @@
 pkgname=infisical
 version=0.14.2
 revision=1
-archs="x86_64 aarch64"
-create_wrksrc=true
-makedepends="go wget tar"
-checkdepends="go git"
-short_desc="CLI tool for infisical, an open-source secret management platform"
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
 maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
 license="MIT"
 homepage="https://infisical.com"
 distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
 checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
-fetch_cmd="wget"
-nopie=true
-XBPS_CHECK_PKGS=true
 
-unset build_style
-
-function do_extract() {
-    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
-        --strip-components=2 \
-        infisical-infisical-cli-v${version}/cli
-}
-
-function do_build() {
-    go build \
-        -o infisical \
-        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
-        ${XBPS_BUILDDIR}/${pkgname}-${version}
+do_check() {
+	go test ./...
 }
 
-function do_check() {
-    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
-    go test github.com/Infisical/infisical-merge/packages/cmd
-    go test github.com/Infisical/infisical-merge/report
-    go test github.com/Infisical/infisical-merge/config
-    go test github.com/Infisical/infisical-merge/detect
-}
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-function do_install() {
-    vbin infisical
-}
+	go run . man > infisical.1
+	vman infisical.1
 
-function post_install() {
-    go run . man | gzip -c > "infisical.1.gz"
-    vman "infisical.1.gz"
+	for sh in bash zsh fish; do
+		go run . completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
 
-    for sh in bash zsh fish; do
-	    go run . completion "$sh" > "infisical.$sh"
-        vcompletion "infisical.$sh" "$sh"
-    done
-}
\ No newline at end of file
+	vlicense "${wrksrc}"/LICENSE
+}

From fb6e2ad9e2c8ab28ba90ec14c4aadcd581b718da Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Sat, 14 Oct 2023 00:25:20 -0300
Subject: [PATCH 3/3] fix: use vtargetrun for cross-compile

---
 srcpkgs/infisical/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5ee034221e585..3c194ab788f45 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -22,11 +22,11 @@ do_check() {
 post_install() {
 	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-	go run . man > infisical.1
+	vtargetrun "${DESTDIR}"/usr/bin/infisical man > infisical.1
 	vman infisical.1
 
 	for sh in bash zsh fish; do
-		go run . completion "$sh" > "infisical.$sh"
+		vtargetrun "${DESTDIR}"/usr/bin/infisical completion "$sh" > "infisical.$sh"
 		vcompletion "infisical.$sh" "$sh"
 	done
 

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (4 preceding siblings ...)
  2023-10-14  3:25 ` [PR PATCH] [Updated] " 0xdeadbad
@ 2023-10-14  3:37 ` 0xdeadbad
  2023-10-14 12:27 ` chrysos349
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14  3:37 UTC (permalink / raw)
  To: ml

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

New comment by 0xdeadbad on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1762546857

Comment:
Wow, thank you very much for the tips, changes and the very clean patch @classabbyamp .I'll do my best to bring cleaner PRs!

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (5 preceding siblings ...)
  2023-10-14  3:37 ` 0xdeadbad
@ 2023-10-14 12:27 ` chrysos349
  2023-10-14 14:53 ` 0xdeadbad
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: chrysos349 @ 2023-10-14 12:27 UTC (permalink / raw)
  To: ml

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

New comment by chrysos349 on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1762868910

Comment:
you could also disable telemetry

```
post_patch() {
	# disable telemetry
	vsed -i packages/cmd/root.go \
		-e 's/"telemetry", true/"telemetry", false/'
}
```

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (6 preceding siblings ...)
  2023-10-14 12:27 ` chrysos349
@ 2023-10-14 14:53 ` 0xdeadbad
  2023-10-14 15:32 ` [PR PATCH] [Updated] " 0xdeadbad
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 14:53 UTC (permalink / raw)
  To: ml

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

New comment by 0xdeadbad on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1762959174

Comment:
> you could also disable telemetry
> 
> ```
> post_patch() {
> 	# disable telemetry
> 	vsed -i packages/cmd/root.go \
> 		-e 's/"telemetry", true/"telemetry", false/'
> }
> ```

Well spotted! Thank you. 

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

* Re: [PR PATCH] [Updated] New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (7 preceding siblings ...)
  2023-10-14 14:53 ` 0xdeadbad
@ 2023-10-14 15:32 ` 0xdeadbad
  2023-10-14 15:55 ` 0xdeadbad
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 15:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-glibc


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

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

From 50eae55ae6fe2d7ca8842839a21cf2404e14e5cf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Fri, 13 Oct 2023 07:36:17 -0300
Subject: [PATCH 1/4] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++
 srcpkgs/infisical/template                    | 54 +++++++++++++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..39d05f4f62bac
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..5f7ddd57399e7
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,54 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+archs="x86_64 aarch64"
+create_wrksrc=true
+makedepends="go wget tar"
+checkdepends="go git"
+short_desc="CLI tool for infisical, an open-source secret management platform"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+fetch_cmd="wget"
+nopie=true
+XBPS_CHECK_PKGS=true
+
+unset build_style
+
+function do_extract() {
+    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
+        --strip-components=2 \
+        infisical-infisical-cli-v${version}/cli
+}
+
+function do_build() {
+    go build \
+        -o infisical \
+        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
+        ${XBPS_BUILDDIR}/${pkgname}-${version}
+}
+
+function do_check() {
+    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
+    go test github.com/Infisical/infisical-merge/packages/cmd
+    go test github.com/Infisical/infisical-merge/report
+    go test github.com/Infisical/infisical-merge/config
+    go test github.com/Infisical/infisical-merge/detect
+}
+
+function do_install() {
+    vbin infisical
+}
+
+function post_install() {
+    go run . man | gzip -c > "infisical.1.gz"
+    vman "infisical.1.gz"
+
+    for sh in bash zsh fish; do
+	    go run . completion "$sh" > "infisical.$sh"
+        vcompletion "infisical.$sh" "$sh"
+    done
+}
\ No newline at end of file

From 68d6ffd6746f5624b737838198ad57c7ece77ec3 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Fri, 13 Oct 2023 13:16:27 -0400
Subject: [PATCH 2/4] fixup! New package: infisical 0.14.2

Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
---
 srcpkgs/infisical/patches/fix_login..go.patch |  4 +-
 srcpkgs/infisical/template                    | 58 ++++++-------------
 2 files changed, 21 insertions(+), 41 deletions(-)

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
index 39d05f4f62bac..90bcc9ba20b9f 100644
--- a/srcpkgs/infisical/patches/fix_login..go.patch
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -1,5 +1,5 @@
---- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
-+++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
 @@ -117,7 +117,7 @@
  
  		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5f7ddd57399e7..5ee034221e585 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -2,53 +2,33 @@
 pkgname=infisical
 version=0.14.2
 revision=1
-archs="x86_64 aarch64"
-create_wrksrc=true
-makedepends="go wget tar"
-checkdepends="go git"
-short_desc="CLI tool for infisical, an open-source secret management platform"
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
 maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
 license="MIT"
 homepage="https://infisical.com"
 distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
 checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
-fetch_cmd="wget"
-nopie=true
-XBPS_CHECK_PKGS=true
 
-unset build_style
-
-function do_extract() {
-    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
-        --strip-components=2 \
-        infisical-infisical-cli-v${version}/cli
-}
-
-function do_build() {
-    go build \
-        -o infisical \
-        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
-        ${XBPS_BUILDDIR}/${pkgname}-${version}
+do_check() {
+	go test ./...
 }
 
-function do_check() {
-    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
-    go test github.com/Infisical/infisical-merge/packages/cmd
-    go test github.com/Infisical/infisical-merge/report
-    go test github.com/Infisical/infisical-merge/config
-    go test github.com/Infisical/infisical-merge/detect
-}
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-function do_install() {
-    vbin infisical
-}
+	go run . man > infisical.1
+	vman infisical.1
 
-function post_install() {
-    go run . man | gzip -c > "infisical.1.gz"
-    vman "infisical.1.gz"
+	for sh in bash zsh fish; do
+		go run . completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
 
-    for sh in bash zsh fish; do
-	    go run . completion "$sh" > "infisical.$sh"
-        vcompletion "infisical.$sh" "$sh"
-    done
-}
\ No newline at end of file
+	vlicense "${wrksrc}"/LICENSE
+}

From fb6e2ad9e2c8ab28ba90ec14c4aadcd581b718da Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Sat, 14 Oct 2023 00:25:20 -0300
Subject: [PATCH 3/4] fix: use vtargetrun for cross-compile

---
 srcpkgs/infisical/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5ee034221e585..3c194ab788f45 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -22,11 +22,11 @@ do_check() {
 post_install() {
 	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-	go run . man > infisical.1
+	vtargetrun "${DESTDIR}"/usr/bin/infisical man > infisical.1
 	vman infisical.1
 
 	for sh in bash zsh fish; do
-		go run . completion "$sh" > "infisical.$sh"
+		vtargetrun "${DESTDIR}"/usr/bin/infisical completion "$sh" > "infisical.$sh"
 		vcompletion "infisical.$sh" "$sh"
 	done
 

From 2d75e83e4043621d517c1b0caad9fd7c7a425032 Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Sat, 14 Oct 2023 12:31:56 -0300
Subject: [PATCH 4/4] [PATCH] default telemetry to false Co-authored-by:
 chrysos349 <chrysostom349@gmail.com>

---
 srcpkgs/infisical/patches/notelemetry_root..go.patch | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/notelemetry_root..go.patch

diff --git a/srcpkgs/infisical/patches/notelemetry_root..go.patch b/srcpkgs/infisical/patches/notelemetry_root..go.patch
new file mode 100644
index 0000000000000..203d72a6fbc69
--- /dev/null
+++ b/srcpkgs/infisical/patches/notelemetry_root..go.patch
@@ -0,0 +1,11 @@
+--- a/cli/packages/cmd/root.go
++++ b/cli/packages/cmd/root.go
+@@ -38,7 +38,7 @@ func Execute() {
+ func init() {
+ 	cobra.OnInitialize(initLog)
+ 	rootCmd.PersistentFlags().StringP("log-level", "l", "info", "log level (trace, debug, info, warn, error, fatal)")
+-	rootCmd.PersistentFlags().Bool("telemetry", true, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
++	rootCmd.PersistentFlags().Bool("telemetry", false, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
+ 	rootCmd.PersistentFlags().StringVar(&config.INFISICAL_URL, "domain", util.INFISICAL_DEFAULT_API_URL, "Point the CLI to your own backend [can also set via environment variable name: INFISICAL_API_URL]")
+ 	rootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {
+ 		if !util.IsRunningInDocker() {

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

* Re: [PR PATCH] [Updated] New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (8 preceding siblings ...)
  2023-10-14 15:32 ` [PR PATCH] [Updated] " 0xdeadbad
@ 2023-10-14 15:55 ` 0xdeadbad
  2023-10-14 21:33 ` 0xdeadbad
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 15:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-glibc


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

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

From 50eae55ae6fe2d7ca8842839a21cf2404e14e5cf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Fri, 13 Oct 2023 07:36:17 -0300
Subject: [PATCH 1/3] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++
 srcpkgs/infisical/template                    | 54 +++++++++++++++++++
 2 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..39d05f4f62bac
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..5f7ddd57399e7
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,54 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+archs="x86_64 aarch64"
+create_wrksrc=true
+makedepends="go wget tar"
+checkdepends="go git"
+short_desc="CLI tool for infisical, an open-source secret management platform"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+fetch_cmd="wget"
+nopie=true
+XBPS_CHECK_PKGS=true
+
+unset build_style
+
+function do_extract() {
+    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
+        --strip-components=2 \
+        infisical-infisical-cli-v${version}/cli
+}
+
+function do_build() {
+    go build \
+        -o infisical \
+        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
+        ${XBPS_BUILDDIR}/${pkgname}-${version}
+}
+
+function do_check() {
+    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
+    go test github.com/Infisical/infisical-merge/packages/cmd
+    go test github.com/Infisical/infisical-merge/report
+    go test github.com/Infisical/infisical-merge/config
+    go test github.com/Infisical/infisical-merge/detect
+}
+
+function do_install() {
+    vbin infisical
+}
+
+function post_install() {
+    go run . man | gzip -c > "infisical.1.gz"
+    vman "infisical.1.gz"
+
+    for sh in bash zsh fish; do
+	    go run . completion "$sh" > "infisical.$sh"
+        vcompletion "infisical.$sh" "$sh"
+    done
+}
\ No newline at end of file

From 68d6ffd6746f5624b737838198ad57c7ece77ec3 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Fri, 13 Oct 2023 13:16:27 -0400
Subject: [PATCH 2/3] fixup! New package: infisical 0.14.2

Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
---
 srcpkgs/infisical/patches/fix_login..go.patch |  4 +-
 srcpkgs/infisical/template                    | 58 ++++++-------------
 2 files changed, 21 insertions(+), 41 deletions(-)

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
index 39d05f4f62bac..90bcc9ba20b9f 100644
--- a/srcpkgs/infisical/patches/fix_login..go.patch
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -1,5 +1,5 @@
---- a/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
-+++ b/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
 @@ -117,7 +117,7 @@
  
  		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5f7ddd57399e7..5ee034221e585 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -2,53 +2,33 @@
 pkgname=infisical
 version=0.14.2
 revision=1
-archs="x86_64 aarch64"
-create_wrksrc=true
-makedepends="go wget tar"
-checkdepends="go git"
-short_desc="CLI tool for infisical, an open-source secret management platform"
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
 maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
 license="MIT"
 homepage="https://infisical.com"
 distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
 checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
-fetch_cmd="wget"
-nopie=true
-XBPS_CHECK_PKGS=true
 
-unset build_style
-
-function do_extract() {
-    tar -xvzf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${version}.tar.gz \
-        --strip-components=2 \
-        infisical-infisical-cli-v${version}/cli
-}
-
-function do_build() {
-    go build \
-        -o infisical \
-        --ldflags="-X \"github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}\"" \
-        ${XBPS_BUILDDIR}/${pkgname}-${version}
+do_check() {
+	go test ./...
 }
 
-function do_check() {
-    [ "$(./infisical --version)" = "infisical version ${version}" ] || return 1
-    go test github.com/Infisical/infisical-merge/packages/cmd
-    go test github.com/Infisical/infisical-merge/report
-    go test github.com/Infisical/infisical-merge/config
-    go test github.com/Infisical/infisical-merge/detect
-}
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-function do_install() {
-    vbin infisical
-}
+	go run . man > infisical.1
+	vman infisical.1
 
-function post_install() {
-    go run . man | gzip -c > "infisical.1.gz"
-    vman "infisical.1.gz"
+	for sh in bash zsh fish; do
+		go run . completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
 
-    for sh in bash zsh fish; do
-	    go run . completion "$sh" > "infisical.$sh"
-        vcompletion "infisical.$sh" "$sh"
-    done
-}
\ No newline at end of file
+	vlicense "${wrksrc}"/LICENSE
+}

From 6bd72be920eb29502a31b7601be568e623a5142e Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Sat, 14 Oct 2023 12:54:21 -0300
Subject: [PATCH 3/3] fix: cross-compile and no telemetry by default

Co-authored-by: chrysos349 <chrysostom349@gmail.com>
---
 srcpkgs/infisical/patches/notelemetry_root..go.patch | 11 +++++++++++
 srcpkgs/infisical/template                           |  4 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/infisical/patches/notelemetry_root..go.patch

diff --git a/srcpkgs/infisical/patches/notelemetry_root..go.patch b/srcpkgs/infisical/patches/notelemetry_root..go.patch
new file mode 100644
index 0000000000000..203d72a6fbc69
--- /dev/null
+++ b/srcpkgs/infisical/patches/notelemetry_root..go.patch
@@ -0,0 +1,11 @@
+--- a/cli/packages/cmd/root.go
++++ b/cli/packages/cmd/root.go
+@@ -38,7 +38,7 @@ func Execute() {
+ func init() {
+ 	cobra.OnInitialize(initLog)
+ 	rootCmd.PersistentFlags().StringP("log-level", "l", "info", "log level (trace, debug, info, warn, error, fatal)")
+-	rootCmd.PersistentFlags().Bool("telemetry", true, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
++	rootCmd.PersistentFlags().Bool("telemetry", false, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
+ 	rootCmd.PersistentFlags().StringVar(&config.INFISICAL_URL, "domain", util.INFISICAL_DEFAULT_API_URL, "Point the CLI to your own backend [can also set via environment variable name: INFISICAL_API_URL]")
+ 	rootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {
+ 		if !util.IsRunningInDocker() {
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
index 5ee034221e585..3c194ab788f45 100644
--- a/srcpkgs/infisical/template
+++ b/srcpkgs/infisical/template
@@ -22,11 +22,11 @@ do_check() {
 post_install() {
 	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
 
-	go run . man > infisical.1
+	vtargetrun "${DESTDIR}"/usr/bin/infisical man > infisical.1
 	vman infisical.1
 
 	for sh in bash zsh fish; do
-		go run . completion "$sh" > "infisical.$sh"
+		vtargetrun "${DESTDIR}"/usr/bin/infisical completion "$sh" > "infisical.$sh"
 		vcompletion "infisical.$sh" "$sh"
 	done
 

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (9 preceding siblings ...)
  2023-10-14 15:55 ` 0xdeadbad
@ 2023-10-14 21:33 ` 0xdeadbad
  2023-10-14 21:34 ` classabbyamp
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 21:33 UTC (permalink / raw)
  To: ml

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

New comment by 0xdeadbad on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1763186591

Comment:
@classabbyamp I think I'm done with it, I tested personally on my computer (x86_64-glibc) and my raspberry pi 4 (aarch64-glibc) and added to the list every architecture that were cross built successfully. I can squash the commits and add co authors as I did. Anything you think that should be changed? 

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (10 preceding siblings ...)
  2023-10-14 21:33 ` 0xdeadbad
@ 2023-10-14 21:34 ` classabbyamp
  2023-10-14 21:37 ` [PR PATCH] [Updated] " 0xdeadbad
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2023-10-14 21:34 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1763186779

Comment:
squash but there's no need to add coauthors

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

* Re: [PR PATCH] [Updated] New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (11 preceding siblings ...)
  2023-10-14 21:34 ` classabbyamp
@ 2023-10-14 21:37 ` 0xdeadbad
  2023-10-14 21:40 ` 0xdeadbad
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 21:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0xdeadbad/void-packages infisical
https://github.com/void-linux/void-packages/pull/46653

New package: infisical 0.14.2
<!-- 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**

<!-- 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):
  - aarch64-musl
  - aarch64
  - armv5te-musl
  - armv5te
  - armv5tel-musl
  - armv5tel
  - armv6hf-musl
  - armv6hf
  - armv6l-musl
  - armv6l
  - armv7hf-musl
  - armv7hf
  - armv7l-musl
  - armv7l
  - i686-musl
  - i686
  - ppc64le-musl
  - ppc64le
  - riscv64-musl
  - riscv64
  - x86_64-musl


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

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

From 335175b00c4da80dbba18b6f1c75c52a35b7adcf Mon Sep 17 00:00:00 2001
From: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
Date: Sat, 14 Oct 2023 18:36:24 -0300
Subject: [PATCH] New package: infisical 0.14.2

---
 srcpkgs/infisical/patches/fix_login..go.patch | 11 ++++++
 .../patches/notelemetry_root..go.patch        | 11 ++++++
 srcpkgs/infisical/template                    | 34 +++++++++++++++++++
 3 files changed, 56 insertions(+)
 create mode 100644 srcpkgs/infisical/patches/fix_login..go.patch
 create mode 100644 srcpkgs/infisical/patches/notelemetry_root..go.patch
 create mode 100644 srcpkgs/infisical/template

diff --git a/srcpkgs/infisical/patches/fix_login..go.patch b/srcpkgs/infisical/patches/fix_login..go.patch
new file mode 100644
index 0000000000000..90bcc9ba20b9f
--- /dev/null
+++ b/srcpkgs/infisical/patches/fix_login..go.patch
@@ -0,0 +1,11 @@
+--- a/cli/packages/cmd/login.go	2023-10-13 03:18:59.436901696 -0300
++++ b/cli/packages/cmd/login.go	2023-10-13 03:23:37.911320438 -0300
+@@ -117,7 +117,7 @@
+ 
+ 		err = util.StoreUserCredsInKeyRing(&userCredentialsToBeStored)
+ 		if err != nil {
+-			log.Error().Msgf("Unable to store your credentials in system vault [%s]")
++			log.Error().Msgf("Unable to store your credentials in system vault [%s]", err.Error())
+ 			log.Error().Msgf("\nTo trouble shoot further, read https://infisical.com/docs/cli/faq")
+ 			log.Debug().Err(err)
+ 			//return here
diff --git a/srcpkgs/infisical/patches/notelemetry_root..go.patch b/srcpkgs/infisical/patches/notelemetry_root..go.patch
new file mode 100644
index 0000000000000..203d72a6fbc69
--- /dev/null
+++ b/srcpkgs/infisical/patches/notelemetry_root..go.patch
@@ -0,0 +1,11 @@
+--- a/cli/packages/cmd/root.go
++++ b/cli/packages/cmd/root.go
+@@ -38,7 +38,7 @@ func Execute() {
+ func init() {
+ 	cobra.OnInitialize(initLog)
+ 	rootCmd.PersistentFlags().StringP("log-level", "l", "info", "log level (trace, debug, info, warn, error, fatal)")
+-	rootCmd.PersistentFlags().Bool("telemetry", true, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
++	rootCmd.PersistentFlags().Bool("telemetry", false, "Infisical collects non-sensitive telemetry data to enhance features and improve user experience. Participation is voluntary")
+ 	rootCmd.PersistentFlags().StringVar(&config.INFISICAL_URL, "domain", util.INFISICAL_DEFAULT_API_URL, "Point the CLI to your own backend [can also set via environment variable name: INFISICAL_API_URL]")
+ 	rootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {
+ 		if !util.IsRunningInDocker() {
diff --git a/srcpkgs/infisical/template b/srcpkgs/infisical/template
new file mode 100644
index 0000000000000..3c194ab788f45
--- /dev/null
+++ b/srcpkgs/infisical/template
@@ -0,0 +1,34 @@
+# Template file for 'infisical'
+pkgname=infisical
+version=0.14.2
+revision=1
+build_style=go
+build_helper="qemu"
+build_wrksrc="cli"
+go_import_path="github.com/Infisical/infisical-merge"
+go_ldflags="-X github.com/Infisical/infisical-merge/packages/util.CLI_VERSION=${version}"
+checkdepends="git"
+short_desc="Open-source secret management platform (CLI)"
+maintainer="Matheus Garcias <matheus.dasilva.garcias@gmail.com>"
+license="MIT"
+homepage="https://infisical.com"
+distfiles="https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v${version}.tar.gz"
+checksum=313caf8d4e6ca5fd88d4f2adf72c721958d602404b6f80611a78a2f757d993f1
+
+do_check() {
+	go test ./...
+}
+
+post_install() {
+	mv "${DESTDIR}"/usr/bin/infisical-merge "${DESTDIR}"/usr/bin/infisical
+
+	vtargetrun "${DESTDIR}"/usr/bin/infisical man > infisical.1
+	vman infisical.1
+
+	for sh in bash zsh fish; do
+		vtargetrun "${DESTDIR}"/usr/bin/infisical completion "$sh" > "infisical.$sh"
+		vcompletion "infisical.$sh" "$sh"
+	done
+
+	vlicense "${wrksrc}"/LICENSE
+}

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (12 preceding siblings ...)
  2023-10-14 21:37 ` [PR PATCH] [Updated] " 0xdeadbad
@ 2023-10-14 21:40 ` 0xdeadbad
  2024-01-13  1:46 ` github-actions
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: 0xdeadbad @ 2023-10-14 21:40 UTC (permalink / raw)
  To: ml

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

New comment by 0xdeadbad on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1763188081

Comment:
> squash but there's no need to add coauthors

Done. Thanks for the guidance!

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (13 preceding siblings ...)
  2023-10-14 21:40 ` 0xdeadbad
@ 2024-01-13  1:46 ` github-actions
  2024-01-13  1:47 ` chrysos349
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2024-01-13  1:46 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/46653#issuecomment-1890242881

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (14 preceding siblings ...)
  2024-01-13  1:46 ` github-actions
@ 2024-01-13  1:47 ` chrysos349
  2024-04-14  1:59 ` github-actions
  2024-04-14 10:17 ` chrysos349
  17 siblings, 0 replies; 19+ messages in thread
From: chrysos349 @ 2024-01-13  1:47 UTC (permalink / raw)
  To: ml

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

New comment by chrysos349 on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-1890243623

Comment:
bump

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (15 preceding siblings ...)
  2024-01-13  1:47 ` chrysos349
@ 2024-04-14  1:59 ` github-actions
  2024-04-14 10:17 ` chrysos349
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2024-04-14  1:59 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/46653#issuecomment-2053849430

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

* Re: New package: infisical 0.14.2
  2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
                   ` (16 preceding siblings ...)
  2024-04-14  1:59 ` github-actions
@ 2024-04-14 10:17 ` chrysos349
  17 siblings, 0 replies; 19+ messages in thread
From: chrysos349 @ 2024-04-14 10:17 UTC (permalink / raw)
  To: ml

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

New comment by chrysos349 on void-packages repository

https://github.com/void-linux/void-packages/pull/46653#issuecomment-2053996976

Comment:
bump

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

end of thread, other threads:[~2024-04-14 10:17 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13 11:45 [PR PATCH] New package: infisical 0.14.2 0xdeadbad
2023-10-13 16:50 ` 0xdeadbad
2023-10-13 17:21 ` classabbyamp
2023-10-14  2:40 ` [PR PATCH] [Updated] " 0xdeadbad
2023-10-14  2:58 ` classabbyamp
2023-10-14  3:25 ` [PR PATCH] [Updated] " 0xdeadbad
2023-10-14  3:37 ` 0xdeadbad
2023-10-14 12:27 ` chrysos349
2023-10-14 14:53 ` 0xdeadbad
2023-10-14 15:32 ` [PR PATCH] [Updated] " 0xdeadbad
2023-10-14 15:55 ` 0xdeadbad
2023-10-14 21:33 ` 0xdeadbad
2023-10-14 21:34 ` classabbyamp
2023-10-14 21:37 ` [PR PATCH] [Updated] " 0xdeadbad
2023-10-14 21:40 ` 0xdeadbad
2024-01-13  1:46 ` github-actions
2024-01-13  1:47 ` chrysos349
2024-04-14  1:59 ` github-actions
2024-04-14 10:17 ` chrysos349

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