Processed: wnpp inconsistencies

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

 # RFP 651930 has owner
 noowner 651930
Bug #651930 [wnpp] RFP: zotero -- program to collect, manage and cite 
bibliographic information
Bug #504058 [wnpp] RFP: zotero -- program to collect, manage and cite 
bibliographic information
Removed annotation that Bug was owned by Steffen Moeller 
steffen_moel...@gmx.de.
Removed annotation that Bug was owned by Steffen Moeller 
steffen_moel...@gmx.de.
 thanks
Stopping processing here.

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



Bug#699158: ITP: squishyball -- audio sample comparison testing tool

2013-01-28 Thread Jon Dowland
Package: wnpp
Severity: wishlist
Owner: Jon Dowland j...@debian.org

* Package name: squishyball
  Version : 0.1~svn18785
  Upstream Author : Monty mo...@xiph.org
* URL : http://svn.xiph.org/trunk/squishyball/
* License : GPL
  Programming Lang: C
  Description : audio sample comparison testing tool

 squishyball is a simple command-line utility for performing
 double-blind A/B, A/B/X or X/X/Y (A/B/X with additional sample order
 randomisation) testing of audio samples on the command line.
 .
 The user specifies two input files to be compared and uses the
 keyboard during playback to flip between the randomized samples to
 perform on-the-fly comparisons.  After a predetermined number of
 trials, squishyball prints the trial results to stdout and exits.
 .
 squishyball can be used to help establish what lossy audio codec
 settings are optimal for a particular combination of user and
 audio equipment.


-- 
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/20130128104531.GA22755@debian



Bug#699163: O: bup -- highly efficient file backup system based on git

2013-01-28 Thread Jonathan Dowland
Package: wnpp
Severity: normal


signature.asc
Description: Digital signature


Bug#521426: mobiperl: unofficial packages of version 0.0.43

2013-01-28 Thread Klaumi Klingsporn
Hi folks,

Based on the work Eugenio Cutolo e.cut...@gmail.com did for Ubuntu in
2008 I just buildt unofficial packages of mobiperl 0.0.43 for
wheezy/testing.

Maybe they are usefull for others. You can find them at:

http://apt.klaumikli.de/testing

The packages work, but to get them into official Debian there remains
a lot to do:

* debian/rules: has be be rewritten totally to make use of dh_make
* convert the upstream html-man pages in real manpages
* add all binaries to the menu-file
* fix upstream makefile

So it's only the first step of a long and winding road ;-)

Klaumi

--- 
Klaus-Michael Klingsporn
mail: klaumi...@gmx.de
web: www.klaumikli.de


-- 
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/20130128131513.29211...@klaumikli.de



Bug#699175: ITP: gdb-heap -- gdb extension to debug dynamic memory allocation problems

2013-01-28 Thread Colin Watson
Package: wnpp
Severity: wishlist
Owner: Colin Watson cjwat...@debian.org

* Package name: gdb-heap
  Version : 0.5
  Upstream Author : David Malcolm dmalcolm at redhat.com
* URL : https://fedorahosted.org/gdb-heap/
* License : LGPLv2.1, Python
  Programming Lang: Python
  Description : gdb extension to debug dynamic memory allocation problems

gdb-heap adds a heap command to the gdb debugger, for use in debugging
dynamic memory allocation problems in user space.

(The 0.5 release was a while back, and there have been a number of more
recent changes in git.  I'm checking with upstream what would be best to
use.)

-- 
Colin Watson   [cjwat...@debian.org]


-- 
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/20130128153957.ga...@riva.dynamic.greenend.org.uk



Bug#476284: bullet package name/numbering

2013-01-28 Thread Vincent Fourmond
  Hi !

On Sat, Jan 26, 2013 at 4:05 PM, Markus Koschany a...@gambaru.de wrote:
 Hi Scott and Vincent,

 thank you for your feedback. At the moment i see two alternatives
 (three if a static library is not a taboo)

 I'm using CMAKE as build system because it is better supported by
 upstream. I can achieve something similar to the autotools -release
 LDFLAG with

 SET_TARGET_PROPERTIES(
 BulletCollision
 PROPERTIES
 VERSION 2
 SOVERSION 2.8.1
 )

  As far as I understand cmake's docs on that (or, rather, the bits I
