Re: RFS: liblwp-authen-negotiate-perl

2008-06-10 Thread Maximilian Wilhelm
Maximilian Wilhelm scripsit:

Hi!

> I am looking for a sponsor for my package "liblwp-authen-negotiate-perl".

The package has already been uploaded.

Ciao
Max
-- 
Follow the white penguin.


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



RFS: liblwp-authen-negotiate-perl

2008-06-08 Thread Maximilian Wilhelm
Hi!

I am looking for a sponsor for my package "liblwp-authen-negotiate-perl".

* Package name: liblwp-authen-negotiate-perl
  Version : 0.06-1
  Upstream Author : Achim Grolms <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/~agrolms/LWP-Authen-Negotiate-0.06/
* License : GPL / Artistic (perl)
  Section : perl

It builds these binary packages:
liblwp-authen-negotiate-perl - Perl module for GSSAPI based Authentication 
Plugin for LWP

 This is the CPAN Perl module LWP::Authen::Negotiate.
 .
 LWP::Authen::Negotiate is a transparent authentication plugin for LWP.
 The LWP::UserAgent will do authentication transparently based on your
 GSSAPI installation (MIT Kerberos or Heimdal).

The package appears to be lintian clean, besides a warning about the generated
manpage, which I don't have an idea how to solve.

The upload would fix the bug: 484820

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/l/liblwp-authen-negotiate-perl
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/l/liblwp-authen-negotiate-perl/liblwp-authen-negotiate-perl_0.06-1.dsc

I would be glad if someone uploaded this package for me.

Ciao & Thanks
Max
-- 
Follow the white penguin.


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



RFS: Updated package: liblinux-kernelsort-perl

2008-01-01 Thread Maximilian Wilhelm
Hi!

I'm looking for a sponsor for my updated package
liblinux-kernelsort-perl:

| liblinux-kernelsort-perl (0.01-2) unstable; urgency=low
| 
|   * Fixed lintian warning 'description-contains-homepage' and moved homepage
| from Description to Homepage field for the package.
|   * Bumped Standards-Version to 3.7.3
|   * Updated debian/copyright to fit copyright information from upstream README
| 
|  -- Maximilian Wilhelm <[EMAIL PROTECTED]>  Sat, 29 Dec 2007 18:04:39 +0100

It is available at:

 deb http://debian.rfc2324.org/debian/ sid main
 deb-src http://debian.rfc2324.org/debian/ sid main 

 
Is the copyright file OK this way or do I have to choose one of the
licenses?

Thanks in advance
Ciao
Max
-- 
Follow the white penguin.


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



Searching doc about debian dir in upstream release

2007-04-17 Thread Maximilian Wilhelm
Hi!

I was ask by a "upstream author" about the debian-dir in upstream
(release) thing where to find documentation about this.

I did not find anything on the debian pages or via google by myself.

Is there any text, paper, whatever piece of text "officially"
available on this?

Thanks for hints.

Ciao
Max
-- 
Follow the white penguin.


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



Linda question: Maintainer script prerm uses debhelper, but does not use #DEBHELPER#.

2007-01-28 Thread Maximilian Wilhelm
Hi!

I get the following warnings when checking my package with linda:

| $ linda -i *.dsc
| W: conntrackd; Maintainer script postinst uses debhelper, but does not use 
#DEBHELPER#.
|  The maintainer script shown above is included in a debhelper-using
|  package, but it does not include a #DEBHELPER# tag.
| W: conntrackd; Maintainer script prerm uses debhelper, but does not use 
#DEBHELPER#

I do not use any debhelper-magic in the scripts and do not understand
what linda wants me to do.

I could simply include '#DEBHELPER#' in the scripts but I do not want any
debhelper magic to change the scripts.
dh_installinit is called with --noscripts to accomplish this.

prerm, postinst and rules are attached.

What should I do?

Ciao & Thanks
Max
-- 
Follow the white penguin.
#!/bin/sh
#
# conntrackd.prerm
#
# Maximilian Wilhelm <[EMAIL PROTECTED]>
#  -- Thu, 25 Jan 2007 21:00:07 +0100
#

case "$1" in
# Things to be done before removal of conntrackd
purge|remove)
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d conntrackd stop
else
/etc/init.d/conntrackd stop
fi
;;

