Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10
@ 2022-09-12 14:58 Shanduur
  2022-09-12 15:02 ` [PR PATCH] [Updated] " Shanduur
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 14:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

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

<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2406 bytes --]

From 3755eda941c92d377e052c924e483fd3f6341a40 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 +++
 srcpkgs/drone-runner-exec/template            | 25 +++++++++++++++++++
 3 files changed, 30 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..f38e68d5e4f9
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,25 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+subversion=-beta.10
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="Polyform-Small-Business-1.0.0 OR Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}${subversion}.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv $blddir$subversion $blddir
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
@ 2022-09-12 15:02 ` Shanduur
  2022-09-12 15:04 ` Shanduur
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 15:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2384 bytes --]

From ecd68fb54ff03be422fda8f7596ab2b4459a4a60 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 24 +++++++++++++++++++
 3 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..9db1579c9654
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,24 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="Polyform-Small-Business-1.0.0 OR Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv "${blddir}-beta.10" "$blddir"
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
  2022-09-12 15:02 ` [PR PATCH] [Updated] " Shanduur
@ 2022-09-12 15:04 ` Shanduur
  2022-09-12 15:06 ` Shanduur
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 15:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2382 bytes --]

From 7295452348be6f584ba65af0caef198b51b2e0f2 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 24 +++++++++++++++++++
 3 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..8a15d4d863be
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,24 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="Polyform-Small-Business-1.0.0, Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv "${blddir}-beta.10" "$blddir"
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
  2022-09-12 15:02 ` [PR PATCH] [Updated] " Shanduur
  2022-09-12 15:04 ` Shanduur
@ 2022-09-12 15:06 ` Shanduur
  2022-09-12 15:20 ` Shanduur
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 15:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2396 bytes --]

From bb24a9e347309859fb0781151a4d892a9ac94a32 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 24 +++++++++++++++++++
 3 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..b1ee858da391
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,24 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv "${blddir}-beta.10" "$blddir"
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (2 preceding siblings ...)
  2022-09-12 15:06 ` Shanduur
@ 2022-09-12 15:20 ` Shanduur
  2022-09-12 15:25 ` Shanduur
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 15:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2606 bytes --]

From 7ec6f70a59ea4bdf26b9091a5e2a117a3296bff5 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 +++
 srcpkgs/drone-runner-exec/template            | 32 +++++++++++++++++++
 3 files changed, 37 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..02053e87ee4f
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,32 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv "${blddir}-beta.10" "$blddir"
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+	mkdir -p /etc/drone-runner-exec/
+
+	echo '''DRONE_RPC_PROTO=http
+DRONE_RPC_HOST=drone.example.com
+DRONE_RPC_SECRET=
+
+DRONE_LOG_FILE=/var/log/drone-runner-exec/log.txt
+''' > /etc/drone-runner-exec/config
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (3 preceding siblings ...)
  2022-09-12 15:20 ` Shanduur
@ 2022-09-12 15:25 ` Shanduur
  2022-09-12 17:37 ` [PR REVIEW] " classabbyamp
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-12 15:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2396 bytes --]

From a8f0b0759e682652a04f68d9b788f2733cb87c3b Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 24 +++++++++++++++++++
 3 files changed, 29 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..b1ee858da391
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,24 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_extract() {
+	local blddir="$XBPS_BUILDDIR/$pkgname-$version"
+	mv "${blddir}-beta.10" "$blddir"
+}
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR REVIEW] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (5 preceding siblings ...)
  2022-09-12 17:37 ` [PR REVIEW] " classabbyamp
@ 2022-09-12 17:37 ` classabbyamp
  2022-09-13 14:37 ` [PR PATCH] [Updated] " Shanduur
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: classabbyamp @ 2022-09-12 17:37 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/39245#discussion_r968714929

Comment:
set `wrksrc` instead of this 

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

* Re: [PR REVIEW] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (4 preceding siblings ...)
  2022-09-12 15:25 ` Shanduur
