From Sam Nystrom to ~flexibeast/s6-man-pages
--- man8/s6-svperms.8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man8/s6-svperms.8 b/man8/s6-svperms.8 index 497e85a..297b533 100644 --- a/man8/s6-svperms.8 +++ b/man8/s6-svperms.8 @@ -14,7 +14,7 @@ commands, and who can subscribe to up/down events for those services .Ar servicedirs... .Sh DESCRIPTION Without options, or with only the Fl v .Fl v[message trimmed]
From Sam Nystrom to ~sircmpwn/hare-dev
--- .gitignore | 1 + Makefile | 1 + cut.ha | 237 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 239 insertions(+) create mode 100644 cut.ha diff --git a/.gitignore b/.gitignore index bfa47d4..a003319 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ basename cat [message trimmed]
From Sam Nystrom to ~whynothugo/superd-services
superd panics if dependencies don't end with ".service" and does not
implement WantedBy.
---
After upgrading superd-services to 0.8.0, superd no longer started for
me because of this panic. See
https://git.sr.ht/~craftyguy/superd/tree/master/item/internal/config/parse.go#L162
for the relevant error handling code in superd.
I noticed a few other issues but didn't change them in this patch since
I don't use and can't test swww.
- swww's service file uses an absolute path, which is discouraged in the
README.
- The "Documentation" field references a file which is not packaged by
Alpine.
[message trimmed]
From Sam Nystrom to ~rjarry/aerc-devel
Add the Catppuccin theme from https://github.com/catppuccin/aerc. --- Hi! I'm the maintainer of the Catppuccin colorscheme's official aerc port. These stylesets can be found online at https://github.com/catppuccin/aerc/tree/main/dist. stylesets/catppuccin-frappe | 42 ++++++++++++++++++++++++++++++++++ stylesets/catppuccin-latte | 42 ++++++++++++++++++++++++++++++++++ stylesets/catppuccin-macchiato | 42 ++++++++++++++++++++++++++++++++++ stylesets/catppuccin-mocha | 42 ++++++++++++++++++++++++++++++++++ 4 files changed, 168 insertions(+) create mode 100644 stylesets/catppuccin-frappe create mode 100644 stylesets/catppuccin-latte create mode 100644 stylesets/catppuccin-macchiato [message trimmed]
From Sam Nystrom to ~sircmpwn/himitsu-devel
Replace manual usage of the himitsud Unix socket with calls to the himitsu::client library. --- Since v1: - free the key items and query - improve a few error messages cmd/hiq/main.ha | 153 +++++++++++++++++++++--------------------------- 1 file changed, 66 insertions(+), 87 deletions(-) diff --git a/cmd/hiq/main.ha b/cmd/hiq/main.ha index ad0460e..7960ec6 100644 --- a/cmd/hiq/main.ha +++ b/cmd/hiq/main.ha [message trimmed]
From Sam Nystrom to ~sircmpwn/himitsu-devel
--- cmd/himitsu-init/main.ha | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/cmd/himitsu-init/main.ha b/cmd/himitsu-init/main.ha index 865dc24..f0de681 100644 --- a/cmd/himitsu-init/main.ha +++ b/cmd/himitsu-init/main.ha @@ -1,3 +1,4 @@ use ascii; use bufio; use bytes; use dirs; @@ -43,7 +44,6 @@ export fn main() void = { [message trimmed]
From Sam Nystrom to ~sircmpwn/himitsu-devel
This preserves the secstore path as an implementation detail of the library. --- secstore/secstore.ha | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/secstore/secstore.ha b/secstore/secstore.ha index e81156e..f02bf11 100644 --- a/secstore/secstore.ha +++ b/secstore/secstore.ha @@ -37,6 +37,13 @@ export fn create(passphrase: []u8) (secstore | error) = { return createat(passphrase, dir); }; [message trimmed]
From to ~sircmpwn/himitsu-devel
The v2 of this patch was actually nacked by Drew, I've sent [PATCH himitsu] hiq: use himitsu::client to run queries which supersedes this and rewrites a lot more of hiq.
From to ~sircmpwn/himitsu-devel
Sure, I'll send a v4 patch later today.
From to ~sircmpwn/himitsu-devel
CC'ing apreiml on this since they've pushed commit 5a4df343 to himitsu and this patch does pretty much the same thing.