r6621 - in /trunk/libperl-critic-perl/debian: ./ changelog compat control copyright rules watch

joeyh at users.alioth.debian.org joeyh at users.alioth.debian.org
Wed Aug 15 01:29:06 UTC 2007


Author: joeyh
Date: Wed Aug 15 01:29:05 2007
New Revision: 6621

URL: http://svn.debian.org/wsvn/?sc=1&rev=6621
Log:
debianisation

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

Added: trunk/libperl-critic-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/changelog?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/changelog (added)
+++ trunk/libperl-critic-perl/debian/changelog Wed Aug 15 01:29:05 2007
@@ -1,0 +1,5 @@
+libperl-critic-perl (1.061-1) unstable; urgency=low
+
+  * First release.
+
+ -- Joey Hess <joeyh at debian.org>  Tue, 14 Aug 2007 20:44:42 -0400

Added: trunk/libperl-critic-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/compat?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/compat (added)
+++ trunk/libperl-critic-perl/debian/compat Wed Aug 15 01:29:05 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libperl-critic-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/control?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/control (added)
+++ trunk/libperl-critic-perl/debian/control Wed Aug 15 01:29:05 2007
@@ -1,0 +1,34 @@
+Source: libperl-critic-perl
+Section: perl
+Priority: optional
+Build-Depends-Indep: perl (>= 5.8), libb-keywords-perl, libconfig-tiny-perl, libfile-spec-perl, libio-string-perl, liblist-moreutils-perl, libmodule-pluggable-perl, libppi-perl, libstring-format-perl
+Build-Depends: debhelper (>= 5)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Joey Hess <joeyh at debian.org>
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libperl-critic-perl
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl-critic-perl/
+
+Package: libperl-critic-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libb-keywords-perl, libconfig-tiny-perl, libfile-spec-perl, libio-string-perl, liblist-moreutils-perl, libmodule-pluggable-perl, libppi-perl, libstring-format-perl
+Description: Critique Perl source code for best-practices
+ Perl::Critic is an extensible framework for creating and applying
+ coding standards to Perl source code. Essentially, it is a static source code
+ analysis engine. Perl::Critic is distributed with a number of
+ Perl::Critic::Policy modules that attempt to enforce various coding
+ guidelines. Most Policy modules are based on Damian Conway's book Perl
+ Best Practices. However, Perl::Critic is not limited to PBP and will
+ even support Policies that contradict Conway. You can enable, disable,
+ and customize those Polices through the Perl::Critic interface. You can
+ also create new Policy modules that suit your own tastes.
+ .
+ A command-line interface to Perl::Critic is included in the perlcritic
+ program.
+ .
+ Coding standards are deeply personal and highly subjective.  The
+ goal of Perl::Critic is to help you write code that conforms with a
+ set of best practices.  Its primary goal is not to dictate what
+ those practices are, but rather, to implement the practices
+ discovered by others.  Ultimately, you make the rules --
+ Perl::Critic is merely a tool for encouraging consistency.

Added: trunk/libperl-critic-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/copyright?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/copyright (added)
+++ trunk/libperl-critic-perl/debian/copyright Wed Aug 15 01:29:05 2007
@@ -1,0 +1,25 @@
+This is a Debian prepackaged version of the perl critic.
+
+This package was put together by Joey Hess <joeyh at debian.org>, using
+sources from CPAN, http://www.cpan.org/
+
+The following copyright applies to this package:
+
+Copyright (c) 2005-2007 Jeffrey Ryan Thalhammer. All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Some individual modules are individually copyright by other authors:
+
+Copyright (C) 2005-2007 Graham TerMarsch.  All rights reserved.
+Copyright (c) 2005-2007 Chris Dolan and Jeffrey Ryan Thalhammer.  All rights reserved.
+Copyright (c) 2005-2007 Chris Dolan.  All rights reserved.
+Copyright (c) 2006 Peter Guzis.  All rights reserved.
+Copyright (c) 2007 Andrew Moore.  All rights reserved.
+Copyright (c) 2007 Elliot Shank.  All rights reserved.
+
+Each of these modules are also licensed under the same terms as Perl itself.
+
+(Those terms are either of the Artistic license or the GPL; both licenses
+can be found in full in /usr/share/common-licenses/)

Added: trunk/libperl-critic-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/rules?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/rules (added)
+++ trunk/libperl-critic-perl/debian/rules Wed Aug 15 01:29:05 2007
@@ -1,0 +1,43 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	perl Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	if [ -e Makefile ]; then $(MAKE) realclean; fi
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs usr/lib
+	$(MAKE) install PREFIX=$(CURDIR)/debian/`dh_listpackages`/usr
+
+binary-arch: build install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs TODO.pod extras/*
+	dh_installexamples examples/*
+	dh_installchangelogs Changes
+	dh_link
+	dh_compress
+	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

Propchange: trunk/libperl-critic-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libperl-critic-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libperl-critic-perl/debian/watch?rev=6621&op=file
==============================================================================
--- trunk/libperl-critic-perl/debian/watch (added)
+++ trunk/libperl-critic-perl/debian/watch Wed Aug 15 01:29:05 2007
@@ -1,0 +1,2 @@
+version=2
+http://backpan.perl.org/authors/id/T/TH/THALJEF/perlcritic/Perl-Critic-([\d.]+)\.tar\.gz




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