~asac/live-build/live-helper.install-kernel-with-no-initramfs

« back to all changes in this revision

Viewing changes to functions/version.sh

  • Committer: Daniel Baumann
  • Date: 2007-09-23 08:04:47 UTC
  • Revision ID: git-v1:f4383da69d4642521cb07f8f970d9c9c759b44ee
Tags: 1.0_a2-1
Adding live-helper 1.0~a2-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# version.sh - handle version information
4
4
 
5
 
DATE="`date +%Y%m%d`"
6
 
VERSION="1.0~a1"
 
5
VERSION="1.0~a2"
 
6
 
 
7
Version ()
 
8
{
 
9
        echo "${PROGRAM}, version ${VERSION}"
 
10
        echo "This program is a part of live-helper."
 
11
        echo
 
12
        echo "Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>"
 
13
        echo "Copyright (C) 2006-2007 Marco Amadori <marco.amadori@gmail.com>"
 
14
        echo
 
15
        echo "This program is free software; you can redistribute it and/or modify"
 
16
        echo "it under the terms of the GNU General Public License as published by"
 
17
        echo "the Free Software Foundation; either version 2 of the License, or"
 
18
        echo "(at your option) any later version."
 
19
        echo
 
20
        echo "This program is distributed in the hope that it will be useful,"
 
21
        echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
 
22
        echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
 
23
        echo "GNU General Public License for more details."
 
24
        echo
 
25
        echo "You should have received a copy of the GNU General Public License"
 
26
        echo "along with this program; if not, write to the Free Software"
 
27
        echo "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
 
28
        echo
 
29
        echo "On Debian systems, the complete text of the GNU General Public License"
 
30
        echo "can be found in /usr/share/common-licenses/GPL file."
 
31
        echo
 
32
        echo "Homepage: <http://debian-live.alioth.debian.org/>"
 
33
        exit 0
 
34
}