*)
;;
esac

# Do *not* stop conntrackd here to be able to decide in postinst if conntrackd
# did run before upgrade an restart it if this is the case and don´t start it
# if it didn´t run before.

# vim:ft=sh
#!/bin/sh
#
# conntrackd.postinst
#
# Maximilian Wilhelm <[EMAIL PROTECTED]>
#  -- Thu, 25 Jan 2007 21:00:54 +0100
#
set -e

if [ -x "/etc/init.d/conntrackd" ]; then
# Let conntrackd start after networking is available
# and stop just before networking will be disabled
update-rc.d conntrackd start 41 S . stop 34 0 1 6 . >/dev/null
fi

# Do not (re)start conntrackd on upgrade if it does not run allready.
if [ "$1" = "upgrade" ]; then
if ! pidof conntrackd >/dev/null; then
echo "No conntrackd running, won't start one."
exit 0
else
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d conntrackd restart
else
/etc/init.d/conntrackd restart
fi
fi
fi

# vim:ft=sh
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1


# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)


CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif

config.status: configure
dh_testdir
# Add here commands to configure the package.
./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) 
--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info 
CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"


build: build-stamp

build-stamp:  config.status
dh_testdir

# Add here commands to compile the package.
$(MAKE)
#docbook-to-man debian/conntrackd.sgml > conntrackd.1

touch $@

clean:
dh_testdir
dh_testroot
rm -f build-stamp 

# Add here commands to clean up after the build process.
-$(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif


dh_clean 

install: build
dh_testdir
dh_testroot
dh_clean -k 
dh_installdirs

# Install the daemon to $(CURDIR)/debian/conntrackd
$(MAKE) DESTDIR=$(CURDIR)/debian/conntrackd install


# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs CHANGELOG
dh_installdirs
dh_installdocs
dh_installexamples --exclude=Makefile
dh_install
dh_installinit --noscripts
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install 


Re: help on t-p-u ? Re: gpr in etch is useless: hint 0.12deb ? upload in t-p-u ?

2007-01-16 Thread Maximilian Wilhelm
Am Dienstag, den 16 Januar hub A Mennucc folgendes in die Tasten:

Hi!

> I tried it ;
> I uploaded a package (using dput) ;
> the first line in debian/changelog was
> gpr (0.11deb.etch1) testing-proposed-update; urgency=low
   ~~~

The dist is called 'testing-proposed-updates'.

You are missing an 's' at the end :)

HTH
Ciao
Max
-- 
Follow the white penguin.


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



Re: RFS: liblinux-kernelsort-perl | Simple sorting library for kernel version strings

2006-12-17 Thread Maximilian Wilhelm
Am Sonntag, den 17 Dezember hub Daniel Baumann folgendes in die Tasten:

> Maximilian Wilhelm wrote:
> > http://debian.rfc2324.org/debian/dists/sid/liblinux-kernelsort-perl/binary-all/liblinux-kernelsort-perl_0.01-1.dsc

> >>   * remove the configure: target, it's useless

> > done.

> also remove configure from PHONY.

I thought I did so?
I updated the files on the server short after writing the last mail
again to cleanup the rules-file just a bit more.
Maybe you have been to fast :)

Fixed.

> >>   * hint: if you include dpatch.make, you can write much simpler rules,
> >> look at e.g. lwp for an example.

> > done.
> > Thank´s for the hint!

> welcome :)

> btw, you should do patch-stamp and not patch.

I´ve just copied the behavior from the lwp rules file.
Updated.

> >>   * remote the commended dh_* calls, as well as the ones which are not
> >> required for your package, e.g. dh_installexamples and some more.

> > done.

> you forgot to remove dh_installman

Oh, I though it was used for the manpage included in this package.
But it seems to work without it.
done.

> the rest is good now.

Fine :)

Thanks for your time!

Ciao
Max
-- 
Follow the white penguin.


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



Re: RFS: liblinux-kernelsort-perl | Simple sorting library for kernel version strings

2006-12-17 Thread Maximilian Wilhelm
Am Sonntag, den 17 Dezember hub Daniel Baumann folgendes in die Tasten:

Hi Daniel!
Thank´s for your reply!

