Bug#602812: I can reproduce it

2011-01-11 Thread Mattias Nordstrom
Hi,

This seems to be an actual bug. On a freshly installed Squeeze box
normal PHP applications fail as forms don't work with array fields over
1000 elements. This also happens on my sid development box. I installed
an original source PHP 5.3.3 and there it doesn't happen == works.

My test code:

== BEGIN (filename: form-test.php) ==

html
body

?php

$count = 2000;

if (!empty($_REQUEST['test'])) {
print Count: .count($_REQUEST['test'])., should be $count.brbr\n;
print_r($_REQUEST);

}

?

form action=form-test.php method=post
?php


for ($i=0; $i$count; $i++) {
  echo input type='hidden' name='test[]' value='$i' /\n;
}

?

input type='submit' name='submit' value='submit'/form

/body
/html

== END ==


If this is an actual bug it is quite serious as it can easily cause data
corruption in databases among other things.

Regards,
Mattias Nordström



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#392927: Spfmilter dies unexpectedly with SIGABRT

2007-11-17 Thread Mattias Nordstrom
Ok, so just to be on the clear, an update that would include the three
line patch on main.c fixes the problem in question?

Regards,
 Mattias

Mike Markley wrote:
 I've been running the patches suggested in here since July on my backup
 MX without any evidence of problems. In fact, spfmilter's memory
 footprint has not budged since I began doing so.
 
 On the other hand, I'm replacing that server with a new one that just
 got a fresh etch install. spfmilter crashes pretty much daily.
 
 If the libspf maintainer is listening in, is there any chance we can get
 this bundled up for proposed-updates?
 




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



Bug#433108: O: libspf -- the ANSI C SPF reference library

2007-07-14 Thread Mattias Nordstrom
Package: wnpp
Version: 0.999-1.0.0-p3-3; reported 2007-07-14
Severity: normal

The package seems abandoned upstream. This package should probably be
removed from Debian at some point, when reverse dependancies are gone.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash


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



Bug#433110: O: cdrw-taper -- amanda taper replacement to support CD-RW or DVD+RW

2007-07-14 Thread Mattias Nordstrom
Package: wnpp
Version: 0.4-1; reported 2007-07-14
Severity: normal

I don't use the package in question, hence would like to give it up for
adoption. It's a low maintenance package, new upstream versions come very
seldom.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash


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



Bug#392558: libglib2.0-dev

2006-10-12 Thread Mattias Nordstrom
Hi,

Seems as if it (libqt4-dev) should also depend on libglib2.0-dev,
apparently due to the fact that Qt 4.2 now contains support for the
Glib eventloop.

At least one Qt4 app I've written needs libglib2.0-dev in the
build-depends now as libqt4-dev doesn't depend on it, and that app is a
pure Qt app, so the glib dependency comes from Qt.

Regards,

Mattias Nordstrom


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



Bug#376731: Reproducing this bug

2006-07-18 Thread Mattias Nordstrom
Hi Christopher,

Christopher Zimmermann wrote:
 Hi, here's a way to reproduce this bug:
 
 print EOF;
 Content-type: text/plain
 
 Hello, World!
 EOF

 __
 HTTP/1.0 200 OK
 Content-type: text/plain
 Hallo, Welt!
 ^^

A fix seems to be to add the Status header in the cgi, e.g. Status: 200
OK\n before Content-type. I've located the place that handles the Status
header in cgi-bozo.c but can't seem to find the problem. Matthew, any
thoughts?

Regards,

-- 
Mattias Nordstrom


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



Bug#368780: libspf: CVE-2006-1520: format string vulnerability

2006-05-25 Thread Mattias Nordstrom
Alec Berryman wrote:
 This issue is fixed in 1.0.0-p5.  The CVE indicates that sarge's version
 is vulnerable, but it does not include a sample exploit.  Note that this
 issue only occurs when debugging is enabled.

The sarge version (and all other versions) have debugging disabled
(compile time option). Therefore, the vulnerability explained in the CVE
is not an issue in the Debian package.

Regards,

-- 
Mattias Nordstrom


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



Bug#367235: libvmime0: Crash in libvmime.so.0 when parsing a simple

