Search Criteria
Package Details: joker-bin 1.4.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/joker-bin.git (read-only, click to copy) |
---|---|
Package Base: | joker-bin |
Description: | A Clojure interpreter and linter written in Go - Precompiled binary from official repository. |
Upstream URL: | https://github.com/candid82/joker |
Licenses: | EPL |
Conflicts: | joker |
Provides: | joker |
Submitter: | dharrigan |
Maintainer: | dharrigan |
Last Packager: | dharrigan |
Votes: | 7 |
Popularity: | 0.000003 |
First Submitted: | 2019-06-28 11:56 (UTC) |
Last Updated: | 2024-07-07 07:32 (UTC) |
Latest Comments
dharrigan commented on 2022-11-11 21:34 (UTC)
Hi,
Thank you for your message. I believe the checksums are correct, the sha256sum referenced in both the PKBUILD and SRCINFO is
a2d05da729b49558333a2484be745c6f7a4f4fe25b39df039b3a255a43310c90
.If I then do it manually, I achieve the same result:
❯ sha256sum joker-linux-amd64.zip a2d05da729b49558333a2484be745c6f7a4f4fe25b39df039b3a255a43310c90 joker-linux-amd64.zip
However, what I do think is happening is simply a caching issue. I'll cut a new release that puts the version into the source download.
mariano.martin commented on 2022-11-11 16:11 (UTC)
There is an issue with the sha256sums of this latest release (1.1.0-1). Can you please take a look?
haawda commented on 2018-12-01 12:48 (UTC)
This should be named joker-bin, as it does not build from source.
bcarrell commented on 2018-11-14 14:56 (UTC)
Hi, the package should be updated for 0.10.1 now. Sorry for the delay.
n2o commented on 2018-11-14 14:29 (UTC) (edited on 2018-11-14 14:29 (UTC) by n2o)
For version 0.10.1, these two lines need to be changed:
pyr commented on 2018-11-09 07:43 (UTC)
Hi!
With this patch the latest version builds cleanly, thanks!
diff --git a/.SRCINFO b/.SRCINFO index
292b035
..fb473e2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = joker pkgdesc = Joker, a Clojure interpreter and linter written in Go - Precompiled binary from official repository - pkgver = 0.9.2 + pkgver = 0.10.1 pkgrel = 1 url = https://github.com/candid82/joker arch = x86_64 license = EPL provides = joker conflicts = joker - source = https://github.com/candid82/joker/releases/download/v0.9.2/joker-0.9.2-linux-amd64.zip - md5sums = 43d9ee326a7e1c13528311b87a5d33e5 + source = https://github.com/candid82/joker/releases/download/v0.10.1/joker-0.10.1-linux-amd64.zip + md5sums = b4f9b1150f694c80cc4efd7ef6a22998pkgname = joker
diff --git a/PKGBUILD b/PKGBUILD index
e404e08
..4be754a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Brandon Carrell brandoncarrell@gmail.compkgname=joker -pkgver=0.9.2 +pkgver=0.10.1 pkgrel=1 pkgdesc="Joker, a Clojure interpreter and linter written in Go - Precompiled binary from official repository" arch=('x86_64') @@ -12,7 +12,7 @@ conflicts=('joker')
source=("https://github.com/candid82/joker/releases/download/v${pkgver}/${pkgname}-${pkgver}-linux-amd64.zip")
-md5sums=('43d9ee326a7e1c13528311b87a5d33e5') +md5sums=('b4f9b1150f694c80cc4efd7ef6a22998')
package() { install -Dm755 "${srcdir}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"