r10405 - in /trunk/libtk-objscanner-perl: Makefile.PL debian/ debian/README.debian debian/changelog debian/compat debian/control debian/copyright debian/docs debian/libtk-objscanner-perl.examples debian/rules debian/watch demo/objscan.pl

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 12:23:17 UTC 2007


Author: vdanjean
Date: Sat Dec  1 12:23:17 2007
New Revision: 10405

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

Added:
    trunk/libtk-objscanner-perl/debian/
    trunk/libtk-objscanner-perl/debian/README.debian
    trunk/libtk-objscanner-perl/debian/changelog
    trunk/libtk-objscanner-perl/debian/compat
    trunk/libtk-objscanner-perl/debian/control
    trunk/libtk-objscanner-perl/debian/copyright
    trunk/libtk-objscanner-perl/debian/docs
    trunk/libtk-objscanner-perl/debian/libtk-objscanner-perl.examples
    trunk/libtk-objscanner-perl/debian/rules   (with props)
    trunk/libtk-objscanner-perl/debian/watch
Modified:
    trunk/libtk-objscanner-perl/Makefile.PL
    trunk/libtk-objscanner-perl/demo/objscan.pl

Modified: trunk/libtk-objscanner-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/Makefile.PL?rev=10405&op=diff
==============================================================================
--- trunk/libtk-objscanner-perl/Makefile.PL (original)
+++ trunk/libtk-objscanner-perl/Makefile.PL Sat Dec  1 12:23:17 2007
@@ -9,7 +9,7 @@
     PM            => 
    {
     'ObjScanner.pm'   => '$(INST_LIB)/Tk/ObjScanner.pm',
-    'demo/objscan.pl' => '$(INST_LIB)/Tk/demos/widtrib/objscan.pl'
+    #'demo/objscan.pl' => '$(INST_LIB)/Tk/demos/widtrib/objscan.pl'
    },
    ABSTRACT   => 'A scanner to view an object\'s attribute',
    AUTHOR     => 'Dominique Dumont (domi at barrayar.grenoble.hp.com)',

Added: trunk/libtk-objscanner-perl/debian/README.debian
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/README.debian?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/README.debian (added)
+++ trunk/libtk-objscanner-perl/debian/README.debian Sat Dec  1 12:23:17 2007
@@ -1,0 +1,35 @@
+This is the package for libtk-objscanner-perl
+
+A few pieces of errata:
+
+  1) make test does not seem to work. Most of the testing done for 
+  this package has been done by hand
+
+  2) 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.
+
+#######################
+
+Also, this module has been modified to use Scalar::Util, rather than the
+deprecated WeakRef.pm module;

Added: trunk/libtk-objscanner-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/changelog?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/changelog (added)
+++ trunk/libtk-objscanner-perl/debian/changelog Sat Dec  1 12:23:17 2007
@@ -1,0 +1,39 @@
+libtk-objscanner-perl (2.010-1) unstable; urgency=low
+
+  * New upstream version
+  * Fixes debian/watch file so uscan will actually work
+
+ -- Jay Bonci <jaybonci at debian.org>  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 <jaybonci at debian.org>  Sun, 25 Jan 2004 14:52:30 -0500
+
+libtk-objscanner-perl (2.007-1) unstable; urgency=low
+
+  * new upstream version
+
+ -- Jay Bonci <jaybonci at debian.org>  Fri,  2 Jan 2004 15:20:51 -0500
+
+libtk-objscanner-perl (2.005-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Jay Bonci <jaybonci at debian.org>  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 <jaybonci at debian.org>  Tue, 11 Nov 2003 23:42:48 -0500
+
+libtk-objscanner-perl (2.004-1) unstable; urgency=low
+
+  * Initial release (Closes: #158608)
+
+ -- Jay Bonci <jaybonci at debian.org>  Sat, 20 Sep 2003 01:59:23 -0400

Added: trunk/libtk-objscanner-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/compat?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/compat (added)
+++ trunk/libtk-objscanner-perl/debian/compat Sat Dec  1 12:23:17 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libtk-objscanner-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/control?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/control (added)
+++ trunk/libtk-objscanner-perl/debian/control Sat Dec  1 12:23:17 2007
@@ -1,0 +1,15 @@
+Source: libtk-objscanner-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Build-Depends-Indep: debhelper (>> 4.0.0), perl (>> 5.8.2-1), perl-tk
+Standards-Version: 3.6.1.0
+
+Package: libtk-objscanner-perl
+Architecture: all
+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.
+

Added: trunk/libtk-objscanner-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/copyright?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/copyright (added)
+++ trunk/libtk-objscanner-perl/debian/copyright Sat Dec  1 12:23:17 2007
@@ -1,0 +1,24 @@
+This package was debianized by Jay Bonci <jay at bonci.com> on
+Fri, 10 Jan 2003 01:33:02 -0500.
+
+It was downloaded from http://search.cpan.org/dist/Tk-ObjScanner
+
+Upstream Author: Dominique Dumont <domi at komarr.grenoble.hp.com>
+
+Copyright:
+        This program is free software; you can redistribute it and/or modify
+        it under the terms of either:
+
+        a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+
+        b) the "Artistic License"
+
+        See:
+
+        /usr/share/common-licenses/Artistic
+        /usr/share/common-licenses/GPL
+
+        For more information regarding these licensing options
+

Added: trunk/libtk-objscanner-perl/debian/docs
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/docs?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/docs (added)
+++ trunk/libtk-objscanner-perl/debian/docs Sat Dec  1 12:23:17 2007
@@ -1,0 +1,1 @@
+README

Added: trunk/libtk-objscanner-perl/debian/libtk-objscanner-perl.examples
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/libtk-objscanner-perl.examples?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/libtk-objscanner-perl.examples (added)
+++ trunk/libtk-objscanner-perl/debian/libtk-objscanner-perl.examples Sat Dec  1 12:23:17 2007
@@ -1,0 +1,1 @@
+demo/*

Added: trunk/libtk-objscanner-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/rules?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/rules (added)
+++ trunk/libtk-objscanner-perl/debian/rules Sat Dec  1 12:23:17 2007
@@ -1,0 +1,57 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+PKGROOT=$(CURDIR)/debian/$(PACKAGE)/usr
+EXAMPLES=$(PKGROOT)/share/doc/$(PACKAGE)/examples
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	#Skipping tests because it needs an X display
+	$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" install
+	-find $(CURDIR) -type d -name "*.pl" -exec chmod 755 {} \;
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-arch:;
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installexamples
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	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 configure

Propchange: trunk/libtk-objscanner-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtk-objscanner-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/debian/watch?rev=10405&op=file
==============================================================================
--- trunk/libtk-objscanner-perl/debian/watch (added)
+++ trunk/libtk-objscanner-perl/debian/watch Sat Dec  1 12:23:17 2007
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/Tk/Tk-ObjScanner-([0-9].*)\.tar.gz

Modified: trunk/libtk-objscanner-perl/demo/objscan.pl
URL: http://svn.debian.org/wsvn/trunk/libtk-objscanner-perl/demo/objscan.pl?rev=10405&op=diff
==============================================================================
--- trunk/libtk-objscanner-perl/demo/objscan.pl (original)
+++ trunk/libtk-objscanner-perl/demo/objscan.pl Sat Dec  1 12:23:17 2007
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
 # ObjScanner - data and object scanner
 
 use Tk ;




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