Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: mmv-go 0.1.6
@ 2023-04-27 20:54 akierig
  2023-04-27 21:26 ` [PR PATCH] [Updated] " akierig
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: akierig @ 2023-04-27 20:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/akierig/void-packages mmv-go
https://github.com/void-linux/void-packages/pull/43653

New package: mmv-go 0.1.6
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

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

From 3686801b704cbda080cf5376433d9113be698e74 Mon Sep 17 00:00:00 2001
From: anelki <akierig@fastmail.de>
Date: Thu, 27 Apr 2023 15:51:23 -0500
Subject: [PATCH] New package: mmv-go 0.1.6

---
 srcpkgs/mmv-go/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/mmv-go/template

diff --git a/srcpkgs/mmv-go/template b/srcpkgs/mmv-go/template
new file mode 100644
index 000000000000..a42588733fd2
--- /dev/null
+++ b/srcpkgs/mmv-go/template
@@ -0,0 +1,22 @@
+# Template file for 'mmv-go'
+pkgname=mmv-go
+version=0.1.6
+revision=1
+build_style=go
+go_import_path=github.com/itchyny/mmv/cmd/mmv@latest
+short_desc="Rename and move multiple files at once with your editor"
+maintainer="anelki <akierig@fastmail.de>"
+license="MIT"
+homepage="https://github.com/itchyny/mmv"
+distfiles="https://github.com/itchyny/mmv/archive/refs/tags/v${version}.tar.gz"
+checksum=18d181e6a53437ad18c4409f3c423bc23687152a17b53a605dde13dfffb0d215
+
+do_install() {
+	for f in ${GOPATH}/bin/*; do
+		vbin $f mmv-go
+	done
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
@ 2023-04-27 21:26 ` akierig
  2023-04-27 21:28 ` akierig
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: akierig @ 2023-04-27 21:26 UTC (permalink / raw)
  To: ml

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

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

https://github.com/akierig/void-packages mmv-go
https://github.com/void-linux/void-packages/pull/43653

New package: mmv-go 0.1.6
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

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

From 7a78b386592b45b5fc6058df8e0f1869ed99c20d Mon Sep 17 00:00:00 2001
From: anelki <akierig@fastmail.de>
Date: Thu, 27 Apr 2023 15:51:23 -0500
Subject: [PATCH] New package: mmv-go 0.1.6

---
 srcpkgs/mmv-go/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/mmv-go/template

diff --git a/srcpkgs/mmv-go/template b/srcpkgs/mmv-go/template
new file mode 100644
index 000000000000..7114a94157c9
--- /dev/null
+++ b/srcpkgs/mmv-go/template
@@ -0,0 +1,22 @@
+# Template file for 'mmv-go'
+pkgname=mmv-go
+version=0.1.6
+revision=1
+build_style=go
+go_import_path=github.com/itchyny/mmv/cmd/mmv@latest
+short_desc="Rename and move multiple files at once with your editor"
+maintainer="anelki <akierig@fastmail.de>"
+license="MIT"
+homepage="https://github.com/itchyny/mmv"
+distfiles="https://github.com/itchyny/mmv/archive/refs/tags/v${version}.tar.gz"
+checksum=18d181e6a53437ad18c4409f3c423bc23687152a17b53a605dde13dfffb0d215
+
+do_install() {
+	for f in ${GOPATH}/bin/* ${GOPATH}/bin/**/*; do
+		vbin $f mmv-go
+	done
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
  2023-04-27 21:26 ` [PR PATCH] [Updated] " akierig
@ 2023-04-27 21:28 ` akierig
  2023-04-27 21:32 ` akierig
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: akierig @ 2023-04-27 21:28 UTC (permalink / raw)
  To: ml

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

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

https://github.com/akierig/void-packages mmv-go
https://github.com/void-linux/void-packages/pull/43653

New package: mmv-go 0.1.6
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

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

From 83419cd23821dc4571cbf5dc319f68bed5d7655f Mon Sep 17 00:00:00 2001
From: anelki <akierig@fastmail.de>
Date: Thu, 27 Apr 2023 15:51:23 -0500
Subject: [PATCH] New package: mmv-go 0.1.6

---
 srcpkgs/mmv-go/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/mmv-go/template

