Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: buf-0.24.0
@ 2020-10-03 18:03 gbrlsnchs
  2020-10-14 14:29 ` [PR PATCH] [Updated] " gbrlsnchs
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-10-03 18:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gbrlsnchs/void-packages buf
https://github.com/void-linux/void-packages/pull/25319

New package: buf-0.24.0


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

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

From 9f496c082392f011188c8ec33de1c13280646baa Mon Sep 17 00:00:00 2001
From: Gabriel Sanches <gabriel@gsr.dev>
Date: Fri, 2 Oct 2020 19:19:27 -0300
Subject: [PATCH] New package: buf-0.24.0

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

diff --git a/srcpkgs/buf/template b/srcpkgs/buf/template
new file mode 100644
index 00000000000..619564f621b
--- /dev/null
+++ b/srcpkgs/buf/template
@@ -0,0 +1,34 @@
+# Template file for 'buf'
+pkgname=buf
+version=0.24.0
+revision=1
+build_style=go
+build_helper=qemu
+_base_path=github.com/bufbuild/buf
+go_import_path=${_base_path}/cmd/buf
+go_ldflags="-s -w"
+short_desc="Utility tool for Protocol Buffers"
+maintainer="Gabriel Sanches <gabriel@gsr.dev>"
+license="Apache-2.0"
+homepage="https://buf.build/"
+distfiles="https://${_base_path}/archive/v${version}.tar.gz"
+checksum=046f5628280e60a93db6a8594f2d0da196365f7de72e4e5bef252a4e4a377f94
+
+post_build() {
+	buf=$(find $GOPATH/bin -name $pkgname)
+	for shell in bash fish zsh; do
+		vtargetrun $buf ${shell}-completion > ${pkgname}.${shell}
+	done
+
+	# Build additional binaries.
+	for plugin in protoc-gen-buf-check-breaking protoc-gen-buf-check-lint; do
+		go_package=${_base_path}/cmd/${plugin}
+		do_build
+	done
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion ${pkgname}.$shell $shell
+	done
+}

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

* Re: [PR PATCH] [Updated] New package: buf-0.24.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
@ 2020-10-14 14:29 ` gbrlsnchs
  2020-11-25 17:56 ` [PR PATCH] [Updated] New package: buf-0.26.0 gbrlsnchs
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-10-14 14:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gbrlsnchs/void-packages buf
https://github.com/void-linux/void-packages/pull/25319

New package: buf-0.24.0


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

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

From 270c793dc6764cd54d04c9a9a0a3e0f5268481f8 Mon Sep 17 00:00:00 2001
From: Gabriel Sanches <gabriel@gsr.dev>
Date: Fri, 2 Oct 2020 19:19:27 -0300
Subject: [PATCH] New package: buf-0.26.0

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

diff --git a/srcpkgs/buf/template b/srcpkgs/buf/template
new file mode 100644
index 00000000000..18d94544d2f
--- /dev/null
+++ b/srcpkgs/buf/template
@@ -0,0 +1,34 @@
+# Template file for 'buf'
+pkgname=buf
+version=0.26.0
+revision=1
+build_style=go
+build_helper=qemu
+_base_path=github.com/bufbuild/buf
+go_import_path=${_base_path}/cmd/buf
+go_ldflags="-s -w"
+short_desc="Utility tool for Protocol Buffers"
+maintainer="Gabriel Sanches <gabriel@gsr.dev>"
+license="Apache-2.0"
+homepage="https://buf.build/"
+distfiles="https://${_base_path}/archive/v${version}.tar.gz"
+checksum=09d00c41b2b0befbb2da59297fec809dbdfdc9ac2f10c8bd3c6b29a0d5584dc1
+
+post_build() {
+	buf=$(find $GOPATH/bin -name $pkgname)
+	for shell in bash fish zsh; do
+		vtargetrun $buf ${shell}-completion > ${pkgname}.${shell}
+	done
+
+	# Build additional binaries.
+	for plugin in protoc-gen-buf-check-breaking protoc-gen-buf-check-lint; do
+		go_package=${_base_path}/cmd/${plugin}
+		do_build
+	done
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion ${pkgname}.$shell $shell
+	done
+}

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

* Re: [PR PATCH] [Updated] New package: buf-0.26.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
  2020-10-14 14:29 ` [PR PATCH] [Updated] " gbrlsnchs
@ 2020-11-25 17:56 ` gbrlsnchs
  2020-11-25 18:19 ` New package: buf-0.32.0 Duncaen
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-11-25 17:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gbrlsnchs/void-packages buf
https://github.com/void-linux/void-packages/pull/25319