> Maximilian Wilhelm wrote:
> > Package: deb http://debian.rfc2324.org/debian unstable 
> > liblinux-kernelsort-perl
 
> Please post at least the URI to the *.dsc file, I don't want to search
> for a package to find the sources.

Oh sorry, this was my first package I´m searching a sponsor for.

So the new URI is:
http://debian.rfc2324.org/debian/dists/sid/liblinux-kernelsort-perl/binary-all/liblinux-kernelsort-perl_0.01-1.dsc

> > Anyone who want?s to sponsor it?

> I can do that, but there needs to be some things fixed first:

>   * Remove the useless empty line at the end of changelog.

done.

>   * Merge -1 and -2, so that -1 will be the first revision uploaded to
> debian.

done.

>   * The line with the Homepage in control should have two leading
> spaces.

done.
Silly question, why?

>   * use the more common way to write debian/copyright, add the GPL blurb
> look at libextractor for an example.

done.

>   * don't use more than one empty line in rules as seperator.

done.

>   * remove the commented stuff which is not used.

done.

>   * the CFLAGS stuff is useless, same with the shlib stuff

done.

>   * remove the configure: target, it's useless

done.

>   * hint: if you include dpatch.make, you can write much simpler rules,
> look at e.g. lwp for an example.

done.
Thank´s for the hint!

>   * remote the commended dh_* calls, as well as the ones which are not
> required for your package, e.g. dh_installexamples and some more.

done.

>   * use ${perl:Depends} with dh_perl to handle the depends in control.

done.

>   * remove the:
> ## All lines beginning with `## DP:' are a description of the patch.
> lines from all dpatches.

It removed that line from all patches.
Do you want me to remove the patch information lines to remove, too?
(E.g. ## DP: This patches fixes all your problems)
I would like to keep them even though they are not neccessary for these
easy patches.

> rest seems to be good, i'll check again if you fixed above things, and
> if good, will sponsor it.

Please have a look at it now.
If anything isn´t good yet please let me know that I can fix it.

Ciao & Thanks
Max
-- 
Follow the white penguin.


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



RFS: liblinux-kernelsort-perl | Simple sorting library for kernel version strings

2006-12-07 Thread Maximilian Wilhelm
Hi!

IŽm searching for a sponsor for liblinux-kernelsort-perl (see #401940).

Name: liblinux-kernelsort-perl

Short: Perl module for sorting Linux Kernel version strings

License: GPL or Artistic License

Description:

 This is the CPAN Perl module Linux::KernelSort.
 .
 Linux::KernelSort is intended to sort a list of kernel versions into
 ascending order. It also provides the capability to compare two kernel
 versions and determine if one version is newer, older, or the same as
 the other version.

Homepage: http://search.cpan.org/~ogasawara/Linux-KernelSort-0.01/

Package: deb http://debian.rfc2324.org/debian unstable liblinux-kernelsort-perl


IŽm not the author of this library, but I consider it usefull for developers
and/or users of the LXR Linux Cross Referencer for which Jan-Benedict Glaw and
myself were/are writing a GIT backend.

The package is lintian free and builds with pbuilder.

Anyone who wantŽs to sponsor it?

Ciao
Max
-- 
Follow the white penguin.



Re: Preserving admin runlevel modifications on upgrade?

2005-02-07 Thread Maximilian Wilhelm
Am Montag, den  7. Februar hub Frank Küster folgendes in die Tasten:

> Christian Hammers <[EMAIL PROTECTED]> schrieb:

> > AFAIK the standard way of registering daemons is to run
> >  update-rc.d foobar defaults
> > in the postinst script. This sadly resets any changes the administrator
> > made on every upgrade.

> Only if the administrator didn't read the docs properly.

> > What is the recommended?

> read update-rc.d(8), section "INSTALLING INIT SCRIPT LINKS", second
> paragraph. 

OK, if I rearrange things no problem.
But if I remove runleve-links because I e.g. want to be able to run
apache/MySQL/Samba/openVPN/atftpd/dhcpd ... whatever on my laptop
but do not want them to be run whenever I boot the maschine, I have to
remove the links manually after every update of the services :-(

So it would be really cool to do something like Christian suggested :-)

Or did I miss any mechanism how to get this to work?

Ciao
Max
-- 
Follow the white penguin.