found on mailing lists),  this makes a SONAME of 2.8.1, which still
means a SONAME bump for every version change.

 although you can find the following lines in upstream's CMakelists.txt
 files:

 SET_TARGET_PROPERTIES(BulletCollision PROPERTIES VERSION ${BULLET_VERSION})
 SET_TARGET_PROPERTIES(BulletCollision PROPERTIES SOVERSION ${BULLET_VERSION})

  I don't think this makes any difference with what you came around
with. The ideal would be to have SOVERSION be a plain integer that
increases by one every time the ABI is broken. But, this is not a
sustainable approach so long as upstream isn't into it.

 So apparently upstream intends to use the release version as SONAME for
 the library. The background to this is, Bullet is a physics library.
 Every new release the physics can slightly change which can result in
 unexpected ingame behaviour of certain objects thus games are normally
 tuned for a specific bullet release.

  If that is really that bad, it is really painful, as you will not be
able to maintain all the versions of the library that are needed for
every specific depending package in the archive. Making a static
library won't help here, as a simple binNMU would make significant
changes to an otherwise OK package.

 Perhaps this might be different in
 the case of Blender or Panda3D (not yet packaged).

 With the above CMAKE construct i can produce libraries like

 /usr/lib/Triplet/libbulletcollision.so - libbulletcollision.so.0
 /usr/lib/Triplet/libbulletcollision.so.2 - libbulletcollision.so.2.8.1

 but i have to patch all CMakelists.txt files. (I don't know if there is an
 easier solution within debian/rules.)

 So in theory it is possible to create a sane versioning scheme but this
 is completely unsupported by upstream and will most likely result in
 broken games because we cannot assess what effects a new version of
 Bullet will have on ingame physics.

 As Vincent has already said, the Release Team won't like the thought to
 make a transition every time a new Bullet version is released. But is
 this really so bad? I mean, there are only a few packages which would
 depend on Bullet like Blender, perhaps Supertuxkart and probably
 FreeOrion.

  For the time being, I suggest you stick to upstream way of doing
things regarding SONAME, and that when you're fed up bothering the
release team for transitions, you'll have the energy and the
background necessary to talk upstream into making something more
stable ;-)...

  I would not recommend making it a static library. Linking with
static libraries has many drawbacks (in terms of security) and should
be avoided as much as possible.

 So if i understand the choices correctly, only bumping the SONAME is a
 sane solution.

 Provided the aforementioned assumption is true, is there really a difference
 between

 libbulletcollision-2.81 - libbulletcollision-2.81.so.0.0.0

 libbulletcollision2.81 - libbulletcollision.so.2.81
e

 ? In the end the name of the package has to change, correct?

  I'm not sure I see what you mean here. I'm not sure you can have
such thing as a library named libbulletcollision.so.2.81, but my
knowledge of ld.so and friends clearly has its limits ;-).

  Hope all this helps,

  Cheers,

  Vincent


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



Processed: begin: block ITP 699113 by RFS 699150

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

 block 699113 by 699150
Bug #699113 [wnpp] ITP: begin -- an output modifier
699113 was not blocked by any bugs.
699113 was not blocking any bugs.
Added blocking bug(s) of 699113: 699150
 stop
Stopping processing here.

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



Bug#491723: StatusNet package upload?

2013-01-28 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256



Hi Andreas,

Can you please let me know about the status of the package - are you
still ITP?  Or would you prefer somebody else to take over?  Or is
there some blocking issue?

I'm actually doing a joint session with Evan (StatusNet
founder/upstream) at FOSDEM this weekend[1] and it would be helpful to
upload the package into experimental or sid if it is ready (the
previous posts suggest only the debian/copyright file needs to be
finished) - and I will be happy to discuss with Evan in person if
changes are needed upstream to make this package happen.

I'm also wondering if anybody would object to putting this package
under pkg-xmpp-maintainers[2] as a place for group collaboration on
the package?

Regards,

Daniel


1. https://fosdem.org/2013/schedule/event/free_open_secure_communications/

