From 6e9ef784cd60134113e3aa743ddc3937f44972ec Mon Sep 17 00:00:00 2001 From: Nils Vogels <bacardicoke@gmail.com> Date: Tue, 8 Sep 2015 01:01:24 +0200 Subject: [PATCH] Adding nzbToMedia as submodule Adding deprecation notice to autoProcessTV in favor of nzbToMedia --- .gitmodules | 3 +++ autoProcessTV/autoProcessTV.py | 5 +++++ autoProcessTV/hellaToSickBeard.py | 5 +++++ autoProcessTV/mediaToSickbeard.py | 9 +++++++++ autoProcessTV/sabToSickBeard.py | 5 +++++ contrib/nzbToMedia | 1 + contrib/readme.md | 10 ++++++++++ 7 files changed, 38 insertions(+) create mode 100644 .gitmodules create mode 160000 contrib/nzbToMedia create mode 100644 contrib/readme.md diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..df8e3477e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "contrib/nzbToMedia"] + path = contrib/nzbToMedia + url = https://github.com/clinton-hall/nzbToMedia diff --git a/autoProcessTV/autoProcessTV.py b/autoProcessTV/autoProcessTV.py index d8d56e3f0..5d2c817c8 100755 --- a/autoProcessTV/autoProcessTV.py +++ b/autoProcessTV/autoProcessTV.py @@ -4,6 +4,11 @@ # URL: http://code.google.com/p/sickbeard/ # # This file is part of SickRage. +# DEPRECATION NOTICE: autoProcessTV is deprecated and will be removed +# from SickRage at 31-10-2015. +# +# Please switch to nzbToMedia from Clinton Hall, which is included in +# the contrib folder # # SickRage 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/autoProcessTV/hellaToSickBeard.py b/autoProcessTV/hellaToSickBeard.py index 4458cb8c5..b57ddef1c 100755 --- a/autoProcessTV/hellaToSickBeard.py +++ b/autoProcessTV/hellaToSickBeard.py @@ -4,6 +4,11 @@ # URL: http://code.google.com/p/sickbeard/ # # This file is part of SickRage. +# DEPRECATION NOTICE: autoProcessTV is deprecated and will be removed +# from SickRage at 31-10-2015. +# +# Please switch to nzbToMedia from Clinton Hall, which is included in +# the contrib folder # # SickRage 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/autoProcessTV/mediaToSickbeard.py b/autoProcessTV/mediaToSickbeard.py index 289563af5..a24ffaf65 100755 --- a/autoProcessTV/mediaToSickbeard.py +++ b/autoProcessTV/mediaToSickbeard.py @@ -1,4 +1,10 @@ #!/usr/bin/env python2 +# DEPRECATION NOTICE: autoProcessTV is deprecated and will be removed +# from SickRage at 31-10-2015. +# +# Please switch to nzbToMedia from Clinton Hall, which is included in +# the contrib folder + import sys import os import time @@ -138,6 +144,9 @@ def blackhole(): def main(): scriptlogger.info(u'Starting external PostProcess script ' + __file__) + scriptlogger.info(u'DEPRECATION NOTICE: autoProcessTV is deprecated and will be removed from SickRage at 31-10-2015. ' + __file__) + scriptlogger.info(u'Please switch to nzbToMedia from Clinton Hall, which is included in the contrib folder' + __file__) + host = config.get("General", "web_host") port = config.get("General", "web_port") diff --git a/autoProcessTV/sabToSickBeard.py b/autoProcessTV/sabToSickBeard.py index 5e4b85280..6419bb9a5 100755 --- a/autoProcessTV/sabToSickBeard.py +++ b/autoProcessTV/sabToSickBeard.py @@ -4,6 +4,11 @@ # URL: http://code.google.com/p/sickbeard/ # # This file is part of SickRage. +# DEPRECATION NOTICE: autoProcessTV is deprecated and will be removed +# from SickRage at 31-10-2015. +# +# Please switch to nzbToMedia from Clinton Hall, which is included in +# the contrib folder # # SickRage 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/contrib/nzbToMedia b/contrib/nzbToMedia new file mode 160000 index 000000000..1cd64053b --- /dev/null +++ b/contrib/nzbToMedia @@ -0,0 +1 @@ +Subproject commit 1cd64053b0da1d351bb6af392e1ebb904c6b6ce2 diff --git a/contrib/readme.md b/contrib/readme.md new file mode 100644 index 000000000..f4340d621 --- /dev/null +++ b/contrib/readme.md @@ -0,0 +1,10 @@ +SickRage Contrib +===== +Stuff contributed to SickRage, or included of users leisure + +## What will you find in here? + - Scripts + - Links to other repositories we think make your life better + - Custom themes + - Other things that may come in handy + -- GitLab