Bug#612756: O: spread -- The Spread messaging daemon

2011-02-10 Thread Michael Mende
Package: wnpp
Severity: normal

I intend to orphan the spread package.

The package description is:
 Spread is a toolkit that provides a high performance messaging
 service that is resilient to faults across external or internal
 networks. Spread functions as a unified message bus for distributed
 applications, and provides highly tuned application-level multicast
 and group communication support. Spread services range from reliable
 message passing to fully ordered messages with delivery guarantees,
 even in case of computer failures and network partitions. Spread is
 designed to encapsulate the challenging aspects of asynchronous
 networks and enable the construction of scalable distributed
 applications, allowing application builders to focus on the
 differentiating components of their application.

--
Kind Regards,

Michael Mende
http://www.failover.de/



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110210124352.4691.35203.report...@menole.dyndns.org



Bug#612755: O: wackamole

2011-02-10 Thread Michael Mende
Package: wnpp
Severity: normal

I intend to orphan the wackamole package.

The package description is:
 Wackamole is an application that helps with making a cluster highly
 available. It manages a bunch of virtual IPs, that should be
 available to the outside world at all times. Wackamole ensures that a
 single machine within a cluster is listening on each virtual IP
 address that Wackamole manages. If it discovers that particular
 machines within the cluster are not alive, it will almost immediately
 ensure that other machines acquire these public IPs. At no time will
 more than one machine listen on any virtual IP. Wackamole also works
 toward achieving a balanced distribution of number IPs on the machine
 within the cluster it manages.

--
Kind Regards,

Michael Mende
http://www.failover.de/



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110210124100.4200.77322.report...@menole.dyndns.org



Bug#470795: RFH: apache2 - Co-maintainer wanted

2008-03-14 Thread Michael Mende
Hello Stefan,

I'm going to check open apache2 bugs. Would be glad if I could join the
team.

On Thu, Mar 13, 2008 at 07:25:42PM +0100, Stefan Fritsch wrote:
> Package: wnpp
> Severity: normal
> 
> 
> I request assistance with maintaining the apache2 package.
> 
> The package is not in a bad shape, but I just keep up with new bug reports and
> haven't been able to actually reduce the bug count for some time. The other
> Apache Team members are currently mostly inactive.
> 
> The new co-maintainer(s) should of course have experience as apache user.
> 
> 
> This RFH also includes the ssl-cert, apr, and apr-util packages. But those
> are less work and have fewer bugs.
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#470188: RFH: milter-greylist -- GreyList milter for sendmail

2008-03-10 Thread Michael Mende
Hello Cord,

I guess I can help.
Attached are some patches against Debian's current version fixing 4 of 5
bugs.

I have built milter-greylist successfully having these patches but were
not able to test the --dnsrbl stuff very hard. But thiis might happen
after setting up my own local RBL.

Are you also interested in getting help for upgrading to v4.0? - One
patch is for debian/watch letting uscan show newer versions than 3.0,
too :)

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/
--- ../orig/milter-greylist-3.0/debian/control	2008-03-10 12:15:42.0 +0100
+++ milter-greylist-3.0/debian/control	2008-03-10 12:09:26.0 +0100
@@ -3,7 +3,8 @@
 Priority: extra
 Maintainer: Cord Beermann <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 5), autotools-dev, libmilter-dev, bison, flex, libspf2-dev
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
+Homepage: http://hcpnet.free.fr/milter-greylist/
 
 Package: milter-greylist
 Architecture: any
--- ../orig/milter-greylist-3.0/debian/milter-greylist.default	2008-03-10 12:15:42.0 +0100
+++ milter-greylist-3.0/debian/milter-greylist.default	2008-03-10 11:40:00.0 +0100
@@ -4,12 +4,15 @@
 # 2006-08-18 Herbert Straub
 
 # Change to one to enable milter-greylist
-# Don't forget to edit the configurationfile /etc/mail/greylist.conf
+# Don't forget to edit the configurationfile
+# /etc/milter-greylist/greylist.conf
 ENABLED=0
 
+# Uncomment the DOPTIONS line after changing PIDFILE, SOCKET and/or USER.
 # PIDFILE="/var/run/milter-greylist.pid"
 # SOCKET="/var/run/milter-greylist/greylist.sock"
 # USER="root"