2.
http://qa.debian.org/developer.php?login=pkg-xmpp-de...@lists.alioth.debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJRBtp1AAoJEOm1uwJp1aqDFgEQAJYKot5SlrZZSkrChsuTaE0j
Iidt4DnMTaUNeCfjCLkrBk2uR8i24UnFP+IJ4Yp7SmsJ/3TwruIB77oeb+QS6X5j
9WgrF1m9q0gvchUYkweiPQOc2wQb7gx4UXvmhrnrH9suqKzHEe4ogWg+g8wIPece
iMQSxRl1WYI8/9zOlYY77lsXstgWr0N7phYDrE+T6LIqL/sxrx04Hn5ltEKSISEt
MPHir9SIZLyJp2qLo+Xx4bLFwQuGC3i7kfMlJBa8R5orUIaG+IiN1aorWJSSjk8I
IHwcWS5+aTEooyxFNnZrBc/J3oWSGgV71tG3r2b2QZlsvnophkbVLFVwaZMXAFxa
n+n0230O8RwiHMn5qt9iZYMKB8HReL7qz+k6vFZXCgEQS7FZTP8V5DudLbbAMDZL
hBXx/lNNdlaw7VLsI9CZa8ClS7x3cINpBegL1DAoEqB0uR/Y2Z8AX6H7FMMLTgMj
smzKBFSo7z/+XhMrCZPQQc3+4MRS6j1w8bJKLv2DNHoPtgM6yo+DLyfMGxmSJt+d
RnnDP8NAZ4XLeec/8h21BXKdywhca6VC/MD1mmmh47pWQfXem4OJfSilkWM3Yd8E
X/Epfp31hBdrQPSjcwWzIsFpsxEzhx9lM9U/Xc0UuAqHMW16f3Nvj1gEFxwJ+UOr
XDFj8a+mRZ4t0ukT1xm/
=ytA9
-END PGP SIGNATURE-


-- 
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/5106da75.8050...@pocock.com.au



Bug#491723: StatusNet package upload?

2013-01-28 Thread Evan Prodromou

Daniel,

There's a package here:

http://people.debian.org/~costela/packages/

I'm not sure if it's appropriate to give the package to an XMPP group 
since the software is not primarily XMPP-based.


-Evan

On 13-01-28 03:07 PM, Daniel Pocock wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256



Hi Andreas,

Can you please let me know about the status of the package - are you
still ITP?  Or would you prefer somebody else to take over?  Or is
there some blocking issue?

I'm actually doing a joint session with Evan (StatusNet
founder/upstream) at FOSDEM this weekend[1] and it would be helpful to
upload the package into experimental or sid if it is ready (the
previous posts suggest only the debian/copyright file needs to be
finished) - and I will be happy to discuss with Evan in person if
changes are needed upstream to make this package happen.

I'm also wondering if anybody would object to putting this package
under pkg-xmpp-maintainers[2] as a place for group collaboration on
the package?

Regards,

Daniel


1. https://fosdem.org/2013/schedule/event/free_open_secure_communications/

2.
http://qa.debian.org/developer.php?login=pkg-xmpp-de...@lists.alioth.debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJRBtp1AAoJEOm1uwJp1aqDFgEQAJYKot5SlrZZSkrChsuTaE0j
Iidt4DnMTaUNeCfjCLkrBk2uR8i24UnFP+IJ4Yp7SmsJ/3TwruIB77oeb+QS6X5j
9WgrF1m9q0gvchUYkweiPQOc2wQb7gx4UXvmhrnrH9suqKzHEe4ogWg+g8wIPece
iMQSxRl1WYI8/9zOlYY77lsXstgWr0N7phYDrE+T6LIqL/sxrx04Hn5ltEKSISEt
MPHir9SIZLyJp2qLo+Xx4bLFwQuGC3i7kfMlJBa8R5orUIaG+IiN1aorWJSSjk8I
IHwcWS5+aTEooyxFNnZrBc/J3oWSGgV71tG3r2b2QZlsvnophkbVLFVwaZMXAFxa
n+n0230O8RwiHMn5qt9iZYMKB8HReL7qz+k6vFZXCgEQS7FZTP8V5DudLbbAMDZL
hBXx/lNNdlaw7VLsI9CZa8ClS7x3cINpBegL1DAoEqB0uR/Y2Z8AX6H7FMMLTgMj
smzKBFSo7z/+XhMrCZPQQc3+4MRS6j1w8bJKLv2DNHoPtgM6yo+DLyfMGxmSJt+d
RnnDP8NAZ4XLeec/8h21BXKdywhca6VC/MD1mmmh47pWQfXem4OJfSilkWM3Yd8E
X/Epfp31hBdrQPSjcwWzIsFpsxEzhx9lM9U/Xc0UuAqHMW16f3Nvj1gEFxwJ+UOr
XDFj8a+mRZ4t0ukT1xm/
=ytA9
-END PGP SIGNATURE-





