diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-10-04 21:58:28 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-10-04 22:02:52 +1000 |
commit | 2c3eb4b85be765dadcb19d65507063de4cc9dde7 (patch) | |
tree | 56e9b17b6554b235ab7d0478879398df422cbd00 /gnu/packages/patches/metabat-remove-compilation-date.patch | |
parent | 47c14714a400c912243a79c421e0f0cfd4a0d55d (diff) | |
download | gnu-guix-2c3eb4b85be765dadcb19d65507063de4cc9dde7.tar gnu-guix-2c3eb4b85be765dadcb19d65507063de4cc9dde7.tar.gz |
gnu: metabat: Update to 0.32.4-1.cbdca756.
* gnu/packages/bioinformatics.scm (metabat): Update to 0.32.4-1.cbdca756.
* gnu/packages/patches/metabat-remove-compilation-date.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/patches/metabat-remove-compilation-date.patch')
-rw-r--r-- | gnu/packages/patches/metabat-remove-compilation-date.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/patches/metabat-remove-compilation-date.patch b/gnu/packages/patches/metabat-remove-compilation-date.patch new file mode 100644 index 0000000000..7672205b22 --- /dev/null +++ b/gnu/packages/patches/metabat-remove-compilation-date.patch @@ -0,0 +1,16 @@ +Remove the reference to the compilation date so that the build is +reproducible. + +diff --git a/src/metabat.cpp b/src/metabat.cpp +index 88e06de..c95cb1a 100644 +--- a/src/metabat.cpp ++++ b/src/metabat.cpp +@@ -49,7 +49,7 @@ int main(int ac, char* av[]) { + po::notify(vm); + + if (vm.count("help") || inFile.length() == 0 || outFile.length() == 0) { +- cerr << "\nMetaBAT: Metagenome Binning based on Abundance and Tetranucleotide frequency (version " << version << "; " << __DATE__ << " " << __TIME__ << ")" << endl; ++ cerr << "\nMetaBAT: Metagenome Binning based on Abundance and Tetranucleotide frequency (version " << version << "; unknown compilation date)" << endl; + cerr << "by Don Kang (ddkang@lbl.gov), Jeff Froula, Rob Egan, and Zhong Wang (zhongwang@lbl.gov) \n" << endl; + cerr << desc << endl << endl; + |