2006-05-14 Thread Mattias Nordstrom
Hi,

Have you been able to backtrace the segfault?

Running this code:

#include fstream
#include iostream
#include vmime/vmime.hpp

int main()
{

// Read data from f i l e
std::ifstream file;
file.open(hello.eml, std::ios::in | std::ios::binary);
vmime::utility::inputStreamAdapter is(file);
vmime::string data;
vmime::utility::outputStreamStringAdapter os(data);
vmime::utility::bufferedStreamCopy(is, os);

// Actually parse the message
vmime::refvmime::message msg = vmime::createvmime::message();
msg-parse(data);

vmime::refvmime::header hdr = msg-getHeader();
vmime::refvmime::body bdy = msg-getBody();

vmime::charset ch(vmime::charsets::UTF_8);

std::cout  Subject:  
hdr-Subject()-getValue().dynamicCastvmime::text()-getConvertedText(ch)
 std::endl;

}

=== EOF ===

with hello.eml:

Date: Thu, Oct 13 2005 15:22:46 +0200
From: Vincent [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Hello from VMime!


A simple message to test VMime

=== EOF ===

works for me, without a segfault.
Does the above code work for you?

Regards,

-- 
Mattias Nordstrom


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



Bug#367235: libvmime0: Crash in libvmime.so.0 when parsing a simple

2006-05-14 Thread Mattias Nordstrom
Florin Iucha wrote:
 Your code runs fine. Mine crashes, and the difference is... dumping the
 second header!

[SNIP]

 You can replace hdr-From() with hdr-To(), with no change in the observable
 behavior.

The problem is probably the fact that From() does not return the same
thing as a Subject(), which is only text.

To extract From, you need to do something like this:

std::cout  From:  
hdr-From()-getValue().dynamicCastvmime::mailbox()-getName().getConvertedText(ch)
   
hdr-From()-getValue().dynamicCastvmime::mailbox()-getEmail()  
 std::endl;

This should fix the segfault. If you take a look at the docs you'll see
that To and Cc also require special treatment, as they contain an array
of addresses.

Regards,

-- 
Mattias Nordstrom


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



Bug#363083: nvidia-glx: X server segfaults with nvidia driver

2006-04-17 Thread Mattias Nordstrom
Package: nvidia-glx
Version: 1.0.8756-4
Severity: grave
Justification: renders package unusable

After upgrading my kernel, X11 and the nvidia drivers, I can start X with the nv
driver but the nvidia driver causes X to segfault with the following backtrace:

(II) NVIDIA(0): Setting mode 1280x1024
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option dpms
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX

   *** If unresolved symbols were reported above, they might not
   *** be the reason for the server aborting.

Backtrace:
0: X(xf86SigHandler+0x95) [0x4772c5]
1: /lib/libc.so.6 [0x2b2bd5064e90]
2: X(xf86nameCompare+0x9c) [0x49b26c]
3: X(InitInput+0x11e) [0x45ecfe]
4: X(main+0x3c4) [0x430604]
5: /lib/libc.so.6(__libc_start_main+0xda) [0x2b2bd50514ca]
6: X(FontFileCompleteXLFD+0x9a) [0x42fbea]

Fatal server error:
Caught signal 11.  Server aborting

---

Any ideas what may be causing this?

-- Package-specific info:
uname -r:
Linux matta 2.6.16-1-em64t-p4-smp #2 SMP Sun Apr 16 02:26:13 UTC 2006 x86_64 
GNU/Linux


/proc/version:
Linux version 2.6.16-1-em64t-p4-smp (Debian 2.6.16-7) ([EMAIL PROTECTED]) (gcc 
version 4.0.3 (Debian 4.0.3-1)) #2 SMP Sun Apr 16 02:26:13 UTC 2006


/proc/driver/nvidia/version:


:01:00.0 VGA compatible controller: nVidia Corporation NV41GL [Quadro FX 
1400] (rev a2)


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-em64t-p4-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages nvidia-glx depends on:
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  nvidia-kernel-2.6.16 1.0.8756-4+2.6.16-7 NVIDIA binary kernel module for Li
ii  x11-common   1:7.0.12X Window System (X.Org) infrastruc

nvidia-glx recommends no packages.

-- no debconf information


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



Bug#353857: Uploaded the package

2006-04-16 Thread Mattias Nordstrom

Margarita Manterola wrote:

Letting a RC bug sit in the BTS unsolved because your usual sponsor is busy
with something else is really not a good thing.


Yup, will try to remember that the next time a sponsor doesn't seem to 
respond. Thanks for uploading it!



It is not lintian nor linda clean.  Both give errors about the library
soname.


The library soname is wrong as I'm still waiting for the final 1.0 
release which has been beta/rc for quite some time now.



Also, I noticed the lintian overrides about the CVS dir.  Have you talked
with upstream about this?


Yes, I mentioned it to upstream a while ago. I believe the previous 
maintainer did the same. No response.



You should always try to keep your packages lintian and linda clean.  The
warnings are there for a reason.


I always try to do just that and my other packages have zero warnings. 
The warnings for libspf are however intentional. I'll contact upstream 
and try to find out what the status is regarding the final release. If 
it seems to be in the distant future, something should probably be done 
regarding the soname.


Regards,

--
Mattias Nordstrom


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



Bug#348498: Fix

2006-04-14 Thread Mattias Nordstrom

Uwe Hermann wrote:

Thanks for the patches, will test and upload soonish...


What's the status for the upload?

--
Mattias Nordstrom


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



Bug#360292: Patch against upstream

2006-04-06 Thread Mattias Nordstrom

Hi,

It would be nice to get that patch against the upstream CVS (0.6) as 
well and forwarded to their tracker. It (CVS) contains several 
enhancements over 0.5.


Actually it would be nice to get the latest CVS snapshot uploaded to the 
Debian archive.


Regards,

--
Mattias Nordstrom


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



Bug#348498: Fix

2006-04-03 Thread Mattias Nordstrom

tags 348498 patch
thanks

Hi,

Running the am_edit script on Makefile.in under src fixes it. The 
attached patch changes the top-level Makefile.in to run it for every 
Makefile.in.


kitty also FTBFS due to an error in kitty_articleedit.cpp:117, the 
setSizePolicy() function declaration seems to have changed. The second 
attached patch fixes that.


I will do an NMU (as part of my NM process) with these patches very soon
unless you respond to this bug.

Regards,

--
Mattias Nordstrom
--- kitty-0.9.2/Makefile.in 2006-04-03 20:40:49.0 +0300
+++ kitty-0.9.2.new/Makefile.in 2006-04-03 20:41:35.0 +0300
@@ -343,7 +343,7 @@
echo ' cd $(top_srcdir)  $(AUTOMAKE) --gnu  Makefile'; \
cd $(top_srcdir)  \
  $(AUTOMAKE) --gnu  Makefile
-   cd $(top_srcdir)  perl admin/am_edit Makefile.in
+   cd $(top_srcdir)  perl admin/am_edit
 .PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
--- kitty-0.9.2/src/kitty_articleedit.cpp   2005-10-24 22:28:39.0 
+0300
+++ kitty-0.9.2.new/src/kitty_articleedit.cpp   2006-04-03 18:37:28.0 
+0300
@@ -114,7 +114,7 @@
videolabel-setMinimumHeight(150);
videolabel-setMinimumWidth(200);
videolabel-setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
-   videolabel-setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Fixed);
+   videolabel-setSizePolicy(QSizePolicy(QSizePolicy::Minimum, 
QSizePolicy::Fixed));
videolabel-setBackgroundColor(Qt::darkGray);
if (myfeed.items[myarticle].dlstatus==downloaded) {
videourl=locateLocal(appdata, 
myfeed.key+-data/+myfeed.items[myarticle].key);


Bug#355597: Fix and NMU

2006-03-15 Thread Mattias Nordstrom
tags 355597 patch
thanks

Hi,

The attached patch fixes the build dependency problem.
I will do an NMU (as part of my NM process) with this patch very soon
unless you respond to this bug.

Regards,

-- 
Mattias Nordstrom

--- wmail-2.0.orig/debian/control	2006-03-15 12:32:01.0 +0200
+++ wmail-2.0/debian/control	2006-03-14 15:04:30.0 +0200
@@ -2,7 +2,7 @@
 Section: x11 
 Priority: optional
 Maintainer: Julien Danjou [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), libdockapp-dev
+Build-Depends: debhelper (= 4.0.0), libdockapp-dev, libx11-dev, libxt-dev
 Standards-Version: 3.6.1
 
 Package: wmail


Bug#355219: 'man bozohttpd' typo: a particularly file type

2006-03-15 Thread Mattias Nordstrom
A Costa wrote:
 
 Found a typo in '/usr/share/man/man8/bozohttpd.8.gz', see attached '.diff'.

Thanks, I'll include it in the next version.

-- 
Mattias Nordstrom


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



Bug#355221: Docs on whether 'bozohttpd' can work with 'apt-cacher' or not.

2006-03-15 Thread Mattias Nordstrom
A. Costa wrote:
 Package: bozohttpd
 Version: 20050410-2
 Severity: wishlist
 
 I've been trying (and failing) to set up the 'apt-cacher' package** to
 work  under 'bozohttpd'.  It'd help if bozo's docs had something about
 whether it was possible or not***.  To avoid bloat I'd rather avoid
 'apache'.

I'd say it's apt-cacher's responsibility to say with which web servers
it's compatible.

 (**some texts claim 'apt-cacher' needs 'apache', but it's not presently
 required in its .deb header -- maybe this bug should be moved or cloned
 to that package.)

From what I've understood, apt-cacher *can* be used with Apache, but
that's not necessary.

 Background:
 
 If everything goes well, the path /apt-cacher on the web server should
 be accessible from any browser.
 
 - from 'Installing apt-cacher'
 http://taprobane.org/apt-cacher.php
 
 Whereas bozo's man page says:
 
 ...all CGI URL's must begin with /cgi-bin/.
 
 The URL formats seem to be incompatible.  

According to the Debian Policy:

Cgi-bin executable files are installed in the directory
/usr/lib/cgi-bin/cgi-bin-name and should be referred to as
http://localhost/cgi-bin/cgi-bin-name

If apt-cacher wants to support all Debian cgi enabled web servers, it
should follow those rules. Now it explicitly supports Apache within its
package.

This is an apt-cacher wishlist bug, I will move it over to that project.

-- 
Mattias Nordstrom


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



Bug#340174: libcwd0: FTBFS with g++-4.0

2006-03-13 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

This problem seems to have been fixed upstream.
Updating the package to the latest upstream version should fix it.

Regards,

- --
Mattias

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFEFezIwKTxHeBrP5cRAq2RAJ9zRvs397eHdnako6deHFzGirCI8ACfTcQr
Zwv6Z76K9GtKqdjjkKM7J64=
=bFee
-END PGP SIGNATURE-


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



Bug#353857: libspf: FTBFS with current make

2006-02-24 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Daniel Schepler wrote:
 Package: libspf
 Version: 0.999-1.0.0-p3-2
 Severity: serious
 
 From my pbuilder build log:
 
 ...
  debian/rules build
 dh_testdir
 CFLAGS=-Wall -g -O2 ./configure \
   --host=i486-linux-gnu \
 --build=i486-linux-gnu \
 --prefix=/usr \
 --mandir=\${prefix}/share/man \
 --infodir=\${prefix}/share/info \
 #   --enable-rfc-recursion \
 #   --enable-spfmilter \
 --enable-pthreads \
 --enable-full-optimizations
 ...
 /bin/sh: line 9: --enable-pthreads: command not found
 make: *** [configure-stamp] Error 127
 
 Removing the two lines which were commented out (or moving them after the 
 others) fixes the build for me.

This has now been fixed, waiting for my sponsor to upload the package.

Thanks for noticing it!

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFD/v3GwKTxHeBrP5cRAtvWAKCrveIVBiC+IkErPIChUK2bsbl8HACgqULA
seKP6O86+0yvlw3Ih5nwIbg=
=kpKT
-END PGP SIGNATURE-


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



Bug#341388: ITP: libvmime -- a C++ mail library

2005-11-30 Thread Mattias Nordstrom
Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: libvmime
  Version : 0.8.0
  Upstream Author : Vincent Richard [EMAIL PROTECTED]
* URL : http://www.vmime.org/
* License : GPL
  Description : a C++ mail library

 VMime is a powerful C++ class library for parsing, generating, or editing
 Internet RFC-[2]822 and MIME messages. VMime is designed to provide a fast
 and an easy way to manipulate Internet mail messages.
 .
 The recent releases of VMime also include support for using messaging
 protocols (POP3, IMAP, SMTP and maildir) with a lot of features supported:
 listing folders, downloading and adding messages to folders, extracting parts
 from message, getting and setting message flags, and a lot more.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)


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