+# DOPTIONS="-P $PIDFILE -u $USER -p $SOCKET"
 
 # Other options
 # OPTIONS=""
--- ../orig/milter-greylist-3.0/debian/rules	2008-03-10 12:15:42.0 +0100
+++ milter-greylist-3.0/debian/rules	2008-03-10 11:43:46.0 +0100
@@ -38,6 +38,7 @@
 		--prefix=/usr \
 		--mandir=\$${prefix}/share/man \
 		--infodir=\$${prefix}/share/info \
+		--enable-dnsrbl \
 		CFLAGS="$(CFLAGS)" \
 		LDFLAGS="-Wl,-z,defs -L/usr/lib/libmilter"
 
@@ -78,6 +79,7 @@
 
 	# Add here commands to install the package into debian/milter-greylist.
 	cp rc-debian.sh debian/milter-greylist.init
+	sed -i "s/reload|force-reload/force-reload/" debian/milter-greylist.init
 	cp greylist.conf debian/milter-greylist/etc/milter-greylist
 	cp milter-greylist.m4 debian/milter-greylist/usr/share/sendmail/cf/feature
 	$(MAKE) DESTDIR=$(CURDIR)/debian/milter-greylist install-sbin install-man
--- ../orig/milter-greylist-3.0/debian/watch	2008-03-10 12:15:42.0 +0100
+++ milter-greylist-3.0/debian/watch	2008-03-10 12:44:10.0 +0100
@@ -1,23 +1,2 @@
-# Example watch control file for uscan
-# Rename this file to "watch" and then you can run the "uscan" command
-# to check for upstream updates and more.
-# See uscan(1) for format
-
-# Compulsory line, this is a version 3 file
 version=3
