debian/0000755000000000000000000000000011366070776007203 5ustar debian/control0000644000000000000000000000151111366067662010604 0ustar Source: libtk-objscanner-perl Section: perl Priority: optional Build-Depends: debhelper (>= 7.0.50~) Build-Depends-Indep: perl, perl-tk, xauth, xfonts-base, xvfb Maintainer: Debian Perl Group Uploaders: Jay Bonci , gregor herrmann Standards-Version: 3.8.4 Homepage: http://search.cpan.org/dist/Tk-ObjScanner/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtk-objscanner-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtk-objscanner-perl/ Package: libtk-objscanner-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, perl-tk Description: Tk viewer for perl data structures Tk::ObjScanner from CPAN provides a GUI to scan the attributes of an object. It can also be used to scan the elements of a hash or an array. debian/README.Debian0000644000000000000000000000077011366070277011244 0ustar This is the package for libtk-objscanner-perl The example may or may not work for you. A very simple demo would be: ####################### #!/usr/bin/perl -w use strict; use Tk; use Tk::ObjScanner; my $mw = MainWindow->new(); my $obj = {'foo' => 'bar'}; my $scanner = $mw->ObjScanner( caller => $obj, title=>"windows")->pack; MainLoop; ####################### If this simple program doesn't work, please bug the package. The author's demo is included for advanced functionality explication. debian/copyright0000644000000000000000000000213111366070001011110 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: Dominique Dumont, dominique.dumont@hp.com Source: http://search.cpan.org/dist/Tk-ObjScanner/ Name: Tk-ObjScanner Files: * Copyright: 1997-2004, 2007, Dominique Dumont License: Artistic or GPL-1+ Files: debian/* Copyright: 2003, 2004, Jay Bonci 2008, 2010, gregor herrmann 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL' debian/watch0000644000000000000000000000016311212456101010210 0ustar version=3 http://search.cpan.org/dist/Tk-ObjScanner/ .*/Tk-ObjScanner-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/libtk-objscanner-perl.docs0000644000000000000000000000000711366067224014233 0ustar README debian/patches/0000755000000000000000000000000011366070717010625 5ustar debian/patches/demo.patch0000644000000000000000000000113411366070170012562 0ustar Description: don't install example script; add hashbang Origin: vendor Forwarded: no Author: Jay Bonci --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,6 @@ WriteMakefile PM => { 'ObjScanner.pm' => '$(INST_LIB)/Tk/ObjScanner.pm', - 'demo/objscan.pl' => '$(INST_LIB)/Tk/demos/widtrib/objscan.pl' }, ABSTRACT => 'A scanner to view an object\'s attribute', AUTHOR => 'Dominique Dumont (ddumont@cpan.org)', --- a/demo/objscan.pl +++ b/demo/objscan.pl @@ -1,3 +1,4 @@ +#!/usr/bin/perl # ObjScanner - data and object scanner use Tk ; debian/patches/series0000644000000000000000000000001310747431551012033 0ustar demo.patch debian/compat0000644000000000000000000000000211366067224010373 0ustar 7 debian/changelog0000644000000000000000000001027511366070704011051 0ustar libtk-objscanner-perl (2.012-2) unstable; urgency=low [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. * Change my email address. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Damyan Ivanov ] * add -a option to xvfb-run invocation [ gregor herrmann ] * Build depend on xauth instead of obsolete xbase-clients (closes: #578964). * Convert to source format 3.0 (quilt). Remove quilt framework. * Switch to debhelper 7. * Set Standards-Version to 3.8.4; remove version from perl build dependency. * debian/copyright: switch to DEP5 format. * Add DEP3 header to patch. -- gregor herrmann Wed, 28 Apr 2010 19:34:58 +0200 libtk-objscanner-perl (2.012-1) unstable; urgency=low [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). * Set Maintainer to Debian Perl Group. * Use dist-based URL in debian/watch. * debian/rules: delete /usr/lib/perl5 only if it exists. [ Jose Luis Rivas ] * New upstream release * debian/control: + Updated to Standards-Version 3.7.3 + Changed debhelper to Build-Depends and updated to >= 5 * debian/copyright: + Fixed formatting of license. + Added the copyright actually of the package. * debian/rules: + Now don't clean if there's no Makefile [ Damyan Ivanov ] * debian/watch: add v? to the patterh; require that the version starts with a digit and contains only digits and periods * debian/copyright: use verbatim copy of the licensing terms [ gregor herrmann ] * debian/rules: - fix clean target - create build-stamp and install-stamp targets - use $(PERL) instead of perl - remove dh_installdirs and some other unused dh_* calls - remove OPTIMIZE, we don't compile anything - use DESTDIR and PREFIX on make install - remove some unused make variables - use dh_listpackages to get the package name - actually build in build-stamp target * Set debhelper compatibility level to 6. * debian/watch: extend regexp for matching upstream releases. * Remove debian/libtk-objscanner-perl.examples and install the demo script from debian/rules. * Remove debian/docs and install README from debian/rules. * Create demo.patch instead of patching the source directly; add quilt framework. * Make the example script executable explicitly instead of searching for possible scripts. * Add xvfb, xbase-clients, xfonts-base to Build-Depends-Indep, enable tests in debian/rules, adjust information in README.Debian. * Add /me to Uploaders. [ Damyan Ivanov ] * as Makefile.PL is patched, touch Makefile before $(MAKE) distclean to avoid Makefile re-building (and breaking building twice in a row) -- gregor herrmann Mon, 28 Jan 2008 21:35:09 +0100 libtk-objscanner-perl (2.010-1) unstable; urgency=low * New upstream version * Fixes debian/watch file so uscan will actually work -- Jay Bonci Mon, 11 Oct 2004 03:14:56 -0400 libtk-objscanner-perl (2.007-2) unstable; urgency=low * Removed dependancy on libweakref-perl (Closes: #229610) - It's now Scalar::Util, and in perl-base - Thanks to Colin Watson for reporting it -- Jay Bonci Sun, 25 Jan 2004 14:52:30 -0500 libtk-objscanner-perl (2.007-1) unstable; urgency=low * new upstream version -- Jay Bonci Fri, 2 Jan 2004 15:20:51 -0500 libtk-objscanner-perl (2.005-1) unstable; urgency=low * New upstream version -- Jay Bonci Mon, 17 Nov 2003 12:11:33 -0500 libtk-objscanner-perl (2.004-2) unstable; urgency=low * Changed module to Scalar::Util instead of WeakRef, which was yanked from the archive (Closes: #219560) * Moved example installation to dh_examples to help be better in line with policy -- Jay Bonci Tue, 11 Nov 2003 23:42:48 -0500 libtk-objscanner-perl (2.004-1) unstable; urgency=low * Initial release (Closes: #158608) -- Jay Bonci Sat, 20 Sep 2003 01:59:23 -0400 debian/libtk-objscanner-perl.examples0000644000000000000000000000000711366067576015133 0ustar demo/* debian/source/0000755000000000000000000000000011366070717010476 5ustar debian/source/format0000644000000000000000000000001411366067224011703 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000012011366067506010251 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_test: xvfb-run -a dh_auto_test