Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [PR PATCH] [Updated] New package: shinit-0.1.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
  2020-07-28  6:51 ` [PR PATCH] [Updated] New package: shinit-0.1.0 the-maldridge
@ 2020-07-29  7:12 ` the-maldridge
  2020-07-29  7:14 ` the-maldridge
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: the-maldridge @ 2020-07-29  7:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/the-maldridge/void-packages shinit
https://github.com/void-linux/void-packages/pull/23893

New package: shinit-0.1.0


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

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

From 5717f956fcddbfb18aad50159c95f911954ae4f0 Mon Sep 17 00:00:00 2001
From: Michael Aldridge <maldridge@VoidLinux.org>
Date: Mon, 27 Jul 2020 22:53:16 -0700
Subject: [PATCH] New package: shinit-0.1.2

---
 srcpkgs/shinit/files/shinit/run | 12 ++++++++++++
 srcpkgs/shinit/template         | 19 +++++++++++++++++++
 2 files changed, 31 insertions(+)
 create mode 100644 srcpkgs/shinit/files/shinit/run
 create mode 100644 srcpkgs/shinit/template

diff --git a/srcpkgs/shinit/files/shinit/run b/srcpkgs/shinit/files/shinit/run
new file mode 100644
index 00000000000..bbff6d36b46
--- /dev/null
+++ b/srcpkgs/shinit/files/shinit/run
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+export SHINIT_USER=void
+
+[ -r ./conf ] && . ./conf
+
+mkdir -p /var/lib/shinit
+shinit
+
+# This is a strange thing to do, but this service should generally
+# speaking only ever run once in the life of a machine.
+rm -f /var/service/shinit
diff --git a/srcpkgs/shinit/template b/srcpkgs/shinit/template
new file mode 100644
index 00000000000..9d92a42d8a9
--- /dev/null
+++ b/srcpkgs/shinit/template
@@ -0,0 +1,19 @@
+# Template file for 'shinit'
+pkgname=shinit
+version=0.1.2
+revision=1
+depends="curl"
+short_desc="Minimalist approach to cloud-init style provisioning"
+maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
+license="MIT"
+homepage="https://github.com/the-maldridge/shinit/"
+distfiles="https://github.com/the-maldridge/shinit/archive/v$version.tar.gz"
+checksum=04bb0f154acbc11a7271d53569bcb89c598e9e28cdca39c61e281dd38f88f482
+
+do_install() {
+	vlicense LICENSE.md
+	vbin shinit
+	vmkdir usr/libexec/shinit
+	vcopy libexec/* usr/libexec/shinit
+	vsv shinit
+}

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

* Re: [PR PATCH] [Updated] New package: shinit-0.1.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
  2020-07-28  6:51 ` [PR PATCH] [Updated] New package: shinit-0.1.0 the-maldridge
  2020-07-29  7:12 ` the-maldridge
@ 2020-07-29  7:14 ` the-maldridge
  2020-07-29  7:15 ` [PR PATCH] [Closed]: " the-maldridge
  2020-07-29  7:15 ` the-maldridge
  4 siblings, 0 replies; 5+ messages in thread
From: the-maldridge @ 2020-07-29  7:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/the-maldridge/void-packages shinit
https://github.com/void-linux/void-packages/pull/23893

New package: shinit-0.1.0


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

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

From 9faea38ef7fa646baeeab09e8cf2730423656eb6 Mon Sep 17 00:00:00 2001
From: Michael Aldridge <maldridge@VoidLinux.org>
Date: Mon, 27 Jul 2020 22:53:16 -0700
Subject: [PATCH] New package: shinit-0.1.2

---
 srcpkgs/shinit/files/shinit/run | 11 +++++++++++
 srcpkgs/shinit/template         | 20 ++++++++++++++++++++
 2 files changed, 31 insertions(+)
 create mode 100644 srcpkgs/shinit/files/shinit/run
 create mode 100644 srcpkgs/shinit/template

