--- libdesktop-notify-perl-0.03.orig/debian/compat +++ libdesktop-notify-perl-0.03/debian/compat @@ -0,0 +1 @@ +5 --- libdesktop-notify-perl-0.03.orig/debian/control +++ libdesktop-notify-perl-0.03/debian/control @@ -0,0 +1,25 @@ +Source: libdesktop-notify-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-12) +Maintainer: Jose Parrella +Standards-Version: 3.8.4 +Homepage: http://search.cpan.org/dist/Desktop-Notify/ + +Package: libdesktop-notify-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libnet-dbus-perl, libclass-accessor-perl +Recommends: notification-daemon +Description: Perl module which communicates with the Desktop Notifications framework + This module provides a Perl interface to the Desktop Notifications framework. + . + The framework allows applications to display pop-up notifications on an X + desktop. This is implemented with two components: a daemon that displays the + notifications, and a client library used by applications to send notifications + to the daemon. These components communicate through the DBus message bus + protocol. + . + This module serves the same purpose as libnotify, in an object-oriented Perl + interface. It is not, however, an interface to libnotify itself, but a + separate implementation of the specification using Net::DBus. --- libdesktop-notify-perl-0.03.orig/debian/changelog +++ libdesktop-notify-perl-0.03/debian/changelog @@ -0,0 +1,20 @@ +libdesktop-notify-perl (0.03-1) unstable; urgency=low + + * New upstream release 0.03 + * $self->{id} now defaults to 0, thanks Matti Lattu for the heads-up + Closes: #503396 + + -- Jose Parrella Sun, 13 Jun 2010 11:16:49 -0500 + +libdesktop-notify-perl (0.01-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Add Recommends: on notification-daemon. closes: #503415 + + -- Yves-Alexis Perez Tue, 04 Nov 2008 07:36:41 +0100 + +libdesktop-notify-perl (0.01-1) unstable; urgency=low + + * Initial Release. (Closes: #442058) + + -- Jose Parrella Sun, 13 Jan 2008 00:50:42 -0430 --- libdesktop-notify-perl-0.03.orig/debian/rules +++ libdesktop-notify-perl-0.03/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f + +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor \ + INSTALLVENDORARCH=/usr/share/perl5/ \ + VENDORARCHEXP=/usr/share/perl5/ + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + touch $@ + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libdesktop-notify-perl-0.03.orig/debian/copyright +++ libdesktop-notify-perl-0.03/debian/copyright @@ -0,0 +1,20 @@ +This is the debian package for the Desktop-Notify module. +It was created by Jose Parrella using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Desktop-Notify/ + +The upstream author is: + Stephen Cavilia, . + +Copyright: + Copyright 2007 Stephen Cavilia, all rights reserved. + + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL', the complete text of +the Artistic License can be found in `/usr/share/common-licenses/Artistic'. + +The Debian packaging is (C) 2008, Jose Parrella and +is licensed under the same terms as the software itself (see above).