Split version info into separate file - pee - Pee a password manager;Pee - because you have to...
 (HTM) git clone git://vernunftzentrum.de/pee.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit fce8953faee8bba8888a1d8be812366fadd4a04c
 (DIR) parent 1972068875ef76ee24e82be3b4c1b4d6cb34cd79
 (HTM) Author: Christian Kellermann <ckeen@pestilenz.org>
       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(-)
       ---
 (DIR) 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 stty files data-structures irregex files ports extras)
        
       -(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 "abcdefhijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()-=~?/\|+,:.<>{}[]")
        
 (DIR) 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.")