smime.p7s
Description: S/MIME Cryptographic Signature


Bug#491723: StatusNet package upload?

2013-01-28 Thread Andreas Schildbach
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Sorry, I gave up on packaging several years ago. Cannot not even
remember that I intended to package this - strange...

Thanks for asking. If you decide to do it, I wish you all best of luck!


On 01/28/2013 09:07 PM, Daniel Pocock wrote:

 Hi Andreas,
 
 Can you please let me know about the status of the package - are
 you still ITP?  Or would you prefer somebody else to take over?  Or
 is there some blocking issue?
 
 I'm actually doing a joint session with Evan (StatusNet 
 founder/upstream) at FOSDEM this weekend[1] and it would be helpful
 to upload the package into experimental or sid if it is ready (the 
 previous posts suggest only the debian/copyright file needs to be 
 finished) - and I will be happy to discuss with Evan in person if 
 changes are needed upstream to make this package happen.
 
 I'm also wondering if anybody would object to putting this package 
 under pkg-xmpp-maintainers[2] as a place for group collaboration
 on the package?
 
 Regards,
 
 Daniel
 
 
 1.
 https://fosdem.org/2013/schedule/event/free_open_secure_communications/

  2. 
 http://qa.debian.org/developer.php?login=pkg-xmpp-de...@lists.alioth.debian.org

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

iEYEARECAAYFAlEG4t8ACgkQymYr4YuHemDJUwCeLPq9vVMgaywjplf7q3cmC4bO
sl4AoJN9shh+AgHD2dCGXH0NRul/9wqT
=zYn7
-END PGP SIGNATURE-


-- 
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/5106e2eb.9050...@schildbach.de



Bug#491723: StatusNet package upload?

2013-01-28 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


Andreas, thanks for the update

Leo, Brenda, can either of you let us know about this package?

I see Brenda owns the RFP/ITP bug, but Leo is the one who has built
packages in
git://git.debian.org/~costela/statusnet.git

Evan, I notice in the bug trail you are a DD too, so maybe you would
like to upload yourself if you think it is ready?  If nobody else was
able to, I was going to consider sponsoring it myself.

If pkg-xmpp is not optimal for the package, do you think it might be
worthwhile forming another group for maintaining this and maybe
similar packages or add-ons?


On 28/01/13 21:43, Andreas Schildbach wrote:
 Sorry, I gave up on packaging several years ago. Cannot not even 
 remember that I intended to package this - strange...
 
 Thanks for asking. If you decide to do it, I wish you all best of
 luck!
 
 
 On 01/28/2013 09:07 PM, Daniel Pocock wrote:
 
 Hi Andreas,
 
 Can you please let me know about the status of the package - are 
 you still ITP?  Or would you prefer somebody else to take over?
 Or is there some blocking issue?
 
 I'm actually doing a joint session with Evan (StatusNet 
 founder/upstream) at FOSDEM this weekend[1] and it would be
 helpful to upload the package into experimental or sid if it is
 ready (the previous posts suggest only the debian/copyright file
 needs to be finished) - and I will be happy to discuss with Evan
 in person if changes are needed upstream to make this package
 happen.
 
 I'm also wondering if anybody would object to putting this
 package under pkg-xmpp-maintainers[2] as a place for group
 collaboration on the package?
 
 Regards,
 
 Daniel
 
 
 1. 
 https://fosdem.org/2013/schedule/event/free_open_secure_communications/

  2. 
 http://qa.debian.org/developer.php?login=pkg-xmpp-de...@lists.alioth.debian.org

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

