r26357 - in /trunk/libnagios-object-perl/debian: ./ changelog compat control copyright rules watch

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu Oct 30 04:30:35 UTC 2008


Author: ryan52-guest
Date: Thu Oct 30 04:30:32 2008
New Revision: 26357

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26357
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libnagios-object-perl/debian/
    trunk/libnagios-object-perl/debian/changelog
    trunk/libnagios-object-perl/debian/compat
    trunk/libnagios-object-perl/debian/control
    trunk/libnagios-object-perl/debian/copyright
    trunk/libnagios-object-perl/debian/rules   (with props)
    trunk/libnagios-object-perl/debian/watch

Added: trunk/libnagios-object-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/changelog?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/changelog (added)
+++ trunk/libnagios-object-perl/debian/changelog Thu Oct 30 04:30:32 2008
@@ -1,0 +1,11 @@
+libnagios-object-perl (0.14-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Thierry Randrianiriana <randrianiriana at gmail.com>  Thu, 26 Oct 2006 17:09:46 +0300
+
+libnagios-object-perl (0.10-1) unstable; urgency=low
+
+  * Initial release (Closes: #388726)
+
+ -- Thierry Randrianiriana <randrianiriana at gmail.com>  Mon, 25 Sep 2006 11:01:55 +0300

Added: trunk/libnagios-object-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/compat?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/compat (added)
+++ trunk/libnagios-object-perl/debian/compat Thu Oct 30 04:30:32 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libnagios-object-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/control?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/control (added)
+++ trunk/libnagios-object-perl/debian/control Thu Oct 30 04:30:32 2008
@@ -1,0 +1,24 @@
+Source: libnagios-object-perl
+Section: perl
+Priority: optional
+Maintainer: Thierry Randrianiriana <randrianiriana at gmail.com>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.0-7), libmodule-build-perl, libtest-exception-perl
+Standards-Version: 3.7.2
+
+Package: libnagios-object-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Parse and represent Nagios configuration as objects in Perl
+ Nagios::Object is a group of modules for parsing a Nagios configuration and
+ representing it as objects in perl. Inheriting from templates is supported,
+ encoraged, and kept intact within the perl representation(s).
+ .
+ Nagios::StatusLog reads the Nagios status log and returns ::Status objects
+ that can be used to get status information about a host.
+ .
+ Nagios::Config creates a new Nagios::Config object,
+ which will parse a Nagios main configuration file
+ and all of it's object configuration files.
+ .
+  Homepage: http://search.cpan.org/~tobeya/Nagios-Object/

Added: trunk/libnagios-object-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/copyright?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/copyright (added)
+++ trunk/libnagios-object-perl/debian/copyright Thu Oct 30 04:30:32 2008
@@ -1,0 +1,27 @@
+This package was debianized by Randrianiriana S. Thierry <randrianiriana at gmail.com> on
+Mon, 25 Sep 2006 11:01:55 +0300.
+
+It was downloaded from http://search.cpan.org/~tobeya/Nagios-Object/
+
+Upstream Author: Albert P Tobey <tobeya at cpan.org>
+
+Copyright (C) 2003-2006 by Albert P Tobey.
+
+License:
+
+  This program 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 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.
+
+  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.
+
+The Debian packaging is (C) 2006, Randrianiriana S. Thierry <randrianiriana at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: trunk/libnagios-object-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/rules?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/rules (added)
+++ trunk/libnagios-object-perl/debian/rules Thu Oct 30 04:30:32 2008
@@ -1,0 +1,77 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+
+configure-stamp:
+	dh_testdir
+	$(PERL) Build.PL --installdirs vendor destdir=$(TMP)
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	./Build
+	./Build test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf build-stamp Build _build blib
+
+	-$(MAKE) clean
+	dh_clean configure-stamp build-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	./Build install PREFIX=$(TMP)/usr
+
+# Build architecture-dependent files here.
+binary-arch:;
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: trunk/libnagios-object-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libnagios-object-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnagios-object-perl/debian/watch?rev=26357&op=file
==============================================================================
--- trunk/libnagios-object-perl/debian/watch (added)
+++ trunk/libnagios-object-perl/debian/watch Thu Oct 30 04:30:32 2008
@@ -1,0 +1,3 @@
+version=3
+
+http://search.cpan.org/CPAN/authors/id/T/TO/TOBEYA/Nagios-Object-(.*).tar.gz




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