r55164 - in /trunk/libhttp-browserdetect-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Mar 30 18:34:19 UTC 2010


Author: gregoa
Date: Tue Mar 30 18:34:07 2010
New Revision: 55164

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

Added:
    trunk/libhttp-browserdetect-perl/debian/
    trunk/libhttp-browserdetect-perl/debian/changelog
    trunk/libhttp-browserdetect-perl/debian/compat
    trunk/libhttp-browserdetect-perl/debian/control
    trunk/libhttp-browserdetect-perl/debian/copyright
    trunk/libhttp-browserdetect-perl/debian/rules   (with props)

Added: trunk/libhttp-browserdetect-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-browserdetect-perl/debian/changelog?rev=55164&op=file
==============================================================================
--- trunk/libhttp-browserdetect-perl/debian/changelog (added)
+++ trunk/libhttp-browserdetect-perl/debian/changelog Tue Mar 30 18:34:07 2010
@@ -1,0 +1,24 @@
+libhttp-browserdetect-perl (0.98-1) unstable; urgency=low
+
+  * New upstream release.
+  * Change Section: from interpreters to perl
+  * debhelper compat v4
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Aug 2004 20:49:18 -0700
+
+libhttp-browserdetect-perl (0.97-2) unstable; urgency=low
+
+  * debian/copyright pedantry (closes: Bug#153334, Bug#153379)
+  * binary-arch vs. binary-indep (closes: Bug#153359)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Sat,  7 Sep 2002 05:27:46 -0700
+
+libhttp-browserdetect-perl (0.97-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#108016)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed,  8 Aug 2001 04:05:32 -0700
+
+Local variables:
+mode: debian-changelog
+End:

Added: trunk/libhttp-browserdetect-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-browserdetect-perl/debian/compat?rev=55164&op=file
==============================================================================
--- trunk/libhttp-browserdetect-perl/debian/compat (added)
+++ trunk/libhttp-browserdetect-perl/debian/compat Tue Mar 30 18:34:07 2010
@@ -1,0 +1,1 @@
+4

Added: trunk/libhttp-browserdetect-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-browserdetect-perl/debian/control?rev=55164&op=file
==============================================================================
--- trunk/libhttp-browserdetect-perl/debian/control (added)
+++ trunk/libhttp-browserdetect-perl/debian/control Tue Mar 30 18:34:07 2010
@@ -1,0 +1,18 @@
+Source: libhttp-browserdetect-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4), perl (>= 5.6.0-17)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.5.1
+
+Package: libhttp-browserdetect-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description:  Determine the Web browser, version, and platform from an HTTP user agent string
+ The HTTP::BrowserDetect object does a number of tests on an HTTP user
+ agent string.  The results of these tests are available via methods of
+ the object.
+ .
+ This module is based upon the JavaScript browser detection code
+ available at
+ http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html.

Added: trunk/libhttp-browserdetect-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-browserdetect-perl/debian/copyright?rev=55164&op=file
==============================================================================
--- trunk/libhttp-browserdetect-perl/debian/copyright (added)
+++ trunk/libhttp-browserdetect-perl/debian/copyright Tue Mar 30 18:34:07 2010
@@ -1,0 +1,12 @@
+This is the debian package for the HTTP::BrowserDetect module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+Copyright 1999-2001 Lee Semel.  All rights reserved.  This program is free
+software; you can redistribute it and/or modify it under the same terms as Perl
+itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.
+

Added: trunk/libhttp-browserdetect-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-browserdetect-perl/debian/rules?rev=55164&op=file
==============================================================================
--- trunk/libhttp-browserdetect-perl/debian/rules (added)
+++ trunk/libhttp-browserdetect-perl/debian/rules Tue Mar 30 18:34:07 2010
@@ -1,0 +1,87 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# 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)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installmanpages
+#	dh_undocumented
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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

Propchange: trunk/libhttp-browserdetect-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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