Bug#701536: RM: subsurface -- RoQA; unmaintained package, maintainer MIA

2013-03-03 Thread Khalid El Fathi
Hi,

Sorry to answer only now... I was busy with my work. I think I can update the 
package soon.

Sincerely,

Le 3 mars 2013 à 18:36, Cristian Ionescu-Idbohrn 
cristian.ionescu-idbo...@axis.com a écrit :

 On Sun, 3 Mar 2013, John Paul Adrian Glaubitz wrote:
 
 The maintainer seems MIA since June 2012, not responding to bug
 reports nor direct mails.
 The two most recent upstream releases not packaged.
 
 Why would this be a reason to *remove* a package? Especially after
 such a short time. The package hasn't even been orphaened.
 
 Well, short time is relative to how slow/fast things move.  In this
 case, upstream is _not_ moving slow, I would say :)
 
 I have seen packages in Debian which haven't received updates from the
 maintainer after much longer periods.
 
 True, but let's not focus too much on that, please.  This is a little bit
 different.  Dirk, Linus and many more working with upstream are pushing
 things forward at higer pace than average.
 
 This doesn't necessarrialy mean the maintainer is MIA.
 
 True.  But nothing happened for many moons :)
 
 Debian is run by volunteers and sometimes, people are busy with more
 important things in life.
 
 Aren't we all?  Volunteers and trying to also cope with the important
 things in life?  The good thing with such a large community is that
 there's a lot of backup.
 
 This doesn't mean that anyone has the right to immediately remove their
 packages from Debian.
 
 True.  But that doesn't mean either everyone is happy seeing things
 stalling?
 
 I suppose Khalid will be happy to continue to work on the package
 again once he finds the time.
 
 I certainly hope so.  But, unfortunatelly, there was no sign of life from
 Khalid for a, relatively, long time.  No RFHs either, AFAICT.
 
 I don't see any need (and I think it's impolite) to pressure him in such
 a way.
 
 I appologise, in that case.  But that was not my intent.  My intent is to
 find a debian maintainer/developer that has the time to work on these 2
 packages.
 
 
 Cheers,
 
 -- 
 Cristian


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



Bug#673736: closed by Khalid El Fathi kha...@elfathi.fr (Bug#673736: fixed in libdivecomputer 0.1.0-2)

2012-05-24 Thread Khalid El Fathi
Hi Ralf,

On 05/23/2012 09:56 PM, Ralf Treinen wrote:
 thanks for fixing that, but please tell in the changelog what precisely you
 did to fix that file overwrite (like renaming this file to that, or not
 installing this file in that package, or something else ?)

This is done for the next release.

Cheers,
Khalid.



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



Bug#673246: man page for yash

2012-05-17 Thread Khalid El Fathi
Package: yash
Tags: patch
.TH YASH 1 May 17, 2012
.SH NAME
yash \- Yet Another Shell
.SH SYNOPSIS
.B yash [options] [filename [args...]]
.br
.B yash [options] -c command [command_name [args...]]
.br
.B yash [options] -s [args...]
.SH DESCRIPTION
\fByash\fP is a command line shell that conforms to the POSIX.1
(IEEE Std 1003.1, 2008 Edition) standard for the most part. Actually,
it is much more POSIX-compliant than other shell like bash and zsh.
.PP
\fByash\fP also has its own features beyond POSIX, such as:
.PP
   * global aliases
   * random numbers
   * socket redirections and other special redirections
   * right prompt
   * command completion
.SH OPTIONS
set - set shell options and positional parameters
.br
  set [\-abefhmnuvxC] [+abefhmnuvxC] [\-o option] [+o option] [--]
[arg...]
.br
  set \-o
.br
  set +o
.br
The first form enables or disables the specified shell options and/or
sets positional parameters to args. If no args are given, the
positional parameters are not changed.
.br
If no options or args are given at all, a list of all existing
variables is printed. To clear all positional parameters, use
`set --'.
.br
The second form prints the current settings of the shell options in a
human- readable form.
.br
The third form prints commands that can be used to restore the current
option settings later.
.TP
.B \-h, \-\-help
Show this help message and exit
.TP
.B \-a \-\-allexport
Any variable is exported when assigned.
.TP
.B \-b \-\-notify
When the status of a job is changed, it is notified immediately.
.TP
.B \-\-notifyle
Similar to \-b, but only notify during line-editing. Ignored if \-b is
set.
.TP
.B \-e \-\-errexit
Exit the shell immediately when any simple command returns a
non-zero status.
.TP
.B +f \-\-glob
Perform pathname expansion (globbing).
.TP
.B \-\-caseglob
Perform pathname expansion case-sensitively.
.TP
.B \-\-dotglob
In pathname expansion, `*' and `?' match a `.' at the beginning of
the filename.
.TP
.B \-\-markdirs
In pathname expansion, directory pathnames have a `/' at the ends.
.TP
.B \-\-extendedglob
Enable extended pathname expansion.
.TP
.B \-\-nullglob
In pathname expansion, patterns that do not match any pathname are
removed from the command line rather than left as is.
.TP
.B \-h \-\-hashondef
When a function is defined, all the commands in the function are
registered in the command path cache.
.TP
.B \-m \-\-monitor
Enable job control. All jobs are run in their own process group.
When the status of a job is changed, the status is reported before
the next prompt. This option is enabled by default for an interactive
shell.
.TP
.B +n \-\-exec
Execute commands.
This option cannot be disabled in an interactive shell.
.TP
.B +u \-\-unset
Expand an undefined variable to an empty string.
.TP
.B \-v \-\-verbose
Echo each command to the standard error before execution.
.TP
.B \-x \-\-xtrace
After each command line is expanded, the expanded line is printed
to the standard error.
.TP
.B +C \-\-clobber
Allow redirections to overwrite existing files.
.TP
.B \-\-ignoreeof
Do not exit when an EOF is entered.
This option is effective in an interactive shell only.
.TP
.B \-\-braceexpand
Enable brace expansion.
.TP
.B \-\-curasync, \-\-curbg, \-\-curstop
A background job becomes the current job when
.br
   (curasync)  invoked as an asynchronous command
.br
   (curbg) resumed by the bg built-in
.br
   (curstop)   stopped.
.br
(These options are enabled by default)
.TP
.B \-\-histspace
Do not save lines that start with a space in the history.
.TP
.B \-\-posixly-correct
Make the shell behave as the POSIX shell.
.TP
.B \-\-vi
Enable vi-like editing.
.TP
.B \-\-emacs
Enable emacs-like editing.
.TP
.B \-\-le-convmeta
Treat 8th bit of input as a meta-key flag (regardless of terminfo).
.TP
.B \-\-le-noconvmeta
Do not treat 8th bit of input as a meta-key flag.
.TP
.B \-\-le-visiblebell
Alert with a flash rather than a bell.
.TP
.B \-\-le-promptsp
Move cursor to beginning of line each time when starting
line-editing. (enabled by default)
.TP
.B \-\-le-alwaysrp
Make the right prompt always visible on the screen.
.TP
.B \-\-le-compdebug
Print debugging information during command line completion.
.PP
Options can be disabled by using `+' instead of `-'. For example,
`set +a' or `set ++allexport' disables the allexport option.
Prefixing `no' to a long option also disables the option. For example,
`set \-\-nounset' disables the unset option.

.SH AUTHOR
yash was written by Magicant magic...@users.sourceforge.jp.
.PP
This manual page was written by Khalid El Fathi kha...@elfathi.fr,
for the Debian project (and may be used by others).


Bug#673067: man page for httpie

2012-05-15 Thread Khalid El Fathi
Package: httpie
Tags: patch
.TH HTTP 1 May 15, 2012
.SH NAME
httpie \- CLI, cURL-like tool for humans
.SH SYNOPSIS
.B http
.RI
[\-h] [\-\-version] [\-\-json | \-\-form] [\-\-traceback]
.br
 [\-\-pretty | \-\-ugly] [\-\-headers | \-\-body] [\-\-style STYLE]
.br
 [\-\-auth AUTH] [\-\-verify VERIFY] [\-\-proxy PROXY]
.br
 [\-\-allow-redirects] [\-\-file PATH] [\-\-timeout TIMEOUT]
.br
 METHOD URL [items [items ...]]
