--- kepas-0.9.3.orig/debian/not-installed +++ kepas-0.9.3/debian/not-installed @@ -0,0 +1,2 @@ +# seems to be the same than /usr/share/kde4/apps/kepas/kepas.notifyrc +./usr/share/kde4/apps/plasma/plasma.notifyrc --- kepas-0.9.3.orig/debian/watch +++ kepas-0.9.3/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/kepas/kepas-(.*)\.tar\.bz2 --- kepas-0.9.3.orig/debian/kepas.postinst +++ kepas-0.9.3/debian/kepas.postinst @@ -0,0 +1,42 @@ +#!/bin/sh +# postinst script for kepas +# +# 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) + ldconfig + ;; + + 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 + + --- kepas-0.9.3.orig/debian/kepas.install +++ kepas-0.9.3/debian/kepas.install @@ -0,0 +1,7 @@ +/usr/share/applications/kde4/kepas.desktop +/usr/share/icons/* +/usr/share/kde4/apps/kepas/kepas.notifyrc +/usr/bin/kepastray +/usr/lib/libkpf.so +/usr/lib/libkepas.so + --- kepas-0.9.3.orig/debian/compat +++ kepas-0.9.3/debian/compat @@ -0,0 +1 @@ +6 --- kepas-0.9.3.orig/debian/copyright +++ kepas-0.9.3/debian/copyright @@ -0,0 +1,55 @@ +This package was debianized by Guillaume Martres on +Tue, 22 Jan 2008 07:52:17 +0100. + +It was downloaded from http://sourceforge.net/projects/kepas/ + +Upstream Author: + + Tom Patzig + +Copyright: + + Copyright (C) 2008 Tom Patzig + + src/libkpf: + Copyright (C) 2001 Rik Hemsley + +License: + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License version 2 can be found in '/usr/share/common-licenses/GPL-2'. + + src/libkpf by Rik Hemsley is licensed under the MIT/X11 license: + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +The Debian packaging is (C) 2008, Guillaume Martres and +is licensed under the GPLv2 or (at your option) any later version, see above. --- kepas-0.9.3.orig/debian/control +++ kepas-0.9.3/debian/control @@ -0,0 +1,36 @@ +Source: kepas +Section: kde +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Guillaume Martres +Build-Depends: cdbs (>= 0.4.52ubuntu7), debhelper (>= 6), cmake, + kdebase-workspace-dev +Standards-Version: 3.8.0 +Homepage: http://sourceforge.net/projects/kepas/ +Vcs-Bzr: lp:~kubuntu-members/kepas/ubuntu +Vcs-Browser: http://bazaar.launchpad.net/~kubuntu-members/kepas/ubuntu/files + +Package: plasmoid-kepas +Architecture: any +Depends: ${shlibs:Depends}, kepas (>= 0.9+svn080903) +Conflicts: kepas (<= 0.9) +Description: KDE Easy Publish and Share - Plasmoid + Kepas is a zeroconf KDE4 filetransfer tool. + It discovers your local LAN for buddies (KDNSSD) and + Kopete ICQ contacts and lets you transfer files or + Klipper entries from a trayicon or via drag'n drop + with the Kepas plasmoid. + . + This package contains the Kepas plasmoid + +Package: kepas +Architecture: any +Depends: ${shlibs:Depends}, plasmoid-kepas +Description: KDE Easy Publish and Share - Tray icon + Kepas is a zeroconf KDE4 filetransfer tool. + It discovers your local LAN for buddies (KDNSSD) and + Kopete ICQ contacts and lets you transfer files or + Klipper entries from a trayicon or via drag'n drop + with the Kepas plasmoid. + . + This package contains the Kepas tray icon --- kepas-0.9.3.orig/debian/plasmoid-kepas.install +++ kepas-0.9.3/debian/plasmoid-kepas.install @@ -0,0 +1,3 @@ +/usr/share/kde4/services/plasma-applet-kepas.desktop +/usr/lib/kde4/plasma_applet_kepas.so + --- kepas-0.9.3.orig/debian/rules +++ kepas-0.9.3/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/class/kde4.mk + +DEBIAN_DIR := $(shell echo ${MAKEFILE_LIST} | awk '{print $$1}' | xargs dirname ) +DATE := $(shell date +%y%m%d) +VERSION := $(word 1, $(subst +, ,$(DEB_UPSTREAM_VERSION))) +DIR := ${DEB_SOURCE_PACKAGE}-${VERSION}+svn${DATE} +TAR := ${DEB_SOURCE_PACKAGE}_${VERSION}+svn${DATE}.orig.tar.gz + +get-orig-svn: + cd ${DEBIAN_DIR}/.. && \ + svn export svn://anonsvn.kde.org/home/kde/trunk/playground/network/kepas ${DIR} && \ + tar czf ${CURDIR}/${TAR} ${DIR} && \ + rm -r ${DIR} + --- kepas-0.9.3.orig/debian/changelog +++ kepas-0.9.3/debian/changelog @@ -0,0 +1,47 @@ +kepas (0.9.3-0ubuntu1) jaunty; urgency=low + + * New upstream release + * Removed obsolete quilt build-dep + + -- Anthony Mercatante Wed, 28 Jan 2009 11:15:28 +0100 + +kepas (0.9+svn081218-0ubuntu1) jaunty; urgency=low + + * New upstream snapshot + * debian/control: + - updated short descriptions of plasmoid-kepas and kepas to clearly state + the difference between both and removed "(dummy package)" from kepas + short desc since it's not a dummy package. + + -- Guillaume Martres Thu, 18 Dec 2008 19:42:03 +0100 + +kepas (0.9+svn080923-0ubuntu1) intrepid; urgency=low + + [ Guillaume Martres ] + * New upstream snapshot, compatible with Plasma from KDE 4.1 + * debian/rules: + - use kde4.mk + - removed get-orig-source, not necessary anymore + - added get-orig-svn + * debian/control: + - ensure cdbs version is (>= 0.4.52ubuntu7) for kde4.mk + - bumped Standards-Version to 3.8.0 + for transition + - added binary package plasmoid-kepas, kepastray binary is now + in the kepas binary package + - added Vcs-* fields + * removed debian/cdbs, not needed with kde4.mk + * added debian/kepas.postinst to fix lintian postinst-must-call-ldconfig + * added debian/{plasmoid-kepas,kepas}.install and debian/not-installed + + [ Harald Sitter ] + * Due to kde4.mk build dependency on quilt is necessary + * Don't exceed 80 characters in debian/control + + -- Guillaume Martres Tue, 23 Sep 2008 13:22:53 +0200 + +kepas (0.9+repack-0ubuntu1) hardy; urgency=low + + * Initial release (LP: #185010) + + -- Guillaume Martres Thu, 07 Feb 2008 12:45:53 +0100