debian/0000755000000000000000000000000012041600730007157 5ustar debian/rules0000755000000000000000000000003612041600730010236 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000255512041600730010571 0ustar Source: libppix-editortools-perl Maintainer: Debian Perl Group Uploaders: Ryan Niebur , Jonathan Yu , gregor herrmann , Fabrizio Regalli , Florian Schlichting Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libclass-xsaccessor-perl, libppi-perl (>= 1.215), libtest-differences-perl, libtest-most-perl, libtry-tiny-perl (>= 0.11) Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libppix-editortools-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libppix-editortools-perl.git Homepage: http://search.cpan.org/dist/PPIx-EditorTools/ Package: libppix-editortools-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libclass-xsaccessor-perl, libppi-perl (>= 1.215), libtry-tiny-perl (>= 0.11) Description: set of tools for editors to use for manipulating Perl via PPI PPIx::EditorTools is a set of tools designed to be used by IDEs and Editors to manipulate Perl code. It provides base classes and utility methods for manipulating Perl via PPI. debian/source/0000755000000000000000000000000012041600730010457 5ustar debian/source/format0000644000000000000000000000001412041600730011665 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000575412041600730011044 0ustar libppix-editortools-perl (0.18-1) unstable; urgency=low [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Dominique Dumont ] * Imported Upstream version 0.17. [ Florian Schlichting ] * Imported Upstream version 0.18. * Bumped Standards-Version to 3.9.4 (no changes). * Bumped years for inc/Module/Install copyright. * Added versioned (build-)dependencies on libppi-perl and libtry-tiny-perl. * Refreshed manpage-has-bad-whatis-entry.patch. -- Florian Schlichting Tue, 23 Oct 2012 22:40:10 +0200 libppix-editortools-perl (0.15-1) unstable; urgency=low [ Fabrizio Regalli ] * New upstream release. * Added myself to Uploaders and copyright. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Florian Schlichting ] * Added build-dependency on Test::More 0.88. * Added manpage-has-bad-whatis-entry.patch. * Bumped Standards-Version to 3.9.3 (use copyright-format 1.0). * Added myself to Uploaders and copyright. -- Florian Schlichting Thu, 08 Mar 2012 15:13:39 +0100 libppix-editortools-perl (0.13-1) unstable; urgency=low * New upstream release. * debian/copyright: update list of upstream copyright holders, and years of upstream and packaging copyright. * Add /me to Uploaders. * Bump debhelper compatibility level to 8. * Set Standards-Version to 3.9.2 (no changes). -- gregor herrmann Sun, 24 Apr 2011 18:16:17 +0200 libppix-editortools-perl (0.11-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release + Fix variable detection (e.g. loop variables) [RT#63107] * Add build dependency on Test::Most [ gregor herrmann ] * debian/copyright: update information about copyright years and holders. * debian/control: drop version from libtest-differences-perl build dependency, already satisfied in lenny. -- Jonathan Yu Fri, 24 Dec 2010 15:46:40 -0500 libppix-editortools-perl (0.10-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Drop versioned dep on PPI (1.203 is in stable) * Use new 3.0 (quilt) source format * Update to DEP5 copyright format [ Ryan Niebur ] * Update ryan52's email address -- Jonathan Yu Wed, 06 Oct 2010 21:05:22 -0400 libppix-editortools-perl (0.09-1) unstable; urgency=low * New upstream release + Allow variables to be renamed while the cursor is over its declaration (Padre tickets 504 and 586) * Added myself to Uploaders and Copyright * Standards-Version 3.8.3 (drop perl version dependency) -- Jonathan Yu Sun, 20 Sep 2009 17:30:03 -0400 libppix-editortools-perl (0.08-1) unstable; urgency=low * New upstream release -- Ryan Niebur Tue, 11 Aug 2009 14:45:27 -0700 libppix-editortools-perl (0.06-1) unstable; urgency=low * Initial Release. (Closes: #536651) -- Ryan Niebur Sun, 12 Jul 2009 11:34:39 -0700 debian/compat0000644000000000000000000000000212041600730010355 0ustar 8 debian/patches/0000755000000000000000000000000012041600730010606 5ustar debian/patches/manpage-has-bad-whatis-entry.patch0000644000000000000000000000602712041600730017175 0ustar Description: fix manpage-has-bad-whatis-entry lintian warning PPIx-EditorTools 0.15 reorganized the POD and lost the NAME section for all modules. When converted to a manpage, this section is used for indexing and thus should exist everywhere. Author: Florian Schlichting Forwarded: https://github.com/szabgab/PPIx-EditorTools/issues/4 --- a/lib/PPIx/EditorTools/FindUnmatchedBrace.pm +++ b/lib/PPIx/EditorTools/FindUnmatchedBrace.pm @@ -16,6 +16,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::FindUnmatchedBrace - PPI-based unmatched-brace-finder + =head1 SYNOPSIS my $brace = PPIx::EditorTools::FindUnmatchedBrace->new->find( --- a/lib/PPIx/EditorTools/FindVariableDeclaration.pm +++ b/lib/PPIx/EditorTools/FindVariableDeclaration.pm @@ -14,6 +14,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::FindVariableDeclaration - inds where a variable was declared using PPI + =head1 SYNOPSIS # finds declaration of variable at cursor --- a/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm +++ b/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm @@ -19,6 +19,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::IntroduceTemporaryVariable - Introduces a temporary variable using PPI + =head1 SYNOPSIS my $munged = PPIx::EditorTools::IntroduceTemporaryVariable->new->introduce( --- a/lib/PPIx/EditorTools/Lexer.pm +++ b/lib/PPIx/EditorTools/Lexer.pm @@ -16,6 +16,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::Lexer - Simple Lexer used for syntax highlighting + =head1 SYNOPSIS PPIx::EditorTools::Lexer->new->lexer( --- a/lib/PPIx/EditorTools/Outline.pm +++ b/lib/PPIx/EditorTools/Outline.pm @@ -204,6 +204,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::Outline - Collect use pragmata, modules, subroutiones, methods, attributes + =head1 SYNOPSIS my $outline = PPIx::EditorTools::Outline->new->find( --- a/lib/PPIx/EditorTools/RenamePackage.pm +++ b/lib/PPIx/EditorTools/RenamePackage.pm @@ -18,6 +18,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::RenamePackage - Change the package name + =head1 SYNOPSIS my $munged = PPIx::EditorTools::RenamePackage->new->rename( --- a/lib/PPIx/EditorTools/RenamePackageFromPath.pm +++ b/lib/PPIx/EditorTools/RenamePackageFromPath.pm @@ -22,6 +22,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::RenamePackageFromPath -Change the package name based on the files path + =head1 SYNOPSIS my $munged = PPIx::EditorTools::RenamePackageFromPath->new->rename( --- a/lib/PPIx/EditorTools/RenameVariable.pm +++ b/lib/PPIx/EditorTools/RenameVariable.pm @@ -14,6 +14,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::RenameVariable - Lexically replace a variable name in Perl code + =head1 SYNOPSIS my $munged = PPIx::EditorTools::RenameVariable->new->rename( --- a/lib/PPIx/EditorTools/ReturnObject.pm +++ b/lib/PPIx/EditorTools/ReturnObject.pm @@ -11,6 +11,10 @@ =pod +=head1 NAME + +PPIx::EditorTools::ReturnObject - Simple object to return values from PPIx::EditorTools + =head1 SYNOPSIS my $brace = PPIx::EditorTools::FindUnmatchedBrace->new->find( debian/patches/series0000644000000000000000000000004312041600730012020 0ustar manpage-has-bad-whatis-entry.patch debian/copyright0000644000000000000000000000540712041600730011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Steffen Mueller Source: http://search.cpan.org/dist/PPIx-EditorTools/ Upstream-Name: PPIx-EditorTools Files: * Copyright: 2011, The Padre development team as listed in Padre.pm. Aaron Trevena (TEEJAY) Ahmad Zawawi أحمد محمد زواوي (AZAWAWI) Adam Kennedy (ADAMK) Alexandr Ciornii (CHORNY) Blake Willmarth (BLAKEW) Breno G. de Oliveira (GARU) Brian Cassidy (BRICAS) Burak Gürsoy (BURAK) Cezary Morga (THEREK) Chris Dolan (CHRISDOLAN) Claudio Ramirez (CLAUDIO) Fayland Lam (FAYLAND) Gabriel Vieira (GABRIELMAD) Gábor Szabó - גאבור סבו (SZABGAB) Heiko Jansen (HJANSEN) Jérôme Quelin (JQUELIN) Kaare Rasmussen (KAARE) Keedi Kim - 김도형 (KEEDI) Kenichi Ishigaki - 石垣憲一 (ISHIGAKI) Mark Grimes Max Maischein (CORION) Olivier MenguE (DOLMEN) Patrick Donelan (PDONELAN) Paweł Murias (PMURIAS) Petar Shangov (PSHANGOV) Ryan Niebur (RSN) Sebastian Willing (SEWI) Steffen Müller (TSEE) Zeno Gantner (ZENOG) License: Artistic or GPL-1+ Files: lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm lib/PPIx/EditorTools/ReturnObject.pm lib/PPIx/EditorTools/FindUnmatchedBrace.pm lib/PPIx/EditorTools/FindVariableDeclaration.pm lib/PPIx/EditorTools.pm Copyright: 2008-2009, The Padre development team as listed in Padre.pm. License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2012, Adam Kennedy 2002-2012, Audrey Tang 2002-2012, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2009-2010, Jonathan Yu 2009, Ryan Niebur 2011, gregor herrmann 2011, Fabrizio Regalli 2012, Florian Schlichting 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 version 1 of the General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000017512041600730010213 0ustar version=3 http://search.cpan.org/dist/PPIx-EditorTools/ .*/PPIx-EditorTools-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$