Bug#340489: ITP: libming -- Library to generate SWF (Flash) Files

2005-11-23 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: libming
  Version : 0.3beta1+cvs20050827
  Upstream Author : Dave [EMAIL PROTECTED]
* URL : http://ming.sf.net/
* License : LGPL
  Description : Library to generate SWF (Flash) Files

 Ming is an SWF (Flash) file format output library.
 It is written in C, with wrappers for C++, Perl, Python,
 PHP and experimental support for Ruby and Java.

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDhMicwKTxHeBrP5cRAi0yAJ90XuQr0jS9F0mVBjA9eSOk+5XFDQCeOpe3
BmvCNp7yNu6LFGgWkoCDlYI=
=bxcu
-END PGP SIGNATURE-


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



Bug#295760: [Ming-dev] Ming licensing issues

2005-11-23 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stuart Anderson wrote:
 On Tue, 22 Nov 2005, Alejandro Ríos P. wrote:
 
 Hi.

 Continuing the thread on [1], and worried about other programs that
 depend on ming and haven't been able to enter the Debian
 distribution[2], I send this small license patch for the last cvs
 revision of the php_ext.
 
 
 I have a need for supported Debian packages for Ming, so I'm willing to
 work w/ Mattias on these.
 
 I was about to ask about resyncing the php_ext directory w/ a more
 recent copy of the files from the php package (and I have actually done
 that in the packages I have built). I am in favor of dropping the -dev
 and -streams variants unless someone makes a case for why they are still
 needed.
 
 Does the PHP license permit us to relicense the code in the manner
 suggested by the patch? It seems like a violation of term 1 to remove
 the PHP Copyright notice like this.
 
 On the practicle side, PHP shouldn't be an issue for Debian packages as
 the regular PHP package can provide this, once ming has gone back into
 the pool. This also has the advantages of letting php_ming follow the
 PHP package versions, instead of the libming versions.
 
 Would anyone object to adding a debian directory at the top of the tree
 to facilitate building packages? We could also add a spec file if
 someone would provide it.
 
 
  Stuart
 
 Stuart R. Anderson   [EMAIL PROTECTED]
 Network  Software Engineering   http://www.netsweng.com/
 1024D/37A79149:  0791 D3B8 9A4C 2CDC A31F
   BD03 0A62 E534 37A7 9149


