summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2007-01-04 10:37:33 +0000
committerMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2007-01-04 10:37:33 +0000
commit9b23ec95d9173e4b3c6823de4ebc82649b474fef (patch)
tree2cec6a088674510e9a56b5aa47d696d2386837dc
parente4696d5777032cb918be3f8e8831c3c52421d864 (diff)
downloadbitbake-9b23ec95d9173e4b3c6823de4ebc82649b474fef.tar.gz
drop shebangs from lib/bb scripts (from trunk)
- those scripts are not called by hand by bitbake users and most of package linting tools (lintian/Debian, rpmlint/Fedora) complain about not executable scripts. - if someone want to run them by hand then he will be able to do it with calling 'python SCRIPT'
-rw-r--r--lib/bb/__init__.py1
-rw-r--r--lib/bb/build.py1
-rw-r--r--lib/bb/cache.py1
-rw-r--r--lib/bb/data.py1
-rw-r--r--lib/bb/event.py1
-rw-r--r--lib/bb/fetch/__init__.py1
-rw-r--r--lib/bb/fetch/cvs.py1
-rw-r--r--lib/bb/fetch/git.py1
-rw-r--r--lib/bb/fetch/local.py1
-rw-r--r--lib/bb/fetch/svk.py1
-rw-r--r--lib/bb/fetch/svn.py1
-rw-r--r--lib/bb/fetch/wget.py1
-rw-r--r--lib/bb/msg.py1
-rw-r--r--lib/bb/providers.py1
-rw-r--r--lib/bb/shell.py1
15 files changed, 0 insertions, 15 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index 98c0574bd..5da1d583b 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/build.py b/lib/bb/build.py
index 176a500dc..4e350cde6 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 9972f788b..0682aa6ce 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 90f0f0ccf..3e3af8453 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/event.py b/lib/bb/event.py
index b1d12177c..f39bc6245 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index c69de2bb0..f3973e3ad 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/cvs.py b/lib/bb/fetch/cvs.py
index 17952ed41..a2ff8ece8 100644
--- a/lib/bb/fetch/cvs.py
+++ b/lib/bb/fetch/cvs.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/git.py b/lib/bb/fetch/git.py
index 0646885f0..80fdab482 100644
--- a/lib/bb/fetch/git.py
+++ b/lib/bb/fetch/git.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/local.py b/lib/bb/fetch/local.py
index 51938f823..27eb6a550 100644
--- a/lib/bb/fetch/local.py
+++ b/lib/bb/fetch/local.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/svk.py b/lib/bb/fetch/svk.py
index 19103213c..681961514 100644
--- a/lib/bb/fetch/svk.py
+++ b/lib/bb/fetch/svk.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/svn.py b/lib/bb/fetch/svn.py
index 04dd4e08d..f5288f2c8 100644
--- a/lib/bb/fetch/svn.py
+++ b/lib/bb/fetch/svn.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/fetch/wget.py b/lib/bb/fetch/wget.py
index e47a8859b..81b8e5e42 100644
--- a/lib/bb/fetch/wget.py
+++ b/lib/bb/fetch/wget.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/msg.py b/lib/bb/msg.py
index d526b6e98..43d3f93cf 100644
--- a/lib/bb/msg.py
+++ b/lib/bb/msg.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
"""
diff --git a/lib/bb/providers.py b/lib/bb/providers.py
index 02f45ddc3..ca20eaca2 100644
--- a/lib/bb/providers.py
+++ b/lib/bb/providers.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
#
diff --git a/lib/bb/shell.py b/lib/bb/shell.py
index b7c5dfb93..fd7bc4528 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
##########################################################################