[xacobeo] 03/06: Drop patches, all merged upstream.

gregor herrmann gregoa at debian.org
Fri Jan 24 19:19:52 UTC 2014


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

gregoa pushed a commit to branch master
in repository xacobeo.

commit 5a5b10114ed7124efb86e3f72a74090f08019ddb
Author: gregor herrmann <gregoa at debian.org>
Date:   Fri Jan 24 20:13:50 2014 +0100

    Drop patches, all merged upstream.
---
 debian/patches/desktop-keywords.patch | 15 --------
 debian/patches/pod-fixes              | 64 -----------------------------------
 debian/patches/qw-list.patch          | 42 -----------------------
 debian/patches/series                 |  3 --
 4 files changed, 124 deletions(-)

diff --git a/debian/patches/desktop-keywords.patch b/debian/patches/desktop-keywords.patch
deleted file mode 100644
index 819be94..0000000
--- a/debian/patches/desktop-keywords.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: seems like .desktop files now want a Keywords entry
-Origin: vendor
-Bug: https://rt.cpan.org/Ticket/Display.html?id=88131
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=88131
-Author: gregor herrmann <gregoa at debian.org>
-Last-Update: 2013-08-26
-
---- a/share/applications/xacobeo.desktop
-+++ b/share/applications/xacobeo.desktop
-@@ -14,4 +14,4 @@
- Terminal=false
- Type=Application
- Categories=GNOME;GTK;Development;
--
-+Keywords=xpath;visualization;gui;
diff --git a/debian/patches/pod-fixes b/debian/patches/pod-fixes
deleted file mode 100644
index e4a3585..0000000
--- a/debian/patches/pod-fixes
+++ /dev/null
@@ -1,64 +0,0 @@
-Description: syntax and spelling Pod fixes
-Bug: http://code.google.com/p/xacobeo/issues/detail?id=49
-Forwarded: yes
-Author: jkutej at cpan.org
-Acked-by: potyl at cpan.org
-Last-Update: 2010-04-15
-
-diff --git a/lib/Xacobeo/Error.pm b/lib/Xacobeo/Error.pm
-index 52220dd..73fdb92 100644
---- a/lib/Xacobeo/Error.pm
-+++ b/lib/Xacobeo/Error.pm
-@@ -17,7 +17,7 @@ Xacobeo::Error - A simple wrapper over an error.
- =head1 DESCRIPTION
- 
- This package provides a very simple, perhpaps too simple, error wrapper. This
--errors are ment to be used as exceptions.
-+errors are meant to be used as exceptions.
- 
- =head1 METHODS
- 
-diff --git a/lib/Xacobeo/UI/Window.pm b/lib/Xacobeo/UI/Window.pm
-index 2bf74a7..1fa2245 100644
---- a/lib/Xacobeo/UI/Window.pm
-+++ b/lib/Xacobeo/UI/Window.pm
-@@ -40,7 +40,7 @@ The widget displaying the namespaces of the current document.
- 
- =head2 xpath-entry
- 
--The entry where the XPath expresion will be edited.
-+The entry where the XPath expression will be edited.
- 
- =head2 statusbar
- 
-diff --git a/lib/Xacobeo/XS.pm b/lib/Xacobeo/XS.pm
-index 9c8925e..d1abd12 100644
---- a/lib/Xacobeo/XS.pm
-+++ b/lib/Xacobeo/XS.pm
-@@ -61,7 +61,7 @@ The text buffer to fill. Must be an instance of L<Gtk2::TextBuffer>.
- The node to display in the the text view. Must be an instance of
- L<XML::LibXML::Node>.
- 
--=item $namespaces
-+=item * $namespaces
- 
- The namespaces declared in the document. Must be an hash ref where the keys are
- the URIs and the values the prefixes of the namespaces.
-@@ -97,7 +97,7 @@ The text store to fill. Must be an instance of L<Gtk2::TreeStore>.
- The node to display in the the tree view. Must be an instance of
- L<XML::LibXML::Node>.
- 
--=item $namespaces
-+=item * $namespaces
- 
- The namespaces declared in the document. Must be an hash ref where the keys are
- the URIs and the values the prefixes of the namespaces.
-@@ -152,7 +152,7 @@ Parameters:
- The node for which the path has to be computed. Must be an instance of
- L<XML::LibXML::Node>.
- 
--=item $namespaces
-+=item * $namespaces
- 
- The namespaces declared in the document. Must be an hash ref where the keys are
- the URIs and the values the prefixes of the namespaces.
diff --git a/debian/patches/qw-list.patch b/debian/patches/qw-list.patch
deleted file mode 100644
index 90ffda6..0000000
--- a/debian/patches/qw-list.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-Description: qw(...) can no longer be used as parentheses in Perl 5.18
- http://search.cpan.org/dist/perl-5.18.0/pod/perldelta.pod#qw%28...%29_can_no_longer_be_used_as_parentheses
-Origin: vendor
-Bug-Debian: http://bugs.debian.org/720869
-Bug: https://rt.cpan.org/Ticket/Display.html?id=88132
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=88132
-Author: gregor herrmann <gregoa at debian.org>
-Last-Update: 2013-08-26
-
---- a/inc/MyBuilder.pm
-+++ b/inc/MyBuilder.pm
-@@ -8,7 +8,7 @@
- 
- BEGIN {
- 
--	foreach my $module qw(ExtUtils::Depends ExtUtils::PkgConfig ExtUtils::ParseXS) {
-+	foreach my $module (qw(ExtUtils::Depends ExtUtils::PkgConfig ExtUtils::ParseXS)) {
- 		eval "use $module";
- 		if (my $error = $@) {
- 			warn "Missing build dependency $module.";
---- a/lib/Xacobeo/UI/SourceView.pm
-+++ b/lib/Xacobeo/UI/SourceView.pm
-@@ -317,7 +317,7 @@
- 	);
- 
- 	# Make the boolean and number look a like
--	foreach my $name qw(boolean number) {
-+	foreach my $name (qw(boolean number)) {
- 		_add_tag($tag_table, $name =>
- 			family     => 'Courier 10 Pitch',
- 			foreground => 'black',
---- a/lib/Xacobeo/UI/DomView.pm
-+++ b/lib/Xacobeo/UI/DomView.pm
-@@ -236,7 +236,7 @@
- 	my $node = $self->get_selected_node or return;
- 	my $xpath = Xacobeo::XS->get_node_path($node, $self->namespaces);
- 
--	foreach my $selection qw(SELECTION_CLIPBOARD SELECTION_PRIMARY) {
-+	foreach my $selection (qw(SELECTION_CLIPBOARD SELECTION_PRIMARY)) {
- 		my $clipboard = Gtk2::Clipboard->get(Gtk2::Gdk->$selection);
- 		$clipboard->set_text($xpath);
- 	}
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 3ad60cf..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,3 +0,0 @@
-pod-fixes
-desktop-keywords.patch
-qw-list.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/xacobeo.git



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