The most important thing right now is probably to get the actual ming
library accepted to the archive. I suggest we just leave the parts out
that have licensing issues (currently java_ext and php_ext). They can
easily be brought back at a later stage when things have been sorted
out, the php wrapper perhaps living under php itself as Stuart mentioned.

If there are no objections to this I'll reupload libming within a few
days, hopefully being accepted by the ftpmasters.

Regards,

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDhM35wKTxHeBrP5cRApdzAKC3vA5g6DaEPUPPYD98HUjwrC0+nQCeI+5r
267AQmpW93M3f70GVHIN+0Y=
=B72n
-END PGP SIGNATURE-


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



Bug#295760: Any plan to upload libming

2005-10-05 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Aníbal Monsalve Salazar wrote:
 On Wed, Oct 05, 2005 at 09:21:11AM +0100, Free Ekanayaka wrote:
 
Hi Klaus,

libming is needed  to package ktoon (ITP  #295760), do you any plan to
upload your unofficial packages at:

http://klaus.geekserver.net/debian/binary/

?

Cheers,
 
 
 Hello,
 
 Mattias Nordstrom has a libming debian package already. It was
 uploaded a month ago and was rejected by a ftpmaster. He may
 have some news from upstream about the issues raised by the
 ftpmaster.
 
 Cheers,
 
 Aníbal Monsalve Salazar
 --

Hi,

libming doesn't use full licenses which makes it incompatible with
Debian. I've contacted upstream about it and they supported the idea of
using full licenses but have not acted on it yet.

Regards,

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDQ55OwKTxHeBrP5cRAkQQAJ4+CiR2tQKRqcDpR31cx4U3FjqSvgCdEHbj
CIK0Bj/wOG20W5U8K/ZCDhk=
=FF1V
-END PGP SIGNATURE-


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



Bug#295760: Any plan to upload libming

2005-10-05 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Free Ekanayaka wrote:
 |--== Mattias Nordstrom writes:
 
   MN Hi,
 
   MN libming doesn't use full licenses which makes it incompatible with
   MN Debian. I've contacted upstream about it and they supported the idea of
   MN using full licenses but have not acted on it yet.
 
 Thanks for the info. When did you contact theme exactly? Is it time to
 ping them?
 
 Cheers,
 
 Free

This was exactly one month ago. I could try asking them again, maybe
give them a push in the right direction. ;)

