Bug#1069072: new upstream (0.36)

2024-04-16 Thread Martijn van Brummelen

Hi Daniel,

On 2024-04-15 22:03, Daniel Baumann wrote:

Package: nwipe

Hi,

it would be nice if you could upload the current nwipe release to 
Debian.


Thanks just uploaded a new version(0.36)

Kind regards,
Martijn van Brummelen



Bug#1034262: buffer overflow on peculiar drive

2023-04-13 Thread Martijn van Brummelen

Hi Antoine,

Thank for this patch , will upload/fix it soon after I checked if the 
length is still sufficient or not.


Kind regards,
Martijn van Brummelen
On 2023-04-11 22:20, Antoine Beaupre wrote:

Package: nwipe
Version: 0.34-1+b1
Severity: normal
Tags: patch

I've used nwipe probably dozens of times on various times, and it
works fairly reliably. So I was surprised to find out it chokes on
this tiny little SSD drive here:

anarcat@angela:~$ sudo nwipe /dev/sdc
*** buffer overflow detected ***: terminated
Aborted
anarcat@angela:~[SIGABRT]$

Well isn't this odd! This is a fiarly normal drive:

anarcat@angela:~$ sudo smartctl -i -qnoserial /dev/sdc
smartctl 7.3 2022-02-28 r5338 [x86_64-linux-6.1.0-7-amd64] (local 
build)
Copyright (C) 2002-22, Bruce Allen, Christian Franke, 
www.smartmontools.org


=== START OF INFORMATION SECTION ===
Model Family: Crucial/Micron RealSSD m4/C400/P400
Device Model: M4-CT512M4SSD1
Firmware Version: 040H
User Capacity:512 110 190 592 bytes [512 GB]
Sector Size:  512 bytes logical/physical
Rotation Rate:Solid State Device
Form Factor:  2.5 inches
TRIM Command: Available, deterministic
Device is:In smartctl database 7.3/5319
ATA Version is:   ACS-2, ATA8-ACS T13/1699-D revision 6
SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s)
Local Time is:Tue Apr 11 15:42:51 2023 EDT
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

And speaking of smartctl, I suspect it's where nwipe chokes, because
as it turns out it crashes right after calling it, according to
strace:


anarcat@angela:~$ sudo strace -s8192 nwipe /dev/sdc
execve("/usr/sbin/nwipe", ["nwipe", "/dev/sdc"], 0x7ffda312d030 /* 15
vars */) = 0
brk(NULL)   = 0x55afbf726000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0x7fbb351ae000
[...]
read(3, "smartctl 7.3 2022-02-28 r5338 [x86_64-linux-6.1.0-7-amd64]
(local build)\nCopyright (C) 2002-22, Bruce Allen, Christian Franke,
www.smartmontools.org\n\n", 4096) = 150
read(3, "=== START OF INFORMATION SECTION ===\nModel Family:
Crucial/Micron RealSSD m4/C400/P400\nDevice Model:
M4-CT512M4SSD1\nSerial Number:REDACTED\nLU WWN Device Id: 5 00a075
109210beb\nFirmware Version: 040H\n", 4096) = 223
read(3, "User Capacity:
512\342\200\257110\342\200\257190\342\200\257592 bytes [512
GB]\nSector Size:  512 bytes logical/physical\nRotation Rate:
Solid State Device\n", 4096) = 137
read(3, "Form Factor:  2.5 inches\nTRIM Command: Available,
deterministic\nDevice is:In smartctl database 7.3/5319\nATA
Version is:   ACS-2, ATA8-ACS T13/1699-D revision 6\nSATA Version is:
SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s)\nLocal Time is:Tue Apr 11
15:44:34 2023 EDT\nSMART support is: Available - device has SMART
capability.\nSMART support is: Enabled\n\n", 4096) = 366
read(3, "", 4096)   = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=72484,
si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
close(3)= 0
wait4(72484, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 72484
writev(2, [{iov_base="*** ", iov_len=4}, {iov_base="buffer overflow
detected", iov_len=24}, {iov_base=" ***: terminated\n", iov_len=17}],
3*** buffer overflow detected ***: terminated
) = 45
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0x7fbb351ad000
rt_sigprocmask(SIG_UNBLOCK, [ABRT], NULL, 8) = 0
gettid()= 72472
getpid()= 72472
tgkill(72472, 72472, SIGABRT)   = 0
--- SIGABRT {si_signo=SIGABRT, si_code=SI_TKILL, si_pid=72472, 
si_uid=0} ---

+++ killed by SIGABRT +++
Aborted

Of you look at the spaces in the "User Capacity" field more closely,
you'll notice it's actually a little odd. Those are not mere spaces in
those thousands separators, they are actually `U+202F NARROW NO-BREAK
SPACE` (represented by \342\200\257 in strace), according to
unicode(1). That, in itself, shouldn't be a problem: my terminal,
foot(1), is handling that fine, for example. But I bet it's the cause
of the overflow here.

Looking at gdb:

(gdb) bt
#0  __pthread_kill_implementation (threadid=,
signo=signo@entry=6,
no_tid=no_tid@entry=0) at ./nptl/pthread_kill.c:44
#1  0x77d8dd2f in __pthread_kill_internal (signo=6,
threadid=) at ./nptl/pthread_kill.c:78
#2  0x77d3eef2 in __GI_raise (sig=sig@entry=6)
at ../sysdeps/posix/raise.c:26
#3  0x77d29472 in __GI_abort () at ./stdlib/abort.c:79
#4  0x77d822d0 in __libc_message (action=action@entry=do_abort,
fmt=fmt@entry=0x77e9c210 "*** %s ***: terminated\n")
at ../sysdeps/posix/libc_fatal.c:155
#5  0x77e1af32 in __GI___fortify_fail (
msg=msg@entry=0x77e9c1b6 "buffer ov

Bug#991997: new upstream (0.31)

2021-08-10 Thread Martijn van Brummelen

Hi,
On 2021-08-08 10:32, Daniel Baumann wrote:

Package: nwipe

Hi Martijn,

thank you so much for nwipe.

Given the isaac issue, it would be nice if you could upload nwipe 0.31
anytime soon to Debian (experimental) and consider a bugfix for 
bullseye.


Thanks!
Will try too upload a new version soon and consider what else would be 
possible.


Kind regards,
Martijn



Bug#943379: Default to PRNG method?

2019-10-23 Thread Martijn van Brummelen

Hi Trent,
On 2019-10-24 06:46, Trent W. Buck wrote:

Package: nwipe
Version: 0.26-1
Severity: wishlist

As I understand it:

  1. the default nwipe method is DoD Short.

  2. the DoD Short method is specifically designed for the physical
structure of MFM drives, and
 doesn't really work on other kinds of drives.

  3. they stopped making MFM drives in, like, 1990.

  4. the PRNG method doesn't care about the physical structure of your
 drives, so unless you work for the US government, you should just
 always use PRNG.

If all of those things are true,
can we please change the nwipe default method to PRNG?



Sounds like a good idea for one of the next releases. Thanks!


The idea is to protect people who just run nwipe and
ASSUME the defaults are reasonably sensible.


Kind regards,
Martijn van Brummelen



Bug#915432: dhcpd-pools: diff for NMU version 2.29-1.1

2019-01-08 Thread Martijn van Brummelen

Hi Adrian,
On 2019-01-01 15:10, Adrian Bunk wrote:

Control: tags 915432 + patch
Control: tags 915432 + pending

Dear maintainer,

I've prepared an NMU for dhcpd-pools (versioned as 2.29-1.1) and
uploaded it to DELAYED/14. Please feel free to tell me if I should
cancel it.

Thanks! Fine with me. I will contact upstream.

Kind regards,
Martijn van Brummelen



Bug#851309: ITP: rtl-433 -- Application using librtlsdr to decode information from a wireless sensor

2017-01-13 Thread Martijn van Brummelen
Package: wnpp
Severity: wishlist
Owner: Martijn van Brummelen <m...@debian.org>

* Package name: rtl-433
  Version : 0.1
  Upstream Author : Benjamin Larsson
* URL : https://github.com/merbanan/rtl_433
* License : GPL-2.0
  Programming Lang: C
  Description : Application using librtlsdr to decode information from
a wireless sensor



Bug#835208: rsync

2016-09-14 Thread Martijn van Brummelen
Hi,

Please see if you can reproduce this error while using rsync instead of
grsync. I am curious if this brings up a error aswell.
This way we can see if it is a error with the file(s) perhaps permissions
or a bug in grsync.

Kind regards,
Martijn van Brummelen



Bug#835208: grsync errors out on files in .mozilla/firefox/jtl.default/saved-telemetry-pings

2016-08-24 Thread Martijn van Brummelen
Hi John,
> Hi Martijn:
>
> According to my past notes the error that showed up was #23 "some files
> could not be transferred". That was how I nailed it down to the files in
> folders "saved-telemetry-pings" in Iceweasel-FireFoxESR and IceDove, and
> the VirtualBox Snapshot folders.
>
> FYI - the full path to these folders that spawned error 23:
>
> /home/jtl/.icedove/jtl.default/saved-telemetry-pings
>
> /home/jtl/.mozilla/firefox/jtl.default/saved-telemetry-pings
>
> /home/jtl/VirtualBox VMs/Windows XP/Snapshots
>
> Note I sync the full  /home/jtl  folder to a USB Hard Disk
>
> Did that help?
>

Yeah a bit thanks for this extra information.
I had contact with upstream who will investigate after his holiday.

Will keep this ticket updated. Maybe upstream will contact you as well.

Kind regards,
Martijn van Brummelen



Bug#835208: grsync errors out on files in .mozilla/firefox/jtl.default/saved-telemetry-pings

2016-08-24 Thread Martijn van Brummelen
Hi,
> Package: grsync
> Version: 1.2.5-1
> Severity: important
>
> Dear Maintainer,
>
> * What led up to the situation?
> Iceweasel became FireFox ESR and added saved-telemetry-pings
>

Grsync stops working after switching to Firefox ESR?
> * What exactly did you do (or not do)?
> Disable saved-telemetry-pings in FireFox AND Icedove, and deleted any/all
> files
> in saved-telemetry-pings
>

If "saved-telemetry-pings" is disable you are able to use grsync again? If
not on which or what file does it give a error/hangs? if possible add a
example.
> * What was the outcome of this action?
> Grsyn then works
>
> However if Virtual Box is installed and there are VB-OS snapshots ...
> grsync
> somtimes errors out on the snapshot file.
>
I need some more information about when it errors? If possible provide the
error.

Kind regards,
Martijn van Brummelen



Bug#817198: upstream contact

2016-08-19 Thread Martijn van Brummelen
I had contact with the upstream maintainer who said he will triage this bug.
When the new version is released I will test and package.

Kind regards,
Martijn van Brummelen



Bug#631229: Uploaded

2016-08-02 Thread Martijn van Brummelen
I uploaded it 3 days ago see [0].
Please be patient.

Kind regards,
Martijn van Brummelen
[0] https://ftp-master.debian.org/new.html



Bug#817198: libpam-script: Segv crash with NULL pointer in pam_sm_chauthtok with bad input

2016-04-01 Thread Martijn van Brummelen
Hi Dave,
> Package: libpam-script
> Version: 1.1.7-1
> Severity: important
>
> Dear Maintainer,
>
> When passed an incorrect password on stdin, the passwd program crashes
> in libpam-script when libpam-script is not configured (that is,
> installed, but no configuration has been done).
Thank you for reporting this bug, I will do some further investigation and
keep you informed.

Kind regards,
Martijn van Brummelen



Bug#806914: ITP: dhcpstarv -- DHCP starvation utility

2015-12-02 Thread Martijn van Brummelen
Package: wnpp
Owner: Martijn van Brummelen <mart...@brumit.nl>
Severity: wishlist

* Package name: dhcpstarv
  Version : 0.2.1
  Upstream Author : Dmitry Davletbaev <ddo...@gmail.com>
* URL : http://dhcpstarv.sourceforge.net/
* License : (GPL3)
  Programming Lang: (C)
  Description : DHCP starvation utility

 Dhcpstarv is tool that implements DHCP starvation attack.
 It requests DHCP leases on a specified interface,
 save them and renew on regular basis.



signature.asc
Description: OpenPGP digital signature


Bug#631229: ITP dhcpd-pools

2015-10-13 Thread Martijn van Brummelen
Hi,

I am interested in maintaining dhcpd-pools.
Give me some time to get the package in shape.

Kind regards,
Martijn van Brummelen



signature.asc
Description: OpenPGP digital signature


Bug#801327: ctdb: Man page for ctdb_diagnostics

2015-10-09 Thread Martijn van Brummelen


I had contact with upstream see [0] and I created this patch.

Kind regards,
Martijn van Brummelen
[0] https://lists.samba.org/archive/samba-technical/2015-October/109873.html
From 2ab73d913000c4d4d53893c03bfe6698253efff8 Mon Sep 17 00:00:00 2001
From: martijn van brummelen <mart...@brumit.nl>
Date: Fri, 9 Oct 2015 15:59:50 +0200
Subject: [PATCH 1/1] Add ctdb_diagnostics man page

Signed-off-by: martijn van brummelen <mart...@brumit.nl>
---
 doc/Makefile   |   1 +
 doc/ctdb_diagnostics.1.xml | 122 +
 2 files changed, 123 insertions(+)
 create mode 100644 doc/ctdb_diagnostics.1.xml

diff --git a/doc/Makefile b/doc/Makefile
index 34303a5..814d0f9 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,4 +1,5 @@
 DOCS = ctdb.1 ctdb.1.html \
+	ctdb_diagnostics.1 ctdb_diagnostics.1.html \
 	ctdbd.1 ctdbd.1.html \
 	ctdbd_wrapper.1 ctdbd_wrapper.1.html \
 	onnode.1 onnode.1.html \
diff --git a/doc/ctdb_diagnostics.1.xml b/doc/ctdb_diagnostics.1.xml
new file mode 100644
index 000..7fcaff6
--- /dev/null
+++ b/doc/ctdb_diagnostics.1.xml
@@ -0,0 +1,122 @@
+
+http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd;>
+
+
+  
+ctdb_diagnostics
+1
+ctdb
+CTDB - clustered TDB database
+  
+
+  
+ctdb_diagnostics
+test CTDB/Samba installation
+  
+
+  
+
+  ctdb_diagnostics
+  OPTIONS
+	  ...
+
+  
+
+  
+DESCRIPTION
+
+  A script to test the basic setup of a CTDB/Samba install
+
+  
+
+  
+OPTIONS
+
+
+
+  
+	-n nodes
+	
+	
+	  Comma separated list of nodes to operate on
+	
+	
+  
+
+  
+	-c
+
+
+	  Ignore comment lines (starting with '#') in file comparisons
+	
+
+  
+
+  
+	-w
+	
+  
+	  Ignore whitespace in file comparisons
+	  
+
+  
+
+  
+	--no-ads
+	
+  
+	  Do not use commands that assume an Active Directory Server
+	  
+
+  
+
+
+
+  
+
+  
+SEE ALSO
+
+  ctdb
+  1,
+  https://ctdb.samba.org/"/>
+
+  
+
+  
+
+  
+	  This documentation was written by Martijn van Brummelen
+  
+
+
+    
+      2015
+  Martijn van Brummelen
+
+
+
+  
+	  This program is free software; you can redistribute it and/or
+	  modify it under the terms of the GNU General Public License as
+	  published by the Free Software Foundation; either version 3 of
+	  the License, or (at your option) any later version.
+  
+  
+	  This program is distributed in the hope that it will be
+	  useful, but WITHOUT ANY WARRANTY; without even the implied
+	  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+	  PURPOSE.  See the GNU General Public License for more details.
+  
+  
+	  You should have received a copy of the GNU General Public
+	  License along with this program; if not, see
+	  http://www.gnu.org/licenses"/>.
+  
+
+
+  
+
+
-- 
2.6.1



signature.asc
Description: OpenPGP digital signature


Bug#801327: ctdb: Man page for ctdb_diagnostics

2015-10-08 Thread Martijn van Brummelen
Package: ctdb
Version: 2.5.4+debian0-4
Severity: wishlist

Dear Maintainer,

I created a manpage for ctdb_diagnostics.
What do you think about it?

Kind regards,
Martijn van Brummelen

.TH ctdb_diagnostics "1" "October 2015" "ctdb_diagnostics" "User Commands"
.SH NAME
\ ctdb_diagnostics - test CTDB/Samba installation
.SH SYNOPSIS
.B ctdb_diagnostics
[\fI\,OPTION\/\fR] ...
.SH DESCRIPTION
A script to test the basic setup of a CTDB/Samba install
.TP
\fB\-n\fR 
Comma separated list of nodes to operate on
.TP
\fB\-c\fR
Ignore comment lines (starting with '#') in file comparisons
.TP
\fB\-w\fR
Ignore whitespace in file comparisons
.TP
\fB\-\-no\-ads\fR
Do not use commands that assume an Active Directory Server
.PP
.SH COPYRIGHT
Copyright   ©   2015   Free   Software   Foundation,   Inc.License   GPLv3+:
GNU   GPL  version  3  or  later
<http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.  There is NO
WARRANTY, to the  extent  permitted
by law.
.SH BUGS
No known bugs.
.SH AUTHOR
Martijn van Brummelen (mart...@brumit.nl)



signature.asc
Description: OpenPGP digital signature


Bug#801327: ctdb: Man page for ctdb_diagnostics

2015-10-08 Thread Martijn van Brummelen

Hi

I created a manpage for ctdb_diagnostics it would be nice if it could be
added upstream. It would fix Debian bug #801327
Thanks!

Kind regards,
Martijn van Brummelen
Im not subscribed to this list


.TH ctdb_diagnostics "1" "October 2015" "ctdb_diagnostics" "User Commands"
.SH NAME
\ ctdb_diagnostics - test CTDB/Samba installation
.SH SYNOPSIS
.B ctdb_diagnostics
[\fI\,OPTION\/\fR] ...
.SH DESCRIPTION
A script to test the basic setup of a CTDB/Samba install
.TP
\fB\-n\fR 
Comma separated list of nodes to operate on
.TP
\fB\-c\fR
Ignore comment lines (starting with '#') in file comparisons
.TP
\fB\-w\fR
Ignore whitespace in file comparisons
.TP
\fB\-\-no\-ads\fR
Do not use commands that assume an Active Directory Server
.PP
.SH COPYRIGHT
Copyright   ©   2015   Free   Software   Foundation,   Inc.License   GPLv3+:
GNU   GPL  version  3  or  later
<http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.  There is NO
WARRANTY, to the  extent  permitted
by law.
.SH BUGS
No known bugs.
.SH AUTHOR
Martijn van Brummelen (mart...@brumit.nl)



signature.asc
Description: OpenPGP digital signature


Bug#793290: libpam-script tries to invoke nonexistent scripts

2015-09-25 Thread Martijn van Brummelen
Hi,
> Package: libpam-script
> Version: 1.1.7-1
> Severity: normal
>
> Dear Maintainer,
>
> I have recently upgraded my system from Debian 7 to Debian 8.
> It appears that libpam-script was pulled in by that upgrade, now my logs
> are full of messages like:
> can not stat /usr/share/libpam-script/pam_script_ses_open
> can not stat /usr/share/libpam-script/pam_script_auth
> can not stat /usr/share/libpam-script/pam_script_acct
>
> A brief investigation reveals that the paths to those scripts are
> hardcoded in pam_script.c and customized in debian/rules but the scripts
> are not there.
> Can one somehow make it stop invoking those scripts?
>
>
> -- System Information:
> Debian Release: 8.1
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: amd64 (x86_64)
>
> Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
> Locale: LANG=en_US.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
>
> Versions of packages libpam-script depends on:
> ii  libc6 2.19-18
> ii  libpam0g  1.1.8-3.1
>
> libpam-script recommends no packages.
>
> libpam-script suggests no packages.
>
> -- no debconf information
>
I wonder how you got this package. If you don't use it I would recommend
to remove it.
If you do need to execute scripts it would be best to create the files or
symlink them like described in the README.Debian file.
If you have more information please let me know.

Kind regards,
Martijn van Brummelen



Bug#759559: Readme.Debian

2014-10-13 Thread Martijn van Brummelen
Hi Guys,

Thanks for your responce.
Would it be ok to ship with the current pam-configs/pam_script and make a
note/warning in the Readme.Debian file ?

Regards,
Martijn van Brummelen


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



Bug#759559: RFH : Advice on bug/patch

2014-10-11 Thread Martijn van Brummelen
Im not sure if the suggested patch is ok or not, or provide a better patch?
I asked on debian devel mailinglist[0]]/irc but did not get much response.
It would be a pitty if Jessie would be released without it.
Can someone advice me on this?

Regards,
Martijn van Brummelen
[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759559


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



Bug#759559: Correct url

2014-10-11 Thread Martijn van Brummelen
The correct url to the mailinglist is [0]

Regards,
Martijn van Brummelen
[0]https://lists.debian.org/debian-devel/2014/10/msg00137.html


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



Bug#759559: libpam-script: suggested patch

2014-09-04 Thread Martijn van Brummelen
Hi,
 Hi

 Andreas B. Mundt a...@debian.org writes:

 Control: tags -1 + patch

 Hi,

 I think the patch below should address the issue.  I am not completely
 sure about the *-Type: Additional, but from [1] and [2] and the
 links there I think it should be as below.

 This modification follows the principle of 'least surprise':  Neither
 you are loged in without password as before with 'sufficient' and an
 arbitrary script exiting 0, nor you are unable to log in which
 might happen with 'required' and a script exiting non-zero.  So I
 guess this is a good default.

 CC Gaudenz to allow for his input/comments too.

 Thanks for CCing me. I was not aware of your bug report before. IMO the
 proposed patch is wrong. If your pam script is not intended to
 authenticate users, then don't use it in the authentication phase. If
 the script is used to mount network shares or similar things, put it
 into the session phase.

 Having auth scripts be optional by default, just leads to a situation
 were everyone that want's to use a script for authentication has to
 modify the pam configuration as this default most certainly won't be
 right for his case. If you want to change the default, then better
 change it to required, but this has the disatvantage you discribed of
 fatal failures.
Thanks will investigate patch and suggested solutions.

Regards,
Martijn van brummelen


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



Bug#755474: will contact upstream

2014-07-24 Thread Martijn van Brummelen
Hi,

I will contact upstream and see what he thinks about it, maybe S would be
a better  option.

Regards,
Martijn van Brummelen


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



Bug#755473: confirmed

2014-07-24 Thread Martijn van Brummelen
Hi,

Ah I see what you mean thanks. I will contact upstream about it.

Regards,
Martijn van Brummelen


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



Bug#749705: RM: zarafa-drag-n-drop --ROM; source not available/not maintained

2014-05-29 Thread Martijn van Brummelen
Package: ftp.debian.org

Please remove zarafa-drag-n-drop since it is no longer maintained upstream
and source is not available anymore.

Thanks.

Regards,
Martijn van Brummelen


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



Bug#746611: nwipe: fails to build with clang instead of gcc

2014-05-02 Thread Martijn van Brummelen
 Package: nwipe
 Version: 0.14-1
 Severity: minor
 Tags: patch
 User: pkg-llvm-t...@lists.alioth.debian.org
 Usertags: clang-ftbfs

 Dear Maintainer,

 Your package fails to build with clang instead of gcc. [-Wreturn-type]
 The attached patch fixes it.
 Buildlogs and patch are here:
 https://github.com/nonas/debian-clang/tree/master/buildlogs/nwipe

 Regards,
 Nicolas
Thank you for the patch I will contact upstream and otherwise will package
this patch.

Regards,
Martijn van Brummelen


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



Bug#714499: Segfault

2014-03-26 Thread Martijn van Brummelen
Hi,

Im not using otr nor a proxy but irssi-plugin-xmpp segfaulted on me on
after a few days. Im trying to get some more information.

Regards,
Martijn van Brummelen


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



Bug#722071: grsync: Wrong french translation newer files (-u argument)

2014-03-18 Thread Martijn van Brummelen
 Package: grsync
 Version: 1.2.0-1
 Followup-For: Bug #722071
 Dear Maintainer,
 This issue is partially fixed upstream (nothing in Wheezy).
 Only the help ballon text was fixed, but not the label dialog.
 Instead of :
 #: ../grsync.glade.h:34
 msgid Skip newer
 msgstr Ignorer les fichiers nouveaux
 it should be :
 #: ../grsync.glade.h:34
 msgid Skip newer
 msgstr Ignorer les plus récents
 or if you have space on the dialog screen,
 msgstr Ignorer les fichiers plus récents
 Regards.
 -- System Information:
 Debian Release: 7.4
   APT prefers stable-updates
   APT policy: (500, 'stable-updates'), (500, 'stable')
 Architecture: i386 (i686)
Hi Piero,

Can you see if it makes sense to update po/fr_FR.po(line 164) to the
suggestion in this bug ?
Thanks.

Regards,
Martijn van Brummelen


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



Bug#712278: Please add Martijn van Brummelen as a Debian Maintainer

2013-06-14 Thread Martijn van Brummelen
Package: debian-maintainers
Severity: normal

Please add my key to the Debian Maintainers keyring. The jetring
changeset is attached.

Thanks.

Martijn van Brummelen
Recommended-By:
  Thijs Kinkhorst th...@debian.org
Agreement:
  http://lists.debian.org/debian-newmaint/2013/06/msg7.html
Advocates:
  http://lists.debian.org/debian-newmaint/2013/06/msg8.html
Comment: Add Martijn van Brummelen and mart...@brumit.nl as a Debian Maintainer
Date: Fri, 14 Jun 2013 23:18:00 +0200
Action: import
Data: 
  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: GnuPG v1.4.12 (GNU/Linux)
  
  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

Bug#647502: libnss-ldapd: It would be nice to have nested group support.

2013-04-08 Thread Martijn van Brummelen
Hi Arthur,
 On Thu, 2011-11-03 at 21:47 +0100, Arthur de Jong wrote:
 On Thu, 2011-11-03 at 11:35 +0100, Martijn van Brummelen wrote:
  Is it possible to add nested group support?

 Indeed, it would be nice if support for this would be available (it is
 one of the features that is present in nss_ldap but missing in
 nss-pam-ldapd).

 Nested group functionality has just been made available in nss-pam-ldapd
 0.9.0. You may want to have a look. Test reports are welcome.
Thats very good news! :) Thanks.
 It may be a while until a 0.9 version is uploaded to Debian because the
 branch is in development and experimental is currently used for keeping
 the 0.8 up-to-date.
Will test it and let you know.

Regards,
Martijn van Brummelen


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



Bug#703914: Will package

2013-03-27 Thread Martijn van Brummelen
Hi,

Thanks.
Will package this new version in a few days and find a sponsor.

Regards,
Martijn van Brummelen


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



Bug#658739: libnss-ldapd/libpam-ldapd not a solution

2013-01-24 Thread Martijn van Brummelen
The suggested solution of using libnss-ldap/libpam-ldapd is not a solution
for this problem, since libnss-ldap/libpam-ldapd does not provide nested
groups.

Regards,
Martijn van Brummelen


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



Bug#658739: Patch from Ubuntu

2012-11-30 Thread Martijn van Brummelen
 Hello,
 The patch from Ubuntu breaks other stuff. See
 https://bugs.launchpad.net/ubuntu/+source/libgcrypt11/+bug/1013798
 and duplicates. Note that although this (LP 1013798) was fixed in
 1.5.0-3ubuntu2 the patch had to be pulled again in 1.5.0-3ubuntu2.1
 because of
 https://bugs.launchpad.net/ubuntu/+source/libgcrypt11/+bug/1076906
How about suggestion nr 22 suggested on
https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/926350
Will that do any harm? I can confirm it makes sudo work again. Will test
some more to see if it breaks anything else.

Regards,
martijn van brummelen


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



Bug#658896: Patch from Ubuntu

2012-11-15 Thread Martijn van Brummelen
I rebuild Wheezy's version of libgcrypt11_1.5.0-3 with the
patch(no_global_init_during_thread_callbacks.diff)  from Ubuntu.
I can confirm the new patched version of libgcrypt solves this problem,
and I am able to use sudo again.

Can someone review this patch and see if it would be a suitable solution
to fix this problem?

If needed I can prepare a NMU.

Regards,
Martijn van Brummelendiff -Nur -x '*.orig' -x '*~' libgcrypt11/src/global.c libgcrypt11.new/src/global.c
--- libgcrypt11/src/global.c2012-05-24 16:25:08.500282000 -0400
+++ libgcrypt11.new/src/global.c2012-05-24 16:31:09.986542239 -0400
@@ -440,8 +440,6 @@
 
 case GCRYCTL_SET_THREAD_CBS:
   err = ath_install (va_arg (arg_ptr, void *), any_init_done);
-  if (! err)
-   global_init ();
   break;
 
 case GCRYCTL_FAST_POLL:

Bug#658739: Patch from Ubuntu

2012-11-15 Thread Martijn van Brummelen
I rebuild Wheezy's version of libgcrypt11_1.5.0-3 with the
patch(no_global_init_during_thread_callbacks.diff)  from Ubuntu.
I can confirm the new patched version of libgcrypt solves this problem,
and I am able to use sudo again.

Can someone review this patch and see if it would be a suitable solution
to fix this problem?

If needed I can prepare a NMU.

Regards,
Martijn van Brummelen
diff -Nur -x '*.orig' -x '*~' libgcrypt11/src/global.c libgcrypt11.new/src/global.c
--- libgcrypt11/src/global.c2012-05-24 16:25:08.500282000 -0400
+++ libgcrypt11.new/src/global.c2012-05-24 16:31:09.986542239 -0400
@@ -440,8 +440,6 @@
 
 case GCRYCTL_SET_THREAD_CBS:
   err = ath_install (va_arg (arg_ptr, void *), any_init_done);
-  if (! err)
-   global_init ();
   break;
 
 case GCRYCTL_FAST_POLL:

Bug#689907: Will package

2012-10-16 Thread Martijn van Brummelen
Give me a bit of time to package the new version of nwipe.

Regards,
Martijn van Brummelen


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



Bug#679361: Uploaded

2012-09-14 Thread Martijn van Brummelen
Package got sponsered by Thijs Kinkhorst yesterday.
For details see
http://ftp-master.debian.org/new.html
and http://ftp-master.debian.org/new/nwipe_0.10-1.html

Regards,
martijn van brummelen


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



Bug#679361: ITP nwipe

2012-09-12 Thread Martijn van Brummelen
Im going to give it a try, need to fix some errors and issues with this
package. Tar ball seems in pretty good state.
I need some time to get it into shape.

Regards,
martijn


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



Bug#659755: nmu

2012-05-23 Thread Martijn van Brummelen
Hi,

I prepared a nmu
A dsc can be found here.

http://mentors.debian.net/debian/pool/main/r/remmina/remmina_1.0.0-3.1.dsc

Regards,
Martijn van Brummelen







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



Bug#670535: Patch

2012-05-23 Thread Martijn van Brummelen
tags 659755 + patch

Hi,

If needed I can prepare a nmu if needed.
I can confirm this patch(scroll_smooth.patch) makes scrolling work again.

Regards,
Martijn van Brummelen





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



Bug#670182: contact with upstream

2012-05-03 Thread Martijn van Brummelen
I had contact with upstream development and he is going to use your patch
thanks!.

Will package it when the new version appears.

Regards,
Martijn van Brummelen




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



Bug#661797: icinga-idoutils: wrong path for idomod.o in /etc/icinga/modules/idoutils.cfg-sample is provided

2012-03-01 Thread Martijn van Brummelen
Package: icinga-idoutils
Version: 1.6.1-2
Severity: minor

Hi,

It appears /etc/icinga/modules/idoutils.cfg-sample contains the wrong path
the example says the module can be found in  /usr/sbin/idomod.o but it can be 
found
in /usr/lib/icinga/idomod.o .

diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch'
'--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr'
icinga-1.6.1~/module/idoutils/config/idoutils.cfg-sample.in
icinga-1.6.1/module/idoutils/config/idoutils.cfg-sample.in
--- icinga-1.6.1~/module/idoutils/config/idoutils.cfg-sample.in 2011-12-02
14:53:23.0 +0100
+++ icinga-1.6.1/module/idoutils/config/idoutils.cfg-sample.in  2012-03-01
10:21:21.0 +0100
@@ -7,6 +7,6 @@
 define module{
  module_name idomod
   module_type neb
   -path@bindir@/idomod.o
   +path/usr/lib/icinga/idomod.o
args
config_file=@sysconfdir@/idomod.cfg
}

Regards,
Martijn van Brummelen

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#629131: vulnerable lenny-backports/squeeze (stable)

2011-11-25 Thread Martijn van Brummelen
Issue can be found in lenny-backports and squeeze (stable).
It is fixed in lenny-backports-sloppy/ squeeze-backports /wheezy (testing)
/sid (unstable) according to the changelogs.

Regards,
Martijn van Brummelen




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



Bug#629131: vulnerable lenny-backports/squeeze (stable) (correction)

2011-11-25 Thread Martijn van Brummelen
Correction
Issue can't be found in lenny-backports and squeeze (stable) since it has
a older version which is not vulnerable .
It is found in version 1.4.1 and lenny has version 1.0.2-2~bpo50+1 and
squeeze has version 1.0.2-2 both older non vulnerable versions.

Regards,
Martijn van Brummelen






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



Bug#629127: vulnerable lenny-backports/squeeze (stable)

2011-11-25 Thread Martijn van Brummelen
Xss is found in version 3.2.3
lenny(oldstable) has version 3.0.6-4~lenny2
lenny-backports has version 3.2.1-2~bpo50+1/3.2.0-5~bpo50+1
squeeze has version 3.2.1-2
all older non vulnerable versions.

Regards,
Martijn van Brummelen








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



Bug#647502: libnss-ldapd: It would be nice to have nested group support.

2011-11-04 Thread Martijn van Brummelen
 tags 647502 + help
 thanks

 On Thu, 2011-11-03 at 11:35 +0100, Martijn van Brummelen wrote:
 Is it possible to add nested group support?

 Indeed, it would be nice if support for this would be available (it is
 one of the features that is present in nss_ldap but missing in
 nss-pam-ldapd).

 The main reason this hasn't been implemented yet is because it is
 difficult to get right. Some background information on the complexities
 of implementing this are available in this email thread:
   http://lists.arthurdejong.org/nss-pam-ldapd-users/2010/msg7.html

 While I don't think I will be implementing this myself any time soon, if
 anyone is willing to work on this I can arrange commit access to the
 nss-pam-ldapd repository and provide some support.
I can offer any program help but I can offer to test if something gets ready.
Contact me when testing is needed.

Thanks.

Martijn van Brummelen




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



Bug#647502: libnss-ldapd: It would be nice to have nested group support.

2011-11-04 Thread Martijn van Brummelen
 tags 647502 + help
 thanks

 On Thu, 2011-11-03 at 11:35 +0100, Martijn van Brummelen wrote:
 Is it possible to add nested group support?

 Indeed, it would be nice if support for this would be available (it is
one of the features that is present in nss_ldap but missing in
 nss-pam-ldapd).

 The main reason this hasn't been implemented yet is because it is
difficult to get right. Some background information on the complexities
of implementing this are available in this email thread:
   http://lists.arthurdejong.org/nss-pam-ldapd-users/2010/msg7.html

 While I don't think I will be implementing this myself any time soon, if
anyone is willing to work on this I can arrange commit access to the
nss-pam-ldapd repository and provide some support.
I can,t offer any programming help but I can offer to test if something
gets ready. Contact me when testing is needed.

Thanks.

Martijn van Brummelen






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



Bug#647502: libnss-ldapd: It would be nice to have nested group support.

2011-11-03 Thread Martijn van Brummelen
Package: libnss-ldapd
Severity: wishlist

Dear Maintainer,
Is it possible to add nested group support?

Regards,
Martijn van Brummelen


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#636329:

2011-08-10 Thread Martijn van Brummelen
Check.
Will fix it in a few days.

Regards,
martijn




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



Bug#611222: packaged

2011-01-31 Thread Martijn van Brummelen
Hi,

I created a package and a dsc can be found on
http://mentors.debian.net/debian/pool/main/z/zarafa-drag-n-drop/zarafa-drag-n-drop_1.2-1.dsc

Regards,
Martijn van Brummelen




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



Bug#611222: ITP: Zarafa drag n drop add-on

2011-01-26 Thread Martijn van Brummelen
Package: wnpp
Severity: wishlist
Owner: Martijn van Brummelen mart...@brumit.nl

Homepage:
https://addons.mozilla.org/nl/firefox/addon/zarafa-dragndrop/
License:  GPL-3+
Version:  1.2
Programming Language: Javascript

Package: Zarafa Drag and Drop plugin
Description: This extension allows files to be dragged from your desktop
environment  to the composer dialog of the Zarafa WebAccess where they
automatically get inserted as attachments.







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



Bug#546481: nagircbot packaging ready

2010-12-17 Thread Martijn van Brummelen
Hi John,
 I have packaging ready for nagircbot. It's lintian-clean and builds
 cleanly
 in a pbuilder chroot.

 Martijn, would you be willing to sponsor my uploads for this package? If
 you
 don't have the time right now, I could try asking the Nagios packaging
 team,
 too.

 john
Beter ask on mentors.debian.net of Nagios packaging team, since im not a
Debian Developer.

Regards,

Martijn van Brummelen




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



Bug#593999: postgresql-plsh: diff for NMU version 1.3-3.1

2010-09-16 Thread Martijn van Brummelen
Hi,
 * mart...@brumit.nl mart...@brumit.nl, 2010-09-16, 13:13:
 binary-indep: install
- dh_testdir
- dh_testroot
- dh_installdocs -a
- dh_install -i
- dh_link -i
- dh_compress -i
- dh_fixperms -i
- dh_installdeb -i
- dh_gencontrol -i
- dh_md5sums -i
- dh_builddeb -i
  dh_installchangelogs

 I think you want to remove dh_installchangelogs, too.
If I remove that option lintian complains with E: postgresql-8.4-plsh:
debian-changelog-file-missing and Debian.changelog is missing in the deb
file.

Regards,
Martijn van Brummelen




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



Bug#590044: RFH: cobbler -- Install server

2010-07-23 Thread Martijn van Brummelen
Package: wnpp
Severity: normal

I request assistance with packagin Cobbler.
Im looking for someone to co-maintain the Cobbler package or perhaps start a
cobbler-team it needs a lot of work to get it in shape.
Anyone who is interested feel free to contact me.


The package description is:
 Cobbler is a network install server.  Cobbler
 supports PXE, virtualized installs, and
 reinstalling existing Linux machines.  The last two
 modes use a helper tool, 'koan', that
 integrates with cobbler.  Cobbler's advanced features
 include importing distributions from DVDs and rsync
 mirrors, kickstart templating, integrated yum
 mirroring, and built-in DHCP/DNS Management.  Cobbler has
 a Python and XMLRPC API for integration with other
 applications.  There is also a web interface.



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



Bug#356995: new version

2010-06-12 Thread Martijn van Brummelen

Hi Philippe,

Can you tell me if you are able to reproduce this bug it the latest 
version of grsync?


Thanks.

Regards,
Martijn van Brummelen



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



Bug#546483: ITP: nagtail

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package nagtail, people are welcome to
package it if they want to. if needed I can help.
Package is easy to build but needs a bit of patching.
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen



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



Bug#546485: ITP: nagiosdigger

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package nagiosdigger, people are
welcome to package it if they want to. If needed I can help.
Package is easy to build but needs a bit of patching.
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen



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



Bug#545148: ITP: entropybroker

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package entropybroker, people are
welcome to package it if they want to. If needed I can help.
Package is easy to build but needs a bit of patching.
Keep in mind that it does use openssl libary's .
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen




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



Bug#546482: ITP: nagcon

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package nagcon, people are
welcome to package it if they want to. If needed I can help.
Package is easy to build but needs a bit of patching.
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen





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



Bug#546493: ITP: gldfork

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package gldfork, people are
welcome to package it if they want to. If needed I can help.
Package is easy to build but needs a bit of patching.
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen




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



Bug#546481: ITP: nagircbot

2010-05-17 Thread Martijn van Brummelen
Hi,

Since I don't have enough time to package nagircbot, people are
welcome to package it if they want to. If needed I can help.
Package is easy to build but needs a bit of patching.
The upstream maintainer is very active and open.

Regards,
Martijn van Brummelen





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



Bug#572121: Fixed in version 7.5 and r668

2010-04-26 Thread Martijn van Brummelen
Hi,

According to http://jackbeat.samalyse.org/ticket/47 the ticket will be
fixed in version r668 or 7.5

Regards,
Martijn



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



Bug#524746: Fwd: Sponsor for player

2010-04-07 Thread Martijn van Brummelen
Hi,

Alan Woodland wrote:
 On 10 February 2010 07:18, M. van Brummelen mart...@brumit.nl wrote:
 Hi,

 It got rejected.
 
 If you'd like me to sponsor another upload, which fixes these problems
 as well I'm happy to do so.
 
 Alan

I prepared a new NMU package, Alan told me he still wants to take a look
at it and if it is good condition sponsor it.

It can be found at http://mentors.debian.net/debian/pool/main/p/player/

Regards,
Martijn van Brummelen



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



Bug#576733: [grsync] Failed to open file '/usr/share/pixmaps/grsync.png': No such file or directory

2010-04-07 Thread Martijn van Brummelen
Hi,

Filipus Klutiero wrote:
 Package: grsync
 Version: 1.1.0-1
 Severity: minor
 
 A warning is triggered when launching grsync in console. This is the full 
 output of launching and closing:
 
 $ LANG=C grsync
 
 (grsync:6780): Gtk-WARNING **: Error loading icon from file 
 '/usr/share/pixmaps/grsync.png':
 Failed to open file '/usr/share/pixmaps/grsync.png': No such file or 
 directory
 chea...@vinci:~$
 
 I'm not sure where this icon is used 
 
 --- System information. ---
 Architecture: i386
 Kernel:   Linux 2.6.32-3-amd64
 
 Debian Release: squeeze/sid
   990 testing security.debian.org 
   990 testing debian.savoirfairelinux.net 
   500 unstableftp.ca.debian.org 
   500 stable  deb.opera.com 
 
 --- Package information. ---
 Depends  (Version) | Installed
 ==-+-
 libatk1.0-0(= 1.20.0) | 1.28.0-1
 libc6 (= 2.2) | 2.10.2-6
 libcairo2   (= 1.2.4) | 1.8.10-3
 libfontconfig1  (= 2.8.0) | 2.8.0-2
 libfreetype6(= 2.2.1) | 2.3.11-1
 libglib2.0-0   (= 2.16.0) | 2.22.4-1
 libgtk2.0-0(= 2.12.0) | 2.18.9-2
 libpango1.0-0  (= 1.14.0) | 1.26.2-2
 rsync  | 3.0.7-2
 
 
 Recommends   (Version) | Installed
 ==-+-===
 ssh-askpass| 1:1.2.4.1-9
 
 
 Package's Suggests field is empty.
You are right this is a small bug.
I was able to reproduce this bug, and fixed it in a new package.
This package will most likely be uploaded next week, if my mentor has
time. Thanks for the bug report.

Regards,
Martijn



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



Bug#554179: Bug#524746: Fwd: Sponsor for player

2010-04-07 Thread Martijn van Brummelen
Hi,

Alan Woodland wrote:
 On 10 February 2010 07:18, M. van Brummelen mart...@brumit.nl wrote:
 Hi,

 It got rejected.
 
 If you'd like me to sponsor another upload, which fixes these problems
 as well I'm happy to do so.
 
 Alan

I prepared a new NMU package, Alan told me he still wants to take a look
at it and if it is good condition sponsor it.

It can be found at http://mentors.debian.net/debian/pool/main/p/player/

Regards,
Martijn van Brummelen




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



Bug#545029: Suggested version didn't fix the problem

2009-09-22 Thread martijn van brummelen
Hi,

I had contact with Piero, and he told me that the new version 0.9.2
didn't fix the problem, I was a prerelease which did not solve the
problem.
It wasn't ready for the whole wide world so he removed it again.
They are working on an new version and Piero will keep me informed.

Regards,
Martijn van Brummelen



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



Bug#547171: ITP: yum-utils plugins for yum

2009-09-18 Thread martijn van brummelen
* Upstream Author: tim...@fedoraproject.org
* License: gplv2+
* Description: Utility's based around the yum installer



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



Bug#547171: ITP: yum-utils plugins for yum

2009-09-17 Thread martijn van brummelen
Package: yum-utils
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name     : yum-utils
* Version          :  1.1.23
* Upstream Author  : Tim Lauridsen
* URL              : http://yum.baseurl.org/download/yum-utils/
* License          :   GPL
* Programming Lang : Python
* Description      : yum-utils is a collection of utilities and plugin
extending and supplementing yum in different ways.

Regards,
Martijn van Brummelen



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



Bug#546716: dh-make: typo in gpl2 license

2009-09-15 Thread Martijn van Brummelen
Package: dh-make
Version: 0.50
Severity: minor

There is a typo in /usr/share/debhelper/dh_make/licenses/gpl2
It says Firtname instead of Firstname.

diff /usr/share/debhelper/dh_make/licenses/gpl2  gpl2
16c16
 Copyright (C)  Firtname Lastname
---
 Copyright (C)  Firstname Lastname

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-xen-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dh-make depends on:
ii  debhelper 7.4.2  helper programs for debian/rules
ii  dpkg-dev  1.15.4 Debian package development tools
ii  make  3.81-6 An utility for Directing compilati
ii  perl  5.10.0-25  Larry Wall's Practical Extraction 

dh-make recommends no packages.

Versions of packages dh-make suggests:
ii  build-essential   11.4   Informational list of build-essent

-- no debconf information



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



Bug#546481: ITP: nagircbot announces the Nagios status on an IRC channel.

2009-09-13 Thread martijn van brummelen
Package: nagircbot
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : nagircbot
* Version  : 0.0.30
* Upstream Author  : Folkert van Heusden folk...@vanheusden.com
* URL  : http://www.vanheusden.com/nagircbot/
* License  : (GPLV2)
* Programming Lang :  C++
* Description  :  NagIRCBot announces the Nagios status on an IRC channel.

Description:



Regards,
Martijn van Brummelen



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



Bug#546482: ITP: Nagcon Nagcon is a console application interfacing to Nagios

2009-09-13 Thread martijn van brummelen
Package: nagcon
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : nagcon
* Version  :  0.0.30
* Upstream Author  : Folkert van Heusden folk...@vanheusden.com
* URL  : http://www.vanheusden.com/nagcon/
* License  : (GPLV2)
* Programming Lang :  C++
* Description  : Nagcon is a console application interfacing to
Nagios which gives you an overview of all services with troubled
services.

Regards,
Martijn van Brummelen



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



Bug#546483: ITP: nagtail is like tail on the Nagios status logfile.

2009-09-13 Thread martijn van brummelen
Package: nagtail
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : nagtail
* Version  :  0.0.26
* Upstream Author  : Folkert van Heusden folk...@vanheusden.com
* URL  : http://www.vanheusden.com/nagtail/
* License  :   GPL2
* Programming Lang : C++
* Description  : NagTail is like tail on the Nagios status logfile.

Description:

Regards,
Martijn van Brummelen



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



Bug#546485: ITP: nagiosdigger is a powerfull web frontend for the logging produced by Nagios.

2009-09-13 Thread martijn van brummelen
Package: nagiosdigger
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : nagiosdigger
* Version  :  0.9
* Upstream Author  : Folkert van Heusden folk...@vanheusden.com
* URL  : http://www.vanheusden.com/nagiosdigger/
* License  :   GPL2
* Programming Lang : C++
* Description  : nagiosdigger is a powerfull web frontend for the
logging produced by Nagios.

Regards,
Martijn van Brummelen



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



Bug#546493: ITP: GLD-fork is a fork of the GLD program written by Salim Gasmi.

2009-09-13 Thread martijn van brummelen
Package: gldfork
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : gldfork
* Version  :  1.9
* Upstream Author  : Mark Feenstra gldf...@mfotw.nl
* URL  :  http://code.google.com/p/gldfork/
* License  : GPL2
* Programming Lang : C
* Description  :  GLD-fork is a fork of the GLD program written by
Salim Gasmi.

Regards,
Martijn van Brummelen



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



Bug#545583: ITP: Cobbler is a Linux provisioning server that centralizes and simplifies control of services including DHCP, TFTP, and DNS for the purpose of performing network-based operating system

2009-09-08 Thread martijn van brummelen
Package: cobbler
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name : cobbler
* Version  : 2.0
* Upstream Author  : Michael DeHaan mdeh...@redhat.com
* URL  : https://fedoraproject.org/cobbler
* License  : (GPLV2)
* Programming Lang : Python
* Description  :  Linux provisioning server that centralizes and
simplifies control of services including DHCP, TFTP, and DNS for the
purpose of performing network-based operating systems installs.

Description:
Cobbler is a Linux installation server that allows for rapid
setup/deployment of network installation environments. It glues
together and automates many associated Linux tasks so you do not have
to hop between lots of various commands and applications when rolling
out new systems.


Regards,
Martijn van Brummelen



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



Bug#545148: ITP: Entropy Broker allows you to distribute entropy data (random values) to /dev/random devices from other systems.

2009-09-05 Thread martijn van brummelen
Package: entropy-broker
Severine: wishlist
Owner: Martijn van Brummelen mvanbrummelen...@gmail.com

* Package name     : entropy-broker
* Version          : 0.6
* Upstream Author  : Folkert van Heusden folk...@vanheusden.com
* URL              : http://www.vanheusden.com/entropybroker/
* License          : (GPLV2)
* Programming Lang : C++
* Description      : Entropy Broker allows you to distribute entropy
data (random values) to /dev/random devices from other systems.

Description: Entropy Broker allows you to distribute entropy data
(random values) to /dev/random devices from other systems.
Entropy Broker is an infrastructure consisting of client-daemons that
fill /dev/random and server-daemons that feed the central entropy
broker-server.
The server-daemons can gather random values by measuring timer frequency noise,
analysing noise from a unused audio-device, noise from a video source
(webcam, tv-card) and random values from a real hardware RNG (random
number generator).

Regards,
Martijn van Brummelen



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



Bug#543844: grsync -- GTK+ frontend for rsync

2009-09-02 Thread martijn van brummelen
Hi,

If this package is still available for adoption I would like to adopt it.
I already found a sponsor(Jelmer Vernooij) to help me out with any issues


Regards,
Martijn van Brummelen