[Pkg-voip-commits] r4020 - in libasterisk-agi-perl/trunk: . debian

rmayorga-guest at alioth.debian.org rmayorga-guest at alioth.debian.org
Thu Aug 16 02:58:30 UTC 2007


Author: rmayorga-guest
Date: 2007-08-16 02:58:30 +0000 (Thu, 16 Aug 2007)
New Revision: 4020

Added:
   libasterisk-agi-perl/trunk/debian/
   libasterisk-agi-perl/trunk/debian/changelog
   libasterisk-agi-perl/trunk/debian/compat
   libasterisk-agi-perl/trunk/debian/control
   libasterisk-agi-perl/trunk/debian/copyright
   libasterisk-agi-perl/trunk/debian/dirs
   libasterisk-agi-perl/trunk/debian/docs
   libasterisk-agi-perl/trunk/debian/rules
   libasterisk-agi-perl/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: libasterisk-agi-perl/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: libasterisk-agi-perl/trunk/debian/changelog
===================================================================
--- libasterisk-agi-perl/trunk/debian/changelog	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/changelog	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,6 @@
+libasterisk-agi-perl (0.09-1) unstable; urgency=low
+
+  * Initial release (Closes: #424956)
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Sat, 19 May 2007 13:08:33 -0600
+

Added: libasterisk-agi-perl/trunk/debian/compat
===================================================================
--- libasterisk-agi-perl/trunk/debian/compat	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/compat	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1 @@
+5

Added: libasterisk-agi-perl/trunk/debian/control
===================================================================
--- libasterisk-agi-perl/trunk/debian/control	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/control	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,15 @@
+Source: libasterisk-agi-perl
+Section: perl
+Priority: optional
+Maintainer: Rene Mayorga <rmayorga at debian.org.sv>
+Build-Depends: perl(>=5.6.0-16), debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: libasterisk-agi-perl
+Architecture: all
+Depends: ${perl:Depends} 
+Description: Collections of Perl modules to be used with Asterisk PBX AGI
+ Asterisk::AGI is a module that provides an easy way to write
+ Asterisk AGI scripts using Perl.
+ .
+  Homepage: http://asterisk.gnuinter.net/

Added: libasterisk-agi-perl/trunk/debian/copyright
===================================================================
--- libasterisk-agi-perl/trunk/debian/copyright	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/copyright	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,20 @@
+This package was debianized by Rene Mayorga <rmayorga at debian.org.sv> on
+Sat, 19 May 2007 13:08:33 -0600.
+
+It was downloaded from http://asterisk.gnuinter.net/
+
+
+Upstream Author: 
+    James Golovich <james at gnuinter.net>
+
+    This software is  Copyright (C) 2006-2007 by James Golovic
+    
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the "Artistic License"
+
+
+The Debian packaging is (C) 2007, Rene Mayorga <rmayorga at debian.org.sv> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+On Debian GNU/Linux systems, the complete set of the Artistic License
+can be found in /usr/share/common-licenses/Artistic.

Added: libasterisk-agi-perl/trunk/debian/dirs
===================================================================
--- libasterisk-agi-perl/trunk/debian/dirs	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/dirs	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,2 @@
+usr/share/doc/libasterisk-agi-perl
+usr/share/doc/libasterisk-agi-perl/examples

Added: libasterisk-agi-perl/trunk/debian/docs
===================================================================
--- libasterisk-agi-perl/trunk/debian/docs	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/docs	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,2 @@
+README
+CHANGES

Added: libasterisk-agi-perl/trunk/debian/rules
===================================================================
--- libasterisk-agi-perl/trunk/debian/rules	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/rules	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,64 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ifndef PERL
+	PERL = /usr/bin/perl
+endif
+
+TMP=$(CURDIR)/debian/libasterisk-agi-perl
+
+
+build: build-stamp
+
+build-stamp: 
+	dh_testdir
+	-[ ! -f Makefile ] && perl Makefile.PL
+	touch build-stamp
+
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	-$(MAKE) distclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/libasterisk-agi-perl.
+	$(MAKE) install_vendor PREFIX=$(TMP)/usr
+
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+
+binary-arch:
+# We have nothing to do 
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGES
+	dh_installdocs
+#	dh_strip
+	dh_compress
+	dh_installexamples examples/*
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: libasterisk-agi-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: libasterisk-agi-perl/trunk/debian/watch
===================================================================
--- libasterisk-agi-perl/trunk/debian/watch	                        (rev 0)
+++ libasterisk-agi-perl/trunk/debian/watch	2007-08-16 02:58:30 UTC (rev 4020)
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/CPAN/authors/id/J/JA/JAMESGOL/asterisk-perl-(.*)\.tar\.gz




More information about the Pkg-voip-commits mailing list