- --
Mattias
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDQ7adwKTxHeBrP5cRAuVxAKCF071wvC7yPKUEeMjVPE6knsmEfwCeLxYZ
oBBkHLa77em5me12UESAfjU=
=de59
-END PGP SIGNATURE-


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



Bug#324881: segfault

2005-08-25 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

This segfault is due to the fact that Stop want's to kill the extrnal
player but it hasn't been started yet as nothing has been downloaded
which can be streamed. Will get fixed in the next upstream version
together with many other usability issues.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDDWwjwKTxHeBrP5cRAvVDAKC9l6pqqdr7Eha8TYNaYCLqdK0pAwCfT0AE
E+R0ya3T+aHpSkADhMkqdaY=
=gAy6
-END PGP SIGNATURE-


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



Bug#324822: nzb description

2005-08-24 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I will write a complete description of both the application and the nzb
file format shortly. The nzb format should probably get a dedicated manpage.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDDDZZwKTxHeBrP5cRAp1gAJ0Y4xBYTbf7ipLvYeGbaUzjdNOuMACgiS0k
YtgxGyuC0ESUqLq/kJ+gfWA=
=SI3l
-END PGP SIGNATURE-


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



Bug#319160: cdrw-taper: taperlib.pm lets taper get Connection reset by peer

