--- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/watch +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/watch @@ -0,0 +1 @@ +# Upstream does not make release tarballs. NUVs are taken from git. --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/copyright +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/copyright @@ -0,0 +1,111 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Name: imageshac-uploader +Maintainer: Luke Faraone +Source: http://code.google.com/p/imageshack-uploader/ + +Copyright: © 2009, ImageShack Corp. +License: BSD + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + Neither the name of ImageShack nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: ffmpeg_fas.*, private_errors.h, seek_indices.* +Copyright: © 2008, Pittsburgh Pattern Recognition, Inc. +License: GPL-3+ + This file is part of the Frame Accurate Seeking extension library to + ffmpeg (ffmpeg-fas). + . + ffmpeg-fas is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 of the License, or (at your + option) any later version. + . + The ffmpeg-fas library 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 Lesser + General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public License + along with the ffmpeg-fas library. If not, see + . + . + On Debian systems, the full text of the GNU Lesser General Public License + version 3 can be found in '/usr/share/common-licenses/LGPL-3'. + +Files: qtsingleapplication/* +Copyright: © 2009 Nokia Corporation and/or its subsidiary(-ies) +License: LGPL-2.1, or GPL-3, or Qt Solutions Commercial License + Commercial Usage + Licensees holding valid Qt Commercial licenses may use this file in + accordance with the Qt Solutions Commercial License Agreement provided + with the Software or, alternatively, in accordance with the terms + contained in a written agreement between you and Nokia. + . + GNU Lesser General Public License Usage + Alternatively, this file may be used under the terms of the GNU Lesser + General Public License version 2.1 as published by the Free Software + Foundation and appearing in the file LICENSE.LGPL included in the + packaging of this file. Please review the following information to + ensure the GNU Lesser General Public License version 2.1 requirements + will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. + . + In addition, as a special exception, Nokia gives you certain + additional rights. These rights are described in the Nokia Qt LGPL + Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this + package. + . + GNU General Public License Usage + Alternatively, this file may be used under the terms of the GNU + General Public License version 3.0 as published by the Free Software + Foundation and appearing in the file LICENSE.GPL included in the + packaging of this file. Please review the following information to + ensure the GNU General Public License version 3.0 requirements will be + met: http://www.gnu.org/copyleft/gpl.html. + . + Please note Third Party Software included with Qt Solutions may impose + additional restrictions and it is the user's responsibility to ensure + that they have met the licensing requirements of the GPL, LGPL, or Qt + Solutions Commercial license and the relevant license of the Third + Party Software they are using. + . + If you are unsure which license is appropriate for your use, please + contact the sales department at qt-sales@nokia.com. + . + On Debian systems, the full text of the GNU General Public License + version 3 and the GNU Lesser General Public License version 2.1 can be + found in the files '/usr/share/common-licenses/GPL-3' and + '/usr/share/common-licenses/LGPL-2.1', respectively. + +Files: debian/* +Copyright: © 2010, Luke Faraone +License: GPL-3+ or BSD + The Debian packaging is Copyright © 2010, Luke Faraone , + and is licensed under the GNU General Public License as published by + the Free Software Foundation version 3, or (at your option) any later + version. See '/usr/share/common-licenses/GPL-3' for the full text of the + GNU GPL. + . + For compatibility with upstream, the Debian packaging is also provided + under the above BSD license. --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/rules +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f + +#DEB_SRCDIR = $(CURDIR)/rainbow +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/qmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +# Add here any variable or target overrides you need. + + + +# generate manpages. + +.PHONY: get-orig-source + +build/imageshack-uploader:: + pandoc -s -w man ./debian/imageshack-uploader.1.md -o imageshack-uploader.1 + +install/imageshack-uploader:: + mkdir -p debian/imageshack-uploader-common/usr/share/imageshack-uploader/translations/ + cp translations/* debian/imageshack-uploader-common/usr/share/imageshack-uploader/translations/ + +clean:: + rm -rf imageshack-uploader.1 + + +# Rules for fetching the upstream tarball +CURRENT_TREEISH =$(shell dpkg-parsechangelog | sed -rne 's,^Version: .*hg.{9}([^-]+).*,\1,p') +CURVER=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p') + +SOURCE_DIR=imageshack-uploader-$(CURVER) +TARBALL=imageshack-uploader_$(CURVER).orig.tar.gz +QMAKE=IMAGESHACK_DEVELOPER_KEY=139ACLMVba0ed423487bdf82ee74c68020d4b198 qmake + +$(SOURCE_DIR): + hg clone https://imageshack-uploader.googlecode.com/hg $(SOURCE_DIR) + if [ x$(CURRENT_TREEISH) = x ]; then \ + cd $(SOURCE_DIR) && hg checkout v$(CURVER); \ + else \ + cd $(SOURCE_DIR) && hg checkout $(CURRENT_TREEISH); \ + fi + + +$(TARBALL): $(SOURCE_DIR) + tar czvf $(TARBALL) $(SOURCE_DIR) + +get-orig-source: $(TARBALL) + rm -rf $(SOURCE_DIR) $(SOURCE_DIR).temp + + --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/compat +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/compat @@ -0,0 +1 @@ +7 --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/changelog +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/changelog @@ -0,0 +1,5 @@ +imageshack-uploader (2.1+hg20100303.7c01926daa-1) unstable; urgency=low + + * Initial release (Closes: #574345) + + -- Luke Faraone Wed, 17 Mar 2010 10:29:59 -0400 --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/control +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/control @@ -0,0 +1,33 @@ +Source: imageshack-uploader +Section: utils +Priority: optional +Maintainer: Luke Faraone +Build-Depends: cdbs (>= 0.4.49), debhelper (>= 7), mercurial, ffmpeg (>=0.5), + libqtcore4 (>=4.5), libqtgui4, libqt4-xml, qt4-qmake, libqt4-dev, + libavutil-dev, libswscale-dev, libavformat-dev, libavcodec-dev, + pkg-config, pandoc +Standards-Version: 3.8.4 +DM-Upload-Allowed: yes +Vcs-Bzr: https://code.launchpad.net/~lfaraone/imageshack-uploader/debian +Homepage: http://code.google.com/p/imageshack-uploader/ + +Package: imageshack-uploader +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, imageshack-uploader-common +Description: a image and video upload utility for the ImageShack hosting service + The ImageShack Bulk Uploader is a simple standalone application for uploading + one or more image and video files to ImageShack. Users can upload to their + account or anonymously. + . + To fully make use of this application, you may wish to create an account at + . + +Package: imageshack-uploader-common +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: a image and video upload utility - common files + The ImageShack Bulk Uploader is a simple standalone application for uploading + one or more image and video files to ImageShack. Users can upload to their + account or anonymously. + . + This package contains common files for the imageshack-uploader package. --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/imageshack-uploader.1.md +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/imageshack-uploader.1.md @@ -0,0 +1,30 @@ +% IMAGESHACK-UPLOADER(1) +% +% March 16, 2010 + +# NAME + +imageshack-uploader - a simple standalone application for uploading one or more image and video files to the Imageshack image hosting service + +# SYNOPSIS + +**imageshack-uploader** *filename1* *filename2* _..._ + +# DESCRIPTION + +**imageshack-uploader** is primarily a graphical application; there is no console interaction. Files provided on the command line will be queued in the upload tray on launch. + +# OPTIONS + +This program does not accept any command-line options or parameters other than as described above. + +# AUTHORS + +**imageshack-uploader** was developed by _Codeminders_ . The development of this project was sponsored by _ImageShack corp._ + +This manual page was written by Luke Faraone for the **Debian GNU/Linux** system, but its use elsewhere is encouraged. + +# SEE ALSO + +Additional documentation may be found at . + --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/manpages +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/manpages @@ -0,0 +1 @@ +imageshack-uploader.1 --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/patches/1000-proper-desktop-file.patch +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/patches/1000-proper-desktop-file.patch @@ -0,0 +1,15 @@ +diff -Nur -x '*.orig' -x '*~' imageshack-uploader-2.1+hg20100303.7c01926daa/imageshackuploader.desktop imageshack-uploader-2.1+hg20100303.7c01926daa.new/imageshackuploader.desktop +--- imageshack-uploader-2.1+hg20100303.7c01926daa/imageshackuploader.desktop 2010-03-16 22:53:49.000000000 -0400 ++++ imageshack-uploader-2.1+hg20100303.7c01926daa.new/imageshackuploader.desktop 2010-03-17 10:51:39.376526109 -0400 +@@ -1,5 +1,4 @@ + [Desktop Entry] +-Encoding=UTF-8 + Name=ImageShack Uploader + Name[ru]=Загрузчик ImageShack + Comment=Upload your images and videos to ImageShack +@@ -8,4 +7,4 @@ + Exec=imageshack-uploader + Terminal=false + Type=Application +-Categories=Network;Web; ++Categories=Network;Qt;FileTransfer; --- imageshack-uploader-2.1+hg20100303.7c01926daa.orig/debian/patches/README +++ imageshack-uploader-2.1+hg20100303.7c01926daa/debian/patches/README @@ -0,0 +1,4 @@ +0xxx: Grabbed from upstream development. +1xxx: Possibly relevant for upstream adoption. +2xxx: Only relevant for official Debian release. +