From Mark Dain to ~ancarda/testing
Here is a list of links, some of which are clickable from lists.sr.ht: irc://irc.libera.chat:6697/microformats ircs://irc.libera.chat:6697/micoformats gemini://srht.site/ https://lists.sr.ht/~ancarda/testing/ http://neverssl.com/ magnet:?xt=urn:btih:f1fcdc1462d36530f526c1d9402eec9100b7ba18&dn=ubuntu-21.10-desktop-amd64.iso&tr=https%3A%2F%2Ftorrent.ubuntu.com%2Fannounce&tr=https%3A%2F%2Fipv6.torrent.ubuntu.com%2Fannounce
From Mark Dain to ~ancarda/vcs-autodiscovery
On Tue Feb 15, 2022 at 7:00 PM GMT, Phil Pennock wrote: > <li><a rel="vcs-repo" href="frob/">frob</a> — frobnozzle your widgets</li> > <li><a rel="vcs-repo" href="waft/">waft</a> — display your widgets</li> I've been thinking about this for a little bit. Have you heard of IndieWeb? They markup pages with Microformats, like so: https://microformats.org/wiki/h-entry#Example I can imagine something like h-repo with p-url. Like so: <article class="h-repo"> <a href="..." class="u-url p-name">Snazzy Tool</a> <p class="p-summary">A very fine tool</p> </article>
From Mark Dain to ~sircmpwn/sr.ht-discuss
On Sun Feb 20, 2022 at 8:45 AM GMT, Drew DeVault wrote: > In general, most projects with this many builds have over-provisioned > their CI above and beyond what's actually necessary for the goals of the > project. I had to sacrifice Arch Linux in ~rjarry/aerc so we could build on OpenBSD. I imagine if we ever get builds working on Plan 9 or other systems, we might end up with a single Linux build. Which is probably fine. Do you know why we originally had 4 Linux builds? One solution might be allowing us to dispatch to additional builds.sr.ht instances. I could host one myself for aerc and my
From Mark Dain to ~ancarda/vcs-autodiscovery
On Tue Feb 15, 2022 at 7:00 PM GMT, Phil Pennock wrote: > I have a vanity domain for Go imports maintained with some rather hacky > shell (so not worth listing as an implementation), and I think I have it > working. Hey, I'm glad to see more people have implemented this! > side-question: is there a validator for the tags found? There isn't a reference implementation (yet) if you are asking for a tool to verify if your meta tags are correct. I have been meaning to write one. I'd be happy to take a look if you want to send me a link.
From Mark Dain to ~sircmpwn/sr.ht-dev
Earlier today, ~adnano submitted a patch to a repo I own: https://lists.sr.ht/~ancarda/vcs-autodiscovery/patches/29093 This was to add a link to the README file, which I applied and pushed. This looks fine on sr.ht (hub), but not git.sr.ht. Opening https://git.sr.ht/~ancarda/vcs-autodiscovery-rfc/ I noticed "RFC.md" actually links here: https://git.sr.ht/~adnano/test/tree/master/RFC.md I think the patch was pushed to ~adnano/test first (currently 404), before being applied by me. Perhaps there's some caching issue as the link is relative: `[RFC.md](RFC.md)', so it's not
From Mark Dain to ~ancarda/vcs-autodiscovery
Thanks! To git.sr.ht:~ancarda/vcs-autodiscovery-rfc feda35b..d63f7a4 master -> master
From Mark Dain to ~rjarry/aerc-devel
--- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 338d9c2..caed568 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # aerc [](https://builds.sr.ht/~rjarry/aerc) [](https://github.com/rjarry/aerc/actions/workflows/macos.yml)[message trimmed]
From Mark Dain to ~rjarry/aerc-devel
--- .builds/alpine-edge.yml | 6 ++++++ .builds/debian-stable.yml | 6 ++++++ .builds/fedora-latest.yml | 6 ++++++ .builds/openbsd.yml | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml index fa9a49f..e2467e5 100644 --- a/.builds/alpine-edge.yml +++ b/.builds/alpine-edge.yml @@ -4,6 +4,8 @@ packages: - scdoc sources: [message trimmed]
From Mark Dain to ~rjarry/aerc-devel
This commit adds a quick way to ensure the install was successful. --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Makefile b/Makefile index 25a3047..e094621 100644 --- a/Makefile +++ b/Makefile @@ -97,6 +97,18 @@ install: $(DOCS) aerc aerc.conf install -m644 templates/forward_as_body $(DESTDIR)$(SHAREDIR)/templates/forward_as_body install -m644 config/default_styleset $(DESTDIR)$(SHAREDIR)/stylesets/default .PHONY: checkinstall[message trimmed]
From Mark Dain to ~rjarry/aerc-devel
This commit drops Arch Linux in favor of a BSD so there's more variety in CI. See: https://lists.sr.ht/~rjarry/aerc-devel/%3C20220122033806.91728-1-ktprograms%40gmail.com%3E --- .builds/archlinux.yml | 13 ------------- .builds/openbsd.yml | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 13 deletions(-) delete mode 100644 .builds/archlinux.yml create mode 100644 .builds/openbsd.yml diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml deleted file mode 100644 index f5c74ac..0000000 [message trimmed]