Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Daniel Baumann
Joachim Breitner wrote:
 I am wondering if anyone still uses the re-ordered ubuntu patches
 provided by the Utnubu team at

I'm too unimportant to be of any weight here, but I use them and it
would be sad if it is stopped.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: python, then C++, or C++ from the start?

2007-05-31 Thread martin f krafft
also sprach Oleg Verych [EMAIL PROTECTED] [2007.05.31.0011 +0200]:
 Configuration of interfaces (hardware or software) is part of OS
 setup and proper operation. And this task must be solved on the
 principle basis, rather than jet-another-lang-flame. Once you have
 all kernel/network-interfaces (ioctl, sysctl, dhcp clients, etc.)
 realizations, why not just to start glue them? It's C/shell (or
 even C/SLang) ifs-glue thing, as you've wrote in the wiki page and
 not C++/python. IMHO it's far too away from ordinary application
 programming.

While I fundamentally agree with you, shell is also a major PITA and
there are even more pitfalls than with C. Add to that a lack of
proper debugging tools and you'll understand my tendency for a real
language.

I should clarify that I am looking only at the core daemon right
now, and maybe the configuration/policy parser. The methods, which
are the actual workers doing the configuring will most certainly be
implemented in shell.

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
after you install windows xp, you have the option to create user
accounts. if you create user accounts, by default, they will have an
account type of administrator with no password. way to go!


signature.asc
Description: Digital signature (GPG/PGP)


Re: python, then C++, or C++ from the start?

2007-05-31 Thread martin f krafft
also sprach Robert Collins [EMAIL PROTECTED] [2007.05.31.0021 +0200]:
 I think its entirely viable. boost::python is rather nice and should
 allow incremental migration. You could if you care start with a C++
 wrapper using boost:python where all the guts are in python, and then
 its just a question of how much is pure c++ :).

I know of at least one person who'd kill me if I used boost for
netconf. But as a migrational strategy, this isn't bad, although my
experience has been that you don't use boost, it uses you. Or
rather, you need to cater your application for boost, despite all
the generic programming it does.

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
Most Intelligent Customers Realise Our Software Only Fools Them.


signature.asc
Description: Digital signature (GPG/PGP)


Re: python, then C++, or C++ from the start?

2007-05-31 Thread Oleg Verych
On Thu, May 31, 2007 at 08:50:11AM +0200, martin f krafft wrote:
[]
 The methods, which are the actual workers doing the configuring will
 most certainly be implemented in shell.

Then call me !

I like shell PITAs. At least it will start to run everywhere by `/bin/sh'
(dash, busybox, bash, zsh, whatever :)



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



Re: python, then C++, or C++ from the start?

2007-05-31 Thread martin f krafft
also sprach Oleg Verych [EMAIL PROTECTED] [2007.05.31.1013 +0200]:
 Then call me !

Do you have a POSIX-compatible solution to the problem of setting
variables inside while loops?

See http://blog.madduck.net/geek/2006.05.29-shell-sucks

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
i'd rather be riding a high speed tractor
with a beer on my lap,
and a six pack of girls next to me.


signature.asc
Description: Digital signature (GPG/PGP)


undo configuration file changes

2007-05-31 Thread Pascal.Speck
Hello, 

 

In the Moment i'm packaging some software and wonder if there is a
possibility to handle files such as crontab or configuration files of
other programs to add a directive with postinst but also to remove that
directive with prerm. Is there a predefined possibility for that or do I
have to implement this in a script?

 

Best Regards 

Pascal Speck



Re: undo configuration file changes

2007-05-31 Thread Kushal Kumaran

On 5/31/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


Hello,

In the Moment i'm packaging some software and wonder if there is a
possibility to handle files such as crontab or configuration files of other
programs to add a directive with postinst but also to remove that directive
with prerm. Is there a predefined possibility for that or do I have to
implement this in a script?



Check out /etc/cron.d for setting up cron jobs for your package.  I
suppose other applications that could support such pluggable
configurations have similar support.  For example, apache2 lets you
put stuff into /etc/apache2/conf.d, xinetd lets you put stuff in
/etc/xinet.d, and so on.

You should look into that.

--
Kushal


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Gabor Gombas
On Wed, May 30, 2007 at 04:46:30PM -0400, Kris Deugau wrote:

 However, there doesn't seem to be any single, consistent,
 doesn't-change-for-the-life-of-the-release, programmatically possible
 (never mind *easy* just yet...) method to find out if I'm on Debian
 sarge, etch, lenny, or some third-party Debian-derived distribution.

Your approach is wrong. Many machines have packages installed from
multiple distributions simultaneously (sarge+etch, sarge+backports,
etch+backports, etch+lenny, lenny+sid, sid+experimental are probably the
most common combinations nowadays). Backported packages may even be
compiled locally so they may not have any distribution associated with
them at all.

 Some searching turned up a suggestion to use the glibc version as a
 reference...  which might be OK if there weren't so much overlap between
 releases.  :(  (I checked woody, sarge, etch, and lenny.  There was
 overlap between woody and *etch*, IIRC.  Ewww.)

Forget it. I already have a machine in production which is mostly etch
but glibc and a handful of other packages are from lenny.

Gabor

-- 
 -
 MTA SZTAKI Computer and Automation Research Institute
Hungarian Academy of Sciences
 -


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Javier Fernández-Sanguino Peña
On Thu, May 31, 2007 at 12:35:06AM +0200, Santiago Vila wrote:
 Hi.
 
 I believe there is something fundamentally wrong if you *have* to rely
 on /etc/debian_version for anything. The number of Debian packages
 actually using such file is probably zero (but I could be wrong).

Bastille uses it to distinguish releases. There seems to be others:

$ grep -l /etc/debian_version /*/bin/* 2/dev/null
/usr/bin/binstats
/usr/bin/bug-buddy
/usr/bin/euro-test
/usr/bin/gnome-bug
/usr/bin/gst-feedback-0.8
/usr/bin/imake
/usr/bin/lsb_release
/usr/bin/xine-bugreport
/usr/bin/xine-check
/usr/bin/xminicom

And this is NOT surprising for people who use linuxlogo:

$ find /var/lib/dpkg/info/ -type f -exec grep -l /etc/debian_version \{\} \;
[ .. snip base-files .. ]
/var/lib/dpkg/info/linuxlogo.preinst
/var/lib/dpkg/info/linuxlogo.postrm

 Try using dependencies or run-time tests. Really.

Which runtime tests do you suggest? If there is a programatic way to
implement the test then lsb_release is the way to do it.

I actually think we should ship a *distinct* /etc/debian_version
in testing and not make it follow the sid-testing-stable dance. Otherwise
there is a timeframe in which sid's or testing's base-files say's it is
stable, when it's not.

Could there be a distinct package per distribution repository? One
(cumbersome?) way to do this is to have base-files maintainer (ehem, you)
upload new versions of the package to the proper distribituion. That way, the
contents of /etc/debian_version in the package in sid are never changed, and
the contents of the file in testing depend on its status:

a) during development /etc/debian_version reads 'CODENAME/testing'
b) during freeze /etc/debian_verion reads 'CODENAME/stable' 
  (this way, when testing is released, it will ship with that content,
  right after the release a new package has to be uploaded to 'testing' to
  go back to a)

The only issue with this is that you have to maintain always two branches
(sid and the next release) and whenever changes to other files in base-fles
are done you have to upload them to both releases.

However, this opens the possibility of introducing /etc/lsb-release in Debian
(not required by lsb, but nice to have for people who do not want to rely on
the lsb_release script) with properly structured content like:

DISTRIB_ID=Debian
DISTRIB_RELEASE=4.0
DISTRIB_CODENAME=etch
DISTRIB_DESCRIPTION=Debian GNU/Linux 4.0 'etch'

and

DISTRIB_ID=Debian
DISTRIB_RELEASE=testing
DISTRIB_CODENAME=lenny
DISTRIB_DESCRIPTION=Debian GNU/Linux testing 'lenny' (UNRELEASED)


Another (easier?, but strange) way to have this is to have base-files
depend: on a package like 'release-info' which only contained
/etc/debian_version and have different packages for each distribution which
are *not* transitioned from unstable-testing. 

Similary to the solution above, its maintainer (the RMs?) would have to
upload a new package in *testing* just before a release (for example, during
the freeze) and upload a new package version to *testing* just after a
release. The contents of the package in sid would never change.  However,
having a package just to handle a file looks like an overkill to me.

Either ways make the hacks introduced in lsb_release unnecesary.

Regards

Javier


signature.asc
Description: Digital signature


Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Thijs Kinkhorst
On Thursday 31 May 2007 00:01, Joachim Breitner wrote:
 I am wondering if anyone still uses the re-ordered ubuntu patches
 provided by the Utnubu team at

This might be too obvious, but: did you check whether Ubuntu/Scott would be 
willing to provide a per-maintainer indexed version on their 
patches.ubuntu.com?


Thijs


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Frans Pop
On Thursday 31 May 2007 12:11, Gabor Gombas wrote:
 Forget it. I already have a machine in production which is mostly etch
 but glibc and a handful of other packages are from lenny.

That sounds a bit strange as the version of glibc in testing is the same 
as the one in stable. Or do you mean sid instead of lenny?


pgp730y1PfRXN.pgp
Description: PGP signature


Source package taking over removed package's place in the namespace

2007-05-31 Thread Magnus Holmgren
I didn't get any response on debian-mentors, so I repost this question here:

Situation: Two source packages collide in the namespace. The second one gets 
rather awkward name. Later, the first package dies and is removed from 
unstable, testing, and (after release) stable, but still remains in 
oldstable.

Question: Can the second source package take the first source package's (less 
awkward) name, or does it have to wait until oldstable is archived?

Concrete example: lsh/lsh-utils (see bug 340354).

-- 
Magnus Holmgren[EMAIL PROTECTED]
   (No Cc of list mail needed, thanks)


pgpKUr6l3vcra.pgp
Description: PGP signature


Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Santiago Vila
On Thu, 31 May 2007, Javier Fernández-Sanguino Peña wrote:

 On Thu, May 31, 2007 at 12:35:06AM +0200, Santiago Vila wrote:
  Hi.
  
  I believe there is something fundamentally wrong if you *have* to rely
  on /etc/debian_version for anything. The number of Debian packages
  actually using such file is probably zero (but I could be wrong).
 
 Bastille uses it to distinguish releases. There seems to be others:
 
 $ grep -l /etc/debian_version /*/bin/* 2/dev/null
 /usr/bin/binstats
 /usr/bin/bug-buddy
 /usr/bin/euro-test
 /usr/bin/gnome-bug
 /usr/bin/gst-feedback-0.8
 /usr/bin/imake
 /usr/bin/lsb_release
 /usr/bin/xine-bugreport
 /usr/bin/xine-check
 /usr/bin/xminicom

Using them (to show its contents, for example) is one thing, relying
on them to achieve different behaviour is another one. The former
might be acceptable, the latter should not be.

 And this is NOT surprising for people who use linuxlogo:
 
 $ find /var/lib/dpkg/info/ -type f -exec grep -l /etc/debian_version \{\} \;
 [ .. snip base-files .. ]
 /var/lib/dpkg/info/linuxlogo.preinst
 /var/lib/dpkg/info/linuxlogo.postrm
 
  Try using dependencies or run-time tests. Really.
 
 Which runtime tests do you suggest? [...]

Consider the example given by Kris: If you need to know how apache
does such and such, you should rely on the actual apache version you
have installed, not on base-files, because the user might have a mix
of packages from sarge and etch.

 I actually think we should ship a *distinct* /etc/debian_version
 in testing and not make it follow the sid-testing-stable dance. Otherwise
 there is a timeframe in which sid's or testing's base-files say's it is
 stable, when it's not.

That would bless the abuse of /etc/debian_version. IMHO, it would be
good for Debian if we continue to discourage its use.

A lot of time ago, there was a paragraph somewhere (policy? packaging manual?)
saying something like Debian packages are not tied to a given release
and the dependency system has allowed us so far to keep the spirit of that.



Bug#426874: ITP: pkg -- High-level library for managing Debian package information

2007-05-31 Thread Enrico Zini
Package: wnpp
Severity: wishlist
Owner: Enrico Zini [EMAIL PROTECTED]

* Package name: pkg
  Version : 0.1
  Upstream Author : Enrico Zini [EMAIL PROTECTED]
* URL : hg clone http://hg.debian.org/hg/private/enrico/libpkg
* License : LGPL
  Programming Lang: C++
  Description : High-level library for managing Debian package information

 The library defines a very minimal framework in which many sources of data
 about Debian packages can be implemented and queried together.
 .
 The library includes two data sources:
 .
  * APT: access the APT database
  * Debtags: access the Debtags tag information


libept is proving too hard to maintain and I've created a slicker
replacement.

I've ported the 'debtags' package to this new library with success.

I'm about to port 'debtags-edit', after that I'll do the upload of
libpkg-dev and libpkg0.

This new library makes it very simple to add new data sources.  I have
plans laid out for a popcon data source, for example, and more could
come.

It should also be straightforward to swig-bind it to the usual plethora
of scripting languages.

If anyone is interested in a debconf BoF about it, do let me know.


Ciao,

Enrico

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Re: Source package taking over removed package's place in the namespace

2007-05-31 Thread Adam D. Barratt

Magnus Holmgren wrote, Thursday, May 31, 2007 1:04 PM

Situation: Two source packages collide in the namespace. The second
one gets rather awkward name. Later, the first package dies and is
removed from unstable, testing, and (after release) stable, but still 
remains

in  oldstable.

Question: Can the second source package take the first source package's
(less awkward) name, or does it have to wait until oldstable is archived?


So far as I can tell, that should be fine.

dak requires that (source, version) tuples be unique, so the new source 
package would need to have a different (practically, higher) version than 
the old one; that's not a problem in this case.


Adam 



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



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Daniel Baumann
Thijs Kinkhorst wrote:
 This might be too obvious, but: did you check whether Ubuntu/Scott would be 
 willing to provide a per-maintainer indexed version on their 
 patches.ubuntu.com?

I asked him in February excately this. I don't think he mind that I
paste it here:

Unfortunately as you're probably aware, Debian insists that we don't
attribute Ubuntu packages to the Debian maintainer anywhere.  Under this
agreement, we have to change the Maintainer field in our packages.

One slight problem with this is that we don't have the Debian package
information at the point we generate that page, it's generated from the
Ubuntu package information (otherwise it would show packages that
existed in Debian, but not Ubuntu).

In order to find the Debian maintainer, we'd have to have an additional
pass to extract that information -- which would actually be quite
expensive (unpacking 16,000 source packages every hour!)

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Steinar H. Gunderson
On Thu, May 31, 2007 at 02:46:32PM +0200, Daniel Baumann wrote:
 Unfortunately as you're probably aware, Debian insists that we don't
 attribute Ubuntu packages to the Debian maintainer anywhere.  Under this
 agreement, we have to change the Maintainer field in our packages.

Don't they still keep the Debian maintainer in a separate field?

In any case, since the topic has arrived:
http://ubuntu-patches.sesse.net/by-maintainer/ has RSS feeds per-maintainer.
I don't think more than about ten people are using them, but they exist :-)

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Mike Hommey
On Thu, May 31, 2007 at 02:46:32PM +0200, Daniel Baumann wrote:
 Thijs Kinkhorst wrote:
  This might be too obvious, but: did you check whether Ubuntu/Scott would be 
  willing to provide a per-maintainer indexed version on their 
  patches.ubuntu.com?
 
 I asked him in February excately this. I don't think he mind that I
 paste it here:
 
 Unfortunately as you're probably aware, Debian insists that we don't
 attribute Ubuntu packages to the Debian maintainer anywhere.  Under this
 agreement, we have to change the Maintainer field in our packages.
 
 One slight problem with this is that we don't have the Debian package
 information at the point we generate that page, it's generated from the
 Ubuntu package information (otherwise it would show packages that
 existed in Debian, but not Ubuntu).
 
 In order to find the Debian maintainer, we'd have to have an additional
 pass to extract that information -- which would actually be quite
 expensive (unpacking 16,000 source packages every hour!)

Hum, don't they have the original debian/control when doing the diff ?

Mike


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



Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread Josselin Mouette
Le mercredi 30 mai 2007 à 07:53 +0300, Guillem Jover a écrit :
 I've been meaning to send this for some time, but latest docbook-xml
 upload finally triggered it.
 
 Please stop parsing dpkg status file from maintainer scripts. No
 package should assume its location or format (except for now for
 package managment frontends and the like, until there's a proper
 library they can use). This might make it really difficult in case
 we have to change the db layout or whatever in the future.

It's good that you send this email, because I thought this was the
recommended way to retrieve conffiles' MD5 sums, as explained in the
wiki [1].

 If you need to retrieve the conffile info, which is why most of those
 packages are poking at the status file, please use something like:
 
   $ dpkg-query -W -f='${Conffiles}' docbook-xml
 
 which is also cleaner. If there happens to be any reentrancy problem
 in dpkg-query, that will be considered a bug and fixed, so this should
 be considered the standard api for maintainer scripts.

Could you please fix the wiki page with proper functions you recommend?

 I'll be filing bug reports on lintian and linda so that they give
 errors on maintainer scripts poking at the file...

Good. This could also be made a release goal so that you can safely
consider to change this database layout (or not) in lenny+1.

[1] http://wiki.debian.org/DpkgConffileHandling

-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Raphael Hertzog
On Thu, 31 May 2007, Daniel Baumann wrote:
 I asked him in February excately this. I don't think he mind that I
 paste it here:
 
 Unfortunately as you're probably aware, Debian insists that we don't
 attribute Ubuntu packages to the Debian maintainer anywhere.  Under this
 agreement, we have to change the Maintainer field in our packages.
 
 One slight problem with this is that we don't have the Debian package
 information at the point we generate that page, it's generated from the
 Ubuntu package information (otherwise it would show packages that
 existed in Debian, but not Ubuntu).
 
 In order to find the Debian maintainer, we'd have to have an additional
 pass to extract that information -- which would actually be quite
 expensive (unpacking 16,000 source packages every hour!)

This has probably changed since they keep the old maintainer field in a
separate field. Furthermore they started storing/generating other (useful)
patches in http://patches.ubuntu.com/by-release/ so they probably
regularly process the Debian packages too.

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/


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



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Thijs Kinkhorst
On Thursday 31 May 2007 14:46, Daniel Baumann wrote:
 Unfortunately as you're probably aware, Debian insists that we don't
 attribute Ubuntu packages to the Debian maintainer anywhere.  Under this
 agreement, we have to change the Maintainer field in our packages.

As far as I know no-one ever insisted that Ubuntu may not attribute packages 
to the Debian maintainer anywhere, that seems to be a bit of a hyperbole.

The agreement referenced here boiled down to putting the Debian maintainer in 
some kind of Original-Maintainer-field. Any Ubuntu patch that changed the 
maintainer of my packages did that instead of removing it entirely.

I see no problem with using that Original-Maintainer field, although I'm of 
course not aware of the inner workings of Scott's script. To me, Scott's 
assumption that the Debian maintainer is nowhere to be found in the Ubuntu 
package seems to be an error.


Thijs


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Santiago Vila
On Thu, 31 May 2007, Javier Fernández-Sanguino Peña wrote:

 On Thu, May 31, 2007 at 02:06:28PM +0200, Santiago Vila wrote:
  That would bless the abuse of /etc/debian_version. IMHO, it would be
  good for Debian if we continue to discourage its use.
 
 LSB compliance (which is a release goal) obliges us to provide proper
 versioning information for releases. That means we have to have a (standard)
 way for other software to determine which version of our distribution
 they are running in.
 
 The lsb_release scripts relies on /etc/debian_version. It also uses of
 /etc/apt/sources.list is a -bad- hack to work around the testing/unstable
 problem (and introduces some bugs).
 
 As you are the maintainer for base-files, and it provides
 /etc/debian_version, what do you suggest we do for LSB compliance? 

I suggest we forget about LSB compliance of testing and unstable,
since they are not really releases.



Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread Daniel Leidert
Am Mittwoch, den 30.05.2007, 07:53 +0300 schrieb Guillem Jover:

 I've been meaning to send this for some time, but latest docbook-xml
 upload finally triggered it.

Well, why didn't you send me a CC of this mail? I just stumbled over
this by fluke.

 Please stop parsing dpkg status file from maintainer scripts. No
 package should assume its location or format (except for now for
 package managment frontends and the like, until there's a proper
 library they can use). This might make it really difficult in case
 we have to change the db layout or whatever in the future.
 
 If you need to retrieve the conffile info, which is why most of those
 packages are poking at the status file, please use something like:
 
   $ dpkg-query -W -f='${Conffiles}' docbook-xml

http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/debian/docbook-xml.preinst?op=filerev=817sc=1
Should solve the issue.

 which is also cleaner. If there happens to be any reentrancy problem
 in dpkg-query, that will be considered a bug and fixed, so this should
 be considered the standard api for maintainer scripts.
 
 I'll be filing bug reports on lintian and linda so that they give
 errors on maintainer scripts poking at the file...

Regards, Daniel


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



Bug#426888: ITP: libdata-ical-perl -- Generates iCalendar (RFC 2445) calendar files

2007-05-31 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves [EMAIL PROTECTED]

* Package name: libdata-ical-perl
  Version : 0.13
  Upstream Author : Jesse Vincent [EMAIL PROTECTED]
* URL : http://search.cpan.org/dist/Data-ICal/
* License : Perl
  Programming Lang: Perl
  Description : Generates iCalendar (RFC 2445) calendar files

Data::ICal object represents a VCALENDAR object as defined in the
iCalendar protocol (RFC 2445, MIME type text/calendar), as implemented
in many popular calendaring programs such as Apple's iCal.


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Kris Deugau
The Fungi wrote:
 On Wed, May 30, 2007 at 04:46:30PM -0400, Kris Deugau wrote:
 [...]
 On RHEL and derived distros, there's usually a file /etc/redhat-release
 (sometimes renamed, but usually trivially enough that it can be found
 with little trouble) containing both the distro code name and the
 version number.
 [...]
 
 Not to be patronizing,

Don't worry about that.  g

 but you are aware of the /etc/debian_version
 file, yes?

No.  g  But now I am.  It's looking more promising that any other
approach, too.

-kgd


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



What happened to popcon graphs?

2007-05-31 Thread Nico Golde
Hi,
Anyone knows why the popcon graphs on:
http://qa.debian.org/popcon.php?package=package are 
missing?

I mailed igloo 5 days ago without any reply yet.
Anyone knows more?
Kind regards
Nico

-- 
Nico Golde - http://ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpP0JFrHZWV7.pgp
Description: PGP signature


Re: Source package taking over removed package's place in the namespace

2007-05-31 Thread Magnus Holmgren
On Thursday 31 May 2007 14:32, Adam D. Barratt wrote:
 Magnus Holmgren wrote, Thursday, May 31, 2007 1:04 PM

  Situation: Two source packages collide in the namespace. The second
  one gets rather awkward name. Later, the first package dies and is
  removed from unstable, testing, and (after release) stable, but still
  remains
  in  oldstable.
 
  Question: Can the second source package take the first source package's
  (less awkward) name, or does it have to wait until oldstable is archived?

 So far as I can tell, that should be fine.

 dak requires that (source, version) tuples be unique, so the new source
 package would need to have a different (practically, higher) version than
 the old one; that's not a problem in this case.

No, but won't the PTS and the BTS get confused?

-- 
Magnus Holmgren[EMAIL PROTECTED]
   (No Cc of list mail needed, thanks)


pgpOAca9nhKu7.pgp
Description: PGP signature


Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Javier Fernández-Sanguino Peña
On Thu, May 31, 2007 at 02:06:28PM +0200, Santiago Vila wrote:
 That would bless the abuse of /etc/debian_version. IMHO, it would be
 good for Debian if we continue to discourage its use.

LSB compliance (which is a release goal) obliges us to provide proper
versioning information for releases. That means we have to have a (standard)
way for other software to determine which version of our distribution
they are running in.

The lsb_release scripts relies on /etc/debian_version. It also uses of
/etc/apt/sources.list is a -bad- hack to work around the testing/unstable
problem (and introduces some bugs).

As you are the maintainer for base-files, and it provides
/etc/debian_version, what do you suggest we do for LSB compliance? 

Quite frankly, if you are actively opposing its use I would like to suggest
release managers to get involved and help fix this ambiguous situation for
the next release.

Friendly,

Javier


signature.asc
Description: Digital signature


Bug#426889: ITP: libhmac-ruby1.8 -- A keyed-hash message authentication code (HMAC) library for Ruby

2007-05-31 Thread Daigo Moriwaki
Package: wnpp
Severity: wishlist
Owner: Daigo Moriwaki [EMAIL PROTECTED]


* Package name: libhmac-ruby1.8
  Version : 0.3
  Upstream Author : Daiki Ueno [EMAIL PROTECTED]
* URL : http://www.example.org/
* License : Ruby's license
  Programming Lang: Ruby
  Description : A keyed-hash message authentication code (HMAC) library for 
Ruby

This library provides HMAC functionality with Ruby. HMAC is a type of
Message Authentication Code (MAC) algorithm documented in RFC2104,
which is used to verify integrity of data transmitted over or stored
in unreliable medium, based on a secret key. 

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (90, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.20-1-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)
Shell: /bin/sh linked to /bin/bash


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



Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread Guillem Jover
On Thu, 2007-05-31 at 14:51:00 +0200, Josselin Mouette wrote:
 Le mercredi 30 mai 2007 à 07:53 +0300, Guillem Jover a écrit :
  If you need to retrieve the conffile info, which is why most of those
  packages are poking at the status file, please use something like:
  
$ dpkg-query -W -f='${Conffiles}' docbook-xml
  
  which is also cleaner. If there happens to be any reentrancy problem
  in dpkg-query, that will be considered a bug and fixed, so this should
  be considered the standard api for maintainer scripts.
 
 Could you please fix the wiki page with proper functions you recommend?

Sure, done.

  I'll be filing bug reports on lintian and linda so that they give
  errors on maintainer scripts poking at the file...
 
 Good. This could also be made a release goal so that you can safely
 consider to change this database layout (or not) in lenny+1.

Once the lintian results are online, bugs will be easier to spot and
be filed.

regards,
guillem


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



Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread Guillem Jover
On Thu, 2007-05-31 at 15:22:59 +0200, Daniel Leidert wrote:
 Am Mittwoch, den 30.05.2007, 07:53 +0300 schrieb Guillem Jover:
  I've been meaning to send this for some time, but latest docbook-xml
  upload finally triggered it.
 
 Well, why didn't you send me a CC of this mail? I just stumbled over
 this by fluke.

I should have anonymized the mail, and not make any package reference,
it is a general warning for something that's wrong and that I've been
noticing lately on an increasing number of packages.

  Please stop parsing dpkg status file from maintainer scripts. No
  package should assume its location or format (except for now for
  package managment frontends and the like, until there's a proper
  library they can use). This might make it really difficult in case
  we have to change the db layout or whatever in the future.
  
  If you need to retrieve the conffile info, which is why most of those
  packages are poking at the status file, please use something like:
  
$ dpkg-query -W -f='${Conffiles}' docbook-xml
 
 http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xml/trunk/debian/docbook-xml.preinst?op=filerev=817sc=1
 Should solve the issue.

Thanks!

regards,
guillem


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



Re: python, then C++, or C++ from the start?

2007-05-31 Thread Francesco P. Lovergine
On Wed, May 30, 2007 at 05:34:10PM +0200, martin f krafft wrote:
 But I am asking you still: can you think of anything to say against
 such an approach? Please don't flame languages or anything of that
 sort. The question is just: is it viable for a C++ coder with
 a Python proficiency to mockup a new application in Python first?
 

I would choose plain C instead of C++ to avoid possible ABI breakages
during main upgrades. But for that, there are more tiny languages
available to be embedded into a C/C++ framework, but probably I'm
biased and old-fashioned ;-)

-- 
Francesco P. Lovergine


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



Bug#426895: ITP: homebank -- Manage your personal accounts at home

2007-05-31 Thread Francesco Namuri
Package: wnpp
Severity: wishlist
Owner: Francesco Namuri [EMAIL PROTECTED]


  Package name: homebank
  Version : 3.2
  Upstream Author : Maxime Doyen [EMAIL PROTECTED]
  URL : http://homebank.free.fr/
  License : GPL
  Programming Lang: C
  Description : Manage your personal accounts at home

HomeBank is a simple and easy to use program to manage your accounts.
It has a lot of features such as statistics with graphical charts,
multi-accounts support, budget management, reminder, and even more!

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

Kernel: Linux 2.6.18-custom.5
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Re: http://utnubu.alioth.debian.org/scottish/ still used?

2007-05-31 Thread Javier Fernández-Sanguino Peña
On Thu, May 31, 2007 at 02:46:32PM +0200, Daniel Baumann wrote:
 In order to find the Debian maintainer, we'd have to have an additional
 pass to extract that information -- which would actually be quite
 expensive (unpacking 16,000 source packages every hour!)

That's bogus, the maintainer field is in the Packages file. You just have to
parse it (not necessarily every hour) to extract that info and map Ubuntu
packages to Debian maintainers.  Actually, guess what, that's already done in
Launchpad!

Regards

Javier


signature.asc
Description: Digital signature


Re: Source package taking over removed package's place in the namespace

2007-05-31 Thread The Fungi
On Thu, May 31, 2007 at 02:04:08PM +0200, Magnus Holmgren wrote:
 Situation: Two source packages collide in the namespace. The
 second one gets rather awkward name. Later, the first package dies
 and is removed from unstable, testing, and (after release) stable,
 but still remains in oldstable.
[...]
 Concrete example: lsh/lsh-utils (see bug 340354).

Additional example: weather/weather-util.
-- 
{ IRL(Jeremy_Stanley); PGP(9E8DFF2E4F5995F8FEADDC5829ABF7441FB84657);
SMTP([EMAIL PROTECTED]); IRC([EMAIL PROTECTED]); ICQ(114362511);
AIM(dreadazathoth); YAHOO(crawlingchaoslabs); FINGER([EMAIL PROTECTED]);
MUD([EMAIL PROTECTED]:6669); WWW(http://fungi.yuggoth.org/); }


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



Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread Ian Jackson
Guillem Jover writes (Parsing of dpkg status file considered harmful):
 Please stop parsing dpkg status file from maintainer scripts. No
 package should assume its location or format (except for now for
 package managment frontends and the like, until there's a proper
 library they can use). This might make it really difficult in case
 we have to change the db layout or whatever in the future.

Guillem is absolutely right.  _At the moment it does not work!_

If a dpkg run is interrupted, or when dpkg is running,
/var/lib/dpkg/status is not a complete and accurate record.  Don't
touch it.

 If you need to retrieve the conffile info, which is why most of those
 packages are poking at the status file, please use something like:
   $ dpkg-query -W -f='${Conffiles}' docbook-xml
 which is also cleaner. If there happens to be any reentrancy problem
 in dpkg-query, that will be considered a bug and fixed, so this should
 be considered the standard api for maintainer scripts.

Quite so.

(Note that I'm adamantly opposed to the IMO crazy plans to replace the
on-disk status database format.  IMO the parsing needs to be sped up
and the Descriptions moved into a separate file.  But this is a
discussion for a different list.)

Ian.


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



Re: Is there a way to positively, uniquely identify which Debian?release a program is running on?

2007-05-31 Thread Gabor Gombas
On Thu, May 31, 2007 at 01:50:50PM +0200, Frans Pop wrote:

 That sounds a bit strange as the version of glibc in testing is the same 
 as the one in stable. Or do you mean sid instead of lenny?

Oops, you're right. It's etch+sid.

Gabor

-- 
 -
 MTA SZTAKI Computer and Automation Research Institute
Hungarian Academy of Sciences
 -



Creative Commons 3.0 Attribution license

2007-05-31 Thread Miriam Ruiz

Hi,

I plan to file an ITP and package a cute small game called Which Way Is
Up? ( http://hectigo.net/puskutraktori/whichwayisup/ ) and maintain it.

All the game code is licensed under the GPL 2.0. All the game content,
sounds and graphics are licensed under Creative Commons 3.0 Attribution
license ( http://creativecommons.org/licenses/by/3.0/ ).

As I understand, CC-by 3.0 is DFSG-free. The only potentially DFSG-freeness
problem I can see is the DRM limitation, and then again GNU FDL also has it
and is perfectly DFSG according to the last GR about it.

Anyway, I prefer to ask about it first: Does anyone know if CC-by 3.0 is
DFSG-free or not for sure, shall I go ahead and put it in the repositories?

Greetings and thanks,
Miry


Re: Creative Commons 3.0 Attribution license

2007-05-31 Thread Marco d'Itri
On May 31, Miriam Ruiz [EMAIL PROTECTED] wrote:

 Anyway, I prefer to ask about it first: Does anyone know if CC-by 3.0 is
 DFSG-free or not for sure, shall I go ahead and put it in the repositories?
The ftpmasters do.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Parsing of dpkg status file considered harmful

2007-05-31 Thread sean finney
On Thursday 31 May 2007 19:03:41 Ian Jackson wrote:
 (Note that I'm adamantly opposed to the IMO crazy plans to replace the
 on-disk status database format.  IMO the parsing needs to be sped up
 and the Descriptions moved into a separate file.  But this is a
 discussion for a different list.)

along those lines, is there gonna be a dpkg BoF at debconf?  i'd be interested 
to see where this discussion goes.

sean


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


Re: python, then C++, or C++ from the start?

2007-05-31 Thread Oleg Verych
* From: martin f krafft [EMAIL PROTECTED]
* Date: Thu, 31 May 2007 10:37:54 +0200
* Organization: Debian GNU/Linux

 also sprach Oleg Verych [EMAIL PROTECTED] [2007.05.31.1013 +0200]:
 Then call me !

 Do you have a POSIX-compatible solution to the problem of setting
 variables inside while loops?

 See http://blog.madduck.net/geek/2006.05.29-shell-sucks

,---[ blog entry, Mon, 29 May 2006 ]---
|
|Shell sucks
|
|   Shell programming must be the most depressive waste of time out there,
|   and if only because things sometimes just don't work the way you'd
|   expect from a scripting language.

Yes... And main reason is, IMHO, shell is a kernel syscalls (open, read,
write, pipe, fork, etc.) manipulation tool with some helper
functionality, it's not a programming thing.

|   Take the following simple examples in bash (3):
|for i in 1 2 3; do
|  echo $i
|  exit 1
|done
| echo END
|
|== 1
|
|echo -e 1\n2\n3 | while read i; do
|  echo $i
|   exit 1
|done
|echo END
|
|== 1
|== END
| 
|   WTF? The result of the first -- the whole script exits entirely after
|   the first iteration -- is what I expect. After all, I did not call
|   break, but exit. The result of the second is totally unexpected. I
|   understand that for and while each execute their iterations in a
|   subshell, but why don't these behave in the same way?

I'd say, the *fine* reason can be found after reading pipe(7), pipe(2).
Pipe is so frequently mentioned and used in the UNIX environment by
shells, but programmers with their applications use it fairly seldom. 

(in short: syscall pipe(2) can be used only by two processes, i.e fork)

However as noted in some historical notes ever, it was a time, where
all that wasn't that good. Shell implementations ran loops with
redirected I/O (,) in subshells also, while this not require
forking[0]. Now it's OK.

[0] UNIX Power Tools http://www.unix.org.ua/orelly/unix/upt/ch45_23.htm

|   The fix here is a || exit $? following the done keyword. Urks!

Obviously, it's an another process. Syntax is wired, but hey, it's the
UNIX power!

|
|   Here's another one: the task is simply to output the number of 1's in
|   the output (yeah, I realise grep -c can do this too):
|cnt=0
|echo -e 2\n1\n3\n1 | while read i; do
|case $i in
|  1) cnt=$((cnt + 1));;
|esac
|  done
|echo $cnt
|
| == 0
|
|   The reason? The while subshell receives a copy of the caller
|   environment, so when it updates $cnt, it only updates a copy of the
|   actual variable, leaving the original untouched. Similarly, a variable
|   defined inside the subshell won't be available after the while loop is
|   done.

Aha, you knew that! But it's a kind of confusion. Again, *subshell* is
another process, another process is not necessarily a shell. See also
38.4 in the [0]. Thus same result must be with `` and $().

Funny thing to note is, that this script already bash specific, because
of `echo -e'. Forget it, please, use `printf %b ...' instead.

