Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: sheldon-0.6.6
@ 2022-08-05 18:03 tranzystorek-io
  2022-08-05 18:18 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-08-05 18:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From d4f751e0c67834ee9338eb814171feccbfaf6bd9 Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.6.6

---
 ...l-when-building-outside-git-repo-139.patch | 41 ++++++++++++++
 srcpkgs/sheldon/patches/0002-Fix-tests.patch  | 56 +++++++++++++++++++
 srcpkgs/sheldon/template                      | 37 ++++++++++++
 3 files changed, 134 insertions(+)
 create mode 100644 srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
 create mode 100644 srcpkgs/sheldon/patches/0002-Fix-tests.patch
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
new file mode 100644
index 000000000000..9674370eb425
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
@@ -0,0 +1,41 @@
+From e2f2d86544804e656710834d359d277c07e3f232 Mon Sep 17 00:00:00 2001
+From: Marcin Puc <5671049+tranzystorek-io@users.noreply.github.com>
+Date: Wed, 16 Mar 2022 07:15:48 +0100
+Subject: [PATCH] Fix build fail when building outside git repo (#139)
+
+---
+ tests/lib.rs | 15 ++++++++++++---
+ 1 file changed, 12 insertions(+), 3 deletions(-)
+
+diff --git a/tests/lib.rs b/tests/lib.rs
+index 2f95b04..59f23d8 100644
+--- a/tests/lib.rs
++++ b/tests/lib.rs
+@@ -663,12 +663,21 @@ fn dirs_xdg_from_env() -> io::Result<()> {
+ #[test]
+ fn version() -> io::Result<()> {
+     let dirs = Directories::default()?;
++
++    let maybe_commit_hash = option_env!("GIT_COMMIT_SHORT_HASH");
++    let maybe_commit_date = option_env!("GIT_COMMIT_DATE");
++    let commit_info =
++        if let (Some(commit_hash), Some(commit_date)) = (maybe_commit_hash, maybe_commit_date) {
++            format!(" ({} {})", commit_hash, commit_date)
++        } else {
++            "".to_string()
++        };
++
+     let expected = format!(
+-        "{} {} ({} {})\n{}\n",
++        "{} {}{}\n{}\n",
+         env!("CARGO_PKG_NAME"),
+         env!("CARGO_PKG_VERSION"),
+-        env!("GIT_COMMIT_SHORT_HASH"),
+-        env!("GIT_COMMIT_DATE"),
++        commit_info,
+         env!("RUSTC_VERSION_SUMMARY")
+     );
+     TestCommand::new(&dirs)
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/patches/0002-Fix-tests.patch b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
new file mode 100644
index 000000000000..416229bd3438
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
@@ -0,0 +1,56 @@
+From 9aa06fdd5cb284daae8c48648d614e3823f3f9f3 Mon Sep 17 00:00:00 2001
+From: Ross MacArthur <ross@macarthur.io>
+Date: Sat, 29 Jan 2022 22:02:39 +0200
+Subject: [PATCH] Fix tests
+
+---
+ src/cli.rs                           | 13 ++++++++++++-
+ src/testdata/cli/raw_opt_help.golden |  2 +-
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/src/cli.rs b/src/cli.rs
+index 23c644e..18300fa 100644
+--- a/src/cli.rs
++++ b/src/cli.rs
+@@ -503,6 +503,7 @@ mod tests {
+     use std::iter;
+ 
+     use pretty_assertions::assert_eq;
++    use serde::Serialize;
+ 
+     fn setup() {
+         for (k, _) in env::vars() {
+@@ -548,9 +549,19 @@ mod tests {
+     #[test]
+     fn raw_opt_help() {
+         setup();
++
++        #[derive(Serialize)]
++        struct Context {
++            version: &'static str,
++        }
++
++        let ctx = Context {
++            version: build::CRATE_RELEASE,
++        };
++
+         for opt in &["-h", "--help"] {
+             let err = raw_opt_err(&[opt]);
+-            goldie::assert!(err.to_string());
++            goldie::assert_template!(&ctx, err.to_string());
+             assert_eq!(err.kind, clap::ErrorKind::DisplayHelp);
+         }
+     }
+diff --git a/src/testdata/cli/raw_opt_help.golden b/src/testdata/cli/raw_opt_help.golden
+index 93c47ce..4b6b19d 100644
+--- a/src/testdata/cli/raw_opt_help.golden
++++ b/src/testdata/cli/raw_opt_help.golden
+@@ -1,4 +1,4 @@
+-sheldon 0.6.5
++sheldon {version}
+ Ross MacArthur <ross@macarthur.io>
+ Fast, configurable, shell plugin manager.
+ 
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..d3b2324e7c87
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,37 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.6.6
+revision=1
+build_style=cargo
+build_helper=qemu
+# skip problematic tests
+make_check_args="--
+ --skip lock::tests::locked_config_clean
+ --skip lock::tests::source_lock_git_git_with_checkout
+ --skip lock_and_source_github_git"
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/${version}.tar.gz"
+checksum=9d6cdc8fe011c4defe65fbe1507e48a51f8efdeebb5d5b0b39fbde2c73566973
+
+post_build() {
+	SHELDON=target/${RUST_TARGET}/release/sheldon
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash zsh; do
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
@ 2022-08-05 18:18 ` tranzystorek-io
  2022-08-13  6:51 ` tranzystorek-io
                   ` (22 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-08-05 18:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 85aff1d28eb3b5b888affa3d8c13087b1a50896f Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.6.6

---
 ...l-when-building-outside-git-repo-139.patch | 41 ++++++++++++++
 srcpkgs/sheldon/patches/0002-Fix-tests.patch  | 56 +++++++++++++++++++
 srcpkgs/sheldon/template                      | 38 +++++++++++++
 3 files changed, 135 insertions(+)
 create mode 100644 srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
 create mode 100644 srcpkgs/sheldon/patches/0002-Fix-tests.patch
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
new file mode 100644
index 000000000000..9674370eb425
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
@@ -0,0 +1,41 @@
+From e2f2d86544804e656710834d359d277c07e3f232 Mon Sep 17 00:00:00 2001
+From: Marcin Puc <5671049+tranzystorek-io@users.noreply.github.com>
+Date: Wed, 16 Mar 2022 07:15:48 +0100
+Subject: [PATCH] Fix build fail when building outside git repo (#139)
+
+---
+ tests/lib.rs | 15 ++++++++++++---
+ 1 file changed, 12 insertions(+), 3 deletions(-)
+
+diff --git a/tests/lib.rs b/tests/lib.rs
+index 2f95b04..59f23d8 100644
+--- a/tests/lib.rs
++++ b/tests/lib.rs
+@@ -663,12 +663,21 @@ fn dirs_xdg_from_env() -> io::Result<()> {
+ #[test]
+ fn version() -> io::Result<()> {
+     let dirs = Directories::default()?;
++
++    let maybe_commit_hash = option_env!("GIT_COMMIT_SHORT_HASH");
++    let maybe_commit_date = option_env!("GIT_COMMIT_DATE");
++    let commit_info =
++        if let (Some(commit_hash), Some(commit_date)) = (maybe_commit_hash, maybe_commit_date) {
++            format!(" ({} {})", commit_hash, commit_date)
++        } else {
++            "".to_string()
++        };
++
+     let expected = format!(
+-        "{} {} ({} {})\n{}\n",
++        "{} {}{}\n{}\n",
+         env!("CARGO_PKG_NAME"),
+         env!("CARGO_PKG_VERSION"),
+-        env!("GIT_COMMIT_SHORT_HASH"),
+-        env!("GIT_COMMIT_DATE"),
++        commit_info,
+         env!("RUSTC_VERSION_SUMMARY")
+     );
+     TestCommand::new(&dirs)
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/patches/0002-Fix-tests.patch b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
new file mode 100644
index 000000000000..416229bd3438
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
@@ -0,0 +1,56 @@
+From 9aa06fdd5cb284daae8c48648d614e3823f3f9f3 Mon Sep 17 00:00:00 2001
+From: Ross MacArthur <ross@macarthur.io>
+Date: Sat, 29 Jan 2022 22:02:39 +0200
+Subject: [PATCH] Fix tests
+
+---
+ src/cli.rs                           | 13 ++++++++++++-
+ src/testdata/cli/raw_opt_help.golden |  2 +-
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/src/cli.rs b/src/cli.rs
+index 23c644e..18300fa 100644
+--- a/src/cli.rs
++++ b/src/cli.rs
+@@ -503,6 +503,7 @@ mod tests {
+     use std::iter;
+ 
+     use pretty_assertions::assert_eq;
++    use serde::Serialize;
+ 
+     fn setup() {
+         for (k, _) in env::vars() {
+@@ -548,9 +549,19 @@ mod tests {
+     #[test]
+     fn raw_opt_help() {
+         setup();
++
++        #[derive(Serialize)]
++        struct Context {
++            version: &'static str,
++        }
++
++        let ctx = Context {
++            version: build::CRATE_RELEASE,
++        };
++
+         for opt in &["-h", "--help"] {
+             let err = raw_opt_err(&[opt]);
+-            goldie::assert!(err.to_string());
++            goldie::assert_template!(&ctx, err.to_string());
+             assert_eq!(err.kind, clap::ErrorKind::DisplayHelp);
+         }
+     }
+diff --git a/src/testdata/cli/raw_opt_help.golden b/src/testdata/cli/raw_opt_help.golden
+index 93c47ce..4b6b19d 100644
+--- a/src/testdata/cli/raw_opt_help.golden
++++ b/src/testdata/cli/raw_opt_help.golden
+@@ -1,4 +1,4 @@
+-sheldon 0.6.5
++sheldon {version}
+ Ross MacArthur <ross@macarthur.io>
+ Fast, configurable, shell plugin manager.
+ 
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..37202da414eb
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,38 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.6.6
+revision=1
+build_style=cargo
+build_helper=qemu
+# skip problematic tests
+make_check_args="--
+ --skip lock::tests::locked_config_clean
+ --skip lock::tests::source_lock_git_git_with_checkout
+ --skip lock_and_source_clean_permission_denied
+ --skip lock_and_source_github_git"
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/${version}.tar.gz"
+checksum=9d6cdc8fe011c4defe65fbe1507e48a51f8efdeebb5d5b0b39fbde2c73566973
+
+post_build() {
+	SHELDON=target/${RUST_TARGET}/release/sheldon
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash zsh; do
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
  2022-08-05 18:18 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2022-08-13  6:51 ` tranzystorek-io
  2022-08-24 10:35 ` tranzystorek-io
                   ` (21 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-08-13  6:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 4ee64d7293ea163ea781bd993076ae960a639b2d Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.6.6

---
 ...l-when-building-outside-git-repo-139.patch | 41 ++++++++++++++
 srcpkgs/sheldon/patches/0002-Fix-tests.patch  | 56 +++++++++++++++++++
 srcpkgs/sheldon/template                      | 38 +++++++++++++
 3 files changed, 135 insertions(+)
 create mode 100644 srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
 create mode 100644 srcpkgs/sheldon/patches/0002-Fix-tests.patch
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
new file mode 100644
index 000000000000..9674370eb425
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
@@ -0,0 +1,41 @@
+From e2f2d86544804e656710834d359d277c07e3f232 Mon Sep 17 00:00:00 2001
+From: Marcin Puc <5671049+tranzystorek-io@users.noreply.github.com>
+Date: Wed, 16 Mar 2022 07:15:48 +0100
+Subject: [PATCH] Fix build fail when building outside git repo (#139)
+
+---
+ tests/lib.rs | 15 ++++++++++++---
+ 1 file changed, 12 insertions(+), 3 deletions(-)
+
+diff --git a/tests/lib.rs b/tests/lib.rs
+index 2f95b04..59f23d8 100644
+--- a/tests/lib.rs
++++ b/tests/lib.rs
+@@ -663,12 +663,21 @@ fn dirs_xdg_from_env() -> io::Result<()> {
+ #[test]
+ fn version() -> io::Result<()> {
+     let dirs = Directories::default()?;
++
++    let maybe_commit_hash = option_env!("GIT_COMMIT_SHORT_HASH");
++    let maybe_commit_date = option_env!("GIT_COMMIT_DATE");
++    let commit_info =
++        if let (Some(commit_hash), Some(commit_date)) = (maybe_commit_hash, maybe_commit_date) {
++            format!(" ({} {})", commit_hash, commit_date)
++        } else {
++            "".to_string()
++        };
++
+     let expected = format!(
+-        "{} {} ({} {})\n{}\n",
++        "{} {}{}\n{}\n",
+         env!("CARGO_PKG_NAME"),
+         env!("CARGO_PKG_VERSION"),
+-        env!("GIT_COMMIT_SHORT_HASH"),
+-        env!("GIT_COMMIT_DATE"),
++        commit_info,
+         env!("RUSTC_VERSION_SUMMARY")
+     );
+     TestCommand::new(&dirs)
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/patches/0002-Fix-tests.patch b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
new file mode 100644
index 000000000000..416229bd3438
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
@@ -0,0 +1,56 @@
+From 9aa06fdd5cb284daae8c48648d614e3823f3f9f3 Mon Sep 17 00:00:00 2001
+From: Ross MacArthur <ross@macarthur.io>
+Date: Sat, 29 Jan 2022 22:02:39 +0200
+Subject: [PATCH] Fix tests
+
+---
+ src/cli.rs                           | 13 ++++++++++++-
+ src/testdata/cli/raw_opt_help.golden |  2 +-
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/src/cli.rs b/src/cli.rs
+index 23c644e..18300fa 100644
+--- a/src/cli.rs
++++ b/src/cli.rs
+@@ -503,6 +503,7 @@ mod tests {
+     use std::iter;
+ 
+     use pretty_assertions::assert_eq;
++    use serde::Serialize;
+ 
+     fn setup() {
+         for (k, _) in env::vars() {
+@@ -548,9 +549,19 @@ mod tests {
+     #[test]
+     fn raw_opt_help() {
+         setup();
++
++        #[derive(Serialize)]
++        struct Context {
++            version: &'static str,
++        }
++
++        let ctx = Context {
++            version: build::CRATE_RELEASE,
++        };
++
+         for opt in &["-h", "--help"] {
+             let err = raw_opt_err(&[opt]);
+-            goldie::assert!(err.to_string());
++            goldie::assert_template!(&ctx, err.to_string());
+             assert_eq!(err.kind, clap::ErrorKind::DisplayHelp);
+         }
+     }
+diff --git a/src/testdata/cli/raw_opt_help.golden b/src/testdata/cli/raw_opt_help.golden
+index 93c47ce..4b6b19d 100644
+--- a/src/testdata/cli/raw_opt_help.golden
++++ b/src/testdata/cli/raw_opt_help.golden
+@@ -1,4 +1,4 @@
+-sheldon 0.6.5
++sheldon {version}
+ Ross MacArthur <ross@macarthur.io>
+ Fast, configurable, shell plugin manager.
+ 
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..37202da414eb
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,38 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.6.6
+revision=1
+build_style=cargo
+build_helper=qemu
+# skip problematic tests
+make_check_args="--
+ --skip lock::tests::locked_config_clean
+ --skip lock::tests::source_lock_git_git_with_checkout
+ --skip lock_and_source_clean_permission_denied
+ --skip lock_and_source_github_git"
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/${version}.tar.gz"
+checksum=9d6cdc8fe011c4defe65fbe1507e48a51f8efdeebb5d5b0b39fbde2c73566973
+
+post_build() {
+	SHELDON=target/${RUST_TARGET}/release/sheldon
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash zsh; do
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
  2022-08-05 18:18 ` [PR PATCH] [Updated] " tranzystorek-io
  2022-08-13  6:51 ` tranzystorek-io
@ 2022-08-24 10:35 ` tranzystorek-io
  2022-08-24 22:38 ` tranzystorek-io
                   ` (20 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-08-24 10:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e9bbb1a0a886030342e74493a0d7c1bfc4408c4e Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.6.6

---
 ...l-when-building-outside-git-repo-139.patch | 41 ++++++++++++++
 srcpkgs/sheldon/patches/0002-Fix-tests.patch  | 56 +++++++++++++++++++
 srcpkgs/sheldon/template                      | 38 +++++++++++++
 3 files changed, 135 insertions(+)
 create mode 100644 srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
 create mode 100644 srcpkgs/sheldon/patches/0002-Fix-tests.patch
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
new file mode 100644
index 000000000000..9674370eb425
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
@@ -0,0 +1,41 @@
+From e2f2d86544804e656710834d359d277c07e3f232 Mon Sep 17 00:00:00 2001
+From: Marcin Puc <5671049+tranzystorek-io@users.noreply.github.com>
+Date: Wed, 16 Mar 2022 07:15:48 +0100
+Subject: [PATCH] Fix build fail when building outside git repo (#139)
+
+---
+ tests/lib.rs | 15 ++++++++++++---
+ 1 file changed, 12 insertions(+), 3 deletions(-)
+
+diff --git a/tests/lib.rs b/tests/lib.rs
+index 2f95b04..59f23d8 100644
+--- a/tests/lib.rs
++++ b/tests/lib.rs
+@@ -663,12 +663,21 @@ fn dirs_xdg_from_env() -> io::Result<()> {
+ #[test]
+ fn version() -> io::Result<()> {
+     let dirs = Directories::default()?;
++
++    let maybe_commit_hash = option_env!("GIT_COMMIT_SHORT_HASH");
++    let maybe_commit_date = option_env!("GIT_COMMIT_DATE");
++    let commit_info =
++        if let (Some(commit_hash), Some(commit_date)) = (maybe_commit_hash, maybe_commit_date) {
++            format!(" ({} {})", commit_hash, commit_date)
++        } else {
++            "".to_string()
++        };
++
+     let expected = format!(
+-        "{} {} ({} {})\n{}\n",
++        "{} {}{}\n{}\n",
+         env!("CARGO_PKG_NAME"),
+         env!("CARGO_PKG_VERSION"),
+-        env!("GIT_COMMIT_SHORT_HASH"),
+-        env!("GIT_COMMIT_DATE"),
++        commit_info,
+         env!("RUSTC_VERSION_SUMMARY")
+     );
+     TestCommand::new(&dirs)
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/patches/0002-Fix-tests.patch b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
new file mode 100644
index 000000000000..416229bd3438
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
@@ -0,0 +1,56 @@
+From 9aa06fdd5cb284daae8c48648d614e3823f3f9f3 Mon Sep 17 00:00:00 2001
+From: Ross MacArthur <ross@macarthur.io>
+Date: Sat, 29 Jan 2022 22:02:39 +0200
+Subject: [PATCH] Fix tests
+
+---
+ src/cli.rs                           | 13 ++++++++++++-
+ src/testdata/cli/raw_opt_help.golden |  2 +-
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/src/cli.rs b/src/cli.rs
+index 23c644e..18300fa 100644
+--- a/src/cli.rs
++++ b/src/cli.rs
+@@ -503,6 +503,7 @@ mod tests {
+     use std::iter;
+ 
+     use pretty_assertions::assert_eq;
++    use serde::Serialize;
+ 
+     fn setup() {
+         for (k, _) in env::vars() {
+@@ -548,9 +549,19 @@ mod tests {
+     #[test]
+     fn raw_opt_help() {
+         setup();
++
++        #[derive(Serialize)]
++        struct Context {
++            version: &'static str,
++        }
++
++        let ctx = Context {
++            version: build::CRATE_RELEASE,
++        };
++
+         for opt in &["-h", "--help"] {
+             let err = raw_opt_err(&[opt]);
+-            goldie::assert!(err.to_string());
++            goldie::assert_template!(&ctx, err.to_string());
+             assert_eq!(err.kind, clap::ErrorKind::DisplayHelp);
+         }
+     }
+diff --git a/src/testdata/cli/raw_opt_help.golden b/src/testdata/cli/raw_opt_help.golden
+index 93c47ce..4b6b19d 100644
+--- a/src/testdata/cli/raw_opt_help.golden
++++ b/src/testdata/cli/raw_opt_help.golden
+@@ -1,4 +1,4 @@
+-sheldon 0.6.5
++sheldon {version}
+ Ross MacArthur <ross@macarthur.io>
+ Fast, configurable, shell plugin manager.
+ 
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..37202da414eb
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,38 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.6.6
+revision=1
+build_style=cargo
+build_helper=qemu
+# skip problematic tests
+make_check_args="--
+ --skip lock::tests::locked_config_clean
+ --skip lock::tests::source_lock_git_git_with_checkout
+ --skip lock_and_source_clean_permission_denied
+ --skip lock_and_source_github_git"
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/${version}.tar.gz"
+checksum=9d6cdc8fe011c4defe65fbe1507e48a51f8efdeebb5d5b0b39fbde2c73566973
+
+post_build() {
+	SHELDON=target/${RUST_TARGET}/release/sheldon
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash zsh; do
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (2 preceding siblings ...)
  2022-08-24 10:35 ` tranzystorek-io
@ 2022-08-24 22:38 ` tranzystorek-io
  2022-09-04 11:56 ` jcgruenhage
                   ` (19 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-08-24 22:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 93966464d3c9640a94d476a06015b58d8b0bb3fb Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.6.6

---
 ...l-when-building-outside-git-repo-139.patch | 41 ++++++++++++++
 srcpkgs/sheldon/patches/0002-Fix-tests.patch  | 56 +++++++++++++++++++
 srcpkgs/sheldon/template                      | 38 +++++++++++++
 3 files changed, 135 insertions(+)
 create mode 100644 srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
 create mode 100644 srcpkgs/sheldon/patches/0002-Fix-tests.patch
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
new file mode 100644
index 000000000000..9674370eb425
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0001-Fix-build-fail-when-building-outside-git-repo-139.patch
@@ -0,0 +1,41 @@
+From e2f2d86544804e656710834d359d277c07e3f232 Mon Sep 17 00:00:00 2001
+From: Marcin Puc <5671049+tranzystorek-io@users.noreply.github.com>
+Date: Wed, 16 Mar 2022 07:15:48 +0100
+Subject: [PATCH] Fix build fail when building outside git repo (#139)
+
+---
+ tests/lib.rs | 15 ++++++++++++---
+ 1 file changed, 12 insertions(+), 3 deletions(-)
+
+diff --git a/tests/lib.rs b/tests/lib.rs
+index 2f95b04..59f23d8 100644
+--- a/tests/lib.rs
++++ b/tests/lib.rs
+@@ -663,12 +663,21 @@ fn dirs_xdg_from_env() -> io::Result<()> {
+ #[test]
+ fn version() -> io::Result<()> {
+     let dirs = Directories::default()?;
++
++    let maybe_commit_hash = option_env!("GIT_COMMIT_SHORT_HASH");
++    let maybe_commit_date = option_env!("GIT_COMMIT_DATE");
++    let commit_info =
++        if let (Some(commit_hash), Some(commit_date)) = (maybe_commit_hash, maybe_commit_date) {
++            format!(" ({} {})", commit_hash, commit_date)
++        } else {
++            "".to_string()
++        };
++
+     let expected = format!(
+-        "{} {} ({} {})\n{}\n",
++        "{} {}{}\n{}\n",
+         env!("CARGO_PKG_NAME"),
+         env!("CARGO_PKG_VERSION"),
+-        env!("GIT_COMMIT_SHORT_HASH"),
+-        env!("GIT_COMMIT_DATE"),
++        commit_info,
+         env!("RUSTC_VERSION_SUMMARY")
+     );
+     TestCommand::new(&dirs)
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/patches/0002-Fix-tests.patch b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
new file mode 100644
index 000000000000..416229bd3438
--- /dev/null
+++ b/srcpkgs/sheldon/patches/0002-Fix-tests.patch
@@ -0,0 +1,56 @@
+From 9aa06fdd5cb284daae8c48648d614e3823f3f9f3 Mon Sep 17 00:00:00 2001
+From: Ross MacArthur <ross@macarthur.io>
+Date: Sat, 29 Jan 2022 22:02:39 +0200
+Subject: [PATCH] Fix tests
+
+---
+ src/cli.rs                           | 13 ++++++++++++-
+ src/testdata/cli/raw_opt_help.golden |  2 +-
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/src/cli.rs b/src/cli.rs
+index 23c644e..18300fa 100644
+--- a/src/cli.rs
++++ b/src/cli.rs
+@@ -503,6 +503,7 @@ mod tests {
+     use std::iter;
+ 
+     use pretty_assertions::assert_eq;
++    use serde::Serialize;
+ 
+     fn setup() {
+         for (k, _) in env::vars() {
+@@ -548,9 +549,19 @@ mod tests {
+     #[test]
+     fn raw_opt_help() {
+         setup();
++
++        #[derive(Serialize)]
++        struct Context {
++            version: &'static str,
++        }
++
++        let ctx = Context {
++            version: build::CRATE_RELEASE,
++        };
++
+         for opt in &["-h", "--help"] {
+             let err = raw_opt_err(&[opt]);
+-            goldie::assert!(err.to_string());
++            goldie::assert_template!(&ctx, err.to_string());
+             assert_eq!(err.kind, clap::ErrorKind::DisplayHelp);
+         }
+     }
+diff --git a/src/testdata/cli/raw_opt_help.golden b/src/testdata/cli/raw_opt_help.golden
+index 93c47ce..4b6b19d 100644
+--- a/src/testdata/cli/raw_opt_help.golden
++++ b/src/testdata/cli/raw_opt_help.golden
+@@ -1,4 +1,4 @@
+-sheldon 0.6.5
++sheldon {version}
+ Ross MacArthur <ross@macarthur.io>
+ Fast, configurable, shell plugin manager.
+ 
+-- 
+2.35.1
+
diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..37202da414eb
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,38 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.6.6
+revision=1
+build_style=cargo
+build_helper=qemu
+# skip problematic tests
+make_check_args="--
+ --skip lock::tests::locked_config_clean
+ --skip lock::tests::source_lock_git_git_with_checkout
+ --skip lock_and_source_clean_permission_denied
+ --skip lock_and_source_github_git"
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/${version}.tar.gz"
+checksum=9d6cdc8fe011c4defe65fbe1507e48a51f8efdeebb5d5b0b39fbde2c73566973
+
+post_build() {
+	SHELDON=target/${RUST_TARGET}/release/sheldon
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash zsh; do
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (3 preceding siblings ...)
  2022-08-24 22:38 ` tranzystorek-io
@ 2022-09-04 11:56 ` jcgruenhage
  2022-09-04 11:59 ` tranzystorek-io
                   ` (18 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: jcgruenhage @ 2022-09-04 11:56 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1236321250

Comment:
I've looked into using it myself, and after looking at the code, I'm really not sure anymore. The config loading and CLI arg evaluation is very complex, more than it needs to be IMO, and it doesn't properly follow the XDG base dir spec. For that latter part, I've submitted a WIP patch upstream (see https://github.com/rossmacarthur/sheldon/pull/149), but properly fixing that is going to take a bit more time which I'm not sure I want to invest.

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

* Re: New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (4 preceding siblings ...)
  2022-09-04 11:56 ` jcgruenhage
@ 2022-09-04 11:59 ` tranzystorek-io
  2022-09-04 21:53 ` jcgruenhage
                   ` (17 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-09-04 11:59 UTC (permalink / raw)
  To: ml

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

New comment by tranzystorek-io on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1236321710

Comment:
@jcgruenhage yeah, I'm aware of the codebase, but for what it's worth, my minimal zsh plugin + completion path config works pretty well on sheldon, the least cumbersome of all the plugin managers I've used, like omz or even zplug.

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

* Re: New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (5 preceding siblings ...)
  2022-09-04 11:59 ` tranzystorek-io
@ 2022-09-04 21:53 ` jcgruenhage
  2022-09-04 21:55 ` jcgruenhage
                   ` (16 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: jcgruenhage @ 2022-09-04 21:53 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1236421738

Comment:
Yeah, fair enough.. I've nerdsniped myself enough into fixing at least the XDG spec parts that I'd still want to use it if it lands in void, so yeah, would be happy to see this merged. Maybe with the XDG basedir spec patch merged into this PR as well, once it landed upstream, depending on how long they take to release 0.7.0?

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

* Re: New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (6 preceding siblings ...)
  2022-09-04 21:53 ` jcgruenhage
@ 2022-09-04 21:55 ` jcgruenhage
  2022-10-13 14:15 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (15 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: jcgruenhage @ 2022-09-04 21:55 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1236422016

Comment:
Or well, fixing is maybe not the right word, it's not like the code upstream is broken, it's just more complex than it needs to be IMO. Being opinionated and not giving the user the option to configure the location of every single file individually through multiple means, would be a bit better here.

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.6.6
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (7 preceding siblings ...)
  2022-09-04 21:55 ` jcgruenhage
@ 2022-10-13 14:15 ` tranzystorek-io
  2022-10-13 14:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.0 tranzystorek-io
                   ` (14 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-10-13 14:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.6.6
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 1ccaad1774a1e3ce840cc231c34fd06a7bf7e3c6 Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.7.0

---
 srcpkgs/sheldon/template | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..76cbd6a3e05f
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,27 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.0
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=e9ae7e8f0ac9dbb024dd2aaf8a2f5fa9167bc81262787d7edcafcc0fd300c008
+
+post_install() {
+	SHELDON="${DESTDIR}/usr/bin/sheldon"
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.0
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (8 preceding siblings ...)
  2022-10-13 14:15 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2022-10-13 14:39 ` tranzystorek-io
  2022-10-13 15:10 ` tranzystorek-io
                   ` (13 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-10-13 14:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 15e75556d342bcdaa89ffec61277427d45a73291 Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.7.0

---
 srcpkgs/sheldon/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..727df5e4e72d
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,31 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.0
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=e9ae7e8f0ac9dbb024dd2aaf8a2f5fa9167bc81262787d7edcafcc0fd300c008
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	SHELDON="${DESTDIR}/usr/bin/sheldon"
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: New package: sheldon-0.7.0
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (9 preceding siblings ...)
  2022-10-13 14:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.0 tranzystorek-io
@ 2022-10-13 15:10 ` tranzystorek-io
  2022-10-13 18:21 ` jcgruenhage
                   ` (12 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-10-13 15:10 UTC (permalink / raw)
  To: ml

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

New comment by tranzystorek-io on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1277774008

Comment:
@jcgruenhage seems your changes just landed in upstream 🎉

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

* Re: New package: sheldon-0.7.0
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (10 preceding siblings ...)
  2022-10-13 15:10 ` tranzystorek-io
@ 2022-10-13 18:21 ` jcgruenhage
  2022-11-02  8:47 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (11 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: jcgruenhage @ 2022-10-13 18:21 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1278003758

Comment:
yeah well not really, my PR is still open. Something similar has been merged though.

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.0
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (11 preceding siblings ...)
  2022-10-13 18:21 ` jcgruenhage
@ 2022-11-02  8:47 ` tranzystorek-io
  2023-02-01  2:07 ` New package: sheldon-0.7.1 github-actions
                   ` (10 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-11-02  8:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From c52a0090a25b2bbda81cc1e84a4af308b5fc0f27 Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..95faba88d259
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,31 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	SHELDON="${DESTDIR}/usr/bin/sheldon"
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (12 preceding siblings ...)
  2022-11-02  8:47 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2023-02-01  2:07 ` github-actions
  2023-02-01 15:22 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (9 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: github-actions @ 2023-02-01  2:07 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/38488#issuecomment-1411343537

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (13 preceding siblings ...)
  2023-02-01  2:07 ` New package: sheldon-0.7.1 github-actions
@ 2023-02-01 15:22 ` tranzystorek-io
  2023-02-26 16:56 ` tranzystorek-io
                   ` (8 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-02-01 15:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 172a663276e16dcc1168ec6fd8023e8834fabecd Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..95faba88d259
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,31 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	SHELDON="${DESTDIR}/usr/bin/sheldon"
+	for shell in bash zsh; do
+		vtargetrun ${SHELDON} completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (14 preceding siblings ...)
  2023-02-01 15:22 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2023-02-26 16:56 ` tranzystorek-io
  2023-02-26 19:33 ` tranzystorek-io
                   ` (7 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-02-26 16:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 316e469707df92af453b26742fb13ef853f09d76 Mon Sep 17 00:00:00 2001
From: Marcin Puc <marcin.e.puc@gmail.com>
Date: Tue, 15 Mar 2022 13:25:42 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..d3cd0551df3b
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (15 preceding siblings ...)
  2023-02-26 16:56 ` tranzystorek-io
@ 2023-02-26 19:33 ` tranzystorek-io
  2023-03-05 13:13 ` jcgruenhage
                   ` (6 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-02-26 19:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 5f16bda5a2d62306f08376be229c9274315979c3 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..d3cd0551df3b
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (16 preceding siblings ...)
  2023-02-26 19:33 ` tranzystorek-io
@ 2023-03-05 13:13 ` jcgruenhage
  2023-04-02  9:36 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (5 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: jcgruenhage @ 2023-03-05 13:13 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/38488#issuecomment-1455088722

Comment:
I've been using this for a while now and would like to get it merged at some point. Any opinions on this? The feedback on here has been fairly scarce.

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (17 preceding siblings ...)
  2023-03-05 13:13 ` jcgruenhage
@ 2023-04-02  9:36 ` tranzystorek-io
  2023-04-21  9:15 ` tranzystorek-io
                   ` (4 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-04-02  9:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 555ee666441f73ab237d01cc51afcb78ff5bb905 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..d3cd0551df3b
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (18 preceding siblings ...)
  2023-04-02  9:36 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2023-04-21  9:15 ` tranzystorek-io
  2023-05-14  7:17 ` tranzystorek-io
                   ` (3 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-04-21  9:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 61d0f2486ef8273e5dc082394c9aea9572e78f56 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.1

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..d3cd0551df3b
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.1
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=22357b913483232623b8729820e157d826fd94a487a731b372dbdca1138ddf20
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.1
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (19 preceding siblings ...)
  2023-04-21  9:15 ` tranzystorek-io
@ 2023-05-14  7:17 ` tranzystorek-io
  2023-05-16 18:03 ` [PR PATCH] [Updated] New package: sheldon-0.7.2 tranzystorek-io
                   ` (2 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-05-14  7:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.1
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From f1a32bb09dc466ea0bfb50d3ef9a4f53816473a7 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.2

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..1c92d5f66808
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.2
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=8ce4b93376f4365e436d04b2ac5aaf18d1b90285f7d833901e7a78c32f6200db
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.2
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (20 preceding siblings ...)
  2023-05-14  7:17 ` tranzystorek-io
@ 2023-05-16 18:03 ` tranzystorek-io
  2023-06-09 22:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.3 tranzystorek-io
  2023-06-24 12:14 ` [PR PATCH] [Merged]: " Duncaen
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-05-16 18:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From cda04408bfe4ed31bcb3a4a9fb56db956bbac32c Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.3

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..ba1d1ca71a44
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.3
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=cf8844dce853156d076a6956733420ad7a9365e16a928e419b11de8bc634fc67
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Updated] New package: sheldon-0.7.3
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (21 preceding siblings ...)
  2023-05-16 18:03 ` [PR PATCH] [Updated] New package: sheldon-0.7.2 tranzystorek-io
@ 2023-06-09 22:39 ` tranzystorek-io
  2023-06-24 12:14 ` [PR PATCH] [Merged]: " Duncaen
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2023-06-09 22:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages sheldon
https://github.com/void-linux/void-packages/pull/38488

New package: sheldon-0.7.3
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From d58b07148405f362bbd2fda26d5f5d6d43404f9d Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Sun, 26 Feb 2023 20:32:45 +0100
Subject: [PATCH] New package: sheldon-0.7.3

---
 srcpkgs/sheldon/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/sheldon/template

diff --git a/srcpkgs/sheldon/template b/srcpkgs/sheldon/template
new file mode 100644
index 000000000000..ba1d1ca71a44
--- /dev/null
+++ b/srcpkgs/sheldon/template
@@ -0,0 +1,30 @@
+# Template file for 'sheldon'
+pkgname=sheldon
+version=0.7.3
+revision=1
+build_style=cargo
+build_helper=qemu
+hostmakedepends="pkg-config"
+makedepends="libcurl-devel openssl-devel zlib-devel"
+checkdepends="git"
+short_desc="Fast, configurable shell plugin manager"
+maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://sheldon.cli.rs/"
+changelog="https://raw.githubusercontent.com/rossmacarthur/sheldon/trunk/RELEASES.md"
+distfiles="https://github.com/rossmacarthur/sheldon/archive/refs/tags/${version}.tar.gz"
+checksum=cf8844dce853156d076a6956733420ad7a9365e16a928e419b11de8bc634fc67
+
+if [ "$XBPS_BUILD_ENVIRONMENT" == "void-packages-ci" ]; then
+	make_check_args="-- --skip lock_and_source_clean_permission_denied"
+fi
+
+post_install() {
+	for shell in bash zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/sheldon completions --shell ${shell} > sheldon.${shell}
+		vcompletion sheldon.${shell} ${shell}
+	done
+
+	vlicense LICENSE-MIT
+	vdoc README.md
+}

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

* Re: [PR PATCH] [Merged]: New package: sheldon-0.7.3
  2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
                   ` (22 preceding siblings ...)
  2023-06-09 22:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.3 tranzystorek-io
@ 2023-06-24 12:14 ` Duncaen
  23 siblings, 0 replies; 25+ messages in thread
From: Duncaen @ 2023-06-24 12:14 UTC (permalink / raw)
  To: ml

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

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

New package: sheldon-0.7.3
https://github.com/void-linux/void-packages/pull/38488

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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-06-24 12:14 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-05 18:03 [PR PATCH] New package: sheldon-0.6.6 tranzystorek-io
2022-08-05 18:18 ` [PR PATCH] [Updated] " tranzystorek-io
2022-08-13  6:51 ` tranzystorek-io
2022-08-24 10:35 ` tranzystorek-io
2022-08-24 22:38 ` tranzystorek-io
2022-09-04 11:56 ` jcgruenhage
2022-09-04 11:59 ` tranzystorek-io
2022-09-04 21:53 ` jcgruenhage
2022-09-04 21:55 ` jcgruenhage
2022-10-13 14:15 ` [PR PATCH] [Updated] " tranzystorek-io
2022-10-13 14:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.0 tranzystorek-io
2022-10-13 15:10 ` tranzystorek-io
2022-10-13 18:21 ` jcgruenhage
2022-11-02  8:47 ` [PR PATCH] [Updated] " tranzystorek-io
2023-02-01  2:07 ` New package: sheldon-0.7.1 github-actions
2023-02-01 15:22 ` [PR PATCH] [Updated] " tranzystorek-io
2023-02-26 16:56 ` tranzystorek-io
2023-02-26 19:33 ` tranzystorek-io
2023-03-05 13:13 ` jcgruenhage
2023-04-02  9:36 ` [PR PATCH] [Updated] " tranzystorek-io
2023-04-21  9:15 ` tranzystorek-io
2023-05-14  7:17 ` tranzystorek-io
2023-05-16 18:03 ` [PR PATCH] [Updated] New package: sheldon-0.7.2 tranzystorek-io
2023-06-09 22:39 ` [PR PATCH] [Updated] New package: sheldon-0.7.3 tranzystorek-io
2023-06-24 12:14 ` [PR PATCH] [Merged]: " Duncaen

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