2005-07-21 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Christian Leson wrote:
 I believe the problem is that the default for tpchanger is none instead
 of undefined. Try commenting out line 60 in taperlib.pm. This should
 result in a line that looks like:

 #$tpchanger = none;

 Please let me know if that fixes the problem.

 Hello Mattias,
 
 yes you've been right, that fixes the problem. Dumps are running fine
 now, as expected.
 Thanks very much.

Great.

I will update the package and a new version will be available shortly on
sid.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFC30S9wKTxHeBrP5cRAtgzAKCBL8xOl/xhMAKpkSDmVwC6lq2CfwCfYfRJ
/GQ/T3t5Ju1f8zS/MshWSug=
=sNse
-END PGP SIGNATURE-


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



Bug#319160: cdrw-taper: taperlib.pm lets taper get Connection reset by peer

2005-07-20 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Christian Leson wrote:
 
 After a fresh installation of Debian cdrw-taper my backup won't finish 
 anymore.
 I always get an error saying Connection reset by peer.
 After the dumper instances are started my log amdump says:
 
 taper: tape changer failed with exit status -1 at 
 /usr/lib/amanda//taperlib.pm line 112.
 driver: reading result from taper: Connection reset by peer
 
 After replacing the hacked taper-skript with taper.orig everything works as 
 expected (of course without cdrw-taper support).
 

I believe the problem is that the default for tpchanger is none instead
of undefined. Try commenting out line 60 in taperlib.pm. This should
result in a line that looks like:

#$tpchanger = none;

Please let me know if that fixes the problem.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFC3n0pwKTxHeBrP5cRArf0AKCco0JMAJBBG0ENIVE8Ehza0PqU5gCgkzmP
jmtdu5LlmiEM3PY4KGyhEp0=
=Y8cH
-END PGP SIGNATURE-


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



Bug#315357: dbench: FTBFS (amd64/gcc-4.0): incompatible types in assignment

