Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
@ 2022-04-30 15:47 nadevko
  2022-04-30 15:59 ` [PR REVIEW] " classabbyamp
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: nadevko @ 2022-04-30 15:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/nadevko/void-packages master
https://github.com/void-linux/void-packages/pull/36922

New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
#### 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**

#### 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/36922.patch is attached

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

From 65ab14b3d8e7cb2bdf632c7e445c8876749d04a8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nade=C5=ADka?= <nadevko@riseup.net>
Date: Sat, 30 Apr 2022 17:54:59 +0300
Subject: [PATCH 1/2] New package: klfc-1.5.7

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

diff --git a/srcpkgs/klfc/template b/srcpkgs/klfc/template
new file mode 100644
index 000000000000..c2b3658f4ff5
--- /dev/null
+++ b/srcpkgs/klfc/template
@@ -0,0 +1,28 @@
+# Template file for 'klfc'
+pkgname='klfc'
+short_desc='Keyboard layout files creator'
+maintainer='Nadeŭka <nadevko@riseup.net>'
+license='GPL-3.0-or-later'
+homepage='https://github.com/39aldo39/klfc'
+revision='1'
+
+version='1.5.7'
+checksum='712851d448beb2301cd60f6c04a557f007eb59731fb481e41f7755b41da4f519'
+
+distfiles="https://github.com/39aldo39/klfc/releases/download/v$version/klfc-linux-amd64-v1.5.7.zip>v$version.zip"
+nopie_files='/usr/bin/klfc'
+python_version='3'
+
+do_extract() {
+	bsdtar -xf $XBPS_SRCDISTDIR/${wrksrc##*/}/v$version.zip
+}
+
+do_install() {
+	vbin klfc
+	vdoc README.md
+	vlicense LICENSE.txt
+
+	for i in doc/* examples; do
+		vcopy $i usr/share/doc/$pkgname
+	done
+}

From 3c38b520ffc87e857d7aaad5eec63fc2bd1f2b1a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nade=C5=ADka?= <nadevko@riseup.net>
Date: Sat, 30 Apr 2022 17:56:54 +0300
Subject: [PATCH 2/2] New package: ascii-image-converter-1.11.0

---
 srcpkgs/ascii-image-converter/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/ascii-image-converter/template

diff --git a/srcpkgs/ascii-image-converter/template b/srcpkgs/ascii-image-converter/template
new file mode 100644
index 000000000000..3ffd4ff40f2c
--- /dev/null
+++ b/srcpkgs/ascii-image-converter/template
@@ -0,0 +1,23 @@
+# Template file for 'ascii-image-converter'
+pkgname='ascii-image-converter'
+short_desc="Tool to convert images into ascii art and braille art"
+maintainer='Nadeŭka <nadevko@riseup.net>'
+license='Apache-2.0'
+homepage='https://github.com/TheZoraiz/ascii-image-converter'
+revision='1'
+
+version='1.11.0'
+checksum='17f87445971fdb491c6ca9d4beed67044a330339b47775adffb8e3cb898ec15d'
+
+distfiles="https://github.com/TheZoraiz/ascii-image-converter/releases/download/v$version/ascii-image-converter_Linux_amd64_64bit.tar.gz>v$version.tar.gz"
+nopie='/usr/bin/ascii-image-converter'
+
+do_extract() {
+        bsdtar --strip-components 1 -xf $XBPS_SRCDISTDIR/${wrksrc##*/}/v$version.tar.gz
+}
+
+do_install() {
+	vbin ascii-image-converter
+	vlicense LICENSE.txt
+	vdoc README.md
+}

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

* Re: [PR REVIEW] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
  2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
@ 2022-04-30 15:59 ` classabbyamp
  2022-04-30 15:59 ` classabbyamp
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-04-30 15:59 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/36922#discussion_r862370172

Comment:
should not be necessary, xbps-src knows how to unpack tar.gz and zip files itself

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

* Re: [PR REVIEW] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
  2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
  2022-04-30 15:59 ` [PR REVIEW] " classabbyamp
@ 2022-04-30 15:59 ` classabbyamp
  2022-04-30 16:00 ` classabbyamp
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-04-30 15:59 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/36922#discussion_r862370422

Comment:
should not be necessary to change the filename

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

* Re: New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
  2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
  2022-04-30 15:59 ` [PR REVIEW] " classabbyamp
  2022-04-30 15:59 ` classabbyamp
@ 2022-04-30 16:00 ` classabbyamp
  2022-04-30 20:33 ` nadevko
  2022-04-30 20:33 ` [PR PATCH] [Closed]: " nadevko
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-04-30 16:00 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/36922#issuecomment-1114011187

Comment:
also, unless one of these packages depends on the other, they should be in separate PRs

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

* Re: New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
  2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
                   ` (2 preceding siblings ...)
  2022-04-30 16:00 ` classabbyamp
@ 2022-04-30 20:33 ` nadevko
  2022-04-30 20:33 ` [PR PATCH] [Closed]: " nadevko
  4 siblings, 0 replies; 6+ messages in thread
From: nadevko @ 2022-04-30 20:33 UTC (permalink / raw)
  To: ml

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

New comment by nadevko on void-packages repository

https://github.com/void-linux/void-packages/pull/36922#issuecomment-1114049892

Comment:
Thanks, I'll fix it tomorrow,

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

* Re: [PR PATCH] [Closed]: New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
  2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
                   ` (3 preceding siblings ...)
  2022-04-30 20:33 ` nadevko
@ 2022-04-30 20:33 ` nadevko
  4 siblings, 0 replies; 6+ messages in thread
From: nadevko @ 2022-04-30 20:33 UTC (permalink / raw)
  To: ml

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

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

New packages: klfc-1.5.7 & ascii-image-converter-1.11.0
https://github.com/void-linux/void-packages/pull/36922

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

#### Local build testing

- I built this PR locally for my native architecture, **x86_64-glibc**

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

end of thread, other threads:[~2022-04-30 20:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-30 15:47 [PR PATCH] New packages: klfc-1.5.7 & ascii-image-converter-1.11.0 nadevko
2022-04-30 15:59 ` [PR REVIEW] " classabbyamp
2022-04-30 15:59 ` classabbyamp
2022-04-30 16:00 ` classabbyamp
2022-04-30 20:33 ` nadevko
2022-04-30 20:33 ` [PR PATCH] [Closed]: " nadevko

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