1
0
Fork 0

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
This commit is contained in:
Jan Dittberner 2009-07-18 19:38:26 +02:00
parent 6883909d73
commit 92c1e21f32
4 changed files with 9 additions and 5 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*~
*.pyc
*.egg/
*.log

View File

@ -1,8 +1,8 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- python -*- # -*- python -*-
# -*- coding: utf-8 -*- # -*- 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 # 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 # it under the terms of the GNU General Public License as published by

View File

@ -1,8 +1,8 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- python -*- # -*- python -*-
# -*- coding: utf-8 -*- # -*- 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 # 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 # it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- 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 # 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 # it under the terms of the GNU General Public License as published by