From 748d19735118aaa5bff66bc186e7030305d29933 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sat, 11 Feb 2017 22:26:45 +0800 Subject: [PATCH] Remove deprecated source package build (used for the Ubuntu Software Center) --- installer/ubuntu/debian/changelog | 47 -------------------------- installer/ubuntu/debian/compat | 1 - installer/ubuntu/debian/control | 19 ----------- installer/ubuntu/debian/copyright | 29 ---------------- installer/ubuntu/debian/install | 3 -- installer/ubuntu/debian/postinst | 41 ---------------------- installer/ubuntu/debian/prerm | 40 ---------------------- installer/ubuntu/debian/rules | 18 ---------- installer/ubuntu/debian/source/format | 1 - installer/ubuntu/debian/source/options | 4 --- installer/ubuntu/filebot.desktop | 10 ------ installer/ubuntu/filebot.sh | 23 ------------- 12 files changed, 236 deletions(-) delete mode 100644 installer/ubuntu/debian/changelog delete mode 100644 installer/ubuntu/debian/compat delete mode 100644 installer/ubuntu/debian/control delete mode 100644 installer/ubuntu/debian/copyright delete mode 100644 installer/ubuntu/debian/install delete mode 100644 installer/ubuntu/debian/postinst delete mode 100644 installer/ubuntu/debian/prerm delete mode 100755 installer/ubuntu/debian/rules delete mode 100644 installer/ubuntu/debian/source/format delete mode 100644 installer/ubuntu/debian/source/options delete mode 100644 installer/ubuntu/filebot.desktop delete mode 100644 installer/ubuntu/filebot.sh diff --git a/installer/ubuntu/debian/changelog b/installer/ubuntu/debian/changelog deleted file mode 100644 index 90f4b0ca..00000000 --- a/installer/ubuntu/debian/changelog +++ /dev/null @@ -1,47 +0,0 @@ -filebot (4.6.1) trusty; urgency=low - - * Final release for the discontinued Ubuntu Software Center - - -- Reinhard Pointner Mon, 16 Nov 2015 00:00:00 +0800 - -filebot (4.6) trusty; urgency=low - - * Show Getting Started and video tutorials on first startup - * Improved Search & Lookup for OpenSubtitles - * Use HTTPS for OpenSubtitles requests and remember password hash only - * Fix Export Subtitles BOM issues - * Added support for {info.certifications} and {info.productionCompanies} - * Fix {group} mismatch issues - * Help menu with links - - -- Reinhard Pointner Mon, 01 Jun 2015 00:00:00 +0800 - -filebot (4.5.6) trusty; urgency=low - - * Improved series / episode detection - * Extended metadata is now fetched from the originally selected data source - * Fixed various issues related to fetching Chinese subtitles - * Do not treat folders with "movie.nfo" as single units like disk folders anymore - - -- Reinhard Pointner Sat, 24 Jan 2015 00:00:00 +0800 - -filebot (4.5.3) trusty; urgency=low - - * Change Output Folder button in Format Dialog - * Extract All will now only extract not-already-extracted files from the selected archives - * Improved support for non-English names - * Improved support for subtitle tags and language detection - * New binding {output} - * Lots of optimizations and usability improvements - * Lots of bugfixes - - -- Reinhard Pointner Fri, 08 Dec 2014 00:00:00 +0800 - -filebot (4.5.2) trusty; urgency=low - - * Opportunistic / Strict mode matching - * Improved episode / movie / music auto-detection - * Improved support for non-English language preferences - * Lots of optimizations - - -- Reinhard Pointner Fri, 24 Oct 2014 00:00:00 +0800 diff --git a/installer/ubuntu/debian/compat b/installer/ubuntu/debian/compat deleted file mode 100644 index ec635144..00000000 --- a/installer/ubuntu/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/installer/ubuntu/debian/control b/installer/ubuntu/debian/control deleted file mode 100644 index 0005c49d..00000000 --- a/installer/ubuntu/debian/control +++ /dev/null @@ -1,19 +0,0 @@ -Source: filebot -Section: utils -Priority: extra -Maintainer: Reinhard Pointner -Build-Depends: debhelper (>= 8.0.0) -Standards-Version: 3.9.4 -Homepage: http://www.filebot.net/ - -Package: filebot -Architecture: amd64 i386 -Depends: -Description: The ultimate TV and Movie Renamer - FileBot is the ultimate tool for renaming your movies, - tv shows or anime and even downloading subtitles. - It's smart, streamlined for simplicity and just works. - Putting the super-efficient UI aside, it's also got a - full-featured command-line interface and scripting engine - for all sorts of automation. Anything is possible. - diff --git a/installer/ubuntu/debian/copyright b/installer/ubuntu/debian/copyright deleted file mode 100644 index 56372376..00000000 --- a/installer/ubuntu/debian/copyright +++ /dev/null @@ -1,29 +0,0 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: filebot -Source: - -Files: * -Copyright: 2008-2015 Reinhard Pointner -License: GPL-2.0+ - -Files: debian/* -Copyright: 2014-2015 Reinhard Pointner -License: GPL-2.0+ - -License: GPL-2.0+ - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - . - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see - . - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". - diff --git a/installer/ubuntu/debian/install b/installer/ubuntu/debian/install deleted file mode 100644 index 7d54923f..00000000 --- a/installer/ubuntu/debian/install +++ /dev/null @@ -1,3 +0,0 @@ -filebot/* opt/filebot -filebot/*.desktop usr/share/applications -filebot/*.svg usr/share/icons diff --git a/installer/ubuntu/debian/postinst b/installer/ubuntu/debian/postinst deleted file mode 100644 index 9cc9d287..00000000 --- a/installer/ubuntu/debian/postinst +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# postinst script for filebot -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-remove' -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - configure) - # create symlink for filebot cmdline tool - ln -s /opt/filebot/bin/filebot.sh /usr/local/bin/filebot - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/installer/ubuntu/debian/prerm b/installer/ubuntu/debian/prerm deleted file mode 100644 index e8a63a76..00000000 --- a/installer/ubuntu/debian/prerm +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# prerm script for filebot -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - remove|upgrade|deconfigure) - # remove symlink for filebot cmdline tool - rm /usr/local/bin/filebot - ;; - - failed-upgrade) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/installer/ubuntu/debian/rules b/installer/ubuntu/debian/rules deleted file mode 100755 index 03d9d07c..00000000 --- a/installer/ubuntu/debian/rules +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -export DH_VERBOSE=1 - -%: - dh $@ - -override_dh_install: - dh_install --sourcedir=$(DEB_HOST_ARCH) - -override_dh_shlibdeps: - @echo "#ignore dh_shlibdeps" - -override_dh_makeshlibs: - @echo "#ignore dh_makeshlibs" - -override_dh_strip: - @echo "#ignore dh_strip" diff --git a/installer/ubuntu/debian/source/format b/installer/ubuntu/debian/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/installer/ubuntu/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/installer/ubuntu/debian/source/options b/installer/ubuntu/debian/source/options deleted file mode 100644 index db111cab..00000000 --- a/installer/ubuntu/debian/source/options +++ /dev/null @@ -1,4 +0,0 @@ -tar-ignore = "NULL" -diff-ignore = "^NULL$" -extend-diff-ignore = "^NULL$" -compression = "xz" diff --git a/installer/ubuntu/filebot.desktop b/installer/ubuntu/filebot.desktop deleted file mode 100644 index a905f856..00000000 --- a/installer/ubuntu/filebot.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Name=FileBot -Comment=The ultimate TV and Movie Renamer -Type=Application -Exec=/opt/filebot/bin/filebot.sh -Icon=filebot -Terminal=false -StartupNotify=true -Categories=AudioVideo;Video;Utility;FileTools;Java -X-Ubuntu-Gettext-Domain=filebot diff --git a/installer/ubuntu/filebot.sh b/installer/ubuntu/filebot.sh deleted file mode 100644 index 1130117f..00000000 --- a/installer/ubuntu/filebot.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -APP_ROOT="/opt/filebot" - -if [ -z "$HOME" ]; then - echo '$HOME must be set' - exit 1 -fi - -# add APP_ROOT to LD_LIBRARY_PATH -if [ ! -z "$LD_LIBRARY_PATH" ]; then - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$APP_ROOT" -else - export LD_LIBRARY_PATH="$APP_ROOT" -fi - -APP_DATA="$HOME/.config/FileBot" -APP_CACHE="$HOME/.cache/FileBot" - -# use embedded JRE -JAVA_CMD="$APP_ROOT/jre/bin/java" - -# start filebot -"$JAVA_CMD" -Dunixfs=false -DuseGVFS=true -DuseExtendedFileAttributes=true -DuseCreationDate=false -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dsun.java2d.xrender=true -Djava.net.useSystemProxies=true -Djna.nosys=true -Dapplication.update=skip -Dapplication.deployment=usc -Dnet.filebot.UserFiles.fileChooser=JavaFX "-Dapplication.dir=$APP_DATA" "-Dapplication.cache=$APP_CACHE/ehcache.disk.store" "-Djava.io.tmpdir=$APP_CACHE/java.io.tmpdir" "-Dnet.filebot.AcoustID.fpcalc=$APP_ROOT/fpcalc" $JAVA_OPTS -jar "$APP_ROOT/FileBot.jar" "$@"