diff --git a/srcpkgs/mmv-go/template b/srcpkgs/mmv-go/template
new file mode 100644
index 000000000000..a42588733fd2
--- /dev/null
+++ b/srcpkgs/mmv-go/template
@@ -0,0 +1,22 @@
+# Template file for 'mmv-go'
+pkgname=mmv-go
+version=0.1.6
+revision=1
+build_style=go
+go_import_path=github.com/itchyny/mmv/cmd/mmv@latest
+short_desc="Rename and move multiple files at once with your editor"
+maintainer="anelki <akierig@fastmail.de>"
+license="MIT"
+homepage="https://github.com/itchyny/mmv"
+distfiles="https://github.com/itchyny/mmv/archive/refs/tags/v${version}.tar.gz"
+checksum=18d181e6a53437ad18c4409f3c423bc23687152a17b53a605dde13dfffb0d215
+
+do_install() {
+	for f in ${GOPATH}/bin/*; do
+		vbin $f mmv-go
+	done
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
  2023-04-27 21:26 ` [PR PATCH] [Updated] " akierig
  2023-04-27 21:28 ` akierig
@ 2023-04-27 21:32 ` akierig
  2023-04-27 21:38 ` [PR REVIEW] " mhmdanas
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: akierig @ 2023-04-27 21:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/akierig/void-packages mmv-go
https://github.com/void-linux/void-packages/pull/43653

New package: mmv-go 0.1.6
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

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

From d459ce67f70f955059fbae8495bbaa6243e97fdb Mon Sep 17 00:00:00 2001
From: anelki <akierig@fastmail.de>
Date: Thu, 27 Apr 2023 15:51:23 -0500
Subject: [PATCH] New package: mmv-go 0.1.6

---
 srcpkgs/mmv-go/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/mmv-go/template

diff --git a/srcpkgs/mmv-go/template b/srcpkgs/mmv-go/template
new file mode 100644
index 000000000000..0b747cee3e6e
--- /dev/null
+++ b/srcpkgs/mmv-go/template
@@ -0,0 +1,17 @@
+# Template file for 'mmv-go'
+pkgname=mmv-go
+version=0.1.6
+revision=1
+build_style=go
+go_import_path=github.com/itchyny/mmv/cmd/mmv@latest
+short_desc="Rename and move multiple files at once with your editor"
+maintainer="anelki <akierig@fastmail.de>"
+license="MIT"
+homepage="https://github.com/itchyny/mmv"
+distfiles="https://github.com/itchyny/mmv/archive/refs/tags/v${version}.tar.gz"
+checksum=18d181e6a53437ad18c4409f3c423bc23687152a17b53a605dde13dfffb0d215
+
+post_install() {
+	mv ${DESTDIR}/usr/bin/mmv ${DESTDIR}/usr/bin/mmv-go
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (2 preceding siblings ...)
  2023-04-27 21:32 ` akierig
@ 2023-04-27 21:38 ` mhmdanas
  2023-04-27 21:38 ` mhmdanas
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mhmdanas @ 2023-04-27 21:38 UTC (permalink / raw)
  To: ml

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

New review comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/43653#discussion_r1179705240

Comment:
```suggestion
	mv ${DESTDIR}/usr/bin/mmv{,-go}
```
or, if you prefer,
```suggestion
	mv ${DESTDIR}/usr/bin/{mmv,mmv-go}
```

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

* Re: [PR REVIEW] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (3 preceding siblings ...)
  2023-04-27 21:38 ` [PR REVIEW] " mhmdanas
@ 2023-04-27 21:38 ` mhmdanas
  2023-04-27 22:03 ` paper42
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mhmdanas @ 2023-04-27 21:38 UTC (permalink / raw)
  To: ml

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

New review comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/43653#discussion_r1179703671

Comment:
```suggestion
homepage="https://github.com/itchyny/mmv"
changelog="https://raw.githubusercontent.com/itchyny/mmv/main/CHANGELOG.md"
```

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

* Re: [PR REVIEW] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (4 preceding siblings ...)
  2023-04-27 21:38 ` mhmdanas
@ 2023-04-27 22:03 ` paper42
  2023-04-27 22:13 ` [PR PATCH] [Updated] " akierig
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: paper42 @ 2023-04-27 22:03 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/43653#discussion_r1179724545

Comment:
I don't think that's necessary or more readable

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

* Re: [PR PATCH] [Updated] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (5 preceding siblings ...)
  2023-04-27 22:03 ` paper42
@ 2023-04-27 22:13 ` akierig
  2023-04-28 17:42 ` [PR REVIEW] " mhmdanas
  2023-06-24 12:06 ` [PR PATCH] [Merged]: " Duncaen
  8 siblings, 0 replies; 10+ messages in thread
From: akierig @ 2023-04-27 22:13 UTC (permalink / raw)
  To: ml

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

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

https://github.com/akierig/void-packages mmv-go
https://github.com/void-linux/void-packages/pull/43653

New package: mmv-go 0.1.6
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

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

From c71eb547ead9c58488b23706b8dd804abb9de28c Mon Sep 17 00:00:00 2001
From: anelki <akierig@fastmail.de>
Date: Thu, 27 Apr 2023 15:51:23 -0500
Subject: [PATCH] New package: mmv-go 0.1.6

---
 srcpkgs/mmv-go/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/mmv-go/template

diff --git a/srcpkgs/mmv-go/template b/srcpkgs/mmv-go/template
new file mode 100644
index 000000000000..28f23c1354fa
--- /dev/null
+++ b/srcpkgs/mmv-go/template
@@ -0,0 +1,18 @@
+# Template file for 'mmv-go'
+pkgname=mmv-go
+version=0.1.6
+revision=1
+build_style=go
+go_import_path=github.com/itchyny/mmv/cmd/mmv@latest
+short_desc="Rename and move multiple files at once with your editor"
+maintainer="anelki <akierig@fastmail.de>"
+license="MIT"
+homepage="https://github.com/itchyny/mmv"
+changelog="https://raw.githubusercontent.com/itchyny/mmv/main/CHANGELOG.md"
+distfiles="https://github.com/itchyny/mmv/archive/refs/tags/v${version}.tar.gz"
+checksum=18d181e6a53437ad18c4409f3c423bc23687152a17b53a605dde13dfffb0d215
+
+post_install() {
+	mv ${DESTDIR}/usr/bin/mmv ${DESTDIR}/usr/bin/mmv-go
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (6 preceding siblings ...)
  2023-04-27 22:13 ` [PR PATCH] [Updated] " akierig
@ 2023-04-28 17:42 ` mhmdanas
  2023-06-24 12:06 ` [PR PATCH] [Merged]: " Duncaen
  8 siblings, 0 replies; 10+ messages in thread
From: mhmdanas @ 2023-04-28 17:42 UTC (permalink / raw)
  To: ml

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

New review comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/43653#discussion_r1180666352

Comment:
I prefer it for brevity, but it's no big deal.

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

* Re: [PR PATCH] [Merged]: New package: mmv-go 0.1.6
  2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
                   ` (7 preceding siblings ...)
  2023-04-28 17:42 ` [PR REVIEW] " mhmdanas
@ 2023-06-24 12:06 ` Duncaen
  8 siblings, 0 replies; 10+ messages in thread
From: Duncaen @ 2023-06-24 12:06 UTC (permalink / raw)
  To: ml

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

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

New package: mmv-go 0.1.6
https://github.com/void-linux/void-packages/pull/43653

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, x86_64
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl (crossbuild)
  - aarch64 (crossbuild)
  - aarch64-musl (crossbuild)


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

end of thread, other threads:[~2023-06-24 12:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-27 20:54 [PR PATCH] New package: mmv-go 0.1.6 akierig
2023-04-27 21:26 ` [PR PATCH] [Updated] " akierig
2023-04-27 21:28 ` akierig
2023-04-27 21:32 ` akierig
2023-04-27 21:38 ` [PR REVIEW] " mhmdanas
2023-04-27 21:38 ` mhmdanas
2023-04-27 22:03 ` paper42
2023-04-27 22:13 ` [PR PATCH] [Updated] " akierig
2023-04-28 17:42 ` [PR REVIEW] " mhmdanas
2023-06-24 12:06 ` [PR PATCH] [Merged]: " Duncaen

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