Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: minijinja-cli-1.0.12
@ 2024-01-23  9:35 jcgruenhage
  2024-01-23 10:19 ` [PR REVIEW] " tranzystorekk
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-23  9:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages minijinja-cli-1.0.12_1
https://github.com/void-linux/void-packages/pull/48336

New package: minijinja-cli-1.0.12
#### 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** (compiled)

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-minijinja-cli-1.0.12_1-48336.patch --]
[-- Type: text/x-diff, Size: 1201 bytes --]

From 13ac076a282345a9af5fb594f2b49e74d665540f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Tue, 23 Jan 2024 10:33:50 +0100
Subject: [PATCH] New package: minijinja-cli-1.0.12

---
 srcpkgs/minijinja-cli/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/minijinja-cli/template

diff --git a/srcpkgs/minijinja-cli/template b/srcpkgs/minijinja-cli/template
new file mode 100644
index 0000000000000..56b392f01e094
--- /dev/null
+++ b/srcpkgs/minijinja-cli/template
@@ -0,0 +1,13 @@
+# Template file for 'minijinja-cli'
+pkgname=minijinja-cli
+version=1.0.12
+revision=1
+build_wrksrc=minijinja-cli
+build_style=cargo
+short_desc="CLI tool that uses MiniJinja to render Jinja2 from CLI"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="Apache-2.0"
+homepage="https://github.com/mitsuhiko/minijinja/blob/main/minijinja-cli/README.md"
+changelog="https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md"
+distfiles="https://github.com/mitsuhiko/minijinja/archive/refs/tags/${version}.tar.gz"
+checksum=855f646f4afb4d2467f6118bb164c54f26ce7c26af07f740e2b1fb3f012cd0e8

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
@ 2024-01-23 10:19 ` tranzystorekk
  2024-01-23 10:20 ` tranzystorekk
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tranzystorekk @ 2024-01-23 10:19 UTC (permalink / raw)
  To: ml

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

New review comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1463042128

Comment:
I tested out that we can instead use

```
configure_args="--workspace --exclude minijinja-py"
make_install_args="--path minijinja-cli"
```

to build/test the whole workspace except for the unused python bindings that require `python3-devel`, the only caveat being we then also need to reset `configure_args` in `post_install`.

Not sure if that would be preferable, but still thought I'd put it out here.

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
  2024-01-23 10:19 ` [PR REVIEW] " tranzystorekk
@ 2024-01-23 10:20 ` tranzystorekk
  2024-01-23 13:06 ` jcgruenhage
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tranzystorekk @ 2024-01-23 10:20 UTC (permalink / raw)
  To: ml

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

New review comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1463042128

Comment:
I tested out that we can instead use

```
configure_args="--workspace --exclude minijinja-py"
make_install_args="--path minijinja-cli"
```

to build/test the whole workspace except for the unused python bindings that require `python3-devel`, the only caveat being we then also need to reset `configure_args` in `pre_install`.

Not sure if that would be preferable, but still thought I'd put it out here.

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
  2024-01-23 10:19 ` [PR REVIEW] " tranzystorekk
  2024-01-23 10:20 ` tranzystorekk
@ 2024-01-23 13:06 ` jcgruenhage
  2024-01-23 13:56 ` tranzystorekk
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-23 13:06 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1463256874

Comment:
What is the benefit of that? That it's running more tests?

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (2 preceding siblings ...)
  2024-01-23 13:06 ` jcgruenhage
@ 2024-01-23 13:56 ` tranzystorekk
  2024-01-25 12:08 ` [PR PATCH] [Updated] " jcgruenhage
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tranzystorekk @ 2024-01-23 13:56 UTC (permalink / raw)
  To: ml

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

New review comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1463321009

Comment:
That comes to mind immediately. I decided to test because using build_wrksrc in this package felt strange, but ultimately if it works maybe no need to overengineer it :P

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

* Re: [PR PATCH] [Updated] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (3 preceding siblings ...)
  2024-01-23 13:56 ` tranzystorekk
@ 2024-01-25 12:08 ` jcgruenhage
  2024-01-25 12:14 ` [PR REVIEW] " jcgruenhage
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-25 12:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages minijinja-cli-1.0.12_1
https://github.com/void-linux/void-packages/pull/48336

New package: minijinja-cli-1.0.12
#### 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** (compiled)

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-minijinja-cli-1.0.12_1-48336.patch --]
[-- Type: text/x-diff, Size: 12971 bytes --]

