Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] no-more-secrets: update to 1.0.1.
@ 2022-09-06 19:52 icp1994
  2022-09-06 20:17 ` [PR PATCH] [Updated] " icp1994
  2022-09-07  4:00 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 2 replies; 3+ messages in thread
From: icp1994 @ 2022-09-06 19:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages no-more-secrets
https://github.com/void-linux/void-packages/pull/39137

no-more-secrets: update to 1.0.1.
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-no-more-secrets-39137.patch --]
[-- Type: text/x-diff, Size: 1096 bytes --]

From 4b3434aba66413c8f76a99dd128a0f7075985975 Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Tue, 6 Sep 2022 19:35:43 +0530
Subject: [PATCH] no-more-secrets: update to 1.0.1.

---
 srcpkgs/no-more-secrets/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/no-more-secrets/template b/srcpkgs/no-more-secrets/template
index 2ba485e29d3d..55a7241f5d23 100644
--- a/srcpkgs/no-more-secrets/template
+++ b/srcpkgs/no-more-secrets/template
@@ -1,6 +1,6 @@
 # Template file for 'no-more-secrets'
 pkgname=no-more-secrets
-version=0.3.3
+version=1.0.1
 revision=1
 build_style=gnu-makefile
 make_build_target="all"
@@ -9,7 +9,7 @@ maintainer="Alex Childs <misuchiru03+void@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/bartobri/no-more-secrets"
 distfiles="https://github.com/bartobri/no-more-secrets/archive/v${version}.tar.gz"
-checksum=cfcf408768c6b335780e46a84fbc121a649c4b87e0564fc972270e96630efdce
+checksum=4422e59bb3cf62bca3c73d1fdae771b83aab686cd044f73fe14b1b9c2af1cb1b
 
 do_install() {
 	for f in nms sneakers; do

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

* Re: [PR PATCH] [Updated] no-more-secrets: update to 1.0.1.
  2022-09-06 19:52 [PR PATCH] no-more-secrets: update to 1.0.1 icp1994
@ 2022-09-06 20:17 ` icp1994
  2022-09-07  4:00 ` [PR PATCH] [Merged]: " classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: icp1994 @ 2022-09-06 20:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/icp1994/void-packages no-more-secrets
https://github.com/void-linux/void-packages/pull/39137

no-more-secrets: update to 1.0.1.
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-no-more-secrets-39137.patch --]
[-- Type: text/x-diff, Size: 1770 bytes --]

From bada4b7b1a586ae4daf0c413da598d87641b773e Mon Sep 17 00:00:00 2001
From: icp <pangolin@vivaldi.net>
Date: Tue, 6 Sep 2022 19:35:43 +0530
Subject: [PATCH] no-more-secrets: update to 1.0.1.

---
 srcpkgs/no-more-secrets/patches/fix-musl.patch | 15 +++++++++++++++
 srcpkgs/no-more-secrets/template               |  4 ++--
 2 files changed, 17 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/no-more-secrets/patches/fix-musl.patch

diff --git a/srcpkgs/no-more-secrets/patches/fix-musl.patch b/srcpkgs/no-more-secrets/patches/fix-musl.patch
new file mode 100644
index 000000000000..0ae751d7294f
--- /dev/null
+++ b/srcpkgs/no-more-secrets/patches/fix-musl.patch
@@ -0,0 +1,15 @@
+--- a/src/nmstermio.c
++++ b/src/nmstermio.c
+@@ -296,7 +296,11 @@
+ 	static int state = 1;
+ 
+ 	if (!isatty(STDIN_FILENO)) {
++#ifdef __GLIBC__
+ 		stdin = freopen("/dev/tty", "r", stdin);
++#else
++		freopen("/dev/tty", "r", stdin);
++#endif
+ 	}
+ 	
+ 	if (s == 0) {
+
diff --git a/srcpkgs/no-more-secrets/template b/srcpkgs/no-more-secrets/template
index 2ba485e29d3d..55a7241f5d23 100644
--- a/srcpkgs/no-more-secrets/template
+++ b/srcpkgs/no-more-secrets/template
@@ -1,6 +1,6 @@
 # Template file for 'no-more-secrets'
 pkgname=no-more-secrets
-version=0.3.3
+version=1.0.1
 revision=1
 build_style=gnu-makefile
 make_build_target="all"
@@ -9,7 +9,7 @@ maintainer="Alex Childs <misuchiru03+void@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://github.com/bartobri/no-more-secrets"
 distfiles="https://github.com/bartobri/no-more-secrets/archive/v${version}.tar.gz"
-checksum=cfcf408768c6b335780e46a84fbc121a649c4b87e0564fc972270e96630efdce
+checksum=4422e59bb3cf62bca3c73d1fdae771b83aab686cd044f73fe14b1b9c2af1cb1b
 
 do_install() {
 	for f in nms sneakers; do

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

* Re: [PR PATCH] [Merged]: no-more-secrets: update to 1.0.1.
  2022-09-06 19:52 [PR PATCH] no-more-secrets: update to 1.0.1 icp1994
  2022-09-06 20:17 ` [PR PATCH] [Updated] " icp1994
@ 2022-09-07  4:00 ` classabbyamp
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2022-09-07  4:00 UTC (permalink / raw)
  To: ml

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

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

no-more-secrets: update to 1.0.1.
https://github.com/void-linux/void-packages/pull/39137

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**

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

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

end of thread, other threads:[~2022-09-07  4:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-06 19:52 [PR PATCH] no-more-secrets: update to 1.0.1 icp1994
2022-09-06 20:17 ` [PR PATCH] [Updated] " icp1994
2022-09-07  4:00 ` [PR PATCH] [Merged]: " classabbyamp

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