[libdata-treedumper-renderer-gtk-perl] 01/22: First debianization

gregor herrmann gregoa at debian.org
Thu Sep 7 17:18:57 UTC 2017


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libdata-treedumper-renderer-gtk-perl.

commit f3fa79521965aac1a6ec3c1737683252d166beaa
Author: David Paleino <dapal at debian.org>
Date:   Sat Mar 20 09:36:38 2010 +0100

    First debianization
---
 debian/changelog                                  |  5 ++++
 debian/compat                                     |  1 +
 debian/control                                    | 27 ++++++++++++++++++++++
 debian/copyright                                  | 25 ++++++++++++++++++++
 debian/patches/00-drop_useless_dependencies.patch | 28 +++++++++++++++++++++++
 debian/patches/series                             |  1 +
 debian/rules                                      |  4 ++++
 debian/source/format                              |  1 +
 debian/watch                                      |  2 ++
 9 files changed, 94 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..367446c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libdata-treedumper-renderer-gtk-perl (0.02-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #574616)
+
+ -- David Paleino <dapal at debian.org>  Fri, 19 Mar 2010 13:18:30 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..727db3b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: libdata-treedumper-renderer-gtk-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep:
+ perl,
+ libglib-perl,
+ libgtk2-perl,
+ libdata-treedumper-perl (>= 0.33)
+Maintainer: David Paleino <dapal at debian.org>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/Data-TreeDumper-Renderer-GTK/
+
+Package: libdata-treedumper-renderer-gtk-perl
+Architecture: all
+Depends:
+ ${perl:Depends},
+ ${misc:Depends},
+ libglib-perl,
+ libgtk2-perl,
+ libdata-treedumper-perl (>= 0.33)
+Description: Gtk2::TreeView renderer for Data::TreeDumper
+ This widget is the GUI equivalent of Data::TreeDumper; it will display a perl
+ data structure in a TreeView, allowing you to fold and unfold child data
+ structures and get a quick feel for what's where. Right-clicking anywhere in
+ the view brings up a context menu, from which the user can choose to expand
+ or collapse all items.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1edb534
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: Data-TreeDumper-Renderer-GTK
+
+Files: debian/*
+Copyright: © 2010, David Paleino <dapal at debian.org>
+License: Artistic | GPL-1+
+
+Files: *
+Copyright: © 2005, Khemir Nadim ibn Hamouda <nadim at khemir.net>
+ © 2005, Muppet <scott at asofyet.org>
+License: Artistic | 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.
+X-Comment: 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.
+X-Comment: on Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
diff --git a/debian/patches/00-drop_useless_dependencies.patch b/debian/patches/00-drop_useless_dependencies.patch
new file mode 100644
index 0000000..97f2a7f
--- /dev/null
+++ b/debian/patches/00-drop_useless_dependencies.patch
@@ -0,0 +1,28 @@
+From: David Paleino <dapal at debian.org>
+Subject: drop useless dependencies
+
+---
+ META.yml    |    1 -
+ Makefile.PL |    1 -
+ 2 files changed, 2 deletions(-)
+
+--- libdata-treedumper-renderer-gtk-perl.orig/META.yml
++++ libdata-treedumper-renderer-gtk-perl/META.yml
+@@ -8,7 +8,6 @@ author:
+ generated_by:        ExtUtils::MakeMaker version 6.44
+ distribution_type:   module
+ requires:     
+-    Cairo:                         0
+     Data::TreeDumper:              0.33
+     Glib:                          0
+     Gtk2:                          0
+--- libdata-treedumper-renderer-gtk-perl.orig/Makefile.PL
++++ libdata-treedumper-renderer-gtk-perl/Makefile.PL
+@@ -8,7 +8,6 @@ WriteMakefile(
+ 	{
+ 	Glib => 0,
+ 	Gtk2 => 0,
+-	Cairo => 0,
+ 	Data::TreeDumper => 0.33,
+ 	}, 
+     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..4a48064
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+00-drop_useless_dependencies.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3ced24f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Data-TreeDumper-Renderer-GTK/   .*/Data-TreeDumper-Renderer-GTK-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdata-treedumper-renderer-gtk-perl.git



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