From 5a803dd446d01746d01d7e7f7cabdf02389c50f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Tue, 23 Jan 2024 10:33:50 +0100
Subject: [PATCH] New package: minijinja-cli-1.0.12

---
 ...generating-completions-and-a-man-pag.patch | 294 ++++++++++++++++++
 srcpkgs/minijinja-cli/template                |  24 ++
 2 files changed, 318 insertions(+)
 create mode 100644 srcpkgs/minijinja-cli/patches/0001-Add-support-for-generating-completions-and-a-man-pag.patch
 create mode 100644 srcpkgs/minijinja-cli/template

diff --git a/srcpkgs/minijinja-cli/patches/0001-Add-support-for-generating-completions-and-a-man-pag.patch b/srcpkgs/minijinja-cli/patches/0001-Add-support-for-generating-completions-and-a-man-pag.patch
new file mode 100644
index 0000000000000..4b2de57776db4
--- /dev/null
+++ b/srcpkgs/minijinja-cli/patches/0001-Add-support-for-generating-completions-and-a-man-pag.patch
@@ -0,0 +1,294 @@
+From 2013e2f0753b41e0814e1655fb71beb74ce58803 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
+ <jan.christian@gruenhage.xyz>
+Date: Wed, 24 Jan 2024 15:12:25 +0100
+Subject: [PATCH] Add support for generating completions and a man page for
+ minijinja-cli
+
+---
+ Cargo.lock                | 49 +++++++++++++++++++++++++++++++++++++++
+ minijinja-cli/Cargo.toml  | 13 +++++++++++
+ minijinja-cli/build.rs    | 40 ++++++++++++++++++++++++++++++++
+ minijinja-cli/src/cli.rs  | 46 ++++++++++++++++++++++++++++++++++++
+ minijinja-cli/src/main.rs | 49 ++++-----------------------------------
+ 5 files changed, 152 insertions(+), 45 deletions(-)
+ create mode 100644 minijinja-cli/build.rs
+ create mode 100644 minijinja-cli/src/cli.rs
+
+diff --git a/Cargo.lock b/Cargo.lock
+index 762778d..d8d7c4e 100644
+--- a/Cargo.lock
++++ b/Cargo.lock
+@@ -626,12 +626,51 @@ dependencies = [
+  "clap_lex",
+ ]
+ 
++[[package]]
++name = "clap_complete"
++version = "4.4.9"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "df631ae429f6613fcd3a7c1adbdb65f637271e561b03680adaa6573015dfb106"
++dependencies = [
++ "clap",
++]
++
++[[package]]
++name = "clap_complete_fig"
++version = "4.4.2"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "87e571d70e22ec91d34e1c5317c8308035a2280d925167646bf094fc5de1737c"
++dependencies = [
++ "clap",
++ "clap_complete",
++]
++
++[[package]]
++name = "clap_complete_nushell"
++version = "4.4.2"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "948bf70d7e1f179635d3ef819ce8baa2d3074d0d57816ac37387cd6f9eed0c31"
++dependencies = [
++ "clap",
++ "clap_complete",
++]
++
+ [[package]]
+ name = "clap_lex"
+ version = "0.6.0"
+ source = "registry+https://github.com/rust-lang/crates.io-index"
+ checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
+ 
++[[package]]
++name = "clap_mangen"
++version = "0.2.17"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "4a7c2b01e5e779c19f46a94bbd398f33ae63b0f78c07108351fb4536845bb7fd"
++dependencies = [
++ "clap",
++ "roff",
++]
++
+ [[package]]
+ name = "clipboard-win"
+ version = "4.5.0"
+@@ -1887,6 +1926,10 @@ dependencies = [
+  "anyhow",
+  "ciborium",
+  "clap",
++ "clap_complete",
++ "clap_complete_fig",
++ "clap_complete_nushell",
++ "clap_mangen",
+  "dunce",
+  "minijinja",
+  "minijinja-contrib",
+@@ -2559,6 +2602,12 @@ dependencies = [
+  "minijinja",
+ ]
+ 
++[[package]]
++name = "roff"
++version = "0.2.1"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
++
+ [[package]]
+ name = "rustc-demangle"
+ version = "0.1.23"
+diff --git a/minijinja-cli/Cargo.toml b/minijinja-cli/Cargo.toml
+index 73580b3..870ec97 100644
+--- a/minijinja-cli/Cargo.toml
++++ b/minijinja-cli/Cargo.toml
+@@ -46,3 +46,16 @@ serde_json5 = { version = "0.1.0", optional = true }
+ serde_qs = { version = "0.12.0", optional = true }
+ serde_yaml = { version = "0.9.25", optional = true }
+ toml = { version = "0.7.6", optional = true }
++
++[build-dependencies]
++clap = { version = "4.3.21", default-features = false, features = [
++    "std",
++    "cargo",
++    "help",
++    "usage",
++    "error-context",
++] }
++clap_complete = "4"
++clap_complete_fig = "4"
++clap_complete_nushell = "4"
++clap_mangen = "0.2"
+diff --git a/minijinja-cli/build.rs b/minijinja-cli/build.rs
+new file mode 100644
+index 0000000..46dbe14
+--- /dev/null
++++ b/minijinja-cli/build.rs
+@@ -0,0 +1,40 @@
++use std::fs::create_dir_all;
++
++use clap::ValueEnum;
++use clap_complete::Shell;
++use clap_complete_fig::Fig;
++use clap_complete_nushell::Nushell;
++
++pub mod cli {
++    include!("src/cli.rs");
++}
++
++fn main() -> std::io::Result<()> {
++    println!("cargo:rerun-if-changed=build.rs");
++
++    let out_dir = match std::env::var_os("ASSET_OUT_DIR") {
++        Some(dir) => std::path::PathBuf::from(dir),
++        None => return Ok(()),
++    };
++
++    let mut cli = cli::make_command();
++
++    let man = clap_mangen::Man::new(cli.clone());
++    let mut man_buffer: Vec<u8> = Default::default();
++    man.render(&mut man_buffer)?;
++
++    let man_out_dir = out_dir.as_path().join("man");
++    create_dir_all(&man_out_dir)?;
++    std::fs::write(man_out_dir.join("minijinja-cli.1"), man_buffer)?;
++
++    let completions_out_dir = out_dir.as_path().join("completions");
++    create_dir_all(&completions_out_dir)?;
++
++    for shell in Shell::value_variants() {
++        clap_complete::generate_to(*shell, &mut cli, "minijinja-cli", &completions_out_dir)?;
++    }
++    clap_complete::generate_to(Nushell, &mut cli, "minijinja-cli", &completions_out_dir)?;
++    clap_complete::generate_to(Fig, &mut cli, "minijinja-cli", &completions_out_dir)?;
++
++    Ok(())
++}
+diff --git a/minijinja-cli/src/cli.rs b/minijinja-cli/src/cli.rs
+new file mode 100644
+index 0000000..b22fc38
+--- /dev/null
++++ b/minijinja-cli/src/cli.rs
+@@ -0,0 +1,46 @@
++use std::path::PathBuf;
++
++use clap::{arg, command, value_parser, ArgAction, Command};
++
++pub(super) fn make_command() -> Command {
++    command!()
++        .args([
++            arg!(-f --format <FORMAT> "the format of the input data")
++                .value_parser([
++                    "auto",
++                    "json",
++                    #[cfg(feature = "querystring")]
++                    "querystring",
++                    #[cfg(feature = "yaml")]
++                    "yaml",
++                    #[cfg(feature = "toml")]
++                    "toml",
++                    #[cfg(feature = "cbor")]
++                    "cbor",
++                ])
++                .default_value("auto"),
++            arg!(-a --autoescape <MODE> "reconfigures autoescape behavior")
++                .value_parser(["auto", "html", "json", "none"])
++                .default_value("auto"),
++            arg!(-D --define <EXPR> "defines an input variable (key=value)")
++                .action(ArgAction::Append),
++            arg!(--strict "disallow undefined variables in templates"),
++            arg!(--"no-include" "Disallow includes and extending"),
++            arg!(--"no-newline" "Do not output a newline"),
++            arg!(--env "Pass environment variables as ENV to the template"),
++            arg!(-E --expr <EXPR> "Evaluates an expression instead"),
++            arg!(--"expr-out" <MODE> "Sets the expression output mode")
++                .value_parser(["print", "json", "json-pretty", "status"])
++                .default_value("print")
++                .requires("expr"),
++            arg!(--fuel <AMOUNT> "configures the maximum fuel").value_parser(value_parser!(u64)),
++            arg!(--dump <KIND> "dump internals of a template").value_parser(["instructions", "ast", "tokens"]),
++            #[cfg(feature = "repl")]
++            arg!(--repl "starts the repl with the given data")
++                .conflicts_with_all(["expr", "template"]),
++            arg!(template: [TEMPLATE] "path to the input template").default_value("-"),
++            arg!(data: [DATA] "path to the data file").value_parser(value_parser!(PathBuf)),
++        ])
++        .about("minijinja-cli is a command line tool to render or evaluate jinja2 templates.")
++        .after_help("For more information see https://github.com/mitsuhiko/minijinja/tree/main/minijinja-cli/README.md")
++}
+diff --git a/minijinja-cli/src/main.rs b/minijinja-cli/src/main.rs
+index e4a8e81..109297a 100644
+--- a/minijinja-cli/src/main.rs
++++ b/minijinja-cli/src/main.rs
+@@ -5,7 +5,7 @@ use std::sync::Mutex;
+ use std::{fs, io};
+ 
+ use anyhow::{bail, Context, Error};
+-use clap::{arg, command, value_parser, ArgAction, ArgMatches, Command};
++use clap::ArgMatches;
+ use minijinja::machinery::{get_compiled_template, parse, tokenize, Instructions};
+ use minijinja::{
+     context, AutoEscape, Environment, Error as MError, ErrorKind, UndefinedBehavior, Value,
+@@ -14,6 +14,8 @@ use minijinja::{
+ #[cfg(feature = "repl")]
+ mod repl;
+ 
++mod cli;
++
+ const STDIN: &str = "-";
+ 
+ #[cfg(not(feature = "json5"))]
+@@ -179,51 +181,8 @@ fn create_env(
+     env
+ }
+ 
+-fn make_command() -> Command {
+-    command!()
+-        .args([
+-            arg!(-f --format <FORMAT> "the format of the input data")
+-                .value_parser([
+-                    "auto",
+-                    "json",
+-                    #[cfg(feature = "querystring")]
+-                    "querystring",
+-                    #[cfg(feature = "yaml")]
+-                    "yaml",
+-                    #[cfg(feature = "toml")]
+-                    "toml",
+-                    #[cfg(feature = "cbor")]
+-                    "cbor",
+-                ])
+-                .default_value("auto"),
+-            arg!(-a --autoescape <MODE> "reconfigures autoescape behavior")
+-                .value_parser(["auto", "html", "json", "none"])
+-                .default_value("auto"),
+-            arg!(-D --define <EXPR> "defines an input variable (key=value)")
+-                .action(ArgAction::Append),
+-            arg!(--strict "disallow undefined variables in templates"),
+-            arg!(--"no-include" "Disallow includes and extending"),
+-            arg!(--"no-newline" "Do not output a newline"),
+-            arg!(--env "Pass environment variables as ENV to the template"),
+-            arg!(-E --expr <EXPR> "Evaluates an expression instead"),
+-            arg!(--"expr-out" <MODE> "Sets the expression output mode")
+-                .value_parser(["print", "json", "json-pretty", "status"])
+-                .default_value("print")
+-                .requires("expr"),
+-            arg!(--fuel <AMOUNT> "configures the maximum fuel").value_parser(value_parser!(u64)),
+-            arg!(--dump <KIND> "dump internals of a template").value_parser(["instructions", "ast", "tokens"]),
+-            #[cfg(feature = "repl")]
+-            arg!(--repl "starts the repl with the given data")
+-                .conflicts_with_all(["expr", "template"]),
+-            arg!(template: [TEMPLATE] "path to the input template").default_value("-"),
+-            arg!(data: [DATA] "path to the data file").value_parser(value_parser!(PathBuf)),
+-        ])
+-        .about("minijinja-cli is a command line tool to render or evaluate jinja2 templates.")
+-        .after_help("For more information see https://github.com/mitsuhiko/minijinja/tree/main/minijinja-cli/README.md")
+-}
+-
+ fn execute() -> Result<i32, Error> {
+-    let matches = make_command().get_matches();
++    let matches = cli::make_command().get_matches();
+ 
+     let format = matches.get_one::<String>("format").unwrap();
+     let (base, stdin_used) = if let Some(data) = matches.get_one::<PathBuf>("data") {
+-- 
+2.43.0
+
diff --git a/srcpkgs/minijinja-cli/template b/srcpkgs/minijinja-cli/template
new file mode 100644
index 0000000000000..b55f2904ac7cf
--- /dev/null
+++ b/srcpkgs/minijinja-cli/template
@@ -0,0 +1,24 @@
+# Template file for 'minijinja-cli'
+pkgname=minijinja-cli
+version=1.0.12
+revision=1
+build_wrksrc=minijinja-cli
+build_style=cargo
+short_desc="CLI tool that uses MiniJinja to render Jinja2 from CLI"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="Apache-2.0"
+homepage="https://github.com/mitsuhiko/minijinja/blob/main/minijinja-cli/README.md"
+changelog="https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md"
+distfiles="https://github.com/mitsuhiko/minijinja/archive/refs/tags/${version}.tar.gz"
+checksum=855f646f4afb4d2467f6118bb164c54f26ce7c26af07f740e2b1fb3f012cd0e8
+
+pre_build() {
+	export ASSET_OUT_DIR=assets
+}
+
+post_install() {
+	vcompletion assets/completions/_minijinja-cli zsh
+	vcompletion assets/completions/minijinja-cli.fish fish
+	vcompletion assets/completions/minijinja-cli.bash bash
+	vman assets/man/minijinja-cli.1
+}

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (4 preceding siblings ...)
  2024-01-25 12:08 ` [PR PATCH] [Updated] " jcgruenhage
@ 2024-01-25 12:14 ` jcgruenhage
  2024-01-25 12:15 ` jcgruenhage
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-25 12:14 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1466284499

Comment:
It does run more tests then, but as we've already had with other situations, the `cargo-insta` tests are failing...

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (5 preceding siblings ...)
  2024-01-25 12:14 ` [PR REVIEW] " jcgruenhage
@ 2024-01-25 12:15 ` jcgruenhage
  2024-01-25 12:16 ` tranzystorekk
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-25 12:15 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1466285469

Comment:
I'd keep it as is for now.

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

* Re: [PR REVIEW] New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (6 preceding siblings ...)
  2024-01-25 12:15 ` jcgruenhage
@ 2024-01-25 12:16 ` tranzystorekk
  2024-01-25 12:16 ` jcgruenhage
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tranzystorekk @ 2024-01-25 12:16 UTC (permalink / raw)
  To: ml

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

New review comment by tranzystorekk on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#discussion_r1466286060

Comment:
fair point

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

* Re: New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (7 preceding siblings ...)
  2024-01-25 12:16 ` tranzystorekk
@ 2024-01-25 12:16 ` jcgruenhage
  2024-01-26 12:20 ` jcgruenhage
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-25 12:16 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#issuecomment-1910087992

Comment:
The patch provided here has also been submitted upstream in https://github.com/mitsuhiko/minijinja/pull/403, with upstream signaling that they'd be willing to accept a PR like that in https://github.com/mitsuhiko/minijinja/issues/399#issuecomment-1908077896

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

* Re: New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (8 preceding siblings ...)
  2024-01-25 12:16 ` jcgruenhage
@ 2024-01-26 12:20 ` jcgruenhage
  2024-03-14 11:46 ` [PR PATCH] [Closed]: " jcgruenhage
  2024-03-14 11:46 ` jcgruenhage
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-01-26 12:20 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#issuecomment-1911986092

Comment:
The patch was also merged upstream.

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

* Re: [PR PATCH] [Closed]: New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (9 preceding siblings ...)
  2024-01-26 12:20 ` jcgruenhage
@ 2024-03-14 11:46 ` jcgruenhage
  2024-03-14 11:46 ` jcgruenhage
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-03-14 11:46 UTC (permalink / raw)
  To: ml

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

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

New package: minijinja-cli-1.0.12
https://github.com/void-linux/void-packages/pull/48336

Description:
#### 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** (compiled)

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc


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

* Re: New package: minijinja-cli-1.0.12
  2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
                   ` (10 preceding siblings ...)
  2024-03-14 11:46 ` [PR PATCH] [Closed]: " jcgruenhage
@ 2024-03-14 11:46 ` jcgruenhage
  11 siblings, 0 replies; 13+ messages in thread
From: jcgruenhage @ 2024-03-14 11:46 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/48336#issuecomment-1997261919

Comment:
See #49286

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

end of thread, other threads:[~2024-03-14 11:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-23  9:35 [PR PATCH] New package: minijinja-cli-1.0.12 jcgruenhage
2024-01-23 10:19 ` [PR REVIEW] " tranzystorekk
2024-01-23 10:20 ` tranzystorekk
2024-01-23 13:06 ` jcgruenhage
2024-01-23 13:56 ` tranzystorekk
2024-01-25 12:08 ` [PR PATCH] [Updated] " jcgruenhage
2024-01-25 12:14 ` [PR REVIEW] " jcgruenhage
2024-01-25 12:15 ` jcgruenhage
2024-01-25 12:16 ` tranzystorekk
2024-01-25 12:16 ` jcgruenhage
2024-01-26 12:20 ` jcgruenhage
2024-03-14 11:46 ` [PR PATCH] [Closed]: " jcgruenhage
2024-03-14 11:46 ` jcgruenhage

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