From 5957b44444dfae6b5390cbd9f780af3b13ed4e1f Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Thu, 10 Aug 2023 15:49:03 -0500 Subject: [PATCH] new: Add shebang and SPDX headers --- APKPure_dl.py | 5 +++++ Cleanup.py | 5 +++++ JAVABuilder.py | 5 +++++ Notifications.py | 5 +++++ ReVancedBuilder.py | 4 +++- 5 files changed, 23 insertions(+), 1 deletion(-) diff --git a/APKPure_dl.py b/APKPure_dl.py index 069e557..e4480c6 100644 --- a/APKPure_dl.py +++ b/APKPure_dl.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3\ + +# SPDX-FileCopyrightText: 2023 Sayantan Santra +# SPDX-License-Identifier: GPL-3.0-only + import os import sys import json diff --git a/Cleanup.py b/Cleanup.py index ee661fe..2be3d2b 100644 --- a/Cleanup.py +++ b/Cleanup.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 + +# SPDX-FileCopyrightText: 2023 Sayantan Santra +# SPDX-License-Identifier: GPL-3.0-only + import os import sys from Notifications import send_notif diff --git a/JAVABuilder.py b/JAVABuilder.py index 84456e4..e7c91eb 100644 --- a/JAVABuilder.py +++ b/JAVABuilder.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 + +# SPDX-FileCopyrightText: 2023 Sayantan Santra +# SPDX-License-Identifier: GPL-3.0-only + import os import sys import configparser as cp diff --git a/Notifications.py b/Notifications.py index 8375e32..5c26370 100644 --- a/Notifications.py +++ b/Notifications.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 + +# SPDX-FileCopyrightText: 2023 Sayantan Santra +# SPDX-License-Identifier: GPL-3.0-only + import json import re import requests as req diff --git a/ReVancedBuilder.py b/ReVancedBuilder.py index 92456c5..b3c4b5e 100755 --- a/ReVancedBuilder.py +++ b/ReVancedBuilder.py @@ -1,5 +1,8 @@ #!/usr/bin/env python3 +# SPDX-FileCopyrightText: 2023 Sayantan Santra +# SPDX-License-Identifier: GPL-3.0-only + import sys import os import configparser as cp @@ -17,7 +20,6 @@ import subprocess # TODO: README # TODO: PATCHES_GUIDE.md (maybe delete it?) # TODO: Install using pip -# TODO: Do not download twice for root and nonroot # Update the ReVanced tools, if needed def update_tools(appstate):