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

intrigeri pushed a commit to branch experimental
in repository libnet-dbus-perl.

commit e56ad8fde8272df8a4f59fc4083d1a3fdbcce6f0
Author: intrigeri <intrig...@boum.org>
Date:   Sat Mar 21 00:43:00 2015 +0000

    Dropped all patches, that were applied upstream.
---
 debian/patches/fix-invocation-of-properties.patch |  36 -----
 debian/patches/series                             |   2 -
 debian/patches/spelling-errors.patch              | 183 ----------------------
 3 files changed, 221 deletions(-)

diff --git a/debian/patches/fix-invocation-of-properties.patch 
b/debian/patches/fix-invocation-of-properties.patch
deleted file mode 100644
index 7c40207..0000000
--- a/debian/patches/fix-invocation-of-properties.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Description: Fix invocation of properties
-Author: Daniel P. Berrange <d...@berrange.com>
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659759
-Bug: http://hg.berrange.com/libraries/net-dbus--devel?cs=7e46ba9822e1
-Forwarded: yes
-Reviewed-By: Xavier Guimard <x.guim...@free.fr>
-Last-Update: 2013-02-04
-
---- a/lib/Net/DBus/RemoteObject.pm
-+++ b/lib/Net/DBus/RemoteObject.pm
-@@ -364,10 +364,10 @@
-               }
- 
-               if (@_) {
--                  $self->_call_method($mode, "Set", 
"org.freedesktop.DBus.Properties", $interface, 1, $name, $_[0]);
-+                  $self->_call_method($mode, "Set", 
"org.freedesktop.DBus.Properties", 1, $interface, $name, $_[0]);
-                   return ();
-               } else {
--                  return $self->_call_method($mode, "Get", 
"org.freedesktop.DBus.Properties", $interface, 1, $name);
-+                  return $self->_call_method($mode, "Get", 
"org.freedesktop.DBus.Properties", 1, $interface, $name);
-               }
-           }
-       } else {
-@@ -392,10 +392,10 @@
-                   warn "property $name in interface $interface on " . 
$self->get_object_path . " is deprecated";
-               }
-               if (@_) {
--                  $self->_call_method($mode, "Set", 
"org.freedesktop.DBus.Properties", $interface, 1, $name, $_[0]);
-+                  $self->_call_method($mode, "Set", 
"org.freedesktop.DBus.Properties", 1, $interface, $name, $_[0]);
-                   return ();
-               } else {
--                  return $self->_call_method($mode, "Get", 
"org.freedesktop.DBus.Properties", $interface, 1, $name);
-+                  return $self->_call_method($mode, "Get", 
"org.freedesktop.DBus.Properties", 1, $interface, $name);
-               }
-           }
-       }
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 215ed01..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-fix-invocation-of-properties.patch
-spelling-errors.patch
diff --git a/debian/patches/spelling-errors.patch 
b/debian/patches/spelling-errors.patch
deleted file mode 100644
index b698ff1..0000000
--- a/debian/patches/spelling-errors.patch
+++ /dev/null
@@ -1,183 +0,0 @@
-Description: Spelling errors
-Author: Xavier Guimard <x.guim...@free.fr>
-Bug: https://rt.cpan.org/Ticket/Display.html?id=83113
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=83113
-Last-Update: 2013-02-04
-
---- a/lib/Net/DBus/Exporter.pm
-+++ b/lib/Net/DBus/Exporter.pm
-@@ -532,7 +532,7 @@
- 
- =over 4
- 
--=item No paramters, no return values
-+=item No parameters, no return values
- 
- A method which simply prints "Hello World" each time its called
- 
-@@ -578,7 +578,7 @@
- 
- =item Annotating methods with metdata
- 
--A method which is targetted for removal, and also does not
-+A method which is targeted for removal, and also does not
- return any value
- 
-     sub PlayMP3 {
---- a/lib/Net/DBus/RemoteService.pm
-+++ b/lib/Net/DBus/RemoteService.pm
-@@ -125,7 +125,7 @@
- Retrieves a handle to the remote object provided by the service  with
- the name of C<$object_path>. If the optional C<$interface> parameter is
- provided, the object will immediately be cast to the designated
--interface. NB, it is only neccessary to cast an object to a specific
-+interface. NB, it is only necessary to cast an object to a specific
- interface if there are multiple interfaces on the object providing
- methods with the same name, or the remote object does support
- introspection. The returned object will be an instance of 
L<Net::DBus::RemoteObject>.
---- a/lib/Net/DBus/Service.pm
-+++ b/lib/Net/DBus/Service.pm
-@@ -63,7 +63,7 @@
- Create a new service, attaching to the bus provided in
- the C<$bus> parameter, which should be an instance of
- the L<Net::DBus> object. The C<$name> parameter is the
--qualified service name. It is not usually neccessary to
-+qualified service name. It is not usually necessary to
- use this constructor, since services can be created via
- the C<export_service> method on the L<Net::DBus> object.
- 
---- a/lib/Net/DBus/Callback.pm
-+++ b/lib/Net/DBus/Callback.pm
-@@ -48,7 +48,7 @@
- about a callback to be invoked at a later date. It is used
- when registering to receive events from the L<Net::DBus::Reactor>
- class. NB use of this module in application code is no longer
--neccessary and it remains purely for backwards compatability.
-+necessary and it remains purely for backwards compatibility.
- Instead you can simply pass a subroutine code reference in
- any place where a callback is desired.
- 
---- a/lib/Net/DBus/Reactor.pm
-+++ b/lib/Net/DBus/Reactor.pm
-@@ -125,7 +125,7 @@
- 
- Creates a new event loop ready for monitoring file handles, or
- generating timeouts. Except in very unsual circumstances (examples
--of which I can't think up) it is not neccessary or desriable to
-+of which I can't think up) it is not necessary or desriable to
- explicitly create new reactor instances. Instead call the L<main>
- method to get a handle to the singleton instance.
- 
-@@ -597,7 +597,7 @@
- =item $reactor->toggle_timeout($id, $status[, $interval]);
- 
- Updates the state of a previously registered timeout
--specifed by the C<$id> parameter. The C<$status>
-+specified by the C<$id> parameter. The C<$status>
- parameter specifies whether the timeout is to be enabled
- or disabled, while the optional C<$interval> parameter
- can be used to change the period of the timeout.
---- a/lib/Net/DBus/RemoteObject.pm
-+++ b/lib/Net/DBus/RemoteObject.pm
-@@ -71,7 +71,7 @@
- data can be used to automatically resolve the correct interface to call cases 
where
- method names are unique. Rather than using this constructor directly, it is 
preferrable
- to use the C<get_object> method on L<Net::DBus::RemoteService>, since this 
caches handles
--to remote objects, eliminating unneccessary introspection data lookups.
-+to remote objects, eliminating unnecessary introspection data lookups.
- 
- =cut
- 
-@@ -97,7 +97,7 @@
- 
- Casts the object to a specific interface, returning a new instance of the
- L<Net::DBus::RemoteObject> specialized to the desired interface. It is only
--neccessary to cast objects to a specific interface, if two interfaces
-+necessary to cast objects to a specific interface, if two interfaces
- export methods or signals with the same name, or the remote object does not
- support introspection.
- 
---- a/lib/Net/DBus/Test/MockObject.pm
-+++ b/lib/Net/DBus/Test/MockObject.pm
-@@ -65,7 +65,7 @@
- !!!!! WARNING !!!
- 
- This object & its APIs should be considered very experimental at
--this point in time, and no guarentees about future API compatability
-+this point in time, and no guarentees about future API compatibility
- are provided what-so-ever. Comments & suggestions on how to evolve
- this framework are, however, welcome & encouraged.
- 
---- a/lib/Net/DBus/Test/MockMessage.pm
-+++ b/lib/Net/DBus/Test/MockMessage.pm
-@@ -201,7 +201,7 @@
- 
- =item my $interface = $msg->get_interface
- 
--Retrieves the name of the interface targetted by this message, possibly
-+Retrieves the name of the interface targeted by this message, possibly
- an empty string if there is no applicable interface for this message.
- 
- =cut
---- a/lib/Net/DBus/Test/MockConnection.pm
-+++ b/lib/Net/DBus/Test/MockConnection.pm
-@@ -72,7 +72,7 @@
- =item my $con = Net::DBus::Test::MockConnection->new()
- 
- Create a new mock connection object instance. It is not usually
--neccessary to create instances of this object directly, instead
-+necessary to create instances of this object directly, instead
- the C<test> method on the L<Net::DBus> object can be used to
- get a handle to a test bus.
- 
---- a/lib/Net/DBus/Binding/Value.pm
-+++ b/lib/Net/DBus/Binding/Value.pm
-@@ -53,7 +53,7 @@
- =item my $value = Net::DBus::Binding::Value->new($type, $value);
- 
- Creates a wrapper for the perl value C<$value> marking it as having
--the dbus data type C<$type>. It is not neccessary to call this method
-+the dbus data type C<$type>. It is not necessary to call this method
- directly, instead the data typing methods in the L<Net::DBus> object
- should be used.
- 
---- a/lib/Net/DBus/Binding/Message.pm
-+++ b/lib/Net/DBus/Binding/Message.pm
-@@ -210,7 +210,7 @@
- 
- =item my $interface = $msg->get_interface
- 
--Retrieves the name of the interface targetted by this message, possibly
-+Retrieves the name of the interface targeted by this message, possibly
- an empty string if there is no applicable interface for this message.
- 
- =cut
---- a/lib/Net/DBus/Tutorial/ExportingObjects.pod
-+++ b/lib/Net/DBus/Tutorial/ExportingObjects.pod
-@@ -177,7 +177,7 @@
-   use base qw(Net::DBus);
-   use Net::DBus::Exporter qw(com.berrange.music.player.manager)
- 
--Next up, it is neccessary to provide data types for the parameters and return
-+Next up, it is necessary to provide data types for the parameters and return
- values of the methods. The L<Net::DBus::Exporter> module provides a method
- C<dbus_method> for this purpose, which takes three parameter, the name of the
- method being exported, an array reference of parameter types, and an array
-@@ -251,7 +251,7 @@
- This object implements the C<org.freedesktop.DBus.Exporter> interface
- which has a method C<ListObject>. This enables clients to determine
- a list of all objects exported within a service. While not functionally
--neccessary for most applications, it is none-the-less a useful tool for
-+necessary for most applications, it is none-the-less a useful tool for
- developers debugging applications, or wondering what a service provides.
- 
- =head1 CONNECTING TO THE BUS
-@@ -274,7 +274,7 @@
-    my $bus = Net::DBus->find;
-    my $player = Music::Player->new($bus);
- 
--With the service attached to the bus, it is merely neccessary to run
-+With the service attached to the bus, it is merely necessary to run
- the main event processing loop to listen out for & handle incoming
- DBus messages. So the above code is modified to start a simple reactor:
- 

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to