debian/0000755000000000000000000000000011703620256007170 5ustar debian/copyright0000644000000000000000000000227611703620256011132 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: Padre-Plugin-PerlTidy Upstream-Contact: Brian Cassidy Source: http://search.cpan.org/dist/Padre-Plugin-PerlTidy/ Files: * Copyright: 2010 by Patrick Donelan, Brian Cassidy 2011 Ahmad M. Zawawi License: Artistic or GPL-1+ License-Alias: Perl Files: debian/* Copyright: 2009, Ryan Niebur 2009,2010 Damyan Ivanov 2012 Dominique Dumont License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic' License: GPL-1+ 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 1, or (at your option) any later version. On Debian systems, the complete text of the GNU General Public License version 1 can be found in `/usr/share/common-licenses/GPL-1' debian/watch0000644000000000000000000000021011703620256010212 0ustar version=3 http://search.cpan.org/dist/Padre-Plugin-PerlTidy/ .*/Padre-Plugin-PerlTidy-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/changelog0000644000000000000000000000427511703620256011052 0ustar libpadre-plugin-perltidy-perl (0.21-1) unstable; urgency=low [ Damyan Ivanov ] * add libparams-util-perl and padre to (build-) dependencies * rules: make the .po→.mo fixup conditional on locale directory existence In this release upstream no longer installs them, but who knows how things will be in the next release [ Dominique Dumont ] * Imported Upstream version 0.21 * control: depends on debhelper >=8 * updated copyright of latest versions * compat++ * removed dependency on padre-plugin-api*. Added /me to uploaders -- Dominique Dumont Thu, 12 Jan 2012 19:03:30 +0100 libpadre-plugin-perltidy-perl (0.16-3) unstable; urgency=low * Team upload. * Fix FTBFS when home of building user is not available: set HOME during tests to a writable directory in debian/rules (Closes: #609397). * Convert to '3.0 (quilt)' source package format. -- Salvatore Bonaccorso Mon, 10 Jan 2011 22:19:42 +0100 libpadre-plugin-perltidy-perl (0.16-2) unstable; urgency=low * Upload to unstable -- Damyan Ivanov Sat, 11 Dec 2010 21:36:35 +0200 libpadre-plugin-perltidy-perl (0.16-1) experimental; urgency=low * New upstream release * rules: recompile .mo files after installation * fix the version of the llibmodule-build-perl build-dependency * drop the version of the perl (build-)dependency * claim conformance with policy 3.9.1 -- Damyan Ivanov Tue, 07 Dec 2010 21:04:59 +0200 libpadre-plugin-perltidy-perl (0.08-1) unstable; urgency=low * New upstream release * fix perl dependencies, drop perl-modules * bump required padre API * Standards-Version: 3.8.3 (no changes) * add liblocale-msgfmt-perl to B-D-I -- Damyan Ivanov Sat, 31 Oct 2009 08:45:57 +0200 libpadre-plugin-perltidy-perl (0.07-1) unstable; urgency=low [ Ryan Niebur ] * New Upstream Version * remove quilt patching, patch is applied upstream -- Damyan Ivanov Tue, 16 Jun 2009 20:48:34 +0300 libpadre-plugin-perltidy-perl (0.06-1) unstable; urgency=low [ Ryan Niebur ] * Initial Release. (Closes: #531263) -- Damyan Ivanov Fri, 12 Jun 2009 17:16:20 +0300 debian/compat0000644000000000000000000000000211703620256010366 0ustar 8 debian/source/0000755000000000000000000000000011703620256010470 5ustar debian/source/format0000644000000000000000000000001411703620256011676 0ustar 3.0 (quilt) debian/control0000644000000000000000000000265311703620256010601 0ustar Source: libpadre-plugin-perltidy-perl Maintainer: Debian Perl Group Uploaders: Ryan Niebur , Damyan Ivanov , Dominique Dumont Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: liblocale-msgfmt-perl, libmodule-build-perl (>= 0.360100), libparams-util-perl (>= 1.04), padre, perl, perltidy, xauth, xfonts-base, xvfb Standards-Version: 3.9.2 Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libpadre-plugin-perltidy-perl.git Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libpadre-plugin-perltidy-perl.git Homepage: http://search.cpan.org/dist/Padre-Plugin-PerlTidy/ Package: libpadre-plugin-perltidy-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libparams-util-perl (>= 1.04), padre, perl, perltidy Enhances: padre Description: Perl::Tidy Plugin for Padre The PerlTidy plugin is a simple plugin to run Perl::Tidy on your source code. Currently there are no customisable options (since the Padre plugin system doesn’t support that yet) - however Perl::Tidy will use your normal .perltidyrc file if it exists (see Perl::Tidy documentation). debian/rules0000755000000000000000000000125411703620256010252 0ustar #!/usr/bin/make -f BUILDHOME = $(CURDIR)/debian/build %: dh $@ override_dh_clean: dh_clean rm -rf $(BUILDHOME) CMD=$(shell echo $@ | sed 's/override_//') override_dh_auto_build override_dh_auto_test override_dh_auto_configure: mkdir -p $(BUILDHOME) HOME=$(BUILDHOME) xvfb-run $(CMD) PKG=libpadre-plugin-perltidy-perl MOD=Padre-Plugin-PerlTidy PO_DIR = $(CURDIR)/debian/$(PKG)/usr/share/perl5/auto/share/dist/$(MOD)/locale override_dh_auto_install: dh_auto_install if [ -d $(PO_DIR) ]; then \ rm $(PO_DIR)/*.mo; \ for f in $(PO_DIR)/*.po; do \ msgfmt $$f -o $${f%.po}.mo ; \ rm $$f ; \ echo `basename $$f` ; \ done ;\ rm $(PO_DIR)/*.pot ; \ fi