Processed: forcibly merging 701532 701535

2013-03-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 701532 701535
Bug #701532 [wnpp] ITP: ruby-database-cleaner -- database-cleaner provides 
strategies for cleaning databases
Bug #701535 [wnpp] ITP: database_cleaner - Strategies for cleaning databases
Owner changed from Nitish.Rawatnitish.ra...@gmail.com to vaibhav prasad 
vaibhav_mc...@nitc.ac.in.
Merged 701532 701535
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
701532: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701532
701535: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701535
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.136416199518748.transcr...@bugs.debian.org



Bug#698146: marked as done (ITP: cardpeek -- tool to read the contents of smartcards)

2013-03-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 Mar 2013 22:26:56 +0100
with message-id 1364160416.4562.5.camel@quadulrich
and subject line closing
has caused the Debian Bug report #698146,
regarding ITP: cardpeek -- tool to read the contents of smartcards
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.)


-- 
698146: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698146
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: wnpp
Owner: Richard Ulrich ri...@paraeasy.ch
Severity: wishlist

* Package name: cardpeek
  Version : 0.7.1
  Upstream Author : l...@gmx.com
* URL : http://code.google.com/p/cardpeek/
* License : GPL-3+
  Programming Lang: C / LUA
  Description : tool to read the contents of smartcards

The goal of cardpeek is to allow smartcard owners to be better informed
about what type of personnal information is stored in these devices.
The tool currently reads the contents of :
* EMV cards, including NFC ones.
* Navigo public transport cards (partially supports MOBIB as well)
* The French health card Vitale 2
* Electronic/Biometric passports in BAC security mode.
It can also read the following cards with limited interpretation of data:
* Some Mifare cards (such as the Thalys card);
* Moneo, the French electronic purse;
* GSM SIM cards.





signature.asc
Description: This is a digitally signed message part
---End Message---
---BeginMessage---
The package was uploaded to debian today, but the closes directive was
not in the upmost entry.


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


Bug#703366: RFH: apt-file -- search for files within Debian packages (command-line interface)

2013-03-24 Thread David Kalnischkies
On Thu, Mar 21, 2013 at 6:53 PM, Stefan Fritsch s...@sfritsch.de wrote:
 On Thursday 21 March 2013, Niels Thykier wrote:
 On 2013-03-20 18:30, Stefan Fritsch wrote:
 Allegedly, rerepro can merge pdiffs so not all of them needs to be
 applied and (understandably) the APT maintainers do not want that
 to break.

 This seems very broken to me. Merging the diffs on the server side has
 little benefit. You still need exactly the same number of diffs on the
 server but each diff gets larger and there is more change among the
 diffs so that the efficiency of caching proxies goes down. With keep-
 alive connections and pipelining, downloading a few dozen files is not
 that big a problem.

We needed to disable pipelining recently as we failed to force broken
proxies and servers into supporting it properly. Think e.g. squid and amazon.
Maybe the big webbrowsers are able to get them to behave now that
they all start to use pipelining …

Still, assuming a prefect world, we download a lot of files which means
a lot of gz-overhead per file. There is also the theory that a package that was
touched is soon touched again (e.g. to fix a bug) meaning we have a lot of
useless data downloaded. Add slow systems and those behind a self-controlled
mirror (where you could merge).