@ 2022-09-12 17:37 ` classabbyamp
  2022-09-12 17:37 ` classabbyamp
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: classabbyamp @ 2022-09-12 17:37 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/39245#discussion_r968716395

Comment:
haven't looked at the licences themselves but this will probably be `repository=nonfree` and possibly `restricted=yes`

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (6 preceding siblings ...)
  2022-09-12 17:37 ` classabbyamp
@ 2022-09-13 14:37 ` Shanduur
  2022-09-13 14:48 ` [PR REVIEW] " Shanduur
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2364 bytes --]

From 82d1257170aa35e0df49eea3195aa8220f0b7174 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..5fe65abb57ee
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+repository=nonfree
+restricted=yes
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="shanduur <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+wrksrc="${pkgname}-${version}-beta.10"
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR REVIEW] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (7 preceding siblings ...)
  2022-09-13 14:37 ` [PR PATCH] [Updated] " Shanduur
@ 2022-09-13 14:48 ` Shanduur
  2022-09-13 14:50 ` [PR PATCH] [Updated] " Shanduur
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:48 UTC (permalink / raw)
  To: ml

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

New review comment by Shanduur on void-packages repository

https://github.com/void-linux/void-packages/pull/39245#discussion_r969728860

Comment:
I added both, but I am not sure about the restricted. I mean - it is free for personal use and for Small Business defined as:

```
Use of the software for the benefit of your company is use for
a permitted purpose if your company has fewer than 100 total
individuals working as employees and independent contractors,
and less than 1,000,000 USD (2019) total revenue in the prior
tax year.  Adjust this revenue threshold for inflation according
to the United States Bureau of Labor Statistics' consumer price
index for all urban consumers, U.S. city average, for all items,
not seasonally adjusted, with 1982-1984=100 reference base.
```

And provides Free Trial for large businesses:

```
Use to evaluate whether the software suits a particular
application for less than 32 consecutive calendar days, on
behalf of you or your company, is use for a permitted purpose.
```

This probably means it could be placed in the unrestricted repo?

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (8 preceding siblings ...)
  2022-09-13 14:48 ` [PR REVIEW] " Shanduur
@ 2022-09-13 14:50 ` Shanduur
  2022-09-13 14:52 ` Shanduur
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 8fa7fc9baafbc4531201c119a44e056be3af608f Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..8554e993acdb
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+repository=nonfree
+restricted=yes
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+wrksrc="${pkgname}-${version}-beta.10"
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (9 preceding siblings ...)
  2022-09-13 14:50 ` [PR PATCH] [Updated] " Shanduur
@ 2022-09-13 14:52 ` Shanduur
  2022-09-13 14:53 ` Shanduur
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 127a0b8d830cc231c2bef688e9305fe4e9af4384 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..751797ff53b8
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+restricted=yes
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+wrksrc="${pkgname}-${version}-beta.10"
+repository=nonfree
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (10 preceding siblings ...)
  2022-09-13 14:52 ` Shanduur
@ 2022-09-13 14:53 ` Shanduur
  2022-09-13 14:54 ` Shanduur
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 8fd0d89e68e952d9ae949380395b2cea5de0e49c Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..e79737c29f57
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+wrksrc="${pkgname}-${version}-beta.10"
+repository=nonfree
+restricted=yes
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (11 preceding siblings ...)
  2022-09-13 14:53 ` Shanduur
@ 2022-09-13 14:54 ` Shanduur
  2022-09-13 14:54 ` Shanduur
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 03a527d4f794d38f0ea5d22bc2289838025faaa1 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..ba52c85c2863
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+wrksrc="${pkgname}-${version}-beta.10"
+repository=nonfree
+restricted=yes
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (12 preceding siblings ...)
  2022-09-13 14:54 ` Shanduur
@ 2022-09-13 14:54 ` Shanduur
  2022-09-13 14:55 ` Shanduur
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 88c9edd249d5b7c9f3c7f0b74e9c78f670322e3c Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..75444e6092d0
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+wrksrc="${pkgname}-${version}-beta.10"
+revision=1
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+repository=nonfree
+restricted=yes
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (13 preceding siblings ...)
  2022-09-13 14:54 ` Shanduur
