summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUR CI2020-06-04 05:56:59 +0000
committerAUR CI2020-06-04 05:56:59 +0000
commit7817fcdd2d9d378e14a938962ddd98ef8e84e675 (patch)
tree220a2a2f91072fd4127e2a849c486216103392d3
parent130184dc2b404cd5f769410bf2ff6c391edda185 (diff)
downloadaur-7817fcdd2d9d378e14a938962ddd98ef8e84e675.tar.gz
sl-sh 0.8.64 (master:b85a0c2+, release build, linux [x86_64], Jun 04 2020, 05:55:16 UTC)
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD5
-rw-r--r--README-aur.md18
4 files changed, 27 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1c3cdf3eee67..46ecf43d91f6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = sl-sh-git
pkgdesc = simple lisp based shell
- pkgver = 0.8.63
+ pkgver = 0.8.64
pkgrel = 1
url = https://github.com/sstanfield/slsh
arch = x86_64
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..0ec0c13381d5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg
+src
+sl-sh
+sl-sh-git*pkg*
+sl-sh-git
diff --git a/PKGBUILD b/PKGBUILD
index 61f89549bce9..53c2012c3cb4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Price Clark <gpwclark at gmail dot com>
pkgname=sl-sh-git
-pkgver=0.8.63
+pkgver=0.8.64
pkgrel=1
epoch=
pkgdesc='simple lisp based shell'
@@ -34,7 +34,8 @@ prepare() {
build() {
cd "${pkgname%-git}-$pkgver"
rustup target add x86_64-unknown-linux-musl
- cargo build --release --target x86_64-unknown-linux-musl --locked --all-features
+ # TODO look into using --locked, will require some new CI
+ cargo build --release --target x86_64-unknown-linux-musl --all-features
}
check() {
diff --git a/README-aur.md b/README-aur.md
new file mode 100644
index 000000000000..41b70668d199
--- /dev/null
+++ b/README-aur.md
@@ -0,0 +1,18 @@
+# the version
+
+The version in both .SRCINFO and the PKGBUILD must be set to VERSION this is
+because the CI (Github actions) uses sed to replace VERSION with the current
+version of sl-sh in the Cargo.toml
+
+# updating PKGBUILD
+be sure to call
+```
+(out> .SRCINFO (makepkg --printsrcinfo))
+```
+
+and commit both
+
+as always make sure to check the arch docs:
+https://wiki.archlinux.org/index.php/PKGBUILD#pkgver
+
+use of `namcap` is encouraged