Skip to content

Commit 2ad8863

Browse files
committed
Version 0.6
1 parent ea7e512 commit 2ad8863

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%.c: %.y
33
%.c: %.l
44

5-
VERSION = 0.5.1
5+
VERSION = 0.6
66
DESTDIR =
77
BIN = bin
88
SRC = src
@@ -85,10 +85,8 @@ docopt-completion: $(BIN)/armake
8585
mv _armake completions/_armake
8686

8787
debian: clean
88-
unexpand -t 4 Makefile | tail -c +3 > tmp
89-
mv tmp Makefile
9088
tar -czf ../armake_$(VERSION).orig.tar.gz .
91-
debuild -S -sa
89+
debuild -S -d -sa
9290
dput ppa:koffeinflummi/armake ../armake_*_source.changes
9391

9492
release:

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
armake (0.6-1) bionic; urgency=low
2+
3+
* Rewrite config parse and preprocessor
4+
* Various fixes
5+
6+
-- Felix Wiegand <[email protected]> Mon, 21 May 2018 16:48:00 +0200
7+
8+
19
armake (0.5launchpadisshit-1) precise; urgency=low
210

311
* This version only has to exist because launchpad is shit.

debian/compat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8
1+
9

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Source: armake
22
Section: utils
33
Priority: extra
44
Maintainer: Felix Wiegand <[email protected]>
5-
Build-Depends: libssl-dev, debhelper
5+
Build-Depends: bison, flex, libssl-dev, debhelper, imagemagick
66
Standards-Version: 3.9.3
77
Vcs-Git: [email protected]:KoffeinFlummi/armake.git
88
Vcs-Browser: http://github.com/KoffeinFlummi/armake

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Upstream-Name: armake
33
Source: http://github.com/KoffeinFlummi/armake
44

55
Files: *
6-
Copyright: 2016 Felix "KoffeinFlummi" Wiegand
6+
Copyright: 2018 Felix "KoffeinFlummi" Wiegand
77
License: GPL-2+
88
This package is free software; you can redistribute it and/or modify
99
it under the terms of the GNU General Public License as published by

test/rapification/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mkdir -p /tmp/amktest || exit 1
66
./bin/armake binarize -f -w unquoted-string test/rapification/config.cpp /tmp/amktest/config.bin
77
./bin/armake derapify -f /tmp/amktest/config.bin /tmp/amktest/config.cpp
88

9-
git diff --no-index -- test/rapification/config_ref.cpp /tmp/amktest/config.cpp > /dev/null || {
9+
diff -u test/rapification/config_ref.cpp /tmp/amktest/config.cpp > /dev/null || {
1010
rm -rf /tmp/amktest
1111
exit 1
1212
}

0 commit comments

Comments
 (0)