Processed: tagging as pending bugs that are closed by packages in NEW

2011-12-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Sun Dec 18 07:03:05 UTC 2011
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: multipartposthandler
> tags 652492 + pending
Bug #652492 [wnpp] ITP: python-multipartposthandler -- handler for urllib2 to 
enable multipart form uploading
Added tag(s) pending.
> # Source package in NEW: libhtml-html5-entities-perl
> tags 652481 + pending
Bug #652481 [wnpp] ITP: libhtml-html5-entities-perl -- module to encode and 
decode character entities defined in HTML5
Added tag(s) pending.
> # Source package in NEW: imagemagick
> tags 618435 + pending
Bug #618435 [imagemagick] -depth busted
Added tag(s) pending.
> # Source package in NEW: imagemagick
> tags 644170 + pending
Bug #644170 [imagemagick] imagemagick: delegate 'ffmpeg' fails
Bug #644171 [imagemagick] imagemagick: delegate 'ffmpeg' fails
Added tag(s) pending.
Added tag(s) pending.
> # Source package in NEW: imagemagick
> tags 640680 + pending
Bug #640680 [src:imagemagick] [PATCH] imagemagick multiarch conversion
Added tag(s) pending.
> # Source package in NEW: imagemagick
> tags 598693 + pending
Bug #598693 [imagemagick] imagemagick: compile with libfftw?
Added tag(s) pending.
> # Source package in NEW: imagemagick
> tags 650417 + pending
Bug #650417 [imagemagick] perlmagick: fails at runtime with symbol lookup error
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
650417: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650417
644170: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=644170
652492: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652492
652481: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652481
618435: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618435
598693: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598693
640680: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640680
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.132419181415677.transcr...@bugs.debian.org



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Roberto C . Sánchez
On Sat, Dec 17, 2011 at 07:02:35PM -0430, Luis Alejandro Martínez Faneyth wrote:
> On 17/12/11 18:24, Roberto C. Sánchez wrote:
> > 
> > What you have done is reinvent the wheel, and badly at that.
> 
> I coudn't find any other user friendly interface to manage user accounts
> from an LDAP.
> 
I should have been more clear.  I was referring to the fact that there
are lots of proven ways to validate email addresses in PHP.  In fact,
you don't even need any external library, you can just use filter_var():

http://php.net/manual/en/filter.examples.validation.php

Regards,

-Roberto

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Josselin Mouette
Le samedi 17 décembre 2011 à 18:08 -0430, Luis Alejandro Martínez
Faneyth a écrit :
> > $sel_q = "SELECT * FROM NewUser"
> >   . " WHERE mail='" . $mail . "'"
> >   . " AND uid='" . $uid . "'"
> >   . " AND token='" . $token . "'"
> >   . " ORDER BY token DESC LIMIT 0,1";

> You are still scared?

Yes. No such things in the Debian archive please.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling




--
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/1324165012.2828.1.camel@tomoe



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Luis Alejandro Martínez Faneyth
On 17/12/11 18:24, Roberto C. Sánchez wrote:
> On Sat, Dec 17, 2011 at 06:08:35PM -0430, Luis Alejandro Martínez Faneyth 
> wrote:
>> On 17/12/11 16:19, Sune Vuorela wrote:
>>>
>>> $sel_q = "SELECT * FROM NewUser"
>>>   . " WHERE mail='" . $mail . "'"
>>>   . " AND uid='" . $uid . "'"
>>>   . " AND token='" . $token . "'"
>>>   . " ORDER BY token DESC LIMIT 0,1";
>>
>> Thanks for having a look :)
>>
>> Well, i perform a very strict validation before that query is made.
>> Lines 20 - 54:
>>
>> http://code.google.com/p/aguilas/source/browse/NewUserDo.php#20
>> http://code.google.com/p/aguilas/source/browse/NewUserDo.php#54
>>
>> You are still scared?
>>
> I would be.  Bind variables exist for a reason.  Aside from that, your
> validation of email addresses is wrong:
> 
> // Invalid e-mail
> } elseif (preg_match("/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/", $mail) 
> == 0) {
> 
> First off, there is nothing in the RFC that says that the email address
> must start with a letter, which your regex requires.  In addition to
> that, you do not allow other allowed special characters:
> 
>  !#$%&'*/=?^_`{|}~"(),:;<>@[\]
> 
> You also don't properly check for consecutive dots, so I could pass the
> email a@foo.com and it pass your check, and still be wrong.

Thank you, i will correct that inmediately.

> 
> What you have done is reinvent the wheel, and badly at that.

I coudn't find any other user friendly interface to manage user accounts
from an LDAP.

> 
> If it were up to me, I would reject this package based on that one line
> of code alone.
>>
>> CODE IS POETRY
>>
> I find it terribly ironic that you have that satement in your email
> signature.

Don't. It does not states that i'm a poetrician :)

> 
> Regards,
> 
> -Roberto
> 

-- 
Sin más que agregar y siempre a la orden,


Luis Alejandro Martínez Faneyth
Ingeniero de Telecomunicaciones
Blog: http://www.huntingbears.com.ve/
Twitter: @LuisAlejandro
GPG Key = E78DAA2E


CODE IS POETRY



-- 
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/4eed2693.6070...@gmail.com



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Roberto C . Sánchez
On Sat, Dec 17, 2011 at 06:08:35PM -0430, Luis Alejandro Martínez Faneyth wrote:
> On 17/12/11 16:19, Sune Vuorela wrote:
> > 
> > $sel_q = "SELECT * FROM NewUser"
> >   . " WHERE mail='" . $mail . "'"
> >   . " AND uid='" . $uid . "'"
> >   . " AND token='" . $token . "'"
> >   . " ORDER BY token DESC LIMIT 0,1";
> 
> Thanks for having a look :)
> 
> Well, i perform a very strict validation before that query is made.
> Lines 20 - 54:
> 
> http://code.google.com/p/aguilas/source/browse/NewUserDo.php#20
> http://code.google.com/p/aguilas/source/browse/NewUserDo.php#54
> 
> You are still scared?
> 
I would be.  Bind variables exist for a reason.  Aside from that, your
validation of email addresses is wrong:

