Bug#93208: [Peep-develop] Re: wnpp: RFP: peep, the "Network Auralizer"

2006-03-10 Thread xavier
On Thu, Sep 29, 2005 at 10:12:24PM +0200, Javier Fernández-Sanguino Peña wrote:
> On Sun, Sep 25, 2005 at 04:12:30PM -0500, Drew Scott Daniels wrote:
> > reopen 93208 =
> > done
> > 
> > Hi,
> > I'm cc'ing the developers of peep. For the history of this bug see:
> > http://bugs.debian.org/93208
> 
> Ok. Developers, please read this mail and see attached patch as is fixes some
> bugs in your code.


would someone like a cvs access so that you could do the modifications you need 
 
yourself ? 


thanks.

xavier.

> 
> Javier




> --- peep-0.5.0-rc2.orig/server/cmdline.c
> +++ peep-0.5.0-rc2/server/cmdline.c
> @@ -316,7 +316,7 @@
>  {
>  
>   printVersion ();
> - printf ("
> + printf ("\
>  Usage: %s [OPTIONS]...\n\
> -h --helpPrint help and exit\n\
> -V --version Print version and exit\n\
> --- peep-0.5.0-rc2.orig/server/debug.c
> +++ peep-0.5.0-rc2/server/debug.c
> @@ -18,6 +18,9 @@
>  
>  #include "config.h"
>  #include 
> +#include 
> +#include 
> +#include 
>  #include "debug.h"
>  
>  /* For time formatting */
> @@ -83,7 +86,7 @@
>  
>   if (fclose (log_handle) != 0)
>   perror ("Error closing server log file");
> -
> + return 0;
>  }
>  
>  void log (int level, char *s, ...)
> --- peep-0.5.0-rc2.orig/server/main.c
> +++ peep-0.5.0-rc2/server/main.c
> @@ -20,6 +20,7 @@
>  #include 
>  #include 
>  #include 
> +#include 
>  
>  #include "main.h"
>  #include "cmdline.h"
> @@ -30,6 +31,7 @@
>  #include "mixer.h"
>  #include "playback.h"
>  #include "debug.h"
> +#include "parser.h"
>  
>  static struct args_info args_info;
>  static FILE *pid_file = NULL;
> @@ -84,7 +86,7 @@
>   else {
>  
>   /* Write our pid out to the file */
> - fprintf (pid_file, "%d\n", pid_file);
> + fprintf (pid_file, "%d\n", pid);
>   fflush (pid_file);
>   fclose (pid_file);
>  
> @@ -271,6 +273,8 @@
>  
>   }
>  
> + /* Should really return something useful here */
> + return 1;
>  }
>  
>  void printGreeting (void)
> --- peep-0.5.0-rc2.orig/server/thread.h
> +++ peep-0.5.0-rc2/server/thread.h
> @@ -19,6 +19,7 @@
>  #ifndef __PEEP_THREAD_H__
>  #define __PEEP_THREAD_H__
>  
> +#include 
>  #include 
>  #include 
>  
> --- peep-0.5.0-rc2.orig/debian/changelog
> +++ peep-0.5.0-rc2/debian/changelog
> @@ -0,0 +1,11 @@
> +peep (0.5.0-rc2-1) unstable; urgency=low
> +
> +  * Initial release Closes: #93208
> +  * Fixed compilation error in cmdline
> +  * Fixed compilation warnings due to some libraries not being included
> +and an error in the pidfile generation (the pid was not added to the
> +file)
> +  * Provide an init.d and logrotate.d configuration files (UNTESTED)
> +
> + -- Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]>  Thu, 29 Sep 2005 
> 21:19:16 +0200
> +
> --- peep-0.5.0-rc2.orig/debian/compat
> +++ peep-0.5.0-rc2/debian/compat
> @@ -0,0 +1 @@
> +4
> --- peep-0.5.0-rc2.orig/debian/peep.init
> +++ peep-0.5.0-rc2/debian/peep.init
> @@ -0,0 +1,112 @@
> +#! /bin/sh
> +#
> +# peep  Start the sound server
> +#
> +# Author:   Devin
> +# Modified for Debian by Javier Fernandez-Sanguino Peña
> +#
> +# description: Kickass Sound Server and network / log monitor
> +# processname: peepd
> +# pidfile: $RUNDIR/peepd.pid
> +# config: /etc/default/peep
> +# config: /etc/peep.conf
> +
> +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
> +DAEMON=/usr/sbin/peep
> +NAME=peep
> +DESC="PEEP server"
> +LOGDIR=/var/log/peep
> +LOCKDIR=/var/lock/peep
> +RUNDIR=/var/run/peep
> +ARGS="-l $LOGDIR/$NAME.log"
> +
> +test -x $DAEMON || exit 0
> +
> +# Include peep defaults if available
> +if [ -f /etc/default/peep ] ; then
> + . /etc/default/peep
> +fi
> +
> +set -e
> +
> +RETVAL=0
> +
> +running()
> +{
> +# No pidfile, probably no daemon present
> +#
> +[ ! -f "$PIDFILE" ] && return 1
> +pid=`cat $PIDFILE`
> +# No pid, probably no daemon present
> +[ -z "$pid" ] && return 1
> +[ ! -d /proc/$pid ] &&  return 1
> +cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1 |cut -d : -f 1`
> +# TODO: This might be more portable than looking for /proc/pid/
> +# if ps -p $pidva

Bug#562088: ITP: libxmlezout -- XML EZ_Out is a small set of packages intended to aid the creation of XML-formatted output from within Ada programs.

2009-12-22 Thread xavier
Package: wnpp
Severity: wishlist
Owner: xavier 


* Package name: libxmlezout
  Version : 1.06
  Upstream Author : Marc A. Criley 
* URL : http://www.mckae.com/xmlEz.html
* License : LGPL
  Programming Lang: Ada
  Description : XML EZ_Out is a small set of packages intended to aid the 
creation of XML-formatted output from within Ada programs.

XML EZ Out is a small set of packages intended to aid the creation of
XML-formatted output from within Ada programs. It basically wraps the tags and
data provided to it with XML syntax and writes them to a user-supplied medium.

This medium can be any sort of writable entity, such as a file, a
memory buffer, or even a communications link, such as a socket. The
only functionality required of the medium is that it supply a
meaningful "Put" (for writing a string) and "New_Line" procedure.



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



Bug#576018: ITP: narval -- An Ada framework for Distributed Acquisition Systems

2010-03-31 Thread xavier
Package: wnpp
Severity: wishlist
Owner: xavier 


* Package name: narval
  Version : 1.10.1
  Upstream Author : Xavier Grave 
* URL : http://narval.in2p3.fr
* License : GPL v2+
  Programming Lang: Ada
  Description : An Ada framework for Distributed Acquisition Systems

NARVAL is a framework that eases setting up of experimental data taking. It
is written in Ada, enables users' plugins (written in C or C++). Using NARVAL,
one can distribute many processes across network to take, process, store data
online. Processes are of four types : producer (injects data in NARVAL 
framework), consumer (end of the data flow), intermediary (act as NxM switches)
and stand alone actor (no data flow handling, can be used for survey).



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100331131623.1568.51687.report...@alopex-lagopus.acq.ami



Bug#110288: Don't miss this chance!

2005-09-29 Thread Xavier

Hello, chief :)
We are http://blowoutfallsale.com/?47 and we are kicking off our Special FALL 
SALE. 
All season take 47% off our regular prices on SELECT Brand Name Electronics 
during our exclusive FALL SALE. 
Sale starts September 18.   
Every 15 days a different group of items will be discounted 47% and offered for 
15 days only. Don't miss this chance!




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



Bug#641721: ITP: gnatpython -- Python framework to ease development of test suites

2011-09-15 Thread xavier
Package: wnpp
Severity: wishlist
Owner: xavier 

Dear Maintainer,
*** Please consider answering these questions, where appropiate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

* Package name: gnatpython
  Version : 54
  Upstream Author : Thomas Quinot 
* URL : http://forge.open-do.org/projects/gnatpython
* License : GPL-2+, GPL-3+
  Programming Lang: C, Python
  Description : Python framework to ease development of test suites

 GNATPython is a python framework to ease development of test suites
 and build scripts in a portable way.



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110915123512.7779.61988.report...@rangifer-tarandus.acq.ami



Bug#695559: ITP: libstring-perlidentifier-perl -- Perl extension that generate a random name for a variable

2012-12-11 Thread Xavier
Le 11/12/2012 03:49, Adam Borowski a écrit :
> On Mon, Dec 10, 2012 at 06:12:55AM +0100, Xavier Guimard wrote:
>> * Package name: libstring-perlidentifier-perl
>> * URL : http://search.cpan.org/perldoc?String%3A%3APerlIdentifier
>>   Description : Perl extension that generate a random name for a variable
>>
>> String::PerlIdentifier automatically exports a single subroutine,
>> make_varname(), which returns a string composed of random characters
>> that qualifies as the name for a Perl variable. The characters are
>> limited to upper- and lower-case letters in the English alphabet, the
>> numerals from 0 through 9 and the underscore character. The first
>> character may not be a numeral.
> 
> Seriously?
> A whole package for this?
> And of all languages, in perl?
> 
> Is this a joke?  Because even if adding a new package would be free, you
> need to type more to import the module and call the function than it would
> take to implement it anew, inline.
> 
> Every single package adds at least ~3.5KB to three apt lists, these must be
> loaded into memory for every apt operation, etc.  This can already take a
> while on smaller systems supported by Debian.  Adding a single package is
> not a big deal, adding them for something orders of magnitude smaller than
> the waste, is.
> 
> And for added insult, this module's documentation already mentions
> String::Random which can do this and more, and is already packaged in
> Debian.
> 
> Please, for the love of Yog-Sothoth, if you need this as a dependency, patch
> it away instead of creating such a package.

Hi,

sorry, I'll patch libfile-save-home-perl to include this in test dir
(required only for "make test").
The goal is to package libextutils-modulemaker-perl that replace h2xs
for pure Perl modules.

Cheers,
Xavier


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50c7afc9.4000...@free.fr



Bug#513974: any news?

2011-02-14 Thread xavier
Since last time, is there any news about openfwwf in debian? With the
new squeeze, will it be included in sid? A free package should be
better than nnon-free broadcom-sta, don't you think?



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110214145306.2c92b1d3@Lothlorien



Bug#863700: O: patcher -- perl script useful for managing patches

2018-06-12 Thread Xavier
Hi all,

patcher no longer seems available: homepage has been removed and
I can't find any repository. Moreover, no package depends on it. I think
this package should be removed from testing.

Regards,
Xavier



signature.asc
Description: OpenPGP digital signature


Bug#863700: Removal proposed

2018-06-12 Thread Xavier
retitle 863700 RM: patcher -- unmaintained, orphaned and useless package

reassign 863700 ftp.debian.org

thanks

Hello,

patcher repository no longer exists, and no package depends on it. I
think it can be removed from testing.

Best regards,
Xavier



signature.asc
Description: OpenPGP digital signature


Bug#693749: Remove wpp

2018-06-13 Thread Xavier
retitle 693749 RM: wpp -- unmaintained, orphaned and useless package

reassign 693749 ftp.debian.org

stop

Hi all,

- wpp has been orphaned since 2012 
- it has no changes since ~2004
- no packages depends on it
- popcon shows that it is useless

That's why I think it can be removed from testing.

Best regards,
Xavier




signature.asc
Description: OpenPGP digital signature


Bug#903261: ITA: libapache2-mod-fcgid

2018-08-18 Thread Xavier
Le 18/08/2018 à 17:08, Felix Geyer a écrit :
> Hi Xavier,
> 
> On 18.08.2018 13:56, Xavier wrote:
>> Hello Felix,
>>
>> I'm going to adopt libapache2-mod-fcgid.
> 
> That's great!

Thanks a lot, push is done, you can review my changes:
 - lintian OK
 - autopkgtest OK
 - duck OK

>> I'm DM for now but approved for
>> DD (https://nm.debian.org/process/495).  Package is ready with the
>> following changes:
>>
>>    * Taken (Closes: #903261)
>>    * debian/copyright:
>>  - update format using packaging-manuals/copyright-format/1.0/
>>  - add Debian files copyright
>>    * Add myself to maintainer
>>    * Bump debhelper compatibility to 10
>>    * Remove --parallel option for dh
>>    * Add upstream/metadata file
>>    * Drop --dbgsym-migration (stable is > 2.3.9)
> 
> I've only added it in the last upload so it needs to be kept for buster.

OK, done

>>    * Add doc-base entry
>>    * debian/rules: remove useless options
>>    * Declare compliance with policy 4.2.0
>>    * Add NOTICE-FCGID and STATUS-FCGID in docs
>>    * autopkgtest:
>>  - don't use systemd to start apache2
>>  - add "allow-stderr" to ignore apache2 warnings
>>
>> Could you give me some rights on
>> https://salsa.debian.org/debian/libapache2-mod-fcgid to push this on git
>> ? So you could review my changes before adoption.
> 
> Sure, done.

Ready for review. As you want, you can sign and push my changes, else
I'll wait a few days to push it (AM Approved, waiting for debian-keyring
validation)

> Cheers,
> Felix

Best regards,
Xavier



Bug#889496: libjs-cssrelpreload name

2018-08-18 Thread Xavier
Hello Michael,

I'm going to ITA libjs-cssrelpreload but I've a little question: why did
you choose to name it libjs-cssrelpreload instead of libjs-loadcss?
(Remote name is loadCSS)

Cheers,
Xavier



Bug#903261: ITA: libapache2-mod-fcgid

2018-08-18 Thread Xavier
Hello Felix,

I'm going to adopt libapache2-mod-fcgid. I'm DM for now but approved for
DD (https://nm.debian.org/process/495).  Package is ready with the
following changes:

  * Taken (Closes: #903261)
  * debian/copyright:
- update format using packaging-manuals/copyright-format/1.0/
- add Debian files copyright
  * Add myself to maintainer
  * Bump debhelper compatibility to 10
  * Remove --parallel option for dh
  * Add upstream/metadata file
  * Drop --dbgsym-migration (stable is > 2.3.9)
  * Add doc-base entry
  * debian/rules: remove useless options
  * Declare compliance with policy 4.2.0
  * Add NOTICE-FCGID and STATUS-FCGID in docs
  * autopkgtest:
- don't use systemd to start apache2
- add "allow-stderr" to ignore apache2 warnings

Could you give me some rights on
https://salsa.debian.org/debian/libapache2-mod-fcgid to push this on git
? So you could review my changes before adoption.

Best regards,
Xavier



Bug#903261: ITA: libapache2-mod-fcgid

2018-08-18 Thread Xavier
NB: I filled a new bug for Lintian false positive (libapache2-mod-fcgid
source: unknown-runtime-tests-restriction allow-stderr paragraph
starting at line 1)


Le 18/08/2018 à 17:15, Xavier a écrit :
> Le 18/08/2018 à 17:08, Felix Geyer a écrit :
>> Hi Xavier,
>>
>> On 18.08.2018 13:56, Xavier wrote:
>>> Hello Felix,
>>>
>>> I'm going to adopt libapache2-mod-fcgid.
>>
>> That's great!
> 
> Thanks a lot, push is done, you can review my changes:
>  - lintian OK
>  - autopkgtest OK
>  - duck OK
> 
>>> I'm DM for now but approved for
>>> DD (https://nm.debian.org/process/495).  Package is ready with the
>>> following changes:
>>>
>>>    * Taken (Closes: #903261)
>>>    * debian/copyright:
>>>  - update format using packaging-manuals/copyright-format/1.0/
>>>  - add Debian files copyright
>>>    * Add myself to maintainer
>>>    * Bump debhelper compatibility to 10
>>>    * Remove --parallel option for dh
>>>    * Add upstream/metadata file
>>>    * Drop --dbgsym-migration (stable is > 2.3.9)
>>
>> I've only added it in the last upload so it needs to be kept for buster.
> 
> OK, done
> 
>>>    * Add doc-base entry
>>>    * debian/rules: remove useless options
>>>    * Declare compliance with policy 4.2.0
>>>    * Add NOTICE-FCGID and STATUS-FCGID in docs
>>>    * autopkgtest:
>>>  - don't use systemd to start apache2
>>>  - add "allow-stderr" to ignore apache2 warnings
>>>
>>> Could you give me some rights on
>>> https://salsa.debian.org/debian/libapache2-mod-fcgid to push this on git
>>> ? So you could review my changes before adoption.
>>
>> Sure, done.
> 
> Ready for review. As you want, you can sign and push my changes, else
> I'll wait a few days to push it (AM Approved, waiting for debian-keyring
> validation)
> 
>> Cheers,
>> Felix
> 
> Best regards,
> Xavier
> 



Bug#896936: Packaging node-lemonldap-ng-handler

2018-08-29 Thread Xavier
Dear ftp masters,

here is a resume of dependencies of node-* packages needed for
node-lemonldap-ng-handler.

node-lemonldap-ng-handler is an alternative engine for lemonldap-ng
Web-SSO (when used with Nginx). It will be usable also to provide
SSO-as-a-Service which comes with lemonldap-ng 2.0 (will be released
around 2018-10).

Here is the tree of its dependencies (new only):

* Required:
  - node-file-cache-simple:
- node-fs-jetpack
  - node-inireader
  - js-md5
  - aes-js

* Recommended
  - node-modern-syslog

Session backends are inspired from Apache::Session (Perl) to be
compliant with lemonldap-ng. Usr has to choose between: File (native),
LDAP, SQL or MongoDB. Theses new packages are proposed in this goal:
- node-ldap-client
- node-nodedbi
- node-mongodb:
  - node-mongodb-core:
- node-bson
- node-require-optional
  - node-bson (build)

I hope this resume will clarify this proposed packages. Some of them
will be also useful for many other packages (node-nodedbi,
node-ldap-client, node-mongodb,...)

Best regards,
Xavier



Bug#896810: Packaging node-lemonldap-ng-handler

2018-09-03 Thread Xavier
Dear ftp masters,

here is a resume of dependencies of node-* packages needed for
node-lemonldap-ng-handler.

node-lemonldap-ng-handler is an alternative engine for lemonldap-ng
Web-SSO (when used with Nginx). It will be usable also to provide
SSO-as-a-Service which comes with lemonldap-ng 2.0 (will be released
around 2018-10).

Here is the tree of its dependencies (new only):

* Required:
  - node-file-cache-simple:
- node-fs-jetpack
  - node-inireader
  - js-md5
  - aes-js

* Recommended
  - node-modern-syslog

Session backends are inspired from Apache::Session (Perl) to be
compliant with lemonldap-ng. Usr has to choose between: File (native),
LDAP, SQL or MongoDB. Theses new packages are proposed in this goal:
- node-ldap-client
- node-nodedbi
- node-mongodb:
  - node-mongodb-core:
- node-bson
- node-require-optional
  - node-bson (build)

I hope this resume will clarify this proposed packages. Some of them
will be also useful for many other packages (node-nodedbi,
node-ldap-client, node-mongodb,...)

Best regards,
Xavier



Bug#973700: RFP: nodejs-client (?) -- a client for browser's extensions

2020-11-03 Thread Xavier
Le 03/11/2020 à 16:39, Janusz S. Bień a écrit :
> Package: wnpp
> Severity: wishlist
> 
> * Package name: nodejs-client (?)
>   Version : 
>   Upstream Author : Andy Portmen
> * URL or Web page : https://github.com/andy-portmen/native-client
> * License : 
>   Description : a client for browser's extensions
> 
> Together with
> 
> https://github.com/andy-portmen/external-application-button
> 
> it allows to circumvent the lack of NSAPI plugins.

Hi,

Could you explain more what is the benefit of this in Debian ?



Bug#848315: ITP: node-cheerio -- Server-side jQuery implementation

2020-11-23 Thread Xavier
Hi,

node-cherrio is also needed to update node-dom-serializer, that's why I
pushed it



Bug#889058: Workaround for node-ava

2020-12-01 Thread Xavier
Hi,

packaging node-ava needs a (too big) lot of components/packages (I
stopped counting at 48).
Workarounds:

 * for simple test files, replace it by node-tape:

##   ORIGINAL TEST ###TAPE TEST##
#
import test from 'ava'  #  const test = require('tape')
import foo from '.' #  const foo = require('.')
#
test('bar', t => {  #  test('bar', t=> {
  t.is( foo(0), 0)  #t.is( foo(0), 0)
}   #t.end()
#  }

   Just to transform in commonjs and add "t.end()" at each test; and
   adapt some functions name. For example, t.notThrows becomes
   t.doesNotThrow.
   See /usr/share/doc/node-tape/readme.markdown.gz to find
   them.

 * more complex test files, use jest (via jest-codemods)

$ npx jest-codemods
? Which parser do you want to use? Babel
? Which test library would you like to migrate from? AVA
? Are you using the global object for assertions? No
? Will you be using Jest on Node.js as your test runner? Yes
? On which files or directory should the codemods be applied?
  test.js
Executing command: jscodeshift -t [...] test.js \
   --ignore-pattern node_modules --parser babel
Processing 1 files...
Spawning 1 workers...
Sending 1 files to free worker...
All done.
Results:
0 errors
0 unmodified
0 skipped
1 ok

# Test it
$ jest --ci --testRegex test.js

It may need a babel file. If so, add a babel.config.json:
 {
   "presets": [ "@babel/preset-env" ],
   "plugins": [ "@babel/plugin-transform-runtime" ]
 }

Anyway, jest has not exactly the same features than ava. Especially some
throwsAsync / notThrowsAsync test should be removed or modified.

Cheers,
Xavier



Bug#980416: ITP: jquery-i18n-properties -- lightweight jQuery internationalization plugin

2021-01-18 Thread Xavier
Le 18/01/2021 à 21:38, Mike Gabriel a écrit :
> Package: wnpp
> Severity: wishlist
> Owner: Mike Gabriel 
> X-Debbugs-Cc: debian-de...@lists.debian.org, 
> debian-edu-pkg-t...@lists.alioth.debian.org
> 
> * Package name: jquery-i18n-properties
>   Version : 1.2.7
>   Upstream Author : Adrian Fish 
> * URL : 
> https://github.com/jquery-i18n-properties/jquery-i18n-properties
> * License : Expat
>   Programming Lang: Javascript
>   Description : lightweight jQuery internationalization plugin
> 
>  Lightweight jQuery plugin for providing internationalization to JavaScript
>  from ‘.properties’ files, just like in Java Resource Bundles. It loads
>  and parses resource bundles (.properties) based on provided language
>  and country codes (ISO-639 and ISO-3166) or language reported by browser.
>  .
>  This jQuery plugin is a required dependency for the already uploaded
>  OpenBoard (at the time of testing and packaging, jquery-i18n-properties
>  had been in Debian, however, it got removed some months ago which did
>  not catch my intention).
>  .
>  Thus, re-uploading (with a much newer upstream version).

This library seems unmaintained: last commit 4 years ago. I don't think
it's a good thing to upload such library in Debian.



Bug#980416: ITP: jquery-i18n-properties -- lightweight jQuery internationalization plugin

2021-01-19 Thread Xavier
Le 19/01/2021 à 11:58, Mike Gabriel a écrit :
> Hi Xavier,
> 
> On  Mo 18 Jan 2021 22:24:01 CET, Xavier wrote:
> 
>> Le 18/01/2021 à 21:38, Mike Gabriel a écrit :
>>> Package: wnpp
>>> Severity: wishlist
>>> Owner: Mike Gabriel 
>>> X-Debbugs-Cc: debian-de...@lists.debian.org,
>>> debian-edu-pkg-t...@lists.alioth.debian.org
>>>
>>> * Package name    : jquery-i18n-properties
>>>   Version : 1.2.7
>>>   Upstream Author : Adrian Fish 
>>> * URL :
>>> https://github.com/jquery-i18n-properties/jquery-i18n-properties
>>> * License : Expat
>>>   Programming Lang: Javascript
>>>   Description : lightweight jQuery internationalization plugin
>>>
>>>  Lightweight jQuery plugin for providing internationalization to
>>> JavaScript
>>>  from ‘.properties’ files, just like in Java Resource Bundles. It loads
>>>  and parses resource bundles (.properties) based on provided language
>>>  and country codes (ISO-639 and ISO-3166) or language reported by
>>> browser.
>>>  .
>>>  This jQuery plugin is a required dependency for the already uploaded
>>>  OpenBoard (at the time of testing and packaging, jquery-i18n-properties
>>>  had been in Debian, however, it got removed some months ago which did
>>>  not catch my intention).
>>>  .
>>>  Thus, re-uploading (with a much newer upstream version).
>>
>> This library seems unmaintained: last commit 4 years ago. I don't think
>> it's a good thing to upload such library in Debian.
> 
> 
> I am aware of this. Rather than sneaking in the code (it is bundled in
> OpenBoard upstream's Git repo), I'd prefer to ship
> jquery-i18n-properties it a separate package in Debian.
> 
> During the Debian 12 release cycle I will need to bring up the topic of
> many many old and unmaintained Javascript / jQuery dependencies /
> bundled code portions in OpenBoard. I hope to get OpenBoard upstream to
> a point that they either take over those Javascript projects and
> maintain them or that they drop the dependencies.
> 
> For the meantime, I'll be happy to keep jquery-i18n-properties
> up-to-date in Debian as pseudo-upstream. (I could also fork the upstream
> Git repo on Github, but for now, I'd prefer to use the existing Github
> repo as upstream).

Hi,

it was just a warning, do as you see fit ;-)

Best regards,
Xavier



Bug#902931: ITP: libanyevent-websocket-client-perl -- AnyEvent::WebSocket::Perl is a WebSockets client for Perl AnyEvent

2019-08-13 Thread Xavier
Hi,

libanyevent-websocket-client-perl is ready in
https://salsa.debian.org/perl-team/modules/packages/libanyevent-websocket-client-perl
(not pushed) and new dependencies are already pushed to new queue.

Cheers,
Xavier



Bug#902062: node-bunyan status

2019-08-21 Thread Xavier
Le 21/08/2019 à 10:47, mer...@debian.org a écrit :
> Hello,
> 
> What is the current status of node-bunyan? Are there any blockers
> keeping it from being uploaded?
> 
> Best,
> Andrius

Hi,

no real reason, node-bunyan is needed for node-ldapjs which is not
ready. It requires also node-dtrace-provider and node-vasync. Do you
need it for another reason ?



Bug#902062: node-bunyan status

2019-08-21 Thread Xavier
Le 21/08/2019 à 11:03, mer...@debian.org a écrit :
> Hi,
> 
> On 2019-08-21 11:55, Xavier wrote:
>> no real reason, node-bunyan is needed for node-ldapjs which is not
>> ready. It requires also node-dtrace-provider and node-vasync. Do you
>> need it for another reason ?
> 
> Yes, I am investigating packaging possibilities of overleaf
> dependencies. One of them, clsi, ultimately needs node-bunyan.
> 
> Andrius

I just pushed it to NEW queue with its dependencies.

Cheers,
Xavier



Bug#932956: ITP: node-node-sass -- Wrapper around libsass

2019-08-25 Thread Xavier
Hi Ftpmasters,

this package embeds some little components and one big (sass-spec).
sass-spec isn't use elsewhere (see
https://www.npmjs.com/package/sass-spec?activeTab=dependents) and
provides only C++ files needed to compile node-node-sass. That's why
none of its files are installed (installed modules are listed in
debian/nodejs/submodules).

Other little components embedded and installed:
 - async-foreach
 - gaze
 - get-stdin
 - js-base64
 - sass-graph
 - scss-tokenizer
 - stdout-stream
 - true-case-path

Cheers,
Xavier



Bug#890253: node-jest

2019-12-14 Thread Xavier
Hi,

I updated node-jest. Build is OK, TODO: remove or rebuild
debian/build_modules compiled files (see lintian output)



Bug#890253: [Pkg-javascript-devel] node-jest

2019-12-14 Thread Xavier
Le 14/12/2019 à 19:10, Xavier a écrit :
> Hi,
> 
> I updated node-jest. Build is OK, TODO: remove or rebuild
> debian/build_modules compiled files (see lintian output)

TODO also: embed or package missing node modules (prompt,...)



Bug#921717: RFH: cyrus-imapd -- Cyrus mail system - IMAP support

2019-12-16 Thread Xavier
Control: retitle -1 RFH: cyrus-imapd -- Cyrus mail system - IMAP support

Hi,

I took over the maintenance of cyrus-imapd. However, I'd like some help
to maintain it.

Cheers,
Xavier



Bug#890253: jest ready but needs babel 7

2020-01-05 Thread Xavier
Hi,

I packaged node-jest but it requires prettier during build. This one
can't be embedded since npm package is minified and source needs babel 7.

For now, you can test it (salsa repo), I embedded temporarily npm
prettier but I can't publish this so.

So waiting for babel-7 to package prettier and jest.

Cheers,
Xavier



Bug#921717: RFH: cyrus-imapd -- Cyrus mail system - IMAP support

2020-01-10 Thread Xavier
Le 10/01/2020 à 20:32, Mike Gabriel a écrit :
> Hi Xavier,
> 
> On Tue, 17 Dec 2019 02:39:47 +0100 Xavier  wrote:
>> Control: retitle -1 RFH: cyrus-imapd -- Cyrus mail system - IMAP support
>>
>> Hi,
>>
>> I took over the maintenance of cyrus-imapd. However, I'd like some help
>> to maintain it.
>>
>> Cheers,
>> Xavier
> 
> I'd be interested in helping out. My production still runs on a very old
> version of cyrus-imapd (from Kolab v2 times) and I will need to upgrade
> it at the beginning of February.
> 
> I'll ping you then and let you know, if I can add some help to the
> cyrus-imapd package maintenance effort.
> 
> Thanks+Greets,
> Mike

Welcome on board :-D



Bug#910917: RFA: apache2 -- Apache HTTP Server

2020-01-27 Thread Xavier
Control: retitle -1 RFH: apache2 - Apache HTTP Server

Hi,

I'm going to transform it to RFH because I've limited talents in C language.

Cheers,
Xavier

Le 27 janvier 2020 19:06:43 GMT+01:00, Sudip Mukherjee 
 a écrit :
>Hi,
>
>On Wed, Nov 28, 2018 at 09:47:34AM +0100, Xavier wrote:
>> Job started. Could you update my role in salsa ? "developer" role
>> doesn't allow me to use GitLab API: I'd like to configure project to
>add
>> "tagpending" webhook.
>
>It seems Xavier has taken up the package since Version: 2.4.38-1. Do
>you
>want me to close this bug now or are you still looking for people to
>adopt apache2 ?
>
>
>--
>Regards
>Sudip

-- 
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma 
brièveté.

Bug#950821: RFP: peertube -- decentralized federated video platform

2020-02-06 Thread Xavier
Le 07/02/2020 à 01:54, Dmitry Smirnov a écrit :
> Package: wnpp
> Severity: wishlist
> X-Debbugs-CC: debian-de...@lists.debian.org, 
> debian-multime...@lists.debian.org, 
> pkg-javascript-de...@lists.alioth.debian.org
> 
>Package name: peertube
> Version: 2.0.0
> License: AGPL-3+
> URL: https://github.com/Chocobozzz/PeerTube
> Description: decentralized federated video platform
>  PeerTube is a decentralized and federated video platform developed as an
>  alternative to other platforms that centralize our data and attention,
>  such as YouTube, Dailymotion or Vimeo. All servers of PeerTube are
>  interoperable as a federated network, and non-PeerTube servers can be part
>  of the larger Vidiverse (federated video network) by talking our
>  implementation of ActivityPub. Video load is reduced thanks to P2P
>  (BitTorrent) in the web browser via WebTorrent.

Hi,

I can help for the node.js part (means replacing `yarn install`)

Cheers,
Xavier



Bug#951110: ITP: cyrus-timezones -- Timezone information for the Cyrus IMAP Server

2020-02-16 Thread Xavier
Hi,

please follow also this discussion:
(https://github.com/cyrusimap/cyrus-timezones/pull/6):

> elliefm:
> I looked deeper into it, and did find and fix one bug in Cyrus, and
> added a workaround for libical misbehaving(?) -- details in the issue
> I linked earlier. The original issue I thought might exist still might
> exist, I haven't tested for it specifically yet due to being
> distracted by the stuff I did fix.
>
> wrt whether or not to packagers should include cyrus-timezones, @rsto
> mentioned in our chat:
>
> > One thing: using the system timezones is not recommended. If I
> > recall correctly, some of the system timezone definitions defined
> > daylight savings time changes per year, which produced unnecessarily
> > long VTIMEZONEs embedded in the VEVENTs returned by Cyrus.
>
> I have mixed feelings. If, as a mail server admin, you're installing
> Cyrus from a system package, it seems reasonable to expect it to use
> the timezone definitions provided by the system. It also seems
> reasonable that, if you wish to supply your own timezone definitions
> instead, that you could configure the zoneinfo_dir setting to point to
> them.
>
> But if, as a package-maintainer, you know your system's timezone
> definitions are "basic timezone definitions for general purpose use,
> but perhaps inadequate or suboptimal for building a calendaring
> service on top of", then it also seems reasonable to package up our
> cyrus-timezones package and make the cyrus-imapd package depend on it.



Bug#951110: ITP: cyrus-timezones -- Timezone information for the Cyrus IMAP Server

2020-02-24 Thread Xavier
Le Lundi, Février 24, 2020 07:07 CET, Paul Wise  a écrit:
> On Tue, 11 Feb 2020 10:30:00 +0100 Xavier Guimard wrote:
>
> > cyrus-timezones provides timezone information for the Cyrus IMAP Server.
> > By use of the vzic timezone compiler it compiles VTIMEZONEs based on the
> > latest IANA timezone database (https://www.iana.org/time-zones).
>
> Would it be possible to make cyrus-imapd capable of using the standard
> tzdata package instead of duplicating it in cyrus-timezones?
>
> The tzdata package is often updated in Debian stable, how do you intend
> to keep cyrus-timezones in sync with it?
>
> --
> bye,
> pabs
>
> https://wiki.debian.org/PaulWise

Hi,

following discussion with upstream, this package is no more needed. Please 
reject it for now.

Regards,
Xavier



Bug#954028: ITP: node-babel7 -- compiler for next generation JavaScript

2020-03-17 Thread Xavier
Le 15/03/2020 à 23:29, Xavier Guimard a écrit :
> Package: wnpp
> Severity: wishlist
> Owner: Xavier Guimard 
> 
> * Package name: node-babel7
>   Version : 7.4.5
>   Upstream Author : Sebastian McKenzie 
> * URL : https://babeljs.io/
> * License : Expat
>   Programming Lang: JavaScript
>   Description : compiler for next generation JavaScript
> 
> Debian currently has a node-babel version 6. Version 7 is really
> different and can cohabit with node-babel=6 (I already add an
> alternative for /usr/bin/babeljs in node-babel 6).
> 
> I'd like to build a distinct node-babel7 since:
>  * transition from node-babel 6 to node-babel 7 will be long
>  * the 2 can cohabit: no common files (except alternative
>/usr/bin/babeljs)
> 
> Cheers,
> Xavier

Hi,

I just uploaded node-babel7. Sadly like other compilers, it depends on
itself.

Cheers,
Xavier



Bug#910917: RFA: apache2 -- Apache HTTP Server

2018-11-20 Thread Xavier
Hi all,

I'm DD, Apache user and maintainer of libapache2-mod-fcgid. I can't
maintain this package alone since I'm not enough experimented in C but I
can help (review, tests and upload if needed). So what is the best,
join-request to apache-team on salsa for Jason, Mosab and me?

Cheers,
Xavier



Bug#910917: RFA: apache2 -- Apache HTTP Server

2018-11-28 Thread Xavier
Job started. Could you update my role in salsa ? "developer" role
doesn't allow me to use GitLab API: I'd like to configure project to add
"tagpending" webhook.

Cheers,
Xavier

Le 21/11/2018 à 15:45, Mosab Ibrahim a écrit :
> Hello Stefan,
> 
> Yes, I am still interested. Will go through the code base, and the
> packaging process for debian this weekend, unless you have other
> suggestions.
> 
> On Wed, Nov 21, 2018 at 3:21 PM Stefan Fritsch  <mailto:s...@sfritsch.de>> wrote:
> 
> Hi,
> 
> Xavier, yes, please do a join request. If you are looking for work,
> one thing
> that should be done before buster is enabling http/2 by default
> (#880993).
> 
> Mosab and Jason, are you still interested?
> 
> Cheers,
> Stefan
> 
> On Tuesday, 20 November 2018 10:41:55 CET Xavier wrote:
> > Hi all,
> >
> > I'm DD, Apache user and maintainer of libapache2-mod-fcgid. I can't
> > maintain this package alone since I'm not enough experimented in C
> but I
> > can help (review, tests and upload if needed). So what is the best,
> > join-request to apache-team on salsa for Jason, Mosab and me?
> >
> > Cheers,
> > Xavier
> 
> 
> 
> 
> -- 
> /*Mosab Ibrahim*/
> /Software Engineer/
> /https://www.mos3abof.com/



Bug#842828: [Pkg-javascript-devel] Plan for bootstrap 4

2018-12-01 Thread Xavier
Le 01/12/2018 à 12:14, Jonas Smedegaard a écrit :
> Quoting Xavier (2018-12-01 09:24:54)
>> Le 21/09/2018 à 10:16, Pirate Praveen a écrit :
>>> I need bootstrap 4 for gitlab (though only its node counterpart). 
>>> I'm thinking of creating a new source package node-bootstrap (if 
>>> required create libjs-bootstrap4 binary). What is your plan with 
>>> bootstrap 4?
> [...]
>> did someone package it ?
> 
> Please use the Debian bugtracker for such packaging coordination: 
> https://www.debian.org/devel/wnpp/#l1
> 
> Concretely, https://www.debian.org/devel/wnpp/prospective lists 
> bootstrap4 as an RFP, so answer to your question is "No".
> 
>  - Jonas

Thanks,

~90 packages depends on libjs-bootstrap while ~168 packages embeds a
copy of bootstrap.js.

RFP still exists: https://bugs.debian.org/842828 (I forgot to Cc, done now)

Regards,
Xavier



Bug#842828: Job started

2018-12-02 Thread Xavier
Control: tags -1 + pending
Control: retitle -1 ITP: bootstrap4 -- HTML, CSS, and JS framework
Control: owner -1 pkg-javascript-de...@lists.alioth.debian.org

I started to build twitter-bootstrap4 in a separate package
(https://salsa.debian.org/js-team/twitter-bootstrap4)

Cheers,
Xavier



Bug#956500: ITP: node-bash -- Utilities for using bash from node.js.

2020-04-11 Thread Xavier
Le 12/04/2020 à 06:06, fancycade a écrit :
> Package: wnpp
> Severity: wishlist
> Owner: Harley Swick  >
> X-Debbugs-CC: debian-de...@lists.debian.org
> 
> 
> * Package name    : node-bash
>   Version : 0.0.1
>   Upstream Author : Felix Geisendörfer  > (http://debuggable.com/)
> * URL : https://github.com/felixge/node-bash
> * License : MIT
>   Programming Lang: JavaScript
>   Description : Utilities for using bash from node.js.
> 
> This package is meant to be used by node applications
> for CLI tools or servers.
> 
> This is a dependency for shiny-server which is needed by Debian Science.
> 
> I plan to maintain this as part of the Javascript Maintainers team.

Hi,

I don't see you as member of JS Team, are you ?



Bug#956500: ITP: node-bash -- Utilities for using bash from node.js.

2020-04-12 Thread Xavier
Le 12/04/2020 à 16:17, fancycade a écrit :
> 
>> Hi,
> 
>> I don't see you as member of JS Team, are you ?
> 
> Currently I am not. I requested access over IRC yesterday, but have not heard 
> a response. It is still my plan to maintain it as part of the JS Team though 
> ;)
> 
> Thank you for the quick response.

Hi,

request access via salsa and read our doc:
 * https://wiki.debian.org/Javascript
 * https://wiki.debian.org/Javascript/Tutorial

Thanks for joining us !

Cheers,
Xavier



Bug#921717: cyrus-imapd: FTBFS on arm*, i386, mipsel, ppc64el and s390x

2020-05-11 Thread Xavier
> cyrus-imapd failed to build on almost all architectures. See
>
https://buildd.debian.org/status/fetch.php?pkg=cyrus-imapd&arch=i386&ver=3.2.0-1&stamp=1588581560&raw=0
> and
>
https://buildd.debian.org/status/fetch.php?pkg=cyrus-imapd&arch=arm64&ver=3.2.0-1&stamp=1588581432&raw=0
> for examples.

Hi,

Could someone help us here ? I forwarded this bug to upstream ([1]) but
didn't receive any response for now.

(Cc to RFH bug)

Cheers,
Xavier

[1]: https://github.com/cyrusimap/cyrus-imapd/issues/3040



Bug#921717: cyrus-imapd: FTBFS on arm*, i386, mipsel, ppc64el and s390x

2020-05-12 Thread Xavier
Le 12/05/2020 à 01:04, John Paul Adrian Glaubitz a écrit :
> On 5/12/20 1:01 AM, John Paul Adrian Glaubitz wrote:
>> On 5/11/20 11:56 PM, Xavier wrote:
>>> Could someone help us here ? I forwarded this bug to upstream ([1]) but
>>> didn't receive any response for now.
>>>
>>> (Cc to RFH bug)
>>
>> The problem here is va_list. On some architectures, the calling convention
>> doesn't seem to allow comparing va_list against NULL due to the way va_list
>> is implemented on a particular architecture.
> Correction: The va_list problem seems to affect ARM architectures only.
> 
> The other architectures have testsuite failures which seem unrelated.
> 
> Adrian

Thanks a lot! I had to modify your patch: I had to declare a va_list
"noargs" variable to fix the problem.

Cheers,
Xavier
Description: fix for non x86 arch
 The problem here is va_list. On some architectures, the calling convention
 doesn't seem to allow comparing va_list against NULL due to the way va_list
 is implemented on a particular architecture.
Author: John Paul Adrian Glaubitz 
Bug: https://github.com/cyrusimap/cyrus-imapd/issues/3040
Bug-Debian: https://bugs.debian.org/960263
Forwarded: https://github.com/cyrusimap/cyrus-imapd/issues/3040
Reviewed-By: Xavier Guimard 
Last-Update: 2020-05-12

--- a/imap/httpd.c
+++ b/imap/httpd.c
@@ -2350,7 +2350,7 @@
 simple_hdr(txn, "Access-Control-Expose-Headers", hdr)
 
 static void comma_list_body(struct buf *buf,
-const char *vals[], unsigned flags, va_list args)
+const char *vals[], unsigned flags, int has_args, va_list args)
 {
 const char *sep = "";
 int i;
@@ -2358,11 +2358,11 @@
 for (i = 0; vals[i]; i++) {
 if (flags & (1 << i)) {
 buf_appendcstr(buf, sep);
-if (args) buf_vprintf(buf, vals[i], args);
+if (has_args) buf_vprintf(buf, vals[i], args);
 else buf_appendcstr(buf, vals[i]);
 sep = ", ";
 }
-else if (args) {
+else if (has_args) {
 /* discard any unused args */
 vsnprintf(NULL, 0, vals[i], args);
 }
@@ -2377,7 +2377,7 @@
 
 va_start(args, flags);
 
-comma_list_body(&buf, vals, flags, args);
+comma_list_body(&buf, vals, flags, 1, args);
 
 va_end(args);
 
@@ -2512,6 +2512,7 @@
 int i;
 time_t now;
 char datestr[30];
+va_list noargs;
 double cmdtime, nettime;
 const char **hdr, *sep;
 struct auth_challenge_t *auth_chal = &txn->auth_chal;
@@ -3077,17 +3078,17 @@
 }
 if (code == HTTP_SWITCH_PROT || code == HTTP_UPGRADE) {
 buf_printf(logbuf, "%supgrade=", sep);
-comma_list_body(logbuf, upgrd_tokens, txn->flags.upgrade, NULL);
+comma_list_body(logbuf, upgrd_tokens, txn->flags.upgrade, 0, noargs);
 sep = "; ";
 }
 if (txn->flags.te) {
 buf_printf(logbuf, "%stx-encoding=", sep);
-comma_list_body(logbuf, te, txn->flags.te, NULL);
+comma_list_body(logbuf, te, txn->flags.te, 0, noargs);
 sep = "; ";
 }
 if (txn->resp_body.enc.proc) {
 buf_printf(logbuf, "%scnt-encoding=", sep);
-comma_list_body(logbuf, ce, txn->resp_body.enc.type, NULL);
+comma_list_body(logbuf, ce, txn->resp_body.enc.type, 0, noargs);
 sep = "; ";
 }
 if (txn->location) {


Bug#960618: ITP: node-nouislider -- lightweight JavaScript range slider

2020-05-14 Thread Xavier
Le 14/05/2020 à 19:25, Doug Torrance a écrit :
> Package: wnpp
> Severity: wishlist
> Owner: Doug Torrance 
> 
> * Package name: node-nouislider
>   Version : 14.5.0
>   Upstream Author : Léon Gersen
> * URL : https://refreshless.com/nouislider/
> * License : MIT
>   Programming Lang: Javascript
>   Description : lightweight JavaScript range slider
> 
> noUiSlider is a lightweight range slider with multi-touch support and
> a ton of features. It supports non-linear ranges, requires no
> external dependencies, has keyboard support, and it works great in
> responsive designs.
> 
> Node.js is an event-based server-side JavaScript engine.
> 
> I am interested in packaging noUiSlider as it is a dependency of the
> Visualize package for Macaulay2, a computer algebra system for algebraic
> geometry and commutative algebra I am currently working to get into
> Debian.
> 
> I intend to maintain noUiSlider under the umbrella of the Debian Javascript
> Team.

Hi,

please join us on salsa.d.o/js-team and read our doc:
 * https://wiki.debian.org/Javascript/Tutorial
 * https://wiki.debian.org/Javascript/GroupSourcesTutorial

Cheers,
Xavier



Bug#960618: ITP: node-nouislider -- lightweight JavaScript range slider

2020-05-14 Thread Xavier
Le 14/05/2020 à 19:40, Xavier a écrit :
> Le 14/05/2020 à 19:25, Doug Torrance a écrit :
>> Package: wnpp
>> Severity: wishlist
>> Owner: Doug Torrance 
>>
>> * Package name: node-nouislider
>>   Version : 14.5.0
>>   Upstream Author : Léon Gersen
>> * URL : https://refreshless.com/nouislider/
>> * License : MIT
>>   Programming Lang: Javascript
>>   Description : lightweight JavaScript range slider
>>
>> noUiSlider is a lightweight range slider with multi-touch support and
>> a ton of features. It supports non-linear ranges, requires no
>> external dependencies, has keyboard support, and it works great in
>> responsive designs.
>>
>> Node.js is an event-based server-side JavaScript engine.
>>
>> I am interested in packaging noUiSlider as it is a dependency of the
>> Visualize package for Macaulay2, a computer algebra system for algebraic
>> geometry and commutative algebra I am currently working to get into
>> Debian.
>>
>> I intend to maintain noUiSlider under the umbrella of the Debian Javascript
>> Team.
> 
> Hi,
> 
> please join us on salsa.d.o/js-team and read our doc:
>  * https://wiki.debian.org/Javascript/Tutorial
>  * https://wiki.debian.org/Javascript/GroupSourcesTutorial
> 
> Cheers,
> Xavier

and (first): https://wiki.debian.org/Javascript



Bug#920350: ITP: pkg-js-autopkgtest -- collection of autopktest scripts for nodejs packages

2019-01-24 Thread Xavier
Le 24/01/2019 à 20:12, Paul Gevers a écrit :
> Oops,
> 
> On 24-01-2019 20:09, Paul Gevers wrote:
>> Hi Xavier,
>>
>> On 24-01-2019 15:25, Xavier Guimard wrote:
>>> Packages using the tests with autopkgtests in this package will simply
>>> have to set "Testsuite: autopkgtest-pkg-js" in debian/control and write
>>> upstream test in debian/tests/pkg-js/test. This package provides also a
>>> test.mk file which can be include in debian/rule to avoid writing a
>>> override_dh_auto_test. The same test will be launched.
>>>
>>> This package is inspired from pkg-perl-autopkgtest. If accepted, a MR
>>> will be done on autodep8 project to include it.
>>
>> I am not sure if you are aware, but please make sure that anything that
>> a maintainer adds about test dependencies is recorded in
>> debian/tests/control. dpkg-source exports the content of the "Depends"
>> fields to the changes file where it is picked up by britney, the
>> migration software.

It's inspired from pkg-perl-autopkgtest package. I'll take care of this

> Another thing, autodep8 already has support for nodejs. If your scripts
> are smarter (which they probably are), could you please replace (instead
> of add) the current nodejs support? I.e. it would be "Testsuite:
> autopkgtest-pkg-nodejs". Let's not have two nodejs supports in autodep8.

Yes I see that and fixed this in my package
(https://salsa.debian.org/js-team/pkg-js-tools/tree/master/doc/autopkgtest#readme)

I'll just propose an update of autopkgtest-pkg-nodejs in autodep8

Thanks!
Xavier



Bug#843021: [Pkg-javascript-devel] RFS: node-yarnpkg

2019-01-25 Thread Xavier
Le 25/01/2019 à 08:16, Paolo Greppi a écrit :
> Il 25/01/19 07:18, Paolo Greppi ha scritto:
>> Il 25/01/19 06:24, Pirate Praveen ha scritto:
>>> On വെ, ജനു 25, 2019 at 10:22 രാവിലെ, Paolo Greppi  
>>> wrote:
>>>> ...
>>>
>>> E: yarnpkg: package-contains-ancient-file 
>>> usr/lib/nodejs/yarn/node_modules/npm-logical-tree/CHANGELOG.md 1970-01-01 
>>> (and some more)
>>
>> ...
>> I wonder how we can fix this !
>>
>> Paolo
> 
> @yadd says:
>> Remove *.orig.tar.gz and regenerate them with gbp buildpackage
> 
> and indeed:
> 
> rm ../node-yarnpkg_1.13.0.orig*
> gbp buildpackage -uc -us
> 
> now the npm-logical-tree tarball is different and:
> 
> tar xf ../node-yarnpkg_1.13.0.orig-npm-logical-tree.tar.gz
> ls node-yarnpkg-1.13.0/ -l
> totale 28
> -rw-r--r-- 1 paolog paolog 1222 gen 25 08:09 CHANGELOG.md
> -rw-r--r-- 1 paolog paolog 4919 gen 25 08:09 index.js
> -rw-r--r-- 1 paolog paolog  755 gen 25 08:09 LICENSE.md
> -rw-r--r-- 1 paolog paolog 1380 gen 25 08:09 package.json
> -rw-r--r-- 1 paolog paolog 4563 gen 25 08:09 README.md
> 
> Paolo

Hello,

I fixed some little things but looking at debian/tests/yarn, it seems
that this test download packages during test. I think it's bad.

Is it also possible to add a test during build (override_dh_auto_test) ?
Without network access of course.

Cheers,
Xavier



Bug#920350: ITP: pkg-js-autopkgtest -- collection of autopktest scripts for nodejs packages

2019-01-25 Thread Xavier
Le 24/01/2019 à 23:27, Xavier a écrit :
> Le 24/01/2019 à 20:12, Paul Gevers a écrit :
>> Oops,
>>
>> On 24-01-2019 20:09, Paul Gevers wrote:
>>> Hi Xavier,
>>>
>>> On 24-01-2019 15:25, Xavier Guimard wrote:
>>>> Packages using the tests with autopkgtests in this package will simply
>>>> have to set "Testsuite: autopkgtest-pkg-js" in debian/control and write
>>>> upstream test in debian/tests/pkg-js/test. This package provides also a
>>>> test.mk file which can be include in debian/rule to avoid writing a
>>>> override_dh_auto_test. The same test will be launched.
>>>>
>>>> This package is inspired from pkg-perl-autopkgtest. If accepted, a MR
>>>> will be done on autodep8 project to include it.
>>>
>>> I am not sure if you are aware, but please make sure that anything that
>>> a maintainer adds about test dependencies is recorded in
>>> debian/tests/control. dpkg-source exports the content of the "Depends"
>>> fields to the changes file where it is picked up by britney, the
>>> migration software.
> 
> It's inspired from pkg-perl-autopkgtest package. I'll take care of this
> 
>> Another thing, autodep8 already has support for nodejs. If your scripts
>> are smarter (which they probably are), could you please replace (instead
>> of add) the current nodejs support? I.e. it would be "Testsuite:
>> autopkgtest-pkg-nodejs". Let's not have two nodejs supports in autodep8.
> 
> Yes I see that and fixed this in my package
> (https://salsa.debian.org/js-team/pkg-js-tools/tree/master/doc/autopkgtest#readme)
> 
> I'll just propose an update of autopkgtest-pkg-nodejs in autodep8
> 
> Thanks!
> Xavier

I updated my package, here is the doc:
https://salsa.debian.org/js-team/pkg-js-tools/tree/master/doc/autopkgtest#readme



Bug#921562: [Pkg-javascript-devel] Bug#921562: ITP: libjs-vue-router

2019-02-06 Thread Xavier
Complements:

* Package name: node-vue-router
  Version : 3.0.2+ds
  Upstream Author : Evan You
* URL : https://github.com/vuejs/vue-router#readme
* License : Expat
  Programming Lang: JavaScript
  Description : official router for Vue.js

vue-router deeply integrates with Vue.js core to make building Single
Page Applications with Vue.js a breeze. Features include:
  - Nested route/view mapping
  - Modular, component-based router configuration
  - Route params, query, wildcards
  - View transition effects powered by Vue.js' transition system
  - Fine-grained navigation control
  - Links with automatic active CSS classes
  - HTML5 history mode or hash mode, with auto-fallback in IE9
  - Customizable Scroll Behavior

This package is a build dependency of Laminar (#919181)

Cheers,
Xavier



Bug#882090: [Pkg-javascript-devel] node-yamljs updated

2019-03-30 Thread Xavier
Le 30/03/2019 à 12:39, Xavier a écrit :
> Hello,
> 
> I updated node-yamljs, please check my changes to see if all is OK and
> ready to push.
> 
> Following our policy, source package should be renamed yamljs.js
> (provides node-yamljs and libjs-yamljs).
> 
> Cheers,
> Xavier
> 
> https://salsa.debian.org/js-team/node-yamljs

Renamed to https://salsa.debian.org/js-team/yamljs.js



Bug#882090: node-yamljs updated

2019-03-30 Thread Xavier
Hello,

I updated node-yamljs, please check my changes to see if all is OK and
ready to push.

Following our policy, source package should be renamed yamljs.js
(provides node-yamljs and libjs-yamljs).

Cheers,
Xavier

https://salsa.debian.org/js-team/node-yamljs



Bug#894447: Error

2018-03-30 Thread Xavier
close 894447

stop

This is a duplication of #894448 with some errors.



Bug#638055: Job started

2018-04-01 Thread Xavier
Packaging started under Debian Perl Group umbrella.



Bug#887611: RFP: libsisimai-perl -- Mail Analyzing Interface for bounce mails

2018-04-04 Thread Xavier
tags 887611 + pending

stop

Hello,

I've prepared libsisimai-perl with a dfsg repacking to remove all
set-of-emails/* files (used only for some tests).

A bug is also opened upstream to clean emails:
https://github.com/sisimai/set-of-emails/issues/6

Regards,
Xavier



Bug#895424: Fwd: OCSIventory-Server maintenance in Debian

2018-04-24 Thread Xavier
 Message 
Subject : Re: OCSIventory-Server maintenance in Debian
Date : Tue, 24 Apr 2018 12:41:08 +0200
From : Jean-Michel Vourgère 
Organization : Debian
To : Xavier 

On Tuesday, 24 April 2018 06:45:03 CEST you wrote:
> Pierre Chiffier has request a RFA for ocsinventory-server. It is going
> to be taken under Pkg-Perl umbrella.
> You were mentioned as uploaders of this package and going to be removed
> except if you want to continue to maintain it.

No problem. Go ahead.

Sorry I have been able to help better on this one.

Thank you!



signature.asc
Description: OpenPGP digital signature


Bug#895424: OCSIventory-Server maintenance in Debian

2018-04-24 Thread Xavier
Le 24/04/2018 à 12:41, Jean-Michel wrote :
> On Tuesday, 24 April 2018 06:45:03 CEST you wrote:
>> Pierre Chiffier has request a RFA for ocsinventory-server. It is going
>> to be taken under Pkg-Perl umbrella.
>> You were mentioned as uploaders of this package and going to be removed
>> except if you want to continue to maintain it.
> 
> No problem. Go ahead.
> 
> Sorry I have been able to help better on this one.
> 
> Thank you!

Thanks to you !



Bug#897017: Deprecation

2018-04-27 Thread Xavier
Hello FTP masters,

I noticed that node-bufferlist is marked as deprecated, but :
 - it is a dependency (via node-fastcgi-stream) of node-fastcgi which is
   well maintained
 - it has no issues

I'm going to package node-fastcgi-stream and node-fastcgi, that's why
I've ITP this package

Regards,
Xavier



Bug#897017: Deprecation

2018-04-27 Thread Xavier
Le 27/04/2018 à 09:45, Xavier a écrit :
> Hello FTP masters,
> 
> I noticed that node-bufferlist is marked as deprecated, but :
>  - it is a dependency (via node-fastcgi-stream) of node-fastcgi which is
>well maintained
>  - it has no issues
> 
> I'm going to package node-fastcgi-stream and node-fastcgi, that's why
> I've ITP this package
> 
> Regards,
> Xavier

Bug opened: https://github.com/samcday/node-fastcgi-stream/issues/7



Bug#898558: Retitle

2018-05-13 Thread Xavier
retitle 898558 RFP: node-is-in-subnet -- Node.js library to check if an
IP is in a subnet

stop

I'll not package it since it requires some TypeScript knowledge



Bug#900238: ITP: node-ldap-client -- LDAP client library for Node.js

2018-05-31 Thread Xavier
ldapjs seems a much better candidate, more popular and usable. It seems
to require a lot of dependencies. I'm going to take a look at it.



signature.asc
Description: OpenPGP digital signature


Bug#970559: ITP: glab -- An open-source GitLab command line tool

2020-09-18 Thread Xavier
Control: forcemerge -1 970560

Le 18/09/2020 à 18:57, TODO a écrit :
> Package: wnpp
> Severity: wishlist
> Owner: TODO 
> 
> * Package name: glab
>   Version : 1.10.0-1
>   Upstream Author : Clement Sam
> * URL : https://github.com/profclems/glab
> * License : Expat
>   Programming Lang: Go
>   Description : An open-source GitLab command line tool

Do you think this description is relevant for an ITP ???

>  GLab
>  .
>  All Contributors (#contributors-)
>  .
>  .
>  Go Report Card (https://goreportcard.com/report/github.com/profclems/glab)
>  GitHub Workflow Status .github/workflows/build_docs.yml Gitter
>  
> (https://gitter.im/glabcli/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
>  License (LICENSE) Twitter
>  
> (https://twitter.com/intent/tweet?text=Take%20Gitlab%20to%20the%20command%20line%20with%20%23glab,%20an%20open-source%20GitLab%20CLI%20tool:&url=https%3A%2F%2Fgithub.com%2Fprofclems%2Fglab)
>  .
>  GLab is an open source Gitlab Cli tool written in Go (golang) to help
>  work seamlessly with Gitlab from the command line. Work with issues,
>  merge requests, watch running pipelines directly from your CLI among
>  other features.
>  .
>  image Usage bash
>glab   [flags]
>  .
>  Core Commands• glab mr [list, create, close, reopen, delete]• glab
>  issue [list, create, close, reopen, delete]• glab pipeline [list,
>  delete, ci status, ci view]• glab config• glab helpExamples bash
>$ glab issue create --title="This is an issue title" --description="This
>is a really long description" $ glab issue list --closed $ glab pipeline
>ci view -b master# to watch the latest pipeline on master $ glab
>pipeline status# classic ci view
>  .
>  Learn More Read the documentation (https://clementsam.tech/glab) for
>  more information on this tool.  Support glab 💖 By donating $5 or
>  more you can support the ongoing development of this project. We'll
>  appreciate some support. Thank you to all our supporters! 🙏
>  [Contribute (https://opencollective.com/glab/contribute)] Individuals
>  This project exists thanks to all the people who contribute. [Contribute
>  (https://github.com/profclems/glab/blob/trunk/.github/CONTRIBUTING.md)].
>  .
>  Backers Thank you to all our backers! 🙏 [Become a backer
>  (https://opencollective.com/glab/contribute)]
>  .
>  Installation Download a binary suitable for your OS at the releases page
>  (https://github.com/profclems/glab/releases/latest).  Quick Install (Bash)
>  You can install or update glab with: bash curl -sL https://j.mp/glab-i |
>  sudo bash
>  .
>  or bash curl -s
>  
> https://raw.githubusercontent.com/profclems/glab/trunk/scripts/quick_install.sh
>  | sudo bash
>  .
>  Installs into usr/local/bin
>  .
>  NOTE: Please take care when running scripts in this fashion. Consider
>  peaking at the install script itself and verify that it works as intended.
>  Windows Available for download on scoop or manually as an installable
>  executable file or a Portable archived file in tar and zip formats at the
>  releases page (https://github.com/profclems/glab/releases/latest).
>  Download and install now at the releases page
>  (https://github.com/profclems/glab/releases/latest).
>  .
>  The installable executable file sets the PATH
>  automatically.  Scoop sh scoop bucket add profclems-bucket
>  https://github.com/profclems/scoop-bucket.git scoop install glab
>  .
>  Linux Downloads available via linuxbrew (homebrew) and tar balls Linuxbrew
>  (Homebrew) sh brew install profclems/tap/glab
>  .
>  Updating: sh brew upgrade glab
>  .
>  Arch Linux glab is available through the gitlab-glab-bin
>  (https://aur.archlinux.org/packages/gitlab-glab-bin/) package on
>  the AUR.  Manual Installation Download the tar ball, untar and
>  install: • Download the .tar.gz file from the releases page
>  (https://github.com/profclems/glab/releases/latest)• unzip
>  glab-*-linux-amd64.tar.gz to unzip the downloaded file• sudo mv
>  glab-*-linux-amd64/glab /usr/binMacOS glab is available via Homebrew or
>  you can manually install Homebrew sh brew install profclems/tap/glab
>  .
>  Updating: sh brew upgrade glab
>  .
>  Installing manually• Download the .tar.gz or .zip file from the releases
>  page (https://github.com/profclems/glab/releases/latest) and unzip or
>  untar• ls /usr/local/bin/ || sudo mkdir /usr/local/bin/; to make sure
>  the bin folder exists• sudo mv glab-*-darwin-amd64/glab /usr/binBuilding
>  From Source If a supported binary for your OS is not found at the releases
>  page (https://github.com/profclems/glab/releases/latest), you can build
>  from source: • Verify that you have Go 1.13.8+ installed sh
> $ go version go version go1.14
>  .
>  .
>  If go is not installed, follow instructions on the Go website
>  (https://golang.org/doc/install).  • Clone this repository sh
> $ git clone https://github.com/profclems/glab.git glab-cli $
> cd glab-cli
>  .
>  .
>  or
>  .
>  sh
> 

Bug#887167: ITP: node-es-abstract -- ECMAScript spec abstract operations

2020-10-05 Thread Xavier
Hi,

this package is required by most of JS test framework. AT least it is
needed to update mocha, jest, node-webassemblyjs and npm. Both
node-webassemblyjs and npm currently embeds a copy of it, which is a bad
thing: this is not a "little package".

Cheers,
Xavier



Bug#902062: node-bunyan status

2020-10-12 Thread Xavier
More than a year ago, Andrius wrote:
> Hi,
>
> On 2019-08-21 11:55, Xavier wrote:
> > no real reason, node-bunyan is needed for node-ldapjs which is not
> > ready. It requires also node-dtrace-provider and node-vasync. Do you
> > need it for another reason ?
>
> Yes, I am investigating packaging possibilities of overleaf
> dependencies. One of them, clsi, ultimately needs node-bunyan.
>
> Andrius

Hi,

over a year later, node-bunyan is still in NEW queue. I guess ftpmasters
don't like it.
I have no time to waste trying to get node-ldapjs in Debian 12 (too late
now for bullseye), so I don't need node-bunyan anymore. Do you plan to
embed it? If yes, feel free to close this ITP.

Cheers,
Xavier



Bug#453065: getfem++ 4.0

2009-09-26 Thread Xavier Vello
Hello

> > 4. I would like to suggest that getfem is moved to the "Debian
> > Scientific Computing Team", since this team already maintains many
> > similar packages. As I haven't contacted neither the people who worked
> > on getfem in the past nor the "Debian Scientific Computing Team" yet,
> > I CC persons from both parties in this mail hoping to get some
> > positive response from both. In any case, I would be glad to continue
> > working on this package under the mentoring/sponsoring of anyone who
> > would like to undertake it.
> 
> I am more than happy if you take over it, all the packages placed under
> pkg-kde/krap are build depends or depend of KDE that we (KDE team) need but
> we do not really want to maintain.
> I do not know if Xavier Bello is still interested in it, but he always can
> join you in the maintenance under the umbrella of the  Scientific Computing
> Team.

I just packaged it as a KDE dependency, I don't have any special interest in 
it. Please feel free to take over the maintenance.


Regards
-- 
Xavier Vello



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



Bug#550091: ITP: libapp-daemon-perl -- Start an Application as a Daemon

2009-10-07 Thread Xavier Oswald
Package: wnpp
Severity: wishlist
Owner: Xavier Oswald 


* Package name: libapp-daemon-perl
  Version : 0.06
  Upstream Author : Mike Schilli 
* URL : http://search.cpan.org/~mschilli/App-Daemon-0.06/
* License : Artistic, GPL
  Programming Lang: Perl
  Description : Start an Application as a Daemon

App::Daemon helps running an application as a daemon. The idea is prependending
a script with functions provided by this module in order to 'deamonize" it.


-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

-- 
 ,''`.| == Xavier Oswald  == | mail: xosw...@debian.org |
: :' :| Engineer at CALDERA GRAPHICS | http://www.caldera.eu|
`. `' | GNU/LINUX Debian Developer   | http://debian.org|
  `-  | Isaac Project Developer  | http://isaacproject.u-strasbg.fr |



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



Bug#508048: Debian Virtuoso packaging

2009-10-22 Thread Xavier Vello
Hello

As a pkg-kde team member, I'd like to join the packaging effort, to make sure 
it meets KDE's requirements.

I'm not very good at packaging, but have time and motivation.

Can you please tell me what is the state of the packaging, who is still active 
on it and what is needed before a first release ?


Regards
-- 
Xavier Vello



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



Bug#553582: ITP: libapache-session-ldap-perl -- LDAP Backend for Apache::Session system

2009-11-01 Thread Xavier Guimard
Package: wnpp
Severity: wishlist
Owner: Xavier Guimard 

* Package name: libapache-session-ldap-perl
  Version : 0.2
  Upstream Author : Xavier Guimard 
* URL : http://search.cpan.org/~guimard/Apache-Session-LDAP-0.02/
* License : Artistic | GPL2
  Programming Lang: Perl
  Description : LDAP Backend for Apache::Session system

LDAP directory is a very fast system to provide a session storage system for 
CGIs especially when session are read more than written. This backend has been 
written for Lemonldap::NG web-sso system.



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



Bug#469186: ITP: libregexp-assemble-perl -- Assemble multiple Regular Expressions into a single regular expression

2008-03-03 Thread Xavier Guimard
Package: wnpp
Severity: wishlist
Owner: Xavier Guimard <[EMAIL PROTECTED]>


* Package name: libregexp-assemble-perl
  Version : 0.32
  Upstream Author : David Landgren <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/~dland/Regexp-Assemble-0.32/
* License : GPL and Artistic
  Programming Lang: Perl
  Description : Assemble multiple Regular Expressions into a single regular 
expression

(Include the long description here.)

Regexp::Assemble takes an arbitrary number of regular expressions
and assembles them into a single regular expression (or RE) that
matches all that the individual REs match.
As a result, instead of having a large list of expressions to loop
over, a target string only needs to be tested against one expression.
This is interesting when you have several thousand patterns to deal
with. Serious effort is made to produce the smallest pattern possible.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (800, 'testing'), (600, 'unstable'), (600, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


.




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



Bug#365326: 365326

2008-04-19 Thread Xavier Douville
I am still interested by this software (and use it). I would be nice 
that someone include it to debian.


thanks

Xavier Douville



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



Bug#365326: thanks for packaging

2008-05-27 Thread Xavier Douville

Thanks for packaging, I can confirm it is working.

Starting with magic -d OGL gives me a segfault however, but it is an 
upstream bug.


Have you planned to package IRSIM (the simulator) as well?
http://opencircuitdesign.com/irsim/

Xavier Douville



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



Bug#345042: RFP: gstreamer-pitfdll -- GStreamer plugin that allows the use of binary files

2005-12-28 Thread Xavier Bestel
Package: wnpp
Severity: wishlist


* Package name: gstreamer-pitfdll
  Version : 0.8.2
  Upstream Author : Ronald Bultje <[EMAIL PROTECTED]>
* URL : http://ronald.bitfreak.net/pitfdll/
* License : LGPL
  Description : GStreamer plugin that allows the use of binary files

Pitfdll is a GStreamer plugin that allows the use of binary files, such
as Quicktime QTX or Directshow/DMO DLL files, for use as a playback
codec in GStreamer-based media applications, such as Totem. With this
plugin, people can playback proprietary file formats for which no free
software implementation exists yet.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-2-amd64-k8
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#358679: RFP: cosmo -- Cosmo is a calendar server

2006-03-23 Thread Xavier Bestel
Package: wnpp
Severity: wishlist


* Package name: cosmo
  Version : 0.2
  Upstream Author : [EMAIL PROTECTED]
* URL : http://wiki.osafoundation.org/bin/view/Projects/CosmoHome
* License : Apache Software License, Version 2.0
  Description : Cosmo is a calendar server

Cosmo is a calendar server. With your favorite calendar program
(Chandler, Apple iCal, Mozilla Sunbird, or any other WebDAV or CalDAV
enabled client), you can share your calendar with other people by
publishing it to Cosmo. Once your calendar is stored on the server, you
can give permission for others to subscribe to it, and even modify it if
their calendar client allows.

Cosmo is a file server. You can store arbitrary files in your home
directory in Cosmo with any WebDAV client (including the Windows XP,
Linux and Apple OS X file managers), and you can share them with others
in the same way as your calendar.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#310834: evolution-groupdav: do you still ITP it ?

2006-03-28 Thread Xavier Bestel
Hi,

do you still intent to package evolution-groupdav ? That would be great,
but it's been nearly a year since you said so.

Thanks,
Xav




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



Bug#362040: Devicescape stack

2006-04-20 Thread Xavier Douville
The new driver use the Devicescape wireless network stack. We would need 
to package this first.


I tested the driver and it works, but I only get 60 KiB/s when using 
WPA2/TKIP (tested with samba)


Xavier Douville


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



Bug#527107: ITP: libdevel-refcount-perl -- Perl module to obtain the REFCNT value of a referent

2009-05-14 Thread Xavier Oswald
Hi,

I need this module in debian.

Are you about to package it ?

I have already a working package that I can upload if you have not started..

Greetings,
-- 
  ,''`.  Xavier Oswald
 : :' :  GNU/LINUX Debian Developer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#527116: ITP: libdevel-findref-perl -- Perl module to track a reference to the variables containing them

2009-05-14 Thread Xavier Oswald
Hi,

I need this module in debian.

Are you about to package it ?

I have already a working package that I can upload if you have not started..


Greetings,
-- 
  ,''`.  Xavier Oswald
 : :' :  GNU/LINUX Debian Developer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#527117: ITP: libtest-refcount-perl -- Perl module to assert reference counts on objects

2009-05-14 Thread Xavier Oswald
Hi,

I need this module in debian.

Are you about to package it ?

I have already a working package that I can upload if you have not started..


Greetings,
-- 
  ,''`.  Xavier Oswald
 : :' :  GNU/LINUX Debian Developer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#532167: ITP: records -- Save and index notes in Emacs environment

2009-06-07 Thread Xavier MAILLARD
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

--- Please fill out the fields below. ---

   Package name: records
Version: 1.5.2
Upstream Author: Xavier Maillard 
URL: http://launchpad.net/records
License: GPL
Description: Records-mode is a major mode for editing and indexing
 notes. Notes are per-day files containing one or more
 subjects, subjects from different days are indexed and
 can be traversed, etc.

 This package contains files common to GNU Emacs and
 XEmacs. You probably want to install either
 records-gnuemacs or records-xemacs.


The package was already in Debian till 2006 then it got dropped (no
reason given).

1.5.2 is planned for today and will include a debian/ directory with
updated control/changelog/rule files. For the future release, I plan to
keep the debian/ directory up-to-date with debian.

Regards,

Xavier





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



Bug#429577: [wnpp] See this

2009-06-08 Thread Xavier MAILLARD
Hi,

you should look here to get a Debian package:

http://emacs.orebokech.com/

Regards







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



Bug#532833: RFP: invada-studio-plugins -- A set of LADSPA audio plugins

2009-06-11 Thread Xavier Ferko
Package: wnpp
Severity: wishlist


* Package name: invada-studio-plugins
  Version : 0.3.1
  Upstream Author : Fraser Stuart fra...@arkhostings.com
* URL : https://launchpad.net/invada-studio/ladspa/0.3
  License : GPL
  Programming Lang: C
  Description : Invada Studio LADSPA plugins

Invada provides of set of LADSPA audio plugins which contain: tube
distortion, filters, early reflection reverb, peak/rms compressor and
input utility for LADSPA compatible hosts. 






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



Bug#532834: RFP: invada-studio-plugins-lv2 -- A set of LV2 audio plugins

2009-06-11 Thread Xavier Ferko
Package: wnpp
Severity: wishlist


* Package name: invada-studio-plugins-lv2 
  Version : 1.0.1
  Upstream Author : Fraser Stuart fra...@arkhostings.com
* URL : https://launchpad.net/invada-studio/lv2/1.0
  License : GPL
  Programming Lang: C
  Description : Invada Studio LV2 Plugins

Invada provides of set of LV2 audio plugins (+GUI) which contain: tube
distortion, filters, early reflection reverb, peak/rms compressor,
phasers and input utility for LV2 compatible hosts. 




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



Bug#516883: Adoption of slashem

2009-06-12 Thread Xavier Oswald
Hi,

I will adopt it.

Upstream is not dead.

The project is a bit stalled with new features, but they are active when bugs
appears.

Greetings,
-- 
  ,''`.  ** Xavier Oswald 
 : :' :  ** Research Engineer   
 `. `'   ** GNU/LINUX Debian Developer (http://debian.org)  
   `-** Isaac Project Developer (http://isaacproject.u-strasbg.fr/) 




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



Bug#532167: Re-enter a package previously dropped ?

2009-06-14 Thread Xavier Maillard
Hi,

a bit late but thank you for you links.

Concerning my ITP, is it alright ? I mean, is it good practice to
put a previously dropped package into Debian again ?

As said, I am the new maintainer and I fixed many small bugs thus
making it a lot more stable than it was before.

I am also offering to maintain the Debian package if you want (it
is already in the bazaar repository).

Thank you for your answers.

Xavier



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



Bug#532167: Re-enter a package previously dropped ?

2009-06-14 Thread Xavier Maillard
At Sun, 14 Jun 2009 12:35:51 +0200,
Eike Sauer wrote:
> 
> [1  ]
> Hello!
> 
> Am Sonntag, 14. Juni 2009 schrieb Xavier Maillard:
> > Concerning my ITP, is it alright ? I mean, is it good practice to
> > put a previously dropped package into Debian again ?
> 
> The reasons given for dropping the package were:
> * Package is out of date.
> * Upstream appears inactive since 2003.
> * Low popcon (< 100).
> * Package is orphaned. (Orphaned in Dec 2007).
> * Package is buggy.
> 
> Your commitment should solve 4 of those.
> So I think you could go ahead.

Thank you very much for you encouragements :)

I will go ahead and I will try to find a sponsor then.

Xavier



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



Bug#534358: O: libparse-recdescent-perl

2009-06-23 Thread Xavier Oswald
Hi,

Thanks for your work.

The perl team will take care of this module.

Greetings,
-- 
  ,''`.  ** Xavier Oswald 
 : :' :  ** Research Engineer   
 `. `'   ** GNU/LINUX Debian Developer (http://debian.org)  
   `-** Isaac Project Developer (http://isaacproject.u-strasbg.fr/) 




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



Bug#487968: ITP: lib-graph-writer-graphviz-perl -- GraphViz Writer for Graph object

2008-06-25 Thread Xavier Oswald
Package: wnpp
Severity: wishlist
Owner: Xavier Oswald <[EMAIL PROTECTED]>

* Package name: lib-graph-writer-graphviz-perl
  Version : 0.10
  Upstream Author : Kang-min Liu <[EMAIL PROTECTED]>
* URL : 
http://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/Graph-Writer-GraphViz-0.10.tar.gz
* License : GPL/Artistic
  Programming Lang: Perl
  Description : GraphViz Writer for Graph object

Graph::Writer::GraphViz is a class for writing out a Graph object with GraphViz
module. All GraphViz formats should be supported without a problem.

Unlike other Graph::Writer modules, this module provide an extra parameter
'-format' to new() method, in order to save different format. Other supported
GraphViz parameters are -layout, -ranksep, -shape, -fontsize, -arrowsize.

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

Kernel: Linux 2.6.24-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>   
 : :' :  GNU/LINUX Debian Maintainer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#487988: ITP: lib-graph-readwrite-perl -- Read and write directed graphs in a variety of file formats

2008-06-25 Thread Xavier Oswald
Package: wnpp
Severity: wishlist
Owner: Xavier Oswald <[EMAIL PROTECTED]>

* Package name: lib-graph-readwrite-perl
  Version : 2.00
  Upstream Author : Neil Bowers <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/~neilb/Graph-ReadWrite-2.00/
* License : GPL/Artistic
  Programming Lang: Perl
  Description : Read and write directed graphs in a variety of file formats


This is a collection of perl classes for reading and writing
directed graphs in a variety of file formats. The graphs are
represented in Perl using Jarkko Hietaniemi's Graph classes.

There are two base classes:

  Graph::Reader
  Base class for classes which read a graph
  file and create an instance of the Graph class.

  Graph::Writer
  Base class for classes which take an instance of the
  Graph class and write it out in a specific file format.

Supported formats : XML, Dot, VCG, daVinci, HTK

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

Kernel: Linux 2.6.24-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>   
 : :' :  GNU/LINUX Debian Maintainer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#472471: planner

2008-07-02 Thread Xavier Oswald
I will be happy to adopt it.

If it's ok for you, planner has now a new maintainer :)

And James if you want we can co-maintain it together. Im not a DD too but Im DM
and maybe a DD soon. I have some DD friends for doing uploads.

Greetings,
-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>   
 : :' :  GNU/LINUX Debian Maintainer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#494142: ITP: libtext-patch-perl -- Patches text with given patch

2008-08-07 Thread Xavier Oswald
Package: wnpp
Severity: wishlist
Owner: Xavier Oswald <[EMAIL PROTECTED]>

* Package name: libtext-patch-perl
  Version : 1.4
  Upstream Author : Vladi Belperchinov-Shabanski <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/dist/Text-Patch/
* License : GPL
  Programming Lang: Perl
  Description : Patches text with given patch

 Text::Patch combines source text with given diff (difference) data. Diff data
 is produced by Text::Diff module or by the standard diff utility (man diff,
 see -u option).

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

-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>   
 : :' :  GNU/LINUX Debian Maintainer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#496722: ITP: palapeli -- a puzzle game for KDE4

2008-08-26 Thread Xavier Vello
Package: wnpp
Severity: wishlist
Owner: Xavier Vello <[EMAIL PROTECTED]>


* Package name: palapeli
  Version : 0.2
  Upstream Author : Stefan Majewsky <[EMAIL PROTECTED]>
Felix Lemke <[EMAIL PROTECTED]>
* URL : 
http://www.kde-apps.org/content/show.php/Palapeli?content=82539
* License : GPLv2+
  Programming Lang: C++
  Description : a puzzle game for KDE4

 Palapeli is a jigsaw puzzle game. Unlike other games in that genre,
 you are not limited to aligning pieces on imaginary grids. The
 pieces are freely moveable.

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



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



Bug#498347: ITP: libclass-std-utils-perl -- This module provides three utility subroutines

2008-09-09 Thread Xavier Oswald
Package: wnpp
Severity: wishlist
Owner: Xavier Oswald <[EMAIL PROTECTED]>

* Package name: libclass-std-utils-perl
  Version : 0.0.3 
  Upstream Author : Damian Conway <[EMAIL PROTECTED]>
* URL : http://search.cpan.org/dist/Class-Std-Utils/
* License : GPL
  Programming Lang: Perl
Description : Utility subroutines for building "inside-out" objects 

This module provides three utility subroutines that simplify the creation of
"inside-out" classes. See Chapters 15 and 16 of "Perl Best Practices" (O'Reilly,
2005) for details.


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

-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>   
 : :' :  GNU/LINUX Debian Maintainer
 `. `'   GnuPG Key ID 0x88BBB51E
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E 




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



Bug#456575: RFP: qelectrotech -- electric diagrams editor

2007-12-16 Thread Xavier Guerrin
Package: wnpp
Version: N/A; reported 2007-12-16
Severity: wishlist

* Package name : qelectrotech
* Version : 0.1-svnXXX or 0.1b, as you wish
* Upstream Author : Xavier Guerrin <[EMAIL PROTECTED]>
* URL : http://qelectrotech.tuxfamily.org/
* License : GPL
* Description :
QElectroTech is a Qt4 application to design electric diagrams. It uses XML  
files for elements and diagrams, and includes both a diagram editor and an 
element editor.
* Requirements :
libqt4 (core, gui, xml, svg)
cupsys-bsd (optional - used for printing)
* Quick "How to build" :
svn co svn://svn.tuxfamily.org/svnroot/qet/qet/trunk qelectrotech
edit qelectrotech.pro for compilation options
qmake-qt4
make
make install
* Notes : Documentation is still in french. However, you can contact the 
upstream author for details in english.

Thanks in advance,

Xavier G.



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



Bug#562942: ITP: liblog4ada -- An Ada library for flexible logging

2009-12-29 Thread xavier . grave
Package: wnpp
Severity: wishlist
Owner: xavier.gr...@ipno.in2p3.fr


* Package name: liblog4ada
  Version : 1.0
  Upstream Author : Xavier Grave 
* URL : http://www.ada-france.org:8081 branch org.log4Ada
* License : GPL
  Programming Lang: Ada
  Description : An Ada library for flexible logging

 Log4Ada is a library written in the intend to ease logging in applications
 written in Ada. For more information about the logging scheme developped in
 this library see the log4j project : http://logging.apache.org/log4j/docs/



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



Bug#562088: ITP: libxmlezout -- XML EZ_Out is a small set of packages intended to aid the creation of XML-formatted output from within Ada programs.

2009-12-29 Thread xavier grave
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ben Hutchings a écrit :
> On Tue, Dec 22, 2009 at 02:55:17PM +0000, xavier wrote:
>> Package: wnpp
>> Severity: wishlist
>> Owner: xavier 
>>
>>
>> * Package name: libxmlezout
> [...]
> 
> Library packages that don't have a C or C++ interface normally include the
> language name somewhere in the name.  Most of the existing Ada libraries
> appear to have 'ada' at the end of the name, so this package would be
> 'libxmlezoutada'.

Please can you point me to the Debian policy that I should read to have
a clear understanding of your point ?
Because if it seems right for example for perl (4.2 in
http://www.debian.org/doc/packaging-manuals/perl-policy/ch-module_packages.html)
, nothing like that is stated for Ada as far as I can understand
(http://people.debian.org/~lbrenta/debian-ada-policy.html). libaws is a
counter example to your statement.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAks6FtIACgkQVIZi0A5BZF5IugCeNOX5YBBjylxeuGf2ICfgLEfq
HDkAn3A7SB3j1rSwIvCUH9kqN79EQ+W8
=1QqG
-END PGP SIGNATURE-



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



Bug#503527: ITA: qsynth -- fluidsynth MIDI sound synthesiser front-end

2010-02-02 Thread Xavier Oswald
owner 503527 xosw...@debian.org

Hi,

I will adopt this package.

Greetings,
-- 
 ,''`. Xavier Oswald (xosw...@debian.org)
: :' : GNU/LINUX Debian Developer <http://www.debian.org> 
`. `'  GPG Key: 1024D/88BBB51E
  `-   938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E



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



Bug#522396: Taking over rekonq on behalf of the pkg-kde-extras team

2010-03-01 Thread Xavier Vello
retitle 522396 ITP: rekonq -- A lightweight, WebKit based web browser for KDE
owner 522396 xavier.ve...@gmail.com
thanks

-- 
Xavier Vello


signature.asc
Description: This is a digitally signed message part.


Bug#574969: Moodle debian-edu theme

2010-03-22 Thread Xavier Oswald
Hi,

I maintain the moodle-debian-edu-theme package.

I don't have enough time to adopt this package so if the package will be removed
from debian, please tell so I'll remove the moodle-debian-edu-theme package too.


I should be able to spend a little bit time on moodle. So if someone is
interested to adopt it, I will be happy to help with packaging.


Greetings,
-- 
 ,''`. Xavier Oswald (xosw...@debian.org)
: :' : GNU/LINUX Debian Developer <http://www.debian.org> 
`. `'  GPG Key: 1024D/88BBB51E
  `-   938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100322163410.gb...@gmail.com



Bug#574969: Debian WNPP - Moodle

2010-03-22 Thread Xavier Oswald
On 23:00 Mon 22 Mar , Tomasz Muras wrote:
> Hi Penny,
> 
> I have some experience in Debian & packaging and quite a lot of
> experience with Moodle.
> I could definitely help with the maintenance of the package - could
> you give me some pointers/instructions to what needs to be done there?

Nice to hear that.

Please have a look to:
http://packages.qa.debian.org/m/moodle.html

You will see lot of bugreports and even an RC bug.

BTW, it's better to reply to the 'orphaning bugreport'
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574969

So everybody following the moodle package will notice that you could be 
interested in taking it.

Greetings,
-- 
 ,''`. Xavier Oswald (xosw...@debian.org)
: :' : GNU/LINUX Debian Developer <http://www.debian.org> 
`. `'  GPG Key: 1024D/88BBB51E
  `-   938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E



-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100322233936.ga2...@gmail.com



Bug#422137: ITP: 455FE10422CA29C4933F95052B792AB2 -- l33t h4x0r numb3r

2007-05-30 Thread Xavier Roche
> This package contains the "09F911029D74E35BD84156C5635688C0" number.

The package should also contain the '455FE10422CA29C4933F95052B792AB2'
number, which is also a very cool number.



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



Bug#429441: ITP: lemonldap-ng -- lemonldap-ng is a Perl web single-sign-on system usable as Apache module

2007-06-18 Thread Xavier Guimard
Package: wnpp
Severity: wishlist
Owner: Xavier Guimard <[EMAIL PROTECTED]>


* Package name: lemonldap-ng
  Version : x.y.z
  Upstream Author : Name <[EMAIL PROTECTED]>
* URL : http://www.example.org/
* License : (GPL, LGPL, BSD, MIT/X, etc.)
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description : lemonldap-ng is a Perl web single-sign-on system usable as 
Apache module

(Include the long description here.)
Lemonldap::NG is a modular web-sso system based on Apache::Session::*
modules. It manages both authentication and authorization.
Authentication can be based on ldap, SSL or CAS. Authorizations are
evaluated using regular expressions associated with Perl boolean
expressions on LDAP attributes. The packages are available here:

  deb http://lemonldap.objectweb.org/NG/debian testing/
  deb-src http://lemonldap.objectweb.org/NG/debian testing/

The Home project is here:
http://wiki.lemonldap.objectweb.org/xwiki/bin/view/NG/Presentation

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (800, 'testing'), (600, 'unstable'), (600, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-xen-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash


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



  1   2   3   4   >