diff --git a/srcpkgs/shinit/files/shinit/run b/srcpkgs/shinit/files/shinit/run
new file mode 100644
index 00000000000..f51d6a9e2ca
--- /dev/null
+++ b/srcpkgs/shinit/files/shinit/run
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+export SHINIT_USER=void
+
+[ -r ./conf ] && . ./conf
+
+shinit
+
+# This is a strange thing to do, but this service should generally
+# speaking only ever run once in the life of a machine.
+rm -f /var/service/shinit
diff --git a/srcpkgs/shinit/template b/srcpkgs/shinit/template
new file mode 100644
index 00000000000..893361cd38b
--- /dev/null
+++ b/srcpkgs/shinit/template
@@ -0,0 +1,20 @@
+# Template file for 'shinit'
+pkgname=shinit
+version=0.1.2
+revision=1
+depends="curl"
+make_dirs="/var/lib/shinit 0755 root root"
+short_desc="Minimalist approach to cloud-init style provisioning"
+maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
+license="MIT"
+homepage="https://github.com/the-maldridge/shinit/"
+distfiles="https://github.com/the-maldridge/shinit/archive/v$version.tar.gz"
+checksum=04bb0f154acbc11a7271d53569bcb89c598e9e28cdca39c61e281dd38f88f482
+
+do_install() {
+	vlicense LICENSE.md
+	vbin shinit
+	vmkdir usr/libexec/shinit
+	vcopy libexec/* usr/libexec/shinit
+	vsv shinit
+}

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

* Re: [PR PATCH] [Closed]: New package: shinit-0.1.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2020-07-29  7:14 ` the-maldridge
@ 2020-07-29  7:15 ` the-maldridge
  2020-07-29  7:15 ` the-maldridge
  4 siblings, 0 replies; 5+ messages in thread
From: the-maldridge @ 2020-07-29  7:15 UTC (permalink / raw)
  To: ml

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

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

New package: shinit-0.1.0
https://github.com/void-linux/void-packages/pull/23893

Description:


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

* Re: New package: shinit-0.1.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
                   ` (3 preceding siblings ...)
  2020-07-29  7:15 ` [PR PATCH] [Closed]: " the-maldridge
@ 2020-07-29  7:15 ` the-maldridge
  4 siblings, 0 replies; 5+ messages in thread
From: the-maldridge @ 2020-07-29  7:15 UTC (permalink / raw)
  To: ml

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

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/23893#issuecomment-665480997

Comment:
Merged as 134ceae06e

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

* Re: [PR PATCH] [Updated] New package: shinit-0.1.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
@ 2020-07-28  6:51 ` the-maldridge
  2020-07-29  7:12 ` the-maldridge
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: the-maldridge @ 2020-07-28  6:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/the-maldridge/void-packages shinit
https://github.com/void-linux/void-packages/pull/23893

New package: shinit-0.1.0


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

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

From 6c086b2013289987c5cd60f3f9662a69deb618ab Mon Sep 17 00:00:00 2001
From: Michael Aldridge <maldridge@VoidLinux.org>
Date: Mon, 27 Jul 2020 22:53:16 -0700
Subject: [PATCH] New package: shinit-0.1.1

---
 srcpkgs/shinit/files/shinit/run | 12 ++++++++++++
 srcpkgs/shinit/template         | 19 +++++++++++++++++++
 2 files changed, 31 insertions(+)
 create mode 100644 srcpkgs/shinit/files/shinit/run
 create mode 100644 srcpkgs/shinit/template

diff --git a/srcpkgs/shinit/files/shinit/run b/srcpkgs/shinit/files/shinit/run
new file mode 100644
index 00000000000..bbff6d36b46
--- /dev/null
+++ b/srcpkgs/shinit/files/shinit/run
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+export SHINIT_USER=void
+
+[ -r ./conf ] && . ./conf
+
+mkdir -p /var/lib/shinit
+shinit
+
+# This is a strange thing to do, but this service should generally
+# speaking only ever run once in the life of a machine.
+rm -f /var/service/shinit
diff --git a/srcpkgs/shinit/template b/srcpkgs/shinit/template
new file mode 100644
index 00000000000..76a1479007b
--- /dev/null
+++ b/srcpkgs/shinit/template
@@ -0,0 +1,19 @@
+# Template file for 'shinit'
+pkgname=shinit
+version=0.1.1
+revision=1
+depends="curl"
+short_desc="Minimalist approach to cloud-init style provisioning"
+maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
+license="MIT"
+homepage="https://github.com/the-maldridge/shinit/"
+distfiles="https://github.com/the-maldridge/shinit/archive/v$version.tar.gz"
+checksum=449330dce46b11593add70e33f9bd59a2b1fd79f94917dd7dab00bb176860281
+
+do_install() {
+    vlicense LICENSE.md
+    vbin shinit
+    vmkdir usr/libexec/shinit
+    vcopy libexec/* usr/libexec/shinit
+    vsv shinit
+}

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

end of thread, other threads:[~2020-07-29  7:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23893@inbox.vuxu.org>
2020-07-28  6:51 ` [PR PATCH] [Updated] New package: shinit-0.1.0 the-maldridge
2020-07-29  7:12 ` the-maldridge
2020-07-29  7:14 ` the-maldridge
2020-07-29  7:15 ` [PR PATCH] [Closed]: " the-maldridge
2020-07-29  7:15 ` the-maldridge

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