.PP
Positional arguments:
.TP
.B METHOD
HTTP method to be used for the request (GET, POST, PUT, DELETE, PATCH, ...).
.TP
.B URL
Protocol defaults to http:// if the URL does not include it.
.TP
.B items
HTTP header (key:value), data field (key=value) or raw JSON field 
(field:=value).
.SH DESCRIPTION
\fBHTTPie\fP is a CLI HTTP utility built out of frustration with existing tools.
The goal is to make CLI interaction with HTTP-based services as human-friendly
as possible.
.PP
HTTPie does so by providing an http command that allows for issuing arbitrary
HTTP requests using a simple and natural syntax and displaying colorized 
responses.
.SH OPTIONS
.TP
.B \-h, \-\-help
Show this help message and exit
.TP
.B \-\-version
Show program's version number and exit
.TP
.B  \-\-json, \-j
Serialize data items as a JSON object and set Content-Type to application/json,
if not specified.
.TP
.B \-\-form, \-f
Serialize data items as form values and set Content- Type to
application/x-www-form-urlencoded, if not specified.
.TP
.B \-\-traceback
Print exception traceback should one occur.
.TP
.B \-\-pretty, \-p
If stdout is a terminal, the response is prettified by default (colorized and
indented if it is JSON). This flag ensures prettifying even when stdout
is redirected.
.TP
.B \-\-ugly, \-u
Do not prettify the response.
.TP
.B \-\-headers, \-t
Print only the response headers.
.TP
.B \-\-body, \-b
Print only the response body.
.TP
.B \-\-style STYLE, \-s STYLE
Output coloring style, one of autumn, borland, bw, colorful, default, emacs,
friendly, fruity, manni, monokai, murphy, native, pastie, perldoc, rrt,
solarized, tango, trac, vim, vs. Defaults to solarized.
.TP
.B \-\-auth AUTH, \-a AUTH 
username:password
.TP
.B \-\-verify VERIFY
Set to yes to check the host's SSL certificate. You can also pass the path
to a CA_BUNDLE file for private certs. You can also set the REQUESTS_CA_BUNDLE
environment variable.
.TP
.B \-\-proxy PROXY
String mapping protocol to the URL of the proxy (e.g. http:foo.bar:3128).
.TP
.B \-\-allow-redirects
Set this flag if full redirects are allowed (e.g. re- POST-ing of data at
new ``Location``)
.TP
.B \-\-file PATH
File to multipart upload
.TP
.B \-\-timeout TIMEOUT
Float describes the timeout of the request
(Use socket.setdefaulttimeout() as fallback).
.SH AUTHOR
httpie was written by Jakub Roztocil ja...@roztocil.name.
.PP
This manual page was written by Khalid El Fathi kha...@elfathi.fr,
for the Debian project (and may be used by others).


Bug#666272: keepnote: forwarded upstream

2012-05-03 Thread Khalid El Fathi
tag 666272 +upstream
forwarded 666272 http://code.google.com/p/keepnote/issues/detail?id=603
thanks



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



Bug#670983: dfc: 'man dfc' typos: mentionned and substracting

2012-05-02 Thread Khalid El Fathi
tags 670983 + fixed-upstream
thanks

I've committed those typo fixes upstream. They'll be in the next
upstream release.

Thanks,
Khalid.



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



Bug#671175: ITP: httpbench -- very simple HTTP benchmarking program

2012-05-02 Thread Khalid El Fathi
Package: httpbench
Severity: wishlist

Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi kha...@elfathi.fr

* Package name: httpbench
  Version : 0.2.1.1
  Upstream Author : Paul Buetow p...@buetow.org
* URL : http://httpbench.buetow.org
* License : GPL-3.0+
  Programming Lang: C
  Description : very simple HTTP benchmarking program
  Benchmarks HTTP servers with some features missing in ab and siege.



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

