Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: melt-0.3.0
@ 2022-04-27 23:14 dmarto
  2022-04-27 23:44 ` [PR PATCH] [Updated] " dmarto
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: dmarto @ 2022-04-27 23:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dmarto/void-packages melt
https://github.com/void-linux/void-packages/pull/36888

New package: melt-0.3.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/36888.patch is attached

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

From ced48b5ec4547656d09ab47813193ba08d2ea9f9 Mon Sep 17 00:00:00 2001
From: Martin Dimov <martin@dmarto.com>
Date: Thu, 28 Apr 2022 02:10:48 +0300
Subject: [PATCH] New package: melt-0.3.0

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

diff --git a/srcpkgs/melt/template b/srcpkgs/melt/template
new file mode 100644
index 000000000000..a6c6a6c862ca
--- /dev/null
+++ b/srcpkgs/melt/template
@@ -0,0 +1,34 @@
+# Template file for 'melt'
+pkgname=melt
+version=0.3.0
+revision=1
+create_wrksrc=yes
+build_style=go
+go_import_path="github.com/charmbracelet/melt"
+go_package="${go_import_path}/cmd/melt"
+short_desc="Backup and restore Ed25519 SSH keys with seed words"
+maintainer="Martin Dimov <martin@dmarto.com>"
+license="MIT"
+homepage="https://github.com/charmbracelet/melt"
+distfiles="https://github.com/charmbracelet/melt/releases/download/v${version}/melt-${version}.tar.gz"
+checksum=43a18e1be9aa541c63139abf895a8f8a58e2fcf6016e3f85f647823be28b43e8
+conflicts="mlt" # bin and manpage name conflict
+
+post_build() {
+	./scripts/manpages.sh
+	./scripts/completions.sh
+}
+
+do_check() {
+	go test -v
+}
+
+post_install() {
+	vlicense LICENSE.md
+
+	vman manpages/melt.1.gz
+
+	for shell in bash fish zsh; do
+		vcompletion ./completions/melt.$shell $shell
+	done
+}

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

* Re: [PR PATCH] [Updated] New package: melt-0.3.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
@ 2022-04-27 23:44 ` dmarto
  2022-04-28  4:46 ` [PR REVIEW] " classabbyamp
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-04-27 23:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dmarto/void-packages melt
https://github.com/void-linux/void-packages/pull/36888

New package: melt-0.3.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/36888.patch is attached

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

From 936b39a6f354d68954223f9304a98fad47a2ca0a Mon Sep 17 00:00:00 2001
From: Martin Dimov <martin@dmarto.com>
Date: Thu, 28 Apr 2022 02:10:48 +0300
Subject: [PATCH] New package: melt-0.3.0

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

diff --git a/srcpkgs/melt/template b/srcpkgs/melt/template
new file mode 100644
index 000000000000..c19ce31329b5
--- /dev/null
+++ b/srcpkgs/melt/template
@@ -0,0 +1,32 @@
+# Template file for 'melt'
+pkgname=melt
+version=0.3.0
+revision=1
+create_wrksrc=yes
+build_style=go
+build_helper=qemu
+go_import_path="github.com/charmbracelet/melt"
+go_package="${go_import_path}/cmd/melt"
+short_desc="Backup and restore Ed25519 SSH keys with seed words"
+maintainer="Martin Dimov <martin@dmarto.com>"
+license="MIT"
+homepage="https://github.com/charmbracelet/melt"
+distfiles="https://github.com/charmbracelet/melt/releases/download/v${version}/melt-${version}.tar.gz"
+checksum=43a18e1be9aa541c63139abf895a8f8a58e2fcf6016e3f85f647823be28b43e8
+conflicts="mlt" # bin and manpage name conflict
+
+do_check() {
+	go test -v ${go_package}
+}
+
+post_install() {
+	vlicense LICENSE.md
+
+	vtargetrun ${DESTDIR}/usr/bin/melt man > melt.1
+	vman melt.1
+
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/melt completion ${shell} > completions.${shell}
+		vcompletion completions.${shell} ${shell}
+	done
+}

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

* Re: [PR REVIEW] New package: melt-0.3.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
  2022-04-27 23:44 ` [PR PATCH] [Updated] " dmarto
@ 2022-04-28  4:46 ` classabbyamp
  2022-04-28 10:22 ` dmarto
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: classabbyamp @ 2022-04-28  4:46 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#discussion_r860477515

Comment:
the github-built release archive (`https://github.com/charmbracelet/melt/archive/refs/tags/v${version}.tar.gz`) has exactly the same contents, but doesn't need create_wrksrc

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

* Re: [PR REVIEW] New package: melt-0.3.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
  2022-04-27 23:44 ` [PR PATCH] [Updated] " dmarto
  2022-04-28  4:46 ` [PR REVIEW] " classabbyamp
@ 2022-04-28 10:22 ` dmarto
  2022-05-11  1:17 ` [PR PATCH] [Updated] " dmarto
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-04-28 10:22 UTC (permalink / raw)
  To: ml

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

New review comment by dmarto on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#discussion_r860726201

Comment:
indeed, but I prefer to use the one made and provided by the maintainers 

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

