3 Commits

Author SHA256 Message Date
42b5199754 Version update to 1.5.0, test change, patch removal
- Update to version 1.5.0
  * add NaN?, abs, infinite?, parse-boolean, parse-double,
    parse-long, partitionv, partitionv-all, splitv-at, repl to
    joker.core.
  * Linter improvements:
    * add add-tap, remove-tap and tap> to ClojureScript linter
    * add seq-to-map-for-destructuring to Clojure linter
    * add stream related functions (stream-into!, stream-into!,
      stream-seq!, stream-transduce!) to Clojure linter
  * Updated vendor archive
- Removal of obsolete reproducible.patch
- Disabling test suite for ix86. Was only written for 64-bit
2025-07-10 16:19:51 +02:00
2722e40b3b Accepting request 1240852 from devel:languages:clojure
OBS-URL: https://build.opensuse.org/request/show/1240852
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/joker?expand=0&rev=7
2025-01-29 15:10:17 +00:00
246055eaed Add reproducible.patch for deterministic output order
also: use autosetup

OBS-URL: https://build.opensuse.org/package/show/devel:languages:clojure/joker?expand=0&rev=13
2025-01-28 14:21:42 +00:00
5 changed files with 37 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8744e077e420a40a78c215fe9c61adad2aa59e8a985ec5d59aeb75f93b2706f3
size 510798

BIN
joker-1.5.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Mon Jul 7 20:25:30 UTC 2025 - Jochen Breuer <brejoc@gmail.com> - 1.5.0
- Update to version 1.5.0
* add NaN?, abs, infinite?, parse-boolean, parse-double,
parse-long, partitionv, partitionv-all, splitv-at, repl to
joker.core.
* Linter improvements:
* add add-tap, remove-tap and tap> to ClojureScript linter
* add seq-to-map-for-destructuring to Clojure linter
* add stream related functions (stream-into!, stream-into!,
stream-seq!, stream-transduce!) to Clojure linter
* Updated vendor archive
- Removal of obsolete reproducible.patch
- Disabling test suite for ix86. Was only written for 64-bit
-------------------------------------------------------------------
Mon Jan 27 11:33:37 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
- Add reproducible.patch for deterministic output order
-------------------------------------------------------------------
Mon Sep 30 10:14:54 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>

View File

@@ -17,7 +17,7 @@
Name: joker
Version: 1.4.0
Version: 1.5.0
Release: 0
Summary: Small Clojure interpreter, linter and formatter written in Go
License: EPL-1.0
@@ -35,19 +35,28 @@ BuildRequires: golang(API) >= 1.18
Joker is a small Clojure interpreter, linter and formatter written in Go.
%prep
%setup -q
%autosetup -p1
tar -zxf %{SOURCE1}
%autopatch
%build
%ifarch %ix86
GO111MODULE=on CGO_ENABLED=1 go generate ./...
GO111MODULE=on CGO_ENABLED=1 go build -mod=vendor -o %{name} -buildmode=pie \
-ldflags "-s -w"
%else
GO111MODULE=on CGO_ENABLED=0 go generate ./...
GO111MODULE=on CGO_ENABLED=0 go build -mod=vendor -o %{name} -buildmode=pie \
-ldflags "-s -w"
%endif
%install
install -D -m0755 %{name} %{buildroot}%{_bindir}/%{name}
%check
%ifarch x86_64 amd64 aarch64
./all-tests.sh
%endif
%files
%license LICENSE

BIN
vendor.tar.gz (Stored with Git LFS)

Binary file not shown.