iQIcBAEBCAAGBQJRBufuAAoJEOm1uwJp1aqD3NIQALNyygGtYpNDWaZTuI58p464
gI2wuitzfCRwX+ohlJdh5ecfbmS43WrwAkTbVmdsrXWT9hOgPcXqS0dBaj9wFt9a
Ajdfws+BE/LVkqLoubi2kHab/9QTvGxj9o1/GoRuVZTtupJ/3q3kpTZpp2lUVLy+
gVnL6dcOS3Ot6ZiG8sStj0mtVqgaBQI6kbLhhh2jZiWxex7R8goVda3RX8LftZoc
ZzuThxkWK7CmlQeG7cphzJ/C8dakwrFUyMoXfofhl5rZpZMtM9/cLPdKE26IoGJl
Ei9SRd/6J9FhZFwDHRIiwS4cjP+EjGs0IO2KCMRAYitvaF0k8o9XS7aNEoWVLUb8
QfjzhBYRukmsfAflEebdyrIHJXUMbnUtO+L2WkEYtHpd+ounl3qmtVpzh6Jp7mXG
uYWZ9zFkbsV6UcyrMmSkrZU3LT0qNRjm0pRZfNK0XV6LEaf3l0578fDg8/nqLQB/
3AE9MtmKHYlpk/3LYriJMwiwNScsdEeH+m50fQFFVJbySiAXtv7U4bvN8MfnzwBb
z4U6UkC2TvnS41ERlAUL4+tFWxSIanUkIlah7SBgmq2XY9YFHTxzfqhR87zKb2qg
V5Dh3opKecyCvbuNUEKdJMT+a7bhNxOUK8Ia5ddnQ6K1bUd/dCBdbCY+PCe2ZsVJ
CV3E/jS9pVO8Fa4+pH/l
=NLFn
-END PGP SIGNATURE-


-- 
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/5106e7ee.2060...@pocock.com.au



Processed (with 1 errors): RFA: salt - remote manager to administer servers

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

 retitle 698772 ITA: salt - remote manager to administer servers
Bug #698772 [wnpp] RFA: salt - remote manager to administer servers
Changed Bug title to 'ITA: salt - remote manager to administer servers' from 
'RFA: salt - remote manager to administer servers'
 owner  Michael Prokop !
Unknown command or malformed arguments to command.
 thanks
Stopping processing here.

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



Bug#591798: Downstream Requests for SBaGen

2013-01-28 Thread Lonnie Best
I'd like to see this package in Ubunutu, but they say it must first
come from Debian:
https://bugs.launchpad.net/ubuntu/+bug/185123


-- 
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/caa7uo0xny98rdkqnivqkrdxk+qktdp5jejrju8kepd51y9x...@mail.gmail.com



Bug#678645: marked as done (ITP: creduce -- Test-Case Reduction for C Compiler Bugs)

2013-01-28 Thread Debian Bug Tracking System
Your message dated Mon, 28 Jan 2013 23:00:04 +
with message-id e1tzxgk-0001cq...@franck.debian.org
and subject line Bug#678645: fixed in creduce 2.0.1-1
has caused the Debian Bug report #678645,
regarding ITP: creduce -- Test-Case Reduction for C Compiler Bugs
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.)


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

* Package name: creduce
  Version : 2.0.1
  Upstream Author : The University of Utah
* URL : http://embed.cs.utah.edu/creduce/
  Description : Test-Case Reduction for C Compiler Bugs
 C-Reduce is a tool which takes a large C or C++ program that has a
 property of interest (such as triggering a compiler bug) and
 automatically produces a much smaller C/C++ program that has the same
 property.  It is intended for use by people who discover and report
 bugs in compilers and other tools that process C/C++ code.

* License : University of Illinois Open Source License


