[libdesktop-notify-perl] 01/03: Import Debian changes 0.01-1

Intrigeri intrigeri at moszumanska.debian.org
Wed Aug 2 15:42:36 UTC 2017


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to branch master
in repository libdesktop-notify-perl.

commit 4a3a22762154d356f80186289aace7b578a4813f
Author: Jose Parrella <bureado at debian.org>
Date:   Sun Jan 13 01:50:42 2008 -0330

    Import Debian changes 0.01-1
    
    libdesktop-notify-perl (0.01-1) unstable; urgency=low
    
      * Initial Release. (Closes: #442058)
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 24 ++++++++++++++++++++++
 debian/copyright | 20 ++++++++++++++++++
 debian/rules     | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 112 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..065470b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libdesktop-notify-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #442058)
+
+ -- Jose Parrella <bureado at debian.org>  Sun, 13 Jan 2008 00:50:42 -0430
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d55b367
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+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 <bureado at debian.org>
+Standards-Version: 3.7.3
+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
+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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5a8f09b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+This is the debian package for the Desktop-Notify module.
+It was created by Jose Parrella <bureado at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Desktop-Notify/
+
+The upstream author is: 
+  Stephen Cavilia, <sac7352 at rit.edu>.
+
+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 <bureado at debian.org> and
+is licensed under the same terms as the software itself (see above).
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ffebe3c
--- /dev/null
+++ b/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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdesktop-notify-perl.git



More information about the Pkg-perl-cvs-commits mailing list