Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: splatmoji-1.2.0
@ 2021-04-05 22:21 chilledfrogs
  2021-04-05 22:28 ` [PR REVIEW] " abenson
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 0e84a59f17af3801a932fb4b20cd255d22b52782 Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

---
 srcpkgs/splatmoji-emojidata |  1 +
 srcpkgs/splatmoji/template  | 40 +++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)
 create mode 120000 srcpkgs/splatmoji-emojidata
 create mode 100644 srcpkgs/splatmoji/template

diff --git a/srcpkgs/splatmoji-emojidata b/srcpkgs/splatmoji-emojidata
new file mode 120000
index 000000000000..1e491228b9bf
--- /dev/null
+++ b/srcpkgs/splatmoji-emojidata
@@ -0,0 +1 @@
+splatmoji
\ No newline at end of file
diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..e7e7c1e11f7e
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,40 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+hostmakedepends="pandoc"
+depends="bash>4.4 rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/${pkgname}/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/*
+}
+
+pre_install() {
+	pandoc -s -t man README.md -o ${pkgname}.1
+}
+
+do_install() {
+	vbin splatmoji
+	vman ${pkgname}.1
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+	vlicense LICENSE
+}
+
+splatmoji-emojidata_package() {
+	short_desc+=" - emoji data files"
+	pkg_install() {
+		vmkdir usr/share/splatmoji
+		vcopy data usr/share/splatmoji
+	}
+}

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
@ 2021-04-05 22:28 ` abenson
  2021-04-05 22:28 ` abenson
                   ` (26 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:28 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607370597

Comment:
Don't use `$pkgname` in `distfiles`

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
  2021-04-05 22:28 ` [PR REVIEW] " abenson
@ 2021-04-05 22:28 ` abenson
  2021-04-05 22:30 ` abenson
                   ` (25 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:28 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607370712

Comment:
drop the `>4.4`

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
  2021-04-05 22:28 ` [PR REVIEW] " abenson
  2021-04-05 22:28 ` abenson
@ 2021-04-05 22:30 ` abenson
  2021-04-05 22:32 ` abenson
                   ` (24 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:30 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607371229

Comment:
This isn't really a man page.  You could just `vdoc README.md`, that'll drop it in `/usr/share/doc/splatmoji`

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (2 preceding siblings ...)
  2021-04-05 22:30 ` abenson
@ 2021-04-05 22:32 ` abenson
  2021-04-05 22:41 ` abenson
                   ` (23 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:32 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607371993

Comment:
Does this need to be split?

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (3 preceding siblings ...)
  2021-04-05 22:32 ` abenson
@ 2021-04-05 22:41 ` abenson
  2021-04-05 22:44 ` chilledfrogs
                   ` (22 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:41 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607375378

Comment:
Just use the full path `./test/unit_tests`

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (4 preceding siblings ...)
  2021-04-05 22:41 ` abenson
@ 2021-04-05 22:44 ` chilledfrogs
  2021-04-05 22:45 ` chilledfrogs
                   ` (21 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:44 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376477

Comment:
Ok, will fix

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (5 preceding siblings ...)
  2021-04-05 22:44 ` chilledfrogs
@ 2021-04-05 22:45 ` chilledfrogs
  2021-04-05 22:45 ` chilledfrogs
                   ` (20 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:45 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376545

Comment:
I just took it from the package documentation

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (6 preceding siblings ...)
  2021-04-05 22:45 ` chilledfrogs
@ 2021-04-05 22:45 ` chilledfrogs
  2021-04-05 22:45 ` chilledfrogs
                   ` (19 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:45 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376660

Comment:
I agree, I did it because that's how the package does it normally, but might as well I guess

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (7 preceding siblings ...)
  2021-04-05 22:45 ` chilledfrogs
@ 2021-04-05 22:45 ` chilledfrogs
  2021-04-05 22:45 ` chilledfrogs
                   ` (18 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:45 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376660

Comment:
I agree, I did it because that's just how the package does it normally, but might as well I guess

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (8 preceding siblings ...)
  2021-04-05 22:45 ` chilledfrogs
@ 2021-04-05 22:45 ` chilledfrogs
  2021-04-05 22:46 ` chilledfrogs
                   ` (17 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:45 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376884

Comment:
It could theoretically be used separately iirc, based on the package documentation, so idk

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (9 preceding siblings ...)
  2021-04-05 22:45 ` chilledfrogs
@ 2021-04-05 22:46 ` chilledfrogs
  2021-04-05 22:49 ` [PR PATCH] [Updated] " chilledfrogs
                   ` (16 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:46 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607377071

Comment:
Took it from the build scripts, but might be better to be more explicit I guess, yes

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

* Re: [PR PATCH] [Updated] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (10 preceding siblings ...)
  2021-04-05 22:46 ` chilledfrogs
@ 2021-04-05 22:49 ` chilledfrogs
  2021-04-05 22:51 ` [PR REVIEW] " chilledfrogs
                   ` (15 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 3e6be8cdcaacbb494a3be7b5b689dfd6184fe353 Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

---
 srcpkgs/splatmoji-emojidata |  1 +
 srcpkgs/splatmoji/template  | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)
 create mode 120000 srcpkgs/splatmoji-emojidata
 create mode 100644 srcpkgs/splatmoji/template

diff --git a/srcpkgs/splatmoji-emojidata b/srcpkgs/splatmoji-emojidata
new file mode 120000
index 000000000000..1e491228b9bf
--- /dev/null
+++ b/srcpkgs/splatmoji-emojidata
@@ -0,0 +1 @@
+splatmoji
\ No newline at end of file
diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..1f531a00ff8c
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,36 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+hostmakedepends="pandoc"
+depends="bash rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/splatmoji/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/unit_tests
+}
+
+do_install() {
+	vbin splatmoji
+  vdoc README.md
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+	vlicense LICENSE
+}
+
+splatmoji-emojidata_package() {
+	short_desc+=" - emoji data files"
+	pkg_install() {
+		vmkdir usr/share/splatmoji
+		vcopy data usr/share/splatmoji
+	}
+}

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (11 preceding siblings ...)
  2021-04-05 22:49 ` [PR PATCH] [Updated] " chilledfrogs
@ 2021-04-05 22:51 ` chilledfrogs
  2021-04-05 22:54 ` [PR PATCH] [Updated] " chilledfrogs
                   ` (14 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:51 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607376545

Comment:
I just took it from the package documentation, but ok

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

* Re: [PR PATCH] [Updated] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (12 preceding siblings ...)
  2021-04-05 22:51 ` [PR REVIEW] " chilledfrogs
@ 2021-04-05 22:54 ` chilledfrogs
  2021-04-05 22:54 ` [PR REVIEW] " abenson
                   ` (13 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 22:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 93b7ade384b17d1c5fb45c1bd2de973d5c0eb620 Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

---
 srcpkgs/splatmoji-emojidata |  1 +
 srcpkgs/splatmoji/template  | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)
 create mode 120000 srcpkgs/splatmoji-emojidata
 create mode 100644 srcpkgs/splatmoji/template

diff --git a/srcpkgs/splatmoji-emojidata b/srcpkgs/splatmoji-emojidata
new file mode 120000
index 000000000000..1e491228b9bf
--- /dev/null
+++ b/srcpkgs/splatmoji-emojidata
@@ -0,0 +1 @@
+splatmoji
\ No newline at end of file
diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..d4ab732aff32
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,36 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+hostmakedepends="pandoc"
+depends="bash rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/splatmoji/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/unit_tests
+}
+
+do_install() {
+	vbin splatmoji
+	vdoc README.md
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+	vlicense LICENSE
+}
+
+splatmoji-emojidata_package() {
+	short_desc+=" - emoji data files"
+	pkg_install() {
+		vmkdir usr/share/splatmoji
+		vcopy data usr/share/splatmoji
+	}
+}

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (13 preceding siblings ...)
  2021-04-05 22:54 ` [PR PATCH] [Updated] " chilledfrogs
@ 2021-04-05 22:54 ` abenson
  2021-04-05 23:17 ` chilledfrogs
                   ` (12 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-05 22:54 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607380070

Comment:
can splatmoji work without it? If not, it needs to be added as a dependency.

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (14 preceding siblings ...)
  2021-04-05 22:54 ` [PR REVIEW] " abenson
@ 2021-04-05 23:17 ` chilledfrogs
  2021-04-05 23:17 ` chilledfrogs
                   ` (11 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 23:17 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607387425

Comment:
It can, actually

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (15 preceding siblings ...)
  2021-04-05 23:17 ` chilledfrogs
@ 2021-04-05 23:17 ` chilledfrogs
  2021-04-30 21:27 ` chilledfrogs
                   ` (10 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-05 23:17 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r607387425

Comment:
It can, actually, I checked, or I would have already

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (16 preceding siblings ...)
  2021-04-05 23:17 ` chilledfrogs
@ 2021-04-30 21:27 ` chilledfrogs
  2021-04-30 21:33 ` [PR PATCH] [Updated] " chilledfrogs
                   ` (9 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-30 21:27 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624221052

Comment:
Umm, @abenson, so do we keep it separate or not? To me it makes the most sense separately, been using it locally as such, but hey

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

* Re: [PR PATCH] [Updated] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (17 preceding siblings ...)
  2021-04-30 21:27 ` chilledfrogs
@ 2021-04-30 21:33 ` chilledfrogs
  2021-04-30 21:41 ` [PR REVIEW] " abenson
                   ` (8 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-04-30 21:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 68151971a6329ed38ecb7de19dc85c7b0a2c0fd4 Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

---
 srcpkgs/splatmoji-emojidata |  1 +
 srcpkgs/splatmoji/template  | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 120000 srcpkgs/splatmoji-emojidata
 create mode 100644 srcpkgs/splatmoji/template

diff --git a/srcpkgs/splatmoji-emojidata b/srcpkgs/splatmoji-emojidata
new file mode 120000
index 000000000000..1e491228b9bf
--- /dev/null
+++ b/srcpkgs/splatmoji-emojidata
@@ -0,0 +1 @@
+splatmoji
\ No newline at end of file
diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..9b1b857228e7
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,35 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+depends="bash rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/splatmoji/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/unit_tests
+}
+
+do_install() {
+	vbin splatmoji
+	vdoc README.md
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+	vlicense LICENSE
+}
+
+splatmoji-emojidata_package() {
+	short_desc+=" - emoji data files"
+	pkg_install() {
+		vmkdir usr/share/splatmoji
+		vcopy data usr/share/splatmoji
+	}
+}

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (18 preceding siblings ...)
  2021-04-30 21:33 ` [PR PATCH] [Updated] " chilledfrogs
@ 2021-04-30 21:41 ` abenson
  2021-05-01  1:43 ` chilledfrogs
                   ` (7 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: abenson @ 2021-04-30 21:41 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624230700

Comment:
> It can, actually, I checked, or I would have already

    Cannot find any data files with the provided options.. 

At least `splatmoji` should have `splatmoji-emojidata>=${version}_${revision}` listed in `depends`.  I don't think we have any other compatible data files in the repos.

Also, are there any other applications that use `splatmoji`'s data files?  If not, I don't see the point to the split.

> been using it locally as such

If you have both installed, sure, it works fine.  Right now if you just install `splatmoji` it doesn't work.

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (19 preceding siblings ...)
  2021-04-30 21:41 ` [PR REVIEW] " abenson
@ 2021-05-01  1:43 ` chilledfrogs
  2021-05-01 15:15 ` Piraty
                   ` (6 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-05-01  1:43 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624355591

Comment:
Well, for the moment we indeed don't have any compatible ones *in the repos*, but it seems that the developer made it to work with arbitrary data files (so they could be in your homedir somewhere for instance, if you for whatever reason wanted to configure custom ones), so I would kinda prefer to have it as a separate package, but at least for now a dependency could work

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (20 preceding siblings ...)
  2021-05-01  1:43 ` chilledfrogs
@ 2021-05-01 15:15 ` Piraty
  2021-05-01 21:37 ` chilledfrogs
                   ` (5 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Piraty @ 2021-05-01 15:15 UTC (permalink / raw)
  To: ml

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

New review comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624523693

Comment:
don't split, not worth it
```
du -sch *xbps
12K	splatmoji-1.2.0_1.x86_64.xbps
3.5M	splatmoji-emojidata-1.2.0_1.x86_64.xbps
```

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (21 preceding siblings ...)
  2021-05-01 15:15 ` Piraty
@ 2021-05-01 21:37 ` chilledfrogs
  2021-05-02 21:58 ` [PR PATCH] [Updated] " chilledfrogs
                   ` (4 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-05-01 21:37 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624569188

Comment:
Fair enough

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

* Re: [PR PATCH] [Updated] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (22 preceding siblings ...)
  2021-05-01 21:37 ` chilledfrogs
@ 2021-05-02 21:58 ` chilledfrogs
  2021-05-02 22:00 ` chilledfrogs
                   ` (3 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-05-02 21:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 064f2f318ec33500097fc0b0612bba2f036f5b2c Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

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

diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..f3ac387c3b5f
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,29 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+depends="bash rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/splatmoji/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/unit_tests
+}
+
+do_install() {
+	vbin splatmoji
+	vdoc README.md
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+  vmkdir usr/share/splatmoji
+  vcopy data usr/share/splatmoji
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (23 preceding siblings ...)
  2021-05-02 21:58 ` [PR PATCH] [Updated] " chilledfrogs
@ 2021-05-02 22:00 ` chilledfrogs
  2021-05-02 22:00 ` [PR REVIEW] " chilledfrogs
                   ` (2 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-05-02 22:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chilledfrogs/void-packages temp
https://github.com/void-linux/void-packages/pull/30025

New package: splatmoji-1.2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

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

From 183bd3fd855c2459d5714000d94a05076cc034a0 Mon Sep 17 00:00:00 2001
From: Allen Sobot <chilledfrogs@disroot.org>
Date: Mon, 5 Apr 2021 22:48:19 +0200
Subject: [PATCH] New package: splatmoji-1.2.0

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

diff --git a/srcpkgs/splatmoji/template b/srcpkgs/splatmoji/template
new file mode 100644
index 000000000000..1a3fa1caf6c8
--- /dev/null
+++ b/srcpkgs/splatmoji/template
@@ -0,0 +1,29 @@
+# Template file for 'splatmoji'
+pkgname=splatmoji
+version=1.2.0
+revision=1
+conf_files="/etc/xdg/${pkgname}/${pkgname}.config"
+depends="bash rofi xdotool xsel jq"
+checkdepends="jq shunit2"
+short_desc="Emoji and kaomoji selector"
+maintainer="Allen Sobot <chilledfrogs@disroot.org>"
+license="MIT"
+homepage="https://github.com/cspeterson/splatmoji"
+distfiles="https://github.com/cspeterson/splatmoji/archive/v${version}.tar.gz"
+checksum=cfcc9949ae053be2106fb64cbd75adfff5a772a3b4bc2ae15ad44e2997a0e6ee
+
+do_check() {
+	./test/unit_tests
+}
+
+do_install() {
+	vbin splatmoji
+	vdoc README.md
+	vmkdir usr/lib/${pkgname}
+	vcopy lib/functions usr/lib/${pkgname}
+	vmkdir etc/xdg/${pkgname}
+	vcopy ${pkgname}.config etc/xdg/${pkgname}
+	vmkdir usr/share/splatmoji
+	vcopy data usr/share/splatmoji
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (24 preceding siblings ...)
  2021-05-02 22:00 ` chilledfrogs
@ 2021-05-02 22:00 ` chilledfrogs
  2022-05-17  2:14 ` github-actions
  2022-06-01  2:14 ` [PR PATCH] [Closed]: " github-actions
  27 siblings, 0 replies; 29+ messages in thread
From: chilledfrogs @ 2021-05-02 22:00 UTC (permalink / raw)
  To: ml

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

New review comment by chilledfrogs on void-packages repository

https://github.com/void-linux/void-packages/pull/30025#discussion_r624783489

Comment:
Done

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

* Re: New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (25 preceding siblings ...)
  2021-05-02 22:00 ` [PR REVIEW] " chilledfrogs
@ 2022-05-17  2:14 ` github-actions
  2022-06-01  2:14 ` [PR PATCH] [Closed]: " github-actions
  27 siblings, 0 replies; 29+ messages in thread
From: github-actions @ 2022-05-17  2:14 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/30025#issuecomment-1128327665

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

* Re: [PR PATCH] [Closed]: New package: splatmoji-1.2.0
  2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
                   ` (26 preceding siblings ...)
  2022-05-17  2:14 ` github-actions
@ 2022-06-01  2:14 ` github-actions
  27 siblings, 0 replies; 29+ messages in thread
From: github-actions @ 2022-06-01  2:14 UTC (permalink / raw)
  To: ml

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

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

New package: splatmoji-1.2.0
https://github.com/void-linux/void-packages/pull/30025

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->

#### Does it build and run successfully? 
Yes, and should work for all architectures since it's actually a shell script

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

end of thread, other threads:[~2022-06-01  2:14 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 22:21 [PR PATCH] New package: splatmoji-1.2.0 chilledfrogs
2021-04-05 22:28 ` [PR REVIEW] " abenson
2021-04-05 22:28 ` abenson
2021-04-05 22:30 ` abenson
2021-04-05 22:32 ` abenson
2021-04-05 22:41 ` abenson
2021-04-05 22:44 ` chilledfrogs
2021-04-05 22:45 ` chilledfrogs
2021-04-05 22:45 ` chilledfrogs
2021-04-05 22:45 ` chilledfrogs
2021-04-05 22:45 ` chilledfrogs
2021-04-05 22:46 ` chilledfrogs
2021-04-05 22:49 ` [PR PATCH] [Updated] " chilledfrogs
2021-04-05 22:51 ` [PR REVIEW] " chilledfrogs
2021-04-05 22:54 ` [PR PATCH] [Updated] " chilledfrogs
2021-04-05 22:54 ` [PR REVIEW] " abenson
2021-04-05 23:17 ` chilledfrogs
2021-04-05 23:17 ` chilledfrogs
2021-04-30 21:27 ` chilledfrogs
2021-04-30 21:33 ` [PR PATCH] [Updated] " chilledfrogs
2021-04-30 21:41 ` [PR REVIEW] " abenson
2021-05-01  1:43 ` chilledfrogs
2021-05-01 15:15 ` Piraty
2021-05-01 21:37 ` chilledfrogs
2021-05-02 21:58 ` [PR PATCH] [Updated] " chilledfrogs
2021-05-02 22:00 ` chilledfrogs
2021-05-02 22:00 ` [PR REVIEW] " chilledfrogs
2022-05-17  2:14 ` github-actions
2022-06-01  2:14 ` [PR PATCH] [Closed]: " github-actions

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