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

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