From b3ac781a3c55bd8ce8d412b0a42fc35cdb1110eb Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Mon, 23 Apr 2018 15:31:41 +0200 Subject: [PATCH 1/2] all: drop exec bit and shebang from Python modules Only the executables are supposed to possess those. --- build-aux/qmi-codegen/Client.py | 1 - build-aux/qmi-codegen/Container.py | 1 - build-aux/qmi-codegen/Field.py | 1 - build-aux/qmi-codegen/FieldResult.py | 1 - build-aux/qmi-codegen/Message.py | 1 - build-aux/qmi-codegen/MessageList.py | 1 - build-aux/qmi-codegen/TypeFactory.py | 1 - build-aux/qmi-codegen/Variable.py | 1 - build-aux/qmi-codegen/VariableArray.py | 1 - build-aux/qmi-codegen/VariableFactory.py | 1 - build-aux/qmi-codegen/VariableInteger.py | 1 - build-aux/qmi-codegen/VariableSequence.py | 1 - build-aux/qmi-codegen/VariableString.py | 1 - build-aux/qmi-codegen/VariableStruct.py | 1 - build-aux/qmi-codegen/utils.py | 1 - utils/qmidb/Entities.py | 1 - utils/qmidb/Enums.py | 1 - utils/qmidb/Fields.py | 1 - utils/qmidb/Structs.py | 1 - utils/qmidb/utils.py | 1 - 20 files changed, 20 deletions(-) mode change 100755 => 100644 utils/qmidb/Entities.py mode change 100755 => 100644 utils/qmidb/Enums.py mode change 100755 => 100644 utils/qmidb/Fields.py mode change 100755 => 100644 utils/qmidb/Structs.py mode change 100755 => 100644 utils/qmidb/utils.py diff --git a/build-aux/qmi-codegen/Client.py b/build-aux/qmi-codegen/Client.py index be51197..6c176be 100644 --- a/build-aux/qmi-codegen/Client.py +++ b/build-aux/qmi-codegen/Client.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/Container.py b/build-aux/qmi-codegen/Container.py index 7dd6b0f..f0bf6fe 100644 --- a/build-aux/qmi-codegen/Container.py +++ b/build-aux/qmi-codegen/Container.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/Field.py b/build-aux/qmi-codegen/Field.py index fde9ed4..8a09dc0 100644 --- a/build-aux/qmi-codegen/Field.py +++ b/build-aux/qmi-codegen/Field.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/FieldResult.py b/build-aux/qmi-codegen/FieldResult.py index c859ac5..c810ed5 100644 --- a/build-aux/qmi-codegen/FieldResult.py +++ b/build-aux/qmi-codegen/FieldResult.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/Message.py b/build-aux/qmi-codegen/Message.py index 8a1d150..b5a78f1 100644 --- a/build-aux/qmi-codegen/Message.py +++ b/build-aux/qmi-codegen/Message.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/MessageList.py b/build-aux/qmi-codegen/MessageList.py index 418a65c..c14c8a7 100644 --- a/build-aux/qmi-codegen/MessageList.py +++ b/build-aux/qmi-codegen/MessageList.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/TypeFactory.py b/build-aux/qmi-codegen/TypeFactory.py index aa80004..0428759 100644 --- a/build-aux/qmi-codegen/TypeFactory.py +++ b/build-aux/qmi-codegen/TypeFactory.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/Variable.py b/build-aux/qmi-codegen/Variable.py index 83fd8aa..4807c4f 100644 --- a/build-aux/qmi-codegen/Variable.py +++ b/build-aux/qmi-codegen/Variable.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableArray.py b/build-aux/qmi-codegen/VariableArray.py index 816110b..498947b 100644 --- a/build-aux/qmi-codegen/VariableArray.py +++ b/build-aux/qmi-codegen/VariableArray.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableFactory.py b/build-aux/qmi-codegen/VariableFactory.py index b229515..5782fd8 100644 --- a/build-aux/qmi-codegen/VariableFactory.py +++ b/build-aux/qmi-codegen/VariableFactory.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableInteger.py b/build-aux/qmi-codegen/VariableInteger.py index a335e47..9eb1855 100644 --- a/build-aux/qmi-codegen/VariableInteger.py +++ b/build-aux/qmi-codegen/VariableInteger.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableSequence.py b/build-aux/qmi-codegen/VariableSequence.py index 9d33f90..60ab50b 100644 --- a/build-aux/qmi-codegen/VariableSequence.py +++ b/build-aux/qmi-codegen/VariableSequence.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableString.py b/build-aux/qmi-codegen/VariableString.py index d588ca6..ed7851e 100644 --- a/build-aux/qmi-codegen/VariableString.py +++ b/build-aux/qmi-codegen/VariableString.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/VariableStruct.py b/build-aux/qmi-codegen/VariableStruct.py index 5a8e4a9..42fd430 100644 --- a/build-aux/qmi-codegen/VariableStruct.py +++ b/build-aux/qmi-codegen/VariableStruct.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/build-aux/qmi-codegen/utils.py b/build-aux/qmi-codegen/utils.py index 52cf615..dcf8a0d 100644 --- a/build-aux/qmi-codegen/utils.py +++ b/build-aux/qmi-codegen/utils.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/utils/qmidb/Entities.py b/utils/qmidb/Entities.py old mode 100755 new mode 100644 index a55d7bf..3f81b55 --- a/utils/qmidb/Entities.py +++ b/utils/qmidb/Entities.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/utils/qmidb/Enums.py b/utils/qmidb/Enums.py old mode 100755 new mode 100644 index 9d81c93..d8c1c6a --- a/utils/qmidb/Enums.py +++ b/utils/qmidb/Enums.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/utils/qmidb/Fields.py b/utils/qmidb/Fields.py old mode 100755 new mode 100644 index cd2e86b..e4db6c6 --- a/utils/qmidb/Fields.py +++ b/utils/qmidb/Fields.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/utils/qmidb/Structs.py b/utils/qmidb/Structs.py old mode 100755 new mode 100644 index f068fc8..c019dd1 --- a/utils/qmidb/Structs.py +++ b/utils/qmidb/Structs.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under diff --git a/utils/qmidb/utils.py b/utils/qmidb/utils.py old mode 100755 new mode 100644 index a5bbd8a..135d376 --- a/utils/qmidb/utils.py +++ b/utils/qmidb/utils.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- # # This program is free software; you can redistribute it and/or modify it under -- 2.14.3