New package: buf-0.26.0


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

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

From 216aab5dc012e9188b72b21a641686d9f40ddebf Mon Sep 17 00:00:00 2001
From: Gabriel Sanches <gabriel@gsr.dev>
Date: Fri, 2 Oct 2020 19:19:27 -0300
Subject: [PATCH] New package: buf-0.32.0

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

diff --git a/srcpkgs/buf/template b/srcpkgs/buf/template
new file mode 100644
index 00000000000..a93066710f6
--- /dev/null
+++ b/srcpkgs/buf/template
@@ -0,0 +1,34 @@
+# Template file for 'buf'
+pkgname=buf
+version=0.32.0
+revision=1
+build_style=go
+build_helper=qemu
+_base_path=github.com/bufbuild/buf
+go_import_path=${_base_path}/cmd/buf
+go_ldflags="-s -w"
+short_desc="Utility tool for Protocol Buffers"
+maintainer="Gabriel Sanches <gabriel@gsr.dev>"
+license="Apache-2.0"
+homepage="https://buf.build/"
+distfiles="https://${_base_path}/archive/v${version}.tar.gz"
+checksum=a4aebeaa77404bc99fd64bf0e667a7240c0a6228ed43a59043f42314560e64f4
+
+post_build() {
+	buf=$(find $GOPATH/bin -name $pkgname)
+	for shell in bash fish zsh; do
+		vtargetrun $buf ${shell}-completion > ${pkgname}.${shell}
+	done
+
+	# Build additional binaries.
+	for plugin in protoc-gen-buf-check-breaking protoc-gen-buf-check-lint; do
+		go_package=${_base_path}/cmd/${plugin}
+		do_build
+	done
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion ${pkgname}.$shell $shell
+	done
+}

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

* Re: New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
  2020-10-14 14:29 ` [PR PATCH] [Updated] " gbrlsnchs
  2020-11-25 17:56 ` [PR PATCH] [Updated] New package: buf-0.26.0 gbrlsnchs
@ 2020-11-25 18:19 ` Duncaen
  2020-11-25 18:58 ` [PR PATCH] [Updated] " gbrlsnchs
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Duncaen @ 2020-11-25 18:19 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/25319#issuecomment-733873825

Comment:
You can define multiple packages to build using go_package: https://github.com/void-linux/void-packages/blob/d1a3c848f631ecfefd43f50be7f5616f82c36cee/srcpkgs/syncthing/template#L6-L11

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

* Re: [PR PATCH] [Updated] New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
                   ` (2 preceding siblings ...)
  2020-11-25 18:19 ` New package: buf-0.32.0 Duncaen
@ 2020-11-25 18:58 ` gbrlsnchs
  2020-11-25 18:59 ` gbrlsnchs
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-11-25 18:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gbrlsnchs/void-packages buf
https://github.com/void-linux/void-packages/pull/25319

New package: buf-0.32.0


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

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

From d0880ba47a8a92d536cf0b66cbb131a88547f077 Mon Sep 17 00:00:00 2001
From: Gabriel Sanches <gabriel@gsr.dev>
Date: Fri, 2 Oct 2020 19:19:27 -0300
Subject: [PATCH] New package: buf-0.32.0

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

diff --git a/srcpkgs/buf/template b/srcpkgs/buf/template
new file mode 100644
index 00000000000..0171944430a
--- /dev/null
+++ b/srcpkgs/buf/template
@@ -0,0 +1,31 @@
+# Template file for 'buf'
+pkgname=buf
+version=0.32.0
+revision=1
+build_style=go
+build_helper=qemu
+go_import_path="github.com/bufbuild/buf"
+go_ldflags="-s -w"
+go_package="
+  ${go_import_path}/cmd/buf
+  ${go_import_path}/cmd/protoc-gen-buf-check-breaking
+  ${go_import_path}/cmd/protoc-gen-buf-check-lint"
+short_desc="Utility tool for Protocol Buffers"
+maintainer="Gabriel Sanches <gabriel@gsr.dev>"
+license="Apache-2.0"
+homepage="https://buf.build/"
+distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
+checksum=a4aebeaa77404bc99fd64bf0e667a7240c0a6228ed43a59043f42314560e64f4
+
+post_build() {
+	buf=$(find $GOPATH/bin -name $pkgname)
+	for shell in bash fish zsh; do
+		vtargetrun $buf ${shell}-completion > ${pkgname}.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion ${pkgname}.$shell $shell
+	done
+}

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

