Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: oilshell-0.6.0
Date: Mon, 08 Jul 2019 04:14:11 +0200	[thread overview]
Message-ID: <20190708021411.zAinfmgsbc1L6XI3V9-QOPqNOcXPKpEkRtR2DZYZqM4@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-12891@inbox.vuxu.org>

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

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

https://github.com/Wychmire/void-packages oilshell
https://github.com/void-linux/void-packages/pull/12891

New package: oilshell-0.6.0
Closes #12835 

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

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

From 3b24763d15945c8683caab40af872516f7f258a0 Mon Sep 17 00:00:00 2001
From: Caleb JA <skywise@tutanota.de>
Date: Sun, 7 Jul 2019 16:03:44 -0400
Subject: [PATCH 1/2] New package: oilshell-0.6.0

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

diff --git a/srcpkgs/oilshell/template b/srcpkgs/oilshell/template
new file mode 100644
index 00000000000..11b14b7c856
--- /dev/null
+++ b/srcpkgs/oilshell/template
@@ -0,0 +1,38 @@
+# Template file for 'oilshell'
+pkgname=oilshell
+version=0.6.0
+revision=1
+archs="x86_64*"
+wrksrc=oil-${version}
+build_style=configure
+configure_args="--prefix=/usr --with-readline"
+makedepends="readline-devel"
+short_desc="Oil, a new unix shell"
+maintainer="Caleb JA <skywise@tutanota.de>"
+license="Apache-2.0"
+homepage="https://www.oilshell.org"
+distfiles="${homepage}/download/oil-${version}.tar.xz"
+checksum=141e3a5c1997a696d65747966978aaa38921d77e303aad9e77b4ab4aedab84b7
+register_shell="/usr/bin/osh"
+nostrip=yes
+
+pre_build() {
+	# Remove the strip wrapper
+	rm -f "${XBPS_WRAPPERDIR}"/strip
+}
+
+do_install() {
+	# Remove the strip wrapper
+	rm -f "${XBPS_WRAPPERDIR}"/strip
+
+	# Install binaries
+	vbin _bin/oil.ovm
+	# Symlink osh, oshc to oil.ovm.
+	cd "${DESTDIR}"/usr/bin
+	ln -s oil.ovm osh
+	ln -s oil.ovm oshc
+}
+
+post_install() {
+	vlicense LICENSE.txt
+}
\ No newline at end of file

From ef888c6ff02411a35478835b1a96e93c8b611c0a Mon Sep 17 00:00:00 2001
From: Caleb JA <skywise@tutanota.de>
Date: Sun, 7 Jul 2019 21:55:07 -0400
Subject: [PATCH 2/2] New package: oilshell-0.6.0

remove nocross and arch
---
 srcpkgs/oilshell/template | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/oilshell/template

diff --git a/srcpkgs/oilshell/template b/srcpkgs/oilshell/template
new file mode 100644
index 00000000000..fd00b1c4c0e
--- /dev/null
+++ b/srcpkgs/oilshell/template
@@ -0,0 +1,36 @@
+# Template file for 'oilshell'
+pkgname=oilshell
+version=0.6.0
+revision=1
+wrksrc=oil-${version}
+build_style=configure
+configure_args="--prefix=/usr --with-readline"
+makedepends="readline-devel"
+short_desc="Oil, a new unix shell"
+maintainer="Caleb JA <skywise@tutanota.de>"
+license="Apache-2.0"
+homepage="https://www.oilshell.org"
+distfiles="${homepage}/download/oil-${version}.tar.xz"
+checksum=141e3a5c1997a696d65747966978aaa38921d77e303aad9e77b4ab4aedab84b7
+register_shell="/usr/bin/osh"
+
+pre_build() {
+	# Remove the strip wrapper
+	rm -f "${XBPS_WRAPPERDIR}"/strip
+}
+
+do_install() {
+	# Remove the strip wrapper
+	rm -f "${XBPS_WRAPPERDIR}"/strip
+
+	# Install binaries
+	vbin _bin/oil.ovm
+	# Symlink osh, oshc to oil.ovm.
+	cd "${DESTDIR}"/usr/bin
+	ln -s oil.ovm osh
+	ln -s oil.ovm oshc
+}
+
+post_install() {
+	vlicense LICENSE.txt
+}
\ No newline at end of file

  parent reply	other threads:[~2019-07-08  2:14 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-07 20:10 [PR PATCH] " voidlinux-github
2019-07-08  1:30 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-08  1:30 ` voidlinux-github
2019-07-08  1:53 ` voidlinux-github
2019-07-08  1:53 ` voidlinux-github
2019-07-08  1:54 ` voidlinux-github
2019-07-08  1:54 ` voidlinux-github
2019-07-08  1:55 ` voidlinux-github
2019-07-08  1:55 ` voidlinux-github
2019-07-08  2:14 ` voidlinux-github
2019-07-08  2:14 ` voidlinux-github [this message]
2019-07-08  2:18 ` voidlinux-github
2019-07-08  2:18 ` voidlinux-github
2019-07-08  2:31 ` voidlinux-github
2019-07-08  2:31 ` voidlinux-github
2019-07-08  3:12 ` voidlinux-github
2019-07-08  3:12 ` voidlinux-github
2019-07-08  3:31 ` voidlinux-github
2019-07-08  3:31 ` voidlinux-github
2019-07-08 13:04 ` voidlinux-github
2019-07-08 13:04 ` voidlinux-github
2019-07-08 18:55 ` voidlinux-github
2019-07-08 18:55 ` voidlinux-github
2019-07-09 13:00 ` voidlinux-github
2019-07-09 13:06 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-09 13:06 ` voidlinux-github
2019-07-09 13:21 ` voidlinux-github
2019-07-09 13:38 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-09 13:38 ` voidlinux-github
2019-07-09 13:49 ` voidlinux-github
2019-07-09 13:49 ` voidlinux-github
2019-07-09 13:51 ` voidlinux-github
2019-07-09 14:31 ` [PR PATCH] [Merged]: " voidlinux-github

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190708021411.zAinfmgsbc1L6XI3V9-QOPqNOcXPKpEkRtR2DZYZqM4@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).