So in a perfect world we would support both.


 And there are some implementations (at least apt-file's and the
 security tracker's) that depend on the pdiffs being incremental in
 order to be faster than apt by at least one order of magnitude. So if
 the archive would ever use the diff merging, those implementations
 would break.

I wonder if that is the reason for the announced pdiff change in dak to not
be merged to this day:
https://lists.debian.org/debian-devel-announce/2012/09/msg00012.html


 The solution is probably to extend the pdiff format
 (e.g. like the suggestion in [1]), so the client side can see
 exactly which patches are needed (instead of having to do them one
 at a time).
   To this end, I have been making a bit of noise in #d-ftp;
 hopefully I will have news here soon.

 I think apt should still be changed to assume incremental diffs unless
 the Index file is of a new format. That would bring the benefit even
 for old-style archives. Merging diffs on the server does not give
 comparable benefit.

As said, depends. Anyway, APT is usually extremely conservative regarding
breaking workflows, even if only a few users use this flow, so I highly doubt
we would change to incremental by default.


 David reminded me that the APT side of things already had a GSoC
 last year[2].  The code has not been merged yet but at least a
 proof-of-concept branch is there.  Assuming that can be used, we
 are probably very close to making apt-file's update/purge commands
 obsolete.

I had unfortunately less time than I hoped, but I will try to write a proper
follow-up on this soon. Until then some loose ends:

The GSoC bundles another big change regarding sources.list handling which
needs work before we can merge this (the new code is incompatible with the
 old). On top of this the acquire system is extended to deal with more
complex extensions on the file front, which is interesting but independent
as most files we download do not need a complicated handling (like fallbacks
 and conditionals – think: (In)Release(.gpg)) so we need code for simple
files anyway, therefore no problem to do this independently.

Rewriting debReleaseIndex::ComputeIndexTargets in apt-pkg/deb/debmetaindex.cc
to query files based on configs rather than hardcoded should be key here
(beside moving this code up in the class hierarchy then).
Something along the lines of Acquire::Files::Type::Identifier::Data
there Type is Base, Flat and Tree, to have different settings for
Flat and Tree style archives. Identifier being a random name like
Packages, Contents, … And finally Data to set URI, Description …
(I wonder if we need Acquire::Files::http://example.org/:: … too)

URI should be build with placeholders like BaseURI, Architectures,
NativeArchitecture, Languages. Many of these should be available in the
other Data elements as well (think: Description for Translation-*).

While we have IndexTargets and OptionalIndexTargets the later aren't really
optional (but hardcoded-optional as we couldn't break ABI at that point),
fixing this now would be good [aka: needed].


So long,
Best regards

David Kalnischkies


--
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/caaz6_fbqyc9rn8eqnkoc9tcmb4efuj4z0wkpmffmyhdb__c...@mail.gmail.com



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

2013-03-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Sunday 24 March  19:03:18 UTC 2013
 # Tagging as pending bugs that are closed by packages in NEW
 # http://ftp-master.debian.org/new.html
 #
 # Source package in NEW: bijiben
 tags 699726 + pending
Bug #699726 [wnpp] ITP: bijiben -- intuitive note editor integrated with GNOME 3
Added tag(s) pending.
 # Source package in NEW: qtchooser
 tags 696687 + pending
Bug #696687 [wnpp] ITP: qtchooser -- Allows to choose between Qt4 or Qt5 build 
tools
Added tag(s) pending.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
696687: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696687
699726: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=699726
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.13641518118259.transcr...@bugs.debian.org



Bug#703638: [Openstack-devel] Bug#703638: ITP: cloudfuse -- FUSE filesystem for Swift object storage.

2013-03-24 Thread Thomas Goirand
On 03/23/2013 03:15 AM, Thomas Goirand wrote:
 i've requested the membership and changed the Maintainer field on
 debian/control
 also i took the liberty to add you to uploaders field
 
 Thanks!
 
 I have added you as a member of the project. Our packaging guidelines
 are over here:
 http://openstack.alioth.debian.org/

Hi,

I've seen that you have added a git repository. Thanks for that. But the
rights aren't correct. Please issue the following commands:

ssh gfa-gu...@vasks.debian.org
cd /git/openstack/cloudfuse.git
mv hooks/post-update.sample hooks/post-update
git --bare update-server-info
find . -exec chmod g+w {} \;
find . -type d -exec chmod g+s {} \;
git config core.sharedRepository group

so that others in the team can access your Git repository.

Cheers,

Thomas


-- 
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/514f4b04.2040...@debian.org



Bug#700489: ITP: lua-ldoc -- a lua documentation system

2013-03-24 Thread Julian Wollrath
The packaging can be found under
http://anonscm.debian.org/gitweb/?p=pkg-lua/lua-ldoc.git

Best regards,
Julian Wollrath


-- 
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/20130324150606.42354e77@ilfaris



Bug#703659: ITP: salutatoi -- Salut à Toi XMPP/jabber-based communication and sharing platform

2013-03-24 Thread Thomas Preud'homme
A git repository has now been created on alioth [1]. In case of absence of 
update in this bug report, people are invited to check the progress of the 
packaging in the git repository.

[1] git://git.debian.org/git/collab-maint/salutatoi.git


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


Bug#703760: [Pkg-ime-devel] Bug#703760: ITP: ibus-bogo -- A Vietnamese input engine for IBus.

2013-03-24 Thread Osamu Aoki
On Sat, Mar 23, 2013 at 08:33:10PM +0800, Aron Xu wrote:
 On Sat, Mar 23, 2013 at 7:14 PM, Trung Ngo ndtrung4...@gmail.com wrote:
  Package: wnpp
  Severity: wishlist
  Owner: Trung Ngo ndtrung4...@gmail.com
 I would like to invite you joining IME Packaging Team to work on this
 package, the team is a place where many of input method related
 packages are maintained and will hopefully provide help when needed.

Yes please. I also invite you.
 
Osamu


-- 
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/20130324162223.GA23296@goofy.localdomain



Bug#703836: ITP: node-formidable -- Multipart form data parser module for Node.js

2013-03-24 Thread Jérémy Lal
Package: wnpp
Severity: wishlist
Owner: Jérémy Lal kapo...@melix.org

* Package name: node-formidable
  Version : 1.0.13
  Upstream Author : Felix Geisendörfer fe...@debuggable.com
* URL : https://github.com/felixge/node-formidable
* License : Expat
  Programming Lang: JavaScript
  Description : Multipart form data parser module for Node.js

node-formidable is a well-tested parser for multipart/form-data sent by
http clients. It emphasizes support for file uploads.
.
Node.js is an event-based server-side javascript engine.


-- 
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/20130324141659.25153.10309.reportbug@imac.chaumes



Bug#700783: ITP: lua-discount -- lua bindings for discount

2013-03-24 Thread Julian Wollrath
The packaging can be found under
http://anonscm.debian.org/gitweb/?p=pkg-lua/lua-discount.git

Best regards,
Julian Wollrath


-- 
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/20130324150506.43faf1d4@ilfaris



Bug#703826: ITP: lua-lunitx -- unit testing framework for Lua

2013-03-24 Thread Julian Wollrath
Package: wnpp
Severity: wishlist
Owner: Julian Wollrath jwollr...@web.de

* Package name: lua-lunitx
  Version : 0.6
  Upstream Author : Sam Roberts vieuxt...@gmail.com
* URL : https://github.com/sam-github/lunit
* License : Expat
  Programming Lang: Lua
  Description : unit testing framework for Lua
  Long Description: lunitx is an extended version of the Lunit unit testing 
framework for Lua.

The packaging can be found under http://git.debian.org/?p=pkg-lua/lua-lunitx.git


With best regards,
Julian Wollrath


-- 
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/20130324120830.9425.59021.reportbug@ilfaris



Bug#703762: ITP: jdownloader -- download manager for one-click hosting sites

2013-03-24 Thread Holger Levsen
Hi,

On Samstag, 23. März 2013, Benjamin Drung wrote:
 * Package name: jdownloader
 * License : GPL-3
   Section : contrib/web
   Description : download manager for one-click hosting sites
 
  JDownloader is open source, platform independent and written completely in
  Java. It simplifies downloading files from One-Click-Hosters like
  Rapidshare.com or Megaupload.com - not only for users with a premium
 account but also for users who don't pay. It offers downloading in
 multiple paralell streams, captcha recognition, automatical file
 extraction and much more. Of course, JDownloader is absolutely free of
 charge. Additionally, many link encryption sites are supported - so you
 just paste the encrypted links and JD does the rest. JDownloader can
 import CCF, RSDF and the new DLC files. .
  This package contains only a dektop file and a script, which will download
 and launch the latest JDownloader. The downloaded files will be stored in
 ~/.jdownloader by default.

At first, I stumbled upon Of course, JDownloader is absolutely free of
charge and was about to suggest to remove it, but then I realized that this 
is actually an installer package. 

So I rather recommend to call the package jdownloader-installer instead of 
jdownloader - and then probably still remove the of course from the 
description.


cheers,
Holger


--
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/201303241129.00756.hol...@layer-acht.org



Processed: requires openrpt

2013-03-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 703645 by 338784
Bug #703645 [wnpp] ITP: postbooks - ERP, CRM and accounting software
703645 was not blocked by any bugs.
703645 was not blocking any bugs.
Added blocking bug(s) of 703645: 338784

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
703645: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703645
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.13641195235717.transcr...@bugs.debian.org



Bug#703645: discussion on debian-devel

2013-03-24 Thread Daniel Pocock



Andrew Shadura has indicated that he is developing packages of PostBooks
already:

http://lists.debian.org/debian-devel/2013/03/msg00358.html

and may take ownership of this ITP bug.


-- 
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/514ecedb.5060...@pocock.com.au



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

2013-03-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Sunday 24 March  07:03:21 UTC 2013
 # Tagging as pending bugs that are closed by packages in NEW
 # http://ftp-master.debian.org/new.html
 #
 # Source package in NEW: node-json-stringify-safe
 tags 703807 + pending
Bug #703807 [wnpp] ITP: node-json-stringify-safe -- JSON.stringify that doesn't 
throw on circular references for Node.js
Added tag(s) pending.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
703807: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703807
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.136410860829811.transcr...@bugs.debian.org



Bug#703832: ITP: portalocker -- easy API to file locking

2013-03-24 Thread Alessio Treglia
Package: wnpp
Severity: wishlist
Owner: Alessio Treglia ales...@debian.org

* Package name: portalocker
  Version : 0.3
  Upstream Author : Rick van Hattem rick.van.hat...@fawo.nl
* URL : https://github.com/WoLpH/portalocker
* License : Python Software Foundation License
  Programming Lang: Python
  Description : easy API to file locking

Portalocker is a cross-platform library to provide
an easy API to file locking.


-- 
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/20130324133611.8021.96466.reportbug@Aspire-1410



Bug#703861: ITP: ruby-safe-yaml -- safer YAML loader for Ruby

2013-03-24 Thread Cédric Boutillier
Package: wnpp
Severity: wishlist
Owner: Cédric Boutillier bou...@debian.org

* Package name: ruby-safe-yaml
  Version : 0.9.0
  Upstream Author : Dan Tao daniel@gmail.com
* URL : http://dtao.github.com/safe_yaml/
* License : Expat
  Programming Lang: Ruby
  Description : safer YAML loader for Ruby

 SafeYAML provides an alternative implementation of YAML.load suitable for
 accepting user input in Ruby applications.
 .
 Unlike Ruby's built-in implementation of YAML.load, SafeYAML's version does
 not expose applications to arbitrary code execution exploits.

 This package will be maintained in the Ruby Extras Team.

 Cheers,

 Cédric


-- 
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/20130325010016.GA8960@spin



Bug#673426: RFP: virtualgl -- Toolkit for displaying OpenGL applications to thin clients

2013-03-24 Thread Vincent Cheng
retitle 673426 ITP: virtualgl -- Toolkit for displaying OpenGL
applications to thin clients
submitter 673426 !
thanks

It looks like libjpeg-turbo recently made it into the NEW queue [1].
There shouldn't be anything blocking virtualgl from being uploaded
into Debian now; I'll take a stab at it once libjpeg-turbo is accepted
into Debian.

Regards,
Vincent

[1] http://ftp-master.debian.org/new/libjpeg-turbo_1.2.90-1.html


-- 
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/caczd_tbgifmpne0g7b-76wtfpjs2l+2o5rqd3bdo57yphsj...@mail.gmail.com



Processed (with 1 errors): Re: RFP: virtualgl -- Toolkit for displaying OpenGL applications to thin clients

2013-03-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 673426 ITP: virtualgl -- Toolkit for displaying OpenGL
Bug #673426 [wnpp] RFP: virtualgl -- Toolkit for displaying OpenGL applications 
to thin clients
Changed Bug title to 'ITP: virtualgl -- Toolkit for displaying OpenGL' from 
'RFP: virtualgl -- Toolkit for displaying OpenGL applications to thin clients'
 applications to thin clients
Unknown command or malformed arguments to command.
 submitter 673426 !
Bug #673426 [wnpp] ITP: virtualgl -- Toolkit for displaying OpenGL
Changed Bug submitter to 'Vincent Cheng vincentc1...@gmail.com' from 'Mathieu 
Malaterre ma...@debian.org'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
673426: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673426
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.136418144632322.transcr...@bugs.debian.org