// Invalid e-mail
} elseif (preg_match("/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/", $mail) == 
0) {

First off, there is nothing in the RFC that says that the email address
must start with a letter, which your regex requires.  In addition to
that, you do not allow other allowed special characters:

 !#$%&'*/=?^_`{|}~"(),:;<>@[\]

You also don't properly check for consecutive dots, so I could pass the
email a@foo.com and it pass your check, and still be wrong.

What you have done is reinvent the wheel, and badly at that.

If it were up to me, I would reject this package based on that one line
of code alone.
> 
> CODE IS POETRY
> 
I find it terribly ironic that you have that satement in your email
signature.

Regards,

-Roberto

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com



--
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/20111217225432.ga27...@connexer.com



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Luis Alejandro Martínez Faneyth
On 17/12/11 16:19, Sune Vuorela wrote:
> On Saturday 17 December 2011 14:48:22 Luis Alejandro Martínez Faneyth wrote:
>> Package: wnpp
>> Severity: wishlist
>> Owner: "Luis Alejandro Martínez Faneyth" 
>>
>> * Package name: aguilas
>>   Version : 1.0.0
>>   Upstream Author : Luis Alejandro Martínez Faneyth
>> 
>> * URL : http://code.google.com/p/aguilas
>> * License : GPL-3
>>   Programming Lang: PHP
>>   Description : A web-based LDAP user management system
>>
>> AGUILAS is an application written mostly in PHP, but it has bits of
>> JavaScript, SQL, style sheets and of course, HTML. It is a centralized
> 
> I was showing 'aguilas' to some people also looking for web based ldap user 
> management systems, and then within not too much time, I got a message back 
> saying 
> 
> "not sure I like the look of that sql query..."
> "sql injection in 5 seconds flat"
> 
> 
> $sel_q = "SELECT * FROM NewUser"
>   . " WHERE mail='" . $mail . "'"
>   . " AND uid='" . $uid . "'"
>   . " AND token='" . $token . "'"
>   . " ORDER BY token DESC LIMIT 0,1";

Thanks for having a look :)

Well, i perform a very strict validation before that query is made.
Lines 20 - 54:

http://code.google.com/p/aguilas/source/browse/NewUserDo.php#20
http://code.google.com/p/aguilas/source/browse/NewUserDo.php#54

You are still scared?

> 
> I also got a bit scared by this. 
> 
> /Sune

-- 
Sin más que agregar y siempre a la orden,


Luis Alejandro Martínez Faneyth
Ingeniero de Telecomunicaciones
Blog: http://www.huntingbears.com.ve/
Twitter: @LuisAlejandro
GPG Key = E78DAA2E


CODE IS POETRY



-- 
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/4eed19eb.9010...@gmail.com



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Sune Vuorela
On Saturday 17 December 2011 14:48:22 Luis Alejandro Martínez Faneyth wrote:
> Package: wnpp
> Severity: wishlist
> Owner: "Luis Alejandro Martínez Faneyth" 
> 
> * Package name: aguilas
>   Version : 1.0.0
>   Upstream Author : Luis Alejandro Martínez Faneyth
> 
> * URL : http://code.google.com/p/aguilas
> * License : GPL-3
>   Programming Lang: PHP
>   Description : A web-based LDAP user management system
> 
> AGUILAS is an application written mostly in PHP, but it has bits of
> JavaScript, SQL, style sheets and of course, HTML. It is a centralized

I was showing 'aguilas' to some people also looking for web based ldap user 
management systems, and then within not too much time, I got a message back 
saying 

"not sure I like the look of that sql query..."
"sql injection in 5 seconds flat"


$sel_q = "SELECT * FROM NewUser"
  . " WHERE mail='" . $mail . "'"
  . " AND uid='" . $uid . "'"
  . " AND token='" . $token . "'"
  . " ORDER BY token DESC LIMIT 0,1";

I also got a bit scared by this. 

/Sune
-- 
Do you know how might I reset the SCSI window?

You should reset the head.



--
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/201112172149.16597.s...@debian.org



Bug#565308: RFP: mariadb-server

2011-12-17 Thread Paul van der Vlis
In Debian we don't like code duplication. Is it an idea to build MySQL
and MariaDB from the same sources, where MariaDB is a patch on MySQL?
Could be an idea for more forks...

Paul.



-- 
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/4eecfadf.6030...@vandervlis.nl



Bug#652500: RFP: BOINC screensaver for Unix/X11

2011-12-17 Thread Ettore Atalan

Package: wnpp
Severity: wishlist


* Package name: boincscr
* URL : 
http://boinc.berkeley.edu/svn/trunk/boinc/clientscr/screensaver_x11.cpp
* License : GPL
  Programming Lang: C++
  Description : A XScreenSaver compatible BOINC screensaver for Unix/X11


BOINC is an open-source software platform for computing using volunteered 
resources. It was originally developed to support the SETI@home project.
The boinc-client is already packaged, but currently there is no Debian package 
available containing the BOINC screensaver.


Regards,
Ettore Atalan




--
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/4eecfaae.3020...@googlemail.com



Bug#540906: marked as done (ITA: avifile -- XviD video encoding plugin for libavifile)

2011-12-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Dec 2011 18:47:26 +
with message-id 
and subject line Bug#540906: fixed in avifile 1:0.7.48~20090503.ds-8
has caused the Debian Bug report #540906,
regarding ITA: avifile -- XviD video encoding plugin for libavifile
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
540906: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540906
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal

The current maintainer of avifile, Zdenek Kabelac ,
is apparently not active anymore.  Therefore, I orphan this package now.

Maintaining a package requires time and skills. Please only adopt this
package if you will have enough time and attention to work on it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o for detailed
instructions how to adopt a package properly.

Some information about this package:

Package: avifile
Binary: avifile-xvid-plugin, avifile-mjpeg-plugin, avifile-utils, 
avifile-win32-plugin, avifile-mad-plugin, avifile-divx-plugin, 
avifile-vorbis-plugin, libavifile-0.7c2, libavifile-0.7-dev, avifile-player
Version: 1:0.7.47.20070718-1.2
Priority: optional
Section: libs
Maintainer: Zdenek Kabelac 
Build-Depends: debhelper (>= 2.0), libqt3-mt-dev (>= 3:3.1.1-2), libsdl1.2-dev, 
libaudiofile-dev, libjpeg62-dev, libvorbis-dev, libogg-dev, libmad0-dev, 
libdts-dev, libxft-dev, autoconf (>= 2.13-1), automake1.9, libtool, gettext, 
patch, netpbm | pnmtopng, liba52-dev
Architecture: any
Standards-Version: 3.5.8
Format: 1.0
Directory: pool/main/a/avifile
Files:
 56312472d0a0826930ba9cac9ff48bea 941 avifile_0.7.47.20070718-1.2.dsc
 651cbe172ac7e297f162ba440f9cde78 4406332 avifile_0.7.47.20070718-1.2.tar.gz