|
|   I cannot find a fix that's not bash specific.
|
|   Of course, it works fine when I replace the while loop by a for loop:
|cnt=0
| for i in 2 1 3 1; do
|case $i in
|  1) cnt=$((cnt + 1));;
|esac
|  done
|echo $cnt
|
|== 2
|
|   Great, isn't it?
|
|   And I am not surprised that zsh gets it right. Why would anyone
|   actually want to use bash?

Maybe zsh is a shell for programmers ;)

==[self, about programmers] I developed one simple way of being useful
for any kind of Linux development, while i had wonderful academia time.

Become a User (not user or luser) of your system first, before you start
to develop and code anything. Unfortunately big and expensive UNIX setups
were not so widely available, and many of use came back there only after
M$ brainwashing, dot com bubbles, HTML, Javascript XML and such
$(/dev/random dd bs=13 count=1) [note subshell! ;] ==[ish]

|
|   Update: here's Joey's explanation for the behaviour, and Clint's
|   account for why zsh does it right. I still can't figure out how to
|   count the 1's.

Joey is talking about lot of shell programming and POSIX, while using
`echo -e` :D

|
|   Update ^2: Axel Liljencrantz sent in this message.
|
||grep ...|read foo bar baz
||
||Which is very often useful. As you say in your blog, zsh fares quite a
||bit better since the last process in a pipeline is not run in a
||subshell, which at least takes care of the most common problems. But
||the fundamental idea of subshells is, in my opinion, broken. You
||simply can't do variable assignment or perform many other builtins
||with any reliability when using pipelines or command substitutions.
||
||I've tried to write a shell (called fish) that never ever forks of a
||subshell...

It's possible to do variable assigment `eval', `. file', [0].
[But programmer chooses to code more...]

| 
|   Update ^3: Alexander Sieck showed me that process substitution
|   ((command)) instead of the pipe does work (for both cases):
|while read i; do
|  echo $i
|  exit 1
|done  (echo -e 

Converting an svn-buildpackage repository to git

2007-05-31 Thread Cameron Dale

Hi,

I'm thinking of converting a subversion repository I use for one of my
debian packages to git (preferably with all history intact). The
repository was created by svn-buildpackage, so it has a structure like
this:

 trunk/
 tags/
 tags/1.0-1/
 branches/
 branches/mybranch/
 branches/upstream/
 branches/upstream/current/
 branches/upstream/1.0/

I've tried using git-svn to import this, specifying the -T trunk -t
tags -b branches options, which mostly seems to work. However, the
upstream branch that I end up with in git has a current directory
and a directory for each upstream version. I also get a branch for
[EMAIL PROTECTED], which has an unmodified upstream in it (even though it is
rev 3 where this is copied to the trunk).

Using git-svnimport is slightly worse, though I do get a single master
(trunk) branch, and branches for upstream and mybranch (and even
tags). However, each branch has most of the expected files, alongside
a current directory and a directory for each upstream version. In
addition, upstream files that I have not modified are not in their
proper place, but are instead only found in the current and upstream
version subdirectories.

I think it's clear these programs aren't working properly with the
upstream subdirectories in branches, so how can I get a better result?
Is there some way to tell the git programs to look in subdirectories
for branches? Or, do I need to modify my subversion repository so
upstream is a single branch, with the different versions being tags
instead (and why doesn't svn-buildpackage use this form)?

Any help you can offer is appreciated,
Cameron


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



Re: Creative Commons 3.0 Attribution license

2007-05-31 Thread Francesco Poli
On Thu, 31 May 2007 18:47:37 +0200 Miriam Ruiz wrote:

 Hi,
 
 I plan to file an ITP and package a cute small game
[...]
 All the game code is licensed under the GPL 2.0.

Good.

 All the game content,
 sounds and graphics are licensed under Creative Commons 3.0
 Attribution license ( http://creativecommons.org/licenses/by/3.0/ ).

Ouch!  :-(

 
 As I understand, CC-by 3.0 is DFSG-free.

My personal opinion is that *none* of CC-v3.0 licenses meets the DFSG.
They are *not* acceptable, IMO.

See
http://lists.debian.org/debian-legal/2007/03/msg00024.html
http://lists.debian.org/debian-legal/2007/03/msg00023.html
http://lists.debian.org/debian-legal/2007/02/msg00059.html
and the threads that followed.

 The only potentially
 DFSG-freeness problem I can see is the DRM limitation, and then again
 GNU FDL also has it and is perfectly DFSG according to the last GR
 about it.

I see other DFSG-freeness issues in CC-v3.0 licenses besides the
anti-DRM clause, but anyway GR-2006-001
(http://www.debian.org/vote/2006/vote_001) did *not* decide anything
about CC licenses, nor about license clauses in general.
The decision taken by GR-2006-001 was just about the GFDL, which was
(absurdly, IMO) judged acceptable (when no part of the work is
unmodifiable/unremovable), without explaining why.

 
 Anyway, I prefer to ask about it first: Does anyone know if CC-by 3.0
 is DFSG-free or not for sure, shall I go ahead and put it in the
 repositories?

I personally think CC-v3.0 licensed works should *not* enter Debian
main.

IANADD, IANAL.

-- 
 http://frx.netsons.org/doc/nanodocs/testing_workstation_install.html
 Need to read a Debian testing installation walk-through?
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpPOi21E3FA3.pgp
Description: PGP signature


ldbl128 transition for alpha, powerpc, sparc, s390

2007-05-31 Thread Matthias Klose
With glibc-2.5 and gcc-4.1.2 (and gcc-4.2), the `long double' data
type did change from a 64bit representation to a 128bit representation
on alpha, powerpc, sparc, s390. To allow partial upgrades of packages,
we will need to rename all packages holding libraries with the long
double data type in their API.  Both libc and libstdc++ do not need to
be renamed, because they support both representations. Attached you
can find a list of packages with header files in /usr/include matching
'long *double'. If a library package is built from the same source as
well, it has to be renamed, however the list may have false positives.

