r13657 - in /trunk/libcss-squish-perl/debian: ./ changelog compat control copyright rules watch

ntyni at users.alioth.debian.org ntyni at users.alioth.debian.org
Sun Jan 27 12:02:22 UTC 2008


Author: ntyni
Date: Sun Jan 27 12:02:22 2008
New Revision: 13657

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

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

Added: trunk/libcss-squish-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/changelog?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/changelog (added)
+++ trunk/libcss-squish-perl/debian/changelog Sun Jan 27 12:02:22 2008
@@ -1,0 +1,5 @@
+libcss-squish-perl (0.07-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #462142)
+
+ -- Niko Tyni <ntyni at debian.org>  Wed, 23 Jan 2008 15:02:59 +0200

Added: trunk/libcss-squish-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/compat?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/compat (added)
+++ trunk/libcss-squish-perl/debian/compat Sun Jan 27 12:02:22 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libcss-squish-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/control?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/control (added)
+++ trunk/libcss-squish-perl/debian/control Sun Jan 27 12:02:22 2008
@@ -1,0 +1,19 @@
+Source: libcss-squish-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-12), libtest-pod-coverage-perl, libtest-pod-perl,
+ libtest-longstring-perl, liburi-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Niko Tyni <ntyni at debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/CSS-Squish/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcss-squish-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-squish-perl/
+
+Package: libcss-squish-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libtest-longstring-perl, liburi-perl
+Description: Compact many CSS files into one big file
+ This module takes a list of CSS files and concatenates them, making sure
+ to honor any valid @import statements included in the files.

Added: trunk/libcss-squish-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/copyright?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/copyright (added)
+++ trunk/libcss-squish-perl/debian/copyright Sun Jan 27 12:02:22 2008
@@ -1,0 +1,30 @@
+This is the debian package for the CSS-Squish module.
+It was created by Niko Tyni <ntyni at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/CSS-Squish/
+
+Upstream authors: Thomas Sibley <trs at bestpractical.com>
+                  Ruslan Zakirov <ruz at bestpractical.com>
+
+Copyright and license information:
+
+Files: *
+Copyright: Copyright (c) 2006.
+License: GPL-1+|Artistic
+ This library is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself, either Perl version 5.8.3 or, at
+ your option, any later version of Perl 5 you may have available.
+
+Files: debian/*
+Copyright: Copyright © 2008 Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+           Copyright © 2008 Niko Tyni <ntyni at debian.org>
+License: GPL-1+|Artistic
+ The Debian packaging of libcss-squish-perl is licensed under the same terms
+ as the CSS::Squish module itself.
+
+Perl, including version 5.8.3, 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/libcss-squish-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/rules?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/rules (added)
+++ trunk/libcss-squish-perl/debian/rules Sun Jan 27 12:02:22 2008
@@ -1,0 +1,67 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+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
+	$(MAKE)
+	$(MAKE) test
+
+	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
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	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

Propchange: trunk/libcss-squish-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libcss-squish-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libcss-squish-perl/debian/watch?rev=13657&op=file
==============================================================================
--- trunk/libcss-squish-perl/debian/watch (added)
+++ trunk/libcss-squish-perl/debian/watch Sun Jan 27 12:02:22 2008
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/CSS-Squish/   .*/CSS-Squish-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




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