Package: avifile
Binary: avifile-xvid-plugin, avifile-mjpeg-plugin, avifile-utils, 
avifile-win32-plugin, avifile-mad-plugin, avifile-divx-plugin, 
avifile-vorbis-plugin, libavifile-0.7c2, libavifile-0.7-dev, avifile-player
Version: 1:0.7.47.20070718-1.2
Priority: optional
Section: libs
Maintainer: Zdenek Kabelac 
Build-Depends: debhelper (>= 2.0), libqt3-mt-dev (>= 3:3.1.1-2), libsdl1.2-dev, 
libaudiofile-dev, libjpeg62-dev, libvorbis-dev, libogg-dev, libmad0-dev, 
libdts-dev, libxft-dev, autoconf (>= 2.13-1), automake1.9, libtool, gettext, 
patch, netpbm | pnmtopng, liba52-dev
Architecture: any
Standards-Version: 3.5.8
Format: 1.0
Directory: pool/main/a/avifile
Files:
 56312472d0a0826930ba9cac9ff48bea 941 avifile_0.7.47.20070718-1.2.dsc
 651cbe172ac7e297f162ba440f9cde78 4406332 avifile_0.7.47.20070718-1.2.tar.gz

Package: avifile-xvid-plugin
Priority: optional
Section: contrib/video
Installed-Size: 28
Maintainer: Zdenek Kabelac 
Architecture: amd64
Source: avifile
Version: 1:0.7.47.20070718-1.2
Depends: libavifile-0.7c2 (>= 1:0.7.43.20050224-1), libc6
Filename: 
pool/contrib/a/avifile/avifile-xvid-plugin_0.7.47.20070718-1.2_amd64.deb
Size: 926
MD5sum: 79aaf1fda5b731023863decd69b53e97
SHA1: c4ae51b9624816eb3a34ad8ce3096d1d6a4da220
SHA256: ad28dc408c1057e677a60ccd171ab4870db299fba194a40266ab60ee4b0619e9
Description: XviD video encoding plugin for libavifile
 Plugin for encoding DivX4 video.
 NOTICE:
   This plugin requires separate installation of libxvidcore 1.0 library
   which is not a part of this package nor official Debian itself.
   See documentation for more details.
   In general you do not need this plugin.
Tag: role::plugin

Package: avifile-mjpeg-plugin
Priority: optional
Section: video
Installed-Size: 56
Maintainer: Zdenek Kabelac 
Architecture: amd64
Source: avifile
Version: 1:0.7.47.20070718-1.2
Depends: libavifile-0.7c2 (>= 1:0.7.47.20070718), libc6 (>= 2.6.1-1), libgcc1 
(>= 1:4.2.1), libjpeg62, libstdc++6 (>= 4.2.1)
Filename: pool/main/a/avifile/avifile-mjpeg-plugin_0.7.47.20070718-1.2_amd64.deb
Size: 11720
MD5sum: 60530aa77cc852e3c3e42439fb0dd791
SHA1: 940af0f3d60bfc86ac4b2c72bcc71238db281c46
SHA256: b2e2fd033f77120e4ba069de0a9529b9e160050a21cda7e382186f46363ac24d
Description: MJPEG video plugin for libavifile
 This package provides a plugin for the avifile library to de/encode
 MJPEG video streams -  this implementation is rather slower and
 serves just as a sample plugin implementation. Usage of ffmpeg or
 win32 codecs is a better choice.
 .
 In general you do not need this plugin -
 .
 Homepage: http://avifile.sourceforge.net
Tag: role::plugin