@ 2022-09-13 14:55 ` Shanduur
  2022-09-13 14:55 ` Shanduur
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 018a27bac687453d127b443fa944cd837b6a90c7 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..37cd45b23408
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+wrksrc="${pkgname}-${version}-beta.10"
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+repository=nonfree
+restricted=yes
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (14 preceding siblings ...)
  2022-09-13 14:55 ` Shanduur
@ 2022-09-13 14:55 ` Shanduur
  2022-09-13 14:55 ` Shanduur
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 9b3bc73e8f6de8dc18e08df12792880b4b620db2 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..37cd45b23408
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+wrksrc="${pkgname}-${version}-beta.10"
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+repository=nonfree
+restricted=yes
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (15 preceding siblings ...)
  2022-09-13 14:55 ` Shanduur
@ 2022-09-13 14:55 ` Shanduur
  2022-09-13 15:08 ` [PR PATCH] [Closed]: " Shanduur
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 14:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From f16333a2da96f102dc34a095b42e9ec7892e8121 Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Mon, 12 Sep 2022 10:52:19 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..37cd45b23408
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+wrksrc="${pkgname}-${version}-beta.10"
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+repository=nonfree
+restricted=yes
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: [PR PATCH] [Closed]: New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (16 preceding siblings ...)
  2022-09-13 14:55 ` Shanduur
@ 2022-09-13 15:08 ` Shanduur
  2022-09-13 15:08 ` [PR PATCH] [Updated] " Shanduur
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 15:08 UTC (permalink / raw)
  To: ml

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

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

New package: drone-runner-exec-1.0.0-beta.10
https://github.com/void-linux/void-packages/pull/39245

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (17 preceding siblings ...)
  2022-09-13 15:08 ` [PR PATCH] [Closed]: " Shanduur
@ 2022-09-13 15:08 ` Shanduur
  2022-09-13 15:09 ` Shanduur
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 15:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 0 bytes --]



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

* Re: [PR PATCH] [Updated] New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (18 preceding siblings ...)
  2022-09-13 15:08 ` [PR PATCH] [Updated] " Shanduur
@ 2022-09-13 15:09 ` Shanduur
  2022-12-13  2:03 ` github-actions
  2022-12-28  1:56 ` [PR PATCH] [Closed]: " github-actions
  21 siblings, 0 replies; 23+ messages in thread
From: Shanduur @ 2022-09-13 15:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Shanduur/void-packages add-drone-runner-exec
https://github.com/void-linux/void-packages/pull/39245

New package: drone-runner-exec-1.0.0-beta.10
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-add-drone-runner-exec-39245.patch --]
[-- Type: text/x-diff, Size: 2371 bytes --]

From 936327094dd33739b6d8f385a2e48ffb9f6383ac Mon Sep 17 00:00:00 2001
From: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
Date: Tue, 13 Sep 2022 11:08:48 -0400
Subject: [PATCH] New package: drone-runner-exec-1.0.0-beta.10

---
 .../files/drone-runner-exec/log/run           |  1 +
 .../files/drone-runner-exec/run               |  4 ++++
 srcpkgs/drone-runner-exec/template            | 22 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 120000 srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
 create mode 100644 srcpkgs/drone-runner-exec/files/drone-runner-exec/run
 create mode 100644 srcpkgs/drone-runner-exec/template

diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
new file mode 120000
index 000000000000..3a5b4a586051
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/log/run
@@ -0,0 +1 @@
+/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/drone-runner-exec/files/drone-runner-exec/run b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
new file mode 100644
index 000000000000..0bfe30deee76
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/files/drone-runner-exec/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+[ -r conf ] && . ./conf
+exec drone-runner-exec ${OPTS}
diff --git a/srcpkgs/drone-runner-exec/template b/srcpkgs/drone-runner-exec/template
new file mode 100644
index 000000000000..37cd45b23408
--- /dev/null
+++ b/srcpkgs/drone-runner-exec/template
@@ -0,0 +1,22 @@
+# Template file for 'drone-runner-exec'
+pkgname=drone-runner-exec
+version=1.0.0
+revision=1
+wrksrc="${pkgname}-${version}-beta.10"
+build_style=go
+go_import_path=github.com/drone-runners/drone-runner-exec
+go_package="${go_import_path}"
+short_desc="Exec Runner for Drone continuous delivery platform"
+maintainer="Mateusz Urbanek <murbanek@shanduur.com>"
+license="custom:Polyform-Small-Business-1.0.0, custom:Polyform-Free-Trial-1.0.0"
+homepage="https://github.com/drone-runners/drone-runner-exec"
+changelog="https://raw.githubusercontent.com/drone-runners/drone-runner-exec/master/CHANGELOG.md"
+distfiles="${homepage}/archive/v${version}-beta.10.tar.gz"
+checksum=f8056f690551346301c23cc457902057ca22e760d7039e07a9724cb56fae7432
+repository=nonfree
+restricted=yes
+
+post_install() {
+	vsv drone-runner-exec
+	vlicense LICENSE.md
+}

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

* Re: New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (19 preceding siblings ...)
  2022-09-13 15:09 ` Shanduur
@ 2022-12-13  2:03 ` github-actions
  2022-12-28  1:56 ` [PR PATCH] [Closed]: " github-actions
  21 siblings, 0 replies; 23+ messages in thread
From: github-actions @ 2022-12-13  2:03 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/39245#issuecomment-1347642156

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

* Re: [PR PATCH] [Closed]: New package: drone-runner-exec-1.0.0-beta.10
  2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
                   ` (20 preceding siblings ...)
  2022-12-13  2:03 ` github-actions
@ 2022-12-28  1:56 ` github-actions
  21 siblings, 0 replies; 23+ messages in thread
From: github-actions @ 2022-12-28  1:56 UTC (permalink / raw)
  To: ml

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

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

New package: drone-runner-exec-1.0.0-beta.10
https://github.com/void-linux/void-packages/pull/39245

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### 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): **NO**

<!-- 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-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - aarch64

I want to keep and modify this PR in the future, when `drone-runner-exec` comes out of beta (hopefully soon). Up until this moment, consider this a WIP PR.

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

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

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-12 14:58 [PR PATCH] New package: drone-runner-exec-1.0.0-beta.10 Shanduur
2022-09-12 15:02 ` [PR PATCH] [Updated] " Shanduur
2022-09-12 15:04 ` Shanduur
2022-09-12 15:06 ` Shanduur
2022-09-12 15:20 ` Shanduur
2022-09-12 15:25 ` Shanduur
2022-09-12 17:37 ` [PR REVIEW] " classabbyamp
2022-09-12 17:37 ` classabbyamp
2022-09-13 14:37 ` [PR PATCH] [Updated] " Shanduur
2022-09-13 14:48 ` [PR REVIEW] " Shanduur
2022-09-13 14:50 ` [PR PATCH] [Updated] " Shanduur
2022-09-13 14:52 ` Shanduur
2022-09-13 14:53 ` Shanduur
2022-09-13 14:54 ` Shanduur
2022-09-13 14:54 ` Shanduur
2022-09-13 14:55 ` Shanduur
2022-09-13 14:55 ` Shanduur
2022-09-13 14:55 ` Shanduur
2022-09-13 15:08 ` [PR PATCH] [Closed]: " Shanduur
2022-09-13 15:08 ` [PR PATCH] [Updated] " Shanduur
2022-09-13 15:09 ` Shanduur
2022-12-13  2:03 ` github-actions
2022-12-28  1:56 ` [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).