-
-# Uncomment to examine a Webpage 
-#  
-#http://www.example.com/downloads.php milter-greylist-(.*)\.tar\.gz
-
-# Uncomment to examine a Webserver directory
-#http://www.example.com/pub/milter-greylist-(.*)\.tar\.gz
-
-# Uncommment to examine a FTP server
-#ftp://ftp.example.com/pub/milter-greylist-(.*)\.tar\.gz debian uupdate
-ftp://ftp.espci.fr/pub/milter-greylist/milter-greylist-(3\.0[^ar]*)\.tgz
-
-# Uncomment to find new files on sourceforge, for debscripts >= 2.9
-# http://sf.net/milter-greylist/milter-greylist-(.*)\.tar\.gz
-
-
+ftp://ftp.espci.fr/pub/milter-greylist/milter-greylist-([\d\.]+).tgz
--- ../orig/milter-greylist-3.0/debian/changelog	2008-03-10 12:15:42.0 +0100
+++ milter-greylist-3.0/debian/changelog	2008-03-10 12:55:46.0 +0100
@@ -1,3 +1,25 @@
+milter-greylist (3.0-4) unstable; urgency=low
+
+  [ Michael Mende ]
+  * debian/milter-greylist.default:
++ Added DOPTIONS line. (Closes: #465260)
++ Replaced /etc/mail/greylist.conf with
+  /etc/milter-greylist/greylist.conf. (Closes: #460314)
+  * debian/rules:
++ Removes 'reload' from debian/milter-greylist.init's usage hint.
+  (Closes: #470195) 
++ Added --enable-dnsrbl to configure. (Closes: #449557)
+  * debian/control:
++ Bumped standards version to 3.7.3.
++ Added Homepage: field.
+  * debian/watch:
++ Cleaned.
++ Changed regex to match all stable versions.
+  * debian/copyright:
++ Removed boilerplate comments.
+
+ -- Michael Mende <[EMAIL PROTECTED]>  Mon, 10 Mar 2008 11:18:21 +0100
+
 milter-greylist (3.0-3) unstable; urgency=low
 
   [ Elrond ]


signature.asc
Description: Digital signature


Bug#469124: RFH: spamassassin -- Perl-based spam filter using text analysis

2008-03-04 Thread Michael Mende
Hello Duncan,

hope I can help without being a DD. At alioth I'm menole-guest.

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#432253: libmediawiki-perl

2007-08-25 Thread Michael Mende
Carl,

On Sun, Aug 19, 2007 at 11:11:41AM +0200, Carl =?UTF-8?Q?F=C3=BCrstenberg ?= 
wrote:
> On 8/19/07, Michael Mende <[EMAIL PROTECTED]> wrote:
> > >
> > > Michael, if you are reading this, are you still in progress of
> > > packaging libmediawiki-perl, or could we start packaging it?
> > So urgent? Please feel free to take it over.
> 
> It's not "urgent", but as you hasn't done anything, I wonder if you
> still want to package it?
> 
> -- 
> /Carl F??rstenberg <[EMAIL PROTECTED]>

sources are in snv now, but not yet ready to upload. Feel free to work
on it, too.

http://svn.debian.org/wsvn/pkg-perl/trunk/libmediawiki-perl
svn+ssh://svn.debian.org/svn/pkg-perl/trunk/libmediawiki-perl/

Until revision 7163 it does not build because it does not pass the tests.

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#421816: Status of openais ITP?

2007-08-21 Thread Michael Mende
I guess you are not aware of new upstream version 0.80.3 [1]?
It fixes some bugs being in 0.80.2 you are packaging, for example the
timer.h issue you are going to handle via patch file in r9344.

[1] 
http://developer.osdl.org/dev/openais/downloads/openais-0.80.3/openais-0.80.3.tar.gz

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#421816: Status of openais ITP?

2007-08-21 Thread Michael Mende
On Tue, Aug 21, 2007 at 12:58:07PM +0200, Frederik Schueler wrote:
> Hello,
> 
> I would like to get something done in this matter, but there has not
> been any response nor activity since a couple of weeks.
> 
> What is the status of this ITP? 
> 
> 
> I had a look at the packages on mentors, and I think they are of poor
> quality, using CDBS and shipping an unecessary postinst script obviously
> belonging into another package.
> 
> 
> Please have a look at the kernel-team svn:
> 
> svn://svn.debian.org/kernel/dists/trunk/redhat-cluster/openais/debian
> 
> feel free to send patches if you think something is missing, or ACK an
> upload so we can preapare a release ASAP.

Thanks for your work.

Just a view notes:
* please add a debian/watch file
* please provide a debian packaging copyright note, see [1]
* please think about listing all Copyright holders. E.g. RedHat Inc. is
  to be found in more than 70 files.
* From QUICKSTART:
  "For security reasons, the openais only allows a process that had the
  EGID/GID of "ais" to connect to it.  To make development easier, it is
  recommended to create an "ais" user with the "ais" group."
  please think about creating that user. having a non system user ais
  would be dangerous.
* please provide man pages for the the executables. You may want to use
  the attached ais-keygen.1. The one for aisexec is not yet ready, sorry.

Please have this ITP for debian-kernel-team.
  
[1] http://lists.debian.org/debian-devel-announce/2006/03/msg00023.html

> 
> 
> Best regards
> Frederik Sch?ler
> 
> -- 
> ENOSIG

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/
.\"
.\" This page was created on 2007-06-06 18:16:55 by makeman.pl
.\" ``makeman.pl'' is part of the ``MakeMan'' project.
.\" For more information, please see http://mama.sourceforge.net
.\"
.TH ais\-keygen 1 "June 06, 2007" "openais" "OpenAIS" 

.SH NAME
ais\-keygen \- openais authentication key generator

.SH SYNOPSIS
\fBais\-keygen\fR

.SH "DESCRIPTION"
.PP
The openais executive uses cryptographic techniques to ensure 
authenticity and privacy of the messages. In order for openais to be 
secure and operate, a private key must be generated and shared to all 
processors.
.PP
First generate the key on one of the nodes:
.PP
unix# ais\-keygen 
.PP
After this operation, a private key will be in the file /etc/ais/authkey. This 
private key must be copied to
every processor in the cluster. If the private key is not the same for every 
node, those nodes with nonmatching
private keys will not be able to join the same configuration.
.PP
Copy the key to some security transportable storage or use ssh to transmit the 
key from node to node. Then
install the key with the command:
.PP
unix#: install \-D \-\-group=0 \-\-owner=0 \-\-mode=0400 
/path_to_authkey/authkey /etc/ais/authkey
.PP
If a message "Invalid digest" appears from the openais executive, the keys are 
not consistent between processors.

.SH "VERSION"
.PP
This man page describes \fBais\-keygen\fR version 0.81.

.SH "BUGS"
.PP
If you find a bug, please report it at 
 \fIhttp://www.osdl.org/developer_bugzilla/enter_bug.cgi\fR.

.SH "AUTHORS"
.PP
Steven
Dake
<[EMAIL PROTECTED]>
.PP
This man page was originally written by
Michael
Mende
<[EMAIL PROTECTED]>

.SH "COPYRIGHT"
.PP
.br
Copyright (C) 2002\-2006 MontaVista Software, Inc.
.br
Copyright (C) 2006 Red Hat, Inc.

.SH "LICENSE"
.PP
.br
This software licensed under BSD license. See LICENSE file.

.SH "SEE ALSO"
.PP
\fBopenais_overview(8)\fR,
\fBaisexec(1)\fR


signature.asc
Description: Digital signature


Bug#432253: libmediawiki-perl

2007-08-19 Thread Michael Mende
On Sat, Aug 18, 2007 at 09:42:27PM +0200, Carl F??rstenberg wrote:
> 2007-07-08 I opened a RFP for libmediawiki-perl, and Michael Mende
> some days later marked it as ITP, so long so good. But I have not seen
> any progress of this package, so I tried to mail MM, but probably by
> some missconfigured mail thingi, the mail could not get to him.
There is no misconfigured mail thing on our side but a greylist daemon
which blocks first attempts from dynamic IP addresses :)

> 
> Michael, if you are reading this, are you still in progress of
> packaging libmediawiki-perl, or could we start packaging it?
So urgent? Please feel free to take it over.

> Hash::Case, Hash::WithDefaults and Config::IniHash are allready in the
> SVN, so you don't need to care about those.
> -- 
> /Carl F??rstenberg <[EMAIL PROTECTED]>

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#438133: ITP: libwww-mechanize-shell-perl -- An interactive shell for WWW::Mechanize

2007-08-15 Thread Michael Mende
Package: wnpp
Severity: wishlist

* Package name : libwww-mechanize-shell-perl
Version : 0.44
Upstream Author : Max Maischein <[EMAIL PROTECTED]>
* URL : http://www.cpan.org/modules/by-module/WWW/
* License : GPL, Artistic
Description : An interactive shell for WWW::Mechanize
 This module implements a www-like shell above WWW::Mechanize and also 
 has the capability to output crude Perl code that recreates the
 recorded session. Its main use is as an interactive starting point for 
 automating a session through WWW::Mechanize.
 .
 The cookie support is there, but no cookies are read from your existing 
 browser sessions. See HTTP::Cookies on how to implement reading/writing 
 your current browsers cookies.

-- 
Kind Regards,
 Michael Mende

http://www.menole.net/


signature.asc
Description: Digital signature


Bug#433926: ITP: libwww-mechanize-formfiller-perl -- framework to automate HTML forms

2007-07-20 Thread Michael Mende
Package: wnpp
Severity: wishlist

* Package name : libwww-mechanize-formfiller-perl
Version : 0.06
Upstream Author : Max Maischein <[EMAIL PROTECTED]>
* URL : http://www.cpan.org/modules/by-module/WWW/
* License : GPL, Artistic
Description : framework to automate HTML forms
 The module is intended as a simple way to fill out HTML forms from a
 set of predetermined values. You set up the form filler with value
 elements, retrieve the HTML form, and let the form filler loose on that
 form.
 .
 There are value classes provided for many tasks - fixed values, values
 to be queried interactively from the user, values taken randomly from
 a list of values and values specified through a callback to some Perl
 code.


-- 
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#433924: ITP: libhook-lexwrap-perl -- Lexically scoped subroutine wrappers

2007-07-20 Thread Michael Mende
Package: wnpp
Severity: wishlist

* Package name : libhook-lexwrap-perl
Version : 0.20
Upstream Author : Damian Conway <[EMAIL PROTECTED]>
* URL : http://www.cpan.org/modules/by-module/Hook/
* License : GPL, Artistic
Description : Lexically scoped subroutine wrappers
 Hook::LexWrap allows you to install a pre- or post-wrapper (or both)
 around an existing subroutine. Unlike other modules that provide this
 capacity (e.g. Hook::PreAndPost and Hook::WrapSub), Hook::LexWrap
 implements wrappers in such a way that the standard caller function
 works correctly within the wrapped subroutine.

-- 
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#432253: ITP: libmediawiki-perl -- Perl interface to MediaWiki content management system

2007-07-13 Thread Michael Mende
retitle 432253 ITP: Perl interface to MediaWiki content management system
owner 432253 !
thankyou

Hello,

I intend to take over this package.
--
Kind Regards,
 Michael Mende


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#430416: ITP: gluster -- GNU clustering Platform

2007-06-26 Thread Michael Mende
retitle 430416 ITP: gluster -- GNU clustering Platform 
owner 430416 !
thankyou

Hello,

I intend to take over this package. Please see also #419924.

--
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#429512: RFP: python2.5-pysqlite2 -- python interface to SQLite 3

2007-06-21 Thread Michael Mende
Shouldn't python2.5-pysqlite2 provided by python-pysqlite2? - See
http://wiki.debian.org/DebianPython/NewPolicy

--
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#427814: RFH: stfl -- structured terminal forms language/library

2007-06-19 Thread Michael Mende
Hi Nico,

packages are to be found at [0]. They are lintian clean. The example.rb,
example.pl and example.py do work. So I guess everything is okay.

I repackaged the whole thing. Hope you can live with that. Now there are
some more packages:

* libstfl-dev
* libstfl-perl
* libstfl-ruby
* libstfl-ruby1.8
* libstfl-ruby1.9
* libstfl-spl
* python2.4-stfl
* python2.5-stfl
* python-stfl

Please have a closer look at debian/control and debian/rules.

I also added myself to Uploaders: in debian/control. Feel free to remove
the entry if you don't like it ;-)

[0] http://debian.menole.net/debian/pool/main/s/stfl/

On Mon, Jun 18, 2007 at 10:40:48PM +0200, Nico Golde wrote:
> Hi,
> * Michael Mende <[EMAIL PROTECTED]> [2007-06-18 22:37]:
> > I'm interested in helping you managing the stfs packages. Guess I can
> > provide you first results this week.
> 
> Alright, cool!
> Cheers
> Nico
> -- 
> Nico Golde - http://ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
> For security reasons, all text in this mail is double-rot13 encrypted.

--
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#427814: RFH: stfl -- structured terminal forms language/library

2007-06-18 Thread Michael Mende
Hello Nico,

I'm interested in helping you managing the stfs packages. Guess I can
provide you first results this week.

--
Kind Regards,
 Michael Mende


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#419924: ITP: glusterfs -- A powerful network/cluster filesystem

2007-06-16 Thread Michael Mende
Hallo Christian,

I'm very interested in forcing glusterfs package(s). Did you already
start packaging? Please let me know if I could help.

--
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#411676: Bug#397938: New Upstream Version 1.4.2 now

2007-06-16 Thread Michael Mende
Hallo Franz,

have you already seen bug #397938? I would like to invite you to found a
GeoIP Maintainer group at alioth. There we could manage both geoip and
libapache2-mod-geoip.

Up to date packages of geoip can be found on debian.menole.net [0].
The packages are lintian clean and might be a good start.

[0] http://debian.menole.net/debian/pool/main/g/geoip/

--
Kind Regards,
 Michael Mende


signature.asc
Description: Digital signature


Bug#421816: this will be done by the kernel team

2007-06-05 Thread Michael Mende
Hi Waldi,

your co-worker Frederik tooks over that package without asking.
Why do you act this way?


On Thu, May 31, 2007 at 11:27:38AM +0200, Frederik Schueler wrote:
> owner 421816 [EMAIL PROTECTED]
> thanks
> 
> hello,
> 
> we will take care of this package within the kernel team, while
> packaging everything gfs2 related.
> 
> 
> Best regards
> Frederik Schüler
> 
> -- 
> ENOSIG



-- 
Kind Regards,

Michael Mende


signature.asc
Description: Digital signature


Bug#297843: ITP: mod_geoip for apache 1.3.x and 2.0.x

2006-02-06 Thread Michael Mende
retitle 297842 ITP: mod_geoip2 -- Apache 2.0.x module that interfaces with 
libgeoip
retitle 297843 ITP: mod_geoip -- Apache 1.3.x module that interfaces with 
libgeoip
owner 297842 !
owner 297843 !
thanks

Hello,

I intend to take over these two packages.

Best regards,

Michael Mende


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]