Remove deprecated source package build (used for the Ubuntu Software Center)
This commit is contained in:
parent
45f5bf2471
commit
748d197351
|
@ -1,47 +0,0 @@
|
|||
filebot (4.6.1) trusty; urgency=low
|
||||
|
||||
* Final release for the discontinued Ubuntu Software Center
|
||||
|
||||
-- Reinhard Pointner <maintainer@filebot.net> 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 <maintainer@filebot.net> 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 <maintainer@filebot.net> 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 <maintainer@filebot.net> 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 <maintainer@filebot.net> Fri, 24 Oct 2014 00:00:00 +0800
|
|
@ -1 +0,0 @@
|
|||
9
|
|
@ -1,19 +0,0 @@
|
|||
Source: filebot
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: Reinhard Pointner <maintainer@filebot.net>
|
||||
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.
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: filebot
|
||||
Source: <svn://svn.code.sf.net/p/filebot/code/trunk>
|
||||
|
||||
Files: *
|
||||
Copyright: 2008-2015 Reinhard Pointner <maintainer@filebot.net>
|
||||
License: GPL-2.0+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2014-2015 Reinhard Pointner <maintainer@filebot.net>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
filebot/* opt/filebot
|
||||
filebot/*.desktop usr/share/applications
|
||||
filebot/*.svg usr/share/icons
|
|
@ -1,41 +0,0 @@
|
|||
#!/bin/sh
|
||||
# postinst script for filebot
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postinst> `configure' <most-recently-configured-version>
|
||||
# * <old-postinst> `abort-upgrade' <new version>
|
||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||||
# <new-version>
|
||||
# * <postinst> `abort-remove'
|
||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||||
# <failed-install-package> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# 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
|
|
@ -1,40 +0,0 @@
|
|||
#!/bin/sh
|
||||
# prerm script for filebot
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <prerm> `remove'
|
||||
# * <old-prerm> `upgrade' <new-version>
|
||||
# * <new-prerm> `failed-upgrade' <old-version>
|
||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
||||
# <package-being-installed> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# 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
|
|
@ -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"
|
|
@ -1 +0,0 @@
|
|||
3.0 (native)
|
|
@ -1,4 +0,0 @@
|
|||
tar-ignore = "NULL"
|
||||
diff-ignore = "^NULL$"
|
||||
extend-diff-ignore = "^NULL$"
|
||||
compression = "xz"
|
|
@ -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
|
|
@ -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" "$@"
|
Loading…
Reference in New Issue