---End Message---
---BeginMessage---
Source: creduce
Source-Version: 2.0.1-1

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

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 678...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose d...@debian.org (supplier of updated creduce 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: SHA1

Format: 1.8
Date: Mon, 28 Jan 2013 19:41:54 +0100
Source: creduce
Binary: creduce
Architecture: source amd64
Version: 2.0.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 creduce- Test-Case Reduction for C Compiler Bugs
Closes: 678645
Changes: 
 creduce (2.0.1-1) experimental; urgency=low
 .
   * Initial release. Closes: #678645.
   * Add a build-using field, as long as clang doesn't provide a complete
 set of shared libraries. See #698247.
Checksums-Sha1: 
 bdd7606615aab015c0ed0c65267f9d343034f3b1 1321 creduce_2.0.1-1.dsc
 b6ccd4eb6e3c9fdcb6bf7b443332ce694c96521c 509604 creduce_2.0.1.orig.tar.gz
 58a1a4366fbc1fa906dc7c05bf578340b562ef9e 54914 creduce_2.0.1-1.debian.tar.gz
 6efb89a4a00b289ab379bca31f49d574013cd533 5179902 creduce_2.0.1-1_amd64.deb
Checksums-Sha256: 
 f6e8f8927785ed589cc3bce48634233038c2dda3d08f8042645f2e6beb51e99a 1321 
creduce_2.0.1-1.dsc
 ca06be313cddd85c7501654a767a4a1e7fa096eec5432fda6e478dc10bd39fd8 509604 
creduce_2.0.1.orig.tar.gz
 8c03dd6c849984d806252d4429f4c4d98714232c545fbdc13365f5bc962332ab 54914 
creduce_2.0.1-1.debian.tar.gz
 c3d38d1063e5be75076d0f5d86b73c06f25e0f2b619d0d7d71db42293bd9cef0 5179902 
creduce_2.0.1-1_amd64.deb
Files: 
 839fe22efe72d3b3a696c3a769665400 1321 devel extra creduce_2.0.1-1.dsc
 d941ba28cc43c6432fbca3f3b271353f 509604 devel extra creduce_2.0.1.orig.tar.gz
 118f0c6f98044baede9f69ff650734d1 54914 devel extra 
creduce_2.0.1-1.debian.tar.gz
 ec84e71f7a237a843bed484d5d706d1f 5179902 devel extra creduce_2.0.1-1_amd64.deb

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

iEYEARECAAYFAlEG4kMACgkQStlRaw+TLJx7mACgi9VhTgD6tlCXAjM0TH/1FWhp
Qb0AnisJTzUNqOT9CGJ33J2EzCdRXGV8
=snFk
-END PGP SIGNATUREEnd Message---


Processed (with 3 errors): your mail

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

 retitle 395302 Please upgrade to ulogd 2.0.1, 1.x have entered EOL
Bug #395302 [ulogd] Please upgrade to ulogd 2.0.0beta1
Changed Bug title to 'Please upgrade to ulogd 2.0.1, 1.x have entered EOL' from 
'Please upgrade to ulogd 2.0.0beta1'
 merge 395302 502305 691856
Bug #395302 [ulogd] Please upgrade to ulogd 2.0.1, 1.x have entered EOL
Unable to merge bugs because:
owner of #502305 is 'Pierre Chifflier pol...@debian.org' not ''
package of #502305 is 'wnpp' not 'ulogd'
severity of #691856 is 'normal' not 'wishlist'
Failed to merge 395302: Did not alter merged bugs
Debbugs::Control::set_merged('transcript', 'GLOB(0x1dc2988)', 
'requester', 'Maykel Moya mm...@mmoya.org', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', '51070855.9050...@mmoya.org', 
'request_subject', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 538
eval {...} called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 537
Debbugs::Control::Service::control_line('line', 'merge 395302 502305 
691856', 'clonebugs', 'HASH(0x1d3c160)', 'limit', 'HASH(0x1d3bb48)', 
'common_control_options', 'ARRAY(0x1d3bb90)', 'errors', ...) called at 
/usr/lib/debbugs/service line 474

 block 395302 by 699203
Failed to set blocking bugs of 395302: failed to get lock on 
/org/bugs.debian.org/spool/lock/395302 -- Unable to lock 
/org/bugs.debian.org/spool/lock/395302 Resource temporarily unavailable.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583. at 
/usr/local/lib/site_perl/Debbugs/Common.pm line 601
Debbugs::Common::filelock('/org/bugs.debian.org/spool/lock/395302') 
called at /usr/local/lib/site_perl/Debbugs/Status.pm line 210
Debbugs::Status::read_bug('bug', 395302, 'lock', 1) called at 
/usr/local/lib/site_perl/Debbugs/Status.pm line 462
Debbugs::Status::lock_read_all_merged_bugs('bug', 395302) called at 
/usr/local/lib/site_perl/Debbugs/Control.pm line 3665
Debbugs::Control::__begin_control('remove', 0, 'add', 1, 
'request_replyto', 'Maykel Moya mm...@mmoya.org', 'transcript', 
'GLOB(0x1dc2988)', 'bug', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control.pm line 346
Debbugs::Control::set_blocks('transcript', 'GLOB(0x1dc2988)', 
'requester', 'Maykel Moya mm...@mmoya.org', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', '51070855.9050...@mmoya.org', 
'request_subject', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 501
eval {...} called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 500
Debbugs::Control::Service::control_line('line', 'block 395302 by 
699203', 'clonebugs', 'HASH(0x1d3c160)', 'limit', 'HASH(0x1d3bb48)', 
'common_control_options', 'ARRAY(0x1d3bb90)', 'errors', ...) called at 
/usr/lib/debbugs/service line 474

 block 395302 by 699204
Failed to set blocking bugs of 395302: failed to get lock on 
/org/bugs.debian.org/spool/lock/395302 -- Unable to lock 
/org/bugs.debian.org/spool/lock/395302 Resource temporarily unavailable.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 583.
Unable to lock /org/bugs.debian.org/spool/lock/395302 Resource temporarily 
unavailable at 

Bug#502305: I've made a package available for testing

2013-01-28 Thread Maykel Moya
Hello

I've upload an initial package to mentors[1]. Packaging repo is
available in github[2].

Version 2.0.1 depends on recent libnfnetlink and libnetfilter-conntrack.
They both are available as well [3][4].

The libnetfilter-conntrack packaging repo is also available in
github[5].

libnfnetlink git repo will be available (hopefully) soon.

This is more a request for reviewing/testing than a RFS. I'm still
working on then.

Thanks,
maykel

[1] https://mentors.debian.net/package/ulogd
[2] https://github.com/mmoya/pkg-ulogd
[3] https://mentors.debian.net/package/libnfnetlink
[4] https://mentors.debian.net/package/libnetfilter-conntrack
[5] https://github.com/formorer/pkg-libnetfilter-conntrack


-- 
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/51070ddd.9000...@mmoya.org



Processed: forcibly merging 698273 566364

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

 forcemerge 698273 566364
Bug #698273 [wnpp] O: doc-central -- web-based documentation browser
Bug #566364 [wnpp] RFH: doc-central -- web-based documentation browser
Removed indication that 566364 affects doc-central
Merged 566364 698273
 thanks
Stopping processing here.

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



Bug#699123: about packaging python-sh

2013-01-28 Thread Laszlo Boszormenyi (GCS)
Hi Ben,

How the packaging goes? I've a package, ready to be uploaded. But the
ITP is yours, I only take over it if you all me to do so.
The same is for python-srp , I may take over that ITP as well.

Regards,
Laszlo/GCS


-- 
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/1359420774.21674.141.camel@julia



Processed: retitle 603293 to ITP: festige -- GUI for fst and dssi-vst

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

 retitle 603293 ITP: festige -- GUI for fst and dssi-vst
Bug #603293 [wnpp] RFP: festige -- GUI for fst and dssi-vst
Changed Bug title to 'ITP: festige -- GUI for fst and dssi-vst' from 'RFP: 
festige -- GUI for fst and dssi-vst'
 thanks
Stopping processing here.

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



Processed: owner 603293

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

 owner 603293 Debian Multimedia Maintainers 
 pkg-multimedia-maintain...@lists.alioth.debian.org
Bug #603293 [wnpp] ITP: festige -- GUI for fst and dssi-vst
Owner recorded as Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org.
 thanks
Stopping processing here.

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



Bug#699209: ITP: ibus-libthai -- Thai input method engine for IBus based on LibThai

2013-01-28 Thread Theppitak Karoonboonyanan
Package: wnpp
Severity: wishlist
Owner: Theppitak Karoonboonyanan t...@debian.org

* Package name: ibus-libthai
  Version : (to be released from 
http://linux.thai.net/svn/software/ibus-libthai/trunk)
  Upstream Author : Theppitak Karoonboonyanan t...@linux.thai.net
* URL : http://linux.thai.net/projects/libthai
* License : GPL-2
  Programming Lang: C
  Description : Thai input method engine for IBus based on LibThai

ibus-libthai is a Thai IBus input method engine based on LibThai library.

It supports Ketmanee, TIS-820.2538 and Pattachote keyboard layouts, and
can check and correct input sequences with three levels of strictness.


-- 
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/20130129021601.GA21413@cypress.boonyanan.local



Bug#699216: ITP: dtc -- Tools for Flattened Device Trees (FDT)

2013-01-28 Thread Shawn
Package: wnpp
Owner: shawnland...@gmail.com
Severity: wishlist

* Package name: dtc
  Version : 1.3.0
  Upstream Author : David Gibson d...@au1.ibm.com
* URL : http://www.denx.de/wiki/U-Boot/UBootFdtInfo
* License : GPL-2+ and BSD (parts)
  Programming Lang: C
  Description : Tools for Flattened Device Trees (FDT)

A number of devices now boot with use of Flattened Device Trees (FDT). In
addition
to the general purpose libfdt library, this package includes the tools
convert-dtsv0, dtc
dtdiff, fdtdump, fdtget, fdtput.

This package will be useful, for example, in packaging kernels that can
boot on the
Samsung ARM chromebook.

I have the package in a largely working state, but it needs a little more
polishing.


Bug#699123: about packaging python-sh

2013-01-28 Thread Ben Carrillo
On Tue, Jan 29, 2013 at 12:52:54AM +, Laszlo Boszormenyi (GCS) wrote:
 Hi Ben,
 
 How the packaging goes? I've a package, ready to be uploaded. But the

Hi Laszlo,
I got a sponsor and it is already in the NEW queue.
http://ftp-master.debian.org/new/python-sh_1.07-1.html

Any feedback is more than welcome :)

 -- 
 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/1359420774.21674.141.camel@julia
 


-- 
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/20130129063026.GB11588@croatan



Bug#699122: package uploaded to mentors

2013-01-28 Thread Ben Carrillo
I uploaded a first version of the package:
https://mentors.debian.net/package/python-srp

I got a sponsor who will be reviewing it soon, any other feedback is more
than welcome.


-- 
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/20130129063541.GC11588@croatan



Bug#659440: bumblebee packaging

2013-01-28 Thread Vincent Cheng
On Wed, Jan 23, 2013 at 2:24 AM, Vincent Cheng vincentc1...@gmail.com wrote:
[...]
 Anyways, right now I'm hitting a strange bug with the packages I
 built; dpkg just seems to hang while installing bumblebee and
 bumblebee-nvidia, i.e.:
 $ sudo dpkg -i bumblebee_3.0.1-1_amd64.deb bumblebee-nvidia_3.0.1-1_amd64.deb
 (Reading database ... 398188 files and directories currently installed.)
 Preparing to replace bumblebee 3.0.1-1 (using bumblebee_3.0.1-1_amd64.deb) ...
 [ ok ] Stopping Bumblebee daemon: bumblebeed.
 Unpacking replacement bumblebee ...
 Preparing to replace bumblebee-nvidia 3.0.1-1 (using
 bumblebee-nvidia_3.0.1-1_amd64.deb) ...
 Unpacking replacement bumblebee-nvidia ...
 Setting up bumblebee (3.0.1-1) ...
 Installing new version of config file /etc/init.d/bumblebeed ...
 update-initramfs: deferring update (trigger activated)
 ...seems to get stuck here

It turns out that the problem isn't caused by the postinst script. I
tried stripping out portions of it piece by piece (starting with the
conffile handling/dpkg-maintscript-helper snippets), but nothing
helped. Then I took a look at what should've appeared right afterwards
if dpkg didn't get stuck somehow:

snip
Setting up bumblebee (3.0.1-1) ...
Adding members from group(s) 'adm sudo admin' to 'bumblebee':
update-initramfs: deferring update (trigger activated)
[ ok ] Starting Bumblebee daemon: bumblebeed.

Ah, bumblebee's init script...

A 3-way comparison later between the distro-agnostic init script
provided upstream, the one provided by suwako.nomanga.net, and the one
currently in the pkg-nvidia git repo (presumably taken from a dh-make
template?), and it turns out that this is what was missing:

-DAEMON_ARGS=--use-syslog
+DAEMON_ARGS=--daemon --use-syslog

And the package installs fine now. :)

Aron, have you contacted upstream and asked to merge our work with
their PPA packaging? I want to try to push as much of our work
upstream to avoid duplicate work and potential oversights on our
part...also, I suppose maybe some of their Ubuntu PPA packagers might
be able to help with upstart. I'll go about preparing a merge request
on Github if you aren't planning on doing so yourself.

Now that bumblebee is taken care of, I've (finally) uploaded my primus
packaging, to collab-maint for now (but am open to moving it into
pkg-nvidia) [1].

Regards,
Vincent

[1] http://anonscm.debian.org/gitweb/?p=collab-maint/primus.git


-- 
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_td75hnova+qr0ppqxhoiwmzo9ybnniad02deklzsec...@mail.gmail.com



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

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

 # Tuesday 29 January  07:03:14 UTC 2013
 # Tagging as pending bugs that are closed by packages in NEW
 # http://ftp-master.debian.org/new.html
 #
 # Source package in NEW: python-sh
 tags 699123 + pending
Bug #699123 [wnpp] ITP: python-sh -- Python subprocess interface
Added tag(s) pending.
 # Source package in NEW: turses
 tags 672649 + pending
Bug #672649 [wnpp] ITP: turses -- Twitter client for the console
Added tag(s) pending.

End of message, stopping processing here.

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