Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package EncryptPad-0.5.0.1
@ 2022-07-24 17:20 ZyxerZyxani
  2022-07-24 17:38 ` [PR REVIEW] " classabbyamp
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From a979fb2ff486a3e71796fe3f840f6b12e9ded220 Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..d2a992dfc56e
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'encryptpad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
@ 2022-07-24 17:38 ` classabbyamp
  2022-07-24 17:40 ` ZyxerZyxani
                   ` (22 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: classabbyamp @ 2022-07-24 17:38 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928290294

Comment:
does this not have a `make install` target?

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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
  2022-07-24 17:38 ` [PR REVIEW] " classabbyamp
@ 2022-07-24 17:40 ` ZyxerZyxani
  2022-07-24 17:41 ` ZyxerZyxani
                   ` (21 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:40 UTC (permalink / raw)
  To: ml

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

New review comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928290633

Comment:
Yes it has? 
"vbin bin/release/encryptcli
	vbin bin/release/encryptpad

	vinstall encryptpad.desktop 644 usr/share/applications
	vinstall encryptpad.xml 644 usr/share/mime/packages

	for res in 16x16 32x32 128x128; do
		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
	done
}"
![image](https://user-images.githubusercontent.com/33463214/180659355-eadf7912-9f30-4b2f-8d3d-6669efa72a03.png)


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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
  2022-07-24 17:38 ` [PR REVIEW] " classabbyamp
  2022-07-24 17:40 ` ZyxerZyxani
@ 2022-07-24 17:41 ` ZyxerZyxani
  2022-07-24 17:47 ` [PR PATCH] [Updated] " ZyxerZyxani
                   ` (20 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:41 UTC (permalink / raw)
  To: ml

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

New review comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928290633

Comment:
Yes it has? 
```
vbin bin/release/encryptcli
	vbin bin/release/encryptpad

	vinstall encryptpad.desktop 644 usr/share/applications
	vinstall encryptpad.xml 644 usr/share/mime/packages

	for res in 16x16 32x32 128x128; do
		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
	done
}
```
![image](https://user-images.githubusercontent.com/33463214/180659355-eadf7912-9f30-4b2f-8d3d-6669efa72a03.png)


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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (2 preceding siblings ...)
  2022-07-24 17:41 ` ZyxerZyxani
@ 2022-07-24 17:47 ` ZyxerZyxani
  2022-07-24 17:55 ` ZyxerZyxani
                   ` (19 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From c8e8d09bd51849e3448e3bb17609a34da4acf507 Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..d2a992dfc56e
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'encryptpad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (3 preceding siblings ...)
  2022-07-24 17:47 ` [PR PATCH] [Updated] " ZyxerZyxani
@ 2022-07-24 17:55 ` ZyxerZyxani
  2022-07-24 17:56 ` [PR REVIEW] " ZyxerZyxani
                   ` (18 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From 35c16b14d51f10e84c021540839a5912ed5e52c2 Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..217ccfac8b7b
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (4 preceding siblings ...)
  2022-07-24 17:55 ` ZyxerZyxani
@ 2022-07-24 17:56 ` ZyxerZyxani
  2022-07-24 18:00 ` classabbyamp
                   ` (17 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 17:56 UTC (permalink / raw)
  To: ml

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

New review comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928290633

Comment:
Yes it has? 
```
do_install() {
	vbin bin/release/encryptcli
	vbin bin/release/encryptpad

	vinstall encryptpad.desktop 644 usr/share/applications
	vinstall encryptpad.xml 644 usr/share/mime/packages

	for res in 16x16 32x32 128x128; do
		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
	done
}
```
![image](https://user-images.githubusercontent.com/33463214/180659355-eadf7912-9f30-4b2f-8d3d-6669efa72a03.png)


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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (5 preceding siblings ...)
  2022-07-24 17:56 ` [PR REVIEW] " ZyxerZyxani
@ 2022-07-24 18:00 ` classabbyamp
  2022-07-24 18:23 ` ZyxerZyxani
                   ` (16 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: classabbyamp @ 2022-07-24 18:00 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928292821

Comment:
no I meant, does the program's build system generate a makefile that has an `install` target, so you don't have to do it manually. If so, that can be used instead of manually installing everything, and things that are not included in that can be installed in `post_install()`

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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (6 preceding siblings ...)
  2022-07-24 18:00 ` classabbyamp
@ 2022-07-24 18:23 ` ZyxerZyxani
  2022-07-24 18:25 ` classabbyamp
                   ` (15 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 18:23 UTC (permalink / raw)
  To: ml

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

New review comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928295574

Comment:
The EncryptPad make install points to scripts/install.sh which ignores PREFIX and installs files as root unconditionally. It makes more sense to just do the build step and then install relevant files manually.

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

* Re: [PR REVIEW] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (7 preceding siblings ...)
  2022-07-24 18:23 ` ZyxerZyxani
@ 2022-07-24 18:25 ` classabbyamp
  2022-07-24 18:36 ` [PR PATCH] [Updated] " ZyxerZyxani
                   ` (14 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: classabbyamp @ 2022-07-24 18:25 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#discussion_r928295722

Comment:
ok, carry on then

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (8 preceding siblings ...)
  2022-07-24 18:25 ` classabbyamp
@ 2022-07-24 18:36 ` ZyxerZyxani
  2022-07-24 18:51 ` ZyxerZyxani
                   ` (13 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 18:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From 279463f5c009a2ccc6ef76320ad8fb6a3c419b2a Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..217ccfac8b7b
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (9 preceding siblings ...)
  2022-07-24 18:36 ` [PR PATCH] [Updated] " ZyxerZyxani
@ 2022-07-24 18:51 ` ZyxerZyxani
  2022-07-24 18:57 ` ZyxerZyxani
                   ` (12 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 18:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From f0bff895288481da8f706780319e5de03bc8bd2f Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..498b1e3f4e23
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (10 preceding siblings ...)
  2022-07-24 18:51 ` ZyxerZyxani
@ 2022-07-24 18:57 ` ZyxerZyxani
  2022-07-25  7:40 ` tranzystorek-io
                   ` (11 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-07-24 18:57 UTC (permalink / raw)
  To: ml

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

New comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#issuecomment-1193374512

Comment:
Added qt5-qmake to hostmakedepends, it should compile and run on all architectures now.

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (11 preceding siblings ...)
  2022-07-24 18:57 ` ZyxerZyxani
@ 2022-07-25  7:40 ` tranzystorek-io
  2022-08-05  1:00 ` abenson
                   ` (10 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: tranzystorek-io @ 2022-07-25  7:40 UTC (permalink / raw)
  To: ml

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

New comment by tranzystorek-io on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#issuecomment-1193693768

Comment:
I checked briefly the cross-compile and upstream's `configure.py` script seems broken beyond reasonable repair (fails to detect any compiler settings or architecture params, and its configuration flags are a nightmare to pass even a simple CXXFLAGS).

Seems to me we should limit to x86_64* for now.

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (12 preceding siblings ...)
  2022-07-25  7:40 ` tranzystorek-io
@ 2022-08-05  1:00 ` abenson
  2022-08-05  1:01 ` abenson
                   ` (9 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: abenson @ 2022-08-05  1:00 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#issuecomment-1205926741

Comment:
> cross-compile and upstream's configure.py script seems broken beyond reasonable repair

Then it should be `nocross` and not `x86_64*`, since we* build most `ppc*` natively and if its truly a no-cross issue then it should be allowed to be built natively.

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (13 preceding siblings ...)
  2022-08-05  1:00 ` abenson
@ 2022-08-05  1:01 ` abenson
  2022-09-05 14:12 ` [PR PATCH] [Updated] " ZyxerZyxani
                   ` (8 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: abenson @ 2022-08-05  1:01 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#issuecomment-1205926741

Comment:
> cross-compile and upstream's configure.py script seems broken beyond reasonable repair

Then it should be `nocross` and not `x86_64*`, since we* build most `ppc*` natively and if its truly a no-cross issue then it should be allowed to be built natively.

Then again i686 is built natively and its failing, too.

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (14 preceding siblings ...)
  2022-08-05  1:01 ` abenson
@ 2022-09-05 14:12 ` ZyxerZyxani
  2022-09-05 14:21 ` ZyxerZyxani
                   ` (7 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-09-05 14:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From f0bff895288481da8f706780319e5de03bc8bd2f Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..498b1e3f4e23
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (15 preceding siblings ...)
  2022-09-05 14:12 ` [PR PATCH] [Updated] " ZyxerZyxani
@ 2022-09-05 14:21 ` ZyxerZyxani
  2022-09-06 13:01 ` ZyxerZyxani
                   ` (6 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-09-05 14:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From f0bff895288481da8f706780319e5de03bc8bd2f Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH 1/2] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..498b1e3f4e23
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

From 146b26c6fae93589ab5a03465b73de856486c1e5 Mon Sep 17 00:00:00 2001
From: ZyxerZyxani <33463214+ZyxerZyxani@users.noreply.github.com>
Date: Mon, 5 Sep 2022 14:21:13 +0000
Subject: [PATCH 2/2] Update template

---
 srcpkgs/EncryptPad/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
index 498b1e3f4e23..fdc55a5b9637 100644
--- a/srcpkgs/EncryptPad/template
+++ b/srcpkgs/EncryptPad/template
@@ -4,6 +4,7 @@ version=0.5.0.1
 revision=1
 build_style=configure
 configure_script="./configure.py"
+nocross="Flaky build configuration."
 hostmakedepends="pkg-config python3 qt5-qmake"
 makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
 short_desc="Minimalist secure text editor and file encryptor"

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (16 preceding siblings ...)
  2022-09-05 14:21 ` ZyxerZyxani
@ 2022-09-06 13:01 ` ZyxerZyxani
  2022-09-06 13:27 ` ZyxerZyxani
                   ` (5 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-09-06 13:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From f0bff895288481da8f706780319e5de03bc8bd2f Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH 1/2] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..498b1e3f4e23
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

From 146b26c6fae93589ab5a03465b73de856486c1e5 Mon Sep 17 00:00:00 2001
From: ZyxerZyxani <33463214+ZyxerZyxani@users.noreply.github.com>
Date: Mon, 5 Sep 2022 14:21:13 +0000
Subject: [PATCH 2/2] Update template

---
 srcpkgs/EncryptPad/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
index 498b1e3f4e23..fdc55a5b9637 100644
--- a/srcpkgs/EncryptPad/template
+++ b/srcpkgs/EncryptPad/template
@@ -4,6 +4,7 @@ version=0.5.0.1
 revision=1
 build_style=configure
 configure_script="./configure.py"
+nocross="Flaky build configuration."
 hostmakedepends="pkg-config python3 qt5-qmake"
 makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
 short_desc="Minimalist secure text editor and file encryptor"

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (17 preceding siblings ...)
  2022-09-06 13:01 ` ZyxerZyxani
@ 2022-09-06 13:27 ` ZyxerZyxani
  2022-09-06 13:49 ` ZyxerZyxani
                   ` (4 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-09-06 13:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From 06331204b8cf87c1ae9d636d41e9a66845737430 Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..498b1e3f4e23
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,27 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: [PR PATCH] [Updated] New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (18 preceding siblings ...)
  2022-09-06 13:27 ` ZyxerZyxani
@ 2022-09-06 13:49 ` ZyxerZyxani
  2022-12-06  2:29 ` github-actions
                   ` (3 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-09-06 13:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ZyxerZyxani/void-packages encryptpad
https://github.com/void-linux/void-packages/pull/38249

New package EncryptPad-0.5.0.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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

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

From 36f2a22787ada80867b2b138454d97f20bd9d2f8 Mon Sep 17 00:00:00 2001
From: Zyxer Zyxani <zyxerzyxani@cryptolab.net>
Date: Sun, 24 Jul 2022 19:05:11 +0200
Subject: [PATCH] New package: EncryptPad-0.5.0.1

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

diff --git a/srcpkgs/EncryptPad/template b/srcpkgs/EncryptPad/template
new file mode 100644
index 000000000000..fdc55a5b9637
--- /dev/null
+++ b/srcpkgs/EncryptPad/template
@@ -0,0 +1,28 @@
+# Template file for 'EncryptPad'
+pkgname=EncryptPad
+version=0.5.0.1
+revision=1
+build_style=configure
+configure_script="./configure.py"
+nocross="Flaky build configuration."
+hostmakedepends="pkg-config python3 qt5-qmake"
+makedepends="botan-devel bzip2-devel qt5-devel zlib-devel"
+short_desc="Minimalist secure text editor and file encryptor"
+maintainer="Zyxer Zyxani <zyxerzyxani@cryptolab.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/evpo/EncryptPad"
+changelog="https://github.com/evpo/EncryptPad/blob/master/CHANGES.md"
+distfiles="https://github.com/evpo/EncryptPad/archive/v${version}.tar.gz"
+checksum=8518864441d25df58e12d9d400d256a7ae1ff20dc9037954a0c8298d4d1211f5
+
+do_install() {
+	vbin bin/release/encryptcli
+	vbin bin/release/encryptpad
+
+	vinstall encryptpad.desktop 644 usr/share/applications
+	vinstall encryptpad.xml 644 usr/share/mime/packages
+
+	for res in 16x16 32x32 128x128; do
+		vinstall images/icns.iconset/icon_${res}.png 644 usr/share/icons/hicolor/${res}/apps encryptpad.png
+	done
+}

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (19 preceding siblings ...)
  2022-09-06 13:49 ` ZyxerZyxani
@ 2022-12-06  2:29 ` github-actions
  2022-12-14  7:00 ` ZyxerZyxani
                   ` (2 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: github-actions @ 2022-12-06  2:29 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/38249#issuecomment-1338641944

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (20 preceding siblings ...)
  2022-12-06  2:29 ` github-actions
@ 2022-12-14  7:00 ` ZyxerZyxani
  2023-03-16  1:57 ` github-actions
  2023-03-31  1:55 ` [PR PATCH] [Closed]: " github-actions
  23 siblings, 0 replies; 25+ messages in thread
From: ZyxerZyxani @ 2022-12-14  7:00 UTC (permalink / raw)
  To: ml

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

New comment by ZyxerZyxani on void-packages repository

https://github.com/void-linux/void-packages/pull/38249#issuecomment-1350505588

Comment:
Bump

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

* Re: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (21 preceding siblings ...)
  2022-12-14  7:00 ` ZyxerZyxani
@ 2023-03-16  1:57 ` github-actions
  2023-03-31  1:55 ` [PR PATCH] [Closed]: " github-actions
  23 siblings, 0 replies; 25+ messages in thread
From: github-actions @ 2023-03-16  1:57 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/38249#issuecomment-1471161110

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

* Re: [PR PATCH] [Closed]: New package EncryptPad-0.5.0.1
  2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
                   ` (22 preceding siblings ...)
  2023-03-16  1:57 ` github-actions
@ 2023-03-31  1:55 ` github-actions
  23 siblings, 0 replies; 25+ messages in thread
From: github-actions @ 2023-03-31  1:55 UTC (permalink / raw)
  To: ml

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

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

New package EncryptPad-0.5.0.1
https://github.com/void-linux/void-packages/pull/38249

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

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




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

end of thread, other threads:[~2023-03-31  1:55 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-24 17:20 [PR PATCH] New package EncryptPad-0.5.0.1 ZyxerZyxani
2022-07-24 17:38 ` [PR REVIEW] " classabbyamp
2022-07-24 17:40 ` ZyxerZyxani
2022-07-24 17:41 ` ZyxerZyxani
2022-07-24 17:47 ` [PR PATCH] [Updated] " ZyxerZyxani
2022-07-24 17:55 ` ZyxerZyxani
2022-07-24 17:56 ` [PR REVIEW] " ZyxerZyxani
2022-07-24 18:00 ` classabbyamp
2022-07-24 18:23 ` ZyxerZyxani
2022-07-24 18:25 ` classabbyamp
2022-07-24 18:36 ` [PR PATCH] [Updated] " ZyxerZyxani
2022-07-24 18:51 ` ZyxerZyxani
2022-07-24 18:57 ` ZyxerZyxani
2022-07-25  7:40 ` tranzystorek-io
2022-08-05  1:00 ` abenson
2022-08-05  1:01 ` abenson
2022-09-05 14:12 ` [PR PATCH] [Updated] " ZyxerZyxani
2022-09-05 14:21 ` ZyxerZyxani
2022-09-06 13:01 ` ZyxerZyxani
2022-09-06 13:27 ` ZyxerZyxani
2022-09-06 13:49 ` ZyxerZyxani
2022-12-06  2:29 ` github-actions
2022-12-14  7:00 ` ZyxerZyxani
2023-03-16  1:57 ` github-actions
2023-03-31  1:55 ` [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).