* Re: [PR PATCH] [Updated] New package: melt-0.3.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (2 preceding siblings ...)
  2022-04-28 10:22 ` dmarto
@ 2022-05-11  1:17 ` dmarto
  2022-05-11  1:17 ` New package: melt-0.4.0 dmarto
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-05-11  1:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dmarto/void-packages melt
https://github.com/void-linux/void-packages/pull/36888

New package: melt-0.3.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/36888.patch is attached

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

From b4fcf3bc3afb0992e92bdbb38580a3166720bdf5 Mon Sep 17 00:00:00 2001
From: Martin Dimov <martin@dmarto.com>
Date: Thu, 28 Apr 2022 02:10:48 +0300
Subject: [PATCH] New package: melt-0.4.0

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

diff --git a/srcpkgs/melt/template b/srcpkgs/melt/template
new file mode 100644
index 000000000000..477d0dfcbe52
--- /dev/null
+++ b/srcpkgs/melt/template
@@ -0,0 +1,32 @@
+# Template file for 'melt'
+pkgname=melt
+version=0.4.0
+revision=1
+create_wrksrc=yes
+build_style=go
+build_helper=qemu
+go_import_path="github.com/charmbracelet/melt"
+go_package="${go_import_path}/cmd/melt"
+short_desc="Backup and restore Ed25519 SSH keys with seed words"
+maintainer="Martin Dimov <martin@dmarto.com>"
+license="MIT"
+homepage="https://github.com/charmbracelet/melt"
+distfiles="https://github.com/charmbracelet/melt/releases/download/v${version}/melt-${version}.tar.gz"
+checksum=a2e67936a608c06dd4613d097d953e2b5a1cb3c3fe2224d87d964aef236ae623
+conflicts="mlt" # bin and manpage name conflict
+
+do_check() {
+	go test -v ${go_package}
+}
+
+post_install() {
+	vlicense LICENSE.md
+
+	vtargetrun ${DESTDIR}/usr/bin/melt man > melt.1
+	vman melt.1
+
+	for shell in bash fish zsh; do
+		vtargetrun ${DESTDIR}/usr/bin/melt completion ${shell} > completions.${shell}
+		vcompletion completions.${shell} ${shell}
+	done
+}

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

* Re: New package: melt-0.4.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (3 preceding siblings ...)
  2022-05-11  1:17 ` [PR PATCH] [Updated] " dmarto
@ 2022-05-11  1:17 ` dmarto
  2022-05-12 23:11 ` dmarto
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-05-11  1:17 UTC (permalink / raw)
  To: ml

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

New comment by dmarto on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#issuecomment-1123075600

Comment:
updated to new release 

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

* Re: New package: melt-0.4.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (4 preceding siblings ...)
  2022-05-11  1:17 ` New package: melt-0.4.0 dmarto
@ 2022-05-12 23:11 ` dmarto
  2022-06-20 23:11 ` dmarto
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-05-12 23:11 UTC (permalink / raw)
  To: ml

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

New comment by dmarto on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#issuecomment-1123075600

Comment:
updated to new release 

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

* Re: New package: melt-0.4.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (5 preceding siblings ...)
  2022-05-12 23:11 ` dmarto
@ 2022-06-20 23:11 ` dmarto
  2022-06-20 23:11 ` [PR PATCH] [Closed]: " dmarto
  2022-09-15 12:46 ` dmarto
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-06-20 23:11 UTC (permalink / raw)
  To: ml

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

New comment by dmarto on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#issuecomment-1160938004

Comment:
With the release of Drew DeVault's Himitsu, I believe to have found a better workflow; thus, loosing interest in `melt`.

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

* Re: [PR PATCH] [Closed]: New package: melt-0.4.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (6 preceding siblings ...)
  2022-06-20 23:11 ` dmarto
@ 2022-06-20 23:11 ` dmarto
  2022-09-15 12:46 ` dmarto
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-06-20 23:11 UTC (permalink / raw)
  To: ml

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

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

New package: melt-0.4.0
https://github.com/void-linux/void-packages/pull/36888

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

* Re: New package: melt-0.4.0
  2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
                   ` (7 preceding siblings ...)
  2022-06-20 23:11 ` [PR PATCH] [Closed]: " dmarto
@ 2022-09-15 12:46 ` dmarto
  8 siblings, 0 replies; 10+ messages in thread
From: dmarto @ 2022-09-15 12:46 UTC (permalink / raw)
  To: ml

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

New comment by dmarto on void-packages repository

https://github.com/void-linux/void-packages/pull/36888#issuecomment-1160938004

Comment:
With the release of Drew DeVault's Himitsu, I believe to have found a better workflow; thus, loosing interest in `melt`.

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

end of thread, other threads:[~2022-09-15 12:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-27 23:14 [PR PATCH] New package: melt-0.3.0 dmarto
2022-04-27 23:44 ` [PR PATCH] [Updated] " dmarto
2022-04-28  4:46 ` [PR REVIEW] " classabbyamp
2022-04-28 10:22 ` dmarto
2022-05-11  1:17 ` [PR PATCH] [Updated] " dmarto
2022-05-11  1:17 ` New package: melt-0.4.0 dmarto
2022-05-12 23:11 ` dmarto
2022-06-20 23:11 ` dmarto
2022-06-20 23:11 ` [PR PATCH] [Closed]: " dmarto
2022-09-15 12:46 ` dmarto

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