Use automatic versioning (#379)

Use automatic versioning
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
BBasile 2018-09-06 16:48:43 +02:00
parent 647bb6daa9
commit 7fb46c9aa5
6 changed files with 49 additions and 51 deletions

View File

@ -11,6 +11,20 @@ set STDXALLOCATOR=
set STDXALLOCATORBLOCKS= set STDXALLOCATORBLOCKS=
set OBIN=bin\dfmt set OBIN=bin\dfmt
:: git might not be installed, so we provide 0.0.0 as a fallback or use
:: the existing githash file if existent
if not exist "bin" mkdir bin
git describe --tags > bin\githash_.txt
for /f %%i in ("bin\githash_.txt") do set githashsize=%%~zi
if %githashsize% == 0 (
if not exist "bin\githash.txt" (
echo v0.0.0 > bin\githash.txt
)
) else (
move /y bin\githash_.txt bin\githash.txt
)
for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x
for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x
for %%x in (libdparse\src\dparse\*.d) do set STDD=!STDD! %%x for %%x in (libdparse\src\dparse\*.d) do set STDD=!STDD! %%x
@ -18,6 +32,6 @@ for %%x in (stdx-allocator\source\stdx\allocator\*.d) do set STDXALLOCATOR=!STDX
for %%x in (stdx-allocator\source\stdx\allocator\building_blocks\*.d) do set STDXALLOCATORBLOCKS=!STDXALLOCATORBLOCKS! %%x for %%x in (stdx-allocator\source\stdx\allocator\building_blocks\*.d) do set STDXALLOCATORBLOCKS=!STDXALLOCATORBLOCKS! %%x
@echo on @echo on
%DC% %CORE% %STD% %STDD% %STDE% %STDXALLOCATOR% %STDXALLOCATORBLOCKS% -I"stdx-allocator\source" -I"libdparse\src" %DFLAGS% -of%OBIN%.exe %DC% %CORE% %STD% %STDD% %STDE% %STDXALLOCATOR% %STDXALLOCATORBLOCKS% -I"stdx-allocator\source" -I"libdparse\src" -Jbin %DFLAGS% -of%OBIN%.exe
if exist %OBIN%.obj del %OBIN%.obj if exist %OBIN%.obj del %OBIN%.obj

View File

@ -8,4 +8,13 @@
}, },
"targetPath" : "bin/", "targetPath" : "bin/",
"targetName" : "dfmt", "targetName" : "dfmt",
"stringImportPaths" : [
"bin"
],
"versions" : [
"built_with_dub"
],
"preGenerateCommands" : [
"rdmd --eval=\"auto dir=environment.get(\\\"DUB_PACKAGE_DIR\\\"); dir.buildPath(\\\"bin\\\").mkdirRecurse; auto gitVer = (\\\"git -C \\\"~dir~\\\" describe --tags\\\").executeShell; (gitVer.status == 0 ? gitVer.output.strip : \\\"v\\\" ~ dir.dirName.baseName.findSplitAfter(environment.get(\\\"DUB_ROOT_PACKAGE\\\")~\\\"-\\\")[1]).ifThrown(\\\"0.0.0\\\").chain(newline).to!string.toFile(dir.buildPath(\\\"bin\\\", \\\"dubhash.txt\\\"));\""
]
} }

View File

@ -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") \
$(shell find stdx-allocator/source -name "*.d") $(shell find stdx-allocator/source -name "*.d")
INCLUDE_PATHS := -Ilibdparse/src -Istdx-allocator/source -Isrc INCLUDE_PATHS := -Ilibdparse/src -Istdx-allocator/source -Isrc -Jbin
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS) -Jviews DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
DMD_DEBUG_FLAGS := -debug -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)
@ -16,27 +16,27 @@ GDC ?= gdc
dmd: bin/dfmt dmd: bin/dfmt
views/VERSION : .git/refs/tags .git/HEAD githash:
mkdir -p $(dir $@) mkdir -p bin
git describe --tags > $@ git describe --tags > bin/githash.txt
ldc: $(SRC) ldc: githash
$(LDC) $(LDC_FLAGS) $^ -ofbin/dfmt $(LDC) $(SRC) $(LDC_FLAGS) -ofbin/dfmt
-rm -f *.o -rm -f *.o
gdc: $(SRC) gdc:githash
$(GDC) $(GDC_FLAGS) $^ -obin/dfmt $(GDC) $(SRC) $(GDC_FLAGS) -obin/dfmt
test: debug test: debug
cd tests && ./test.sh cd tests && ./test.sh
bin/dfmt-test: $(SRC) bin/dfmt-test: githash $(SRC)
$(DC) $(DMD_TEST_FLAGS) $^ -of$@ $(DC) $(DMD_TEST_FLAGS) $^ -of$@
bin/dfmt: views/VERSION $(SRC) bin/dfmt: githash $(SRC)
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@ $(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
debug: views/VERSION $(SRC) debug: githash $(SRC)
$(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt $(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt
pkg: dmd pkg: dmd
@ -47,3 +47,4 @@ clean:
release: release:
./release.sh ./release.sh
githash

View File

@ -19,6 +19,7 @@ fi
archiveName="dfmt-$VERSION-$OS-$ARCH_SUFFIX.zip" archiveName="dfmt-$VERSION-$OS-$ARCH_SUFFIX.zip"
echo "Building $archiveName" echo "Building $archiveName"
mkdir -p bin mkdir -p bin
git describe --tags > bin/githash.txt # no git installed under Wine
DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat
cd bin cd bin

View File

@ -19,5 +19,5 @@ esac
archiveName="dfmt-$VERSION-$OS-$ARCH_SUFFIX.tar.gz" archiveName="dfmt-$VERSION-$OS-$ARCH_SUFFIX.tar.gz"
echo "Building $archiveName" echo "Building $archiveName"
${MAKE:-make} ldc LDC_FLAGS="${LDC_FLAGS[*]}" ${MAKE:-make} ldc LDC_FLAGS="${LDC_FLAGS[*]} -Jbin"
tar cvfz "bin/$archiveName" -C bin dfmt tar cvfz "bin/$archiveName" -C bin dfmt

View File

@ -4,6 +4,9 @@
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
module dfmt.main; module dfmt.main;
import std.string : strip;
static immutable VERSION = () { static immutable VERSION = () {
debug debug
{ {
@ -14,49 +17,19 @@ static immutable VERSION = () {
enum DEBUG_SUFFIX = ""; enum DEBUG_SUFFIX = "";
} }
static if (is(typeof(import("VERSION")))) version (built_with_dub)
{ {
// takes the `git describe --tags` output and removes the leading enum DFMT_VERSION = import("dubhash.txt").strip;
// '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 else
{ {
return "unknown" ~ DEBUG_SUFFIX ~ "-version"; /**
* Current build's Git commit hash
*/
enum DFMT_VERSION = import("githash.txt").strip;
} }
return DFMT_VERSION ~ DEBUG_SUFFIX;
} (); } ();