From 94cbed6c63ad4362547b4cbcc579c63937a780a6 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 23 Nov 2020 03:00:05 +0000 Subject: First draft of all the points addressed by the referees A new directory has been added at the top of the project's source called 'peer-review'. The raw reviews of the paper by the editors and referees has been added there as '1-review.txt'. All the main points raised by the referees have been listed in a numbered list and addressed (mostly) in '1-answers.txt'. The text of the paper now also includes all the implemented answers to the various points. --- reproduce/analysis/config/metadata.conf | 2 +- reproduce/analysis/make/initialize.mk | 6 ++++++ reproduce/analysis/make/paper.mk | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'reproduce/analysis') diff --git a/reproduce/analysis/config/metadata.conf b/reproduce/analysis/config/metadata.conf index 07a1145..a06b43c 100644 --- a/reproduce/analysis/config/metadata.conf +++ b/reproduce/analysis/config/metadata.conf @@ -10,7 +10,7 @@ # warranty. # Project information -metadata-title = Towards Long-term and Archivable Reproducibility +metadata-title = Long-term and Archivable Reproducibility # DOIs and identifiers. metadata-arxiv = 2006.03018 diff --git a/reproduce/analysis/make/initialize.mk b/reproduce/analysis/make/initialize.mk index 9ce157d..6431863 100644 --- a/reproduce/analysis/make/initialize.mk +++ b/reproduce/analysis/make/initialize.mk @@ -506,3 +506,9 @@ $(mtexdir)/initialize.tex: | $(mtexdir) # case, we'll just return the string a clear string. v=$$(git describe --always --long maneage) || v=maneage-ref-missing echo "\newcommand{\maneageversion}{$$v}" >> $@ + + # Get the date of the most recent commit from the Maneage + # branch. Note that with '%aD', the format looks like this: + # Wed, 9 Sep 2020 10:08:20 +0200 + v=$$(git show -s --format=%aD $$v | awk '{print $$2, $$3, $$4}') + echo "\newcommand{\maneagedate}{$$v}" >> $@ diff --git a/reproduce/analysis/make/paper.mk b/reproduce/analysis/make/paper.mk index de7b87f..3bb6a8c 100644 --- a/reproduce/analysis/make/paper.mk +++ b/reproduce/analysis/make/paper.mk @@ -202,7 +202,7 @@ paper.pdf: $(mtexdir)/project.tex paper.tex $(texbdir)/paper.bbl # conversion from PostScript to PDF, see # https://www.ghostscript.com/doc/current/Language.htm#Transparency dvips paper.dvi - ps2pdf -dNOSAFER paper.ps + ps2pdf paper.ps # Come back to the top project directory and copy the built PDF # file here. -- cgit v1.2.1