2005-06-22 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Andreas Jochens wrote:
 Package: dbench
 Version: 3.03-1
 Severity: normal
 Tags: patch
 
 When building 'dbench' on amd64/unstable with gcc-4.0,
 I get the following error:
 
 x86_64-linux-gcc -Wall -g -O2 -Wall -W -I. -DVERSION=\3.03\ 
 -DDATADIR=\/usr/share/dbench\   -c -o snprintf.o snprintf.c
 snprintf.c: In function 'dopr':
 snprintf.c:175: error: incompatible types in assignment
 make[1]: *** [snprintf.o] Error 1
 make[1]: Leaving directory `/dbench-3.03'
 make: *** [build-stamp] Error 2
 
 With the attached patch 'dbench' can be compiled
 on amd64 using gcc-4.0.
 
 Regards
 Andreas Jochens

Thanks for the patch!

This error also exists on s390 and powerpc. I made a new package that
incorporates the patch and should fix this problem.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCuRFxwKTxHeBrP5cRAl8gAJ9hRRwIJuJL1uVZ1c5p4TdKedpqfQCgnxwc
WnGsccXAzzgvdLtoZJcLCH0=
=uZ+C
-END PGP SIGNATURE-


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



Bug#312868: ITA/RFS/NMU requested for dbench

2005-06-18 Thread Mattias Nordstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all,

I've adopted the dbench package and created a new version which includes
a new upstream version (3.03) and fixes all open bugs.

The new package can be found under
http://people.realnode.com/~mnordstr/package/

I'm looking for a sponsor as I'm not a DD but it would be great if
someone could take the time to NMU it as this package doesn't seem to
have much upstream activity anyway.

Thanks.

- --
Mattias Nordstrom
CTO
Realnode Oy

[EMAIL PROTECTED]
www.realnode.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCtI0IwKTxHeBrP5cRArLJAJ9qRrx5leVQyz9iADQH0WFP8hgj2ACffjw7
I4XNqndNgiarYeYSXW2po1U=
=A2pm
-END PGP SIGNATURE-


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



Bug#310708: ITP: nzbgui -- A graphical binary news grabber for nzb files

2005-05-25 Thread Mattias Nordstrom
Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: nzbgui
  Version : 0.0.20050522
  Upstream Author : Mattias Nordstrom [EMAIL PROTECTED]
* URL : http://nzb.sf.net/
* License : GPL
  Description : A graphical binary news grabber for nzb files

  nzbgui is the Qt based graphical nzb client.

  nzbgui is an easy to use nzb client and also provides a stream capability to
  your favourite media player. No need to download media files to play them.
  With enough bandwidth DVD quality videos can be streamed directly.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#304654: ITP: emilda-print -- Client-side print application for Emilda

2005-04-14 Thread Mattias Nordstrom
Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: emilda-print
  Version : 0.0.20050414
  Upstream Author : Mattias Nordstrom [EMAIL PROTECTED]
* URL : http://www.emilda.org/
* License : GPL
  Description : Client-side print application for Emilda

  emilda-print is a standalone client-side application that handles the
  EPD data Emilda sends for label and receipt printouts.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#302419: ITP: nzb -- A binary news grabber using nzb files

2005-03-31 Thread Mattias Nordstrom
Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: nzb
  Version : 0.0.20050328
  Upstream Author : Mattias Nordstrom [EMAIL PROTECTED]
* URL : http://nzb.sf.net/
* License : GPL
  Description : A binary news grabber using nzb files

  nzb is a binary news grabber using libnzb to parse nzb files,
  grab the content over NNTP and decode the yEnc/uuencode
  encoded files.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#302432: ITP: libnzb -- A library for binary news grabbing using nzb files

2005-03-31 Thread Mattias Nordstrom
Package: wnpp
Severity: wishlist
Owner: Mattias Nordstrom [EMAIL PROTECTED]


* Package name: libnzb
  Version : 0.0.20050328
  Upstream Author : Mattias Nordstrom [EMAIL PROTECTED]
* URL : http://nzb.sf.net/
* License : GPL
  Description : A library for binary news grabbing using nzb files

  libnzb is a library that provides functions to parse nzb files, grab the
  content over NNTP and decode the yEnc/uuencode encoded file.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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