Re: Mailing list problems

2001-05-25 Thread Noel Koethe
On Fri, 25 May 2001, Brett Cundal wrote:

Hello,

> Whenever I post to this list, I get bounces from a user who is subscribed to
> the list... Shouldn't those be sent to the mailing list manager and not me?
> Anyone else experiencing this, or am I somehow configured wrong? Should I
> write my local congressman and complain?

I get these errors ( quota full ), too.
I asked [EMAIL PROTECTED] to remove this user but didn't get any
answer until now.:(

-- 
Noel



Re: Mailing list problems

2001-05-25 Thread Noel Koethe

On Fri, 25 May 2001, Brett Cundal wrote:

Hello,

> Whenever I post to this list, I get bounces from a user who is subscribed to
> the list... Shouldn't those be sent to the mailing list manager and not me?
> Anyone else experiencing this, or am I somehow configured wrong? Should I
> write my local congressman and complain?

I get these errors ( quota full ), too.
I asked [EMAIL PROTECTED] to remove this user but didn't get any
answer until now.:(

-- 
Noel


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




Re: problem with dpkg-buildpackage -rfakeroot / dh_movefiles: debian/tmp does not exist.

2001-05-25 Thread Noel Koethe
On Sat, 26 May 2001, Daniel Stone wrote:

Hello,

> > > This is actually similar to what I was experiencing.  If you want to use 
> > > debian/tmp you'll have to add -Pdebian/tmp to all dh_* functions that 
> > > creates 
> > > or install files
> > 
> > Hmm, I don't want it but dh_movefiles wants debian/tmp
> > I want to use the standard.
> > So this is a general problem or just my?
> 
> The new standard (with debhelper v3) is debian/, not
> debian/tmp. So, in this case, you'd use debian/drac everywhere, instead of
> debian/tmp.

Ahh, ok. So its a little problem with dh_movefiles which wants to move
from debian/tmp by default and/or ignores my "export DH_COMPAT=3" in
debian/rules.

> Hope this helps,

Yes. very much. I thought I made debian/rules wrong or made another error.

thx.

-- 
Noel



Re: problem with dpkg-buildpackage -rfakeroot / dh_movefiles:debian/tmp does not exist.

2001-05-25 Thread Noel Koethe

On Sat, 26 May 2001, Daniel Stone wrote:

Hello,

> > > This is actually similar to what I was experiencing.  If you want to use 
> > > debian/tmp you'll have to add -Pdebian/tmp to all dh_* functions that creates 
> > > or install files
> > 
> > Hmm, I don't want it but dh_movefiles wants debian/tmp
> > I want to use the standard.
> > So this is a general problem or just my?
> 
> The new standard (with debhelper v3) is debian/, not
> debian/tmp. So, in this case, you'd use debian/drac everywhere, instead of
> debian/tmp.

Ahh, ok. So its a little problem with dh_movefiles which wants to move
from debian/tmp by default and/or ignores my "export DH_COMPAT=3" in
debian/rules.

> Hope this helps,

Yes. very much. I thought I made debian/rules wrong or made another error.

thx.

-- 
Noel


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




Re: problem with dpkg-buildpackage -rfakeroot / dh_movefiles: debian/tmp does not exist.

2001-05-25 Thread Noel Koethe
On Fri, 25 May 2001, Alwyn Schoeman wrote:

Hello,

> This is actually similar to what I was experiencing.  If you want to use 
> debian/tmp you'll have to add -Pdebian/tmp to all dh_* functions that creates 
> or install files

Hmm, I don't want it but dh_movefiles wants debian/tmp
I want to use the standard.
So this is a general problem or just my?

> > install -d debian/drac
> > install -d debian/drac/usr/sbin debian/drac/usr/share/man/man3
> > # Add here commands to install the package into debian/drac.
> > /usr/bin/make install DESTDIR=`pwd`/debian/drac
> > make[1]: Entering directory `/home/noel/deb/drac-1.11'
> > dh_movefiles: debian/tmp does not exist.

thx.

BTW: Why quoted the whole mail?

-- 

Noel



problem with dpkg-buildpackage -rfakeroot / dh_movefiles: debian/tmp does not exist.

2001-05-25 Thread Noel Koethe
Hello,

this is my first package from scratch and I have a problem.:(
I read http://www.de.debian.org/doc/maint-guide/ but I have an error when
I run:
dpkg-buildpackage -rfakeroot

...
touch build-stamp
 fakeroot debian/rules binary
dh_testdir
dh_testroot
dh_clean -k
rm -f debian/substvars debian/postinst.debhelper
debian/postrm.debhelper debian/preinst.debhelper debian/prerm.debhelper
rm -rf debian/drac
find . -type f -a \( -name \#\*\# -o -name \*\~ -o -name DEADJOE
-o -name \*.orig -o -name \*.rej -o -name \*.bak -o -name .\*.orig -o
-name .\*.rej -o -name .SUMS -o -name TAGS -o -name core -o \( -path
\*/.deps/\* -a -name \*.P \) \) -exec rm -f {} \;
dh_installdirs
install -d debian/drac
install -d debian/drac/usr/sbin debian/drac/usr/share/man/man3
# Add here commands to install the package into debian/drac.
/usr/bin/make install DESTDIR=`pwd`/debian/drac
make[1]: Entering directory `/home/noel/deb/drac-1.11'
install -c -o bin -g bin -m 0755 rpc.dracd 
/home/noel/deb/drac-1.11/debian/drac/usr/sbin
make[1]: Leaving directory `/home/noel/deb/drac-1.11'
dh_movefiles
dh_movefiles: debian/tmp does not exist.
make: *** [install] Error 1

some lines from debian/rules:
export DH_COMPAT=3
...
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs

# Add here commands to install the package into debian/drac.
$(MAKE) install DESTDIR=`pwd`/debian/drac

dh_movefiles
...

If I switch the install line to DESTDIR=`pwd`/debian/tmp
but dh_installdirs always installs into debian/drac

Where is my error?

Thank you.

-- 
Noel



Re: problem with dpkg-buildpackage -rfakeroot / dh_movefiles:debian/tmp does not exist.

2001-05-25 Thread Noel Koethe

On Fri, 25 May 2001, Alwyn Schoeman wrote:

Hello,

> This is actually similar to what I was experiencing.  If you want to use 
> debian/tmp you'll have to add -Pdebian/tmp to all dh_* functions that creates 
> or install files

Hmm, I don't want it but dh_movefiles wants debian/tmp
I want to use the standard.
So this is a general problem or just my?

> > install -d debian/drac
> > install -d debian/drac/usr/sbin debian/drac/usr/share/man/man3
> > # Add here commands to install the package into debian/drac.
> > /usr/bin/make install DESTDIR=`pwd`/debian/drac
> > make[1]: Entering directory `/home/noel/deb/drac-1.11'
> > dh_movefiles: debian/tmp does not exist.

thx.

BTW: Why quoted the whole mail?

-- 

Noel


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




problem with dpkg-buildpackage -rfakeroot / dh_movefiles: debian/tmpdoes not exist.

2001-05-25 Thread Noel Koethe

Hello,

this is my first package from scratch and I have a problem.:(
I read http://www.de.debian.org/doc/maint-guide/ but I have an error when
I run:
dpkg-buildpackage -rfakeroot

...
touch build-stamp
 fakeroot debian/rules binary
dh_testdir
dh_testroot
dh_clean -k
rm -f debian/substvars debian/postinst.debhelper
debian/postrm.debhelper debian/preinst.debhelper debian/prerm.debhelper
rm -rf debian/drac
find . -type f -a \( -name \#\*\# -o -name \*\~ -o -name DEADJOE
-o -name \*.orig -o -name \*.rej -o -name \*.bak -o -name .\*.orig -o
-name .\*.rej -o -name .SUMS -o -name TAGS -o -name core -o \( -path
\*/.deps/\* -a -name \*.P \) \) -exec rm -f {} \;
dh_installdirs
install -d debian/drac
install -d debian/drac/usr/sbin debian/drac/usr/share/man/man3
# Add here commands to install the package into debian/drac.
/usr/bin/make install DESTDIR=`pwd`/debian/drac
make[1]: Entering directory `/home/noel/deb/drac-1.11'
install -c -o bin -g bin -m 0755 rpc.dracd 
/home/noel/deb/drac-1.11/debian/drac/usr/sbin
make[1]: Leaving directory `/home/noel/deb/drac-1.11'
dh_movefiles
dh_movefiles: debian/tmp does not exist.
make: *** [install] Error 1

some lines from debian/rules:
export DH_COMPAT=3
...
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs

# Add here commands to install the package into debian/drac.
$(MAKE) install DESTDIR=`pwd`/debian/drac

dh_movefiles
...

If I switch the install line to DESTDIR=`pwd`/debian/tmp
but dh_installdirs always installs into debian/drac

Where is my error?

Thank you.

-- 
Noel


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




question on a licence

2001-05-24 Thread Noel Koethe
Hello,

i want to package drac ( http://mail.cc.umanitoba.ca/drac/index.html ) a
pop-before-smtp tool.

But I don't know if the licence is free for the Debian Free Software
Guidelines ( http://www.de.debian.org/social_contract.html#guidelines ).

Here is it:
$ less COPYRIGHT 
/*
 * Copyright University of Manitoba 1998.
 * Written by J. Gary mills
 *
 * Permission is granted to anyone to use this software for any purpose on
 * any computer system, and to alter it and redistribute it freely,
subject
 * to the following restrictions:
 *
 * 1. The author and the University of Manitoba are not responsible 
 *for the consequences of use of this software, no matter how awful, 
 *even if they arise from flaws in it.
 *
 * 2. The origin of this software must not be misrepresented, either by
 *explicit claim or by omission.  Since few users ever read sources,
 *credits must appear in the documentation.
 *
 * 3. Altered versions must be plainly marked as such, and must not be
 *misrepresented as being the original software.  Since few users
 *ever read sources, credits must appear in the documentation.
 *
 * 4. This notice may not be removed or altered.
 */

Sorry, if this is the wrong list. Please tell me the right one.

Thank you.

-- 
Noel



question on a licence

2001-05-24 Thread Noel Koethe

Hello,

i want to package drac ( http://mail.cc.umanitoba.ca/drac/index.html ) a
pop-before-smtp tool.

But I don't know if the licence is free for the Debian Free Software
Guidelines ( http://www.de.debian.org/social_contract.html#guidelines ).

Here is it:
$ less COPYRIGHT 
/*
 * Copyright University of Manitoba 1998.
 * Written by J. Gary mills
 *
 * Permission is granted to anyone to use this software for any purpose on
 * any computer system, and to alter it and redistribute it freely,
subject
 * to the following restrictions:
 *
 * 1. The author and the University of Manitoba are not responsible 
 *for the consequences of use of this software, no matter how awful, 
 *even if they arise from flaws in it.
 *
 * 2. The origin of this software must not be misrepresented, either by
 *explicit claim or by omission.  Since few users ever read sources,
 *credits must appear in the documentation.
 *
 * 3. Altered versions must be plainly marked as such, and must not be
 *misrepresented as being the original software.  Since few users
 *ever read sources, credits must appear in the documentation.
 *
 * 4. This notice may not be removed or altered.
 */

Sorry, if this is the wrong list. Please tell me the right one.

Thank you.

-- 
Noel


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