Split version info into separate file - pee - Pee a password manager;Pee - beca… | |
git clone git://vernunftzentrum.de/pee.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit fce8953faee8bba8888a1d8be812366fadd4a04c | |
parent 1972068875ef76ee24e82be3b4c1b4d6cb34cd79 | |
Author: Christian Kellermann <[email protected]> | |
Date: Tue, 19 Apr 2016 15:58:40 +0200 | |
Split version info into separate file | |
The version should include a git commit hash for tracability. This is | |
the preparation for it. | |
Diffstat: | |
pee.scm | 4 +--- | |
program-meta.scm | 3 +++ | |
2 files changed, 4 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/pee.scm b/pee.scm | |
@@ -18,9 +18,7 @@ | |
(import chicken scheme) | |
(use (srfi 1 4 14) matchable posix tweetnacl utils crypto-helper getopt-long s… | |
-(define-constant program-name-string "pee") | |
-(define-constant program-version "0.2") | |
-(define-constant program-description "A password manager for the command line.… | |
+(include "program-meta.scm") | |
(define-constant password-chars "abcdefhijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRST… | |
diff --git a/program-meta.scm b/program-meta.scm | |
@@ -0,0 +1,3 @@ | |
+(define-constant program-name-string "pee") | |
+(define-constant program-version "0.2") | |
+(define-constant program-description "A password manager for the command line.… |