Still unsure about how to handle extension modules in scripting
languages; looking at python it may be sufficient to add conflicts
with all extension modules exposing the long double datatype in their
APIs.

I plan to submit bug reports with severity `serious' for all source
packages matching the above description (although if somebody wants to
handle this transition, please go ahead).

  Matthias

atlas3-headers
cfortran
cmix
crystalspace-dev
dietlibc-dev
ecl
elks-libc
erlang-dev
etl-dev
felix
fftw3-dev
fftw-docs
gclcvs
gettext
ghdl
gnulib
harbour
kmymoney2
lam4-dev
lcrash-dev
libace-dev
libalps-light1-dev
libbind-dev
libbinio-dev
libblitz0-dev
libcln-dev
libclucene-dev
libcppunit-dev
libdbi-perl
libfcgi-dev
libglib1.2-dev
libgmp3-dev
libgoffice-1-dev
libgraphicsmagick1-dev
libgraphviz3-dev
libgsl0-dev
libhdf5-lam-dev
libhdf5-mpich-dev
libhdf5-serial-dev
libhk-classes-dev
libicu36-dev
libimager-perl
libinsighttoolkit-dev
libitpp-dev
liblo0-dev
libloki-dev
liblpsolve55-dev
liblua5.1-0-dev
libmagick9-dev
libmpfr-dev
libmpich1.0-dev
libmpich-mpd1.0-dev
libmpich-shmem1.0-dev
libnewlib-headers
libnewmat10-dev
libniftiio0-dev
libomniorb4-dev
libopenexr-dev
liborbit2cpp-dev
liborbit2-dev
liborbit-dev
liborsa0-dev
libosp-dev
libostyle-dev
libparrot-dev
libpetsc2.3.2-dev
libpoco-dev
libpqxx-dev
libpt-dev
libqd-dev
libqhull-dev
libqt4-dev
librudiments-dev
libsmi2-dev
libsscm-dev
libstk0-dev
libstlport4.6-dev
libstlport5.0-dev
libstlport5.1-dev
libsundials-serial-dev
libtao-dev
libterralib1-dev
libuclibc-dev
libvigraimpex-dev
libwine-dev
libwv2-dev
libwvstreams-dev
libwww-dev
libwww-ssl-dev
llvm
llvm-cfe
lsb-build-base2
lsb-build-base3
mercury
meschach-dev
nickle
openmpi-dev
pdl
perl
php4-dev
php5-dev
pike7.6-dev
pnetc
pnet-dev
postfix-dev
python2.4-dev
python2.5-dev
python-numpy
python-scipy
python-scipy-core
sparsehash
splint
tcc
tendra
wireshark-dev
wx2.4-headers
wx2.6-headers
xemacs21-bin


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



Re: ldbl128 transition for alpha, powerpc, sparc, s390

2007-05-31 Thread Santiago Vila
On Thu, 31 May 2007, Matthias Klose wrote:

 Attached you can find a list of packages with header files in
 /usr/include matching 'long *double'.
 [...]
 gettext

I don't understand this, as

grep double `dpkg -L gettext | grep include/`

outputs nothing.

Is this a false positive?

[ Please keep Cc: debian-devel, as I'm not subscribed to -toolchain ].


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Adeodato Simó
* Javier Fernández-Sanguino Peña [Thu, 31 May 2007 12:33:07 +0200]:

Hello.

 I actually think we should ship a *distinct* /etc/debian_version
 in testing and not make it follow the sid-testing-stable dance. Otherwise
 there is a timeframe in which sid's or testing's base-files say's it is
 stable, when it's not.

Like Javier, I also think that it'd be desirable to have somewhere, be
it /etc/debian_version or not, distinct information about the release.
His idea about /etc/lsb-release sounds sensible to me:

 However, this opens the possibility of introducing /etc/lsb-release in Debian
 (not required by lsb, but nice to have for people who do not want to rely on
 the lsb_release script) with properly structured content like:

 DISTRIB_ID=Debian
 DISTRIB_RELEASE=4.0
 DISTRIB_CODENAME=etch
 DISTRIB_DESCRIPTION=Debian GNU/Linux 4.0 'etch'

 and

 DISTRIB_ID=Debian
 DISTRIB_RELEASE=testing
 DISTRIB_CODENAME=lenny
 DISTRIB_DESCRIPTION=Debian GNU/Linux testing 'lenny' (UNRELEASED)

Santiago, would you be willing to introduce this new file (distinct from
/etc/debian_version) into base-files, and maintain two separate branches
of the package as explained by Javier?

If not, Javier's idea about introducing a new packagae for this file
seems the only option left, and I wouldn't mind maintaining it. Other
packages like lsb-release and maybe base-files could depend on it.
Though I think it'd be best to ship /etc/lsb-release on base-files
itself.

 Either ways make the hacks introduced in lsb_release unnecesary.

This sounds desirable, yes. Let's wait for Santiago's opinion.

Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
It is impossible to make anything foolproof because fools are so ingenious.


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



Ruzena Bajcsy has moved as of November 1st, 2001.

2007-05-31 Thread Ruzena Bajcsy
I have moved to UC Berkeley, CA. 
My new contact e-mail is: [EMAIL PROTECTED]
If you wish to reach me, please resend this e-mail directly to my new e-mail
because I will not read e-mail to my UPENN address anymore.


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



Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Santiago Vila
On Fri, 1 Jun 2007, Adeodato Simó wrote:

 Santiago, would you be willing to introduce this new file (distinct from
 /etc/debian_version) into base-files, and maintain two separate branches
 of the package as explained by Javier?

That would be an ugly hack. base-files is a package which is uploaded
for unstable and then propagates to testing, like any other package,
so it's definitely not the place for something that should be
different in testing and unstable.

I wonder why do we need a file to tell the user about the contents of
his /etc/apt/sources.list file. Have you read How do I know which
distribution I'm running? in base-files FAQ? The answer is still
valid for *any* file which is part of an installed package.

I really don't understand what you guys want to achieve that might be both
necessary and really useful (as opposed to just being a nice thing).



Re: Wanted: introductory page for all teams

2007-05-31 Thread Bernd Zeimetz

 So consider this a +1 for me to get write access to all DD by default in
 our website.

for the content I'm pretty sure that's a good idea. Giving all DDs
access to the css could result in a new design every week. Although that
sounds like an interesting thing to watch ;)

-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/


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



ITP: rsstail - Text based RSS feeder

2007-05-31 Thread Rene Mayorga
Package: wnpp
Severity: wishlist
Owner: Rene Mayorga [EMAIL PROTECTED]

* Package name: rsstail
* Version : 1.1
* Upstream Author : Folkert van Heusden [EMAIL PROTECTED]
* URL : http://www.vanheusden.com/rsstail/
* License : GPLv2
* Description : (see below)

rsstail is a simple text based RSS feeder.

It's provide an ouput similar to the 'tail' command to fecth news from a 
RSS feed.



--- System information. ---
Architecture: powerpc
Kernel:   Linux 2.6.18.3-ch2.0

Debian Release: lenny/sid
  500 unstablemirrors.kernel.org 


-- 
Rene Mauricio Mayorga   |  GPG: A209C305
http://rmayorga.org |  
--
08B6 58AB A691 DD56 C30B  8D37 8040 19FA A209 C305


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


Re: Is there a way to positively, uniquely identify which Debian release a program is running on?

2007-05-31 Thread Russ Allbery
Gabor Gombas [EMAIL PROTECTED] writes:
 On Wed, May 30, 2007 at 04:46:30PM -0400, Kris Deugau wrote:

 However, there doesn't seem to be any single, consistent,
 doesn't-change-for-the-life-of-the-release, programmatically possible
 (never mind *easy* just yet...) method to find out if I'm on Debian
 sarge, etch, lenny, or some third-party Debian-derived distribution.

 Your approach is wrong. Many machines have packages installed from
 multiple distributions simultaneously (sarge+etch, sarge+backports,
 etch+backports, etch+lenny, lenny+sid, sid+experimental are probably the
 most common combinations nowadays). Backported packages may even be
 compiled locally so they may not have any distribution associated with
 them at all.

Hm, it's often not a good idea to tell people that they're doing something
wrong just because it doesn't work globally with everyone's systems.  It
can come across poorly, and often what they're asking for makes perfect
sense in their environment.  If we as a project can't provide them with
the right tool because it doesn't make sense in our context, that's a good
response, but just telling them they're taking the wrong approach isn't
particularly useful.

For example, at Stanford, while some of our staff workstations do have
those package mixes, our servers are either sarge or etch.  Asking whether
a given server is sarge or etch is a quite reasonable and rational
question with a well-defined response.  And it is very useful for us to be
able to select, inside Puppet, whether a given system is sarge or etch (to
take an obvious example, we want to maintain sources.list via Puppet, but
we don't want Puppet to convert a sarge system to an etch system or vice
versa).  Doing that via automatic discovery on the system is the right
approach since maintaining a list of what systems are which (ever-changing
given that we're doing upgrades now) would be tedious and often inaccurate
for our hundreds of servers.

lsb-release via facter works quite well for this purpose for us.  That it
doesn't work with sid/lenny systems isn't a problem for us currently, and
will never be a problem provided that it's fixed before lenny becomes
stable.  :)

-- 
Russ Allbery ([EMAIL PROTECTED])   http://www.eyrie.org/~eagle/


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



Bug#426957: ITP: rnahybrid -- Fast and effective prediction of microRNA/target duplexes

2007-05-31 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy [EMAIL PROTECTED]

  Package name: rnahybrid
  Version : 2.1
  Upstream Author : Marc Rehmsmeier, Peter Steffen, Matthias Hoechsmann
  URL : http://bibiserv.techfak.uni-bielefeld.de/rnahybrid/
  License : GPL
  Programming Lang: C
  Description : Fast and effective prediction of microRNA/target duplexes

 RNAhybrid is a tool for finding the minimum free energy hybridisation of a
 long and a short RNA. The hybridisation is performed in a kind of domain mode,
 ie. The short sequence is hybridised to the best fitting part of the long one.
 The tool is primarily meant as a means for microRNA target prediction.
 .
 Public research assisted by RNAhybrid should cite:
 Marc Rehmsmeier, Peter Steffen, Matthias Höchsmann, Robert Giegerich
 Fast and effective prediction of microRNA/target duplexes
 RNA, 10:1507-1517, 2004.
 .
  Homepage: http://bibiserv.techfak.uni-bielefeld.de/rnahybrid/submission.html

I am a bit into miRNA those days and found this program, which is
piece-of-cake to package. It has already manpages - that is quite
exceptional in the field... The package is indeed ready, and I will
forward it to my sponsor when I will have solved a problem of watch
file.

In the meantime, it is accessible on svn:

http://svn.debian.org/wsvn/debian-med/trunk/packages/rnahybrid/trunk/

-- 
Charles Plessy
Debian-Med Packaging Team
Wako, Saitama, Japan


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



ITP: aoeui -- Lightweight, unobtrusive, Dvorak-optimized text editor

2007-05-31 Thread Ryan Kavanagh
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Ryan Kavanagh [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: ITP: aoeui -- Lightweight, unobtrusive, Dvorak-optimized text editor
Message-ID: [EMAIL PROTECTED]
X-Mailer: reportbug 3.31ubuntu1
Date: Thu, 31 May 2007 20:07:46 -0400
X-Debbugs-Cc: debian-devel@lists.debian.org

Package: wnpp
Severity: wishlist
Owner: Ryan Kavanagh [EMAIL PROTECTED]

* Package name: aoeui
  Version : 1.0~alpha5
  Upstream Author : Peter Klausler [EMAIL PROTECTED]
* URL : http://aoeui.sourceforge.net/
* License : GPL
  Programming Lang: C
  Description : Lightweight, unobtrusive, Dvorak-optimized text editor

 A lightweight and unobtrusive text editing program that is optimized
 for fast editing by users of the Dvorak keyboard layout.

- -- System Information:
Debian Release: 4.0
  APT prefers feisty-updates
  APT policy: (500, 'feisty-updates'), (500, 'feisty-security'), 
(500, 'feisty')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20-15-generic
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)


pgpHG5SKr1BKX.pgp
Description: PGP signature


Re: ldbl128 transition for alpha, powerpc, sparc, s390

2007-05-31 Thread Steve Langasek
On Thu, May 31, 2007 at 11:36:55PM +0200, Matthias Klose wrote:
 With glibc-2.5 and gcc-4.1.2 (and gcc-4.2), the `long double' data
 type did change from a 64bit representation to a 128bit representation
 on alpha, powerpc, sparc, s390. To allow partial upgrades of packages,
 we will need to rename all packages holding libraries with the long
 double data type in their API.  Both libc and libstdc++ do not need to
 be renamed, because they support both representations. Attached you
 can find a list of packages with header files in /usr/include matching
 'long *double'. If a library package is built from the same source as
 well, it has to be renamed, however the list may have false positives.

 Still unsure about how to handle extension modules in scripting
 languages; looking at python it may be sufficient to add conflicts
 with all extension modules exposing the long double datatype in their
 APIs.

 I plan to submit bug reports with severity `serious' for all source
 packages matching the above description (although if somebody wants to
 handle this transition, please go ahead).

snip

 lsb-build-base2
 lsb-build-base3

snip

Given what the LSB is, I expect that at least these packages need to be
updated to build using the old ABI.  How can this be done?

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Re: Better documenting what does not work in Etch.

2007-05-31 Thread Petter Reinholdtsen

[Javier Fernández-Sanguino Peña]
 Actually, the website has errata pages for each release work at the
 wiki could be a basis for an updated page at the website.

Yes.  I suggest using URL:http://wiki.debian.org/DebianEtch for this
purpose.

Happy hacking,
-- 
Petter Reinholdtsen


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



Accepted gnome-mastermind 0.3-1 (source i386)

2007-05-31 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 06:55:19 +0200
Source: gnome-mastermind
Binary: gnome-mastermind
Architecture: source i386
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Bart Martens [EMAIL PROTECTED]
Changed-By: Bart Martens [EMAIL PROTECTED]
Description: 
 gnome-mastermind - Mastermind (TM) clone for GNOME Desktop
Changes: 
 gnome-mastermind (0.3-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/patches/02_dfsg.1.diff, debian/README.Debian-source: Removed.
   * debian/copyright: Updated.
Files: 
 168078ff0d0bbeae9882a35f9c4e3f24 767 games optional gnome-mastermind_0.3-1.dsc
 cbb10a7be9d999ff9491d5a0cb3eb6ef 829756 games optional 
gnome-mastermind_0.3.orig.tar.gz
 f3ea83fef946a4a025fb7ce28e2345df 2504 games optional 
gnome-mastermind_0.3-1.diff.gz
 a2f7b410e7e1681e71d612ec56a12693 438288 games optional 
gnome-mastermind_0.3-1_i386.deb

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

iD8DBQFGXmTzbMaawmho9B8RAlcqAJ98UOAWURnKw6N7ofktBd0h2RYJFQCgg8iY
DoibVn6Up/MS6V+SxZjDNN4=
=q/lb
-END PGP SIGNATURE-


Accepted:
gnome-mastermind_0.3-1.diff.gz
  to pool/main/g/gnome-mastermind/gnome-mastermind_0.3-1.diff.gz
gnome-mastermind_0.3-1.dsc
  to pool/main/g/gnome-mastermind/gnome-mastermind_0.3-1.dsc
gnome-mastermind_0.3-1_i386.deb
  to pool/main/g/gnome-mastermind/gnome-mastermind_0.3-1_i386.deb
gnome-mastermind_0.3.orig.tar.gz
  to pool/main/g/gnome-mastermind/gnome-mastermind_0.3.orig.tar.gz


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



Accepted openldap2.3 2.3.35-1 (source i386)

2007-05-31 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 May 2007 22:42:28 -0700
Source: openldap2.3
Binary: slapd ldap-utils libldap-2.3-0
Architecture: source i386
Version: 2.3.35-1
Distribution: unstable
Urgency: low
Maintainer: Debian OpenLDAP Maintainers [EMAIL PROTECTED]
Changed-By: Russ Allbery [EMAIL PROTECTED]
Description: 
 ldap-utils - OpenLDAP utilities
 libldap-2.3-0 - OpenLDAP libraries
 slapd  - OpenLDAP server (slapd)
Closes: 361846 390954 422087
Changes: 
 openldap2.3 (2.3.35-1) unstable; urgency=low
 .
   * New upstream release with many bug fixes.
 - Allow syncprov to follow aliases.  (Closes: #422087)
   * Apply upstream patches:
 - ITS#4924: client crash on incorrectly tagged result from server.
 - ITS#4925: NOOP modify with BDB backend crashed slapd.
 - ITS#4966: Delete of valsort-controlled entries crashed slapd.
   * Enable SLAPI support.  (Closes: #390954)
   * Re-enable use of the epoll system call since Debian no longer supports
 2.4 kernels.  This means that the OpenLDAP packages will not work on
 pre-2.6 kernels.
   * Remove schema files that contain text from IETF RFCs from the upstream
 source since that text is not DFSG-free.  Instead, install stripped
 versions of those schema files containing only the functional
 interface specifications, a comment explaining why this is needed, and
 a pointer to the relevant RFC.  (Closes: #361846)
   * Document the repackaging of the upstream source in debian/copyright.
   * Update config.guess and config.sub during the build instead of in the
 clean target and remove them in the clean target for a clean diff.
 Build-depend on autotools-dev so that we can unconditionally copy over
 the latest versions.
   * Added commentary and upstream ITS numbers for several patches
 applicable upstream.
   * Use debian/compat rather than the deprecated DH_COMPAT rules setting.
   * Update to debhelper compatibility level V5 (no changes required).
Files: 
 d6d20a1731c1a1a6c3ba3444736bc603 1203 net optional openldap2.3_2.3.35-1.dsc
 5096146b7a7eb6ce3b0a97549347b5be 2947629 net optional 
openldap2.3_2.3.35.orig.tar.gz
 0ca1ae7c18c7b282f8d7ff8f1b6203e5 150873 net optional 
openldap2.3_2.3.35-1.diff.gz
 c96314b2c5c6ffce6848df285534e3cf 1201458 net optional slapd_2.3.35-1_i386.deb
 c3901ffae19e0a4239c56e237ba95b40 152404 net optional 
ldap-utils_2.3.35-1_i386.deb
 2eb3d9bd7a08c4d3c5021798249efb5b 312166 libs optional 
libldap-2.3-0_2.3.35-1_i386.deb

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

iD8DBQFGXmOB+YXjQAr8dHYRAscpAJ9ZhMbsMxvQxT7AZQHLQ2AdUXJbbwCgrkrI
ugjzo+/el5iYgwHR7MJLJyM=
=B+eJ
-END PGP SIGNATURE-


Accepted:
ldap-utils_2.3.35-1_i386.deb
  to pool/main/o/openldap2.3/ldap-utils_2.3.35-1_i386.deb
libldap-2.3-0_2.3.35-1_i386.deb
  to pool/main/o/openldap2.3/libldap-2.3-0_2.3.35-1_i386.deb
openldap2.3_2.3.35-1.diff.gz
  to pool/main/o/openldap2.3/openldap2.3_2.3.35-1.diff.gz
openldap2.3_2.3.35-1.dsc
  to pool/main/o/openldap2.3/openldap2.3_2.3.35-1.dsc
openldap2.3_2.3.35.orig.tar.gz
  to pool/main/o/openldap2.3/openldap2.3_2.3.35.orig.tar.gz
slapd_2.3.35-1_i386.deb
  to pool/main/o/openldap2.3/slapd_2.3.35-1_i386.deb


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



Accepted syslinux 1:3.36-5 (source i386)

2007-05-31 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 07:43:00 +0200
Source: syslinux
Binary: syslinux
Architecture: source i386
Version: 1:3.36-5
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 syslinux   - Bootloader for Linux/i386 using MS-DOS floppies
Changes: 
 syslinux (1:3.36-5) unstable; urgency=low
 .
   * Added patch from Otavio Salvador [EMAIL PROTECTED] to add support to
 change menu vertical and horizontal shifting.
   * Added define-clk-tck patch from Timo Aaltonen [EMAIL PROTECTED].
 It defines CLK_TCK, since the com32 libc API does not have any idea about
 it, and its include files shadow /usr/include/time.h (which would provide
 CLOCKS_PER_SEC).
Files: 
 9ff400d06b9e2a860afae918cb298099 671 utils optional syslinux_3.36-5.dsc
 8afca14732c149b45840e314efb27953 17971 utils optional syslinux_3.36-5.diff.gz
 92095fc2820de4f829de3ba9f3898055 325818 utils optional syslinux_3.36-5_i386.deb

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

iD8DBQFGXmp2+C5cwEsrK54RAp1RAJ9r8WCDwRZ1Om+K0tED0JvXWtPoXQCfdfI5
eLMP/31z7OTlshUECtwfIWg=
=fGi5
-END PGP SIGNATURE-


Accepted:
syslinux_3.36-5.diff.gz
  to pool/main/s/syslinux/syslinux_3.36-5.diff.gz
syslinux_3.36-5.dsc
  to pool/main/s/syslinux/syslinux_3.36-5.dsc
syslinux_3.36-5_i386.deb
  to pool/main/s/syslinux/syslinux_3.36-5_i386.deb


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



Accepted cpufrequtils 002-4 (source i386)

2007-05-31 Thread Mattia Dongili
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 00:29:39 +0900
Source: cpufrequtils
Binary: cpufrequtils libcpufreq0 libcpufreq-dev
Architecture: source i386
Version: 002-4
Distribution: unstable
Urgency: low
Maintainer: Mattia Dongili [EMAIL PROTECTED]
Changed-By: Mattia Dongili [EMAIL PROTECTED]
Description: 
 cpufrequtils - utilities to deal with the cpufreq Linux kernel feature
 libcpufreq-dev - development files to deal with the cpufreq Linux kernel 
feature
 libcpufreq0 - shared library to deal with the cpufreq Linux kernel feature
Closes: 426138
Changes: 
 cpufrequtils (002-4) unstable; urgency=low
 .
   * Enable by default if cpufreq kernel module is loaded thanks
 to Peter Reinholdtsen for the base code/idea (Closes: #426138)
Files: 
 05a211789b63e987f2a8dee6cfe6fda4 640 admin optional cpufrequtils_002-4.dsc
 745da21b5075f44b79a4ea1482569beb 9141 admin optional cpufrequtils_002-4.diff.gz
 d63e25bfe8e88a14d6bc58a30902b525 26114 admin optional 
cpufrequtils_002-4_i386.deb
 29c4ac71759953e0aa308754bd80b851 10712 libs optional libcpufreq0_002-4_i386.deb
 c51d1b32743b6cadc2ead7822a0cf727 10650 libdevel optional 
libcpufreq-dev_002-4_i386.deb

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

iD8DBQFGXmqagpRPaOotLEERAlNfAJ9L4ptKRzUPbwVEqsO3SnGQhH2ckQCfUKH0
mKfAaXzFnEYNRWGK0Jhw2dQ=
=t0B7
-END PGP SIGNATURE-


Accepted:
cpufrequtils_002-4.diff.gz
  to pool/main/c/cpufrequtils/cpufrequtils_002-4.diff.gz
cpufrequtils_002-4.dsc
  to pool/main/c/cpufrequtils/cpufrequtils_002-4.dsc
cpufrequtils_002-4_i386.deb
  to pool/main/c/cpufrequtils/cpufrequtils_002-4_i386.deb
libcpufreq-dev_002-4_i386.deb
  to pool/main/c/cpufrequtils/libcpufreq-dev_002-4_i386.deb
libcpufreq0_002-4_i386.deb
  to pool/main/c/cpufrequtils/libcpufreq0_002-4_i386.deb


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



Accepted xfce4-mpc-plugin 0.3.2-1 (source amd64)

2007-05-31 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 00:10:52 +0200
Source: xfce4-mpc-plugin
Binary: xfce4-mpc-plugin
Architecture: source amd64
Version: 0.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers [EMAIL PROTECTED]
Changed-By: Yves-Alexis Perez [EMAIL PROTECTED]
Description: 
 xfce4-mpc-plugin - Xfce panel plugin which serves as client for MPD music 
player
Changes: 
 xfce4-mpc-plugin (0.3.2-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 fabefaf8bd23777d753d622ab1bc1007 873 x11 optional xfce4-mpc-plugin_0.3.2-1.dsc
 a44d3ddb45cb524bf77d3522cac57286 221042 x11 optional 
xfce4-mpc-plugin_0.3.2.orig.tar.gz
 1ab1e3db4d7f0fa1019fda64f46c3589 1552 x11 optional 
xfce4-mpc-plugin_0.3.2-1.diff.gz
 e680e405a5891517116d0697b5397e56 19412 x11 optional 
xfce4-mpc-plugin_0.3.2-1_amd64.deb

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

iD8DBQFGXogOMQdl+99c4rQRAgG5AKCgd9eQTIL6raGyajrjk3YSKWeUyQCgi62O
o6oV3ijbBcBTl1Gg18kzd8Q=
=ZGYI
-END PGP SIGNATURE-


Accepted:
xfce4-mpc-plugin_0.3.2-1.diff.gz
  to pool/main/x/xfce4-mpc-plugin/xfce4-mpc-plugin_0.3.2-1.diff.gz
xfce4-mpc-plugin_0.3.2-1.dsc
  to pool/main/x/xfce4-mpc-plugin/xfce4-mpc-plugin_0.3.2-1.dsc
xfce4-mpc-plugin_0.3.2-1_amd64.deb
  to pool/main/x/xfce4-mpc-plugin/xfce4-mpc-plugin_0.3.2-1_amd64.deb
xfce4-mpc-plugin_0.3.2.orig.tar.gz
  to pool/main/x/xfce4-mpc-plugin/xfce4-mpc-plugin_0.3.2.orig.tar.gz


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



Accepted aolserver4 4.5.0-7 (source all i386)

2007-05-31 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 09:57:28 +0200
Source: aolserver4
Binary: aolserver4 aolserver4-dev aolserver4-doc
Architecture: source all i386
Version: 4.5.0-7
Distribution: unstable
Urgency: low
Maintainer: Francesco Paolo Lovergine [EMAIL PROTECTED]
Changed-By: Francesco Paolo Lovergine [EMAIL PROTECTED]
Description: 
 aolserver4 - AOL Web Server 4 (Program)
 aolserver4-dev - AOL Web Server 4 (Development Tools)
 aolserver4-doc - AOL Web Server 4 (Documentation)
Closes: 426743
Changes: 
 aolserver4 (4.5.0-7) unstable; urgency=low
 .
   * Now aolserver4.postinst removes an obsolete ld.so.conf entry from previous 
versions.
   * Postinst revised to remove undefined function 'die'.
   * Removed stdout redirection in init script.
   * ru.po templates revised.
 (closes: #426743)
Files: 
 7206b642c9abf0d26a6c4025296b4e59 686 web optional aolserver4_4.5.0-7.dsc
 06101eb416e2bc6780e4e01ac9b4b85c 94004 web optional aolserver4_4.5.0-7.diff.gz
 884be77565b062828322301c5c477319 3319890 doc optional 
aolserver4-doc_4.5.0-7_all.deb
 2a9949229a56091129f0996104515d61 959150 web optional 
aolserver4_4.5.0-7_i386.deb
 a4f061b41a88e9d3ffaaebad432c7945 372990 devel optional 
aolserver4-dev_4.5.0-7_i386.deb

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

iD8DBQFGXoL0pFNRmenyx0cRAmqPAKD9dYqEyvS2y53QNwh7vMGT21hY5wCZAYc+
DJ81eBvWfeRXgY4CCRKESXA=
=+ZG8
-END PGP SIGNATURE-


Accepted:
aolserver4-dev_4.5.0-7_i386.deb
  to pool/main/a/aolserver4/aolserver4-dev_4.5.0-7_i386.deb
aolserver4-doc_4.5.0-7_all.deb
  to pool/main/a/aolserver4/aolserver4-doc_4.5.0-7_all.deb
aolserver4_4.5.0-7.diff.gz
  to pool/main/a/aolserver4/aolserver4_4.5.0-7.diff.gz
aolserver4_4.5.0-7.dsc
  to pool/main/a/aolserver4/aolserver4_4.5.0-7.dsc
aolserver4_4.5.0-7_i386.deb
  to pool/main/a/aolserver4/aolserver4_4.5.0-7_i386.deb


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



Accepted telepathy-mission-control 4.23-1 (source all i386)

2007-05-31 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 09:09:50 +0200
Source: telepathy-mission-control
Binary: libmissioncontrol-server-doc libmissioncontrol-server-dev 
libmissioncontrol-server0 libmissioncontrol0 libmissioncontrol-dev 
telepathy-mission-control libmissioncontrol-doc
Architecture: source all i386
Version: 4.23-1
Distribution: unstable
Urgency: low
Maintainer: Telepathy Maintaince Team [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 libmissioncontrol-dev - Development files for the Telepathy mission control 
library
 libmissioncontrol-doc - Documentation for the Telepathy mission control library
 libmissioncontrol-server-dev - Development files for the Telepathy mission 
control plugin librar
 libmissioncontrol-server-doc - Documentatation for the Telepathy mission 
control plugin library
 libmissioncontrol-server0 - Telepathy mission control plugin library
 libmissioncontrol0 - Library to interact with Telepathy mission control
 telepathy-mission-control - Central control for Telepathy connection managers
Changes: 
 telepathy-mission-control (4.23-1) unstable; urgency=low
 .
   * New upstream release
   * debian/patches/00_size_t_vs_guint.patch
 + Removed. Merged upstream.
Files: 
 bc92f83a179df2a16d78c03d88ee11f9 1084 libs optional 
telepathy-mission-control_4.23-1.dsc
 4bc233651576d358c1755be13ba449ef 568648 libs optional 
telepathy-mission-control_4.23.orig.tar.gz
 b7c2a8a69fe25c42b4ddaa37048d0453 2352 libs optional 
telepathy-mission-control_4.23-1.diff.gz
 bcec3c2a476105d994bd211362dd3c5d 55820 doc optional 
libmissioncontrol-server-doc_4.23-1_all.deb
 e9f683a604ad61ae0af07b5bcb423ef9 53422 doc optional 
libmissioncontrol-doc_4.23-1_all.deb
 5b0a523c83f1392fa45d73b20eded475 34074 net optional 
telepathy-mission-control_4.23-1_i386.deb
 edf2e8fa13b2612c82176cf7ca87b319 85072 libs optional 
libmissioncontrol-server0_4.23-1_i386.deb
 1c97cd462ed00a082c112932649d3ab5 103864 libdevel optional 
libmissioncontrol-server-dev_4.23-1_i386.deb
 d380a9a6a54ac7797053737d31f12e31 59006 libs optional 
libmissioncontrol0_4.23-1_i386.deb
 9e70384ffc6d2b46978cd007feadede4 65774 libdevel optional 
libmissioncontrol-dev_4.23-1_i386.deb

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

iD8DBQFGXodRgTd+SodosdIRAlo5AKCUKX+p9gTV22re86za8kscQikhdwCfbXPv
8Knu5kUQA7wS19Y2kF2rOKQ=
=PPCd
-END PGP SIGNATURE-


Accepted:
libmissioncontrol-dev_4.23-1_i386.deb
  to pool/main/t/telepathy-mission-control/libmissioncontrol-dev_4.23-1_i386.deb
libmissioncontrol-doc_4.23-1_all.deb
  to pool/main/t/telepathy-mission-control/libmissioncontrol-doc_4.23-1_all.deb
libmissioncontrol-server-dev_4.23-1_i386.deb
  to 
pool/main/t/telepathy-mission-control/libmissioncontrol-server-dev_4.23-1_i386.deb
libmissioncontrol-server-doc_4.23-1_all.deb
  to 
pool/main/t/telepathy-mission-control/libmissioncontrol-server-doc_4.23-1_all.deb
libmissioncontrol-server0_4.23-1_i386.deb
  to 
pool/main/t/telepathy-mission-control/libmissioncontrol-server0_4.23-1_i386.deb
libmissioncontrol0_4.23-1_i386.deb
  to pool/main/t/telepathy-mission-control/libmissioncontrol0_4.23-1_i386.deb
telepathy-mission-control_4.23-1.diff.gz
  to 
pool/main/t/telepathy-mission-control/telepathy-mission-control_4.23-1.diff.gz
telepathy-mission-control_4.23-1.dsc
  to pool/main/t/telepathy-mission-control/telepathy-mission-control_4.23-1.dsc
telepathy-mission-control_4.23-1_i386.deb
  to 
pool/main/t/telepathy-mission-control/telepathy-mission-control_4.23-1_i386.deb
telepathy-mission-control_4.23.orig.tar.gz
  to 
pool/main/t/telepathy-mission-control/telepathy-mission-control_4.23.orig.tar.gz


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



Accepted pppoeconf 1.16 (source all)

2007-05-31 Thread evolix
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 02:03:27 +0200
Source: pppoeconf
Binary: pppoeconf
Architecture: source all
Version: 1.16
Distribution: unstable
Urgency: low
Maintainer: Gregory Colpart (evolix) [EMAIL PROTECTED]
Changed-By: Gregory Colpart (evolix) [EMAIL PROTECTED]
Description: 
 pppoeconf  - configures PPPoE/ADSL connections
Closes: 426392 426570 426619
Changes: 
 pppoeconf (1.16) unstable; urgency=low
 .
   * Fix changing usepeerdns enabled-disabled (Closes: #426392)
   * Fix stupid bashism (Closes: #426570)
   * Make uniform treatments of dialog exit status
   * Make uniform grep/sed intructions
   * Add precisions to manpage (Closes: #426619)
Files: 
 9517fe77c0ff1be642e097c092b358d7 557 net optional pppoeconf_1.16.dsc
 126e278eea0e0e9d433c10a50aaf3f20 51366 net optional pppoeconf_1.16.tar.gz
 0c62af8b7a8911124770f354ddd9113f 48906 net optional pppoeconf_1.16_all.deb

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

iD8DBQFGXoorvGr7W6HudhwRAgFqAKCczQrWOH+ZwPrb0seruDAiDm5KpQCgisr2
FQHIi8+ox2OizJWcoUCFErk=
=eY7O
-END PGP SIGNATURE-


Accepted:
pppoeconf_1.16.dsc
  to pool/main/p/pppoeconf/pppoeconf_1.16.dsc
pppoeconf_1.16.tar.gz
  to pool/main/p/pppoeconf/pppoeconf_1.16.tar.gz
pppoeconf_1.16_all.deb
  to pool/main/p/pppoeconf/pppoeconf_1.16_all.deb


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



Accepted htag 0.0.23-2 (source all)

2007-05-31 Thread Jonathan McDowell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 09:22:28 +0100
Source: htag
Binary: htag
Architecture: source all
Version: 0.0.23-2
Distribution: unstable
Urgency: low
Maintainer: Jonathan McDowell [EMAIL PROTECTED]
Changed-By: Jonathan McDowell [EMAIL PROTECTED]
Description: 
 htag   - A tagline/.signature adder for email, news and FidoNet messages
Closes: 395602
Changes: 
 htag (0.0.23-2) unstable; urgency=low
 .
   * Add (no-op) Binary-Arch target. (closes: #395602)
   * Move debhelper dependency to Build-Depends instead of Build-Depends-Indep.
   * Move to debhelper compatibility level 5.
   * Change to dh_installman rather than dh_installmanpages.
   * Remove trailing . from Description.
   * Updated to Standards-Version 3.7.2.2 (no changes other than the above).
Files: 
 4274edbe5f51a2c908d6aa516fed7028 572 mail optional htag_0.0.23-2.dsc
 b293ed7b531e13ba4cdfc4aca393547a 1820 mail optional htag_0.0.23-2.diff.gz
 1a1e86a019fb68851175fcccb9920672 32168 mail optional htag_0.0.23-2_all.deb

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

iD8DBQFGXoeh8b1L5FtDA2cRAvQOAJ9xJ6RrZ9FRwLQxCwmUHRyMzYVDJwCfSSuq
TEf4thwF9dvYbZie0tzuk3M=
=M0yB
-END PGP SIGNATURE-


Accepted:
htag_0.0.23-2.diff.gz
  to pool/main/h/htag/htag_0.0.23-2.diff.gz
htag_0.0.23-2.dsc
  to pool/main/h/htag/htag_0.0.23-2.dsc
htag_0.0.23-2_all.deb
  to pool/main/h/htag/htag_0.0.23-2_all.deb


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



Accepted spl 1.0~pre3-2 (source powerpc)

2007-05-31 Thread Gerfried Fuchs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 10:39:13 +0200
Source: spl
Binary: spl-kde spl-curl spl-sdl spl-webspl spl-mysql spl-core spl-sqlite 
spl-opengl spl-postgres spl-xml spl-dev
Architecture: source powerpc
Version: 1.0~pre3-2
Distribution: unstable
Urgency: low
Maintainer: Gerfried Fuchs [EMAIL PROTECTED]
Changed-By: Gerfried Fuchs [EMAIL PROTECTED]
Description: 
 spl-core   - SPL Programming Language
 spl-curl   - SPL Programming Language -- curl adapter
 spl-dev- SPL Programming Language -- development files
 spl-kde- SPL Programming Language -- KDE adapter
 spl-mysql  - SPL Programming Language -- mysql adapter
 spl-opengl - SPL Programming Language -- OpenGL adapter
 spl-postgres - SPL Programming Language -- postgres adapter
 spl-sdl- SPL Programming Language -- SDL adapter
 spl-sqlite - SPL Programming Language -- sqlite adapter
 spl-webspl - SPL based web application framework
 spl-xml- SPL Programming Language -- XML adapter
Closes: 423860
Changes: 
 spl (1.0~pre3-2) unstable; urgency=low
 .
   * Pulled r975 from upstream svn: Tiny hotfix for new CURL version
 (closes: #423860)
   * Added libpcre3-dev and libreadline5-dev to the Dependency of spl-dev.
 Most propably quite some others are missing too, though those are the
 ones qcake complains about.
Files: 
 ea4583664e0b41fcaf42b0d529a097f1 888 devel optional spl_1.0~pre3-2.dsc
 c9fd0db230cddb4cd847756302cc4267 5415 devel optional spl_1.0~pre3-2.diff.gz
 0fb0528c049334a519f69d05cba5e89d 192448 devel optional 
spl-core_1.0~pre3-2_powerpc.deb
 3e7790af41cf2bf0c3844aca3125b182 5784 devel optional 
spl-postgres_1.0~pre3-2_powerpc.deb
 86ae9d1002d67ea4fbca95f3b4561c0c 6616 devel optional 
spl-mysql_1.0~pre3-2_powerpc.deb
 09eee6e58f3f9bc94a7aafe002692f7c 5802 devel optional 
spl-sqlite_1.0~pre3-2_powerpc.deb
 eb1a72cb262e6188e9e0ebb56faa10e2 25966 kde optional 
spl-kde_1.0~pre3-2_powerpc.deb
 7c6ae32c5026f3f43936d9e76705cafd 10510 devel optional 
spl-sdl_1.0~pre3-2_powerpc.deb
 66c548c143d32236d04f620f03d77f3f 33352 devel optional 
spl-opengl_1.0~pre3-2_powerpc.deb
 61c3fe2263194b566308a43dbb1cd417 11160 devel optional 
spl-xml_1.0~pre3-2_powerpc.deb
 e94f07669c037949c2e8a82ce5ba85ed 7400 net optional 
spl-curl_1.0~pre3-2_powerpc.deb
 0167d73528e4100f8492d6db4ddfef6e 224028 web optional 
spl-webspl_1.0~pre3-2_powerpc.deb
 19d2604d796a4db4fe95f7bcd387d71b 111208 devel optional 
spl-dev_1.0~pre3-2_powerpc.deb

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

iD8DBQFGXo/dELuA/Ba9d8YRAiKwAKCxiirJ+Z8YW5dKO2hHFKiGN0xLNgCgmAT5
/LIAevJiUmE24phyoGvrkrA=
=RLFF
-END PGP SIGNATURE-


Accepted:
spl-core_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-core_1.0~pre3-2_powerpc.deb
spl-curl_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-curl_1.0~pre3-2_powerpc.deb
spl-dev_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-dev_1.0~pre3-2_powerpc.deb
spl-kde_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-kde_1.0~pre3-2_powerpc.deb
spl-mysql_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-mysql_1.0~pre3-2_powerpc.deb
spl-opengl_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-opengl_1.0~pre3-2_powerpc.deb
spl-postgres_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-postgres_1.0~pre3-2_powerpc.deb
spl-sdl_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-sdl_1.0~pre3-2_powerpc.deb
spl-sqlite_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-sqlite_1.0~pre3-2_powerpc.deb
spl-webspl_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-webspl_1.0~pre3-2_powerpc.deb
spl-xml_1.0~pre3-2_powerpc.deb
  to pool/main/s/spl/spl-xml_1.0~pre3-2_powerpc.deb
spl_1.0~pre3-2.diff.gz
  to pool/main/s/spl/spl_1.0~pre3-2.diff.gz
spl_1.0~pre3-2.dsc
  to pool/main/s/spl/spl_1.0~pre3-2.dsc


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



Accepted photoprint 0.3.5-3 (source amd64)

2007-05-31 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 10:52:58 +0200
Source: photoprint
Binary: photoprint
Architecture: source amd64
Version: 0.3.5-3
Distribution: unstable
Urgency: low
Maintainer: Milan Zamazal [EMAIL PROTECTED]
Changed-By: Milan Zamazal [EMAIL PROTECTED]
Description: 
 photoprint - Image printing utility
Closes: 417478
Changes: 
 photoprint (0.3.5-3) unstable; urgency=low
 .
   * Required gcc 4.3 includes added; closes: #417478.
Files: 
 97fc8404076f482f122dfc1c0d47e7e8 683 graphics optional photoprint_0.3.5-3.dsc
 308f91062438bfb5fa731281acfc66a9 141373 graphics optional 
photoprint_0.3.5-3.diff.gz
 0fcd6f81fd0eaba765266d68498b7de4 427234 graphics optional 
photoprint_0.3.5-3_amd64.deb

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

iD8DBQFGXpF+kSkk/j3Cm0ERAou7AKChMG4O4Gwu8YU/Poun+WEC47gg2ACgkwIe
TiGt9Dg86qxQGnaoCQGMSGA=
=bsAD
-END PGP SIGNATURE-


Accepted:
photoprint_0.3.5-3.diff.gz
  to pool/main/p/photoprint/photoprint_0.3.5-3.diff.gz
photoprint_0.3.5-3.dsc
  to pool/main/p/photoprint/photoprint_0.3.5-3.dsc
photoprint_0.3.5-3_amd64.deb
  to pool/main/p/photoprint/photoprint_0.3.5-3_amd64.deb


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



Accepted heartbeat 2.0.8-8 (source all i386)

2007-05-31 Thread Simon Horman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 18:26:10 +0900
Source: heartbeat
Binary: libstonith0 heartbeat libpils0 stonith heartbeat-2 heartbeat-dev 
libstonith-dev ldirectord libpils-dev ldirectord-2 heartbeat-2-dev 
heartbeat-gui heartbeat-2-gui
Architecture: source all i386
Version: 2.0.8-8
Distribution: unstable
Urgency: low
Maintainer: Simon Horman [EMAIL PROTECTED]
Changed-By: Simon Horman [EMAIL PROTECTED]
Description: 
 heartbeat  - Subsystem for High-Availability Linux
 heartbeat-2 - Subsystem for High-Availability Linux
 heartbeat-2-dev - Subsystem for High-Availability Linux - development files
 heartbeat-2-gui - Provides a gui interface to manage heartbeat clusters
 heartbeat-dev - Subsystem for High-Availability Linux - development files
 heartbeat-gui - Provides a gui interface to manage heartbeat clusters
 ldirectord - Monitors virtual services provided by LVS
 ldirectord-2 - Monitors virtual services provided by LVS
 libpils-dev - Plugin and Interface Loading System - development files
 libpils0   - Plugin and Interface Loading System
 libstonith-dev - Interface for remotely powering down a node in the cluster
 libstonith0 - Interface for remotely powering down a node in the cluster
 stonith- Interface for remotely powering down a node in the cluster
Changes: 
 heartbeat (2.0.8-8) unstable; urgency=low
 .
   * Use sys/types.h instead of asm/types.h when trying to detect
 the preseance of linux/icmpv6.h. Resolves FTBFS on ia64
 Patch: configure-sys-types.h.patch
   * Remove linux-kernel-headers for ia64 added in 2.0.8-7 as
 a) it didn't resolve the problem and b) the types.h change
 above does.
   * Use  instead of  for dependancy relations
   * Add --enable-glib-malloc to configure's arguments
 on advice from Andrew Beekhof
Files: 
 2483fd1203ffd18c844e8b328e95c19f 1186 admin optional heartbeat_2.0.8-8.dsc
 9f2421875d55bd85174f6d2a31d5a51c 177883 admin optional 
heartbeat_2.0.8-8.diff.gz
 aa7933e0b8f092a1a1fcf10b8e1bcbf6 59348 admin extra ldirectord_2.0.8-8_all.deb
 ac8d438fc62ae2fdc7a4a92b0abc2342 15764 admin optional 
ldirectord-2_2.0.8-8_all.deb
 418680c29b20c505a51051b62723d906 15754 admin optional 
heartbeat-2_2.0.8-8_all.deb
 35d24309f30e686df5ca48f30d1009f6 15782 admin optional 
heartbeat-2-dev_2.0.8-8_all.deb
 b3f82cee3d6a93c644647e74d0df8dab 15782 admin optional 
libstonith-dev_2.0.8-8_all.deb
 da8f03b1638abced545026f20d1bfefb 15778 admin optional 
libpils-dev_2.0.8-8_all.deb
 1ca323d16c19b1e2cceb7653978ce895 1394562 admin optional 
heartbeat_2.0.8-8_i386.deb
 0a292d9fa348f31e63fdf0263a201494 488690 devel optional 
heartbeat-dev_2.0.8-8_i386.deb
 3a3157a33886878444177e846ff4c552 97898 admin optional 
heartbeat-gui_2.0.8-8_i386.deb
 5b68a591e7fc768e66e71938560d79ad 39252 admin optional 
heartbeat-2-gui_2.0.8-8_i386.deb
 67ec36d7d1c2f423834010a034592ac6 39250 libs optional stonith_2.0.8-8_i386.deb
 f5916ffabbab47f5b3e90911e917ef9e 39258 libs optional 
libstonith0_2.0.8-8_i386.deb
 e9198fa276bf464d02bfd901e2242287 39236 libs optional libpils0_2.0.8-8_i386.deb

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

iD8DBQFGXp42A8ACPgVBDpcRAuz2AKCOQXXVOkV3bkihSqG4U1uGhRi6eQCfSeBf
wHYq51RZiK2PO8XicLANF9I=
=NQvJ
-END PGP SIGNATURE-


Accepted:
heartbeat-2-dev_2.0.8-8_all.deb
  to pool/main/h/heartbeat/heartbeat-2-dev_2.0.8-8_all.deb
heartbeat-2-gui_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/heartbeat-2-gui_2.0.8-8_i386.deb
heartbeat-2_2.0.8-8_all.deb
  to pool/main/h/heartbeat/heartbeat-2_2.0.8-8_all.deb
heartbeat-dev_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/heartbeat-dev_2.0.8-8_i386.deb
heartbeat-gui_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/heartbeat-gui_2.0.8-8_i386.deb
heartbeat_2.0.8-8.diff.gz
  to pool/main/h/heartbeat/heartbeat_2.0.8-8.diff.gz
heartbeat_2.0.8-8.dsc
  to pool/main/h/heartbeat/heartbeat_2.0.8-8.dsc
heartbeat_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/heartbeat_2.0.8-8_i386.deb
ldirectord-2_2.0.8-8_all.deb
  to pool/main/h/heartbeat/ldirectord-2_2.0.8-8_all.deb
ldirectord_2.0.8-8_all.deb
  to pool/main/h/heartbeat/ldirectord_2.0.8-8_all.deb
libpils-dev_2.0.8-8_all.deb
  to pool/main/h/heartbeat/libpils-dev_2.0.8-8_all.deb
libpils0_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/libpils0_2.0.8-8_i386.deb
libstonith-dev_2.0.8-8_all.deb
  to pool/main/h/heartbeat/libstonith-dev_2.0.8-8_all.deb
libstonith0_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/libstonith0_2.0.8-8_i386.deb
stonith_2.0.8-8_i386.deb
  to pool/main/h/heartbeat/stonith_2.0.8-8_i386.deb


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



Accepted pitivi 0.10.3-1 (source all)

2007-05-31 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:04:44 +0200
Source: pitivi
Binary: pitivi
Architecture: source all
Version: 0.10.3-1
Distribution: unstable
Urgency: low
Maintainer: Loic Minier [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 pitivi - non-linear audio/video editor using GStreamer
Changes: 
 pitivi (0.10.3-1) unstable; urgency=low
 .
   * New upstream stable release.
Files: 
 448d0c27dac1667863d0f593de8c4de7 679 gnome optional pitivi_0.10.3-1.dsc
 525332cedeecafa36ed7efb8992f9b64 396223 gnome optional 
pitivi_0.10.3.orig.tar.gz
 93e9ec2cc7bd01780577e0af84218fb2 3398 gnome optional pitivi_0.10.3-1.diff.gz
 533eacf5e9e4e9c99298d7d1887582c0 171586 gnome optional pitivi_0.10.3-1_all.deb

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

iD8DBQFGXp404VUX8isJIMARAiOzAJ9zK2hu+qa7fz+gd2q4V7UQ/9NNgwCgjmaG
60gCHhBgK9DHvrN7GiWcI0Q=
=qYVi
-END PGP SIGNATURE-


Accepted:
pitivi_0.10.3-1.diff.gz
  to pool/main/p/pitivi/pitivi_0.10.3-1.diff.gz
pitivi_0.10.3-1.dsc
  to pool/main/p/pitivi/pitivi_0.10.3-1.dsc
pitivi_0.10.3-1_all.deb
  to pool/main/p/pitivi/pitivi_0.10.3-1_all.deb
pitivi_0.10.3.orig.tar.gz
  to pool/main/p/pitivi/pitivi_0.10.3.orig.tar.gz


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



Accepted reportbug-ng 0.2007.05.31 (source i386)

2007-05-31 Thread Bastian Venthur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 11:51:19 +0200
Source: reportbug-ng
Binary: reportbug-ng
Architecture: source i386
Version: 0.2007.05.31
Distribution: unstable
Urgency: low
Maintainer: Bastian Venthur [EMAIL PROTECTED]
Changed-By: Bastian Venthur [EMAIL PROTECTED]
Description: 
 reportbug-ng - An easy to use alternative to Debian's classic reportbug
Closes: 426436
Changes: 
 reportbug-ng (0.2007.05.31) unstable; urgency=low
 .
   * Added Spanish translation (Closes: #426436), thanks Javier
 Fernandez-Sanguino!
Files: 
 db369a591c2b57fdb3d69c0fd91d323d 628 utils extra reportbug-ng_0.2007.05.31.dsc
 48a3a9bbaa66d45f3e0772752d514913 40894 utils extra 
reportbug-ng_0.2007.05.31.tar.gz
 d32b2c35efe33c3293341b6014aa7d37 32056 utils extra 
reportbug-ng_0.2007.05.31_i386.deb

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

iD8DBQFGXpyBmj66P/Yfc/gRAvQCAJ47ffXQolNll8Fht+OI03Q6aAUVSwCfXj/i
oIc5wXABDlOZLc7DVSXwlc4=
=bUs0
-END PGP SIGNATURE-


Accepted:
reportbug-ng_0.2007.05.31.dsc
  to pool/main/r/reportbug-ng/reportbug-ng_0.2007.05.31.dsc
reportbug-ng_0.2007.05.31.tar.gz
  to pool/main/r/reportbug-ng/reportbug-ng_0.2007.05.31.tar.gz
reportbug-ng_0.2007.05.31_i386.deb
  to pool/main/r/reportbug-ng/reportbug-ng_0.2007.05.31_i386.deb


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



Accepted divxcomp 0.1-4 (source all)

2007-05-31 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:17:11 +0200
Source: divxcomp
Binary: divxcomp
Architecture: source all
Version: 0.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 divxcomp   - bitrate calculator for DivX;-) movies written in perl
Changes: 
 divxcomp (0.1-4) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to QA Group; Orphaned: #424713
   * Conforms with latest Standards Version 3.7.2
Files: 
 7b1d4bbf8d290322e5e35d8be88e463e 564 utils optional divxcomp_0.1-4.dsc
 5a8fb308e7770254a69cc97fa9d68374 2466 utils optional divxcomp_0.1-4.diff.gz
 9928b9842263fa44f62ec451b611c6e8 4456 utils optional divxcomp_0.1-4_all.deb

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

iD8DBQFGXqEqEFV7g4B8rCURAkYDAKDyxSzWykNVwAWexfcQ0KR9sIOQwQCfXq6O
dUY0HmJDkybSiU4Qpgh0qTw=
=+vpw
-END PGP SIGNATURE-


Accepted:
divxcomp_0.1-4.diff.gz
  to pool/main/d/divxcomp/divxcomp_0.1-4.diff.gz
divxcomp_0.1-4.dsc
  to pool/main/d/divxcomp/divxcomp_0.1-4.dsc
divxcomp_0.1-4_all.deb
  to pool/main/d/divxcomp/divxcomp_0.1-4_all.deb


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



Accepted medussa 0.8-5 (source amd64)

2007-05-31 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:21:08 +0200
Source: medussa
Binary: medussa
Architecture: source amd64
Version: 0.8-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 medussa- Distributed password cracking system
Changes: 
 medussa (0.8-5) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to QA Group; Orphaned: #424716
   * Conforms with latest Standards Version 3.7.2
Files: 
 439f704f0e35c62c90ab8bd5986bedd0 637 admin optional medussa_0.8-5.dsc
 1acf511d8315b2f00fdd5a4c97a0b423 27699 admin optional medussa_0.8-5.diff.gz
 714d319b8ee727440385954c6fc55da4 144842 admin optional medussa_0.8-5_amd64.deb

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

iD8DBQFGXqHTEFV7g4B8rCURAsGfAKDYJ40nB9XJ1PfCsxGJ1N3a3IdKpwCfZnT8
nukAyPkPtPTl3BAClEskAxk=
=uRI9
-END PGP SIGNATURE-


Accepted:
medussa_0.8-5.diff.gz
  to pool/main/m/medussa/medussa_0.8-5.diff.gz
medussa_0.8-5.dsc
  to pool/main/m/medussa/medussa_0.8-5.dsc
medussa_0.8-5_amd64.deb
  to pool/main/m/medussa/medussa_0.8-5_amd64.deb


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



Accepted pic2fig 1.4-3 (source amd64)

2007-05-31 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:13:23 +0200
Source: pic2fig
Binary: pic2fig
Architecture: source amd64
Version: 1.4-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 pic2fig- convert PIC drawings to FIG drawings
Changes: 
 pic2fig (1.4-3) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to QA Group; Orphaned: #354627
   * Conforms with latest Standards Version 3.7.2
Files: 
 225993653265570b182a096a8323b718 567 graphics optional pic2fig_1.4-3.dsc
 7b7190a541a41875cc38aca1ba86111e 2820 graphics optional pic2fig_1.4-3.diff.gz
 bf29f7d648be969ca8bc7d7d347c0d1c 49580 graphics optional 
pic2fig_1.4-3_amd64.deb

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

iD8DBQFGXqBBEFV7g4B8rCURAvEYAJ9OL6MLbC+vpiOIpBTKr9T7RVKdMwCdGY14
yHusWuTY42EK2H0MlUbZBfQ=
=GAai
-END PGP SIGNATURE-


Accepted:
pic2fig_1.4-3.diff.gz
  to pool/main/p/pic2fig/pic2fig_1.4-3.diff.gz
pic2fig_1.4-3.dsc
  to pool/main/p/pic2fig/pic2fig_1.4-3.dsc
pic2fig_1.4-3_amd64.deb
  to pool/main/p/pic2fig/pic2fig_1.4-3_amd64.deb


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



Accepted outguess 1:0.2-6 (source amd64)

2007-05-31 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:28:56 +0200
Source: outguess
Binary: outguess
Architecture: source amd64
Version: 1:0.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 outguess   - Universal Steganographic tool
Changes: 
 outguess (1:0.2-6) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to QA Group; Orphaned: #424718
   * Bump compat level to 4, B-D on at least DH 4.0.0,
 update debian/rules, stop using dh_installmanpages
   * fix debian/copyright
   * Conforms with latest Standards Version 3.7.2
Files: 
 3863f6ee6c9b7ad15b2f61dee01f 568 utils optional outguess_0.2-6.dsc
 e18c291d98ca03098d2f6672b89e6243 3558 utils optional outguess_0.2-6.diff.gz
 0aca2bf64ca26c48332d3c0bdb68511a 105320 utils optional outguess_0.2-6_amd64.deb

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

iD8DBQFGXqVhEFV7g4B8rCURAjIzAKDA5j0TdEOeKughdsoCmdcD8p9jqACgiKrR
zAjP1urOZNi17fc9Uxt5EMM=
=Ys82
-END PGP SIGNATURE-


Accepted:
outguess_0.2-6.diff.gz
  to pool/main/o/outguess/outguess_0.2-6.diff.gz
outguess_0.2-6.dsc
  to pool/main/o/outguess/outguess_0.2-6.dsc
outguess_0.2-6_amd64.deb
  to pool/main/o/outguess/outguess_0.2-6_amd64.deb


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



Accepted xfonts-encodings 1:1.0.2-1 (source all)

2007-05-31 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 14:03:17 +0200
Source: xfonts-encodings
Binary: xfonts-encodings
Architecture: source all
Version: 1:1.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 xfonts-encodings - Encodings for X.Org fonts
Closes: 424114
Changes: 
 xfonts-encodings (1:1.0.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Add watch file.
   * Use AM_MAINTAINER_MODE (closes: #424114).
   * Don't list all files in debian/xfonts-encodings.install, since we install
 everything in usr/share/fonts/X11/encodings.
Files: 
 23011841db348b90cd925001884a7bcc 800 x11 optional xfonts-encodings_1.0.2-1.dsc
 057d393806a473416f03aac2230e73d9 687696 x11 optional 
xfonts-encodings_1.0.2.orig.tar.gz
 e803c55d654263947c72266aa8143b58 28675 x11 optional 
xfonts-encodings_1.0.2-1.diff.gz
 d2e5f5eeb1eac4403b03b24b71b25db8 584092 x11 optional 
xfonts-encodings_1.0.2-1_all.deb

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

iD8DBQFGXrq8mEvTgKxfcAwRAgOCAJ9boA0vRYo55LWBQ3NB6moBbJnN1wCdGydi
bbEO572eEkOHCwsehyAGHaI=
=QjzN
-END PGP SIGNATURE-


Accepted:
xfonts-encodings_1.0.2-1.diff.gz
  to pool/main/x/xfonts-encodings/xfonts-encodings_1.0.2-1.diff.gz
xfonts-encodings_1.0.2-1.dsc
  to pool/main/x/xfonts-encodings/xfonts-encodings_1.0.2-1.dsc
xfonts-encodings_1.0.2-1_all.deb
  to pool/main/x/xfonts-encodings/xfonts-encodings_1.0.2-1_all.deb
xfonts-encodings_1.0.2.orig.tar.gz
  to pool/main/x/xfonts-encodings/xfonts-encodings_1.0.2.orig.tar.gz


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



Accepted xine-lib 1.1.6-2 (source all i386)

2007-05-31 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 10:47:34 +0200
Source: xine-lib
Binary: libxine1-gnome libxine1-console libxine-dev libxine1-kde libxine1 
libxine1-dbg libxine1-plugins libxine1-ffmpeg
Architecture: all i386 source 
Version: 1.1.6-2
Distribution: unstable
Urgency: low
Maintainer: Reinhard Tartler [EMAIL PROTECTED]
Changed-By: Reinhard Tartler [EMAIL PROTECTED]
Description: 
 libxine-dev - the xine video player library, development packages
 libxine1   - the xine video/media player library, binary files
 libxine1-console - libaa/libcaca/directfb related plugins for libxine1
 libxine1-dbg - debug symbols for libxine1
 libxine1-ffmpeg - mpeg related plugins for libxine1
 libxine1-gnome - GNOME related plugins for libxine1
 libxine1-kde - KDE related plugins for libxine1
 libxine1-plugins - the xine video/media player library, meta package
Closes: 319805 319805 325489 325489 339523 392619 396161 400274 400274 410426 
410538
Changes: 
 xine-lib (1.1.6-2) unstable; urgency=low
 .
   * upload to unstable since we finally have now all needed dependencies
 available.
   * restore a lot of the lost changelogs from
 http://changelog.debian.net/xine-lib
 .
 xine-lib (1.1.6-1) experimental; urgency=low
 .
   [ Reinhard Tartler]
   * add libxcb-xv0-dev, libxcb-shm0-dev, libxcb-shape0-dev to build
 dependencies and enable xcb support
   * make libxine1 an arch: all package, no architecture dependent part
 inside there.
   * make xine-lib binNMU safe
   * fetch po/de.po from upstream hg repo, which was updated shortly after
 the 1.1.6 release
   * Darren added himself as comaintainer
 .
   [ Darren Salt]
   * New upstream release.
 - Patches dropped, since they all came from upstream.
 - More debug compilation failures fixed. (Closes: #339523)
   * Patches imported from upstream since 1.1.6 release:
 - limit common-case buffer copying optimisation to i386  amd64
 .
 xine-lib (1.1.5-2) experimental; urgency=low
 .
   * add libjack0.100.0-dev to build depends, fixes FTBFS
 .
 xine-lib (1.1.5-1) experimental; urgency=low
 .
   * new upstream release!
   * whitespace-cleanup in debian/control
   * Builds again on sparc (Closes: #410538)
   * build again against externel ffmpeg found in experimental
   * cleanup/clarify the package descriptions, mentioning the included plugins
 (Closes: #410426)
   * remove xineplug_decode_real_audio.so from debian/libxine1.install;
 it has been dropped upstream.
   * add libdirectfb-dev to build depends, enabling directfb support
   * use external musepack libs
   * import manpage fix from upstream
   * add XS-Vcs headers pointing to alioth
 .
   [Darren Salt]
   * Enabled the gdkpixbuf plugin.
   * Split up the DirectFB code, building separate plugins for X11 and
 console. (Applied upstream.)
   * Added a note about the packaging repository to README.Debian.
 .
 xine-lib (1.1.4-2) experimental; urgency=low
 .
   * merge changes from ubuntu
   * make build deps multiline
 .
 xine-lib (1.1.4-1ubuntu2) feisty; urgency=low
 .
   * install shlibs.local file to tighten dependency on libxine1
   * add build dependency on libmagick9-dev to build to
 dmx_image and decoder_image plugin. Also add them to libxine1.install
   * install the xine(5) manpage to package libxine1
   * Bumb shlibs file (forgotten in 1.1.4-1)
 .
 xine-lib (1.1.4-1ubuntu1) feisty; urgency=low
 .
   * merge new upstream release from debian
 .
 xine-lib (1.1.4-1) experimental; urgency=low
 .
   * New upstream release!
   * Tons of bugfixes, see /usr/share/doc/libxine1/changelog.gz
   * Now playes sound in *.flv files (Closes: #396161)
   * use internal ffmpeg copy for now, since debian's copy is too old :(
 Will reenable building against debian's ffmpeg ASAP.
   * add libpulse-dev to build depends, enable pulseaudio support
 .
 xine-lib (1.1.3-1ubuntu2) feisty; urgency=low
 .
   * debian/control: Add libpulse-dev to build dependencies to enable
 PulseAudio output support.
   * debian/libxine1.install: Add xineplug_ao_out_pulseaudio.so to
 list of installed plugins.
 .
 xine-lib (1.1.3-1ubuntu1) feisty; urgency=low
 .
   * Introduce new package libxine-extracodecs to faciliate upgrades
   * merge from 1.1.3 branch for debian/experimental.
   * additional patch: fix ftbfs on kFreeBSD
 .
   * ubuntu specific changes:
 .
 - libxine-main1 and libxine1-ffmpeg dummy package for upgrades from
   dapper. Keep this package until (and including) the next LTS
   release of ubuntu!
 .
 xine-lib (1.1.3-1) experimental; urgency=low
 .
 * New upstream fixes: support for xvid files, thanks to
   \[ATR\]Dj-Death (Closes: #319805).
 * New upstream fixes: libxine1: Jack output plugin missing, thanks to 
Tanu
   Kaskinen (Closes: #392619).
 * plays vorbis files again (Closes: #400274)
 * Introduce new packages: libxine1-ffmpeg and libxine1-gnome to tighten
   dependencies.
   - splitting out 

Accepted sitesummary 0.0.26 (source all)

2007-05-31 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 15:56:16 +0200
Source: sitesummary
Binary: sitesummary sitesummary-client
Architecture: source all
Version: 0.0.26
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 sitesummary - Generate site summary of submitting hosts (server part)
 sitesummary-client - Generate site summary of submitting hosts (client part)
Changes: 
 sitesummary (0.0.26) unstable; urgency=low
 .
   * Add code in the server cronjob to generate a replacement
 munin.conf, and make it possible to activate it in munin by
 setting MUNINDIR=/etc/munin/ in collector.cfg.
   * Add preseedable hidden boolean debconf question
 sitesummary/replace-munin-config to make it possible to enable
 this feature at install time.
   * Update the postinst script to make sure the install time code is
 only executed during configure.
Files: 
 360f79d50b827a8f7aaa7886380900a6 701 misc optional sitesummary_0.0.26.dsc
 2a454a2f9385bb5e24bc727f8327d2c1 26263 misc optional sitesummary_0.0.26.tar.gz
 294507760c2aab68746ac18c134df192 13612 misc optional sitesummary_0.0.26_all.deb
 6b67e9787747997ef20c81df03b6591d 13560 misc optional 
sitesummary-client_0.0.26_all.deb

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

iD8DBQFGXtQ220zMSyow1ykRAgZTAKCyumx3bExhvuLA2NylWSrGGnnAHACeMcbr
J5tMyx17GrWABF2frnZsihc=
=Y1CO
-END PGP SIGNATURE-


Accepted:
sitesummary-client_0.0.26_all.deb
  to pool/main/s/sitesummary/sitesummary-client_0.0.26_all.deb
sitesummary_0.0.26.dsc
  to pool/main/s/sitesummary/sitesummary_0.0.26.dsc
sitesummary_0.0.26.tar.gz
  to pool/main/s/sitesummary/sitesummary_0.0.26.tar.gz
sitesummary_0.0.26_all.deb
  to pool/main/s/sitesummary/sitesummary_0.0.26_all.deb


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



Accepted libhttp-dav-perl 0.31-5 (source all)

2007-05-31 Thread Steinar H. Gunderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 15:54:41 +0200
Source: libhttp-dav-perl
Binary: libhttp-dav-perl
Architecture: source all
Version: 0.31-5
Distribution: unstable
Urgency: low
Maintainer: Steinar H. Gunderson [EMAIL PROTECTED]
Changed-By: Steinar H. Gunderson [EMAIL PROTECTED]
Description: 
 libhttp-dav-perl - WebDAV client library for Perl, and dave CLI client
Changes: 
 libhttp-dav-perl (0.31-5) unstable; urgency=low
 .
   * Use CURDIR instead of PWD in debian/rules; fixes lintian warning and
 possible FTBFS with sudo.
   * Update Standards-Version to 3.7.2; no changes needed.
Files: 
 efed493987ee6311a09446bfee7bca48 649 web optional libhttp-dav-perl_0.31-5.dsc
 f7cb4670167776abfd7264901777fc84 2422 web optional 
libhttp-dav-perl_0.31-5.diff.gz
 6758e9a3559e66d1713c015bfec058bf 94874 web optional 
libhttp-dav-perl_0.31-5_all.deb

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

iD8DBQFGXtQZXKRQ3lK3SH4RAmJmAJ4gxXQEmnhzkFxGJeVYPMa2BI7TlwCdFE2M
0y3mB9z8Kwm8uUnymIlm4vw=
=Y4Lb
-END PGP SIGNATURE-


Accepted:
libhttp-dav-perl_0.31-5.diff.gz
  to pool/main/libh/libhttp-dav-perl/libhttp-dav-perl_0.31-5.diff.gz
libhttp-dav-perl_0.31-5.dsc
  to pool/main/libh/libhttp-dav-perl/libhttp-dav-perl_0.31-5.dsc
libhttp-dav-perl_0.31-5_all.deb
  to pool/main/libh/libhttp-dav-perl/libhttp-dav-perl_0.31-5_all.deb


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



Accepted phpmyadmin 4:2.10.1-3 (source all)

2007-05-31 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 12:32:38 +0200
Source: phpmyadmin
Binary: phpmyadmin
Architecture: source all
Version: 4:2.10.1-3
Distribution: unstable
Urgency: low
Maintainer: Thijs Kinkhorst [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 phpmyadmin - Administrate MySQL over the WWW
Closes: 423954 425164 426786
Changes: 
 phpmyadmin (4:2.10.1-3) unstable; urgency=low
 .
   [ Thijs Kinkhorst ]
   * php5-mcrypt is now a dependency on 64 bit platforms. Move it from
 Recommends to Depends because it's not possible to specify per-arch
 dependencies, and it's also very useful to have on 32 bit platforms
 because of the speed increase (Closes: #425164).
 .
   [ Translations ]
   * French by Chrisian Perrier (Closes: #423954).
   * Danish by Claus Hindsgaul (Closes: #426786).
Files: 
 157341239cd72a3a94c0014f0be4aff6 732 web extra phpmyadmin_2.10.1-3.dsc
 bcafa18e1cd094f5e220406e1efb88c4 30869 web extra phpmyadmin_2.10.1-3.diff.gz
 2fd5deace8b900ef73632f567824af1b 2771980 web extra phpmyadmin_2.10.1-3_all.deb

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

iD8DBQFGXtcrJdKMxZV9WM8RAs6PAKDCAXSfrN98R6cgSobzktKx0UjFNQCglIC+
6grdSSQGF+K+R3DSxo+wibg=
=C60K
-END PGP SIGNATURE-


Accepted:
phpmyadmin_2.10.1-3.diff.gz
  to pool/main/p/phpmyadmin/phpmyadmin_2.10.1-3.diff.gz
phpmyadmin_2.10.1-3.dsc
  to pool/main/p/phpmyadmin/phpmyadmin_2.10.1-3.dsc
phpmyadmin_2.10.1-3_all.deb
  to pool/main/p/phpmyadmin/phpmyadmin_2.10.1-3_all.deb


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



Accepted heartbeat 2.0.8-9 (source all i386)

2007-05-31 Thread Simon Horman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 19:37:43 +0900
Source: heartbeat
Binary: libstonith0 heartbeat libpils0 stonith heartbeat-2 heartbeat-dev 
libstonith-dev ldirectord libpils-dev ldirectord-2 heartbeat-2-dev 
heartbeat-gui heartbeat-2-gui
Architecture: source all i386
Version: 2.0.8-9
Distribution: unstable
Urgency: low
Maintainer: Simon Horman [EMAIL PROTECTED]
Changed-By: Simon Horman [EMAIL PROTECTED]
Description: 
 heartbeat  - Subsystem for High-Availability Linux
 heartbeat-2 - Subsystem for High-Availability Linux
 heartbeat-2-dev - Subsystem for High-Availability Linux - development files
 heartbeat-2-gui - Provides a gui interface to manage heartbeat clusters
 heartbeat-dev - Subsystem for High-Availability Linux - development files
 heartbeat-gui - Provides a gui interface to manage heartbeat clusters
 ldirectord - Monitors virtual services provided by LVS
 ldirectord-2 - Monitors virtual services provided by LVS
 libpils-dev - Plugin and Interface Loading System - development files
 libpils0   - Plugin and Interface Loading System
 libstonith-dev - Interface for remotely powering down a node in the cluster
 libstonith0 - Interface for remotely powering down a node in the cluster
 stonith- Interface for remotely powering down a node in the cluster
Changes: 
 heartbeat (2.0.8-9) unstable; urgency=low
 .
   * Run autoconf so that the FTBFS on ia64 fix included in
 2.0.8-8 actually takes effect. Bahh!
Files: 
 6963cdba0357d0d9f8a9049bbc9d8723 1186 admin optional heartbeat_2.0.8-9.dsc
 ee7a2db49bd96ce968b3c21e28b0a563 177983 admin optional 
heartbeat_2.0.8-9.diff.gz
 354310ed256aec213219a84bdb21fc4b 59394 admin extra ldirectord_2.0.8-9_all.deb
 2f47d01b76312b4f0f40ea27e2a0c59f 15812 admin optional 
ldirectord-2_2.0.8-9_all.deb
 117ce593bc1daec69c9f94bf37ccdab2 15810 admin optional 
heartbeat-2_2.0.8-9_all.deb
 bbe04dd5397e5cbc0d259402a456a3aa 15832 admin optional 
heartbeat-2-dev_2.0.8-9_all.deb
 ead6ea6fe85e471037793520c4f78718 15834 admin optional 
libstonith-dev_2.0.8-9_all.deb
 3bb5d12efbbeaf3adc048c624e520e38 15828 admin optional 
libpils-dev_2.0.8-9_all.deb
 bb2fd7cc3b2e0a578d62f3a803dd235c 1394516 admin optional 
heartbeat_2.0.8-9_i386.deb
 cbfe0fcf8b320c4b88b321d1425932e3 488742 devel optional 
heartbeat-dev_2.0.8-9_i386.deb
 d3a20347239fa905c4efbe97da9b42b5 97938 admin optional 
heartbeat-gui_2.0.8-9_i386.deb
 88a4dff26575c60f6f7848d867c5 39290 admin optional 
heartbeat-2-gui_2.0.8-9_i386.deb
 9be24dba29d6cbf27ab4da866f3e7302 39286 libs optional stonith_2.0.8-9_i386.deb
 5a6b35e82ae09b4ab01251d4b8819dcc 39288 libs optional 
libstonith0_2.0.8-9_i386.deb
 67681e0d27aca340ad7d2205331d93c8 39272 libs optional libpils0_2.0.8-9_i386.deb

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

iD8DBQFGXqfMA8ACPgVBDpcRAqyzAJoDI+DZXTqw5lu/6/AtuiAKu8a+7gCeJqdB
Gkq7JuA/HKqQ43uLUWyiu+Y=
=Kf4S
-END PGP SIGNATURE-


Accepted:
heartbeat-2-dev_2.0.8-9_all.deb
  to pool/main/h/heartbeat/heartbeat-2-dev_2.0.8-9_all.deb
heartbeat-2-gui_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/heartbeat-2-gui_2.0.8-9_i386.deb
heartbeat-2_2.0.8-9_all.deb
  to pool/main/h/heartbeat/heartbeat-2_2.0.8-9_all.deb
heartbeat-dev_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/heartbeat-dev_2.0.8-9_i386.deb
heartbeat-gui_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/heartbeat-gui_2.0.8-9_i386.deb
heartbeat_2.0.8-9.diff.gz
  to pool/main/h/heartbeat/heartbeat_2.0.8-9.diff.gz
heartbeat_2.0.8-9.dsc
  to pool/main/h/heartbeat/heartbeat_2.0.8-9.dsc
heartbeat_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/heartbeat_2.0.8-9_i386.deb
ldirectord-2_2.0.8-9_all.deb
  to pool/main/h/heartbeat/ldirectord-2_2.0.8-9_all.deb
ldirectord_2.0.8-9_all.deb
  to pool/main/h/heartbeat/ldirectord_2.0.8-9_all.deb
libpils-dev_2.0.8-9_all.deb
  to pool/main/h/heartbeat/libpils-dev_2.0.8-9_all.deb
libpils0_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/libpils0_2.0.8-9_i386.deb
libstonith-dev_2.0.8-9_all.deb
  to pool/main/h/heartbeat/libstonith-dev_2.0.8-9_all.deb
libstonith0_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/libstonith0_2.0.8-9_i386.deb
stonith_2.0.8-9_i386.deb
  to pool/main/h/heartbeat/stonith_2.0.8-9_i386.deb


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



Accepted duplicity 0.4.2-14 (source i386)

2007-05-31 Thread Alexander Zangerl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  1 Jun 2007 00:19:32 +1000
Source: duplicity
Binary: duplicity
Architecture: source i386
Version: 0.4.2-14
Distribution: unstable
Urgency: high
Maintainer: Alexander Zangerl [EMAIL PROTECTED]
Changed-By: Alexander Zangerl [EMAIL PROTECTED]
Description: 
 duplicity  - encrypted bandwidth-efficient backup
Closes: 426819
Changes: 
 duplicity (0.4.2-14) unstable; urgency=high
 .
   * fixed bad patch sequence that broke sftp support (closes: #426819)
Files: 
 0e0082477376e55ca7b040be0aa11cd9 664 utils optional duplicity_0.4.2-14.dsc
 093c39f791f9ec4b29efc5fba5a14b44 8349 utils optional duplicity_0.4.2-14.diff.gz
 00684b190c00b19730131df89ce2ae40 100310 utils optional 
duplicity_0.4.2-14_i386.deb

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

iD8DBQFGXtsUpy/2bEK9ZF0RAjIpAKCFo34pQuoBWn33wfoNHMHHhgCQPACeML8A
Uwojt3OlGqDaSrThNLOY7SM=
=CY4X
-END PGP SIGNATURE-


Accepted:
duplicity_0.4.2-14.diff.gz
  to pool/main/d/duplicity/duplicity_0.4.2-14.diff.gz
duplicity_0.4.2-14.dsc
  to pool/main/d/duplicity/duplicity_0.4.2-14.dsc
duplicity_0.4.2-14_i386.deb
  to pool/main/d/duplicity/duplicity_0.4.2-14_i386.deb


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



Accepted watchdog 5.3.1-3 (source i386)

2007-05-31 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 15:18:14 +0200
Source: watchdog
Binary: watchdog
Architecture: source i386
Version: 5.3.1-3
Distribution: unstable
Urgency: low
Maintainer: Michael Meskes [EMAIL PROTECTED]
Changed-By: Michael Meskes [EMAIL PROTECTED]
Description: 
 watchdog   - software watchdog
Closes: 423019 423020
Changes: 
 watchdog (5.3.1-3) unstable; urgency=low
 .
   * Made sure module is loaded before watchdog is started
 closes: #423019, #423020
Files: 
 8b5d5efaf501bf278ec059eaec7f117b 590 admin extra watchdog_5.3.1-3.dsc
 833adec2921009ec73c834765c50b715 3795 admin extra watchdog_5.3.1-3.diff.gz
 d15dbaac41ce24102a6509b2119ecc55 64904 admin extra watchdog_5.3.1-3_i386.deb

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

iD8DBQFGXtWfVkEm8inxm9ERAp9oAJ9zZfWTtFk/FaUzYDzm6ptRJjabswCeKt6N
4FwKwkwQd0XhdvgdiK5DAnA=
=v0n+
-END PGP SIGNATURE-


Accepted:
watchdog_5.3.1-3.diff.gz
  to pool/main/w/watchdog/watchdog_5.3.1-3.diff.gz
watchdog_5.3.1-3.dsc
  to pool/main/w/watchdog/watchdog_5.3.1-3.dsc
watchdog_5.3.1-3_i386.deb
  to pool/main/w/watchdog/watchdog_5.3.1-3_i386.deb


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



Accepted quantlib 0.8.0-1 (source i386)

2007-05-31 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 09:24:27 -0500
Source: quantlib
Binary: libquantlib-0.8.0 quantlib-examples libquantlib0-dev
Architecture: source i386
Version: 0.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 libquantlib-0.8.0 - Quantitative Finance Library -- development package
 libquantlib0-dev - Quantitative Finance Library -- library package
 quantlib-examples - Quantitative Finance Library -- example binaries
Changes: 
 quantlib (0.8.0-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 349cd1caeefe58d638235c1ac4e7ed87 726 libs optional quantlib_0.8.0-1.dsc
 64a14c9c5b1a82f028c6047812850593 2133973 libs optional 
quantlib_0.8.0.orig.tar.gz
 3ea4b7ca5dd0771508ce3182bace7094 11520 libs optional quantlib_0.8.0-1.diff.gz
 0ff3054978f9c5d92e6b32b561f7bb1c 2599858 libs optional 
libquantlib-0.8.0_0.8.0-1_i386.deb
 b6d80e3f0375caf8f98daf5ed7aa452d 8190348 libdevel optional 
libquantlib0-dev_0.8.0-1_i386.deb
 19d6afda89082bccd4f85d9155ebe79c 1183058 devel optional 
quantlib-examples_0.8.0-1_i386.deb

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

iD8DBQFGXuqVCZSR95Gw07cRAjeCAJ4y1UFyPa7DzAg7hvTsZlUGHGozbwCgjXzv
dZJIvyhNVZMiwLvTbZqyQUY=
=eTp4
-END PGP SIGNATURE-


Accepted:
libquantlib-0.8.0_0.8.0-1_i386.deb
  to pool/main/q/quantlib/libquantlib-0.8.0_0.8.0-1_i386.deb
libquantlib0-dev_0.8.0-1_i386.deb
  to pool/main/q/quantlib/libquantlib0-dev_0.8.0-1_i386.deb
quantlib-examples_0.8.0-1_i386.deb
  to pool/main/q/quantlib/quantlib-examples_0.8.0-1_i386.deb
quantlib_0.8.0-1.diff.gz
  to pool/main/q/quantlib/quantlib_0.8.0-1.diff.gz
quantlib_0.8.0-1.dsc
  to pool/main/q/quantlib/quantlib_0.8.0-1.dsc
quantlib_0.8.0.orig.tar.gz
  to pool/main/q/quantlib/quantlib_0.8.0.orig.tar.gz


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



Accepted phpbb3 3.0.0~RC1 (source all)

2007-05-31 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 16:35:37 +0200
Source: phpbb3
Binary: phpbb3
Architecture: source all
Version: 3.0.0~RC1
Distribution: experimental
Urgency: low
Maintainer: Jeroen van Wolffelaar [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 phpbb3 - A fully featured and skinnable flat (non-threaded) webforum
Changes: 
 phpbb3 (3.0.0~RC1) experimental; urgency=low
 .
   * New upstream Release Candidate 1.
Files: 
 05a3e3d369db4c7203df4948e24f5183 801 web optional phpbb3_3.0.0~RC1.dsc
 2a954464ba346b1ff344f1d73fb0ef45 1346308 web optional 
phpbb3_3.0.0~RC1.orig.tar.gz
 ff25bc6f21d38df33c263f275eab722d 48620 web optional phpbb3_3.0.0~RC1.diff.gz
 d4a6238b1078db5ada38ebdde59e2a5b 1706900 web optional phpbb3_3.0.0~RC1_all.deb

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

iD8DBQFGXu8bJdKMxZV9WM8RAt51AKCfM+1n28YYx5gD6/9pN0UX1aIXSACfawpA
cW4i5A1ThP21XhBAhrMpjUU=
=bchR
-END PGP SIGNATURE-


Accepted:
phpbb3_3.0.0~RC1.diff.gz
  to pool/main/p/phpbb3/phpbb3_3.0.0~RC1.diff.gz
phpbb3_3.0.0~RC1.dsc
  to pool/main/p/phpbb3/phpbb3_3.0.0~RC1.dsc
phpbb3_3.0.0~RC1.orig.tar.gz
  to pool/main/p/phpbb3/phpbb3_3.0.0~RC1.orig.tar.gz
phpbb3_3.0.0~RC1_all.deb
  to pool/main/p/phpbb3/phpbb3_3.0.0~RC1_all.deb


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



Accepted quantlib-swig 0.8.0-1 (source i386)

2007-05-31 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 11:40:40 -0500
Source: quantlib-swig
Binary: quantlib-ruby quantlib-python
Architecture: source i386
Version: 0.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 quantlib-python - Python bindings for the Quantlib Quantitative Finance library
 quantlib-ruby - Ruby bindings for the Quantlib Quantitative Finance library
Changes: 
 quantlib-swig (0.8.0-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set Build-Depends: to 'libquantlib0-dev (= 0.8.0-1)'
 .
   * debian/control: Restrict Architecture: to 'alpha amd64 arm hppa i386
 ia64 powerpc sparc' excluding mips and mipsel whose toolchain is currently
 insufficient to build this
Files: 
 055fa29254e0d8b00afa762cf8beda8a 924 - optional quantlib-swig_0.8.0-1.dsc
 74b94087b7825aad28c5ff8606927375 2933236 - optional 
quantlib-swig_0.8.0.orig.tar.gz
 57d796b9599d2c1de77a4921f9402985 7453 - optional quantlib-swig_0.8.0-1.diff.gz
 7ed77b1a07de88d9243c4a13d3ec5ea7 1849158 python optional 
quantlib-python_0.8.0-1_i386.deb
 db22dce5c27efab262520b4f6ebca07d 1335282 interpreters optional 
quantlib-ruby_0.8.0-1_i386.deb

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

iD8DBQFGXwAXCZSR95Gw07cRAlH3AJ9T6DD5b74OQmiEAnNYrRlI/RNkDACgh27p
Id+0MNMnsetnMeokXGBKgu0=
=59Dw
-END PGP SIGNATURE-


Accepted:
quantlib-python_0.8.0-1_i386.deb
  to pool/main/q/quantlib-swig/quantlib-python_0.8.0-1_i386.deb
quantlib-ruby_0.8.0-1_i386.deb
  to pool/main/q/quantlib-swig/quantlib-ruby_0.8.0-1_i386.deb
quantlib-swig_0.8.0-1.diff.gz
  to pool/main/q/quantlib-swig/quantlib-swig_0.8.0-1.diff.gz
quantlib-swig_0.8.0-1.dsc
  to pool/main/q/quantlib-swig/quantlib-swig_0.8.0-1.dsc
quantlib-swig_0.8.0.orig.tar.gz
  to pool/main/q/quantlib-swig/quantlib-swig_0.8.0.orig.tar.gz


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



Accepted phpbb2 2.0.22-2 (source all)

2007-05-31 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 19:09:08 +0200
Source: phpbb2
Binary: phpbb2-languages phpbb2-conf-mysql phpbb2
Architecture: source all
Version: 2.0.22-2
Distribution: unstable
Urgency: low
Maintainer: Jeroen van Wolffelaar [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 phpbb2 - A fully featured and skinnable flat (non-threaded) webforum
 phpbb2-conf-mysql - Automatic configurator for phpbb2 on MySQL database
 phpbb2-languages - phpBB2 additional languages
Closes: 369914 414684 419441 421392 423798
Changes: 
 phpbb2 (2.0.22-2) unstable; urgency=low
 .
   * Reload Apache after we've installed the webserver configuration
 (Closes: #369914).
   * Install the search_time attribute in phpbb_search_results when it
 does not exist yet (Closes: #414684, #423798).
   * Install a ranks dir under /var/lib/phpbb2 (Closes: #421392).
   * Automatically delete oldest sessions when session table is full.
 Thanks Christer Mjellem Strand for the patch (Closes: #419441).
Files: 
 d006a06c8265536026a8521a4d650b7f 833 web optional phpbb2_2.0.22-2.dsc
 aadd5165762145dbd0a52ebb6c64def9 90331 web optional phpbb2_2.0.22-2.diff.gz
 f94d678d9f6131c1ae0e2a0849136c1c 553792 web optional phpbb2_2.0.22-2_all.deb
 b9838e7d79feb75ad09032ba9dafe771 56108 web extra 
phpbb2-conf-mysql_2.0.22-2_all.deb
 1a1fc66d4d6b5eac4ea44cdce884cbb4 2767540 web optional 
phpbb2-languages_2.0.22-2_all.deb

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

iD8DBQFGXwJVJdKMxZV9WM8RAgREAJ9uMUFm2N1QRJS+nRBEcIV3yQNTdwCfYwBf
6IciThKejbDUFutEBjbmilA=
=Hjgf
-END PGP SIGNATURE-


Accepted:
phpbb2-conf-mysql_2.0.22-2_all.deb
  to pool/main/p/phpbb2/phpbb2-conf-mysql_2.0.22-2_all.deb
phpbb2-languages_2.0.22-2_all.deb
  to pool/main/p/phpbb2/phpbb2-languages_2.0.22-2_all.deb
phpbb2_2.0.22-2.diff.gz
  to pool/main/p/phpbb2/phpbb2_2.0.22-2.diff.gz
phpbb2_2.0.22-2.dsc
  to pool/main/p/phpbb2/phpbb2_2.0.22-2.dsc
phpbb2_2.0.22-2_all.deb
  to pool/main/p/phpbb2/phpbb2_2.0.22-2_all.deb


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



Accepted gossip 0.26-2 (source all i386)

2007-05-31 Thread Norbert Tretkowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 14:46:07 +0200
Source: gossip
Binary: gossip-common gossip
Architecture: source all i386
Version: 0.26-2
Distribution: unstable
Urgency: low
Maintainer: Ross Burton [EMAIL PROTECTED]
Changed-By: Norbert Tretkowski [EMAIL PROTECTED]
Description: 
 gossip - friendly Jabber client for GNOME
 gossip-common - friendly Jabber client for GNOME - common files
Changes: 
 gossip (0.26-2) unstable; urgency=low
 .
   * Added a new patch from svn to fix enabling/disabling avatars.
Files: 
 a56df371ef7a33cd7adab5ca22f6ad35 1270 gnome optional gossip_0.26-2.dsc
 c55f0c2403a678dfb160d87a99fe776d 6488 gnome optional gossip_0.26-2.diff.gz
 17a3d6fd0a5b6706c8bbf7eaa3504349 894410 gnome optional 
gossip-common_0.26-2_all.deb
 efe3d5566bdc01e76afdb7a2d9174c98 420196 gnome optional gossip_0.26-2_i386.deb

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

iD8DBQFGXwZbr/RnCw96jQERAj+OAKCRaDF0WotclIyzfTHpAsszLPuYwQCgi/PE
ugaspWKLtht6eCC6eZ2KG90=
=XGey
-END PGP SIGNATURE-


Accepted:
gossip-common_0.26-2_all.deb
  to pool/main/g/gossip/gossip-common_0.26-2_all.deb
gossip_0.26-2.diff.gz
  to pool/main/g/gossip/gossip_0.26-2.diff.gz
gossip_0.26-2.dsc
  to pool/main/g/gossip/gossip_0.26-2.dsc
gossip_0.26-2_i386.deb
  to pool/main/g/gossip/gossip_0.26-2_i386.deb


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



Accepted jruby1.0 1.0.0~rc2-4 (source all)

2007-05-31 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 10:18:46 -0700
Source: jruby1.0
Binary: jruby1.0
Architecture: source all
Version: 1.0.0~rc2-4
Distribution: unstable
Urgency: low
Maintainer: Sebastien Delafond [EMAIL PROTECTED]
Changed-By: Sebastien Delafond [EMAIL PROTECTED]
Description: 
 jruby1.0   - 100% pure-Java implementation of Ruby
Closes: 426815
Changes: 
 jruby1.0 (1.0.0~rc2-4) unstable; urgency=low
 .
   * Fix debian/rules (Closes: #426815).
Files: 
 b746590f0e5c2ad85ca47a0cd8262914 687 interpreters optional 
jruby1.0_1.0.0~rc2-4.dsc
 c69a7d727aa1c2a457510e9b62a96a18 15512 interpreters optional 
jruby1.0_1.0.0~rc2-4.diff.gz
 44964b5ba6779495e54d241b2d6905fc 4138200 interpreters optional 
jruby1.0_1.0.0~rc2-4_all.deb

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

iD8DBQFGXwgbiZgNKcDdyD8RAsn8AKDGC255r7sXCYNMgEWniQXtAxT25ACeKowU
nONh7xZ1XnFDizG67y1fzhw=
=J5Bi
-END PGP SIGNATURE-


Accepted:
jruby1.0_1.0.0~rc2-4.diff.gz
  to pool/main/j/jruby1.0/jruby1.0_1.0.0~rc2-4.diff.gz
jruby1.0_1.0.0~rc2-4.dsc
  to pool/main/j/jruby1.0/jruby1.0_1.0.0~rc2-4.dsc
jruby1.0_1.0.0~rc2-4_all.deb
  to pool/main/j/jruby1.0/jruby1.0_1.0.0~rc2-4_all.deb


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



Accepted clamav-data 20070531.101600.3335 (source all)

2007-05-31 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 17:49:44 +
Source: clamav-data
Binary: clamav-data
Architecture: source all
Version: 20070531.101600.3335
Distribution: unstable
Urgency: low
Maintainer: Marc Haber [EMAIL PROTECTED]
Changed-By: Marc Haber [EMAIL PROTECTED]
Description: 
 clamav-data - clamav data files
Changes: 
 clamav-data (20070531.101600.3335) unstable; urgency=low
 .
   * Automatically generated by clamav-getfiles.
   * See clamav-getfiles changelog for the real change log.
 URL: 
http://packages.debian.org/changelogs/pool/main/c/clamav-getfiles/current/changelog.html
Files: 
 56732a69a51b9e07af5714819282cbd7 558 utils optional 
clamav-data_20070531.101600.3335.dsc
 8ce6aac2934068578c89808ac99e5d6a 9953180 utils optional 
clamav-data_20070531.101600.3335.tar.gz
 5a777a5f147d10b5f04f07881726f318 9950962 utils optional 
clamav-data_20070531.101600.3335_all.deb

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

iD8DBQFGXw0MgZalRGu6PIQRAglHAJ9zbl0RpskrN7eAJ6uC8cJt6qGoFwCgl7aw
S9p6sNLpk29LVdX21B/5n3E=
=PU/g
-END PGP SIGNATURE-


Accepted:
clamav-data_20070531.101600.3335.dsc
  to pool/main/c/clamav-data/clamav-data_20070531.101600.3335.dsc
clamav-data_20070531.101600.3335.tar.gz
  to pool/main/c/clamav-data/clamav-data_20070531.101600.3335.tar.gz
clamav-data_20070531.101600.3335_all.deb
  to pool/main/c/clamav-data/clamav-data_20070531.101600.3335_all.deb


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



Accepted nmh 1.2-3 (source i386)

2007-05-31 Thread Nick Rusnov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 10:55:37 -0700
Source: nmh
Binary: nmh
Architecture: source i386
Version: 1.2-3
Distribution: unstable
Urgency: low
Maintainer: Nick Rusnov [EMAIL PROTECTED]
Changed-By: Nick Rusnov [EMAIL PROTECTED]
Description: 
 nmh- A set of electronic mail handling programs
Closes: 399271 420653 425638
Changes: 
 nmh (1.2-3) unstable; urgency=low
 .
   * Apply patches from #399271 by Dean Gaudet.
 + 04-fix-64bit-issues-399271 fixes warnings
   on architectures where sizeof(int) !=
   sizeof(void *) such as AMD64.
 + 05-segfault-399271 fixes segfaults
   caused by gcc optimizing away NULL tests
   (Closes: #399271, #420653, #425638) Thanks
   to Matt Taggart and Sanjoy Mahajan for
   testing Dean's fix.
Files: 
 ee3e8f8cd4703393cc215c59f796af11 629 mail optional nmh_1.2-3.dsc
 c55dcfdd35bf8083261cef91c9175d7f 21468 mail optional nmh_1.2-3.diff.gz
 1ae993e5e3372101e6e64351b01ecb76 2104506 mail optional nmh_1.2-3_i386.deb

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

iD8DBQFGXw50VNQJTPEhm4QRAhLOAJ0dNwVu14u30vAHFNN8/9qANK3WXQCcCvBG
aHEYVRFnF3pyW8faElXIN58=
=OZj9
-END PGP SIGNATURE-


Accepted:
nmh_1.2-3.diff.gz
  to pool/main/n/nmh/nmh_1.2-3.diff.gz
nmh_1.2-3.dsc
  to pool/main/n/nmh/nmh_1.2-3.dsc
nmh_1.2-3_i386.deb
  to pool/main/n/nmh/nmh_1.2-3_i386.deb


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



Accepted dosemu 1.4.0-2 (source i386)

2007-05-31 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 19:00:44 +0200
Source: dosemu
Binary: dosemu
Architecture: source i386
Version: 1.4.0-2
Distribution: unstable
Urgency: low
Maintainer: Bart Martens [EMAIL PROTECTED]
Changed-By: Bart Martens [EMAIL PROTECTED]
Description: 
 dosemu - The Linux DOS Emulator
Closes: 426856
Changes: 
 dosemu (1.4.0-2) unstable; urgency=low
 .
   * debian/rules: Fix dangling symlink.  Closes: #426856.
Files: 
 0c0c7d2481662467b3a23deb3fca7ce2 806 contrib/otherosfs optional 
dosemu_1.4.0-2.dsc
 2006c14fa907b8e5d08fd93f5bc55915 26282 contrib/otherosfs optional 
dosemu_1.4.0-2.diff.gz
 291069359b109b514b6ce59f8c1207b2 2395266 contrib/otherosfs optional 
dosemu_1.4.0-2_i386.deb

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

iD8DBQFGXw/KbMaawmho9B8RAi50AKDYtbeo1/AQqUh9hYqiM9INo3OevQCghc9m
PScFlhzyPE3vHVdYA3xhFWY=
=4yWF
-END PGP SIGNATURE-


Accepted:
dosemu_1.4.0-2.diff.gz
  to pool/contrib/d/dosemu/dosemu_1.4.0-2.diff.gz
dosemu_1.4.0-2.dsc
  to pool/contrib/d/dosemu/dosemu_1.4.0-2.dsc
dosemu_1.4.0-2_i386.deb
  to pool/contrib/d/dosemu/dosemu_1.4.0-2_i386.deb


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



Accepted squirrelmail 2:1.4.10a-2 (source all)

2007-05-31 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 19:34:29 +0200
Source: squirrelmail
Binary: squirrelmail
Architecture: source all
Version: 2:1.4.10a-2
Distribution: unstable
Urgency: low
Maintainer: Jeroen van Wolffelaar [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 squirrelmail - Webmail for nuts
Closes: 420877
Changes: 
 squirrelmail (2:1.4.10a-2) unstable; urgency=low
 .
   * Make use of new dictionaries-common SquirrelMail interface to
 detect the installed squirrelspell dictionaries (Closes: #420877).
   * Remove obsolete upgrading code.
   * Make sure config files are not closed with '?' since it's then
 too easy to get stray whitespace at the end of the file.
Files: 
 d28112334639aa1478bf87c6489ae138 777 web optional squirrelmail_1.4.10a-2.dsc
 a308330871ae7fe0103d77a66bad1c62 19067 web optional 
squirrelmail_1.4.10a-2.diff.gz
 079bf4bbebba0f08abfdaa9440a3ed67 587668 web optional 
squirrelmail_1.4.10a-2_all.deb

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

iD8DBQFGXxVyJdKMxZV9WM8RAlNLAJ4lWBGsmlWGutjYPpzvZsiaHvUyggCgotE0
ZsEwKC+c2nXlTMgxBy0CF6Y=
=/jIt
-END PGP SIGNATURE-


Accepted:
squirrelmail_1.4.10a-2.diff.gz
  to pool/main/s/squirrelmail/squirrelmail_1.4.10a-2.diff.gz
squirrelmail_1.4.10a-2.dsc
  to pool/main/s/squirrelmail/squirrelmail_1.4.10a-2.dsc
squirrelmail_1.4.10a-2_all.deb
  to pool/main/s/squirrelmail/squirrelmail_1.4.10a-2_all.deb


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



Accepted suitesparse 3.0.0-3 (source all i386)

2007-05-31 Thread Christophe Prud'homme
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 08:45:21 +0200
Source: suitesparse
Binary: libsuitesparse-dbg libsuitesparse libsuitesparse-dev libsuitesparse-doc
Architecture: source all i386
Version: 3.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team [EMAIL PROTECTED]
Changed-By: Christophe Prud'homme [EMAIL PROTECTED]
Description: 
 libsuitesparse - collection of libraries for computations for sparse matrices
 libsuitesparse-dbg - collection of libraries for computations for sparse 
matrices
 libsuitesparse-dev - collection of libraries for computations for sparse 
matrices
 libsuitesparse-doc - collection of libraries for computations for sparse 
matrices
Closes: 426814
Changes: 
 suitesparse (3.0.0-3) unstable; urgency=low
 .
   [ Christophe Prud'homme ]
   * debian/control: removed libsuitesparse-metis and
 libsuitesparse-metis-dev, this will be provided by a suitesparse-metis
 package
   * Bug fix: suitesparse: Build-Depends on non-free package
 libparmetis-dev, thanks to Daniel Schepler (Closes: #426814).
Files: 
 10c53d573dd36413e139da4c819baea2 913 math optional suitesparse_3.0.0-3.dsc
 428d00f756697e4a567ad232da92c94a 8598 math optional suitesparse_3.0.0-3.diff.gz
 6259cc4d547993d921e008bb7e15af6b 1507294 doc optional 
libsuitesparse-doc_3.0.0-3_all.deb
 6e847ad0d4e7f505cb5438ff1685f8dd 875028 libs optional 
libsuitesparse_3.0.0-3_i386.deb
 b8ccc6807e740036714badd3597de25f 1241038 libdevel optional 
libsuitesparse-dev_3.0.0-3_i386.deb
 4e8a8d05483905ff5303a07352aadedd 32196 libdevel extra 
libsuitesparse-dbg_3.0.0-3_i386.deb

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

iD8DBQFGXrXZoY+0C9S+FFARAiIzAJ4oOpHQh3fkTf33xRPN6OkatslZowCeJz1M
+UinYRN+owP8NILuxNDvdYE=
=5qw7
-END PGP SIGNATURE-


Accepted:
libsuitesparse-dbg_3.0.0-3_i386.deb
  to pool/main/s/suitesparse/libsuitesparse-dbg_3.0.0-3_i386.deb
libsuitesparse-dev_3.0.0-3_i386.deb
  to pool/main/s/suitesparse/libsuitesparse-dev_3.0.0-3_i386.deb
libsuitesparse-doc_3.0.0-3_all.deb
  to pool/main/s/suitesparse/libsuitesparse-doc_3.0.0-3_all.deb
libsuitesparse_3.0.0-3_i386.deb
  to pool/main/s/suitesparse/libsuitesparse_3.0.0-3_i386.deb
suitesparse_3.0.0-3.diff.gz
  to pool/main/s/suitesparse/suitesparse_3.0.0-3.diff.gz
suitesparse_3.0.0-3.dsc
  to pool/main/s/suitesparse/suitesparse_3.0.0-3.dsc


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



Accepted subtitleeditor 0.13.6-1 (source i386)

2007-05-31 Thread Amaya Rodrigo Sastre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 02:29:50 +0200
Source: subtitleeditor
Binary: subtitleeditor
Architecture: source i386
Version: 0.13.6-1
Distribution: unstable
Urgency: low
Maintainer: Amaya Rodrigo [EMAIL PROTECTED]
Changed-By: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Description: 
 subtitleeditor - Graphical subtitle editor with sound waves representation
Changes: 
 subtitleeditor (0.13.6-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 c19ac0f1e51b02506230644bf1018afe 810 gnome optional subtitleeditor_0.13.6-1.dsc
 063ffbe94afe832ec46b1666cdf00228 579871 gnome optional 
subtitleeditor_0.13.6.orig.tar.gz
 5cd8ceb640f2198bae779f9890846302 111687 gnome optional 
subtitleeditor_0.13.6-1.diff.gz
 fe56bac8408c8e4afdf706eda2167e1c 579158 gnome optional 
subtitleeditor_0.13.6-1_i386.deb

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

iEYEARECAAYFAkZfGuoACgkQNFDtUT/MKpDSeQCgtV70ncG5/BG0PYeBYCFMOFnU
VxMAn3cj/ohF+mR36MgjxfJ27mQgWoQp
=AUaG
-END PGP SIGNATURE-


Accepted:
subtitleeditor_0.13.6-1.diff.gz
  to pool/main/s/subtitleeditor/subtitleeditor_0.13.6-1.diff.gz
subtitleeditor_0.13.6-1.dsc
  to pool/main/s/subtitleeditor/subtitleeditor_0.13.6-1.dsc
subtitleeditor_0.13.6-1_i386.deb
  to pool/main/s/subtitleeditor/subtitleeditor_0.13.6-1_i386.deb
subtitleeditor_0.13.6.orig.tar.gz
  to pool/main/s/subtitleeditor/subtitleeditor_0.13.6.orig.tar.gz


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



Accepted xorg-sgml-doctools 1:1.2-2 (source all)

2007-05-31 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 21:07:53 +0200
Source: xorg-sgml-doctools
Binary: xorg-sgml-doctools
Architecture: source all
Version: 1:1.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 xorg-sgml-doctools - Common tools for building X.Org SGML documentation
Changes: 
 xorg-sgml-doctools (1:1.2-2) unstable; urgency=low
 .
   * Upload to unstable.
Files: 
 ce75b0706492ae2ae90d4193fe2c8497 716 x11 optional xorg-sgml-doctools_1.2-2.dsc
 fa105919b8ede4a1fa1744b3c39aa52b 6635 x11 optional 
xorg-sgml-doctools_1.2-2.diff.gz
 fa3d1d2544b3e8dea2db0fec5cd290e5 2662 x11 optional 
xorg-sgml-doctools_1.2-2_all.deb

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

iD8DBQFGXyBfmEvTgKxfcAwRApsJAKCu2JMuycyj+QdJkHQNbH96GaFZ7ACgi2N/
odPvCXDmCgIMN+6bgOrdjIQ=
=wRyQ
-END PGP SIGNATURE-


Accepted:
xorg-sgml-doctools_1.2-2.diff.gz
  to pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.2-2.diff.gz
xorg-sgml-doctools_1.2-2.dsc
  to pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.2-2.dsc
xorg-sgml-doctools_1.2-2_all.deb
  to pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.2-2_all.deb


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



Accepted mono-debugger 0.50-1 (source i386)

2007-05-31 Thread Mirco Bauer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 May 2007 16:24:54 +0200
Source: mono-debugger
Binary: mono-debugger
Architecture: source i386
Version: 0.50-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mono Group [EMAIL PROTECTED]
Changed-By: Mirco Bauer [EMAIL PROTECTED]
Description: 
 mono-debugger - Debugger for Mono
Changes: 
 mono-debugger (0.50-1) unstable; urgency=low
 .
   * Mirco 'meebey' Bauer:
 + New upstream release
 + debian/rules:
   - Don't run ./autogen.sh, as we use a release tarball.
 + debian/control:
   - Updated libmono-dev build dependency to = 1.2.4
Files: 
 0ac0dbefc4bccc896dab397759b7ae53 1100 devel optional mono-debugger_0.50-1.dsc
 e814208697bb2208a57361e0c7cd9753 191 devel optional 
mono-debugger_0.50.orig.tar.gz
 dcfef4861de850b3de6c4721a2f8dd73 4370 devel optional 
mono-debugger_0.50-1.diff.gz
 ec9d1b2b94023d0f750f56842c4eabfc 922966 devel optional 
mono-debugger_0.50-1_i386.deb

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

iQEVAwUBRl8xf3En5avu+UbIAQKDegf9EkG9eyoL8qFxlcX1Jc0ON8hkyhX3bylh
nYodTJGkkM8p8fqJ3eTadH4Qb8aPJ3QkwF9LXPnyOidczMt0oSYVdxpNW+xzVgWs
tF67M41HYFmoJ8SckGdqevSrqysVddsEv5EOGOrUCxra3YCXMxx1SrO0+m+A+QSN
rlDU4wodaQZ4KaPQDt4nlNUZBP/u+PMTRD+CV/clTb9F3aBisNFonHqOP8VKBCJf
crfT+I+ZrskjF7YHCD3sBC5v2PLic3OHV80MtLrpQUv3omMLQqiLt68kavMcYirl
dQcxspy/sp2dWYEIybasK/kDCXNh+lPktbhed+i2bNDRP2jIAmLg5g==
=oZ+Z
-END PGP SIGNATURE-


Accepted:
mono-debugger_0.50-1.diff.gz
  to pool/main/m/mono-debugger/mono-debugger_0.50-1.diff.gz
mono-debugger_0.50-1.dsc
  to pool/main/m/mono-debugger/mono-debugger_0.50-1.dsc
mono-debugger_0.50-1_i386.deb
  to pool/main/m/mono-debugger/mono-debugger_0.50-1_i386.deb
mono-debugger_0.50.orig.tar.gz
  to pool/main/m/mono-debugger/mono-debugger_0.50.orig.tar.gz


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



Accepted xorg-docs 1:1.4-2 (source all)

2007-05-31 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 22:18:53 +0200
Source: xorg-docs
Binary: xorg-docs xspecs
Architecture: source all
Version: 1:1.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 xorg-docs  - Miscellaneous documentation for the X.Org software suite
 xspecs - X protocol, extension, and library technical specifications
Closes: 425461
Changes: 
 xorg-docs (1:1.4-2) unstable; urgency=low
 .
   * Fix the name of the XS-Vcs-Browser field.
   * xorg-docs Conflicts/Replaces xprt-xprintorg from sarge (closes: #425461).
   * Add debian/watch.
   * Update to git HEAD, drop patch 01_specs_docs_fixes.diff applied upstream.
   * Install the upstream changelog.
   * Upload to unstable.
Files: 
 0546bfa39ac80a27a5a1393a91b8d7bb 897 x11 optional xorg-docs_1.4-2.dsc
 3eb9860ca88016c37726ae3beb0edc5f 39813 x11 optional xorg-docs_1.4-2.diff.gz
 95239fc1da5e9883e04464edba7e9841 2030670 x11 optional xorg-docs_1.4-2_all.deb
 b238e01bea51c109bc5ef8aff2f01589 5543132 x11 optional xspecs_1.4-2_all.deb

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

iD8DBQFGXzC/mEvTgKxfcAwRAqUQAKDTLq/Lg52ZOqnp12A2ktx/qEIz2gCg1Oug
5pgvJLyOPTGelxbITs+hWcc=
=qmug
-END PGP SIGNATURE-


Accepted:
xorg-docs_1.4-2.diff.gz
  to pool/main/x/xorg-docs/xorg-docs_1.4-2.diff.gz
xorg-docs_1.4-2.dsc
  to pool/main/x/xorg-docs/xorg-docs_1.4-2.dsc
xorg-docs_1.4-2_all.deb
  to pool/main/x/xorg-docs/xorg-docs_1.4-2_all.deb
xspecs_1.4-2_all.deb
  to pool/main/x/xorg-docs/xspecs_1.4-2_all.deb


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



Accepted systemtap 0.0.20070526-1 (source amd64)

2007-05-31 Thread Eugeniy Meshcheryakov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 23:17:30 +0200
Source: systemtap
Binary: systemtap
Architecture: source amd64
Version: 0.0.20070526-1
Distribution: unstable
Urgency: low
Maintainer: Eugeniy Meshcheryakov [EMAIL PROTECTED]
Changed-By: Eugeniy Meshcheryakov [EMAIL PROTECTED]
Description: 
 systemtap  - instrumentation system for Linux 2.6
Changes: 
 systemtap (0.0.20070526-1) unstable; urgency=low
 .
   * New upstream snapshot
   * New patches:
 - 18-insmod-path - pass full path to execvp(3) to work around bugs #425458
   and #425562
 - 19-gcc-3.3-fixes - fix FTBFS with GCC 3.3 due to missing #includes
Files: 
 f68ee7a097752c9ac9d16542d739c787 848 devel optional 
systemtap_0.0.20070526-1.dsc
 b1c854e9803e36b75e94ae438dd84d49 694619 devel optional 
systemtap_0.0.20070526.orig.tar.gz
 5d0641e467520e9582312048247cabed 15384 devel optional 
systemtap_0.0.20070526-1.diff.gz
 6a49e6b72cf0bc8caba4a2b3bf749e62 708028 devel optional 
systemtap_0.0.20070526-1_amd64.deb

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

iD8DBQFGXzwGKaC6+zmozOIRAthFAJ9BZeVTMIEdn0w1DOMo6FcDQdJvSwCdHDjX
ChKgMeoGTOTOBU1DewDeXKk=
=qYJl
-END PGP SIGNATURE-


Accepted:
systemtap_0.0.20070526-1.diff.gz
  to pool/main/s/systemtap/systemtap_0.0.20070526-1.diff.gz
systemtap_0.0.20070526-1.dsc
  to pool/main/s/systemtap/systemtap_0.0.20070526-1.dsc
systemtap_0.0.20070526-1_amd64.deb
  to pool/main/s/systemtap/systemtap_0.0.20070526-1_amd64.deb
systemtap_0.0.20070526.orig.tar.gz
  to pool/main/s/systemtap/systemtap_0.0.20070526.orig.tar.gz


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



Accepted r-base 2.5.1~20070530-1 (source all i386)

2007-05-31 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 May 2007 16:05:30 -0500
Source: r-base
Binary: r-base-core r-base-latex r-recommended r-doc-html r-doc-info r-base-dev 
r-mathlib r-base-html r-doc-pdf r-base
Architecture: source all i386
Version: 2.5.1~20070530-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-base - GNU R statistical computing language and environment
 r-base-core - GNU R core of statistical computing language and environment
 r-base-dev - GNU R installation of auxiliary GNU R packages
 r-base-html - GNU R html docs for statistical computing system functions
 r-base-latex - GNU R LaTeX docs for statistical computing system functions
 r-doc-html - GNU R html manuals for statistical computing system
 r-doc-info - GNU R info manuals statistical computing system
 r-doc-pdf  - GNU R pdf manuals for statistical computing system
 r-mathlib  - GNU R standalone mathematics library
 r-recommended - GNU R collection of recommended packages [metapackage]
Changes: 
 r-base (2.5.1~20070530-1) unstable; urgency=low
 .
   * R-patched as of 2007-05-30
Files: 
 7871e528927880b73566a24b75701d17 1059 math optional r-base_2.5.1~20070530-1.dsc
 42d37e8a66546a73279d98a9344e5128 15104672 math optional 
r-base_2.5.1~20070530.orig.tar.gz
 ce479cb70d83826b0dc7ecc599101037 54360 math optional 
r-base_2.5.1~20070530-1.diff.gz
 e485c9cb3197d30fa515fa3c313cd61d 10170674 math optional 
r-base-core_2.5.1~20070530-1_i386.deb
 21abe1ac4d7baf538ffbdc20da179e36 446850 math optional 
r-mathlib_2.5.1~20070530-1_i386.deb
 01879e967da3ababb8a7336a42458d51 24690 math optional 
r-base_2.5.1~20070530-1_all.deb
 f75374f95515231e37dbb19d30a7d3ad 2766 devel optional 
r-base-dev_2.5.1~20070530-1_all.deb
 6408806b37845232575b80fed094bc99 1199378 math extra 
r-base-html_2.5.1~20070530-1_all.deb
 b11cb4ed0885cedfb28bce6bebb1b873 1118494 math extra 
r-base-latex_2.5.1~20070530-1_all.deb
 80e712e4da22b48a7d2ed3c64636bd24 6289696 doc optional 
r-doc-pdf_2.5.1~20070530-1_all.deb
 604a17b5cdd05ebd0c4f34c3e96ce178 541282 doc optional 
r-doc-html_2.5.1~20070530-1_all.deb
 cc298555fa6bac0ff6e8ce6f3351ec6b 475072 doc optional 
r-doc-info_2.5.1~20070530-1_all.deb
 3dca1af72fb4db2a98908f599ef0455f 1940 math optional 
r-recommended_2.5.1~20070530-1_all.deb

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

iD8DBQFGX0A8CZSR95Gw07cRAtn8AJ9L3mJNhtEF9TSlMr16UteTEV0sfgCfdCWI
/B318nYYLZcpClvq9VmZXG8=
=FqRa
-END PGP SIGNATURE-


Accepted:
r-base-core_2.5.1~20070530-1_i386.deb
  to pool/main/r/r-base/r-base-core_2.5.1~20070530-1_i386.deb
r-base-dev_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-base-dev_2.5.1~20070530-1_all.deb
r-base-html_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-base-html_2.5.1~20070530-1_all.deb
r-base-latex_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-base-latex_2.5.1~20070530-1_all.deb
r-base_2.5.1~20070530-1.diff.gz
  to pool/main/r/r-base/r-base_2.5.1~20070530-1.diff.gz
r-base_2.5.1~20070530-1.dsc
  to pool/main/r/r-base/r-base_2.5.1~20070530-1.dsc
r-base_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-base_2.5.1~20070530-1_all.deb
r-base_2.5.1~20070530.orig.tar.gz
  to pool/main/r/r-base/r-base_2.5.1~20070530.orig.tar.gz
r-doc-html_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-doc-html_2.5.1~20070530-1_all.deb
r-doc-info_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-doc-info_2.5.1~20070530-1_all.deb
r-doc-pdf_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-doc-pdf_2.5.1~20070530-1_all.deb
r-mathlib_2.5.1~20070530-1_i386.deb
  to pool/main/r/r-base/r-mathlib_2.5.1~20070530-1_i386.deb
r-recommended_2.5.1~20070530-1_all.deb
  to pool/main/r/r-base/r-recommended_2.5.1~20070530-1_all.deb


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



Accepted rofs-fuse 2006.11.28-2 (source amd64)

2007-05-31 Thread Chris AtLee
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 May 2007 22:10:25 -0700
Source: rofs-fuse
Binary: rofs
Architecture: source amd64
Version: 2006.11.28-2
Distribution: unstable
Urgency: low
Maintainer: Chris AtLee [EMAIL PROTECTED]
Changed-By: Chris AtLee [EMAIL PROTECTED]
Description: 
 rofs   - Read-Only Filesystem for FUSE
Closes: 426816
Changes: 
 rofs-fuse (2006.11.28-2) unstable; urgency=low
 .
   * Handle relative paths as the rw path
   * Note additional changes from upstream (also applies to 2006.11.28-1):
 - Return EROFS from callbacks instead of EPERM
 - Rename callback_* to rofs_*
 - Got rid of rofsmount helper script
   * Added pkg-config to Build-Depends (Closes: #426816)
Files: 
 ac2085656d8517fe5ee6831151f66e3b 616 utils optional rofs-fuse_2006.11.28-2.dsc
 6220274315ddfdae23e903bf31a5fee7 5428 utils optional 
rofs-fuse_2006.11.28-2.diff.gz
 63a84b477dc8eaa51aaf7d9438af7f75 6558 utils optional 
rofs_2006.11.28-2_amd64.deb

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

iD8DBQFGX0Tpo7ginaV9i/cRAsBSAJ4v5e8gclYIyWAljOcaKUn1/YDO2gCgtZlb
hdG8iLv3M+YhNZ+bTndOmAE=
=lrT+
-END PGP SIGNATURE-


Accepted:
rofs-fuse_2006.11.28-2.diff.gz
  to pool/main/r/rofs-fuse/rofs-fuse_2006.11.28-2.diff.gz
rofs-fuse_2006.11.28-2.dsc
  to pool/main/r/rofs-fuse/rofs-fuse_2006.11.28-2.dsc
rofs_2006.11.28-2_amd64.deb
  to pool/main/r/rofs-fuse/rofs_2006.11.28-2_amd64.deb


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



Accepted obexpushd 0.5-2 (source amd64)

2007-05-31 Thread Eugeniy Meshcheryakov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 01 Jun 2007 00:26:37 +0200
Source: obexpushd
Binary: obexpushd
Architecture: source amd64
Version: 0.5-2
Distribution: unstable
Urgency: low
Maintainer: Eugeniy Meshcheryakov [EMAIL PROTECTED]
Changed-By: Eugeniy Meshcheryakov [EMAIL PROTECTED]
Description: 
 obexpushd  - program for receiving files via Bluetooth or IRDA
Changes: 
 obexpushd (0.5-2) unstable; urgency=low
 .
   * debian/control: s/libbluetooth2-dev/libbluetooth-dev/
Files: 
 3829cba9d08535f3c58756ebd3ad8c77 620 comm optional obexpushd_0.5-2.dsc
 8f576ec6593153f79e4c5b48b1b5de56 2654 comm optional obexpushd_0.5-2.diff.gz
 60dc784fcdf76489c77d9c641850eea8 23082 comm optional obexpushd_0.5-2_amd64.deb

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

iD8DBQFGX0vpKaC6+zmozOIRAh3QAJ92vfwekdzvYxw8Uehvlq4ofD7PWQCfXypL
yb/Jow6IYzKY4KlxTvVkFbo=
=LHoN
-END PGP SIGNATURE-


Accepted:
obexpushd_0.5-2.diff.gz
  to pool/main/o/obexpushd/obexpushd_0.5-2.diff.gz
obexpushd_0.5-2.dsc
  to pool/main/o/obexpushd/obexpushd_0.5-2.dsc
obexpushd_0.5-2_amd64.deb
  to pool/main/o/obexpushd/obexpushd_0.5-2_amd64.deb


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



  1   2   >