* Re: [PR PATCH] [Updated] New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
                   ` (3 preceding siblings ...)
  2020-11-25 18:58 ` [PR PATCH] [Updated] " gbrlsnchs
@ 2020-11-25 18:59 ` gbrlsnchs
  2020-11-25 19:00 ` gbrlsnchs
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-11-25 18:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/gbrlsnchs/void-packages buf
https://github.com/void-linux/void-packages/pull/25319

New package: buf-0.32.0


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

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

From 78bba1d5866fdddced9ca7d2effa6db3384975f8 Mon Sep 17 00:00:00 2001
From: Gabriel Sanches <gabriel@gsr.dev>
Date: Fri, 2 Oct 2020 19:19:27 -0300
Subject: [PATCH] New package: buf-0.32.0

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

diff --git a/srcpkgs/buf/template b/srcpkgs/buf/template
new file mode 100644
index 00000000000..f37811a879d
--- /dev/null
+++ b/srcpkgs/buf/template
@@ -0,0 +1,31 @@
+# Template file for 'buf'
+pkgname=buf
+version=0.32.0
+revision=1
+build_style=go
+build_helper=qemu
+go_import_path="github.com/bufbuild/buf"
+go_ldflags="-s -w"
+go_package="
+ ${go_import_path}/cmd/buf
+ ${go_import_path}/cmd/protoc-gen-buf-check-breaking
+ ${go_import_path}/cmd/protoc-gen-buf-check-lint"
+short_desc="Utility tool for Protocol Buffers"
+maintainer="Gabriel Sanches <gabriel@gsr.dev>"
+license="Apache-2.0"
+homepage="https://buf.build/"
+distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
+checksum=a4aebeaa77404bc99fd64bf0e667a7240c0a6228ed43a59043f42314560e64f4
+
+post_build() {
+	buf=$(find $GOPATH/bin -name $pkgname)
+	for shell in bash fish zsh; do
+		vtargetrun $buf ${shell}-completion > ${pkgname}.${shell}
+	done
+}
+
+post_install() {
+	for shell in bash fish zsh; do
+		vcompletion ${pkgname}.$shell $shell
+	done
+}

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

* Re: New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
                   ` (4 preceding siblings ...)
  2020-11-25 18:59 ` gbrlsnchs
@ 2020-11-25 19:00 ` gbrlsnchs
  2022-04-20  2:14 ` github-actions
  2022-05-04  2:15 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: gbrlsnchs @ 2020-11-25 19:00 UTC (permalink / raw)
  To: ml

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

New comment by gbrlsnchs on void-packages repository

https://github.com/void-linux/void-packages/pull/25319#issuecomment-733894820

Comment:
> You can define multiple packages to build using go_package:
> 
> https://github.com/void-linux/void-packages/blob/d1a3c848f631ecfefd43f50be7f5616f82c36cee/srcpkgs/syncthing/template#L6-L11

Done, thanks for the tip!

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

* Re: New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
                   ` (5 preceding siblings ...)
  2020-11-25 19:00 ` gbrlsnchs
@ 2022-04-20  2:14 ` github-actions
  2022-05-04  2:15 ` [PR PATCH] [Closed]: " github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2022-04-20  2:14 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/25319#issuecomment-1103384801

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

* Re: [PR PATCH] [Closed]: New package: buf-0.32.0
  2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
                   ` (6 preceding siblings ...)
  2022-04-20  2:14 ` github-actions
@ 2022-05-04  2:15 ` github-actions
  7 siblings, 0 replies; 9+ messages in thread
From: github-actions @ 2022-05-04  2:15 UTC (permalink / raw)
  To: ml

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

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

New package: buf-0.32.0
https://github.com/void-linux/void-packages/pull/25319

Description:


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

end of thread, other threads:[~2022-05-04  2:15 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-03 18:03 [PR PATCH] New package: buf-0.24.0 gbrlsnchs
2020-10-14 14:29 ` [PR PATCH] [Updated] " gbrlsnchs
2020-11-25 17:56 ` [PR PATCH] [Updated] New package: buf-0.26.0 gbrlsnchs
2020-11-25 18:19 ` New package: buf-0.32.0 Duncaen
2020-11-25 18:58 ` [PR PATCH] [Updated] " gbrlsnchs
2020-11-25 18:59 ` gbrlsnchs
2020-11-25 19:00 ` gbrlsnchs
2022-04-20  2:14 ` github-actions
2022-05-04  2:15 ` [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).