--- thumbnailer-1.0+14.04.20140304.orig/debian/changelog +++ thumbnailer-1.0+14.04.20140304/debian/changelog @@ -0,0 +1,92 @@ +thumbnailer (1.0+14.04.20140304-0ubuntu1) trusty; urgency=low + + [ CI bot ] + * Resync trunk + + [ Ugo Riboni ] + * Add a new nonstandard thumbnail size (360) needed by gallery-app To + test from QML you will need this MR as well: + https://code.launchpad.net/~amanzi-team/ubuntu-ui-toolkit/ubuntu-ui- + toolkit-xlarge-thumbnails/+merge/207500 (LP: #1221968) + + [ Jussi Pakkanen ] + * Error condition checking and error messages. + * Fix image orientation. + + -- Ubuntu daily release Tue, 04 Mar 2014 10:09:12 +0000 + +thumbnailer (1.0+14.04.20140218-0ubuntu1) trusty; urgency=low + + [ Ricardo Salveti de Araujo ] + * vs-thumb: give pipeline at least 3 seconds to preroll + + [ Jussi Pakkanen ] + * Created a unique_gobj class for managing gobject based resources. + * Fix use of #includes. (LP: #1237045) + * A bunch of fixes to make the project compile on precise. + * Removed accidentally added file. + * Invalidate cached images when source has changed. + + -- Ubuntu daily release Tue, 18 Feb 2014 23:01:31 +0000 + +thumbnailer (1.0+13.10.20131011-0ubuntu1) saucy; urgency=low + + [ Jussi Pakkanen ] + * Fix install directory of vs-thumb. (LP: #1235325) + * Wait for child process to die when killing it with SIGKILL. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 58 + + -- Ubuntu daily release Fri, 11 Oct 2013 05:41:32 +0000 + +thumbnailer (1.0+13.10.20131008-0ubuntu1) saucy; urgency=low + + [ Jussi Pakkanen ] + * Fix off by one error. (LP: #1235444) + * Disable use of in-process GStreamer because we use 1.0, which + clashes with 0.10. (LP: #1235484) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 55 + + -- Ubuntu daily release Tue, 08 Oct 2013 12:49:51 +0000 + +thumbnailer (1.0+13.10.20131007-0ubuntu1) saucy; urgency=low + + [ Jussi Pakkanen ] + * Write files into cache atomically. + * Guard against a frozen worker process. + * Document the public interface. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 52 + + -- Ubuntu daily release Mon, 07 Oct 2013 10:52:14 +0000 + +thumbnailer (1.0+13.10.20131003-0ubuntu1) saucy; urgency=low + + [ Jussi Pakkanen ] + * Run gstreamer video pipelines in an external process. + * Get helper path from config.h. + * Use helper binary from build dir when running tests. + * Adds support for full resolution thumbnails. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 48 + + -- Ubuntu daily release Thu, 03 Oct 2013 03:26:49 +0000 + +thumbnailer (1.0+13.10.20131002-0ubuntu1) saucy; urgency=low + + [ Jussi Pakkanen ] + * Initial release. + * Typo fix. + + [ Ɓukasz 'sil2100' Zemczak ] + * Automatic snapshot from revision 41 (bootstrap) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 43 + + -- Ubuntu daily release Wed, 02 Oct 2013 02:34:38 +0000 --- thumbnailer-1.0+14.04.20140304.orig/debian/compat +++ thumbnailer-1.0+14.04.20140304/debian/compat @@ -0,0 +1 @@ +9 --- thumbnailer-1.0+14.04.20140304.orig/debian/control +++ thumbnailer-1.0+14.04.20140304/debian/control @@ -0,0 +1,41 @@ +Source: thumbnailer +Section: libdevel +Priority: optional +Maintainer: Ubuntu Core Developers +Standards-Version: 3.9.4 +Build-Depends: cmake, + debhelper (>= 9), + gstreamer1.0-plugins-good, + libgdk-pixbuf2.0-dev, + libgstreamer-plugins-base1.0-dev, + libgstreamer1.0-dev, + shared-mime-info, +Homepage: https://launchpad.net/thumbnailer +# if you don't have have commit access to this branch but would like to upload +# directly to Ubuntu, don't worry: your changes will be merged back into the +# upstream branch +Vcs-Bzr: lp:thumbnailer + +Package: libthumbnailer0 +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends}, +Depends: ${misc:Depends}, + ${shlibs:Depends}, +Description: generate thumbnails from files + Thumbnailer is a shared library that generates + thumbnail images for multiple file types such + as video and audio files. + +Package: libthumbnailer-dev +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends}, +Depends: ${misc:Depends}, + ${shlibs:Depends}, + gstreamer1.0-plugins-base, + gstreamer1.0-plugins-good, + libthumbnailer0 (= ${binary:Version}), +Description: development files for thumbnailer + This package contains development files + for the thumbnailer package. --- thumbnailer-1.0+14.04.20140304.orig/debian/copyright +++ thumbnailer-1.0+14.04.20140304/debian/copyright @@ -0,0 +1,19 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: thumbnailer +Source: https://launchpad.net/thumbnailer + +Files: * +Copyright: 2013 Canonical ltd +License: LGPL-3 + This program is free software: you can redistribute it and/or modify + it under the terms of version 3 of the GNU Lesser General Public + License as published by the Free Software Foundation. + . + This program 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. + . + On Debian systems, the full text of the GNU Lesser General Public + License version 3 can be found in the file + `/usr/share/common-licenses/LGPL-3' --- thumbnailer-1.0+14.04.20140304.orig/debian/libthumbnailer-dev.install +++ thumbnailer-1.0+14.04.20140304/debian/libthumbnailer-dev.install @@ -0,0 +1,3 @@ +usr/include/* +usr/lib/*/lib*.so +usr/lib/*/pkgconfig/* --- thumbnailer-1.0+14.04.20140304.orig/debian/libthumbnailer0.install +++ thumbnailer-1.0+14.04.20140304/debian/libthumbnailer0.install @@ -0,0 +1,2 @@ +usr/lib/*/libthumb*.so.* +usr/lib/*/thumbnailer/vs-thumb --- thumbnailer-1.0+14.04.20140304.orig/debian/rules +++ thumbnailer-1.0+14.04.20140304/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DPKG_GENSYMBOLS_CHECK_LEVEL=4 + +# http://ccache.samba.org/manual.html#_precompiled_headers +export CCACHE_SLOPPINESS=time_macros + +%: + dh $@ --parallel --fail-missing + +override_dh_auto_configure: + dh_auto_configure -- -DCMAKE_BUILD_TYPE='' --- thumbnailer-1.0+14.04.20140304.orig/debian/source/format +++ thumbnailer-1.0+14.04.20140304/debian/source/format @@ -0,0 +1 @@ +1.0