update to version 0.33.6 to get rid of accepted patches

ok landry@ (maintainer)
This commit is contained in:
simon 2008-03-15 13:40:37 +00:00
parent 8e09b3198a
commit 9e7c42a8a4
4 changed files with 7 additions and 88 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/21 21:12:18 landry Exp $
# $OpenBSD: Makefile,v 1.2 2008/03/15 13:40:37 simon Exp $
SHARED_ONLY= Yes
COMMENT= communicate with DBus message system
MODULES= cpan
DISTNAME= Net-DBus-0.33.5
DISTNAME= Net-DBus-0.33.6
CATEGORIES= net
MAINTAINER= Landry Breuil <gaston@gcu.info>

View File

@ -1,5 +1,5 @@
MD5 (Net-DBus-0.33.5.tar.gz) = +sRnSUX1NQnOjDJJZGqqEQ==
RMD160 (Net-DBus-0.33.5.tar.gz) = 33auJf5+SKVQXhNz4HlQBWFBYng=
SHA1 (Net-DBus-0.33.5.tar.gz) = RNFMQhIvOSzdGH0Z4sJGEKz7efo=
SHA256 (Net-DBus-0.33.5.tar.gz) = IEsvIi8LQbqWn1pQiFft1egl2POn2oFuQbOWXthSQYE=
SIZE (Net-DBus-0.33.5.tar.gz) = 96131
MD5 (Net-DBus-0.33.6.tar.gz) = odvOibG4Of0ORtdAZ64uNQ==
RMD160 (Net-DBus-0.33.6.tar.gz) = CA9phDrRoze2XaVe/pO77AiT1A4=
SHA1 (Net-DBus-0.33.6.tar.gz) = b1XtFZYiI503Jyc9ChT9sLN+nBw=
SHA256 (Net-DBus-0.33.6.tar.gz) = ZpetXh76MHC611/VQlYcZcgfkhVMkbkyiVpZda3M0Kw=
SIZE (Net-DBus-0.33.6.tar.gz) = 99786

View File

@ -1,51 +0,0 @@
$OpenBSD: patch-DBus_xs,v 1.1.1.1 2007/11/21 21:12:18 landry Exp $
--- DBus.xs.orig Wed Nov 21 20:41:03 2007
+++ DBus.xs Wed Nov 21 20:43:03 2007
@@ -528,10 +528,10 @@ _open(address)
dbus_error_init(&error);
DEBUG_MSG("Open connection shared %s\n", address);
con = dbus_connection_open(address, &error);
- dbus_connection_ref(con);
if (!con) {
_croak_error (&error);
}
+ dbus_connection_ref(con);
RETVAL = con;
OUTPUT:
RETVAL
@@ -546,10 +546,10 @@ _open_private(address)
dbus_error_init(&error);
DEBUG_MSG("Open connection private %s\n", address);
con = dbus_connection_open_private(address, &error);
- dbus_connection_ref(con);
if (!con) {
_croak_error (&error);
}
+ dbus_connection_ref(con);
RETVAL = con;
OUTPUT:
RETVAL
@@ -909,10 +909,10 @@ _open(type)
dbus_error_init(&error);
DEBUG_MSG("Open bus shared %d\n", type);
con = dbus_bus_get(type, &error);
- dbus_connection_ref(con);
if (!con) {
_croak_error(&error);
}
+ dbus_connection_ref(con);
RETVAL = con;
OUTPUT:
RETVAL
@@ -927,10 +927,10 @@ _open_private(type)
dbus_error_init(&error);
DEBUG_MSG("Open bus private %d\n", type);
con = dbus_bus_get_private(type, &error);
- dbus_connection_ref(con);
if (!con) {
_croak_error(&error);
}
+ dbus_connection_ref(con);
RETVAL = con;
OUTPUT:
RETVAL

View File

@ -1,30 +0,0 @@
$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2007/11/21 21:12:18 landry Exp $
--- Makefile.PL.orig Thu Jul 19 05:02:29 2007
+++ Makefile.PL Tue Nov 6 12:54:40 2007
@@ -47,26 +47,4 @@ sub libscan
($path =~ /\~$/ || $path =~ m,/CVS/,) ? undef : $path;
}
-sub test {
- my $self = shift;
- my $mm_test = $self->SUPER::test(@_);
-
- return '
-TO_TEST_PM = $(TO_INST_PM:lib/%.pm=blib/test/%.pm.tstamp)
-
-test :: test-syntax
-
-test-syntax: pure_all $(TO_TEST_PM)
-
-blib/test/%.pm.tstamp: lib/%.pm
- @echo -n "Checking $<: "
- #@perl -I blib/lib -c $<
- @podchecker $<
- @mkdir -p `dirname $@`
- @touch $@
-
-' . $mm_test;
- }
-
-
__END__