Package: avifile-utils
Priority: extra
Section: video
Installed-Size: 920
Maintainer: Zdenek Kabelac 
Architecture: amd64
Source: avifile
Version: 1:0.7.47.20070718-1.2
Replaces: avifile-samples
Depends: avifile-player (>= 1:0.7

Bug#652492: ITP: python-multipartposthandler -- handler for urllib2 to enable multipart form uploading

2011-12-17 Thread Georges Khaznadar
Package: wnpp
Severity: wishlist
Owner: Georges Khaznadar 


* Package name: python-multipartposthandler
  Version : 0.1.0
  Upstream Author : Will Holcomb 
* URL : http://pypi.python.org/pypi/MultipartPostHandler/
* License : LGPL-2
  Programming Lang: Python
  Description : handler for urllib2 to enable multipart form uploading

 Enables the use of multipart/form-data for posting forms,
 with an easy management of file uploads.



-- 
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/20111217184903.23964.44891.report...@photos.khaznadar.fr



Bug#652481: ITP: libhtml-html5-entities-perl -- module to encode and decode character entities defined in HTML5

2011-12-17 Thread Florian Schlichting
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting 

* Package name: libhtml-html5-entities-perl
  Version : 0.001
  Upstream Author : Toby Inkster 
* URL : http://search.cpan.org/~tobyink/HTML-HTML5-Entities-0.001/
* License : GPL-1 or Artistic
  Programming Lang: Perl
  Description : module to encode and decode character entities defined in 
HTML5

HTML::HTML5::Entities is a drop-in replacement for HTML::Entities,
providing the character entities defined in HTML5. It is a pure Perl
implementation and hence slower, expecially decoding.

libhtml-html5-entities-perl is a dependency of the latest
libhtml-html5-parser-perl.



-- 
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/20111217165239.22658.3454.report...@island.zedat.fu-berlin.de



Bug#652433: ITP: v3c-qt -- v3c/automake wrapper for QT

2011-12-17 Thread Mario Fux
Am Samstag 17 Dezember 2011, 07.10:06 schrieb Philip Ashmore:
> Package: wnpp
> Severity: wishlist
> Owner: Philip Ashmore 
> 
> * Package name: v3c-qt
>   Version : 0.7.0-01
>   Upstream Author : Philip Ashmore 
> * URL : http://sourceforge.net/projects/v3c-qt/
> * License : LGPL
>   Programming Lang: m4
>   Description : v3c/automake wrapper for QT

I think this should be "Qt" (for the Qt Framework from Nokia) and not "QT" for 
Quicktime? And yes I saw that's wrong upstream (see URL above) as well.

thx
Mario



-- 
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/201112171725.56980.debian...@unormal.org



Bug#652464: ITP: aguilas -- A web-based LDAP user management system

2011-12-17 Thread Luis Alejandro Martínez Faneyth
Package: wnpp
Severity: wishlist
Owner: "Luis Alejandro Martínez Faneyth" 

* Package name: aguilas
  Version : 1.0.0
  Upstream Author : Luis Alejandro Martínez Faneyth

* URL : http://code.google.com/p/aguilas
* License : GPL-3
  Programming Lang: PHP
  Description : A web-based LDAP user management system

AGUILAS is an application written mostly in PHP, but it has bits of JavaScript,
SQL, style sheets and of course, HTML. It is a centralized registration system
that allows users to manage an LDAP authentication platform, using MYSQL
database support in cases where necessary (temporary records).

AGUILAS has the following features:

Creates user accounts based on a customizable number of LDAP attributes.
Resends confirmation email in case it gets lost on spam folders.
Password reset.
Password change.
Username reminder.
Deletion of account.
Edit your user profile (ajax enabled).
List all registered users.
Find a Member.



-- 
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/20111217134822.10890.2219.reportbug@OKComputer



Bug#652318: marked as done (ITP: ruby-indentation -- Ruby extensions for Array and String classes)

2011-12-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Dec 2011 13:33:09 +
with message-id 
and subject line Bug#652318: fixed in ruby-indentation 0.0.6-1
has caused the Debian Bug report #652318,
regarding ITP: ruby-indentation -- Ruby extensions for Array and String classes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
652318: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652318
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: tak...@debian.org
Severity: wishlist

* Package name: ruby-indentation
  Version : 0.0.6
  Upstream Author : Prometheus Computing
* URL or Web page : http://github.com/samueldana/indentation
* License : MIT 
  Description : Ruby extensions for Array and String classes
 A library of extensions to Ruby's Array and String classes that allow
 indentation manipulation of Strings and Arrays of Strings.



--- End Message ---
--- Begin Message ---
Source: ruby-indentation
Source-Version: 0.0.6-1

We believe that the bug you reported is fixed in the latest version of
ruby-indentation, which is due to be installed in the Debian FTP archive:

ruby-indentation_0.0.6-1.debian.tar.gz
  to main/r/ruby-indentation/ruby-indentation_0.0.6-1.debian.tar.gz
ruby-indentation_0.0.6-1.dsc
  to main/r/ruby-indentation/ruby-indentation_0.0.6-1.dsc
ruby-indentation_0.0.6-1_all.deb
  to main/r/ruby-indentation/ruby-indentation_0.0.6-1_all.deb
ruby-indentation_0.0.6.orig.tar.gz
  to main/r/ruby-indentation/ruby-indentation_0.0.6.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 652...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
TANIGUCHI Takaki  (supplier of updated ruby-indentation 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 16 Dec 2011 12:09:56 +0900
Source: ruby-indentation
Binary: ruby-indentation
Architecture: source all
Version: 0.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: TANIGUCHI Takaki 
Description: 
 ruby-indentation - Ruby extensions for Array and String classes
Closes: 652318
Changes: 
 ruby-indentation (0.0.6-1) unstable; urgency=low
 .
   * Initial release (Closes: #652318)
Checksums-Sha1: 
 02e17f683746428d2488e9da6d541667185b1d18 2110 ruby-indentation_0.0.6-1.dsc
 ba191b6d9a50768364e32528c735238e54991e1f 7924 
ruby-indentation_0.0.6.orig.tar.gz
 c5aa03aef621b9cb076be355f180164fd6cdb01a 2100 
ruby-indentation_0.0.6-1.debian.tar.gz
 51a1065d9d32fa91e0e1bf468152293718ce03fb 4402 ruby-indentation_0.0.6-1_all.deb
Checksums-Sha256: 
 ec3cdfa9df6370504f61c35993fc1e4dc7dd887344951ba236e5a83b7ae948f8 2110 
ruby-indentation_0.0.6-1.dsc
 1f313c5083b2cd58a03ae261526537ed5eef7055549df14501620fad4d9b7ffe 7924 
ruby-indentation_0.0.6.orig.tar.gz
 28f6d41888bb794a0fa20ed15ee8cb55d76f010b1ce4a863131b11c1ae112fa8 2100 
ruby-indentation_0.0.6-1.debian.tar.gz
 49bb5966c2bb41e8070612c0d9c4f0b26e198e3a6eb64ba3c7946dcda0f787dc 4402 
ruby-indentation_0.0.6-1_all.deb
Files: 
 853bec01031436f24733b6e57ea9a14a 2110 ruby optional 
ruby-indentation_0.0.6-1.dsc
 a178b3b7a8e86d7297c84bfe70b25277 7924 ruby optional 
ruby-indentation_0.0.6.orig.tar.gz
 d09e053d72ec0a52227511c84afa7b70 2100 ruby optional 
ruby-indentation_0.0.6-1.debian.tar.gz
 aa26f4d653f31e6a2c1d00c936090494 4402 ruby optional 
ruby-indentation_0.0.6-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJO7AVAAAoJEMwUn2wopeJXA/kQAKiLwUlVJoC2yxlv7jSfjNnK
lE/m8k8Bc7fHxxfR3qai9EYG+0xezjDnR9je5lhAW5j582upZglQrZY9rr1TrvJS
KtGyIKjiIUkhUM8NqhsB5OVK5l/UDVygbrOa78xsxjitK5I+/vRSZmYvdfn4tTEG
K6/Yx1cp3YCWJAPksBa9VwS8Y4onOyD/xFKNcN4jTKMpTTx1jfOCwgrfS73vVAYx
00KrfOclgjDfmZguAU6bCmJZfoItZ50AzmRJvL69EHqBTbSCeaSrZ0M3q+p1xLWd
M2rcsDAvvxKDekVyBlzNDEIboB94y4YdgdWMlB8TOiEaCMwPWIZiin0JzI5/mnV2
iaSHcViBxwKiIR/DGbULZBwEtBoGvqspz/XhVjAUnhFI7V4JEUhihcR7K3M2G96d
luFCR1929r41A4R1stntx9Uu3f4lesj+/5iGyLIrDsXi4Kek9yd1+0gcZgppeOwp
ZZ5kuGzOFVxZJ3RJ8IFshAPeh7wRIUeq5HdfZUdBCvrCcgy/bYeJ228hlIKvdVk8
qdzYwvYoWzwncd70cXIU63xqIaCYCcojMzsdiRNGnEWp8FVtzkdCxlwga2lQlu/d
8rlmm2gx3QrJUSeKG+KRjlaTewRWatcPwm2r6dyLteZRrqwy7V6zpZE0C3/dEUK/
4Co5z6OuoDTwBhhA/ZkA
=MvTe
-END PGP SIGNATURE-


--- End Message ---


Bug#646722: marked as done (ITP: xapi-sm - Storage management drivers for XenAPI)

2011-12-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Dec 2011 13:33:22 +
with message-id 
and subject line Bug#646722: fixed in xcp-storage-managers 0.1.1-2
has caused the Debian Bug report #646722,
regarding ITP: xapi-sm - Storage management drivers for XenAPI
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
646722: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646722
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Version: 1.0; reported 2011-20-26
Severity: wishlist

* Package name : xapi-sm
  Version : 1.0
  Upstream Author : Keith Petley 
* URL : http://xen.org/products/cloudxen.html
* License : LGPL2
  Description : Storage management drivers for XCP's XenAPI

  XCP is a server virtualization platform which provides a rich
  XML-RPC based management API on top of the Xen hypervisor. xen-sm
  provides storage backend plugins for various storage types that XCP
  supports.

* Package name : xapi-sm-doc
  Version : 1.0
  Upstream Author : Keith Petley 
* URL : http://xen.org/products/cloudxen.html
* License : LGPL2
  Description : Docs for xen-sm


--- End Message ---
--- Begin Message ---
Source: xcp-storage-managers
Source-Version: 0.1.1-2

We believe that the bug you reported is fixed in the latest version of
xcp-storage-managers, which is due to be installed in the Debian FTP archive:

xcp-storage-managers_0.1.1-2.debian.tar.gz
  to main/x/xcp-storage-managers/xcp-storage-managers_0.1.1-2.debian.tar.gz
xcp-storage-managers_0.1.1-2.dsc
  to main/x/xcp-storage-managers/xcp-storage-managers_0.1.1-2.dsc
xcp-storage-managers_0.1.1-2_amd64.deb
  to main/x/xcp-storage-managers/xcp-storage-managers_0.1.1-2_amd64.deb
xcp-storage-managers_0.1.1.orig.tar.gz
  to main/x/xcp-storage-managers/xcp-storage-managers_0.1.1.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 646...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jon Ludlam  (supplier of updated 
xcp-storage-managers package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 07 Dec 2011 17:25:32 +
Source: xcp-storage-managers
Binary: xcp-storage-managers
Architecture: source amd64
Version: 0.1.1-2
Distribution: unstable
Urgency: low
Maintainer: PKG-Xen Devel 
Changed-By: Jon Ludlam 
Description: 
 xcp-storage-managers - storage backends for XCP
Closes: 646722
Changes: 
 xcp-storage-managers (0.1.1-2) unstable; urgency=low
 .
   * New FHS compliant layout
   * Initial release (Closes: #646722)
Checksums-Sha1: 
 e3f39832af399635b9077aa2e18cabf03db7e74a 1546 xcp-storage-managers_0.1.1-2.dsc
 11b2411962aee488bc96f7bd59b906a0b2e77bac 520612 
xcp-storage-managers_0.1.1.orig.tar.gz
 fc1ce7a00c2f05b782d41578b995edb1cdad7cef 15804 
xcp-storage-managers_0.1.1-2.debian.tar.gz
 3d6316735ae1de790fbeaf99a34701f5dbcc850e 213642 
xcp-storage-managers_0.1.1-2_amd64.deb
Checksums-Sha256: 
 7deadf6900b69125a1e74873f97a44ac648927ea1cd1a45bf65ca9267f77 1546 
xcp-storage-managers_0.1.1-2.dsc
 26609c0b305da2aa5f2b46c16a5286b311be7ccc4fb549a220256de8b2196584 520612 
xcp-storage-managers_0.1.1.orig.tar.gz
 1597797b06db4584409976970474cac61a1804509da5d6b3d950297e7f70e492 15804 
xcp-storage-managers_0.1.1-2.debian.tar.gz
 f4caea1b8f12064a6897cf04cf432bcd52254e6eda4b011b0cf4ec005a2e419e 213642 
xcp-storage-managers_0.1.1-2_amd64.deb
Files: 
 20a43a7c309612ab170b43c837292d18 1546 libs extra 
xcp-storage-managers_0.1.1-2.dsc
 39a1274530cc844c4651ee64bdfb009e 520612 libs extra 
xcp-storage-managers_0.1.1.orig.tar.gz
 8bc3bded5847af35f5681b82ad898e57 15804 libs extra 
xcp-storage-managers_0.1.1-2.debian.tar.gz
 35108795bfd039fde4d3e84a665d575f 213642 libs extra 
xcp-storage-managers_0.1.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEAREDAAYFAk7syC4ACgkQl4M9yZjvmkkiYwCg7yxKSwo8DB4YbUYmQoFWCBGD
+tIAoLKsvX25IP22xGKUWqomuNPstV4K
=j332
-END PGP SIGNATURE-


--- End Message ---


Bug#651090: marked as done (ITP: colibri -- alternate notification system for KDE4)

2011-12-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Dec 2011 13:32:08 +
with message-id 
and subject line Bug#651090: fixed in colibri 0.2.2-1
has caused the Debian Bug report #651090,
regarding ITP: colibri -- alternate notification system for KDE4
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
651090: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651090
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Ritesh Raj Sarraf 

* Package name: colibri
  Version : 0.2.2
  Upstream Author : Aurélien Gâteau 
* URL : http://kde-apps.org/content/show.php?content=117147
* License : GPL
  Programming Lang: C++
  Description : alternate notification system for KDE4

passive notification system for kde4
 colibri is a passive notification system for KDE4 desktop
 .
 Colibri notifications look lighter and are completely passive:
 they do not provide any buttons. You may or may not like this.
 Since they are completely passive, they smoothly fade away when
 you mouse over them, allowing you to interact with any window behind
them.
 .
 They also do not stack each others: if multiple notifications happen,
 they will be shown one at a time.


--- End Message ---
--- Begin Message ---
Source: colibri
Source-Version: 0.2.2-1

We believe that the bug you reported is fixed in the latest version of
colibri, which is due to be installed in the Debian FTP archive:

colibri_0.2.2-1.debian.tar.gz
  to main/c/colibri/colibri_0.2.2-1.debian.tar.gz
colibri_0.2.2-1.dsc
  to main/c/colibri/colibri_0.2.2-1.dsc
colibri_0.2.2.orig.tar.bz2
  to main/c/colibri/colibri_0.2.2.orig.tar.bz2
kde-notification-colibri_0.2.2-1_amd64.deb
  to main/c/colibri/kde-notification-colibri_0.2.2-1_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ritesh Raj Sarraf  (supplier of updated colibri package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 17 Dec 2011 07:44:49 +0530
Source: colibri
Binary: kde-notification-colibri
Architecture: source amd64
Version: 0.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team 
Changed-By: Ritesh Raj Sarraf 
Description: 
 kde-notification-colibri - passive notification system for kde4
Closes: 651090
Changes: 
 colibri (0.2.2-1) unstable; urgency=low
 .
   * Initial release. (Closes: #651090)
Checksums-Sha1: 
 546ae4d2fda23666e6fd34ddf444efb893357dd5 1927 colibri_0.2.2-1.dsc
 c3701e1777db9145f45e4ee9627dd6e179188d01 28019 colibri_0.2.2.orig.tar.bz2
 1030bb2fb16e3eebb1e55dd5304e179da83dbcd6 1363 colibri_0.2.2-1.debian.tar.gz
 d84cce938aa5de69ce9833af2800feeaaa50f0fd 59098 
kde-notification-colibri_0.2.2-1_amd64.deb
Checksums-Sha256: 
 5f5f93b39951c724d2f8dd9df7c92cb42a582f2a170f1b9256f33ee0cb166565 1927 
colibri_0.2.2-1.dsc
 6580e5ea124442a6a1b34223ec33be14039ce39c1179e867a6f88f11aa510731 28019 
colibri_0.2.2.orig.tar.bz2
 d7f369e7defd403deccfc076a57e76239535577e4d6deac204f50ee93141e3a3 1363 
colibri_0.2.2-1.debian.tar.gz
 b4fdb3dd720438b92d355f7d3fa0b4e103541d042c6b6654442113952b555bab 59098 
kde-notification-colibri_0.2.2-1_amd64.deb
Files: 
 68946fff10a0fd5caac1bbdfe56f50d9 1927 kde extra colibri_0.2.2-1.dsc
 42f5a82a8d88b28470fea0d9ebf29832 28019 kde extra colibri_0.2.2.orig.tar.bz2
 86021fba9ea81bb156a03ff4c74dd6de 1363 kde extra colibri_0.2.2-1.debian.tar.gz
 1e8ff525d6617d9818a249ab592d3d66 59098 kde extra 
kde-notification-colibri_0.2.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJO6//7AAoJEKY6WKPy4XVpBcQQAKVQHIppvgiZRC1FaUHXXaX5
/AH0//UwpneB5+fevbZ9hx8id8vJaO6qtmCMpwD4iqLlCGcJOAfbS7PhmSA4jeGe
F05o4ikACf4/9BjEEW9Tf1A+rtMWL/QcYAktjUHqfKfxrG4Os8uNukmAttyejXKN
P9Qdand2nY5RQX+EAt0RJ6sxNyCcXoZv9od66vLXmn4j4nL68ccHfqlD7bi/DX7+
j+q4n3Ewkd0y1FMEDoXTYWsuMw2sg2anfaB815fXvMOvjj494a60CN/LjxLNYNYX
22/Tz1byWUcAx6fWRQZJ8yAVjBjcJv0PdlvQ4JG5d8giJPJTgnTP72yzK05RQfxQ
NfNeP1vcubpDWDjvedZS5C4YdO6gSCjcVEQqfFg3pYpUO7YCzlDIzqhpo1dkiUPf
7raYrUYyED4O6iOIEiNpqgeIvYhTO8cvMJpm1H58UosJIFbsIm0sPW/OwWyGDe6m
0FR+t1w4cLnpiZmEr9hcxxPkmhqZuiKQFx+8NFGYVOjn91jBWc7X/9hkJD6AEuGg
avDyu54VI4wd1UYzzuvr6nS5EwLgyz1wyePS+Lpxxw

Bug#652462: ITP: libwx-scintilla-perl -- Scintilla source code editing component for wxWidgets

2011-12-17 Thread Dominique Dumont

Package: wnpp
Owner: Dominique Dumont 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libwx-scintilla-perl
  Version : 0.34
  Upstream Author : Ahmad M. Zawawi 
* URL : http://search.cpan.org/dist/Wx-Scintilla/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Scintilla source code editing component for wxWidgets

Wx::Scintilla Perl module is a Wx wrapper around scintilla editor.

Wx::Scintilla prjoect goal is to provide fresh Perl 5 and maybe Perl 6
support in Wx while preserving compatibility with Wx::StyledTextCtrl.

Note: You cannot load Wx::STC and Wx::Scintilla in the same application. They
are mutually exclusive. The wxSTC_... events are handled by one library or
the other.

Wx::Scintilla is required by Padre 0.92

Dominique
--
http://config-model.wiki.sourceforge.net/ -o- http://search.cpan.org/~ddumont/
http://www.ohloh.net/accounts/ddumont -o- http://ddumont.wordpress.com/


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


Processed: Re: Bug#652434: ttf-arphic-sawndip: Intent to Package

2011-12-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 652434 ITP: ttf-arphic-sawndip -- ttf-arphic-sawndip contains the 
> font Sawndip.ttf.
Bug #652434 {Done: john knightley } 
[ttf-arphic-sawndip] ttf-arphic-sawndip: Intent to Package
Warning: Unknown package 'ttf-arphic-sawndip'
Changed Bug title to 'ITP: ttf-arphic-sawndip -- ttf-arphic-sawndip contains 
the font Sawndip.ttf.' from 'ttf-arphic-sawndip: Intent to Package'
Warning: Unknown package 'ttf-arphic-sawndip'
> reassign 652434 wnpp
Bug #652434 {Done: john knightley } 
[ttf-arphic-sawndip] ITP: ttf-arphic-sawndip -- ttf-arphic-sawndip contains the 
font Sawndip.ttf.
Warning: Unknown package 'ttf-arphic-sawndip'
Bug reassigned from package 'ttf-arphic-sawndip' to 'wnpp'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
652434: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652434
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.132412802727116.transcr...@bugs.debian.org



Bug#582090: ITP: viewnior -- simple, fast and elegant image viewer

2011-12-17 Thread Julien Lavergne
I spend some time to analyze the diff between the 2 versions of
gtkimageview, and, even after removing the renaming diff, the changes
are not so trivial.

Considering that gtkimageview upstream was not modified since 1 year
(viewnor's author could probably include the last fixes himself) , and
that the version in viewnor is more than a copy/paste (patches,
renaming, and only a part of gtkimageview is forked), I don't think it's
so problematic to package it with the forked gtkimageview. Considering
the time we have to maintain viewnor, packaging a modified version will
probably end to an incomplete version, with some bugs we will not be
able to fix. I'm not sure it's a good solution for Debian to add this
type of application in the repositories.

Regards,
Julien Lavergne

Le 11/27/2011 12:26 PM, Yao Wei a écrit :
>
> I forgot to mention that my modifications are in "gtkimageview" branch.
>
> https://github.com/medicalwei/Viewnior/tree/gtkimageview
>
> Sorry for your inconvenience.
> - 原始郵件 -
> > Hi,
> >
> > I can't see any modifications from the upstream trunk. Did you push the
> > modifications to github ?
> >
> > Regards,
> > Julien Lavergne
> >
> > Le 11/25/2011 05:41 AM, Yao Wei a écrit :
> > >
> > > Actually I did a runable diff in Github: (but some zooming and mouse
> > > wheel won't work)
> > >
> > > http://github.com/medicalwei/viewnior
> > >
> > > - 原始郵件 -
> > > > On 11/23/2011 07:02 AM, Julien Lavergne wrote:
> > > >
> > > > > Argh, bad news :(
> > > >
> > > >
> > > > Yes, it turns this from a technical issue (package the app, and
> make
> > > > sure it meets packaging standards) into a much more difficult
> "how to
> > > > keep everyone happy" political issue!
> > > >
> > > > > Do we have an idea of the actual diff between the 2 versions ?
> > > >
> > > >
> > > > I'll see if I can diff this over the coming weekend, unless someone
> > > else
> > > > does it first :)
> > > >
> > > > > Contacting gtkimageview upstream is a good idea, a backup plan
> may
> > > > > be to patch the package in Debian, but it's not a very nice
> > > > > solution :(
> > > >
> > > >
> > > > Another backup plan might be to create a "libviewnior" package with
> > > > the modified library in it, and then a viewnior package that
> depends
> > > > on it and uses it instead of gtkimageview??  But I don't know if
> > > > Debian would like/accept that as an approach.
> > > >
> > > > Jonathan
> > >
> >
>



Bug#652435: Acknowledgement (ITP: v3c-qt-examples -- v3c/automake wrapper for Qt4 - examples)

2011-12-17 Thread Philip Ashmore

Long description:
 The v3c-qt package ties QT doxygen-generated documentation into the v3c
 documentation chain, so that client packages can "inherit" this in 
their own

 doxygen-generated documentation.
 .
 It also provides automake rules for MOC, UIC and RCC, to ease their 
usage in

 client packages automake Makefile.am files.
 .
 This is the examples package.




--
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/4eec81fe.1020...@philipashmore.com



Bug#652433: Acknowledgement (ITP: v3c-qt -- v3c/automake wrapper for QT)

2011-12-17 Thread Philip Ashmore

Long description:
 The v3c-qt package ties QT doxygen-generated documentation into the v3c
 documentation chain, so that client packages can "inherit" this in 
their own

 doxygen-generated documentation.
 .
 It also provides automake rules for MOC, UIC and RCC, to ease their 
usage in

 client packages automake Makefile.am files.




--
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/4eec8188.5000...@philipashmore.com



Bug#652432: Acknowledgement (ITP: v3c-dcom -- Baby steps to DCOM)

2011-12-17 Thread Philip Ashmore

Long description:
 v3c-dcom provides a plug-in system as an alternative COM implementation.
 Unlike COM, v3c-dcom encourages the use of "sandboxes" of registered 
plug-ins,
 so allowing per site, per-group, per-user, per-program and per-job 
sandboxes,

 allowing virtually unlimited configuration and customization.
 Users and client programs can even create sandboxes on the fly.
 .
 Using COM's naming scheme aims at reducing the learning curve for those
 familiar with COM, as does the tiny ATL implementation for C++ developers.




--
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/4eec8020.5060...@philipashmore.com



Bug#652429: Acknowledgement (ITP: meta-treedb -- on-disk memory library using meta-data)

2011-12-17 Thread Philip Ashmore

Long description:
 meta-treedb can implement malloc functionality, and much more!
 Need a heap that allocates of a fixed size chunk of memory? No problem.
 But where treedb comes into its own is when it comes to allocating from a
 mmap()ed disk file - the memory becomes persistent.
 .
 If you follow the tests/examples, you too can store dictionaries, 
trees, lists
 or whatever you can think of in disk-based memory, just an open() and 
mmap()

 away.
 .
 Meta-treedb comes with an AVL tree, doubly-linked-list and
 variable-entry-sized-array implementations for you to use in your data
 structures.
 .
 So, what distinguishes meta-treedb from treedb?
 * "class" interfaces for treedb collections
 .  These are vtables (virtual function tables) that implement the 
interface.

 * faster compiles - only the "class" interfaces are visible to client code
 .  This is at the expense of a small performance hit.
 * the ability to use implementations that were developed after client 
code was

 .  compiled.
 .  This feature hasn't been fully fleshed out yet, as it would require a
 .  plug-in system such as that provided by v3c-dcom, but it's coming soon.




--
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/4eec7f91.4040...@philipashmore.com



Bug#652425: Acknowledgement (ITP: treedb -- on-disk memory library)

2011-12-17 Thread Philip Ashmore

Long description:
 treedb can implement malloc functionality, and much more!
 Need a heap that allocates of a fixed size chunk of memory? No problem.
 But where treedb comes into its own is when it comes to allocating from a
 mmap()ed disk file - the memory becomes persistent.
 .
 If you follow the tests/examples, you too can store dictionaries, 
trees, lists
 or whatever you can think of in disk-based memory, just an open() and 
mmap()

 away.
 .
 Treedb comes with an AVL tree, doubly-linked-list and 
variable-entry-sized-array

 implementations for you to use in your data structures.




--
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/4eec7f06.8060...@philipashmore.com



Bug#652423: Acknowledgement (ITP: v3c -- C/C++/sh/make/automake/Debian utility toolkit)

2011-12-17 Thread Philip Ashmore

Long description:
 utility C/C++ include files
 libv3c - a C/C++ library
 v3c - a utility program meant to be used in scripts or from the 
command line

 makefile includes - see v3c's client projects "makefile" for examples
 automake/aclocal m4 macros - see v3c's client projects for examples




--
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/4eec7e73.7010...@philipashmore.com



Processed: owner 470212

2011-12-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 470212 !
Bug #470212 [wnpp] ITP: debimg -- replacement for debian-cd written in Python
Owner changed from Satish G. Paikrao  to Julian 
Andres Klode .
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
470212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.1324122009826.transcr...@bugs.debian.org



Processed: Removal request

2011-12-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 633658 ftp.debian.org
Bug #633658 [wnpp] O: pyelemental -- Python bindings for liblemental
Bug reassigned from package 'wnpp' to 'ftp.debian.org'.
> retitle 633658 RM: pyelemental -- RoQA; orphaned, dead upstream
Bug #633658 [ftp.debian.org] O: pyelemental -- Python bindings for liblemental
Changed Bug title to 'RM: pyelemental -- RoQA; orphaned, dead upstream' from 
'O: pyelemental -- Python bindings for liblemental'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
633658: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633658
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.132412173132049.transcr...@bugs.debian.org



Bug#633658: Removal request

2011-12-17 Thread Luca Falavigna
reassign 633658 ftp.debian.org
retitle 633658 RM: pyelemental -- RoQA; orphaned, dead upstream
thanks


Nobody stepped up to maintain pyelemental, it's dead upstream and popcon
is very low. I think it's time to ask for its removal.



-- 
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/4eec7e74.5030...@debian.org



Bug#491723: Feedback

2011-12-17 Thread Jeremy Malcolm
The current git code looks good, except that you need to package the "scripts" 
directory too.  That's got a lot of important things like the daemons.  Also, 
it would be nice to package an init script to run startdaemons.sh and 
stopdaemons.sh.  I'm not attaching one, because I'm not sure where you want to 
put "scripts".  I've put it underneath /usr/share/statusnet, but according to 
Debian policy it probably shouldn't be.

I had to comment out line 103 of lib/xmppmanager.php in order to get the 
daemons to run.  It seems to be an upstream issue, but I haven't had time to 
fix it properly and I don't know if it persists in the current upstream source.

Regarding the copyrights, anything that is packaged without a copyright notice 
in the file itself falls under the GNU Affero version 3, per the COPYING file 
of the overall package.

--
Jeremy Malcolm PhD LLB (Hons) B Com
Internet and Open Source lawyer, consumer advocate and geek
host -t NAPTR 5.9.8.5.2.8.2.2.1.0.6.e164.org|awk -F! '{print $3}




--
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/2b46e173-3cae-4a77-8272-2f28d54e3...@malcolm.id.au



Bug#652425: Insufficient descriptions

2011-12-17 Thread martin f krafft
Philip,

you probably didn't see the message
<20111214130827.ga19...@fishbowl.rw.madduck.net>. I have an issue
with your ITPs, because your short descriptions are pretty
meaningless ("baby steps to DCOM") and you provided no long
descriptions in the bug reports you filed to announce your ITPs.

Please make sure that the packages you are about to create have
meaningful short and long descriptions, which enable an interested
user to get a good grasp of what s/he is looking at.

Also, in the future, please put the same amount of care into the
ITPs from the start.

Cheers,

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems
 
on the other hand, you have different fingers.


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#652438: ITP: ibus-table-sawndip-yaemlai

2011-12-17 Thread john knightley
Package: wnpp
Severity: wishlist
Owner: John Knightley 

Note: this report replaces bug report "Bug#652412:
ibus-table-sawndip-yaemlai: Intent to Package" which was reported using an
incorrect format


* Package: ibus-table-sawndip-yaemlai
  Upstream Author : John Knightley 
  URL : http://sourceforge.net/projects/ibus-table-sawn
  Depends: ibus-table (>= 1.1.0.20090527)
  Architecture: all
  License : GPL version 3
  Suggests : ttf-arphic-sawndip

  Description : Input method for Zhuang Sawndip based on table engine of
ibus
IBus-Table is the IM Engine framework for table-based input methods.
This package provides one input method  sawndip-yaemlai.
Sawndip-yaemlai is a input method the uses the  Zhuang pronunciation
to type Zhuang Sawndip which is the traditional script for Zhuang
which uses Chinese characters. Zhuang is the mother tongue of over
10 million people in Guangxi China.

  Significance : First Linux IME for Zhuang Sawndip. This IME is compatible
with the
open source online Zhuang Sawndip IME hosted by Guangxi University
since 2008
at http://gdzhdb.l10n-support.com/ (latest version
http://gdzhdb.l10n-support.com/legacy/sawndip0619.html).

  Other: Whilst the IME itself does not depend upon any fonts, without
appropriate
fonts installed the end user will not be able to see the Sawndip
characters.
To be able to see all characters a complete set of CJK, or Chinese,
fonts is
recommended along with a font like Sawndip.ttf which uses PUA
codepoints for
others characters not currently in unicode. The font Sawndip.ttf will
be
availalble in the package ttf-arphic-sawndip, or the latest stable
release
can be downloaded from
http://gdzhdb.l10n-support.com/sawndip-fonts/Sawndip.ttf


Bug#652436: Correction of Package Name and Upstream

2011-12-17 Thread john knightley
Please ignore the comments about libtest-interface-java these should not
have been sent rather they where lines used from another report to get the
format correct.

The intent is to package ttf-arphic-sawndip the person who will package and
the upstream author are the same person, namely myself.

John Knightley