Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: bazelisk-1.12.2
@ 2022-08-22 12:33 n1c00o
  2022-08-22 15:31 ` [PR REVIEW] " classabbyamp
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: n1c00o @ 2022-08-22 12:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/n1c00o/void-packages feat/bazelisk
https://github.com/void-linux/void-packages/pull/38830

New package: bazelisk-1.12.2
This merge request adds a package description for Bazelisk (<https://github.com/bazelbuild/bazelisk>), which provides an simple and fast way to use and install Bazel.
This can be used by packages requiring Bazel in compilation, without the need of having to bootstrap Bazel, which is time-consuming and error-prone *(I am actively trying to get a cross-compile-ready package of Bazel from source, known as bootstrapping Bazel...)*  

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

<!-- 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)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - should support cross compilation using the Go standard toolchain


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

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

From 83ae4c523ff352bfc2b09548c65b402174ffb2c6 Mon Sep 17 00:00:00 2001
From: n1c00o <git.n1c00o@gmail.com>
Date: Mon, 22 Aug 2022 14:29:06 +0200
Subject: [PATCH] New package: bazelisk-1.12.2

add installation for the Go version of Bazelisk
---
 srcpkgs/bazelisk/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/bazelisk/template

diff --git a/srcpkgs/bazelisk/template b/srcpkgs/bazelisk/template
new file mode 100644
index 000000000000..60d006d330c7
--- /dev/null
+++ b/srcpkgs/bazelisk/template
@@ -0,0 +1,17 @@
+# Template file for 'bazelisk'
+pkgname=bazelisk
+version=1.12.2
+revision=1
+# for some reason, the package does build without having a `wrksrc` or `create_wrksrc` property...
+build_style="go"
+go_import_path="github.com/bazelbuild/bazelisk"
+short_desc="User-friendly launcher for Bazel"
+maintainer="n1c00o <git.n1c00o@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/bazelbuild/bazelisk"
+distfiles="https://github.com/bazelbuild/bazelisk/archive/refs/tags/v${version}.tar.gz"
+checksum=70a35357a5aedb372fc5b3b3bf2b7b9f60a9a5c266b60d0933a027ae98a44399
+
+post_install() {
+	vdoc README.md
+}

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

* Re: [PR REVIEW] New package: bazelisk-1.12.2
  2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
@ 2022-08-22 15:31 ` classabbyamp
  2022-08-23 12:04 ` [PR PATCH] [Updated] " n1c00o
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-08-22 15:31 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38830#discussion_r951583866

Comment:
that means the default value (`$pkgname-$version`) works for this software

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

* Re: [PR PATCH] [Updated] New package: bazelisk-1.12.2
  2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
  2022-08-22 15:31 ` [PR REVIEW] " classabbyamp
@ 2022-08-23 12:04 ` n1c00o
  2022-09-06 12:47 ` n1c00o
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: n1c00o @ 2022-08-23 12:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/n1c00o/void-packages feat/bazelisk
https://github.com/void-linux/void-packages/pull/38830

New package: bazelisk-1.12.2
This merge request adds a package description for Bazelisk (<https://github.com/bazelbuild/bazelisk>), which provides an simple and fast way to use and install Bazel.
This can be used by packages requiring Bazel in compilation, without the need of having to bootstrap Bazel, which is time-consuming and error-prone *(I am actively trying to get a cross-compile-ready package of Bazel from source, known as bootstrapping Bazel...)*  

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

<!-- 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)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - should support cross compilation using the Go standard toolchain


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

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

From ed85371bf0c74f604ecfcb9056dde96a835a15a6 Mon Sep 17 00:00:00 2001
From: n1c00o <git.n1c00o@gmail.com>
Date: Mon, 22 Aug 2022 14:29:06 +0200
Subject: [PATCH] New package: bazelisk-1.12.2

add installation for the Go version of Bazelisk
---
 srcpkgs/bazelisk/template | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/bazelisk/template

diff --git a/srcpkgs/bazelisk/template b/srcpkgs/bazelisk/template
new file mode 100644
index 000000000000..11ad13bfdef6
--- /dev/null
+++ b/srcpkgs/bazelisk/template
@@ -0,0 +1,16 @@
+# Template file for 'bazelisk'
+pkgname=bazelisk
+version=1.12.2
+revision=1
+build_style="go"
+go_import_path="github.com/bazelbuild/bazelisk"
+short_desc="User-friendly launcher for Bazel"
+maintainer="n1c00o <git.n1c00o@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/bazelbuild/bazelisk"
+distfiles="https://github.com/bazelbuild/bazelisk/archive/refs/tags/v${version}.tar.gz"
+checksum=70a35357a5aedb372fc5b3b3bf2b7b9f60a9a5c266b60d0933a027ae98a44399
+
+post_install() {
+	vdoc README.md
+}

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

* Re: New package: bazelisk-1.12.2
  2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
  2022-08-22 15:31 ` [PR REVIEW] " classabbyamp
  2022-08-23 12:04 ` [PR PATCH] [Updated] " n1c00o
@ 2022-09-06 12:47 ` n1c00o
  2022-12-06  2:29 ` github-actions
  2022-12-21  1:55 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: n1c00o @ 2022-09-06 12:47 UTC (permalink / raw)
  To: ml

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

New comment by n1c00o on void-packages repository

https://github.com/void-linux/void-packages/pull/38830#issuecomment-1238104363

Comment:
Any update?

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

* Re: New package: bazelisk-1.12.2
  2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
                   ` (2 preceding siblings ...)
  2022-09-06 12:47 ` n1c00o
@ 2022-12-06  2:29 ` github-actions
  2022-12-21  1:55 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ 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/38830#issuecomment-1338641997

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

* Re: [PR PATCH] [Closed]: New package: bazelisk-1.12.2
  2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
                   ` (3 preceding siblings ...)
  2022-12-06  2:29 ` github-actions
@ 2022-12-21  1:55 ` github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2022-12-21  1:55 UTC (permalink / raw)
  To: ml

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

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

New package: bazelisk-1.12.2
https://github.com/void-linux/void-packages/pull/38830

Description:
This merge request adds a package description for Bazelisk (<https://github.com/bazelbuild/bazelisk>), which provides an simple and fast way to use and install Bazel.
This can be used by packages requiring Bazel in compilation, without the need of having to bootstrap Bazel, which is time-consuming and error-prone *(I am actively trying to get a cross-compile-ready package of Bazel from source, known as bootstrapping Bazel...)*  

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

<!-- 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)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - should support cross compilation using the Go standard toolchain


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

end of thread, other threads:[~2022-12-21  1:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-22 12:33 [PR PATCH] New package: bazelisk-1.12.2 n1c00o
2022-08-22 15:31 ` [PR REVIEW] " classabbyamp
2022-08-23 12:04 ` [PR PATCH] [Updated] " n1c00o
2022-09-06 12:47 ` n1c00o
2022-12-06  2:29 ` github-actions
2022-12-21  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).