From 92c1e21f32574729e578bd8b7fefb8a89dbabc12 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sat, 18 Jul 2009 19:38:26 +0200 Subject: [PATCH] use Python interpreter from runtime environment * bin/gva, bin/gvaserver: use /usr/bin/env to find python binary (fixes #29) * create a basic .gitignore file * update copyright years in modified files --- .gitignore | 4 ++++ bin/gva | 4 ++-- bin/gvaserver | 4 ++-- setup.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7ba39f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*~ +*.pyc +*.egg/ +*.log diff --git a/bin/gva b/bin/gva index 4188803..2546bb7 100755 --- a/bin/gva +++ b/bin/gva @@ -1,8 +1,8 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- python -*- # -*- coding: utf-8 -*- # -# Copyright (C) 2007, 2008 by Jan Dittberner. +# Copyright (C) 2007, 2008, 2009 by Jan Dittberner. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/bin/gvaserver b/bin/gvaserver index d031a82..84e2c03 100755 --- a/bin/gvaserver +++ b/bin/gvaserver @@ -1,8 +1,8 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- python -*- # -*- coding: utf-8 -*- # -# Copyright (C) 2008 by Jan Dittberner. +# Copyright (C) 2008, 2009 by Jan Dittberner. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup.py b/setup.py index b797314..eb2738d 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007, 2008 by Jan Dittberner. +# Copyright (C) 2007, 2008, 2009 by Jan Dittberner. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by