Kernel: Linux 3.2.0-2-686-pae (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



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



Bug#671261: mpc123 0.2.4-1.2 NMU diff

2012-05-02 Thread Khalid El Fathi
Package: mpc123
Version: 0.2.4-1.1+b1
Severity: normal
Tags: patch

Hi,

The NMU diff file for mpc123 is attached here.

Cheers,
Khalid.


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

Kernel: Linux 3.2.0-2-686-pae (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 mpc123 depends on:
ii  libao4  1.1.0-1.1+b1
ii  libc6   2.13-31
ii  libmpcdec6  2:0.1~r459-2

mpc123 recommends no packages.

mpc123 suggests no packages.

-- no debconf information

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'www.elfathi.fr`
  `-
diff -r mpc123-0.2.4/ao.c /home/invent/Dev/packaging/mpc123/mpc123-0.2.4/ao.c
147c147
 data-ao_dev=ao_open_file(ao_drvnum, options.foutput, MPC_TRUE, ao_fmt, NULL);
---
 data-ao_dev=ao_open_file(ao_drvnum, options.foutput, TRUE, ao_fmt, NULL);
149c149
 
---
   
178,180d177
   if(!bytes)
 return 0;
 
198,199c195
 sayf(0, Out of memory (needed 0x%08x bytes)\n, bytes);
 return 0;
---
 dief(_(Out of memory (needed 0x%08x bytes)\n), bytes);
diff -r mpc123-0.2.4/debian/changelog /home/invent/Dev/packaging/mpc123/mpc123-0.2.4/debian/changelog
0a1,33
 mpc123 (0.2.4-1.2) unstable; urgency=low
 
   [Khalid El Fathi]
   * Non-maintainer upload
   * debian/compat:
 + Update to 9
   * debian/control:
 + Build-Depends: Update to debhelper 9
 + Standards-Version: Update to 3.9.3.1
 + Add Homepage, Vcs-Git and Vcs-Browser fields
   * debian/copyright:
 + Update format to copyright-format 1.0 as released together with
   Debian policy 3.9.3.1. 
   * Switch to dpkg-source 3.0 (quilt) format
   * Fixed lintian warnings and info tags
 + W: package-uses-deprecated-debhelper-compat-version 4
 + I: missing-debian-source-format
 + P: direct-changes-in-diff-but-no-patch-system ao.c and 3 more
 + W: debian-rules-missing-recommended-target build-arch
 + W: debian-rules-missing-recommended-target build-indep
 + W: ancient-standards-version 3.7.3 (current is 3.9.3)
 + I: debian-watch-file-is-missing
 + P: copyright-refers-to-symlink-license usr/share/common-licenses/GPL
 + P: no-homepage-field
 + I: hyphen-used-as-minus-sign usr/share/man/man1/mpc123.1.gz:12
 + I: spelling-error-in-manpage usr/share/man/man1/mpc123.1.gz deafult
 + I: hyphen-used-as-minus-sign usr/share/man/man1/mpc123.1.gz:50
 + I: hyphen-used-as-minus-sign usr/share/man/man1/mpc123.1.gz:69
   * Apply patch by Alex Chiang achi...@canonical.com to rearrange linker
 order to fix new DSO linking FTBFS (Closes: #641382).
 
  -- Khalid El Fathi kha...@elfathi.fr  Wed, 02 May 2012 16:05:32 +0200
 
diff -r mpc123-0.2.4/debian/compat /home/invent/Dev/packaging/mpc123/mpc123-0.2.4/debian/compat
1c1
 4
---
 9
diff -r mpc123-0.2.4/debian/control /home/invent/Dev/packaging/mpc123/mpc123-0.2.4/debian/control
5,6c5,9
 Build-Depends: debhelper (= 4.0.0), libmpcdec-dev (= 2:0.1~r435), libao-dev, gettext
 Standards-Version: 3.7.3
---
 Build-Depends: debhelper (= 9.0.0), libmpcdec-dev (= 2:0.1~r435), libao-dev, gettext
 Standards-Version: 3.9.3.1
 Homepage: http://mpc123.sourceforge.net
 Vcs-Git: git://git.debian.org/collab-maint/mpc123.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/mpc123.git;a=summary
diff -r mpc123-0.2.4/debian/copyright /home/invent/Dev/packaging/mpc123/mpc123-0.2.4/debian/copyright
1,27c1,29
 This package was debianized by Daniele Sempione scr...@oziosi.org on
 Thu, 12 Jan 2006 23:08:02 +0100
 
 It was downloaded from
 http://mpc123.sourceforge.net/dl.php
 
 Upstream author: Fernando Vezzosi fvezz...@masobit.net
 
 Copyright 2005, 2006 Fernando Vezzosi
 
 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 2 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 with
 the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
 if not, write to the Free Software Foundation, Inc., 51 Franklin St,
 Fifth Floor, Boston, MA 02110-1301, USA.
 
 On Debian systems, the complete text of the GNU General Public
 License, version 2, can be found in /usr/share/common-licenses/GPL-2.
---
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
 Upstream-Name: mpc123
 Upstream-Contact: Fernando Vezzosi fvezz...@masobit.net
 Source: http://mpc123.sourceforge.net
 
 Files: *
 Copyright: © 2005 Fernando Vezzosi fvezz...@masobit.net
 License: GPL-2.0+
 
 Files: debian/*
 Copyright

Bug#641903: ITP: subsurface -- Half-arsed divelog software in C

2012-04-25 Thread Khalid El Fathi
The package is almost ready to be uploaded

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'www.elfathi.fr`
  `-



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



Bug#666953: ITP: libdivecomputer -- A library for communication with various dive computers

2012-04-25 Thread Khalid El Fathi
The package is almost ready to be uploaded

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'www.elfathi.fr`
  `-



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



Bug#668665: ITP: gnac -- audio converter for GNOME (Git package ready)

2012-04-16 Thread Khalid El Fathi
Hi,

Packaging is ready. Upload coming soon.

http://anonscm.debian.org/gitweb/?p=collab-maint/gnac.git;a=summary

Cheers,
Khalid.



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



Bug#668905: ITP: dfc -- display file system usage using graph and colors (Git package ready)

2012-04-16 Thread Khalid El Fathi
Hi,

Packaging is ready. Upload coming soon.

http://anonscm.debian.org/gitweb/?p=collab-maint/dfc.git;a=summary

Cheers,
Khalid.



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



Bug#666953: ITP: libdivecomputer -- A library for communication with various dive computers

2012-04-02 Thread Khalid El Fathi
Package: wnpp
Owner: Khalid El Fathi kha...@elfathi.fr
Severity: wishlist

* Package name: libdivecomputer
  Version : 0.1~20120402
  Upstream Author : Jef Driesen jefdrie...@hotmail.com
* URL or Web page : http://www.divesoftware.org/libdc
* License : LGPL-2.1+
  Description : A library for communication with various dive computers
  Libdivecomputer is a cross-platform and open source library for
  communication with dive computers from various manufacturers.


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

Kernel: Linux 3.2.0-2-686-pae (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



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



Bug#664655: Pyp - Debian

2012-03-29 Thread Khalid El Fathi
Hi,

I have a problem to introduce Pyp into Debian. Could you please add
licensing info into your source. (A BSD header at the top of the pyp
file at minimum.) A tarball and changelog would be a nice bonus.

Cheers,
Khalid.

On 03/22/2012 08:38 PM, tobs wrote:
 Hi, I'll add this on the next update...
 
 thanks,
 
 t
 
 
 On Wed, Mar 21, 2012 at 12:59 PM, Khalid El Fathi kha...@elfathi.fr wrote:
 
 Hi,

 I prepare a package Debian and could you please create a tar.gz with
 your changelog (ex: pyp-2.11.tar.gz).

 $ lintian -I --pedantic --color=auto pyp_2.11-1_i386.changes
 I: pyp source: debian-watch-file-is-missing
 P: pyp: no-upstream-changelog

 Cheers,
 Khalid.

 --
  .''`.   Khalid El Fathi kha...@elfathi.fr
 : :'  :  GPG: 4096R/9368CAEC
 `. `'`
  `-

 


-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#665394: Package ready for upload

2012-03-24 Thread Khalid El Fathi
Hi,

The package is ready and will soon upload.

http://git.debian.org/?p=collab-maint/multiping.git;a=summary

Cheers,
Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#665394: ITP: multiping -- Utility for monitoring one or more TCP/IP hosts

2012-03-23 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi kha...@elfathi.fr

* Package name: multiping
  Version : 0.1.2
  Upstream Author : Dawid Winiarski daw.winiar...@gmail.com
* URL : http://dawwin.x10.bz/index.php?lang=endescription=4
* License : GPL v3
  Programming Lang: C
  Description : Utility for monitoring one or more TCP/IP hosts
  This program can check multiple hosts at the same moment using
  ICMP packages (known as ping). It allows to define list of hosts
  which will be tested and shows detailed statistics of each of them
  (average time to wait for package, maximum time, minimum time etc.)

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

Kernel: Linux 3.2.0-2-686-pae (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



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



Bug#534981: Package ready

2012-03-21 Thread Khalid El Fathi
Hi,

The package is ready and will soon upload.

http://git.debian.org/?p=collab-maint/keepnote.git;a=summary

Cheers,
Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#653835: Package ready

2012-03-21 Thread Khalid El Fathi
Hi,

The package is ready and will soon upload.

http://git.debian.org/?p=collab-maint/keepnote.git;a=summary

Cheers,
Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#663979: Package ready

2012-03-21 Thread Khalid El Fathi
Hi,

The package is ready and will soon upload.

http://git.debian.org/?p=collab-maint/uptimelogger.git;a=summary

Cheers,
Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#654554: Package ready

2012-03-21 Thread Khalid El Fathi
Hi,

The package is ready and will soon upload.

http://git.debian.org/?p=collab-maint/wfrench.git;a=summary

Cheers,
Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#382914: Bug: #382914

2012-03-20 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I just made a test with the new version 1.109-1 (sit/testing) to see
if the problem persists and it works well.

I wait few days and I close the bug.

Cheers,
Khalid.

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPaJRHAAoJEOtK9aGTaMrsP3MQAIrjAzrw+M69wMP5kbc3exD3
QINzRpjRutc2pjVjnOGMUy1838iJ3E8FG7A1incM0+F9jS3O+MfFkKkIWEOSDqch
D4gUvnMo49N50FzUZhH2/hvJb06eVfknufV4ldf6fCnbmqLfEHVtDXmSPHqFbBLy
vfUsPUQgKJo3LcyjVpaO2ZBEpRFyxW5cJCtRYM0cLOxDjG+baT9xq0YiB1svGmAA
Pu595Jd4SrXUL6I9cNJW7JhDaeERmYFDgdJbdlwD3jiouXa+hXMhk6cuHUsr8RLV
Ukbgy+Y7T2yfRLvhI70MHxex386I6FZ1Aw83SLrIQq4sugwASyPvuSgOQZbYwTw5
6+tIs9pyG/hiXvfM2/4a56iTlIVQeSV8JdPsIlQW/WK3PeG2KwNtYiCEr69qEcIn
jjYvjTZ7NVZ74ysKa/frKUWkQbTAJgjFgvtFkyVkZ1MDjphsJ6GdejsklDKrAyDx
FB4HVLr4cbuoyBFB9c/3twfeo3aMQPhJuW3BudwwGtZFFBHFnQ++kQXQcYRgjIWU
SIhPVQ8V1g4ATRhEPCFx8+FoAGNecVLgnNrsh7gIYZC2hKoZJ9ESzPey3DZuZRek
N7emZUULumdDjdZjPQDlyhaIGQwarZRNHAZMVzrPIecw9+JIEp6qxVRT77kUJbc5
bNFZLub63CYhDYDyj+Uq
=R279
-END PGP SIGNATURE-



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



Bug#329474: Liste de mots

2012-03-18 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Bonjour,

Puis-je utiliser vos listes de mots de manière à compléter la liste de
mots du dictionnaire wfrench[1] du paquet Debian[2].

1. http://packages.debian.org/sid/wfrench
2. http://fr.wikipedia.org/wiki/Debian

Merci d'avance.

Cordialement,
Khalid El Fathi.

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPZiWfAAoJEOtK9aGTaMrsocEP+wSqv7jrqr18tZ1LflPvSTef
5fQ1p3t81W+VftZZQGbqVuQ2JJCmA9RKEqsYEBqIpH6mn584VyPG26971dbOufUK
A8tvfFg9I8hyCHGLGfQempQAi6Jv7064sXrRyk1EKHjGJK0MXisNnBx6ayir6SGl
inYMC9VPZfjMLUDbYlc9fDUZgRT9yKjAODwfIKa4ZGPTpPlhyOEtxIebj1MQOIQ3
0Ho61NkrkkiEFkWftKqT0yAmysMEqBH2UYDnXhZzCMwEYUVnpCLRJnwHnL/8DzPX
pYLg759275EszwZdlvCEvctBcH85enebPsns8hli/Q730nxSuiWSqXCotsPTIxDC
+yk7zwPOVoH0uJMDJo/U361BoENnC7A+jmAqmYWwhy61/ftrwZN36/8OzUt8GYPA
171kmm6AvkPehL/N5LnsSnz4SIST3PgJuwOJApDijZ+dszFoZZ7UX5bNEZsW2sjd
q+RSH7QDRO5akwBwSnMyw/uoSNfC89FuS4j96HWEhE/3ZyQ52C8lAdua92VeztmK
WCc1mKAUyOHgIVoIjaDm3G6IvkREEJHS6CryPB4Dmjarz3khu4nwiy4SE6Di/OW0
TATopGTPRZvxURa0zuBSrpg6/ym0xj8jFWYVE0GLP/ZIJx0fbCSHnkyKjDgZNNfr
cBa9flbpwnmxchxmCdqS
=fdD+
-END PGP SIGNATURE-



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



Bug#663979: ITP: uptimelogger -- Utility to track the last uptime

2012-03-14 Thread Khalid El Fathi
Package: wnpp
Owner: Khalid El Fathi kha...@elfathi.fr
Severity: wishlist

* Package name: uptimelogger
  Version : 1.0
  Upstream Author : Akshay Mankar itsakshayman...@gmail.com
* URL or Web page : https://github.com/akshaymankar/uptimelogger
* License : GNU GPLv2
  Description : Utility to track the last uptime
  UptimeLogger is a cronjob, which continuously logs the uptime of
  the system every minute to /var/log/uptime. At every boot this
  information of lastuptime is appended to the log file named
  /var/log/uptime.log` The logged uptime is precise upto one minute.


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

Kernel: Linux 3.2.0-2-686-pae (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



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



Bug#664013: ITP: uptimelogger -- Utility to track the last uptime

2012-03-14 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi kha...@elfathi.fr

* Package name: uptimelogger
  Version : 1.0
  Upstream Author : Akshay Mankar itsakshayman...@gmail.com
* URL or Web page : https://github.com/akshaymankar/uptimelogger
* License : GNU GPLv2
  Description : Utility to track the last uptime
  UptimeLogger is a cronjob, which continuously logs the uptime of
  the system every minute to /var/log/uptime. At every boot this
  information of lastuptime is appended to the log file named
  /var/log/uptime.log` The logged uptime is precise upto one minute.


signature.asc
Description: Digital signature


Bug#663616: missing Depends: python-pkg-resources

2012-03-13 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 03/12/2012 06:38 PM, Justin B Rye wrote:
 This package has what looks like an obvious and crippling library 
 dependency bug:

Hi Justin,

Thank you for your report bug. It's fixed in new version.

Cheers,
Khalid.

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPXxvjAAoJEOtK9aGTaMrsCqQP/jeUE5jI3ZpCQ8/ne2ITjSFw
edljNRqvFr3KWt2bTC3yKVqatiHyASzFn5iN08jmdNYxtDGjbI0uf2a9Mz2KRLmN
Kz36vm9immOH4zksxM3tGfvqJ3VZJXnXtSHcKEwVJto+0EnFaQg+nbpf/hU2hdBB
bfCEZh48dFIRRzeLZPG7hgMKuQsHmAoU2rUBx/Dp6nrLlOi4tLt9RKPWCHzJuLp6
ID0j5ZBZCT/wbNZ+uztZn+SPXsf9h109Ef/bokWmhXYNeg3fGDboBeOEOGX6bTbV
UFSIgKOHEglKWynyShOv0bJg4gF2jA4CWGR6MD7Os8Dw2Pwu2eWhDh/At86ziJHQ
zoh3sqouMge9ff4dVCHCQjxNZ8NJpsSGR7uS03HvO+nrgL3C0QcBCUwu5mBxXJAJ
57GfAvG+GbmDWUKsg9ZoF0WBVUkRJpK03iTI2jt9MTbJDHtUVIGYsUy8PsRr3Qgw
iTdGsTXt4AnRyfXbuL9SzhPn4zC5vJigbf0XOq/YsQOqTsOWrCvhHY6r9afrNavU
VtOAXHBAOr2tACKNZzBNFaGsKnZl8M8lSBRpiabXW+KgvMt/7Q8fBvf5l5l8i2l4
XgQRNJ5WhWb2p5HHMnHRysaBgORBRXORQ0nmPXfVZvdkdn3wVKSnvqgC12sMVeZH
3oLsZWsPwkp6M4bPZ7k5
=O3Gp
-END PGP SIGNATURE-



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



Bug#663413: gif2apng

2012-03-11 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Jari,

I finished prepare the gif2apng package. Could you please liberate the
git gif2apng.

See ITP: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663413

Cheers,
Khalid.

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPXLwXAAoJEOtK9aGTaMrsHtIP+weEegdkm8DD9AxNJPV37UU4
zCAyVdrCjG0OxtlgTgI7glZh6YS57Yo1TcsxbLXa3gLfEdRqL76X3IhEekLu/wS+
L339Qihk3vtdaWCzV65l/wHXEIcFMBfDPmn0MGsVulu3r5JZmzondn2IcvV3iXOz
qV51Jysrw6w8V36MWKvCTSF19kWkO0s+T3DVlV9GE8v4kIYPkKt01EipGZXHFwnh
BDu4zYXrLQwyIpv7vxEbf38+ka2HI+AmT+tf95z+3ZK4cThM2FVNLGJf571jEgED
r5AZTlSnjEyjohjO1Lihj5AKTnPsshq/DUQou28kBs0erF1doPA4vkjXlzFCtmbO
e9idTjdEpsQdNwUAwq8qFj77rbal4RQJIopATF/OuzTjuG7+zUIT21P5YyxhrGoT
gh86kVP3HzX7LWw5JbKCXmal14oRneHzy/IaJuyEmWYXAQ2NEdOsh65KgdTivCc3
Cdd6dPLty/wgRo7BIERtyvXf21R9fjoUWpF0ufcHMkJky3nKmeAuau1AOk/IhVIR
MnjF5Yh+Irs3dqYwbLpFW74NDOPcLRdmqReag3feCiXkT3lVXO5IEeQTX3rUDUCP
ZbupIXhbOCP6qWCBl+zjI9LvXzJ76OkdnRbMHlcyeBFe7E1DqFobuZgfHBVY7VMz
zHm1u3SVK5KDgrIqPkiI
=84DM
-END PGP SIGNATURE-



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



Bug#663349: debian-maintainers: Please add Khalid El Fathi to Debian Maintainers keyring

2012-03-10 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: debian-maintainers
Severity: normal

Hi,

Please add Khalid El Fathi to the Debian Maintainer keyring.

Find the corresponding jetring changeset attached.

Cheers,
Khalid.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPW3O+AAoJEOtK9aGTaMrsHiUQAM771MFpHtoEwIvmMPfkkeH8
Krk4xCLaMtlG9vus2cBxPVFgvbGHKG2gs1wIcfrwB/XOdefwgyXBPYO1+9i461YL
Mpd8mS3Q31s7v70oQtntgcIWTqlEFgjAGVgvYzNoaI3RvjcKS9n2mzFEHQGUcFnr
lAYZG4KOavBW0wGJj+meVG9nb3ZQjvtux0xLOgvEguqHd1reEcU/5c78H1UliQwo
LpfLG3akx/otF1w8JeqpAeUXYyViThOEYAg8soV5hRKEoBuWLWBL94rO4bliTayA
eOnXS3LwqtBnIhnxnRuj5B25kX+9zYm5BlbVc46b/d6FldVOlun4pAKi67RQuHnD
KICEmByifUVGbwziBBndTObG4YQcnTPtGhTUB/tYeijCfVQEcIa8g48lTXo47CyG
IF2Hb30DHZQH6yRiTGTJh3y1y4d/Ssy/mO+CMVW6r8SQJ/VuMNK5nb+Qk67J/Cx2
HydLVX93ugvUounrOLXHvnv6L8+zALBNSFUHg7YlxTQ5qY0sX/zozUFQ++Sc5KcD
+Ph5WYGV/wpGeT9f1iOZcYYCOYhxIE9Y9kQtRZGGkiV0morP8XNpCVBXdvXzFkrT
AuzEhchAVNF6OLkLa5rlr2QHnSOrTukAOXH7IrSw7bhiW6vV1ScEDL3ibgMdzwmQ
S2kW7gOaWNiEjagdvVQ/
=KZ8f
-END PGP SIGNATURE-
Comment: Add Khalid El Fathi kha...@elfathi.fr as a Debian Maintainer
Date: Sat, 10 Mar 2012 15:54:14 +0100
Action: import
Data: 
Recommended-By:
  Francois Marier franc...@debian.org
Agreement:
  http://lists.debian.org/debian-newmaint/2012/03/msg00018.html
Advocates:
  http://lists.debian.org/debian-newmaint/2012/03/msg00019.html

  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: GnuPG v1.4.11 (GNU/Linux)
  
  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
  Ak9NHPsACgkQdFxHZtTKzf

Bug#662761: ITP: python-colorama -- Cross-platform colored terminal text.

2012-03-06 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi kha...@elfathi.fr

* Package name: python-colorama
  Version : 0.2.4
  Upstream Author : Jonathan Hartley tart...@tartley.com
* URL : http://code.google.com/p/colorama/
* License : BSD
  Programming Lang: Python
  Description : Cross-platform colored terminal text.

Makes ANSI escape character sequences, for producing colored terminal
text and cursor positioning, work under MS Windows.

ANSI escape character sequences have long been used to produce colored
terminal text and cursor positioning on Unix and Macs. Colorama makes
this work on Windows, too. It also provides some shortcuts to help
generate ANSI sequences, and works fine in conjunction with any other
ANSI sequence generation library, such as Termcolor
(http://pypi.python.org/pypi/termcolor.)

This has the upshot of providing a simple cross-platform API for
printing colored terminal text from Python, and has the happy
side-effect that existing applications or libraries which use ANSI
sequences to produce colored output on Linux or Macs can now also work
on Windows, simply by calling ``colorama.init()``.

Demo scripts in the source code repository prints some colored text
using ANSI sequences. Compare their output under Gnome-terminal's built
in ANSI handling, versus on Windows Command-Prompt using Colorama:

image:: http://colorama.googlecode.com/hg/screenshots/ubuntu-demo.png
:width: 661
:height: 357
:alt: ANSI sequences on Ubuntu under gnome-terminal.

image:: http://colorama.googlecode.com/hg/screenshots/windows-demo.png
:width: 668
:height: 325
:alt: Same ANSI sequences on Windows, using Colorama.

These screengrabs show that Colorama on Windows does not support ANSI
'dim text': it looks the same as 'normal text'.


- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPVc6hAAoJEOtK9aGTaMrsEVMQAKjYNeqcR3MDGtTTc79Y3znh
PedPfHSHHfqnzODirtJ7H0C6I1KZOWdVN6b2QzPmuf6ewLkxMvmTGH92GAJbm9Yc
OZJBr1/BONeqhpzN3SHOKWSwCON5A0RMEn4mcqW4wCHj/ziSxi6UZ5gUShBaeTsU
AdVkf9Gnb5siIJFJK2Sh5BHUBtT9Muz5zdkAwNWp5hADlMVRXtQs6YqAXhyimqf4
O5gHHfiIvAqwberyqdQjWoeipc8ZFVIEaOSTLFQV7WUqqoyqwYzxbtMRs/qcuVG9
Y31MdZ3oHuDEZq7u9MRXzFw9/6I6NfEky1jUb85rquvD6VkyuyFRX4x7MsDUda3n
35S/gKcgelPV3Eiiy9ArVBqrBU0AeHfEIr5fw5oILvPKhe0WbRIMVCOtNtho7eqE
sl460f1OmvJWoM0ts2U8xWQMnV63k/+i9MdnbmsZaGATj8ON4ZjBJ1fC9cca+3rX
I+tz9eY/B0o49EtL6J+HJNxkLFLqilHUHSTdGxOyUgUqU2sQjWGeFC978DjQUV2G
zBH1kO/r/oy1+477RMwiC/VwqbIdF3XCXLB/S8OQwjuzOhj0txg3VXjjNg5bwuGe
vjYrsMismnT8uf/iU/j25JNj8d+nQxUgFJPdy/B5aPZcvPXxjfwYBr5BaRjKjkLP
7kvcF8Qa1xqzMYytTYMq
=T9Ui
-END PGP SIGNATURE-



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



Bug#583242: ITA: usermode -- Graphical tools for certain user account management tasks

2012-03-05 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

retitle 583242 usermode -- Graphical tools for certain user account
management tasks
owner 583242 Khalid El Fathi kha...@elfathi.fr

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPVOn9AAoJEOtK9aGTaMrs5kEP/09TqMuE2dKrUjRohv5eMPkW
H+d5Ghq/K/pC1I4SlqlaaHYECeNioLCiMSCuxBsChtrTQ5bn8mAHBOu+12z89uxG
bmkkFxxH/ohvhKI3TzcCB+VBt+2/cJNyOerK/PMjO1c6v8A8lC6THohY5SqHl0gP
iYvw7LYlK7Q31abrCcF9WRpEzoFmfnm2EB4xBtzdZsSzTDqh5hz/qG8+NNed+L8A
HnfyRLhUIcdnPn5/cWmCeVsV4x635RRjA2sdHYfC6TsSdrYWnudWgyAiG8pg+CyH
DsMmEJViKTHzSITEqZjtae9NK5TTG8cuI/MNr+cV7RY0gMQkb8FJyzt066SfQ6K8
PGLwHqb7yPLEpir55+FIsjZjABvm1zmt4t36kd6lEo/xtb9E1t4sfLYXN87I1/We
PckBhdzNKzQmi0ROwUk3mQcUm8OP55PcbvCWwCkqlFiHgsctpvp2DdLggJaDBRqO
FmJcZxN9tMhUVJy83MjhA8goGGnR53+bh7djDhlRSXo2sJaOEIH9BG38/aTT/Kup
/VXudfBCNtA0fqEVjpKC1ClAEkR7rqXCqsERrRSNO5Rop+546iPa2K340a0GqdDf
dJrQdR+4y2tFoIzKYIw49TdSWTwa9aTcomZ2MvRaaJgokQj+UTMlG78n9xnunZb7
w/8T/HNowKAyx2BZHVeW
=BBS+
-END PGP SIGNATURE-



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



Bug#650668: ITP: tardiff -- Tarball comparison tool

2012-02-29 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Alex,

If you need help or do you want me to take care of it ? Please don't
hesitate to contact me, I'll be happy to help.

Greetings.

Khalid.

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPTjNzAAoJEOtK9aGTaMrswjIP/3w+QuaAX2TpziRMmCcgpsha
+KL726ClQah0WsHOu23g2EPLW9D2OSw316AP2Jlnv/plWvNb5VUU5yGNEmSD48KV
JQj/DaqxcGkkLpNWUNXOTZ3eFf9BV58EnWPfAsMYCNctdMVnnKJvVVsXQW7DJay3
AZf2PDShrpONMfpb3CFtdZpC8hOGKK0Srk96LceZJYHvqXUMy7pr+rARRQIXQ5WT
AOPRsc2RGFvUL6El3FGJEoHRV/mV2Ini97mqaMtJq+xEWhy5P6vU9N3a2T1Ua/zN
KhvI5HiwJA1LUu0DEp0D8tmPsDYsXE9qlgLmVeHeA8ZxA7FXcR2jh4vtOy7tKSY9
L6QlSjIKe4/0jZ1udWLG0ymFCMOmFhXjn+ywl/8qZTVKEfaK51N4NfXPb7AiAfNg
r+l/4uthsQN2yIC/PuEX2qi0EyCaibbB14Pw1c0YQjRBzLSg+b2SePBH7KKPbGyE
5jBN5TDdJZkMoEwreXvthUHKBAsrgr8vCGJFov8CZD1Qqbx/Yj0leqa5QrlIG0e0
lWbKiog/HEVCLHga6P0aUfJWTa6E6foatR1mJM5jVgWscxju9w1I2bEk1k02Ec9p
1CAmL8BANjQkUwt8LyiCRXKKYV6YnV9GQhcfbU2RfUXp8cj6HZHrNiDaEt4SwshE
YygDBJgYviBMmOvDOP+x
=pOvD
-END PGP SIGNATURE-



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



Bug#650668: ITP: tardiff -- Tarball comparison tool

2012-02-29 Thread Khalid El Fathi
On 02/29/2012 04:14 PM, Axel Beckert wrote:
 But yeah,  I think I'd  better upload a  patched 0.1 (see  below) than
 waiting for 0.2.
 
 The package in the current state is available here:
 
 http://noone.org/debian/tardiff_0.1-1.dsc
 http://noone.org/debian/tardiff_0.1-1_all.deb

Ok thanks for the reply.

Khalid.

-- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-



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



Bug#654382: ITP: httpcode -- utility that explains the meaning of an HTTP status code on the command line

2012-02-29 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

retitle 654382 ITP: httpcode -- utility that explains the meaning of an
HTTP status code on the command line
owner 654382 Khalid El Fathi kha...@elfathi.fr

- -- 
 .''`.   Khalid El Fathi kha...@elfathi.fr
: :'  :  GPG: 4096R/9368CAEC
`. `'`
  `-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPTltEAAoJEOtK9aGTaMrsY3cP/iQxUqcv1y6cJTbftCgTGWWv
HEqYTwLHjSEKyeAhy0COQiO6j7i2Yu5kSFeYV1R2KoZzVrMWCZ2XU+Xnq2OmbnsH
EN/Fw0tU09luU79JHyjpMfMBMQhMQZtmM4ArSAgbq/TZOLbGfOoVtxVHEEa5zvtn
E7IqTDJn1DUbG6JJPYYELToeMbf5JfbYE5CKtnqCZpbaMIymJ29iPYd+bZJ6cc+G
es1xsUDfbhKiqPA1EsMrLA/9OZ3Bgv/OLjohKvWCCimBhKMa+nm5qFQayVDLa2zl
PXeUHwu1BUzoIsWZmPgdVuCOVi9XDl3WFlKUVk7nBB86ODsQDYUBvMkYJhRfqNRY
wXCexiCu50PYGp/bCcj6F5AnawQtw5S/tYOunmlJ0XGLE2cKP6xyJulasVFquh7A
HEnnP51ke5T38RytT6Drr6TAwlY19TicvSBTRsBpKk/pzHK/jN2ajv7fk9QkXqYY
mMFgGYnOB1+lJdPV22zKIFDKZqmGh/jTpf/JAnZBgkjqxK0KAsWItAkeFDddYJH0
dqk/nkfa1qJUdWSXMq8U3JIXuJDlxhKi3MXIXMAAPpvoq7oWEIsM4Gplcsno0qfO
WAOeSFhgo6poALa1XV+GOzDst+jwkd7/EdwaXXt6n3RmmLD4+eeW/rZqbc5PYlRk
5YmIX4mpaRhjBkTML1tO
=d1R9
-END PGP SIGNATURE-



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



Bug#654324: Adopt knoker

2012-02-22 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Pablo,

I use knocker and would like to adopt it.

Thanks,

- -- 
Khalid El Fathi
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPRNOJAAoJEOtK9aGTaMrsNRoP/Av4B11KfQIyu/F8cwiu5oVI
LIq4RF/ZF10QTRJkMcLhbU/9qi++vmhpwSGA/dCWN6nDD4rU69HB8aZDjtlS/1jr
0IYKF1FMmHE26vfjMvCRFqGgrAkFvuMS1AXpLf1i62KPOrgWGqx5qFWew3wg+LM3
LET/DtfBz/YqxVSStuE/DezHhD+KOWzJlmXrHoO1RDNTpuf0F698K8uO0lfqdxMq
oZbHV3TKSBNx0EocvQcvUNT7pxo67RE5eIPyIyEY6w2JOpITcLoWeo2AZ9m8kFW+
ljvL7xSUoV9A0M4EivxflPppcXPODdpHNHxGtJ9XVnDnuRtsnlfl+BwulKcNYPfJ
fdhX9dzSjlNcjTkI+31QouC3diO6Vrb5W0KCoGGVT2SE+zPEfPBRykWEOT6ywiAj
8EnYOxhr85IV0wd9Reh8RTzsbCZasLpkzrpCaqsEYUZ4uLpXgfXRnjWVsaTnVLbx
LIXjbmg4lyIaBBFQj72NiaDD6SGhdnIkINZ6VX86KThBfnqQV2DVkKxqzzCcTyHP
2zRY/nVLJXQPuHJtpo2vvNs7nwajuP95J36odICkvNZFf/i4kp+4gQorRO5rsx5u
kvzXSYhvfs0AEX6fR0FZXyREVUdulcKKpIrnJBP1HC68g8B1fEpLUc+PKiV1E8QI
yEKHbZ42b8zC4HVUZLdj
=DHQu
-END PGP SIGNATURE-



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



Bug#392472: terminate called after throwing an instance of 'Glib::FileError'

2006-10-12 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

Please upgrade your system and run gpar2.

Best Regards,

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFLpC4AA9uiVgB4NoRAlFeAJsEdiD6pV23Em6aYSwDRFhx42LlwACdG3ez
+hSLA5X1VJDqf7kjYLwjOj4=
=CRWp
-END PGP SIGNATURE-


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



Bug#387813: ITP: gpar2 -- A GUI for verifying and repairing PAR and PAR2 recovery sets

2006-09-16 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi [EMAIL PROTECTED]

* Package name: gpar2
  Version : 0.3
  Upstream Author : John Augustine [EMAIL PROTECTED]
* URL : http://sourceforge.net/projects/parchive/
* License : GPL
  Description : A GUI for verifying and repairing PAR and PAR2 recovery sets

A simple, easy to use graphical interface for verification and repairation of
PAR v1.0 and PAR v2.0(PAR2) recovery sets. PAR1 support is currently minimal,
as it is deprecated this most likely will not change, so do not expect the
headers, progress, output, and status to update when performing actions on
these. GPar2 is based on GTKMM, a wrapper for GTK+, and requires the
standard par2 library, libpar2, to run.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


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



Bug#387817: RFP: libpar2-0 -- A library for performing comman tasks related to PAR recovery sets

2006-09-16 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist

* Package name: libpar2-0
  Version : 0.2
  Upstream Author : John Augustine [EMAIL PROTECTED]
* URL : http://sourceforge.net/projects/parchive/
* License : GPL
  Description : A library for performing comman tasks related to PAR 
recovery sets

LibPar2 allows for the generation, modification, verification, and repairation
of PAR v1.0 and PAR v2.0(PAR2) recovery sets. It contains the basic functions
needed for working with these sets and is the basis for GUI applications such
as GPar2.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


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



Bug#387819: RFP: libpar2-0-dev -- Headers for the libpar2-0 library

2006-09-16 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist

* Package name: libpar2-0-dev
  Version : 0.2
  Upstream Author : John Augustine [EMAIL PROTECTED]
* URL : http://sourceforge.net/projects/parchive/
* License : GPL
  Description : Headers for the libpar2-0 library

LibPar2 allows for the generation, modification, verification, and repairation
of PAR v1.0 and PAR v2.0(PAR2) recovery sets. It contains the basic functions
needed for working with these sets and is the basis for GUI applications such
as GPar2. This is the dev package containing the headers for libpar2-0.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


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



Bug#387823: Error loading icon xarchiver.png

2006-09-16 Thread Khalid El Fathi
Package: xarchiver
Version: 0.4.0-1
Severity: minor

When started xarchive reports the following warning:

[EMAIL PROTECTED]:~$ xarchiver
(xarchiver:5626): Gtk-WARNING **: Error loading icon from file 
'/usr/share/pixmaps/xarchiver.png':
L'ouverture du fichier « /usr/share/pixmaps/xarchiver.png » a échoué : 
Aucun fichier ou répertoire de ce type
[EMAIL PROTECTED]:~$


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages xarchiver depends on:
ii  libatk1.0-0 1.12.2-1 The ATK accessibility toolkit
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libcairo2   1.2.4-1  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.0-5  generic font configuration library
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libglib2.0-02.12.3-2 The GLib library of C routines
ii  libgtk2.0-0 2.8.20-1 The GTK+ graphical user interface 
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libpango1.0-0   1.12.3-2 Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libsm6  1:1.0.1-2X11 Session Management library
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxcursor1 1.1.7-4  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.1-3X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages xarchiver recommends:
ii  arj3.10.22-2 archiver for .arj files
ii  bzip2  1.0.3-6   high-quality block-sorting file co
ii  p7zip  4.42.dfsg.1-2 7-Zip is a file archiver with high
ii  rpm4.4.1-10  Red Hat package manager
ii  unzip  5.52-9De-archiver for .zip files
ii  zip2.32-1Archiver for .zip files

-- no debconf information



Bug#387823: Error loading icon xarchiver.png

2006-09-16 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 387823 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFDG2rAA9uiVgB4NoRAlsWAJ45u5yhKZuxxACdDRyPX8pFsqS+VgCfVUyq
1dGMSichEH5WXMk0kxtU3lc=
=hySO
-END PGP SIGNATURE-
--- rules.orig	2006-09-16 22:06:19.0 +0200
+++ rules	2006-09-16 22:06:27.0 +0200
@@ -57,7 +57,6 @@
 
 	# Installing package
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/xarchiver
-	mv debian/xarchiver/usr/share/pixmaps debian/xarchiver/usr/share/icons
 
 	# Installing pixmap
 	install -D -m 644 debian/pixmap/xarchiver.xpm debian/xarchiver/usr/share/pixmaps/xarchiver.xpm


Bug#380811: Python transition (#2): you are building a private python module !

2006-09-11 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 380811 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFBRvxAA9uiVgB4NoRApEdAKCrBsVty+8tgVgDsdSXmUyg27W5yACeLNZr
WrTN+BvYsczzL2IOfacAnmM=
=FGTT
-END PGP SIGNATURE-
diff -u gdeskcal-0.57.1/debian/changelog gdeskcal-0.57.1/debian/changelog
--- gdeskcal-0.57.1/debian/changelog
+++ gdeskcal-0.57.1/debian/changelog
@@ -1,3 +1,13 @@
+gdeskcal (0.57.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control:
++ Updated to Standards-Version 3.7.2.
++ Updated to the new Python Policy (python-support) (Closes: #380811).
+  * debian/rules: Updated to the new Python Policy (python-support).
+
+ -- Khalid El Fathi [EMAIL PROTECTED]  Sun, 10 Sep 2006 22:28:48 +0200
+
 gdeskcal (0.57.1-1) unstable; urgency=low
 
   * New upstream release
diff -u gdeskcal-0.57.1/debian/control gdeskcal-0.57.1/debian/control
--- gdeskcal-0.57.1/debian/control
+++ gdeskcal-0.57.1/debian/control
@@ -2,8 +2,9 @@
 Section: x11
 Priority: optional
 Maintainer: Sebastien Bacher [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper (= 4.1.65), python
-Standards-Version: 3.6.1.0
+Build-Depends: debhelper(= 5)
+Build-Depends-Indep: python-support (= 0.4) 
+Standards-Version: 3.7.2
 
 Package: gdeskcal
 Architecture: all
diff -u gdeskcal-0.57.1/debian/rules gdeskcal-0.57.1/debian/rules
--- gdeskcal-0.57.1/debian/rules
+++ gdeskcal-0.57.1/debian/rules
@@ -43,10 +43,10 @@
 	dh_installchangelogs 
 	dh_installman
 	dh_installmenu
-	dh_python
 	dh_link usr/share/gdeskcal/gdeskcal usr/bin/gdeskcal
 	dh_compress
 	dh_fixperms
+	dh_pysupport
 	dh_installdeb
 	dh_gencontrol
 	dh_md5sums


Bug#380866: Python transition (#2): you are building a private python module !

2006-09-10 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 380866 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFBGlFAA9uiVgB4NoRAgGsAJ9pA5bxF18hMWxf098+ij0F0wrnAQCfWgXa
x4Y1g4RWxZn81mFwJTf75fg=
=W0ov
-END PGP SIGNATURE-
diff -u mboxcheck-applet-0.3/debian/changelog mboxcheck-applet-0.3/debian/changelog
--- mboxcheck-applet-0.3/debian/changelog
+++ mboxcheck-applet-0.3/debian/changelog
@@ -1,3 +1,13 @@
+mboxcheck-applet (0.3-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control:
+   + Updated to Standards-Version 3.7.2.
+   + Updated to the new Python Policy (python-support) (Closes: #380866).
+  * debian/rules: Updated to the new Python Policy (python-support).
+
+ -- Khalid El Fathi [EMAIL PROTECTED]  Sun, 10 Sep 2006 21:00:18 +0200
+
 mboxcheck-applet (0.3-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u mboxcheck-applet-0.3/debian/control mboxcheck-applet-0.3/debian/control
--- mboxcheck-applet-0.3/debian/control
+++ mboxcheck-applet-0.3/debian/control
@@ -2,13 +2,13 @@
 Section: gnome
 Priority: optional
 Maintainer: Sebastien Bacher [EMAIL PROTECTED]
-Build-Depends-Indep: python
-Build-Depends: debhelper (= 4.1.65)
-Standards-Version: 3.7.2.0
+Build-Depends: python-support (= 0.4), debhelper(= 5)
+Build-Depends-Indep: python-dev (= 2.3.5-11)
+Standards-Version: 3.7.2
 
 Package: mboxcheck-applet
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-gnome2 (= 1.99.16-3), python-gnome2-extras
+Depends: ${python:Depends}, python-gnome2 (= 1.99.16-3), python-gnome2-extras
 Description: A GNOME2 applet to check your mboxes
  Mboxcheck is an applet that checks mails arrive in your mboxes. 
  It has a list of indicators :
diff -u mboxcheck-applet-0.3/debian/rules mboxcheck-applet-0.3/debian/rules
--- mboxcheck-applet-0.3/debian/rules
+++ mboxcheck-applet-0.3/debian/rules
@@ -31,7 +31,7 @@
 	dh_link usr/share/mboxcheck-applet/mboxcheck.py usr/lib/gnome-panel/mboxcheck
 	dh_compress
 	dh_fixperms
-	dh_python
+	dh_pysupport
 	dh_installdeb
 	dh_gencontrol
 	dh_md5sums


Bug#384951: drpython: Uninstalable on sid

2006-09-09 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 384951 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFAymSAA9uiVgB4NoRAihiAJ9u0QcnRYaw6W5dknk6dEzHjWWZqgCgl2ml
9/a6jn+LYBy4m4NLLtTLvUw=
=vRNl
-END PGP SIGNATURE-


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



Bug#384951: drpython: Uninstalable on sid

2006-09-09 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 384951 patch
thanks and sorry... it is a good patch.

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFAzPmAA9uiVgB4NoRAoXfAJwJZqJXhx85mCQBM1QQ5OdXF3BGaACfYdYV
5WCi/2woGdG9nDMkx47dg2w=
=3lfz
-END PGP SIGNATURE-
--- control.orig	2006-09-09 23:33:02.0 +0200
+++ control	2006-09-09 22:39:32.0 +0200
@@ -2,13 +2,15 @@
 Section: devel
 Priority: optional
 Maintainer: Cédric Delfosse [EMAIL PROTECTED]
-Build-Depends-Indep: python-support (= 0.3), debhelper(= 5.0.37.2), dpatch
 Build-Depends: python, dpatch, debhelper(= 5.0.37.2)
+Build-Depends-Indep: python-all-dev (= 2.3.5-11), python-support (= 0.3)
 Standards-Version: 3.7.2
 
 Package: drpython
 Architecture: all
 Depends: ${python:Depends}, python-wxgtk2.6
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
 Recommends: wx2.6-doc, python2.3-doc
 Description: simple and customizable editor for the Python language
  DrPython is a clean and simple yet powerful and highly customizable
--- rules.orig	2006-09-09 23:31:34.0 +0200
+++ rules	2006-09-09 22:19:29.0 +0200
@@ -50,7 +50,7 @@
 	dh_link
 	dh_compress
 	dh_fixperms
-	dh_pysupport
+	dh_pysupport -pdrpython /usr/share/drpython/
 	dh_python
 	dh_installdeb
 	dh_gencontrol


Bug#380758: Python transition (#2): you are building a private python module !

2006-09-09 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 380758 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFAzdWAA9uiVgB4NoRArmLAKCb1/548JotV16JGLaHu3GoYWroHACfe9g3
KBaG8bB2NTxkvVds3ZANWi0=
=TRWZ
-END PGP SIGNATURE-
--- control.orig	2006-09-09 23:42:17.0 +0200
+++ control	2006-09-09 22:59:33.0 +0200
@@ -2,12 +2,15 @@
 Section: devel
 Priority: optional
 Maintainer: Cédric Delfosse [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.0.0), python, dpatch
-Standards-Version: 3.6.1
+Build-Depends: debhelper (= 5.0.37.2), dpatch
+Build-Depends-Indep: python-all-dev (= 2.3.5-11), python-support (= 0.3)
+Standards-Version: 3.7.2
 
 Package: boa-constructor
 Architecture: all
 Depends: ${python:Depends}, pychecker, python-wxgtk2.6
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
 Description: RAD tool for Python and WxWindows application
  Boa-constructor is an IDE oriented towards creating cross-platform
  applications built on top of the Python language and the WxWindows GUI
--- copyright.orig	2006-09-09 23:42:06.0 +0200
+++ copyright	2006-09-09 23:17:36.0 +0200
@@ -21,9 +21,8 @@
  
 You should have received a copy of the GNU General Public License
 along with this package; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-02111-1307, USA.
-  
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL'.
 
--- rules.orig	2006-09-09 23:42:28.0 +0200
+++ rules	2006-09-09 23:01:07.0 +0200
@@ -55,6 +55,7 @@
 	dh_link
 	dh_compress
 	dh_fixperms
+	dh_pysupport -pboa-constructor /usr/share/boa-constructor/
 	dh_python -n
 	dh_installdeb
 	dh_gencontrol


Bug#384951: drpython: Uninstalable on sid

2006-09-09 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 384951 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFAzFCAA9uiVgB4NoRAghBAKCdMqhu3WLHIlYaoN0C0d1J10pOYQCfen36
uzLnnJAHhV8gTW7iO/pL9kU=
=8JPt
-END PGP SIGNATURE-
--- control.orig	2006-09-09 21:48:29.0 +0200
+++ control	2006-09-09 21:57:03.0 +0200
@@ -2,13 +2,15 @@
 Section: devel
 Priority: optional
 Maintainer: Cédric Delfosse [EMAIL PROTECTED]
-Build-Depends-Indep: python-support (= 0.3), debhelper(= 5.0.37.2), dpatch
 Build-Depends: python, dpatch, debhelper(= 5.0.37.2)
+Build-Depends-Indep: python-all-dev (= 2.3.5-11), python-support (= 0.3)
 Standards-Version: 3.7.2
 
 Package: drpython
 Architecture: all
 Depends: ${python:Depends}, python-wxgtk2.6
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
 Recommends: wx2.6-doc, python2.3-doc
 Description: simple and customizable editor for the Python language
  DrPython is a clean and simple yet powerful and highly customizable


Bug#378634: Stop prompting on stdout at install/upgrade/remove

2006-09-08 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 378634 patch
thanks

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFAcpBAA9uiVgB4NoRAjztAJ9vhQJk5r38kYaqOrAQOb37LTaljwCgpUJg
uQLUK6/vUy2Q3gHcAa3aKAc=
=IlMQ
-END PGP SIGNATURE-
--- control.orig	2006-09-08 21:38:13.0 +0200
+++ control	2006-09-08 21:39:26.0 +0200
@@ -7,7 +7,7 @@
 
 Package: odontolinux
 Architecture: all
-Depends: php4, php4-pgsql
+Depends: php4, php4-pgsql, postgresql-client
 Suggests: postgresql-8.1 | postgresql-7.4
 Description: Dental office management software (PHP4 + PostgreSQL)
  Odontolinux! is a dental office management software. It is


Bug#378540: RFA: mypasswordsafe

2006-07-17 Thread Khalid El Fathi
Package: wnpp
Severity: normal

I've packaged mypasswordsafe (for KDE) on request, but I don't use it
myself, I use gpass on GNOME.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)


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



Bug#377379: Thanks

2006-07-10 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

Thanks for submitting your patch or this patch contains error, missing
= in line if (ch=='\n' || ch='#' ) break

Best regards,


- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEskAeAA9uiVgB4NoRAriAAKCYQIt8ypZpAoY8oWjy4BowlIktsQCfUBcw
Yse1l7Sg+ttzk8yVpTdm8b0=
=sj0n
-END PGP SIGNATURE-


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



Bug#339576: ITP: debian-updates -- Keep track of relevent stable security updates.

2005-11-17 Thread Khalid El Fathi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi [EMAIL PROTECTED]

* Package name: debian-updates
  Version  : 1.6.2
  Upstream Author  : Steve Kemp [EMAIL PROTECTED]
* URL : http://www.steve.org.uk/Software/debian-updates/
* License : GPL
  Description  : Keep track of relevent stable security updates

This is a simple script which is designed to keep a system administrator
updated when relevent security advisories are released.
.
It will download the list of the latest security updates from the main
security.debian.org website, if a locally installed package is
vulnerable an email will be sent to a configurable address, or the
details will be dumped to the console.
.
Homepage: http://www.steve.org.uk/Software/debian-updates/

- --
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDfEw9AA9uiVgB4NoRAiBBAJwJqVo8q+VhjteWc2/ap+3QMzeoPwCfbzF9
fNcr0tM1vnkL5QbU5DG1pCk=
=3Tsl
-END PGP SIGNATURE-


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



Bug#304645: Still interested on gpass?

2005-09-01 Thread Khalid El Fathi

 Hi,

 Do you still have interest on packaging gpass? Otherwise, I'm willing to
 package it.

 Cheers,

 --
 David Moreno Garza [EMAIL PROTECTED] | http://www.damog.net/
  GPG: C671257D - 6EF6 C284 C95D 78F6 0B78 FFD3 981C 5FD7 C671 257D
  Signed mail welcome. Encrypted mail preferred.


Hi,

I made package yesterday and i donwloaded it.

gpass_0.5.0-1_i386.changes uploaded successfully to localhost
along with the files:
  gpass_0.5.0-1.dsc
  gpass_0.5.0.orig.tar.gz
  gpass_0.5.0-1.diff.gz
  gpass_0.5.0-1_i386.deb

Cheers,

-- 
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA




Bug#319279: mypasswordsafe: Segmentation fault on AMD64

2005-07-21 Thread Khalid El Fathi

Simon Guest a écrit :


Package: mypasswordsafe
Version: 0.0.20041004-2
Severity: normal

MyPasswordSafe works fine for me on i386.  However, on AMD64 I get a
segmentation fault as soon as I try to unlock a password safe, so it's
unusable on this architecture.

cheers,
Simon

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.8-11-amd64-generic
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages mypasswordsafe depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu

-- no debconf information

 


Hi,

The AMD64 bug has been fixed in new version. This new version of package 
is [1]ready but I cannot upload because of [2]transition C++ ABI.


1. http://debian.edena-fr.org/mypasswordsafe/mypasswordsafe-0.0.20050615-1/
2. http://lists.debian.org/debian-release/2005/04/msg00146.html

Best Regards,

--
 .''`.  Khalid El Fathi
: :' :  [EMAIL PROTECTED]
`. `'   www.edena-fr.org
  `-GPG: 1024D/5801E0DA




Bug#314086: gip: [INTL:de] German PO file corrections

2005-06-15 Thread Khalid El Fathi
Hi,

Thank you for your patch or I have not added this line :

-Last-Translator: FULL NAME spam debain org\n
+Last-Translator: FULL NAME spam debian org\n

The domain debain.org really exists. (see:
http://www.debain.org/software/gip/)

Best Regards,


-- 
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA




Bug#310896: Typo in description times-tamping-time-stamping

2005-05-26 Thread Khalid El Fathi
Hello Bill,

Yes indeed, this will be fixed in the next revision.

thank you very much.

Cheers,

Bill Allombert a écrit :

Package: wput
Version: 0.5-1
Severity: minor

Hello Khalid,

wput description include this sentence:

 Main features are: resuming, times-tamping, wget-like interface,
  ^

I think you meant time-stamping.

Cheers,
  



-- 
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA



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



Bug#306402: gjots2: Option -seascape is not recognized for printing

2005-05-10 Thread Khalid El Fathi
Package: gjots2
Version: 2.1.1-2
Severity: normal
Tags: patch
Hi,
Thank you for your bug report, I just fund a new bug.
The gv command says :
gv is /usr/bin/gv
gv: invalid option -- s
This option -seascape is not recognized but is needed the following 
option : --orientation=seascape

I forwarded patch upstream
Best Regards,
diff -urN orig/gui.py new/gui.py
--- orig/gui.py 2005-05-10 14:12:49.0 +0200
+++ new/gui.py  2005-05-10 14:13:30.0 +0200
@@ -263,7 +263,7 @@
   self.client.set_string(self.text_formatter_path, 
fmt -w %d)

   if not self.client.get_string(self.print_command_path):
-   self.client.set_string(self.print_command_path, 
if type gv; then GV='gv -seascape'; else if type ggv; then GV=ggv; else 
lpr $1; exit; fi; fi; T=/tmp/.tmp.$$;mpage -f -2 -I1 -P- $1  $T;($GV 
$T; rm $T))
+   self.client.set_string(self.print_command_path, 
if type gv; then GV='gv --orientation=seascape'; else if type ggv; then 
GV=ggv; else lpr $1; exit; fi; fi; T=/tmp/.tmp.$$;mpage -f -2 -I1 -P- $1 
 $T;($GV $T; rm $T))

   if not self.client.get_string(self.external_editor_path):
   if os.system(type nedit /dev/null 21) == 0:
--
 .''`.  Khalid El Fathi
: :' :  [EMAIL PROTECTED]
`. `'   www.edena-fr.org
  `-GPG: 1024D/5801E0DA

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


Bug#304645: ITP: gpass -- GNOME Password Manager.

2005-04-14 Thread Khalid El Fathi
Package: wnpp
Severity: wishlist
Owner: Khalid El Fathi [EMAIL PROTECTED]
* Package name: gpass
 Version : 0.4.4 
 Upstream Author : Morten Fjord-Larsen [EMAIL PROTECTED]
* URL : http://gpass.sourceforge.net/
* License : GPL
 Description : GNOME Password Manager

The GNOME Password Manager - GPass for short - is a simple application,
written for the GNOME 2 desktop, that lets you manage a collection of passwords.
The password collection is stored in an encrypted file, protected by a 
master-password.
.
Homepage: http://gpass.sourceforge.net/
--
 .''`.  Khalid El Fathi
: :' :  [EMAIL PROTECTED]
`. `'   www.edena-fr.org
  `-GPG: 1024D/5801E0DA

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


Bug#290088: mypasswordsafe: Package source does not build (requires qmake)

2005-01-13 Thread Khalid El Fathi
Hi,

How do you make the error ? Please tried ...

# apt-get build-dep mypasswordsafe
# apt-get -b source mypasswordsafe

Regards,

-- 
  .''`.  Khalid El Fathi
 : :' :  [EMAIL PROTECTED]
 `. `'   www.edena-fr.org
   `-GPG: 1024D/5801E0DA


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