Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaesar committed Sep 13, 2019
1 parent bbfa20b commit 0594434
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions do.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
set -eu

ver=$(sed -rn "H;1h;\$!d;x;s/^.*project\([^)]*kafkacat[^)]*version:[ \t]*'([^']+)'.*$/\1/p" meson.build)
wget https://github.com/edenhill/kafkacat/archive/$ver.tar.gz -Osrc.tgz
tar --strip-components=1 -xvf src.tgz
rm src.tgz
wget https://github.com/edenhill/kafkacat/archive/$ver.tar.gz -Osrc-$ver.tgz
sha256sum --ignore-missing -c <sha256
tar --strip-components=1 -xvf src-$ver.tgz
rm src-$ver.tgz

CC=musl-gcc meson build --wrap-mode forcefallback \
-Ddefault_library=static \
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('kafkacat', 'c', version: '1.4.0', subproject_dir: 'meson')
project('kafkacat', 'c', version: '1.5.0', subproject_dir: 'meson')

static = get_option('static')
yajl = dependency('yajl', version: '>=2', required: get_option('json'), static: static, fallback: ['yajl', 'yajl_dep'])
Expand Down
2 changes: 2 additions & 0 deletions sha256
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
4c043cb86824a8f650d7dbe3aceaec8aa3fadafbd456d7e7444f18f184fe2347 src-1.4.0.tgz
16f358fab258cbefc328cf642f72ee8b5dae1648657d508997279ca5bd0fbef0 src-1.5.0.tgz

0 comments on commit 0594434

Please sign in to comment.