moved cog to compile time, now aware of its own version

This commit is contained in:
Nicholas O'Connor
2017-03-22 22:01:34 -07:00
parent b34430b9e2
commit 207599eab1
5 changed files with 54 additions and 19 deletions

View File

@@ -1,4 +1,12 @@
bin_PROGRAMS = cellar
cellar_CPPFLAGS = $(BOOST_CPPFLAGS)
cellar_LDFLAGS = $(BOOST_LDFLAGS) $(BOOST_SYSTEM_LIB) $(BOOST_FILESYSTEM_LIB)
cellar_SOURCES = cellar.cpp fs.cpp bottles.cpp commands.cpp version.cpp
cellar_SOURCES = cellar.cpp fs.cpp bottles.cpp commands.cpp
# Generated files
nodist_cellar_SOURCES = version.cpp
CLEANFILES = version.cpp
version.cpp:
$(COG) -d -o version.cpp version.cpp.cog

View File

@@ -1,15 +1,44 @@
// vim: filetype=cpp :
#include <iostream>
#include "commands.hpp"
#include "version.hpp"
using namespace std;
using namespace cellar::version;
string cellar::version::short_version() {
/*[[[cog
import cog
import os
import configparser
import datetime
print(os.getcwd())
today = datetime.datetime.today()
cog.outl("return \"dummy cog file!\";")
cparse = configparser.ConfigParser()
cparse.read("../cogrc")
config = cparse["version"]
if config.getboolean("release"):
outstring = "version {0}, built {1}".format(config["release_version"], str(today))
else:
try:
import subprocess
cmdoutput = subprocess.check_output(["git", "symbolic-ref", "HEAD"]).decode().strip()
gitbranch = cmdoutput.split("/")[2]
githash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode().strip()
outstring = "{0} {1}, built {2}".format(gitbranch, githash, str(today))
except:
outstring = "exception raised when trying to read git data at precompile time"
raise
cog.outl("return \"{0}\";".format(outstring))
]]]*/
//[[[end]]]
}
void print_version(int argc, char** argv) {
cout << short_version() << endl;
}
bool _ = cellar::commands::add_command("version", &print_version);