add views/VERSION target to generate the version-number from git
This commit is contained in:
parent
9b4de1a3e5
commit
0847016346
17
makefile
17
makefile
|
@ -1,8 +1,8 @@
|
||||||
SRC := $(shell find src -name "*.d") \
|
SRC := $(shell find src -name "*.d") \
|
||||||
$(shell find libdparse/src -name "*.d")
|
$(shell find libdparse/src -name "*.d")
|
||||||
INCLUDE_PATHS := -Ilibdparse/src -Isrc
|
INCLUDE_PATHS := -Ilibdparse/src -Isrc
|
||||||
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
|
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS) -Jviews
|
||||||
DMD_DEBUG_FLAGS := -g $(DMD_COMMON_FLAGS)
|
DMD_DEBUG_FLAGS := -debug -g $(DMD_COMMON_FLAGS)
|
||||||
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
||||||
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
|
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
|
||||||
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
||||||
|
@ -15,6 +15,10 @@ GDC ?= gdc
|
||||||
|
|
||||||
dmd: bin/dfmt
|
dmd: bin/dfmt
|
||||||
|
|
||||||
|
views/VERSION : .git/refs/tags .git/HEAD
|
||||||
|
mkdir -p $(dir $@)
|
||||||
|
git describe --tags > $@
|
||||||
|
|
||||||
ldc: $(SRC)
|
ldc: $(SRC)
|
||||||
$(LDC) $(LDC_FLAGS) $^ -ofbin/dfmt
|
$(LDC) $(LDC_FLAGS) $^ -ofbin/dfmt
|
||||||
-rm -f *.o
|
-rm -f *.o
|
||||||
|
@ -28,8 +32,9 @@ test: debug
|
||||||
bin/dfmt-test: $(SRC)
|
bin/dfmt-test: $(SRC)
|
||||||
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
||||||
|
|
||||||
bin/dfmt: $(SRC)
|
bin/dfmt: views/VERSION $(SRC)
|
||||||
$(DC) $(DMD_FLAGS) $^ -of$@
|
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
|
||||||
|
|
||||||
|
debug: views/VERSION $(SRC)
|
||||||
|
$(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt
|
||||||
|
|
||||||
debug: $(SRC)
|
|
||||||
$(DC) $(DMD_DEBUG_FLAGS) $^ -ofbin/dfmt
|
|
||||||
|
|
|
@ -4,8 +4,61 @@
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
module dfmt.main;
|
module dfmt.main;
|
||||||
|
static immutable VERSION = () {
|
||||||
|
debug
|
||||||
|
{
|
||||||
|
enum DEBUG_SUFFIX = "-debug";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
enum DEBUG_SUFFIX = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (is(typeof(import("VERSION"))))
|
||||||
|
{
|
||||||
|
// takes the `git describe --tags` output and removes the leading
|
||||||
|
// 'v' as well as any kind of newline
|
||||||
|
// if the tag is considered malformed it gets used verbatim
|
||||||
|
|
||||||
|
enum gitDescribeOutput = import("VERSION");
|
||||||
|
|
||||||
|
string result;
|
||||||
|
|
||||||
|
if (gitDescribeOutput[0] == 'v')
|
||||||
|
result = gitDescribeOutput[1 .. $];
|
||||||
|
else
|
||||||
|
result = null;
|
||||||
|
|
||||||
|
uint minusCount;
|
||||||
|
|
||||||
|
foreach (i, c; result)
|
||||||
|
{
|
||||||
|
if (c == '\n' || c == '\r')
|
||||||
|
{
|
||||||
|
result = result[0 .. i];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c == '-')
|
||||||
|
{
|
||||||
|
++minusCount;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (minusCount > 1)
|
||||||
|
result = null;
|
||||||
|
|
||||||
|
return result ? result ~ DEBUG_SUFFIX
|
||||||
|
: gitDescribeOutput ~ DEBUG_SUFFIX;
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return "unknown" ~ DEBUG_SUFFIX ~ "-version";
|
||||||
|
}
|
||||||
|
|
||||||
|
} ();
|
||||||
|
|
||||||
private enum VERSION = "0.5.0";
|
|
||||||
|
|
||||||
version (NoMain)
|
version (NoMain)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue