Bug#465402: O: directfb -- direct frame buffer graphics

2008-02-12 Thread Guillem Jover
Package: wnpp
Severity: normal

Now that the library transition is over, and all major bugs should be
fixed, I've been able to finally orphan the directfb suite of packages.

It might make sense for whoever takes over, to adopt the whole suite
(directfb, dfb++ and fusionsound), they have been maintained in the
pkg-directfb alioth project, which I can hand over to the new
maintainer(s).

All patches have been sent and merged upstream, except for one, which
I'm taking care of. There's intructions in that patch header on how to
proceed for next upstream release.


The package description is:
 DirectFB is a graphics library which was designed with embedded systems
 in mind. It offers maximum hardware accelerated performance at a minimum
 of resource usage and overhead.


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

Kernel: Linux 2.6.24.1-zulo (PREEMPT)
Locale: LANG=C, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Re: toolchain issue makes qt3 drop symbols ?

2008-02-12 Thread Michael Meskes
On Mon, Feb 11, 2008 at 12:01:47PM +0100, Fathi Boudra wrote:
 if we choose the binNMU needed packages way,
 virtualbox-ose binNMU will become useless in case of a 1.5.4-dfsg-5
 upload is pending.

Yes, I got confused by this email talking about a new version and
binNMUs.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go VfL Borussia! Go SF 49ers! Use Debian GNU/Linux! Use PostgreSQL!


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



Re: Processing of .changes files by dak

2008-02-12 Thread Joerg Jaspert
On 11293 March 1977, Thomas Viehmann wrote:

 somewhere else etc. to map key fingerprints to Debian accounts. Add 
 @debian.org
 and you get an email address (let's not care about people disabling
 it).

ANY solution *HAS* to care about this, there is no way you can sanely
think that [EMAIL PROTECTED] wants to have the possibly high number
of mail rejects thanks to people disabling their debian.org mail.


And then - if you have any patches improving the mail handling, or dak
in general, talk to me and I put them into a bzr repo, ready for a
master to merge. Wouldnt be the first patch to merge in. :)
(Or talk to a master directly...)

-- 
bye Joerg
* libpng2 no libpng3 no why ? because no yes no yes no yes bullshit no yes
  no yes no yes stop ? no when someday beep beep beep beep (Closes: #157011)
 -- Christian Marillat [EMAIL PROTECTED]  Thu, 29 Aug 2002 16:41:58 +0200


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



Re: Bootstrapping GT.M

2008-02-12 Thread Goswin von Brederlow
Andreas Tille [EMAIL PROTECTED] writes:

 [I'm forewarding this to debian-devel because this seems to be the
  right list for this kind of issues.]

 Short intro for debian-devel: We are discussion about including GT.M,
 a free MUMPS implementation available at
 http://sourceforge.net/projects/fis-gtm
 into Debian to be able to package VistA, which is an enterprise grade
 health care information system developed by the U.S. Department of
 Veterans Affairs (VA) and deployed at nearly 1,500 facilities worldwide.
 http://sourceforge.net/projects/openvista

 The problem is that you need a running GT.M to build GT.M in a
 bootstrap process.  Please read the mail from one of the authors below.

 On Mon, 11 Feb 2008, K.S. Bhaskar wrote:

 [KSB] On account of the bootstrapping.  You have to have a running
 GT.M at some point, or you have to simulate a running GT.M by hand.
 Think about bootstrapping a C compiler that is itself written in C.
 At some point, you need to do something to compile the compiler, e.g.,
 compile it by hand.  Once you have an executable binary of the first
 compiler, you can use it compile the next compiler, and so on.  For
 GT.M, you will need the *_ctl.c, merrors_ansi.h, and ttt.c files,
 which are generated by GT.M itself (they are all human readable ASCII
 files).  So, what you can do is to use an existing version of GT.M to
 create those files, read them to confirm that they look reasonable,
 i.e., no hidden binary code, and then build the new GT.M and use the
 new GT.M to build itself and verify that the files are the same.  If
 you can think of any other way out of the bootstrapping conundrum,
 please do let me know.

 Well, if you do not know I do not have an idea either - but lets see
 whether somebody at this list comes up with some solution.

 I would like to build Debian packages to include GT.M into the Debian
 GNU Linux distribution. ...

 I do understand the spirit of the Debian requirement, but I wonder how
 it is applied to gcc.  You must have gcc to compile gcc.

Strictly speaking you only need a reasonable C compiler. Then again
you also need a make, shell, ld, as, ...

It is impossible to make a totaly self contained source and a lot of
wasted effort to get anywhere close. Debian has defined a set of core
packages that one can assume will always be available for building a
package (essential and build-essential packages). That include gcc so
the gcc deb relies on gcc to be available.

But even then gcc first builds a temporary compiler (xgcc) and then
compiles itself with that.

 Any idea how to solve this problem?  Any volunteers to package GT.M?

 Kind regards

   Andreas.

 PS: There was also RFP bug #175968 filed a long time ago which was
 closed because nothing happened in this direction.

There are three things you can do:

1) Do nothing.

Once you have packages GT.M Debian will have a GT.M and you can
Build-Depend on it for future builds.

Big problem with this approach is that if the GT.M package ever breaks
(and it will) you have to bootstrap it manually on all archs to get
back on tarck again.

2) Include prebuild sources and a bootstrap target

Basically you generate the *_ctl.c, merrors_ansi.h, and ttt.c files
and put them somewhere in the source package out of the way of the
clean target. In the bootstrap target you use those prebuild sources
to build your GT.M compiler. But normaly you would just Build-Depend
on the old GT.M.

This is little more than 1 but allows you to get other people to
bootstrap GT.M for you easily if it ever breaks.

3) Include prebuild sources and bootstrap on every build

This basically means you always build twice. First you build from
prebuild sources and then you rebuild from scratch again. This has the
advantage that you don't Build-Depend on the old GT.M. A broken GT.M
upload won't break the chain.

MfG
Goswin

PS: Look at the mono packages for comparison. I think they have the
same problem.


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



Re: pre-building NEW packages, when they only introduce new binary packages

2008-02-12 Thread Joerg Jaspert
On 11293 March 1977, Philippe Cloutier wrote:

Lets jump in here, even if not all points address your mail only.

 If by disfavour you imply that it's intentional that NEW packages
 aren't built before being accepted, I think you're wrong. I think it
 would require not completely trivial changes.

It *is* intentional that NEW queue packages wont get build
automagically.

One of the reasons is that we arent allowed to transfer
packages from NEW outside of the US, unless we accept them into the
archive. (US export laws and stuff and lalala, details can be read in
threads way in the past when crypto in main went live. The basic
knowledge is: NEW has to be in the US and packages not exported unless
they are accepted into the archive).


Now, one might limit the packages to such ones that already got accepted
in the past and just change binary package names. But thats IMO much more
work than it will ever gain us, as you

 - need to sort out which packages are ok to get autobuild from NEW
 - need to make them accessible to the buildds in some way. And only
   them.
 - Have to let buildds and wanna-build look at yet another location for
   packages and build them
 - Have to sort them into the queue somehow. If you go and sort them
   below everything in unstable then you wont have *any* advantage
   from autobuilding NEW, as only faster architectures will ever
   built them, as the slower ones wont get down that far in the queue.

 And last, but also most complicated:

 - Need a way for all the buildd admins to see when they can finally
   sign a build log for a NEW package (after it got accepted), or when
   they need to go and delete it, as it wont ever get accepted, thanks
   to a REJECT. While you can do the first automagical by, lets say,
   looking at incoming.debian.org or packages files, you can't do the
   latter in any good way. Packages might get rejected due to some
   issue in them, and then maintainers are free to upload them with the
   same version to NEW again.[1]

The whole thing is just way less benefit compared to the work one needs
to do for it.

[1] Yes, for REJECTs you can re-use the version number. The archive only
requires new versions when the package got visible for users.

-- 
bye Joerg
 vorlon I realize the risk of portability problems is lower than with certain 
other desktop 
  environments beginning with K that will go unnamed


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



Re: Intend to hijack rrdtool

2008-02-12 Thread David Martínez Moreno
El lunes, 11 de febrero de 2008, Bernd Zeimetz escribió:
 Heya,

 after so many positive responses we've decided to upload rrdtool today,
 also not to loose time as it has to go trough NEW. It is team-maintained
 and living in a git repository now.

 Maintainer: Debian RRDtool Team [EMAIL PROTECTED]
 Vcs-Browser: http://git.snow-crash.org/?p=pkg-rrdtool.git;a=summary
 Vcs-Git: git://git.snow-crash.org/pkg-rrdtool.git/

There *is* a pkg-rrdtool team in alioth, and a public SVN (that you see 
was 
having commits as of two days ago).  I had problems to access my @debian.org 
address and just saw your mails today.


Ender.
-- 
Network engineer
Debian Developer


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


Firewire support in lenny

2008-02-12 Thread Guus Sliepen
On Sun, Feb 03, 2008 at 10:04:18AM +0100, Marc 'HE' Brockschmidt wrote:

 Early March 2008
   Very soft freeze
[...]
 Mid of July 2008
   Full freeze

I guess that means that lenny will be released with linux kernel
2.6.24.x. If that is so, then I kindly request that the debian kernel
packages will be released with the stable Firewire stack modules
compiled.

The current kernel package mainainer(s) has (have) decided to disable
the stable modules in favour of the new and experimental JuJu stack[0].
The new stack has the advantage that is more secure and has a cleaner
code base, but the drawback that a lot of devices and features are not
yet supported. To summarise what the JuJu developers themselves say
about the current state of the new stack[1]:

 Compatibility and stability
 
 At the time of this writing (01/2008), there are still multiple problems
 with the new FireWire kernel driver stack (alias Juju) compared to the
 old stack:
 
  * Lacking userspace integration.
  * Lack of testing. Therefore compatibility issues with some controllers and
external devices.
  * There are still problems with isochronous reception on some OHCI 1.0
variants of VIA VT6306/6307 based cards. Cameras and audio devices are
unusable with the new drivers if you have such a chip.
  * Almost no support for IIDC cameras: Highly experimental support in libdc1394
v2 which works with some luck on only a few OHCI 1.1 controllers.
  * Stability issues of the storage device driver firewire-sbp2 on some
hardware.
  * Missing IP over 1394 support. 
 
 Regarding Linux 2.6.22...2.6.24, the best advice to Linux distributors
 (kernel packagers) as well as to regular users is: Build only the old
 IEEE 1394 drivers.

There are security issues with the stable stack[2], so to protect our
users it is better to load the modules for the JuJu stack by default.
But for those people who need the stable stack to do work, the modules
for the stable stack should be available. There is no reason not to
build both stacks, they don't conflict with each other (except that only
one works if you load both, of course).

I hope the kernel package maintainer(s) will make sure kernel packages
with the stable modules available, but blacklisted by default, will
enter testing soon, so that users of testing get a chance to test it
before lenny is released.


[0] http://bugs.debian.org/436267
[1] http://wiki.linux1394.org/JujuMigration
[2] http://en.wikipedia.org/wiki/FireWire#Security_issues
 
-- 
Met vriendelijke groet / with kind regards,
  Guus Sliepen [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re[2]: Proposition: 'NMU' upload of wxwidgets 2.8

2008-02-12 Thread Vadim Zeitlin
On Tue, 12 Feb 2008 19:07:10 -0600 William Pitcock [EMAIL PROTECTED] wrote:

WP On Wed, 2008-02-13 at 00:55 +0100, Vadim Zeitlin wrote:
WP   And, seeing from your signature that you're both a Debian and Ubuntu
WP  developer, I'd like to notice that Ubuntu doesn't seem to find
WP  anything
WP  catastrophic with shipping wx2.8 which it does since quite some time.
WP 
WP So Ubuntu ships wx2.8. It doesn't matter to us. The fact that Ubuntu
WP does __ is not generally considered a valid argument for
WP justifying that Debian does the same.

 Yes, I know this and it was never my intention to imply that this alone
was sufficient. But it did, and still does, sound strange to me that Ubuntu
people didn't find any of those apparently numerous and unavoidable fatal
bugs which wx2.8 is so full of.

WP What you should be telling us is why we should be shipping wx2.8 over
WP wx2.6 which is considered by many to be more proven than wx2.8.

 Could we please bring any facts in this discussion? I replied to a message
stating, without any supporting arguments, that wx2.8 was unsuitable to be
used. You make a less strong but still fairly significant claim that wx2.6
is considered by many to be better than wx2.8. Could you please tell who
those many are and why do they consider this?

 It's very difficult to prove that you're innocent when you don't know what
do you stand accused of.


WP I am sure if you can come up with valid reasons to do so (especially
WP identifying critical apps which require wx2.8 features is useful here),
WP that we will be happy to provide wx2.8.

 I don't know how critical these apps are but several of them have been
mentioned previously by different people. In particular, if you appreciate
using Debian as a development platform, the fact that CodeBlocks can't be
built on it is IMHO a pretty critical problem.

 And even if a program doesn't require wx2.8 it will still work better with
it than with wx2.6. Moreover, wx2.6 is officially unmaintained since 1.5
years (and in practice for longer) and any future bug fixes will be done
only in wx2.8.

 But more generally I thought that it was in the order of things for old
versions of programs and libraries to be replaced with newer ones in newer
Debian releases. I didn't realize there was a need to provide a special
argument for the upgrade, I rather thought that the problem was that wx2.8
was (erroneously and, AFAICS, due to the efforts of one and single person)
deemed to be too broken to be upgraded to in spite of numerous requests
here and in the BTS to do it. If this is not the case I don't think I can
provide an argument more compelling than the ones already expressed before.

 So, once again, I can only propose to help to bring wx2.8 to Debian. If
this is deemed to be unnecessary -- so be it. I'd just appreciate if the
decision not to include wx2.8 in Debian could be formulated as being due to
lack of reasons to upgrade and not as being due to wx2.8 being totally
unsuitable for application development which is completely slanderous but
unfortunately carries a lot of weight when it comes from the official wx
Debian maintainer.

 Thanks,
VZ


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



Re: Proposition: 'NMU' upload of wxwidgets 2.8

2008-02-12 Thread William Pitcock
Hi,

On Wed, 2008-02-13 at 00:55 +0100, Vadim Zeitlin wrote:
  And, seeing from your signature that you're both a Debian and Ubuntu
 developer, I'd like to notice that Ubuntu doesn't seem to find
 anything
 catastrophic with shipping wx2.8 which it does since quite some time.

So Ubuntu ships wx2.8. It doesn't matter to us. The fact that Ubuntu
does __ is not generally considered a valid argument for
justifying that Debian does the same. Additionally, not all Ubuntu
contributors agree with all decisions made in the Ubuntu development
process.

What you should be telling us is why we _should_ be shipping wx2.8 over
wx2.6 which is considered by many to be more proven than wx2.8. I am
sure if you can come up with valid reasons to do so (especially
identifying critical apps which require wx2.8 features is useful here),
that we will be happy to provide wx2.8.

William


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


Bug#465545: ITP: libpoe-component-server-simplehttpd-perl -- simple HTTP server for POE

2008-02-12 Thread Martín Ferrari
Package: wnpp
Severity: wishlist
Owner: Martín Ferrari [EMAIL PROTECTED]

* Package name: libpoe-component-server-simplehttpd-perl
  Version : 1.40
  Upstream Author : Apocalypse [EMAIL PROTECTED]
* URL : http://search.cpan.org/dist/POE-Component-Server-SimpleHTTP/
* License : Perl (Artistic | GPL-1+)
  Programming Lang: Perl
  Description : simple HTTP server for POE

POE::Component::Server::SimpleHTTP is Perl extension to easily serve HTTP
requests within the POE framework. It supports SSL and pre-forking if
libpoe-component-sslify-perl and libipc-shareable-perl, respectively,
are installed.

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

Kernel: Linux 2.6.23-1-686 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.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: Proposition: 'NMU' upload of wxwidgets 2.8

2008-02-12 Thread Miles Bader
Vadim Zeitlin [EMAIL PROTECTED] writes:
 if you appreciate using Debian as a development platform, the fact
 that CodeBlocks can't be built on it is IMHO a pretty critical
 problem.

Why?

-Miles

-- 
Love is a snowmobile racing across the tundra.  Suddenly it flips over,
pinning you underneath.  At night the ice weasels come.  --Nietzsche


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



Re: Proposition: 'NMU' upload of wxwidgets 2.8

2008-02-12 Thread Vadim Zeitlin
[for some previous context please see the thread starting at
 http://lists.debian.org/debian-devel/2007/12/msg00520.html]

On Sun, 3 Feb 2008 14:19:27 -0800 Steve Langasek wrote:

 Currently, the packages that are asking for wx2.8 are almost all available
 and releasable in earlier versions, built against wx2.6.  Uploading wx2.8 to
 unstable implies that it's suitable for apps to build against, which by all
 accounts it is not.

 As a somewhat interested person, could I please enquire about the sources
of these accounts? As far as we (wxWidgets developers) are concerned, wx2.8
is miles ahead of 2.6 and, while any non-trivial software package has bugs
and wx2.8 is no exception, is certainly not more buggy than 2.6. Moreover
the only claims to the contrary which I've ever seen came (indirectly) from
Ron Lee and we believe that he is purposefully sabotaging the inclusion of
wx in Debian as a kind of revenge for being excluded from wxWidgets
development team. So, once again, if there are any real reasons preventing
wx2.8 from being included in Debian I'd really appreciate if somebody could
finally point them out to us -- and I can promise that we'll do our best to
fix them.

 And, seeing from your signature that you're both a Debian and Ubuntu
developer, I'd like to notice that Ubuntu doesn't seem to find anything
catastrophic with shipping wx2.8 which it does since quite some time. Of
course, maybe Ubuntu is wrong and Debian maintainer is correct and there
are horrible bugs in wx2.8 -- except we've never heard about them, as much
as we'd like to. So if you have any information about the details of the
accounts you mentioned, could you please post it here, to wx-dev@
lists.wxwidgets.org or me privately, as you prefer? But saying that
by all accounts wx2.8 is unsuitable without any supporting arguments is
just not very helpful.

 Thanks in advance,
VZ


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



Re: dash bug which is affecting release goal

2008-02-12 Thread John H. Robinson, IV
Pierre Habouzit wrote:
 
   echo() { /bin/echo $@ }

echo() { /bin/echo ${1+$@}; }

I believe you mean.

-- 
John H. Robinson, IV  [EMAIL PROTECTED]
 http  
WARNING: I cannot be held responsible for the above, sbih.org ( )(:[
as apparently my cats have learned how to type.  spiders.html  


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



Re: Re: pre-building NEW packages, when they only introduce new binary packages

2008-02-12 Thread Philippe Cloutier

Le February 12, 2008 03:19:47 am Joerg Jaspert, vous avez écrit :
 On 11293 March 1977, Philippe Cloutier wrote:

 Lets jump in here, even if not all points address your mail only.

  If by disfavour you imply that it's intentional that NEW packages
  aren't built before being accepted, I think you're wrong. I think it
  would require not completely trivial changes.

 It *is* intentional that NEW queue packages wont get build
 automagically.
[...]

 Now, one might limit the packages to such ones that already got accepted
 in the past and just change binary package names. But thats IMO 
much more

 work than it will ever gain us, as you
[...]
  - Have to sort them into the queue somehow. If you go and sort them
below everything in unstable then you wont have *any* advantage
from autobuilding NEW, as only faster architectures will ever
built them, as the slower ones wont get down that far in the queue.
You do get the advantage that builds for faster archs are ready right 
away. Also, slow archs don't necessarily always have a queue. They just 
need to have more buildds than fast archs. At the moment, only hppa 
and mips* have significant queues, so...at least arm would build sooner.


[...]

 The whole thing is just way less benefit compared to the work one needs
 to do for it.

Thanks.
Of course, it *is* intentional not to throw NEW packages to the buildd 
network in its current form, since it's not designed to support that. I 
was talking about whether it was intentional to autobuild *none* of NEW. 
Your mail clarifies that this is not intentional, we just don't have the 
infrastructure for it, but we agree that even if it's possible to 
autobuild at least parts, this would be low priority work.



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



Openssl in experimental: please test.

2008-02-12 Thread Kurt Roeckx
Hi,

I've uploaded openssl 0.9.8g-6 to experimental.  It adds support for TLS
extensions.  This changes some structs in the public header files
causing ABI changes.  I believe those are harmless and shouldn't cause
any problems.  But I'd like some people to test it before I upload this
to unstable.

Please see bug #462596 for more info.


Kurt


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



Re: toolchain issue makes qt3 drop symbols ?

2008-02-12 Thread Sune Vuorela
On 2008-02-10, Sune Vuorela [EMAIL PROTECTED] wrote:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D465028 - libqt3-mt: Miss=
 ing=20
 weak symbols for stat64 functions

 basically, in qt3 3:3.3.7-9 and earlier, libqt3-mt seems to provide some=20
 symbols:

 $ objdump -T libqt-mt.so.3 | grep stat64
 004d2d9e  w   DF .text  0032  Basestat64
 002f19de  w   DF .text  0032  Basefstat64
 005dcba0  w   DF .text  0032  Baselstat64

I have now tried different things:

Etch chroot with the following packages pulled from unstable:
  binutils console-tools cpp-4.1 g++-4.1 gcc-4.1 gcc-4.1-base
  gcc-4.3-base libc6 libgcc1 libncurses5 libselinux1 libslang2
  libstdc++6 libstdc++6-4.1-dev
  linux-libc-dev tzdata libc6-dev

the stat64 symbols was missing

Etch chroot with linux-libc-dev from unstable installed

the stat64 symbols was around

Etch chroot with backported unstable binutils:

the stat64 symbols was around

Etch chroot with backported binutils build with backported binutils:

the stat64 symbols was around

Etch chroot with backported binutils build with backported binutils and
linux-libc-dev pulled in from unstable:

the stat64 symbols was around


Any advice on how to proceed is still more than welcome

/Sune


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



Re: Bug#436267: Firewire support in lenny

2008-02-12 Thread Guus Sliepen
On Tue, Feb 12, 2008 at 02:38:13PM +0100, maximilian attems wrote:

  My IIDC cameras do not work correctly with a juju-enabled libdc1394
  2.0.1. Furthermore, apart from coriander there are no applications that
  have migrated from libdc1394 v1 to v2.
 
 even with 2.6.24-4 linux images?
 please mention the uname of your tests

I'll see if I can do the tests on a clean install with the latest linux
images tomorrow.

 if you are on amd64 2.6.25-rc1-git2
 - http://photon.itp.tuwien.ac.at/~mattems/
 will build i686 during day (takes much longer)
 
 please if 2.6.24 has troubles feedback on that one.

I'll try both in any case.

[...]
 you can't have both without blacklisting one otherwise udev loads
 randomly from boot to boot other firewire stack. changing blacklist
 files in /etc/modprobe.d is trivial.

I agree. I'm just asking that the old stack will be blacklisted, but
still available in the linux images.

-- 
Met vriendelijke groet / with kind regards,
  Guus Sliepen [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re: Bug#465402: O: directfb -- direct frame buffer graphics

2008-02-12 Thread Fathi Boudra
Hi Guillem,

Otavio Salvador, Luis Mondesi and me would like to adopt directfb and friends.

cheers,

Fathi


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



Re: Bug#465369: ITP: golearn -- Debian educational browser

2008-02-12 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

clone 465369 -1
reassign -1 goplay
retitle -1 goplay: Please avoid Debian in short description
severity -1 minor
thanks

On Tue, Feb 12, 2008 at 07:01:58AM +0100, Christian Perrier wrote:
Quoting Jonas Smedegaard ([EMAIL PROTECTED]):
 Package: wnpp
 Severity: wishlist
 Owner: Jonas Smedegaard [EMAIL PROTECTED]
 
 * Package name: golearn
   Version : 0.2
   Upstream Author : Enrico Zini [EMAIL PROTECTED]  Miriam Ruiz [EMAIL 
 PROTECTED]
 * URL : http://packages.debian.org/goplay
 * License : GPL-2+
   Programming Lang: C++
   Description : Debian educational browser

 I'm not sure whether this is really descriptive of what the program
does.

educational packages search tool using debtags would maybe better fit as the
software browses across the archive to search for packages
(right?). Of course it browses an archive (mroe precisely what's
listed in sources.list) of Debian packages but indeed not necessarily
*the* Debian archive.

Thanks. That makes good sense to me (as most if not all postings I have 
ever read from you!).

I am all in favor of promoting software reuse - even beyond Debian.



That will probably bring the debate about branding here (explicitely
mention Debian) but I would at least support moving the mention of
Debian to the long description.

At least it probably applies to its origin package: GoPlay!

I've now cloned this bugreport. What do you say, Enrico and Miriam?


  - Jonas

- -- 
Jonas Smedegaard   [EMAIL PROTECTED]   http://www.jones.dk/~jonas/
IT-guide dr. Jones[EMAIL PROTECTED]   http://dr.jones.dk/+45 40843136
Debian GNU/Linux[EMAIL PROTECTED]   http://www.debian.org/
GnuPG(1024D/C02440B8): 9A98 C6EB C098 9ED0 3085  ECA9 9FB0 DB32 C024 40B8
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHsaM8n7DbMsAkQLgRAj+cAJ9cmyCl4iIIlaQfHCxHK6T7KEG/eQCgnyc9
UN27JLlLOEE+z+NY+EIz+EI=
=EKkj
-END PGP SIGNATURE-


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



Re: Openssl in experimental: please test.

2008-02-12 Thread Steve Langasek
On Tue, Feb 12, 2008 at 08:54:26PM +0100, Kurt Roeckx wrote:

 I've uploaded openssl 0.9.8g-6 to experimental.  It adds support for TLS
 extensions.  This changes some structs in the public header files
 causing ABI changes.  I believe those are harmless and shouldn't cause
 any problems.  But I'd like some people to test it before I upload this
 to unstable.

 Please see bug #462596 for more info.

FWIW, I expect that this is a waste of time.  Packages in experimental don't
get any significant amount of testing, and if any packages are affected by
the ABI change, it's going to be lesser-used packages which are doing
relatively naughty things with OpenSSL structs.

So I highly recommend uploading this to unstable ASAP, since the only thing
that's likely to get you sensible feedback is a reasonable length of time
spent in unstable.

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


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



Re: Bug#457263: dialog: Please build with -fPIC

2008-02-12 Thread Santiago Vila
On Mon, 11 Feb 2008, Josselin Mouette wrote:

 Le mardi 05 février 2008 à 13:27 +0100, Santiago Vila a écrit :
  Hello.
  
  Policy says I should ask here before I add -fPIC to dialog.
  
  So: May I build libdialog using -fPIC?
  
  My idea is to do this now, document which packages use it in a README,
  and if athe number of packages using it grows, consider the shared library.
 
 It is highly recommended to use a shared library instead of a static
 library for such usage.

Yes, I already know that. It's in policy.

 If this is really not possible,

It is possible, but it'll take time. gnunet is broken in the meantime.

 you should build a libdialog_pic.a with -fPIC and keep libdialog.a
 as is.

What's the rationale for that? Does -ldialog link with libdialog_pic.a
automatically if available? I would like gnunet to require a simple
rebuild whenever I provide the shared library (which will be soon).

My current plan is to build with -fPIC, add Provides: libdialog-dev
which should make gnunet not to be broken anymore (as far as it's rebuilt),
and then provide a proper shared library in a few weeks.

Any serious objection to that?



Re: Bug#436267: Firewire support in lenny

2008-02-12 Thread maximilian attems
On Tue, Feb 12, 2008 at 11:27:29AM +0100, Guus Sliepen wrote:
 On Sun, Feb 03, 2008 at 10:04:18AM +0100, Marc 'HE' Brockschmidt wrote:
 
  Early March 2008
Very soft freeze
 [...]
  Mid of July 2008
Full freeze
 
 I guess that means that lenny will be released with linux kernel
 2.6.24.x. If that is so, then I kindly request that the debian kernel
 packages will be released with the stable Firewire stack modules
 compiled.

no certainly not, we haven't yet discussed the release kernel.
options are 2.6.25 or 2.6.26.
 
 The current kernel package mainainer(s) has (have) decided to disable
 the stable modules in favour of the new and experimental JuJu stack[0].
 The new stack has the advantage that is more secure and has a cleaner
 code base, but the drawback that a lot of devices and features are not
 yet supported. To summarise what the JuJu developers themselves say
 about the current state of the new stack[1]:

[snipp http://wiki.linux1394.org/JujuMigration ]
 
  Regarding Linux 2.6.22...2.6.24, the best advice to Linux distributors
  (kernel packagers) as well as to regular users is: Build only the old
  IEEE 1394 drivers.

you omit the interesting next paragraph:
Building the new drivers is only for advanced users (who for example
want the better speed of firewire-sbp2 relative to sbp2) - and for
distributors who know what is required in userspace to make use of the
new drivers and who can get bugfixes backported and rolled out quickly.

on the kernel side we do backport firewire patches.
for the userspace side i still see lack of action on libdc1394
2008/01/05: The official version 2.0.0 has been released.
2008/01/05: A first set of fixes have been released (version 2.0.1)

why is that not even in unstable/experimental?

 users it is better to load the modules for the JuJu stack by default.
 But for those people who need the stable stack to do work, the modules
 for the stable stack should be available. There is no reason not to
 build both stacks, they don't conflict with each other (except that only
 one works if you load both, of course).
 
 I hope the kernel package maintainer(s) will make sure kernel packages
 with the stable modules available, but blacklisted by default, will
 enter testing soon, so that users of testing get a chance to test it
 before lenny is released.

the progress of the juju stack is very nice, there are quite some
fixes queued for 2.6.25, we will make those snapshots available
soonest.

if the regression list for 2.6.25 is still high we may reconsider
there to build the old stack with blacklisted modules.
that has always been our stated fallback position, currently in the
development phase we encourage testing of the newer stack
on latest linux-images.
 
 
 [0] http://bugs.debian.org/436267
 [1] http://wiki.linux1394.org/JujuMigration
 [2] http://en.wikipedia.org/wiki/FireWire#Security_issues


best regards

-- 
maks


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



Re: Bug#436267: Firewire support in lenny

2008-02-12 Thread Guus Sliepen
On Tue, Feb 12, 2008 at 11:49:22AM +0100, maximilian attems wrote:

  I guess that means that lenny will be released with linux kernel
  2.6.24.x. If that is so, then I kindly request that the debian kernel
  packages will be released with the stable Firewire stack modules
  compiled.
 
 no certainly not, we haven't yet discussed the release kernel.
 options are 2.6.25 or 2.6.26.

Given the pace of kernel releases, I do not believe 2.6.26 is possible
for lenny, but 2.6.25 is possible, although I think it will only be
released a month or two before the final freeze.

   Regarding Linux 2.6.22...2.6.24, the best advice to Linux distributors
   (kernel packagers) as well as to regular users is: Build only the old
   IEEE 1394 drivers.
 
 you omit the interesting next paragraph:
 Building the new drivers is only for advanced users (who for example
 want the better speed of firewire-sbp2 relative to sbp2) - and for
 distributors who know what is required in userspace to make use of the
 new drivers and who can get bugfixes backported and rolled out quickly.
 
 on the kernel side we do backport firewire patches.
 for the userspace side i still see lack of action on libdc1394
 2008/01/05: The official version 2.0.0 has been released.
 2008/01/05: A first set of fixes have been released (version 2.0.1)
 
 why is that not even in unstable/experimental?

libdc1394 2.0.1 is in unstable: http://packages.debian.org/libdc1394-22

My IIDC cameras do not work correctly with a juju-enabled libdc1394
2.0.1. Furthermore, apart from coriander there are no applications that
have migrated from libdc1394 v1 to v2.

 the progress of the juju stack is very nice, there are quite some
 fixes queued for 2.6.25, we will make those snapshots available
 soonest.

That is good to hear.

 if the regression list for 2.6.25 is still high we may reconsider
 there to build the old stack with blacklisted modules.
 that has always been our stated fallback position, currently in the
 development phase we encourage testing of the newer stack
 on latest linux-images.

I do not see why making the old stack available again, but blacklisted
by default, discourages testing of the newer stack. If you have both
available, then yes, users can switch to the new stack more easily, but
at least they will still be using Debian kernel packages, and they can
switch back to the juju stack just as well. If you do not make this
option available, those who have problems with the new stack will have
to compile their own kernels, and then they will not track the Debian
kernel packages anymore.

-- 
Met vriendelijke groet / with kind regards,
  Guus Sliepen [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re: Is Christian Meder MIA?

2008-02-12 Thread Christian Meder
Hi Walter,

sorry for not answering last year.

I'm not completely MIA just terribly slow and very very low profile. I
still intend to update the Debian aegis package.

Sorry again for being unresponsive,


Christian


On Thu, 2008-02-07 at 12:38 +0100, Walter Franzini wrote:
 Hi,
 
 in the past months I've tryied to contact Christian Meder
 ([EMAIL PROTECTED]) without success.  He is the maintainer of
 the aegis packages.
 
 His last upload for aegis is dated 2006-05-14 and in the meantime the
 upstream team has done two stable updates and the release of the next
 major version is imminent, so I'm a bit worried of state of the
 aegis packages in Debian.
 
 thanks
 --
 Walter Franzini
 http://aegis.stepbuild.org/
 
 PGP Public key ID: 1024D/CB3FEB43
 Key fingerprint  : FA26 C33B CAFF 7848 EFEB  7327 96AA 2D57 CB3F EB43
 Key server   : http://www.keyserver.net
 !DSPAM:47aaeeb1136361810014612!
-- 
Christian Meder, email: [EMAIL PROTECTED]

The Way-Seeking Mind of a tenzo is actualized 
by rolling up your sleeves.

(Eihei Dogen Zenji)


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



Re: Bootstrapping GT.M

2008-02-12 Thread Petter Reinholdtsen

[Andreas Tille]
 Any idea how to solve this problem?  Any volunteers to package GT.M?

What about providing the generated files in the initial upload?  The
files can them be used to bootstrap the system on the autobuilders.
The initial upload can't build-depend on itself, but when it is built,
the next upload can build-depend on the previous version of itself.

Gcc compiles itself several times during bootstrapping, first a
minimal version that can use almost any C compiler, then itself with
the minimal version, and finally itself with the full version of
itself.  Perhaps something similar should be done with GT.M?  I
realize that the situation is different as there is no M compiler
included by default in Debian.

Happy hacking,
-- 
Petter Reinholdtsen


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



Re: Bug#457263: dialog: Please build with -fPIC

2008-02-12 Thread Daniel Baumann
Santiago Vila wrote:
 Any serious objection to that?

no, fine by me.

-- 
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: Bug#436267: Firewire support in lenny

2008-02-12 Thread maximilian attems
[ stripping cc list to relevant bug report + devel for general info ]

On Tue, Feb 12, 2008 at 12:31:43PM +0100, Guus Sliepen wrote:
 On Tue, Feb 12, 2008 at 11:49:22AM +0100, maximilian attems wrote:
 
 Given the pace of kernel releases, I do not believe 2.6.26 is possible
 for lenny, but 2.6.25 is possible, although I think it will only be
 released a month or two before the final freeze.

that discussion belongs to another thread, but don't be too pessimistic.
 
[snipp]
 libdc1394 2.0.1 is in unstable: http://packages.debian.org/libdc1394-22

cool.
sorry rmadison wasn't showing it to me yet.
 
 My IIDC cameras do not work correctly with a juju-enabled libdc1394
 2.0.1. Furthermore, apart from coriander there are no applications that
 have migrated from libdc1394 v1 to v2.

even with 2.6.24-4 linux images?
please mention the uname of your tests
 
  the progress of the juju stack is very nice, there are quite some
  fixes queued for 2.6.25, we will make those snapshots available
  soonest.
 
 That is good to hear.

if you are on amd64 2.6.25-rc1-git2
- http://photon.itp.tuwien.ac.at/~mattems/
will build i686 during day (takes much longer)

please if 2.6.24 has troubles feedback on that one.
 
  if the regression list for 2.6.25 is still high we may reconsider
  there to build the old stack with blacklisted modules.
  that has always been our stated fallback position, currently in the
  development phase we encourage testing of the newer stack
  on latest linux-images.
 
 I do not see why making the old stack available again, but blacklisted
 by default, discourages testing of the newer stack. If you have both
 available, then yes, users can switch to the new stack more easily, but
 at least they will still be using Debian kernel packages, and they can
 switch back to the juju stack just as well. If you do not make this
 option available, those who have problems with the new stack will have
 to compile their own kernels, and then they will not track the Debian
 kernel packages anymore.

you can't have both without blacklisting one otherwise udev loads
randomly from boot to boot other firewire stack. changing blacklist
files in /etc/modprobe.d is trivial.
 


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



Accepted dfb++ 1.0.0-4 (source i386)

2008-02-12 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 09:03:30 +0200
Source: dfb++
Binary: libdfb++-1.0-0 libdfb++-dev
Architecture: source i386
Version: 1.0.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Guillem Jover [EMAIL PROTECTED]
Description: 
 libdfb++-1.0-0 - c++ bindings for DirectFB - shared library
 libdfb++-dev - c++ bindings for DirectFB - development files
Changes: 
 dfb++ (1.0.0-4) unstable; urgency=low
 .
   * Orphan package, set maintainer to Debian QA Group.
   * Properly serialize patch and configure targets to support parallel builds.
   * Update copyright information.
   * Update patch Status pseudo-field.
Files: 
 d0eb0b73732754593bdaab3487db4a84 787 graphics optional dfb++_1.0.0-4.dsc
 cdc60375551395ac3257f588dd1cfc0f 5970 graphics optional dfb++_1.0.0-4.diff.gz
 48da582aa93321a9c613c79fd834450e 42350 libs optional 
libdfb++-1.0-0_1.0.0-4_i386.deb
 6b33a6c86541e9d23a8edaefbbf13628 53826 libdevel optional 
libdfb++-dev_1.0.0-4_i386.deb

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

iD8DBQFHsUVNuW9ciZ2SjJsRAlvwAJ4uMJ2r52n8inOrjkrsP5/FGx8xeQCdENR3
jI9+e5nq09hwweAQ0DHU6LA=
=ElW9
-END PGP SIGNATURE-


Accepted:
dfb++_1.0.0-4.diff.gz
  to pool/main/d/dfb++/dfb++_1.0.0-4.diff.gz
dfb++_1.0.0-4.dsc
  to pool/main/d/dfb++/dfb++_1.0.0-4.dsc
libdfb++-1.0-0_1.0.0-4_i386.deb
  to pool/main/d/dfb++/libdfb++-1.0-0_1.0.0-4_i386.deb
libdfb++-dev_1.0.0-4_i386.deb
  to pool/main/d/dfb++/libdfb++-dev_1.0.0-4_i386.deb


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



Accepted fusionsound 1.0.0-3 (source all i386)

2008-02-12 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 08:58:14 +0200
Source: fusionsound
Binary: libfusionsound-1.0-0 libfusionsound-dev libfusionsound-doc
Architecture: source all i386
Version: 1.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Guillem Jover [EMAIL PROTECTED]
Description: 
 libfusionsound-1.0-0 - audio sub system for multiple applications - shared 
libraries
 libfusionsound-dev - audio sub system for multiple applications - development 
files
 libfusionsound-doc - audio sub system for multiple applications - documentation
Changes: 
 fusionsound (1.0.0-3) unstable; urgency=low
 .
   * Orphan package, set maintainer to Debian QA Group.
   * Update patch Status pseudo-field.
 - debian/patches/01_install_manual.patch: Refresh.
   * Update copyright information.
   * Properly serialize patch and configure targets to support parallel builds.
Files: 
 a23d7ee543158f22c559292a8f3c5dc0 893 sound optional fusionsound_1.0.0-3.dsc
 d7bfde1a2bb1a9a07d546ad6c6d6af0a 29442 sound optional 
fusionsound_1.0.0-3.diff.gz
 a91ca5baebfeb1c29f27a3c133c1c9fa 39430 doc optional 
libfusionsound-doc_1.0.0-3_all.deb
 54f374d86c388d0e9d69bc1508424ec8 107938 libs optional 
libfusionsound-1.0-0_1.0.0-3_i386.deb
 2ffc4a9168faae8eb64b1acfa42dcae0 122874 libdevel optional 
libfusionsound-dev_1.0.0-3_i386.deb

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

iD8DBQFHsURmuW9ciZ2SjJsRAtVbAKCmohqIcYywMr2LOG0ZU0xGRd+xrgCg0s07
TP1QEDt6k1cgN8uZtHsTY8s=
=KJdG
-END PGP SIGNATURE-


Accepted:
fusionsound_1.0.0-3.diff.gz
  to pool/main/f/fusionsound/fusionsound_1.0.0-3.diff.gz
fusionsound_1.0.0-3.dsc
  to pool/main/f/fusionsound/fusionsound_1.0.0-3.dsc
libfusionsound-1.0-0_1.0.0-3_i386.deb
  to pool/main/f/fusionsound/libfusionsound-1.0-0_1.0.0-3_i386.deb
libfusionsound-dev_1.0.0-3_i386.deb
  to pool/main/f/fusionsound/libfusionsound-dev_1.0.0-3_i386.deb
libfusionsound-doc_1.0.0-3_all.deb
  to pool/main/f/fusionsound/libfusionsound-doc_1.0.0-3_all.deb


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



Accepted loop-aes 3.2b-5 (source all)

2008-02-12 Thread Max Vozeler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 09:16:17 +0100
Source: loop-aes
Binary: loop-aes-source loop-aes-testsuite
Architecture: source all
Version: 3.2b-5
Distribution: unstable
Urgency: low
Maintainer: Debian Loop-AES Team [EMAIL PROTECTED]
Changed-By: Max Vozeler [EMAIL PROTECTED]
Description: 
 loop-aes-source - source for loop-AES encryption modules
 loop-aes-testsuite - test suite for loop-AES encryption modules
Closes: 465385
Changes: 
 loop-aes (3.2b-5) unstable; urgency=low
 .
   * Restore debian/source/control (closes: #465385)
Files: 
 6a1d02f4b336ba3359162953b3bf10b7 815 admin optional loop-aes_3.2b-5.dsc
 8cb60633ee14f3539c0191d396d8ed04 11492 admin optional loop-aes_3.2b-5.diff.gz
 e6b218c7fdbb66108582678fb0fabec5 270742 admin optional 
loop-aes-source_3.2b-5_all.deb
 a259f86fa2f569040233409805856680 23028 admin optional 
loop-aes-testsuite_3.2b-5_all.deb

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

iQCVAwUBR7FZCqoJyPlcq6GYAQKg9AP9Gtd6r4TUr5nAGZXUKVqOm/myYsmCE01H
DaxpX/ER3J+8Fv6ZPHdzZsRNXIItUYdT1f+2ppH3J0haE4DcltkPp3tYf6TO/R2f
CxY6BJBrBJTNs4kaydo4rCUg6L5IQP2RTgPzAsAaDSd7yJkh5L5mYhuIBhtqPpLU
hl7gH/qIfRQ=
=+jFD
-END PGP SIGNATURE-


Accepted:
loop-aes-source_3.2b-5_all.deb
  to pool/main/l/loop-aes/loop-aes-source_3.2b-5_all.deb
loop-aes-testsuite_3.2b-5_all.deb
  to pool/main/l/loop-aes/loop-aes-testsuite_3.2b-5_all.deb
loop-aes_3.2b-5.diff.gz
  to pool/main/l/loop-aes/loop-aes_3.2b-5.diff.gz
loop-aes_3.2b-5.dsc
  to pool/main/l/loop-aes/loop-aes_3.2b-5.dsc


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



Accepted xfce4-dev-tools 4.4.0.1-3 (source all)

2008-02-12 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 09:48:25 +0100
Source: xfce4-dev-tools
Binary: xfce4-dev-tools
Architecture: source all
Version: 4.4.0.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers [EMAIL PROTECTED]
Changed-By: Yves-Alexis Perez [EMAIL PROTECTED]
Description: 
 xfce4-dev-tools - Script to help building Xfce from svn
Closes: 465380
Changes: 
 xfce4-dev-tools (4.4.0.1-3) unstable; urgency=low
 .
   * debian/patches: 01-fix-bashism-in-xdt-commit renamed and completed to
 really fix bashisms.closes: #465380
   * debian/control:
 - update standards version to 3.7.3.
 - update my email address.
Files: 
 b8d961fee9f4d178ee378d9da9b7da36 990 devel optional 
xfce4-dev-tools_4.4.0.1-3.dsc
 530586cc7d2c1ec0dec1dabb334fb229 2207 devel optional 
xfce4-dev-tools_4.4.0.1-3.diff.gz
 ab2df772b3dbdc0f3657c5a2061a2160 16620 devel optional 
xfce4-dev-tools_4.4.0.1-3_all.deb

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

iD8DBQFHsV3zTUTAIMXAW64RAoMNAJ4y13o2unDdgV7jEH6bTndmVaBraACfUbO/
FD8TGZLzyWthX0l3GrOkvkc=
=QFwJ
-END PGP SIGNATURE-


Accepted:
xfce4-dev-tools_4.4.0.1-3.diff.gz
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-3.diff.gz
xfce4-dev-tools_4.4.0.1-3.dsc
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-3.dsc
xfce4-dev-tools_4.4.0.1-3_all.deb
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-3_all.deb


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



Accepted directfb 1.0.1-7 (source i386)

2008-02-12 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 09:31:01 +0200
Source: directfb
Binary: libdirectfb-1.0-0 libdirectfb-1.0-0-udeb libdirectfb-bin 
libdirectfb-bin-udeb libdirectfb-extra libdirectfb-dev
Architecture: source i386
Version: 1.0.1-7
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Guillem Jover [EMAIL PROTECTED]
Description: 
 libdirectfb-1.0-0 - direct frame buffer graphics - shared libraries
 libdirectfb-1.0-0-udeb - direct frame buffer graphics - shared libraries (udeb)
 libdirectfb-bin - direct frame buffer graphics - binaries
 libdirectfb-bin-udeb - direct frame buffer graphics - binaries (udeb)
 libdirectfb-dev - direct frame buffer graphics library - development files
 libdirectfb-extra - direct frame buffer graphics - extra providers
Closes: 464222
Changes: 
 directfb (1.0.1-7) unstable; urgency=low
 .
   * Orphan package, set maintainer to Debian QA Group.
   * Replace libts0-dev with libts-dev in Build-Depends. (Closes: #464222)
   * Properly serialize patch and configure targets to support parallel builds.
   * Patch cleanup:
 - debian/patches/09_link_static_as-needed.patch: Merged into ...
 - debian/patches/08_link_static_ar.patch: ... this.
 - debian/patches/05_link_dynamic.patch: Update Status pseudo-fields:
 - debian/patches/70_linux_fusion.patch: Likewise.
   * Update copyright information.
   * Remove Vcs information from debian/copyright (it's now in debian/control).
Files: 
 31a7b8ed687ec4aa05ee9367d30d292f 1115 libs optional directfb_1.0.1-7.dsc
 eaf7716e901c7025d66bf62958746009 18790 libs optional directfb_1.0.1-7.diff.gz
 e0ddb630494c260a184f6423ffef6410 1134932 libs optional 
libdirectfb-1.0-0_1.0.1-7_i386.deb
 2a737d443a0027d1b9ee7238b240f43b 359218 debian-installer optional 
libdirectfb-1.0-0-udeb_1.0.1-7_i386.udeb
 f39597cde79b6d5b9737b92ea8f26955 39342 libs optional 
libdirectfb-bin_1.0.1-7_i386.deb
 28e4ffdb98d7a760fd29fefbebc741c3 5426 debian-installer optional 
libdirectfb-bin-udeb_1.0.1-7_i386.udeb
 7ac5d019b266d1f7177929d4e9fac373 29256 libs optional 
libdirectfb-extra_1.0.1-7_i386.deb
 a89b76c49dfaf0cbc6521aa2bf0aadad 767620 libdevel optional 
libdirectfb-dev_1.0.1-7_i386.deb

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

iD8DBQFHsU7suW9ciZ2SjJsRAvGQAJ9603h577FjJZIksDrtinrc7uq7NwCfeWdw
Bs6V8h7DSzJR8LyhDKBijWg=
=mub1
-END PGP SIGNATURE-


Accepted:
directfb_1.0.1-7.diff.gz
  to pool/main/d/directfb/directfb_1.0.1-7.diff.gz
directfb_1.0.1-7.dsc
  to pool/main/d/directfb/directfb_1.0.1-7.dsc
libdirectfb-1.0-0-udeb_1.0.1-7_i386.udeb
  to pool/main/d/directfb/libdirectfb-1.0-0-udeb_1.0.1-7_i386.udeb
libdirectfb-1.0-0_1.0.1-7_i386.deb
  to pool/main/d/directfb/libdirectfb-1.0-0_1.0.1-7_i386.deb
libdirectfb-bin-udeb_1.0.1-7_i386.udeb
  to pool/main/d/directfb/libdirectfb-bin-udeb_1.0.1-7_i386.udeb
libdirectfb-bin_1.0.1-7_i386.deb
  to pool/main/d/directfb/libdirectfb-bin_1.0.1-7_i386.deb
libdirectfb-dev_1.0.1-7_i386.deb
  to pool/main/d/directfb/libdirectfb-dev_1.0.1-7_i386.deb
libdirectfb-extra_1.0.1-7_i386.deb
  to pool/main/d/directfb/libdirectfb-extra_1.0.1-7_i386.deb


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



Accepted kernel-patch-openvz 028.51.3d2 (source all)

2008-02-12 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 08:36:08 +0100
Source: kernel-patch-openvz
Binary: kernel-patch-openvz
Architecture: source all
Version: 028.51.3d2
Distribution: unstable
Urgency: high
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 kernel-patch-openvz - server virtualization solution - kernel patch
Changes: 
 kernel-patch-openvz (028.51.3d2) unstable; urgency=high
 .
   * Removed one chunk of the patch in order to apply to latest security
 update for DSA 1494-1.
Files: 
 2b1276900b4d83540ebc13684c6d50a4 582 devel extra 
kernel-patch-openvz_028.51.3d2.dsc
 13498369e63898604cb8f743b453ae18 1410081 devel extra 
kernel-patch-openvz_028.51.3d2.tar.gz
 d6736b8ba9863c1738d78833e43bf81d 1415972 devel extra 
kernel-patch-openvz_028.51.3d2_all.deb

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

iD8DBQFHsUy/GKGxzw/lPdkRAtTuAJ97JHgIiC7fxmx7KXWq8dbUvPqTugCeIrzo
gQxGIYLUsqP71LKlYn4JlFI=
=GZuS
-END PGP SIGNATURE-


Accepted:
kernel-patch-openvz_028.51.3d2.dsc
  to pool/main/k/kernel-patch-openvz/kernel-patch-openvz_028.51.3d2.dsc
kernel-patch-openvz_028.51.3d2.tar.gz
  to pool/main/k/kernel-patch-openvz/kernel-patch-openvz_028.51.3d2.tar.gz
kernel-patch-openvz_028.51.3d2_all.deb
  to pool/main/k/kernel-patch-openvz/kernel-patch-openvz_028.51.3d2_all.deb


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



Accepted xfce4-dev-tools 4.4.0.1-4 (source all)

2008-02-12 Thread Simon Huggins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 08:56:49 +
Source: xfce4-dev-tools
Binary: xfce4-dev-tools
Architecture: source all
Version: 4.4.0.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers [EMAIL PROTECTED]
Changed-By: Simon Huggins [EMAIL PROTECTED]
Description: 
 xfce4-dev-tools - Script to help building Xfce from svn
Changes: 
 xfce4-dev-tools (4.4.0.1-4) unstable; urgency=low
 .
   * Fix /dev/nulli - /dev/null in the patch to fix bashisms.
Files: 
 d8291ee6ba5a4d88372d9bfcdcdab9fe 990 devel optional 
xfce4-dev-tools_4.4.0.1-4.dsc
 33530dfc69b188ab0a0c5a3731c54f1e 2235 devel optional 
xfce4-dev-tools_4.4.0.1-4.diff.gz
 c8e97a15868d46f5bb8fe838efb23e07 16658 devel optional 
xfce4-dev-tools_4.4.0.1-4_all.deb

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

iD8DBQFHsWXnTUTAIMXAW64RArmsAKCzwbcOIno/pgtrhaJiOlxqLmCwdwCgipK8
/CdlzIS+JJmudGFhzEnFuw0=
=5OJ9
-END PGP SIGNATURE-


Accepted:
xfce4-dev-tools_4.4.0.1-4.diff.gz
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-4.diff.gz
xfce4-dev-tools_4.4.0.1-4.dsc
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-4.dsc
xfce4-dev-tools_4.4.0.1-4_all.deb
  to pool/main/x/xfce4-dev-tools/xfce4-dev-tools_4.4.0.1-4_all.deb


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



Accepted lineak-xosdplugin 1:0.9-5 (source i386)

2008-02-12 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 11:16:20 +0100
Source: lineak-xosdplugin
Binary: lineak-xosdplugin
Architecture: source i386
Version: 1:0.9-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Patrick Winnertz [EMAIL PROTECTED]
Description: 
 lineak-xosdplugin - LinEAK On-Screen Display plugin
Closes: 417370
Changes: 
 lineak-xosdplugin (1:0.9-5) unstable; urgency=low
 .
   * QA Upload
   * Add patch fix-gcc43-ftbfs.dpatch (Closes: #417370)
 + Added build dep dpatch
 + Modified rules to use dpatch
   * Bump Standardsversion to 3.7.3
   * Remove Homepage from Description and add it correctly.
   * Fix some lintian warnings/errors:
 + Move Section: in control to the right place
 + Don't ignore make clean errors in clean target
 + s/copyright/Copyright/ in debian/copyright in order to
   make lintian silent.
   * Bump debhelper build-depends to 5
 + set debian/compat to 5
Files: 
 d5b67dc442974c2dbec39b1287ddeb85 833 x11 optional lineak-xosdplugin_0.9-5.dsc
 a1b22018b5aed9875dc3697d31ca580d 3534 x11 optional 
lineak-xosdplugin_0.9-5.diff.gz
 c5a9cf6c3d6ff40d7e30187e830e0841 16976 x11 optional 
lineak-xosdplugin_0.9-5_i386.deb

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

iD8DBQFHsXdxzgm26bkTFDoRAl9zAKDPuA2Bb5UZZ4YQ5Pjd4i8gO+j8LgCgif3o
AGfW5b0UOhK1TM10NLEZ9Nc=
=e3j2
-END PGP SIGNATURE-


Accepted:
lineak-xosdplugin_0.9-5.diff.gz
  to pool/main/l/lineak-xosdplugin/lineak-xosdplugin_0.9-5.diff.gz
lineak-xosdplugin_0.9-5.dsc
  to pool/main/l/lineak-xosdplugin/lineak-xosdplugin_0.9-5.dsc
lineak-xosdplugin_0.9-5_i386.deb
  to pool/main/l/lineak-xosdplugin/lineak-xosdplugin_0.9-5_i386.deb


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



Accepted strongswan 4.1.10-1 (source i386)

2008-02-12 Thread Rene Mayrhofer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 07 Feb 2008 15:15:14 +0100
Source: strongswan
Binary: strongswan
Architecture: source i386
Version: 4.1.10-1
Distribution: unstable
Urgency: low
Maintainer: Rene Mayrhofer [EMAIL PROTECTED]
Changed-By: Rene Mayrhofer [EMAIL PROTECTED]
Description: 
 strongswan - IPSec utilities for strongSwan
Closes: 455711 463321
Changes: 
 strongswan (4.1.10-1) unstable; urgency=low
 .
   * New upstream release.
 Closes: #455711: New upstream version 4.1.9
   * Updated Japanese debconf translation.
 Closes: #463321: strongswan: [INTL:ja] Update po-debconf template
  translation (ja.po)
Files: 
 636a85b1c23fadccfc5140e8d57a2c1b 798 net optional strongswan_4.1.10-1.dsc
 b46b2d5de70d18890c7595bdfbe01619 2779895 net optional 
strongswan_4.1.10.orig.tar.gz
 60b48adf63bc258997e02cf948696445 52844 net optional strongswan_4.1.10-1.diff.gz
 61c10a175f95b037e92fdc7714bd7144 1061312 net optional 
strongswan_4.1.10-1_i386.deb

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

iD8DBQFHsewUq7SPDcPCS94RAjqQAKDaFseHuD7imQt7u94OqPm9SxDDkQCgn5+6
3SY+S3HdhHsijNnAyjhUESQ=
=Dj56
-END PGP SIGNATURE-


Accepted:
strongswan_4.1.10-1.diff.gz
  to pool/main/s/strongswan/strongswan_4.1.10-1.diff.gz
strongswan_4.1.10-1.dsc
  to pool/main/s/strongswan/strongswan_4.1.10-1.dsc
strongswan_4.1.10-1_i386.deb
  to pool/main/s/strongswan/strongswan_4.1.10-1_i386.deb
strongswan_4.1.10.orig.tar.gz
  to pool/main/s/strongswan/strongswan_4.1.10.orig.tar.gz


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



Accepted libauthen-dechpwd-perl 2.002-3 (source amd64)

2008-02-12 Thread Ivan Kohler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 10:35:18 -0800
Source: libauthen-dechpwd-perl
Binary: libauthen-dechpwd-perl
Architecture: source amd64
Version: 2.002-3
Distribution: unstable
Urgency: low
Maintainer: Ivan Kohler [EMAIL PROTECTED]
Changed-By: Ivan Kohler [EMAIL PROTECTED]
Description: 
 libauthen-dechpwd-perl - Perl module for DEC VMS password hashing
Closes: 464909
Changes: 
 libauthen-dechpwd-perl (2.002-3) unstable; urgency=low
 .
   * Update rules file based on current dh-make-perl template for
 Module-Build.xs (closes: Bug#464909).  Yow.
Files: 
 13cbb21b5f4f6b39cbd9689dfca03965 660 perl optional 
libauthen-dechpwd-perl_2.002-3.dsc
 5daa7e8b86f836b2a0b9d6a88b7ac5b8 2869 perl optional 
libauthen-dechpwd-perl_2.002-3.diff.gz
 4f3c58a535c0d8c28140c2596ed4afdc 13708 perl optional 
libauthen-dechpwd-perl_2.002-3_amd64.deb

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

iD8DBQFHsef9gYcvm1TBwckRAgCGAJ972xm0YXCvhsw/oFhEXSsJFsj0tACbBVaW
eoVJbDkL3OBbWkXPs1TgkS8=
=apw2
-END PGP SIGNATURE-


Accepted:
libauthen-dechpwd-perl_2.002-3.diff.gz
  to 
pool/main/liba/libauthen-dechpwd-perl/libauthen-dechpwd-perl_2.002-3.diff.gz
libauthen-dechpwd-perl_2.002-3.dsc
  to pool/main/liba/libauthen-dechpwd-perl/libauthen-dechpwd-perl_2.002-3.dsc
libauthen-dechpwd-perl_2.002-3_amd64.deb
  to 
pool/main/liba/libauthen-dechpwd-perl/libauthen-dechpwd-perl_2.002-3_amd64.deb


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



Accepted libcrypt-eksblowfish-perl 0.003-3 (source amd64)

2008-02-12 Thread Ivan Kohler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 10:00:06 -0800
Source: libcrypt-eksblowfish-perl
Binary: libcrypt-eksblowfish-perl
Architecture: source amd64
Version: 0.003-3
Distribution: unstable
Urgency: low
Maintainer: Ivan Kohler [EMAIL PROTECTED]
Changed-By: Ivan Kohler [EMAIL PROTECTED]
Description: 
 libcrypt-eksblowfish-perl - Perl module implementing the Eksblowfish block 
cipher
Closes: 464908
Changes: 
 libcrypt-eksblowfish-perl (0.003-3) unstable; urgency=low
 .
   * Update rules file based on current dh-make-perl template for
 Module-Build.xs (closes: Bug#464908).  Yow.
Files: 
 d034b66f538438813d14e7c5a34b6746 690 perl optional 
libcrypt-eksblowfish-perl_0.003-3.dsc
 1c301eb0e52860cc42c7c9828ec5d6c0 3162 perl optional 
libcrypt-eksblowfish-perl_0.003-3.diff.gz
 cd144ce16ae7b24a8cf4a660b2fcb9d8 49040 perl optional 
libcrypt-eksblowfish-perl_0.003-3_amd64.deb

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

iD8DBQFHseW+gYcvm1TBwckRAvL2AKCOMN0aZhj1Jl0xGGy1xdnBAWC2PQCeJatK
yf32Hr8ERdWzsmKJ7KxrEIs=
=om8B
-END PGP SIGNATURE-


Accepted:
libcrypt-eksblowfish-perl_0.003-3.diff.gz
  to 
pool/main/libc/libcrypt-eksblowfish-perl/libcrypt-eksblowfish-perl_0.003-3.diff.gz
libcrypt-eksblowfish-perl_0.003-3.dsc
  to 
pool/main/libc/libcrypt-eksblowfish-perl/libcrypt-eksblowfish-perl_0.003-3.dsc
libcrypt-eksblowfish-perl_0.003-3_amd64.deb
  to 
pool/main/libc/libcrypt-eksblowfish-perl/libcrypt-eksblowfish-perl_0.003-3_amd64.deb


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



Accepted redhat-cluster 2.20080212-1 (source all amd64)

2008-02-12 Thread Frederik Schüler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 22:46:46 +0100
Source: redhat-cluster
Binary: redhat-cluster-suite cman libcman2 libcman-dev libdlm2 libdlm-dev 
gfs-tools gfs2-tools gnbd-client gnbd-server rgmanager redhat-cluster-source
Architecture: source amd64 all
Version: 2.20080212-1
Distribution: unstable
Urgency: low
Maintainer: Debian Kernel Team [EMAIL PROTECTED]
Changed-By: Frederik Schüler [EMAIL PROTECTED]
Description: 
 cman   - cluster manager
 gfs-tools  - global file system tools
 gfs2-tools - global file system 2 tools (EXPERIMENTAL)
 gnbd-client - global network block device - client tools
 gnbd-server - global network block device - server tools
 libcman-dev - cluster manager - development files
 libcman2   - cluster manager - libraries
 libdlm-dev - distributed lock manager - development files
 libdlm2- distributed lock manager - library
 redhat-cluster-source - Red Hat cluster suite - kernel modules source
 redhat-cluster-suite - Red Hat cluster suite (meta package)
 rgmanager  - clustered resource group manager
Changes: 
 redhat-cluster (2.20080212-1) unstable; urgency=low
 .
   * New upstream CVS snapshot.
   * Merge changes from Ubuntu:
 - debian/copyright: add copyright info and shut up lintian a bit.
 - link mount.gfs man page to mount.gfs2.
 - debian/rules: fix order of dh_ to get library dh snippets in place.
 - debian/TODO list.
 - drop unrequired maintainer scripts.
 - debian/control: fix libdlm-dev depends.
Files: 
 2b844303c1c3439c29a375bb18392af2 1174 admin optional 
redhat-cluster_2.20080212-1.dsc
 1de788be56ac16601b8566581f5c13b2 1760832 admin optional 
redhat-cluster_2.20080212.orig.tar.gz
 92534f92f398d46b0b26c20195046a5a 14604 admin optional 
redhat-cluster_2.20080212-1.diff.gz
 bd3bc7c306b7d0043ca261eab4935a0e 474828 admin optional 
cman_2.20080212-1_amd64.deb
 7068c3e91b21fb8033dc384e8079e32e 11836 libs optional 
libcman2_2.20080212-1_amd64.deb
 939377c7f6b6bb4c82563578a2c02d02 15828 libdevel optional 
libcman-dev_2.20080212-1_amd64.deb
 1403fe263fb51074f03d4743ff9e15a9 16462 libs optional 
libdlm2_2.20080212-1_amd64.deb
 479825a62d9b10389777944b53524225 32324 libdevel optional 
libdlm-dev_2.20080212-1_amd64.deb
 b7203373a8bf27359d532a5769f9c349 219560 admin optional 
gfs-tools_2.20080212-1_amd64.deb
 2dbc2319e065cbd0cd2f3f01ddc49e86 307192 admin optional 
gfs2-tools_2.20080212-1_amd64.deb
 2289ba64bbbc3efa84c4241fe632acbf 55652 admin optional 
gnbd-client_2.20080212-1_amd64.deb
 963b67a0ef091aee8dce25951c5bc580 51728 admin optional 
gnbd-server_2.20080212-1_amd64.deb
 5b6cad2b3a7376090ef735584ce658b5 286914 admin optional 
rgmanager_2.20080212-1_amd64.deb
 4849f8f1bb0d30f94e4e28f7e9dfa61d 5770 admin optional 
redhat-cluster-suite_2.20080212-1_all.deb
 b67ac0117b103c076a241f673106fac3 172480 admin optional 
redhat-cluster-source_2.20080212-1_all.deb

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

iD8DBQFHshdJ6n7So0GVSSARAvdfAKCS79uk4VImgsrU2WLQ0ApnsXHNowCgk6xV
X9iZhJjboTPy8yr7DLEQsfA=
=MUQQ
-END PGP SIGNATURE-


Accepted:
cman_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/cman_2.20080212-1_amd64.deb
gfs-tools_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/gfs-tools_2.20080212-1_amd64.deb
gfs2-tools_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/gfs2-tools_2.20080212-1_amd64.deb
gnbd-client_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/gnbd-client_2.20080212-1_amd64.deb
gnbd-server_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/gnbd-server_2.20080212-1_amd64.deb
libcman-dev_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/libcman-dev_2.20080212-1_amd64.deb
libcman2_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/libcman2_2.20080212-1_amd64.deb
libdlm-dev_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/libdlm-dev_2.20080212-1_amd64.deb
libdlm2_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/libdlm2_2.20080212-1_amd64.deb
redhat-cluster-source_2.20080212-1_all.deb
  to pool/main/r/redhat-cluster/redhat-cluster-source_2.20080212-1_all.deb
redhat-cluster-suite_2.20080212-1_all.deb
  to pool/main/r/redhat-cluster/redhat-cluster-suite_2.20080212-1_all.deb
redhat-cluster_2.20080212-1.diff.gz
  to pool/main/r/redhat-cluster/redhat-cluster_2.20080212-1.diff.gz
redhat-cluster_2.20080212-1.dsc
  to pool/main/r/redhat-cluster/redhat-cluster_2.20080212-1.dsc
redhat-cluster_2.20080212.orig.tar.gz
  to pool/main/r/redhat-cluster/redhat-cluster_2.20080212.orig.tar.gz
rgmanager_2.20080212-1_amd64.deb
  to pool/main/r/redhat-cluster/rgmanager_2.20080212-1_amd64.deb


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



Accepted mvtnorm 0.8.2-1 (source i386)

2008-02-12 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 20:41:47 -0600
Source: mvtnorm
Binary: r-cran-mvtnorm
Architecture: source i386
Version: 0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-cran-mvtnorm - GNU R package to compute multivariate Normal and T 
distributions
Changes: 
 mvtnorm (0.8.2-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
   * debian/control: Set Standards-Version: to current version 3.7.3
Files: 
 c9c6f14d9c2252c439b421ce95086db7 598 math optional mvtnorm_0.8.2-1.dsc
 aff9ddb3f5ffc706fed350f3355ef25e 165743 math optional mvtnorm_0.8.2.orig.tar.gz
 8afaeac647e555d117c91a7abbfc02ca 1941 math optional mvtnorm_0.8.2-1.diff.gz
 256661b953ccbf312b04c8fcd9be98b6 181916 math optional 
r-cran-mvtnorm_0.8.2-1_i386.deb

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

iD8DBQFHslmLCZSR95Gw07cRAh0TAJ99vKme5hMtRdsnuOY1rfrX0tEKXQCfZWRR
nbgdqOScEYUn47lESXTZZlY=
=b0xM
-END PGP SIGNATURE-


Accepted:
mvtnorm_0.8.2-1.diff.gz
  to pool/main/m/mvtnorm/mvtnorm_0.8.2-1.diff.gz
mvtnorm_0.8.2-1.dsc
  to pool/main/m/mvtnorm/mvtnorm_0.8.2-1.dsc
mvtnorm_0.8.2.orig.tar.gz
  to pool/main/m/mvtnorm/mvtnorm_0.8.2.orig.tar.gz
r-cran-mvtnorm_0.8.2-1_i386.deb
  to pool/main/m/mvtnorm/r-cran-mvtnorm_0.8.2-1_i386.deb


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



Accepted imagemagick 7:6.3.7.9.dfsg1-2 (source i386)

2008-02-12 Thread Nelson A. de Oliveira
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 23:41:11 -0200
Source: imagemagick
Binary: imagemagick libmagick10 libmagick9-dev libmagick++10 libmagick++9-dev 
perlmagick
Architecture: source i386
Version: 7:6.3.7.9.dfsg1-2
Distribution: unstable
Urgency: low
Maintainer: Luciano Bello [EMAIL PROTECTED]
Changed-By: Nelson A. de Oliveira [EMAIL PROTECTED]
Description: 
 imagemagick - image manipulation programs
 libmagick++10 - C++ API to the ImageMagick library
 libmagick++9-dev - C++ API to the ImageMagick library - development files
 libmagick10 - image manipulation library
 libmagick9-dev - image manipulation library - development files
 perlmagick - Perl interface to the libMagick graphics routines
Closes: 465526
Changes: 
 imagemagick (7:6.3.7.9.dfsg1-2) unstable; urgency=low
 .
   * Upload to unstable;
   * Disable HDRI (Closes: #465526). Thanks to Lucas Nussbaum!
Files: 
 2635ca39cb1d1a10b8205313c0c227d4 1251 graphics optional 
imagemagick_6.3.7.9.dfsg1-2.dsc
 b3c4952e98c5a2b22a98a323c23c8ac2 145871 graphics optional 
imagemagick_6.3.7.9.dfsg1-2.diff.gz
 d1830c428abdf99567ed877af0b19c7d 1430052 graphics optional 
imagemagick_6.3.7.9.dfsg1-2_i386.deb
 1c0770da5363fc87c2a2fd307875b7ff 3964562 libs optional 
libmagick10_6.3.7.9.dfsg1-2_i386.deb
 8909d1ea02e8e4ceb36343b0313f219e 1200114 libdevel optional 
libmagick9-dev_6.3.7.9.dfsg1-2_i386.deb
 4317d1b63b93d01fe29b57b39a22f678 176580 libs optional 
libmagick++10_6.3.7.9.dfsg1-2_i386.deb
 60024aa4ff6da0f3359198f11fae01c8 206810 libdevel optional 
libmagick++9-dev_6.3.7.9.dfsg1-2_i386.deb
 26024516fe34f1e6801ddda5fc238981 170226 perl optional 
perlmagick_6.3.7.9.dfsg1-2_i386.deb

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

iD8DBQFHsloNAQwuptkwlkQRAkt8AJkBW4YT3GPmHbCvyhSKFDvWXMgzRQCaArfa
m3aKbvBSyJx2YzIEpGmTQnA=
=Jvqc
-END PGP SIGNATURE-


Accepted:
imagemagick_6.3.7.9.dfsg1-2.diff.gz
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg1-2.diff.gz
imagemagick_6.3.7.9.dfsg1-2.dsc
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg1-2.dsc
imagemagick_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg1-2_i386.deb
libmagick++10_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/libmagick++10_6.3.7.9.dfsg1-2_i386.deb
libmagick++9-dev_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/libmagick++9-dev_6.3.7.9.dfsg1-2_i386.deb
libmagick10_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/libmagick10_6.3.7.9.dfsg1-2_i386.deb
libmagick9-dev_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/libmagick9-dev_6.3.7.9.dfsg1-2_i386.deb
perlmagick_6.3.7.9.dfsg1-2_i386.deb
  to pool/main/i/imagemagick/perlmagick_6.3.7.9.dfsg1-2_i386.deb


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



Accepted zsh 4.3.5-2 (source all)

2008-02-12 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 18:28:01 -0500
Source: zsh
Binary: zsh zsh-doc zsh-static zsh-dev zsh-dbg
Architecture: source all
Version: 4.3.5-2
Distribution: unstable
Urgency: low
Maintainer: Clint Adams [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 zsh- A shell with lots of features
 zsh-dbg- A shell with lots of features (debugging symbols)
 zsh-dev- A shell with lots of features (development files)
 zsh-doc- zsh documentation - info/HTML format
 zsh-static - A shell with lots of features (static link)
Closes: 463613 463614 463615 463616 463617 463619 463620 463621 463622 463916
Changes: 
 zsh (4.3.5-2) unstable; urgency=low
 .
   * Add Homepage control field.
   * Apply patches from A Costa to fix documentation typos.
 closes: #463613, #463614, #463615, #463616, #463617, #463619,
 #463620, #463621, #463622.
   * Drop debconf-related dependencies and all vestiges of the
 debconf note.  closes: #463916.
   * Remove conffile movement code from postinst.
Files: 
 65307663c6198a892ddb30fc2a6246ce 787 shells optional zsh_4.3.5-2.dsc
 32206b6a59f4d40b471e334e3c7c1a3e 50742 shells optional zsh_4.3.5-2.diff.gz
 5f5fa697ae4ac1f65810f6950aa53ce9 2123968 doc optional zsh-doc_4.3.5-2_all.deb

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

iD8DBQFHsk7G5m0u66uWM3ARAp1hAJ0X392u2WxeoaoCxQvMmd6CgCTJPACdFaGM
hoGkGlNJ4sF9AOUze9k8thI=
=aW1C
-END PGP SIGNATURE-


Accepted:
zsh-doc_4.3.5-2_all.deb
  to pool/main/z/zsh/zsh-doc_4.3.5-2_all.deb
zsh_4.3.5-2.diff.gz
  to pool/main/z/zsh/zsh_4.3.5-2.diff.gz
zsh_4.3.5-2.dsc
  to pool/main/z/zsh/zsh_4.3.5-2.dsc


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



Accepted hamfax 0.6.4-5 (source amd64)

2008-02-12 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Feb 2008 10:20:47 +1100
Source: hamfax
Binary: hamfax
Architecture: source amd64
Version: 0.6.4-5
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 hamfax - Receive/send radio facsimile transmissions with Soundcard/PTC-II
Closes: 465518
Changes: 
 hamfax (0.6.4-5) unstable; urgency=low
 .
   * Remove stale Makefile from the .diff.gz, which is causing
 'debian/rules clean' to fail on a fresh unpack (closes: 465518)
Files: 
 4da417dda7fa843330ffdbfc8dcca24b 782 hamradio optional hamfax_0.6.4-5.dsc
 d6ddaa01be1f18ae76d1554df530b100 3952 hamradio optional hamfax_0.6.4-5.diff.gz
 683eef7fa57d9873f302a7976bfda4d0 89010 hamradio optional 
hamfax_0.6.4-5_amd64.deb

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

iD8DBQFHsi1Q30WoBV0H6VwRAht3AKDeAeDCD4wF88QlyN6TSE/NoTTaaQCguj1u
6BmsmkBVbG55znoW+b9YuG0=
=aNXl
-END PGP SIGNATURE-


Accepted:
hamfax_0.6.4-5.diff.gz
  to pool/main/h/hamfax/hamfax_0.6.4-5.diff.gz
hamfax_0.6.4-5.dsc
  to pool/main/h/hamfax/hamfax_0.6.4-5.dsc
hamfax_0.6.4-5_amd64.deb
  to pool/main/h/hamfax/hamfax_0.6.4-5_amd64.deb


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



Accepted psicode 3.3.0-1 (source i386)

2008-02-12 Thread Michael Banck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Feb 2008 01:24:27 +0100
Source: psicode
Binary: psi3
Architecture: source i386
Version: 3.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debichem Team [EMAIL PROTECTED]
Changed-By: Michael Banck [EMAIL PROTECTED]
Description: 
 psi3   - Quantum Chemical Program Suite
Closes: 463972
Changes: 
 psicode (3.3.0-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ Daniel Leidert ]
   * debian/watch: Added.
 .
   [ LI Daobing ]
   * switch simple-patchsys to dpatch
 - debian/control: build depends on dpatch
 - debian/rules: update
 - debian/patches/01_DESTDIR.patch: removed
 - debian/patches/02_FHS.patch: removed
 - debian/patches/03_debian_docdir.patch: removed
 - debian/patches/00list: added
 - debian/patches/01_DESTDIR.dpatch: added
 - debian/patches/02_FHS.dpatch: added
 - debian/patches/03_debian_docdir.dpatch: added
   * debian/control:
 - bump standards version to 3.7.2
 - build depends on debhelper (= 4.1.0)
   * debian/dirs: remove /usr/sbin
   * debian/copyright: update FSF address
   * debian/patches/04_man.dpatch: fix some manpage related lintian warnings
 .
   [ Michael Banck ]
   * debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${docdir} to match
 the Debian docdir of the binary package.
   * debian/control (Maintainer): Set to Debichem Team.
   * debian/control (Homepage, Vcs-Browser, Vcs-Svn): Added.
   * debian/rules (DEB_MAKE_CHECK_TARGET): Enabled.
   * debian/patches/05_disable_mp2_tests.dpatch: Disable mp2-oeprop and mp2-opt
 tests which fail.
   * Transition to gfortran, thanks to Kumar Appaiah:
 + debian/control (Build-Depends): Replace g77, refblas3-dev, lapack3-dev
   with gfortran, libblas-dev, liblapack-dev.
 + debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): New variable, specify gfortran
   as fortran compiler. (closes: #463972)
Files: 
 d288228d456843562b943785b4f841c9 850 science optional psicode_3.3.0-1.dsc
 2d3f7b6d33e23bded12edbb132e49e43 4253039 science optional 
psicode_3.3.0.orig.tar.gz
 071e883956223721a814fe1a8b543ae5 60751 science optional psicode_3.3.0-1.diff.gz
 4f91dac1354c4a6a07881256a674689a 5099876 science optional psi3_3.3.0-1_i386.deb

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

iD8DBQFHskrImHaJYZ7RAb8RAvuyAJ9VtS8pdAePWHnxJp2mIKPS5cnybACfYxi5
LfkZaa1akh3uyRGVICHqVic=
=+RwS
-END PGP SIGNATURE-


Accepted:
psi3_3.3.0-1_i386.deb
  to pool/main/p/psicode/psi3_3.3.0-1_i386.deb
psicode_3.3.0-1.diff.gz
  to pool/main/p/psicode/psicode_3.3.0-1.diff.gz
psicode_3.3.0-1.dsc
  to pool/main/p/psicode/psicode_3.3.0-1.dsc
psicode_3.3.0.orig.tar.gz
  to pool/main/p/psicode/psicode_3.3.0.orig.tar.gz


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



Accepted poedit 1.3.9-3 (source i386)

2008-02-12 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Feb 2008 00:08:00 +0100
Source: poedit
Binary: poedit
Architecture: source i386
Version: 1.3.9-3
Distribution: unstable
Urgency: medium
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 poedit - gettext catalog editor
Closes: 465270
Changes: 
 poedit (1.3.9-3) unstable; urgency=medium
 .
   * Added patch from upstream to disable automatic showing of comment windows
 (Closes: #465270).
Files: 
 13d907c4da0bb1848a3a6200262be1f0 708 text optional poedit_1.3.9-3.dsc
 be55b1212155d31d5aff014d2c6524f2 11075 text optional poedit_1.3.9-3.diff.gz
 ca1a2a67168ae9a40dde1252cdde9c73 788096 text optional poedit_1.3.9-3_i386.deb

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

iD8DBQFHsiiH+C5cwEsrK54RAgX9AKC4wN+uSNV/spkSu563gop2TYSdRACfbBKr
RWBqAK26frESgbilTbEizMo=
=hQ34
-END PGP SIGNATURE-


Accepted:
poedit_1.3.9-3.diff.gz
  to pool/main/p/poedit/poedit_1.3.9-3.diff.gz
poedit_1.3.9-3.dsc
  to pool/main/p/poedit/poedit_1.3.9-3.dsc
poedit_1.3.9-3_i386.deb
  to pool/main/p/poedit/poedit_1.3.9-3_i386.deb


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



Accepted ikarus 0.0.3-1 (source i386)

2008-02-12 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  5 Feb 2008 13:09:13 +
Source: ikarus
Binary: ikarus
Architecture: source i386
Version: 0.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter [EMAIL PROTECTED]
Changed-By: Barak A. Pearlmutter [EMAIL PROTECTED]
Description: 
 ikarus - Compiler and interpreter for Scheme programming language
Changes: 
 ikarus (0.0.3-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 a92a395db73dfd70f7bdb6e6d4517aed 698 devel extra ikarus_0.0.3-1.dsc
 6ff12af6342bed7e1ff02a5627b857ab 3948264 devel extra ikarus_0.0.3.orig.tar.gz
 7dbdd34dfde65f7cd06575445a7e12c3 21145 devel extra ikarus_0.0.3-1.diff.gz
 60ca8d16cec4eab15f50882c0e69d2b6 1584856 devel extra ikarus_0.0.3-1_i386.deb

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

iD8DBQFHrzoVLz4Gnv7CP7IRAtIuAJ92LqnIT75xBhZGXJiSI77AmLBNyQCglwk3
kq2Fnye3QN21hN/ewWzkxOQ=
=Jh+v
-END PGP SIGNATURE-


Accepted:
ikarus_0.0.3-1.diff.gz
  to pool/main/i/ikarus/ikarus_0.0.3-1.diff.gz
ikarus_0.0.3-1.dsc
  to pool/main/i/ikarus/ikarus_0.0.3-1.dsc
ikarus_0.0.3-1_i386.deb
  to pool/main/i/ikarus/ikarus_0.0.3-1_i386.deb
ikarus_0.0.3.orig.tar.gz
  to pool/main/i/ikarus/ikarus_0.0.3.orig.tar.gz


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



Accepted dacco 0.9+20071227-2 (source all)

2008-02-12 Thread Miguel Gea Milvaques
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Feb 2008 00:21:11 +0100
Source: dacco
Binary: dacco-eng-users dacco-cat-users dacco-common
Architecture: source all
Version: 0.9+20071227-2
Distribution: unstable
Urgency: low
Maintainer: Miguel Gea Milvaques [EMAIL PROTECTED]
Changed-By: Miguel Gea Milvaques [EMAIL PROTECTED]
Description: 
 dacco-cat-users - Catalan to English and English to Catalan dictionary
 dacco-common - Catalan to English and English to Catalan dictionary
 dacco-eng-users - Catalan to English and English to Catalan dictionary
Closes: 450155
Changes: 
 dacco (0.9+20071227-2) unstable; urgency=low
 .
   * Really removed watch file (Closes:#450155)
Files: 
 d9beb935fc8814aa8a36129946cd8025 729 text optional dacco_0.9+20071227-2.dsc
 e2f5a53602e35437d29451342390c5fb 10409 text optional 
dacco_0.9+20071227-2.diff.gz
 4dcfccc9cfc0f743b83d13d7f1b41958 1390864 text optional 
dacco-eng-users_0.9+20071227-2_all.deb
 3bf0f95ae6ab634e4bd385bd8ad759f0 873668 text optional 
dacco-cat-users_0.9+20071227-2_all.deb
 49fc3cc25a5177d41518cb6a41c4d30f 1128536 text optional 
dacco-common_0.9+20071227-2_all.deb

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

iD8DBQFHsip6NTNQylgICMQRAreSAJ9K3+40X9D5eXHgOBKi8N4YMRaCuQCguZZd
cUQV2ntIkNzWVk4QT1ncUq4=
=Zuu1
-END PGP SIGNATURE-


Accepted:
dacco-cat-users_0.9+20071227-2_all.deb
  to pool/main/d/dacco/dacco-cat-users_0.9+20071227-2_all.deb
dacco-common_0.9+20071227-2_all.deb
  to pool/main/d/dacco/dacco-common_0.9+20071227-2_all.deb
dacco-eng-users_0.9+20071227-2_all.deb
  to pool/main/d/dacco/dacco-eng-users_0.9+20071227-2_all.deb
dacco_0.9+20071227-2.diff.gz
  to pool/main/d/dacco/dacco_0.9+20071227-2.diff.gz
dacco_0.9+20071227-2.dsc
  to pool/main/d/dacco/dacco_0.9+20071227-2.dsc


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



Accepted glibc 2.7-7 (source all amd64)

2008-02-12 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 22:29:56 +0100
Source: glibc
Binary: glibc-doc locales locales-all nscd libc6 libc6-dev libc6-dbg libc6-prof 
libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-prof libc6.1-pic 
libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg libc0.3-prof libc0.3-pic 
libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg libc0.1-prof libc0.1-pic 
libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc64 libc6-dev-sparc64 
libc6-s390x libc6-dev-s390x libc6-amd64 libc6-dev-amd64 libc6-powerpc 
libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-sparcv9b 
libc6-i686 libc6-xen libc0.1-i686 libc6.1-alphaev67 libnss-dns-udeb 
libnss-files-udeb
Architecture: source all amd64
Version: 2.7-7
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-dev-i386 - GNU C Library: 32bit development libraries for AMD64
 libc6-i386 - GNU C Library: 32bit shared libraries for AMD64
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 locales-all - GNU C Library: Precompiled locale data
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 438179 453480 456260 456779 462112 463342 464022 464395 464594 464924
Changes: 
 glibc (2.7-7) unstable; urgency=low
 .
   [ Arthur Loiret ]
   * patches/sh4/cvs-nptl-private-futexes.diff: new patch from CVS to fix
 FTBFS on sh4.
 .
   [ Samuel Thibault ]
   * patches/hurd-i386/cvs-epfnosupport.diff: new patch to fix socket()
 error for IPV6.
 .
   [ Aurelien Jarno ]
   * patches/any/local-ldso-disable-hwcap.diff: enable tls/ directory even
 when hardware capabilities are disabled. This workarounds a bug in
 nvidia-glx.  Closes: #453480.
   * patches/mips/local-r10k.diff: new patch from Florian Lohoff to
 workaround LL/SC bug on R10k.  Closes: #462112.
   * patches/mips/submitted-mipsn32.diff: new patch to fix truncate64()
 on MIPS n32.
   * kfreebsd/local-sysdeps.diff: update to revision 2129 (from glibc-bsd).
   * patches/any/cvs-epoll_h.diff: new patch from CVS to define EPOLLRDHUP
 in /usr/include/sys/epoll.h. Closes: #463342.
   * patches/any/submitted-gcc-4.3.diff: pass -isystem option for GCC's
 include-fixed/ directory. Fixes build with gcc-4.3.
   * debian/control.in/main: bump to Standards-Version 3.7.3.
   * debian/sysdeps/*.mk: build main flavours with -O2 instead of -O3 (risks to
 trigger a bug in the compiler are higher with -O3). Remove -g from cflags,
 as it is automatically added by the glibc scripts.
   * debhelper.in/nscd.init: depends on $remote_fs instead of $local_fs.
 Closes: #464022.
   * patches/any/submitted-ieee754_h.diff: use __BIG_ENDIAN instead of
 BIG_ENDIAN. Closes: #464594.
   * local/manpages/ld.so.8: Add missing options to manpage. Closes:
 #464395.
   * rules.d/build.mk: build the locales in the build target instead of the
 install one to workaround a bug in fakeroot.  Closes: #464924.
   * patches/alpha/local-dl-procinfo.diff: fix _dl_string_platform() to accept
 NULL pointers, which happens on statically linked binaries.  Closes:
 bug#456260.
   * local/manpages/gai.conf.5: new manpage.
   * any/submitted-rfc3484-sortv4.diff: Drop. Replaced by ...
   * ... any/cvs/rfc3484.diff: patch from upstream to fix various RFC3484
 issues:
 - Fix source IPv4 source address length computation.  Closes: bug#456779.
 - Only apply rule 9 for IPv4 if source and destination addresses are on
   the same subnet.  Closes: bug#438179.
Files: 
 f0fa1890d2244b2ec9d9f11e030f4d4a 2072 libs required glibc_2.7-7.dsc
 73ce31cb90381bc64908e350daf3d18b 690107 libs required glibc_2.7-7.diff.gz
 0bd343811be920b557fff431a64eb5cd 1625048 doc optional glibc-doc_2.7-7_all.deb
 83583cf0433ac9c0711bd850107c7224 4428838 libs standard locales_2.7-7_all.deb
 429e48b29ca0f1289ad138298447bb3c 4756432 libs required libc6_2.7-7_amd64.deb
 b99fbb893de16cd8bf0984913ec7c3ea 2457212 libdevel optional 
libc6-dev_2.7-7_amd64.deb
 7e5795f534052354a9fc677e24a3f621 1899712 libdevel extra 
libc6-prof_2.7-7_amd64.deb
 5bf443778556d5d976affe8edc99b264 1439252 libdevel optional 
libc6-pic_2.7-7_amd64.deb
 f7b484d96bef9d03656445ef922ddb08 2550084 libs extra locales-all_2.7-7_amd64.deb
 6f58447cf1700db71b171a99eb3c9c20 3627476 libs optional 

Accepted ruby-pkg-tools 0.13 (source all)

2008-02-12 Thread Lucas Nussbaum
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 22:55:41 +0100
Source: ruby-pkg-tools
Binary: ruby-pkg-tools
Architecture: source all
Version: 0.13
Distribution: unstable
Urgency: low
Maintainer: Paul van Tilburg [EMAIL PROTECTED]
Changed-By: Lucas Nussbaum [EMAIL PROTECTED]
Description: 
 ruby-pkg-tools - Tools for building Debian Ruby packages
Closes: 420028 422536
Changes: 
 ruby-pkg-tools (0.13) unstable; urgency=low
 .
   [ Antonio Terceiro ]
   * 1/class/ruby-setup-rb.mk: using --installdirs=std as setup.rb options, so
 everything is put in the right place upon installation (Closes: #420028)
   * bin/pkg-ruby-get-sources: provide a better progress update information,
 compatible with narrow terminals (Closes: #422536)
   * debian/control: new maintainer name and address for myself
   * 1/class/ruby-setup-rb.mk: installing a symbolic link to packaged setup.rb
 in build directory root when maintainer wants to use setup.rb to build
 the package. All packages shall be built using the packaged setup.rb,
 event if it already provides one. This way we can e.g. fork setup.rb in
 the future if Debian needs some modification in the build process.
 Thanks to Gunnar Wolf for the idea and initial patch.
   * debian/control: added depencency on libsetup-ruby1.8
 .
   [ Stig Sandbeck Mathisen ]
   * Added myself to the team
 .
   [ Lucas Nussbaum ]
   * Added Vcs-Svn and Vcs-Browser.
   * fixed Vcs-*: point to dir containing debian/, not dir containing
 trunk/
 .
   [ Arnaud Cornet ]
   * 1/class/ruby-setup-rb.mk: Add $(DEB_RUBY_INSTALL_SETUP_CMD) when building
 regular library packages.
   * Enforce use of libsetup-ruby1.8's setup.rb for all packages.
 .
   [ Lucas Nussbaum ]
   * Updated to policy 3.7.3. No changes needed.
Files: 
 94c3ad0faf6544cb13fb1d2f3d85a5c9 1448 devel optional ruby-pkg-tools_0.13.dsc
 a66438c9ae3702eba02d5ceb054b7a98 13934 devel optional 
ruby-pkg-tools_0.13.tar.gz
 b92d9e32bd85516b6afe64714e36dd4e 16792 devel optional 
ruby-pkg-tools_0.13_all.deb

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

iD8DBQFHshb32hliNwI7P08RAncBAJ97WnDQKCjm2UUKWSBFa5GGG1ImkwCfa00o
EkgFfAHa30dJhXTxvzbf7y8=
=5Jx3
-END PGP SIGNATURE-


Accepted:
ruby-pkg-tools_0.13.dsc
  to pool/main/r/ruby-pkg-tools/ruby-pkg-tools_0.13.dsc
ruby-pkg-tools_0.13.tar.gz
  to pool/main/r/ruby-pkg-tools/ruby-pkg-tools_0.13.tar.gz
ruby-pkg-tools_0.13_all.deb
  to pool/main/r/ruby-pkg-tools/ruby-pkg-tools_0.13_all.deb


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



Accepted drbd8 2:8.0.10-1 (source all amd64)

2008-02-12 Thread Philipp Hug
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 22:10:04 +0100
Source: drbd8
Binary: drbd8-utils drbd8-source
Architecture: source amd64 all
Version: 2:8.0.10-1
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Philipp Hug [EMAIL PROTECTED]
Description: 
 drbd8-source - RAID 1 over tcp/ip for Linux module source
 drbd8-utils - RAID 1 over tcp/ip for Linux utilities
Changes: 
 drbd8 (2:8.0.10-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 f63eff6d628065797067cb8e3818b3a9 678 admin extra drbd8_8.0.10-1.dsc
 bccbb9bd2ab9574e62c1d585e0e4ce2d 318709 admin extra drbd8_8.0.10.orig.tar.gz
 7901ec9fcd4b325b628916f36bcfac05 12248 admin extra drbd8_8.0.10-1.diff.gz
 ae2ca7f7e87286b7ac2698324974313d 139618 admin extra 
drbd8-utils_8.0.10-1_amd64.deb
 e47827d805dc62166ded3fa8dca058e6 140620 admin extra 
drbd8-source_8.0.10-1_all.deb

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

iD8DBQFHsg5MaZN+myf86ycRAmYlAJ9eDVe7Zsf2mhZK7I3TJEFDFoGK/QCcCRkz
NZnUrx0lJ/UvZlj5gdnXfoE=
=HsgR
-END PGP SIGNATURE-


Accepted:
drbd8-source_8.0.10-1_all.deb
  to pool/main/d/drbd8/drbd8-source_8.0.10-1_all.deb
drbd8-utils_8.0.10-1_amd64.deb
  to pool/main/d/drbd8/drbd8-utils_8.0.10-1_amd64.deb
drbd8_8.0.10-1.diff.gz
  to pool/main/d/drbd8/drbd8_8.0.10-1.diff.gz
drbd8_8.0.10-1.dsc
  to pool/main/d/drbd8/drbd8_8.0.10-1.dsc
drbd8_8.0.10.orig.tar.gz
  to pool/main/d/drbd8/drbd8_8.0.10.orig.tar.gz


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



Accepted inoticoming 0.2.0-3 (source sparc)

2008-02-12 Thread Bernhard R. Link
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 20:56:23 +0100
Source: inoticoming
Binary: inoticoming
Architecture: source sparc
Version: 0.2.0-3
Distribution: unstable
Urgency: low
Maintainer: Bernhard R. Link [EMAIL PROTECTED]
Changed-By: Bernhard R. Link [EMAIL PROTECTED]
Description: 
 inoticoming - trigger actions when files hit an incoming directory
Changes: 
 inoticoming (0.2.0-3) unstable; urgency=low
 .
   * next try to get the build-dependencies right...
Files: 
 2dc30df4667ea647cd552b351e652d47 849 utils extra inoticoming_0.2.0-3.dsc
 bc103311cf06c75260f8ae7b524db025 2297 utils extra inoticoming_0.2.0-3.diff.gz
 35ab35c22d409a3caca531888f2345a3 12504 utils extra 
inoticoming_0.2.0-3_sparc.deb

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

iD8DBQFHsf5WTrAWvKplQe4RAsDBAJ4qP2sAc+Htsjobz/QtkPMA3HDdYACfbbRC
nyNfGl2onh+4yFXX5g3QW78=
=3YdS
-END PGP SIGNATURE-


Accepted:
inoticoming_0.2.0-3.diff.gz
  to pool/main/i/inoticoming/inoticoming_0.2.0-3.diff.gz
inoticoming_0.2.0-3.dsc
  to pool/main/i/inoticoming/inoticoming_0.2.0-3.dsc
inoticoming_0.2.0-3_sparc.deb
  to pool/main/i/inoticoming/inoticoming_0.2.0-3_sparc.deb


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



Accepted python-kinterbasdb 3.2-1 (source amd64)

2008-02-12 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 20:34:35 +0100
Source: python-kinterbasdb
Binary: python-kinterbasdb
Architecture: source amd64
Version: 3.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team [EMAIL PROTECTED]
Changed-By: Sandro Tosi [EMAIL PROTECTED]
Description: 
 python-kinterbasdb - InterBase/Firebird support for Python
Closes: 301404 332389 373323 385438 427184 462169
Changes: 
 python-kinterbasdb (3.2-1) unstable; urgency=low
 .
   * New upstream release (Closes: #385438)
   * debian/changelog
 - acknowledging NMUs (Closes: #332389, #301404, #373323, #427184)
   * debian/control
 - adopting under DPMT (Closes: #462169)
 - bump Standard-Version to 3.7.3
 - added ${misc:Depends} to Depends (it should always be there, just in
   case)
 - added Homepage field
 - added Vcs-{Svn,Browser} fields
 - bump build-dep for python-support
 - added dpatch build-dep
   * debian/compat
 - added with 5 in it
   * debian/rules
 - removed DH_COMPAT and DH_PYCOMPAT
 - removed many unneeded dh_* calls
 - removed configure from .PHONY since not a target
 - removed binary-indep stuff (it's an Arch: any package)
 - dh_* calls without parameters -a or -A (unneeded)
 - added dpatch stuff
 - restore __init__.py and remove temporary file in clean target
   * debian/patches/01_restore_pristine_code.dpatch
 - added to remove direct upstream code modifications
   * debian/copyright
 - reformat of upstream author part
 - separation of copyright and license
 - edit of copyright information
 - fix lintian warning over copyright information
 - license indented with 4 spaces
Files: 
 b73a6955f7ed4ed8734b6b9f37d01a7b 1039 python optional 
python-kinterbasdb_3.2-1.dsc
 626fdd387475cd2a747b40229f1edd92 326284 python optional 
python-kinterbasdb_3.2.orig.tar.gz
 7de4ea9f9a10a7172e42339b124099e7 4435 python optional 
python-kinterbasdb_3.2-1.diff.gz
 13c27d6e768a8bdff9efd5afee87f714 335812 python optional 
python-kinterbasdb_3.2-1_amd64.deb

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

iD8DBQFHsfcFB01zfu119ZkRAoQUAJ9L70vJKjDCY42YO61gh4d347lwygCgjWMe
mihHVjh+s1Q5ADhJGcT3eQo=
=GV9K
-END PGP SIGNATURE-


Accepted:
python-kinterbasdb_3.2-1.diff.gz
  to pool/main/p/python-kinterbasdb/python-kinterbasdb_3.2-1.diff.gz
python-kinterbasdb_3.2-1.dsc
  to pool/main/p/python-kinterbasdb/python-kinterbasdb_3.2-1.dsc
python-kinterbasdb_3.2-1_amd64.deb
  to pool/main/p/python-kinterbasdb/python-kinterbasdb_3.2-1_amd64.deb
python-kinterbasdb_3.2.orig.tar.gz
  to pool/main/p/python-kinterbasdb/python-kinterbasdb_3.2.orig.tar.gz


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



Accepted libxml-sax-perl 0.16+dfsg-2 (source all)

2008-02-12 Thread Niko Tyni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 20:17:01 +0200
Source: libxml-sax-perl
Binary: libxml-sax-perl
Architecture: source all
Version: 0.16+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Niko Tyni [EMAIL PROTECTED]
Description: 
 libxml-sax-perl - Perl module for using and building Perl SAX2 XML processors
Changes: 
 libxml-sax-perl (0.16+dfsg-2) unstable; urgency=low
 .
   * Remove the XS-DM-Upload-Allowed control field: I'm a DD now.
   * Switch to my @debian.org email address.
   * Upgrade to Standards-Version 3.7.3. No changes needed.
   * Don't set INSTALLVENDORARCH and the like; remove the empty /usr/lib/perl5
 directory only if it exists.
   * Handle stamp files with 'touch $@'.
   * Don't ship the /etc/perl/XML/SAX directory in the file list, handle it
 with the maintainer scripts instead.
   * Remove the unnecessary -1 Debian revision from the quilt build-dependency
 to ease backporting. Thanks, lintian.
   * update-perl-sax-parsers: Mention the parser priority when adding or
 removing it.
   * Make the maintainer scripts more verbose.
   * Upload to unstable.
Files: 
 3480ab77568de019770981a83110fe63 959 perl optional 
libxml-sax-perl_0.16+dfsg-2.dsc
 92793698ccfefa8468b7dbc45a89b4a2 13488 perl optional 
libxml-sax-perl_0.16+dfsg-2.diff.gz
 1fa57ac821e9748ac1d392d8bf71ba7e 84064 perl optional 
libxml-sax-perl_0.16+dfsg-2_all.deb

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

iD8DBQFHsfPGiyizGWoHLTkRAvkWAJ9+5lZA86J00J/14GMOJnd7czT8UACgwSJg
DexehqLQsxLqz4PJN7DELuA=
=fADG
-END PGP SIGNATURE-


Accepted:
libxml-sax-perl_0.16+dfsg-2.diff.gz
  to pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.16+dfsg-2.diff.gz
libxml-sax-perl_0.16+dfsg-2.dsc
  to pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.16+dfsg-2.dsc
libxml-sax-perl_0.16+dfsg-2_all.deb
  to pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.16+dfsg-2_all.deb


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



Accepted rsyslog 2.0.2-1 (source i386 all)

2008-02-12 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 19:56:47 +0100
Source: rsyslog
Binary: rsyslog rsyslog-doc rsyslog-mysql rsyslog-pgsql
Architecture: source i386 all
Version: 2.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Michael Biebl [EMAIL PROTECTED]
Changed-By: Michael Biebl [EMAIL PROTECTED]
Description: 
 rsyslog- enhanced multi-threaded syslogd
 rsyslog-doc - documentation for rsyslog
 rsyslog-mysql - MySQL output plugin for rsyslog
 rsyslog-pgsql - PostgreSQL output plugin for rsyslog
Closes: 464695
Changes: 
 rsyslog (2.0.2-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/rsyslog.init
 - Make /dev/xconsole readable by group adm. Closes: #464695
   * debian/control
 - Fix a typo in the rsyslog-pgsql package description.
   * debian/patches/man_page_format.patch
 - Fix a few format errors in the man pages.
Files: 
 6cf90053356bd91568f83c06fa5f10ea 701 admin extra rsyslog_2.0.2-1.dsc
 7e214ddb80544e99dac643f1d93c81fb 696829 admin extra rsyslog_2.0.2.orig.tar.gz
 7991d055b3542e113ec6a93447543ec4 12902 admin extra rsyslog_2.0.2-1.diff.gz
 cacd60d7c4ac9da334cba8218def844d 129378 admin extra rsyslog_2.0.2-1_i386.deb
 ac4202a5070213204474160c0e89c8b6 108370 doc extra rsyslog-doc_2.0.2-1_all.deb
 6983036c978dc9bb1bce14191d756c89 32270 admin extra 
rsyslog-mysql_2.0.2-1_i386.deb
 e6611544d021aa4f1ec04450e37ab6e2 32166 admin extra 
rsyslog-pgsql_2.0.2-1_i386.deb

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

iD8DBQFHse6/h7PER70FhVQRAlNcAKDCoFG/eBg/ChWMe3Yx0KJdPvNIEwCgr0X0
vMwr2zv8c5Yxh20+YIJue4s=
=ZZne
-END PGP SIGNATURE-


Accepted:
rsyslog-doc_2.0.2-1_all.deb
  to pool/main/r/rsyslog/rsyslog-doc_2.0.2-1_all.deb
rsyslog-mysql_2.0.2-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-mysql_2.0.2-1_i386.deb
rsyslog-pgsql_2.0.2-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-pgsql_2.0.2-1_i386.deb
rsyslog_2.0.2-1.diff.gz
  to pool/main/r/rsyslog/rsyslog_2.0.2-1.diff.gz
rsyslog_2.0.2-1.dsc
  to pool/main/r/rsyslog/rsyslog_2.0.2-1.dsc
rsyslog_2.0.2-1_i386.deb
  to pool/main/r/rsyslog/rsyslog_2.0.2-1_i386.deb
rsyslog_2.0.2.orig.tar.gz
  to pool/main/r/rsyslog/rsyslog_2.0.2.orig.tar.gz


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



Accepted dictionaries-common 0.95.2 (source all)

2008-02-12 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 13:14:10 +0100
Source: dictionaries-common
Binary: dictionaries-common dictionaries-common-dev
Architecture: source all
Version: 0.95.2
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo [EMAIL PROTECTED]
Changed-By: Agustin Martin Domingo [EMAIL PROTECTED]
Description: 
 dictionaries-common - Common utilities for spelling dictionary tools
 dictionaries-common-dev - Developer tools and Policy for spelling dictionary 
tools
Closes: 465233
Changes: 
 dictionaries-common (0.95.2) unstable; urgency=low
 .
   * scripts/system/dc-debconf-select.pl:
 - Make sure echoices is left in a sane C state after
   preconfiguring or reconfiguring (Closes: #465233).
Files: 
 17969710379beed442dccceb745562cf 915 text standard 
dictionaries-common_0.95.2.dsc
 d541909dd70c4c3d9f93eac4773072aa 288891 text standard 
dictionaries-common_0.95.2.tar.gz
 76b010a64f8bc9911f4d6cc7d4a2ac6f 268738 text standard 
dictionaries-common_0.95.2_all.deb
 24c512f9029da852dc1833924e6e322c 109028 devel optional 
dictionaries-common-dev_0.95.2_all.deb

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

iD8DBQFHsY9WTShHqj72DpwRAmxsAKCLEtKzjJ/EQYRkTAHEqufd+h9mVQCcCwDO
HvPfoaEKHMyD8h3rQl24hMw=
=6eDG
-END PGP SIGNATURE-


Accepted:
dictionaries-common-dev_0.95.2_all.deb
  to pool/main/d/dictionaries-common/dictionaries-common-dev_0.95.2_all.deb
dictionaries-common_0.95.2.dsc
  to pool/main/d/dictionaries-common/dictionaries-common_0.95.2.dsc
dictionaries-common_0.95.2.tar.gz
  to pool/main/d/dictionaries-common/dictionaries-common_0.95.2.tar.gz
dictionaries-common_0.95.2_all.deb
  to pool/main/d/dictionaries-common/dictionaries-common_0.95.2_all.deb


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



Accepted fldigi 2.09-1 (source i386)

2008-02-12 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 19:24:51 +0100
Source: fldigi
Binary: fldigi
Architecture: source i386
Version: 2.09-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 fldigi - digital modem program for hamradio operators
Closes: 460003
Changes: 
 fldigi (2.09-1) unstable; urgency=low
 .
   * New upstream release.
   * watch files seems to be working correctly here. The bug report uses
 and old watch file, so it seems to be fixed. Closes: #460003.
 Also see the 2.08-1 changelog.
   * Removed .desktop file from the debian dir, now that upstream uses one.
   * Added Network as a main category to the .desktop file, reported upstream.
Files: 
 59062f34e784b739f9c1be3da9701de3 898 hamradio extra fldigi_2.09-1.dsc
 19b6e4b82ae15d58e158bebec81df466 549546 hamradio extra fldigi_2.09.orig.tar.gz
 5e02d2170cf5d24c0d8f6032dbe97410 5075 hamradio extra fldigi_2.09-1.diff.gz
 59d1774e4761e49cda4721910fcb6f5c 384308 hamradio extra fldigi_2.09-1_i386.deb

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

iD8DBQFHsfLj/CqtjGLxpX8RAvXMAJ0Y8Pt+BI3k0VEsJbuNNHaRUidIlwCeNwQO
lvjbfXWG1VaVNHtBX2S4XmQ=
=snDe
-END PGP SIGNATURE-


Accepted:
fldigi_2.09-1.diff.gz
  to pool/main/f/fldigi/fldigi_2.09-1.diff.gz
fldigi_2.09-1.dsc
  to pool/main/f/fldigi/fldigi_2.09-1.dsc
fldigi_2.09-1_i386.deb
  to pool/main/f/fldigi/fldigi_2.09-1_i386.deb
fldigi_2.09.orig.tar.gz
  to pool/main/f/fldigi/fldigi_2.09.orig.tar.gz


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



Accepted libauthen-passphrase-perl 0.005-2 (source all)

2008-02-12 Thread Ivan Kohler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 22:59:25 -0800
Source: libauthen-passphrase-perl
Binary: libauthen-passphrase-perl
Architecture: source all
Version: 0.005-2
Distribution: unstable
Urgency: low
Maintainer: Ivan Kohler [EMAIL PROTECTED]
Changed-By: Ivan Kohler [EMAIL PROTECTED]
Description: 
 libauthen-passphrase-perl - Perl module encapsulating hashed 
passwords/passphrases as objects
Closes: 464301
Changes: 
 libauthen-passphrase-perl (0.005-2) unstable; urgency=low
 .
   * Move Build-Dep-Indep to Build-Dep.
   * To avoid build failures from defective dependencies, Build-Dep (and Dep) on
 libcrypt-eksblowfish-perl = 0.003-3 and libauthen-dechpwd-perl = 2.002-3
 (closes: Bug#464301)
Files: 
 dc61c54dc7b225e1f305a7e4fcfb6efa 1008 perl optional 
libauthen-passphrase-perl_0.005-2.dsc
 baec43efefacc60e3e4db0aee1502f14 2352 perl optional 
libauthen-passphrase-perl_0.005-2.diff.gz
 2bb4b2cf6610fb0f6b8ed63c62e77b0c 102524 perl optional 
libauthen-passphrase-perl_0.005-2_all.deb

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

iD8DBQFHsez9gYcvm1TBwckRAhWVAJ9vVe3cUXAGeHiiVHxfKPvM6ErqUQCfbmA5
seqEQ1B8ojXygL/hbYbhfKE=
=QpVf
-END PGP SIGNATURE-


Accepted:
libauthen-passphrase-perl_0.005-2.diff.gz
  to 
pool/main/liba/libauthen-passphrase-perl/libauthen-passphrase-perl_0.005-2.diff.gz
libauthen-passphrase-perl_0.005-2.dsc
  to 
pool/main/liba/libauthen-passphrase-perl/libauthen-passphrase-perl_0.005-2.dsc
libauthen-passphrase-perl_0.005-2_all.deb
  to 
pool/main/liba/libauthen-passphrase-perl/libauthen-passphrase-perl_0.005-2_all.deb


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



Accepted vzctl 3.0.22-4 (source i386)

2008-02-12 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 18:15:58 +0100
Source: vzctl
Binary: vzctl
Architecture: source i386
Version: 3.0.22-4
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 vzctl  - server virtualization solution - control tools
Closes: 460310 465377
Changes: 
 vzctl (3.0.22-4) unstable; urgency=low
 .
   * Changed shell interpreter from /bin/sh to /bin/bash for vz init
 script and vzmigrate, closes: #465377.
   * Added upgrade path for --name setting, closes: #460310.
Files: 
 37e98af98223b0c66d4d746449b5528f 581 admin optional vzctl_3.0.22-4.dsc
 3c976116cdc9495a1e23f244850bffcd 93856 admin optional vzctl_3.0.22-4.diff.gz
 4ee2b8e7a3930a7170796da2adf87d3d 190826 admin optional vzctl_3.0.22-4_i386.deb

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

iD8DBQFHseG4GKGxzw/lPdkRAlFoAJ48QkSd4GOk7KHiv+vlIwcwGyRfhwCfdTGz
iw5dNMppEqeuZ7CLQRliyc0=
=sTG3
-END PGP SIGNATURE-


Accepted:
vzctl_3.0.22-4.diff.gz
  to pool/main/v/vzctl/vzctl_3.0.22-4.diff.gz
vzctl_3.0.22-4.dsc
  to pool/main/v/vzctl/vzctl_3.0.22-4.dsc
vzctl_3.0.22-4_i386.deb
  to pool/main/v/vzctl/vzctl_3.0.22-4_i386.deb


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



Accepted gnutls13 2.0.4-2 (source i386)

2008-02-12 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 16:35:29 +0100
Source: gnutls13
Binary: libgnutls13 libgnutls13-dbg libgnutlsxx13
Architecture: source i386
Version: 2.0.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian GnuTLS Maintainers [EMAIL PROTECTED]
Changed-By: Andreas Metzler [EMAIL PROTECTED]
Description: 
 libgnutls13 - the GNU TLS library - runtime library
 libgnutls13-dbg - GNU TLS library - debugger symbols
 libgnutlsxx13 - the GNU TLS library - C++ runtime library
Closes: 464605
Changes: 
 gnutls13 (2.0.4-2) unstable; urgency=low
 .
   * Cleanup upload. Should not be shipped in lenny.
   * libgnutls13-dbg needs to conflict with libgnutls26-dbg, since both
 packages contain gnutls-bin debugging symbols. #459295.
   * Making buildable on sid again, now that gnutls26 is in sid. Stop building
 gnutls-doc, gnutls-bin and libgnutls-dev. Closes: #464605
Files: 
 6dc87d8b12fbdb54f2d2afd396b7d8b3 881 devel optional gnutls13_2.0.4-2.dsc
 0edbfa360defcc9eb46c2ade8c3c05b4 17653 devel optional gnutls13_2.0.4-2.diff.gz
 dfb5036174a0a351519d529ad2a38ee9 461750 libs important 
libgnutls13_2.0.4-2_i386.deb
 58ad68d8966cde6ed79f5080156054fb 729052 devel extra 
libgnutls13-dbg_2.0.4-2_i386.deb
 3e8974dcd82d430a32851f0263055d2c 231624 libs optional 
libgnutlsxx13_2.0.4-2_i386.deb

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

iD8DBQFHsdbcHTOcZYuNdmMRAioRAJ4vfM8a0HO/CCwE6AIGQwDXel2dTACfYRlD
PVlzOiveT4+aA+gd6MMhGkY=
=NUxZ
-END PGP SIGNATURE-


Accepted:
gnutls13_2.0.4-2.diff.gz
  to pool/main/g/gnutls13/gnutls13_2.0.4-2.diff.gz
gnutls13_2.0.4-2.dsc
  to pool/main/g/gnutls13/gnutls13_2.0.4-2.dsc
libgnutls13-dbg_2.0.4-2_i386.deb
  to pool/main/g/gnutls13/libgnutls13-dbg_2.0.4-2_i386.deb
libgnutls13_2.0.4-2_i386.deb
  to pool/main/g/gnutls13/libgnutls13_2.0.4-2_i386.deb
libgnutlsxx13_2.0.4-2_i386.deb
  to pool/main/g/gnutls13/libgnutlsxx13_2.0.4-2_i386.deb


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



Accepted zeroc-ice 3.2.1-8 (source all i386)

2008-02-12 Thread Francisco Moya
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 16:28:20 +0100
Source: zeroc-ice
Binary: zeroc-ice32 ice32-translators ice32-services libicestorm32 libicegrid32 
libicebox32 icebox libicepatch2-32 libglacier2-32 libfreeze32 icecpp 
ice32-slice libzeroc-ice32 libicessl32 libiceutil32 libicexml32 libslice32 
libzeroc-ice32-dev libzeroc-ice32-dbg
Architecture: source all i386
Version: 3.2.1-8
Distribution: unstable
Urgency: low
Maintainer: Francisco Moya [EMAIL PROTECTED]
Changed-By: Francisco Moya [EMAIL PROTECTED]
Description: 
 ice32-services - Services bundled into ZeroC Ice
 ice32-slice - Slice definitions for Ice 3.2 services
 ice32-translators - Slice translators to several languages
 icebox - Plugin-based meta-application for ZeroC Ice
 icecpp - Slice preprocessor
 libfreeze32 - Libraries implementing a persistence framework for ZeroC Ice
 libglacier2-32 - Libraries implementing a firewall service for ZeroC Ice
 libicebox32 - Libraries implementing a plugin framework for ZeroC Ice
 libicegrid32 - Libraries implementing grid-like services for ZeroC Ice
 libicepatch2-32 - Libraries implementing a distribution service for ZeroC Ice
 libicessl32 - Ice for C++ SSL plug-in
 libicestorm32 - Libraries implementing an event service for ZeroC Ice
 libiceutil32 - Ice for C++ misc utility library
 libicexml32 - ZeroC Ice for C++ XML parser library
 libslice32 - Ice for C++ Slice parser library
 libzeroc-ice32 - Ice for C++ runtime library
 libzeroc-ice32-dbg - Ice for C++ debugging symbols
 libzeroc-ice32-dev - Ice for C++ development libraries
 zeroc-ice32 - Internet Communications Engine
Closes: 465074
Changes: 
 zeroc-ice (3.2.1-8) unstable; urgency=low
 .
   * Added -g to global compilation flags (Closes: #465074).
Files: 
 86ea5cc9de944aa20557dea33f075cab 1036 devel optional zeroc-ice_3.2.1-8.dsc
 44e3f921f72132a52ecdb569b3609570 34270 devel optional zeroc-ice_3.2.1-8.diff.gz
 4da86365474470d01fa99fa0be4b9ebe 42110 devel optional 
zeroc-ice32_3.2.1-8_all.deb
 a42cc1a46ed509ff590fef8be1bd16c9 85472 devel optional 
ice32-slice_3.2.1-8_all.deb
 6a3df1bdf39fbf150890f8622f9b9e09 1130570 devel optional 
ice32-translators_3.2.1-8_i386.deb
 fe35b681abbaa2acb1dc06b58a3f1bfb 3492304 devel optional 
ice32-services_3.2.1-8_i386.deb
 0f605a2c15cce398963bcc7d6c1184c7 314182 libs optional 
libicestorm32_3.2.1-8_i386.deb
 07cfc0b67bf69a87bf6b682cefa9a4ff 600378 libs optional 
libicegrid32_3.2.1-8_i386.deb
 fc4067635c45ee3c0c02e60130ce2aef 79352 libs optional 
libicebox32_3.2.1-8_i386.deb
 dfa60761992786484b7ab987d109cb90 91818 devel optional icebox_3.2.1-8_i386.deb
 33e784e07dcab5c374d0c3f579f5ee8f 162992 libs optional 
libicepatch2-32_3.2.1-8_i386.deb
 36fe985339e1adf8d3445aaa93f06d7c 170328 libs optional 
libglacier2-32_3.2.1-8_i386.deb
 3ce26eb05e6bc299f8fdeed64e762d5c 236894 libs optional 
libfreeze32_3.2.1-8_i386.deb
 24303c0153a7f7ef30a55b2ca1801d71 96926 devel optional icecpp_3.2.1-8_i386.deb
 e8795f1b5fe8fa258cfad84dfe9ef8a0 814326 libs optional 
libzeroc-ice32_3.2.1-8_i386.deb
 95eeeb8ea455e7e4aa879719ff881caa 154562 libs optional 
libicessl32_3.2.1-8_i386.deb
 9482ba75cb782697ea010deb205cbb40 124300 libs optional 
libiceutil32_3.2.1-8_i386.deb
 108d19a5343f2581877222c9bf91f217 62454 libs optional 
libicexml32_3.2.1-8_i386.deb
 1b4f75fedcf89e375f52554ddeacb441 569818 libs optional 
libslice32_3.2.1-8_i386.deb
 d53d5bd075bd81615032e48c4ef7323a 154668 libdevel optional 
libzeroc-ice32-dev_3.2.1-8_i386.deb
 94623553f5e3b8519fc94a714e380258 34341290 libdevel extra 
libzeroc-ice32-dbg_3.2.1-8_i386.deb

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

iD8DBQFHsdEBG9DkpdBHzeERAulBAJ9jSnucY4bcAy6L8VlKv6NbhAyqRQCgiZkz
dkJBEDbaPoywhr9YtUZILLc=
=xxQa
-END PGP SIGNATURE-


Accepted:
ice32-services_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/ice32-services_3.2.1-8_i386.deb
ice32-slice_3.2.1-8_all.deb
  to pool/main/z/zeroc-ice/ice32-slice_3.2.1-8_all.deb
ice32-translators_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/ice32-translators_3.2.1-8_i386.deb
icebox_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/icebox_3.2.1-8_i386.deb
icecpp_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/icecpp_3.2.1-8_i386.deb
libfreeze32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libfreeze32_3.2.1-8_i386.deb
libglacier2-32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libglacier2-32_3.2.1-8_i386.deb
libicebox32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libicebox32_3.2.1-8_i386.deb
libicegrid32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libicegrid32_3.2.1-8_i386.deb
libicepatch2-32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libicepatch2-32_3.2.1-8_i386.deb
libicessl32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libicessl32_3.2.1-8_i386.deb
libicestorm32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libicestorm32_3.2.1-8_i386.deb
libiceutil32_3.2.1-8_i386.deb
  to pool/main/z/zeroc-ice/libiceutil32_3.2.1-8_i386.deb
libicexml32_3.2.1-8_i386.deb
  to 

Accepted initramfs-tools 0.91e (source all)

2008-02-12 Thread maximilian attems
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 18:23:34 +0100
Source: initramfs-tools
Binary: initramfs-tools
Architecture: source all
Version: 0.91e
Distribution: unstable
Urgency: medium
Maintainer: Debian kernel team [EMAIL PROTECTED]
Changed-By: maximilian attems [EMAIL PROTECTED]
Description: 
 initramfs-tools - tools for generating an initramfs
Closes: 458772
Changes: 
 initramfs-tools (0.91e) unstable; urgency=medium
 .
   [ Daniel Reichelt ]
   * update-initramfs: fix ro-mounted /boot check (closes: #458772)
Files: 
 6c81afda65e05967c4a7bfb8fe57fa05 782 utils optional initramfs-tools_0.91e.dsc
 ddb6df9781343c95406edc7767448a56 63916 utils optional 
initramfs-tools_0.91e.tar.gz
 4419514766602587c68e61a67ee0e4ca 70682 utils optional 
initramfs-tools_0.91e_all.deb

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

iD8DBQFHsdZkeW7Lc5tEHqgRAvWOAKCwa8phvv5JUMrE+kT8mrvG/iC1pQCaAvjp
xSVnOOXfdkpNdcsIiniNSgE=
=yAVO
-END PGP SIGNATURE-


Accepted:
initramfs-tools_0.91e.dsc
  to pool/main/i/initramfs-tools/initramfs-tools_0.91e.dsc
initramfs-tools_0.91e.tar.gz
  to pool/main/i/initramfs-tools/initramfs-tools_0.91e.tar.gz
initramfs-tools_0.91e_all.deb
  to pool/main/i/initramfs-tools/initramfs-tools_0.91e_all.deb


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



Accepted gerbv 2.0.1-3 (source amd64)

2008-02-12 Thread Ramakrishnan Muthukrishnan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 22:44:38 +0530
Source: gerbv
Binary: gerbv
Architecture: source amd64
Version: 2.0.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team [EMAIL PROTECTED]
Changed-By: Ramakrishnan Muthukrishnan [EMAIL PROTECTED]
Description: 
 gerbv  - Gerber file viewer for PCB design
Changes: 
 gerbv (2.0.1-3) unstable; urgency=low
 .
   * debian/control: made extra-xdg-menus as a recommendation instead of
   dependency.
Files: 
 acdb736eff5206a413355c31eb3f654d 799 electronics optional gerbv_2.0.1-3.dsc
 93450dc9af5593f71b93541a91c63b1c 17683 electronics optional 
gerbv_2.0.1-3.diff.gz
 a6df6d86df651952d5dc7a6dfd0d1f92 1184336 electronics optional 
gerbv_2.0.1-3_amd64.deb

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

iD8DBQFHsdRXFyn1hmqfPDgRApfGAKC2tJTQmMLKpxUijArILRFrcDoWzgCfeEmZ
QaYCq9SKD75Oh+lPr7uVaoA=
=TI84
-END PGP SIGNATURE-


Accepted:
gerbv_2.0.1-3.diff.gz
  to pool/main/g/gerbv/gerbv_2.0.1-3.diff.gz
gerbv_2.0.1-3.dsc
  to pool/main/g/gerbv/gerbv_2.0.1-3.dsc
gerbv_2.0.1-3_amd64.deb
  to pool/main/g/gerbv/gerbv_2.0.1-3_amd64.deb


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



Accepted common-lisp-controller 6.13 (source all)

2008-02-12 Thread Peter Van Eynde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 09 Feb 2008 08:15:56 +0100
Source: common-lisp-controller
Binary: common-lisp-controller
Architecture: source all
Version: 6.13
Distribution: unstable
Urgency: low
Maintainer: Debian Common Lisp Team [EMAIL PROTECTED]
Changed-By: Peter Van Eynde [EMAIL PROTECTED]
Description: 
 common-lisp-controller - Common Lisp source and compiler manager
Changes: 
 common-lisp-controller (6.13) unstable; urgency=low
 .
   * Use Vcs-Bzr in control file
   * Accepted path from Joubert Nel to create module subdirectories as
 needed
   * Updated standard version without real changes
   * asdf changed its path, fix this.
   * Changed to group maintenance
Files: 
 2ed26137ec4c73ee73e20179eab3aaf6 731 devel optional 
common-lisp-controller_6.13.dsc
 b78d4bfe07cfbd25b010108706875d06 33857 devel optional 
common-lisp-controller_6.13.tar.gz
 28fbf67dd0c26ed23a145e6586cc3172 32074 devel optional 
common-lisp-controller_6.13_all.deb

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

iD8DBQFHsdJ211ldN0tyliURAld7AKCEsL/HTDgdRFTDomxHDIPmbBmbtACfRtnT
EJyQ6/X5asOOk004VOjrF68=
=Ufc2
-END PGP SIGNATURE-


Accepted:
common-lisp-controller_6.13.dsc
  to pool/main/c/common-lisp-controller/common-lisp-controller_6.13.dsc
common-lisp-controller_6.13.tar.gz
  to pool/main/c/common-lisp-controller/common-lisp-controller_6.13.tar.gz
common-lisp-controller_6.13_all.deb
  to pool/main/c/common-lisp-controller/common-lisp-controller_6.13_all.deb


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



Accepted tex4ht 20080125-1 (source all arm)

2008-02-12 Thread Kapil Hari Paranjape
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 21:43:53 +0530
Source: tex4ht
Binary: tex4ht tex4ht-common
Architecture: source arm all
Version: 20080125-1
Distribution: unstable
Urgency: low
Maintainer: Kapil Hari Paranjape [EMAIL PROTECTED]
Changed-By: Kapil Hari Paranjape [EMAIL PROTECTED]
Description: 
 tex4ht - LaTeX and TeX for Hypertext (HTML) - executables
 tex4ht-common - LaTeX and TeX for Hypertext (HTML) - support files
Closes: 460985 463821
Changes: 
 tex4ht (20080125-1) unstable; urgency=low
 .
   * New upstream release (2008_01_25_0949).
 - upgraded support for biblatex to v. 0.7
 - fixed array configuration of mdwtab.sty
 - introduced the command line option -css
 - modified configurations of fig4tex.4ht
 - configured spanish accents.
 - add OpenDocument support for pstricks
 - introduced OpenDocument support for fancyvrb
   * fixed mk4ht to find scripts in /usr/share/tex4ht by
 using the variable TEXINPUTS.mk4ht defined in
 /etc/texmf/texmf.d/80tex4ht.cnf.
 (Closes: #463821)
   * debian/update_doc.sh: added script to re-create
 documentation directories debian/{html,images}.
   * added comment to documentation that filenames with
 metacharacters will cause problems.
 (Closes: #460985)
   * fixed previous entry in the changelog; should be rule
 not target.
Files: 
 67a989dafb1ac0bd1aefaaa3c1b58ea1 796 tex optional tex4ht_20080125-1.dsc
 cd22acaff58f522ecd4102036b5ed201 3629991 tex optional 
tex4ht_20080125.orig.tar.gz
 681ee2d96b8c92e53dcfc12379b8af88 102541 tex optional tex4ht_20080125-1.diff.gz
 ff0ec7a64c08aaf5461aba246b68b36a 189846 tex optional tex4ht_20080125-1_arm.deb
 d7a9553b9fddf617d41c10b3004cae3c 1436790 tex optional 
tex4ht-common_20080125-1_all.deb

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

iD8DBQFHsoIcSR+P2lQW5bgRAg4WAKDwntlp2s/S0ubVI7JcE+uQD+D0wgCfbiqD
8tSq7APv3haMT96l0dIOD8s=
=PkzW
-END PGP SIGNATURE-


Accepted:
tex4ht-common_20080125-1_all.deb
  to pool/main/t/tex4ht/tex4ht-common_20080125-1_all.deb
tex4ht_20080125-1.diff.gz
  to pool/main/t/tex4ht/tex4ht_20080125-1.diff.gz
tex4ht_20080125-1.dsc
  to pool/main/t/tex4ht/tex4ht_20080125-1.dsc
tex4ht_20080125-1_arm.deb
  to pool/main/t/tex4ht/tex4ht_20080125-1_arm.deb
tex4ht_20080125.orig.tar.gz
  to pool/main/t/tex4ht/tex4ht_20080125.orig.tar.gz


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



Accepted phaseshift 0.40-13 (source i386)

2008-02-12 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 17:43:47 +0100
Source: phaseshift
Binary: phaseshift
Architecture: source i386
Version: 0.40-13
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 phaseshift - PSK31 terminal for X11
Closes: 464746
Changes: 
 phaseshift (0.40-13) unstable; urgency=low
 .
   * Remove build depends on ancient libqt3-compat-headers.
 Closes: #464746.
Files: 
 655ad373bdc6da858c4d8a1956c8e4af 877 hamradio optional phaseshift_0.40-13.dsc
 2863a8902765540471c3bfc86a98b9fb 6413 hamradio optional 
phaseshift_0.40-13.diff.gz
 7ca2baad3e89451de9b9945618373a00 64386 hamradio optional 
phaseshift_0.40-13_i386.deb

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

iD8DBQFHsc5j/CqtjGLxpX8RAlE9AKCYxyM/z9u60mlLLRXoX6XpxMNf+ACgzSKj
KyHOSTPR1hUomaHnCYWfcx4=
=PQpa
-END PGP SIGNATURE-


Accepted:
phaseshift_0.40-13.diff.gz
  to pool/main/p/phaseshift/phaseshift_0.40-13.diff.gz
phaseshift_0.40-13.dsc
  to pool/main/p/phaseshift/phaseshift_0.40-13.dsc
phaseshift_0.40-13_i386.deb
  to pool/main/p/phaseshift/phaseshift_0.40-13_i386.deb


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



Accepted kptc 0.2-6 (source i386)

2008-02-12 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 17:24:47 +0100
Source: kptc
Binary: kptc
Architecture: source i386
Version: 0.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 kptc   - KDE application for operating with the SCS PTC-II
Closes: 464655
Changes: 
 kptc (0.2-6) unstable; urgency=low
 .
   * Remove build depends on ancient libqt3-compat-headers.
 Closes: #464655.
   * Lintian fixes.
Files: 
 0045aedb9d0a5bd68eabdb5258ab606b 774 hamradio extra kptc_0.2-6.dsc
 68196675fd1e7a387c37320c6e3f41b6 242819 hamradio extra kptc_0.2-6.diff.gz
 4b2673ccd90032e4f9e9e85376cd1373 111846 hamradio extra kptc_0.2-6_i386.deb

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

iD8DBQFHscrr/CqtjGLxpX8RArFSAKDb/SAJr9YtkDxyjYnAgLmoi98pfgCgk901
/25Hpqy1lr0CItseps75vgM=
=h5gN
-END PGP SIGNATURE-


Accepted:
kptc_0.2-6.diff.gz
  to pool/main/k/kptc/kptc_0.2-6.diff.gz
kptc_0.2-6.dsc
  to pool/main/k/kptc/kptc_0.2-6.dsc
kptc_0.2-6_i386.deb
  to pool/main/k/kptc/kptc_0.2-6_i386.deb


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



Accepted tlf 0.9.32.3-3 (source i386)

2008-02-12 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 17:40:23 +0100
Source: tlf
Binary: tlf
Architecture: source i386
Version: 0.9.32.3-3
Distribution: unstable
Urgency: low
Maintainer: Joop Stakenborg [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 tlf- Console mode purpose CW keyer, logging- and contest program
Closes: 465371
Changes: 
 tlf (0.9.32.3-3) unstable; urgency=low
 .
   * Remove the soundlog script from the package, don't know what it is
 for. Closes: #465371.
Files: 
 9c8e44cd924dfc20bfa70ac6e9a06a99 613 hamradio optional tlf_0.9.32.3-3.dsc
 9c737f66aa37a35be2c9525ea08bc036 24942 hamradio optional tlf_0.9.32.3-3.diff.gz
 0544bdd8df5e6b9138ff9db157254071 265700 hamradio optional 
tlf_0.9.32.3-3_i386.deb

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

iD8DBQFHscyF/CqtjGLxpX8RAm2LAKDTJBD5L1/DpO59uVAp9MGKd08tvACgjRXA
3VmgBXjrhOgRmb6ivOhHNuU=
=k2PL
-END PGP SIGNATURE-


Accepted:
tlf_0.9.32.3-3.diff.gz
  to pool/main/t/tlf/tlf_0.9.32.3-3.diff.gz
tlf_0.9.32.3-3.dsc
  to pool/main/t/tlf/tlf_0.9.32.3-3.dsc
tlf_0.9.32.3-3_i386.deb
  to pool/main/t/tlf/tlf_0.9.32.3-3_i386.deb


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



Accepted autoconf 2.61-6 (source all)

2008-02-12 Thread Ben Pfaff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 09 Feb 2008 17:59:10 -0800
Source: autoconf
Binary: autoconf
Architecture: source all
Version: 2.61-6
Distribution: unstable
Urgency: low
Maintainer: Ben Pfaff [EMAIL PROTECTED]
Changed-By: Ben Pfaff [EMAIL PROTECTED]
Description: 
 autoconf   - automatic configure script builder
Changes: 
 autoconf (2.61-6) unstable; urgency=low
 .
   * debian/control: Change dependency on automake | automaken back to a
 recommendation, based on discussion in BTS for bug #462021 and on
 debian-devel.  Also, suggest libtool and gettext because they are
 often used with autoconf (and invoked by autoreconf) but not nearly so
 often as automake.
Files: 
 a0b62da5136c154676d446a41d90857d 902 devel optional autoconf_2.61-6.dsc
 c14d02e87f03139d16199a74298d541f 19554 devel optional autoconf_2.61-6.diff.gz
 c073ccfdaf796c0bde30e0358705406a 448176 devel optional autoconf_2.61-6_all.deb

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

iQEVAwUBR7HBLbf2jhx5fmQdAQIluAgAi4IQeU8auM1iDR9OeUXEng8FAszXEQMp
DyTyG7wLS0KZ0xFoaxldPOELDtPp7z78syNJJEA6zsX73ejcnMlKNQSqDiUqyX1a
uDtHmu65/PV9hAKbIAlkfDt3agT4mwXfR8v56rJ9Dk+8LkvwJslmo2EDekxwoHk8
pU2OL+JJCVUusxYiA38Y3osZLD1yE0FyLCWHmoY4Vt2FjtRuQ5mDLbR5udewL5PU
UtWelckymZgrB9hsK0AVP8GwtVUDamY/2Rvw2jq1bJruf1csBAJu0Q6iBetgklr7
WGvkKUW8dG9+EOLTnDha7BowLbKJf5EYPalfMA7xbjXDbfzoMtQJEA==
=2UYe
-END PGP SIGNATURE-


Accepted:
autoconf_2.61-6.diff.gz
  to pool/main/a/autoconf/autoconf_2.61-6.diff.gz
autoconf_2.61-6.dsc
  to pool/main/a/autoconf/autoconf_2.61-6.dsc
autoconf_2.61-6_all.deb
  to pool/main/a/autoconf/autoconf_2.61-6_all.deb


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



Accepted fmtools 1.0.4 (source i386)

2008-02-12 Thread Ben Pfaff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 04 Nov 2007 12:51:43 -0800
Source: fmtools
Binary: fmtools
Architecture: source i386
Version: 1.0.4
Distribution: unstable
Urgency: low
Maintainer: Ben Pfaff [EMAIL PROTECTED]
Changed-By: Ben Pfaff [EMAIL PROTECTED]
Description: 
 fmtools- FM radio tuner
Closes: 448310
Changes: 
 fmtools (1.0.4) unstable; urgency=low
 .
   * Fix interpretation of volume argument to fm program to match the
 documentation.  Closes: #448310.  Thanks to Andreas Hartmann
 [EMAIL PROTECTED] for reporting this bug.
Files: 
 38f04cb44559898d915e274cf17cc580 778 sound extra fmtools_1.0.4.dsc
 3a8d90a2fe1e1fb3de48612395ca0e0c 23836 sound extra fmtools_1.0.4.tar.gz
 38644539a6f4f54ac0cf5ff94740af09 17694 sound extra fmtools_1.0.4_i386.deb

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

iQEVAwUBR65Xybf2jhx5fmQdAQKO5gf/QBGqEkh59JwvDZjNqgVjb0FBf+01P8Gz
RMqTe9/W/AqGdcFDCB46LnaEPFugHA0h2EI10jlkuuFAD0lI8bNJfZzv7oCucDSj
WWP+Ugrv2058i5PClpR02b9YpTw0e3RIdbgZ3pERz9VcV/7aJHKvddMtckaMsWie
xnKrWw5c1WDU4hB0rPbz8KgkjCBxjWVGnyB+WKDJxXS3F5omWTKN/+5d8rTqqIxg
rFvHIluz9B5ADjRHS53a0QiXtbpgYBnrao1G6HR/Gr+naCPdJJKAa1xfwCjRHpSU
pPG9FB3pYICkYumoYmRUg/7j00pcR+mAMfiRT9PaUrRCNLhg8LHLjA==
=j8wN
-END PGP SIGNATURE-


Accepted:
fmtools_1.0.4.dsc
  to pool/main/f/fmtools/fmtools_1.0.4.dsc
fmtools_1.0.4.tar.gz
  to pool/main/f/fmtools/fmtools_1.0.4.tar.gz
fmtools_1.0.4_i386.deb
  to pool/main/f/fmtools/fmtools_1.0.4_i386.deb


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



Accepted qterm 1:0.4.1-1 (source i386)

2008-02-12 Thread LI Daobing
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 09 Feb 2008 11:45:16 +0800
Source: qterm
Binary: qterm
Architecture: source i386
Version: 1:0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: LI Daobing [EMAIL PROTECTED]
Changed-By: LI Daobing [EMAIL PROTECTED]
Description: 
 qterm  - BBS client for X Window System written in Qt
Closes: 464807
Changes: 
 qterm (1:0.4.1-1) unstable; urgency=low
 .
   * new upstream release
 - deleted: debian/patches/04_make-isIllChar-more-strict.dpatch
 - deleted: debian/patches/05_distinguish-URL-spans-over-many-rows.dpatch
 - debian/rules: remove the common-install-impl part.
   * debian/watch: updated.
   * debian/patches/00list: updated.
   * debian/control: bump standards version to 3.7.3, no changing needed.
   * debian/copyright: clear license issue.
   * debian/qterm.1: clear confused part, Thanks Bas Wijnen.
   * debian/control: bump compat level from 5 to 6.
   * debian/compat: ditto.
   * Don't build depends on ancient libqt3-compat-headers (Closes: #464807)
Files: 
 491a50f5d6ff3d63b94d63612fdd4894 917 x11 optional qterm_0.4.1-1.dsc
 e5e15d42a3d9c9ee0f7e4a67f29a4122 1008529 x11 optional qterm_0.4.1.orig.tar.gz
 9cf18ad4d61a72bd91967b2285963c8a 10110 x11 optional qterm_0.4.1-1.diff.gz
 007d54cc8751594df66f3c76c5986562 398522 x11 optional qterm_0.4.1-1_i386.deb

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

iD8DBQFHsbxFFShl+2J8z5URAoYIAKDRRcOV2Pk3Pe3o38BUrudPE0DQ4gCgkLHY
Y+rBHKPtLO1EWy/jCk06aME=
=VEI8
-END PGP SIGNATURE-


Accepted:
qterm_0.4.1-1.diff.gz
  to pool/main/q/qterm/qterm_0.4.1-1.diff.gz
qterm_0.4.1-1.dsc
  to pool/main/q/qterm/qterm_0.4.1-1.dsc
qterm_0.4.1-1_i386.deb
  to pool/main/q/qterm/qterm_0.4.1-1_i386.deb
qterm_0.4.1.orig.tar.gz
  to pool/main/q/qterm/qterm_0.4.1.orig.tar.gz


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



Accepted libapache-mod-auth-mysql 4.3.9-5 (source i386)

2008-02-12 Thread Matej Vela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 15:55:39 +0100
Source: libapache-mod-auth-mysql
Binary: libapache2-mod-auth-mysql
Architecture: source i386
Version: 4.3.9-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Matej Vela [EMAIL PROTECTED]
Description: 
 libapache2-mod-auth-mysql - Apache 2 module for MySQL authentication
Closes: 420010 437310
Changes: 
 libapache-mod-auth-mysql (4.3.9-5) unstable; urgency=low
 .
   * QA upload.
   * debian/patches/004-reconnect.dpatch: Automatically re-establish
 connections with MySQL 5.0.3+.  Thanks to Johann Glaser for the patch.
 Closes: #420010.
   * debian/rules: Let dh_strip handle DEB_BUILD_OPTIONS=nostrip.
 Closes: #437310.
   * debian/rules: Remove support for DEB_BUILD_OPTIONS=debug.
   * debian/rules: Don't ignore errors from `make distclean'.
   * Conforms to Standards version 3.7.3.
Files: 
 e35df6b38d669f9bdf8a6d726d96efb2 703 web optional 
libapache-mod-auth-mysql_4.3.9-5.dsc
 fc5e16316fda7f26bbbe19bea045e280 9106 web optional 
libapache-mod-auth-mysql_4.3.9-5.diff.gz
 0752c00b77ec463dbf73b953b6787a15 22442 web optional 
libapache2-mod-auth-mysql_4.3.9-5_i386.deb

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

iD8DBQFHsbPYqbYs6sQrY8oRArQNAJoC3UGbZiTf+auCqXX+RgJ8dEGqbACeOnJM
mLXYuCGpWG/b3PyxAgvqXD8=
=0z/p
-END PGP SIGNATURE-


Accepted:
libapache-mod-auth-mysql_4.3.9-5.diff.gz
  to 
pool/main/liba/libapache-mod-auth-mysql/libapache-mod-auth-mysql_4.3.9-5.diff.gz
libapache-mod-auth-mysql_4.3.9-5.dsc
  to 
pool/main/liba/libapache-mod-auth-mysql/libapache-mod-auth-mysql_4.3.9-5.dsc
libapache2-mod-auth-mysql_4.3.9-5_i386.deb
  to 
pool/main/liba/libapache-mod-auth-mysql/libapache2-mod-auth-mysql_4.3.9-5_i386.deb


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



Accepted libxml-rss-perl 1.32-1 (source all)

2008-02-12 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 09:00:34 -0600
Source: libxml-rss-perl
Binary: libxml-rss-perl
Architecture: source all
Version: 1.32-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Gunnar Wolf [EMAIL PROTECTED]
Description: 
 libxml-rss-perl - Perl module for managing RSS (RDF Site Summary) files
Closes: 463774
Changes: 
 libxml-rss-perl (1.32-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/rules: delete /usr/lib/perl5 only if it exists.
 .
   [ Joey Hess ]
   * Fix handling of guid's isPermaLink attribute -- if it's not set,
 it's false, not true. Closes: #463774
 .
   [ gregor herrmann ]
   * New upstream release; incorporates joeyh's patch.
   * debian/watch: use improved regexp for matching upstream tarballs.
   * Set debhelper compatibility level to 6.
   * debian/control:
 - set Standards-Version to 3.7.3 (no changes needed)
 - add /me to Uploaders
   * debian/rules:
 - remove *VENDORARCH* variables
 - remove commented out stuff
 - let install-stamp target depend on build-stamp
 .
   [ Gunnar Wolf ]
   * Added myself to uploaders
   * Fixed the permissions of nonexecutable files in
 /usr/share/doc/libxml-rss-perl/examples/ (README, *.rdf)
Files: 
 d9a4c5cf7438a1f8e10eaf4b35a139cc 1233 perl optional libxml-rss-perl_1.32-1.dsc
 52d3d398c81a6d86ad4b271f630cf6f4 87810 perl optional 
libxml-rss-perl_1.32.orig.tar.gz
 53050548b747365bde90d35204e2a274 4563 perl optional 
libxml-rss-perl_1.32-1.diff.gz
 498c135d8aa6e984e7e6ddd1795fede0 51828 perl optional 
libxml-rss-perl_1.32-1_all.deb

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

iD8DBQFHsbWk2A7zWou1J68RAo7VAKCeqvXr1jIW4+p3fdo2LmLTpphk+gCgtHg6
YwkBkF04cNHTKsQjRi+fmc8=
=DMj3
-END PGP SIGNATURE-


Accepted:
libxml-rss-perl_1.32-1.diff.gz
  to pool/main/libx/libxml-rss-perl/libxml-rss-perl_1.32-1.diff.gz
libxml-rss-perl_1.32-1.dsc
  to pool/main/libx/libxml-rss-perl/libxml-rss-perl_1.32-1.dsc
libxml-rss-perl_1.32-1_all.deb
  to pool/main/libx/libxml-rss-perl/libxml-rss-perl_1.32-1_all.deb
libxml-rss-perl_1.32.orig.tar.gz
  to pool/main/libx/libxml-rss-perl/libxml-rss-perl_1.32.orig.tar.gz


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



Accepted italc 1:1.0.6-1 (source i386)

2008-02-12 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 14:47:20 +0100
Source: italc
Binary: italc-master italc-client libitalc
Architecture: source i386
Version: 1:1.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Winnertz [EMAIL PROTECTED]
Changed-By: Patrick Winnertz [EMAIL PROTECTED]
Description: 
 italc-client - Intelligent Teaching and Learning with Computers
 italc-master - Intelligent Teaching and Learning with Computers
 libitalc   - Intelligent Teaching and Learning with Computers
Closes: 460889
Changes: 
 italc (1:1.0.6-1) unstable; urgency=low
 .
   * Move Homepage Header from Package Section into global Section.
   * Add the forgotten libitalc.install in order to install the lib correctly.
 Patch ica/Makefile.am and ima/Makefile.am in order to show
 the new place of the lib (Closes: #460889)
Files: 
 cbf905eec4176b3b6ea5182409fc81d9 716 x11 optional italc_1.0.6-1.dsc
 f9690d3c93bd132c451c6e7716a4986f 2936692 x11 optional italc_1.0.6.orig.tar.gz
 dc12f2444b023926e38755a6b99f2e59 4907 x11 optional italc_1.0.6-1.diff.gz
 ed9fad9c580b46e11c2506af237b035c 987462 x11 optional 
italc-master_1.0.6-1_i386.deb
 256eb5b754b4d3e6e2d11ecaa0debc8b 515056 x11 optional 
italc-client_1.0.6-1_i386.deb
 124c0b407d2d5f5e0cbdff9ef20983b2 192670 x11 optional libitalc_1.0.6-1_i386.deb

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

iD8DBQFHsa3Szgm26bkTFDoRAvmNAKCT07W1rIK+84tuiJw5hBYC9IrLBQCffbNh
VbWuB0nao6VVkftlO2xxY1M=
=K5il
-END PGP SIGNATURE-


Accepted:
italc-client_1.0.6-1_i386.deb
  to pool/main/i/italc/italc-client_1.0.6-1_i386.deb
italc-master_1.0.6-1_i386.deb
  to pool/main/i/italc/italc-master_1.0.6-1_i386.deb
italc_1.0.6-1.diff.gz
  to pool/main/i/italc/italc_1.0.6-1.diff.gz
italc_1.0.6-1.dsc
  to pool/main/i/italc/italc_1.0.6-1.dsc
italc_1.0.6.orig.tar.gz
  to pool/main/i/italc/italc_1.0.6.orig.tar.gz
libitalc_1.0.6-1_i386.deb
  to pool/main/i/italc/libitalc_1.0.6-1_i386.deb


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



Accepted libwpd 0.8.14-1 (source all powerpc)

2008-02-12 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 15:22:12 +0100
Source: libwpd
Binary: libwpd8-dev libwpd8c2a libwpd-stream8c2a libwpd-tools libwpd8-doc
Architecture: source all powerpc
Version: 0.8.14-1
Distribution: unstable
Urgency: low
Maintainer: Rene Engelhard [EMAIL PROTECTED]
Changed-By: Rene Engelhard [EMAIL PROTECTED]
Description: 
 libwpd-stream8c2a - Library for handling WordPerfect documents (shared library)
 libwpd-tools - Tools from libwpd for converting WordPerfect to HTML/RAW/Text
 libwpd8-dev - Library for handling WordPerfect documents (development)
 libwpd8-doc - Library for handling WordPerfect documents (documentation)
 libwpd8c2a - Library for handling WordPerfect documents (shared library)
Changes: 
 libwpd (0.8.14-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 ae122bd8890f581cd5a5c3117b50 815 devel optional libwpd_0.8.14-1.dsc
 64d66018897d759358f454010b6e75d2 603455 devel optional 
libwpd_0.8.14.orig.tar.gz
 529d231bb9edced82fd571e973914bb3 8701 devel optional libwpd_0.8.14-1.diff.gz
 d6bc7f9566b28785786cc3fd238e8614 1184756 doc optional 
libwpd8-doc_0.8.14-1_all.deb
 41584685aaa6d74604da5646457f32c0 412720 libdevel optional 
libwpd8-dev_0.8.14-1_powerpc.deb
 bb1e790cda089475cc8bd8597edb4db8 241568 libs optional 
libwpd8c2a_0.8.14-1_powerpc.deb
 31564389a4ba2652537c9b5984669f73 44708 libs optional 
libwpd-stream8c2a_0.8.14-1_powerpc.deb
 c64c76b0dae9ee77590d198b2beaddac 32798 utils optional 
libwpd-tools_0.8.14-1_powerpc.deb

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

iD8DBQFHsa+1+FmQsCSK63MRAlLAAJ9l5DaLEMvQdomodCTI3+fBuCwrRwCfS9s9
AnxWro0Ymw6FE4wxS67FjP8=
=xZc9
-END PGP SIGNATURE-


Accepted:
libwpd-stream8c2a_0.8.14-1_powerpc.deb
  to pool/main/libw/libwpd/libwpd-stream8c2a_0.8.14-1_powerpc.deb
libwpd-tools_0.8.14-1_powerpc.deb
  to pool/main/libw/libwpd/libwpd-tools_0.8.14-1_powerpc.deb
libwpd8-dev_0.8.14-1_powerpc.deb
  to pool/main/libw/libwpd/libwpd8-dev_0.8.14-1_powerpc.deb
libwpd8-doc_0.8.14-1_all.deb
  to pool/main/libw/libwpd/libwpd8-doc_0.8.14-1_all.deb
libwpd8c2a_0.8.14-1_powerpc.deb
  to pool/main/libw/libwpd/libwpd8c2a_0.8.14-1_powerpc.deb
libwpd_0.8.14-1.diff.gz
  to pool/main/libw/libwpd/libwpd_0.8.14-1.diff.gz
libwpd_0.8.14-1.dsc
  to pool/main/libw/libwpd/libwpd_0.8.14-1.dsc
libwpd_0.8.14.orig.tar.gz
  to pool/main/libw/libwpd/libwpd_0.8.14.orig.tar.gz


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



Accepted xdg-user-dirs-gtk 0.7-1 (source i386)

2008-02-12 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 15:02:40 +0100
Source: xdg-user-dirs-gtk
Binary: xdg-user-dirs-gtk
Architecture: source i386
Version: 0.7-1
Distribution: unstable
Urgency: low
Maintainer: Sebastian Dröge [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 xdg-user-dirs-gtk - tool to manage well known user directories (Gtk extension)
Changes: 
 xdg-user-dirs-gtk (0.7-1) unstable; urgency=low
 .
   * New upstream bugfix release with many translation updates:
 + debian/patches/01_no_desktop_bookmark.patch,
   debian/patches/90_from_svn_handle_en_us_variants.patch:
   - Dropped, merged upstream.
   * debian/control.in:
 + Update Standards-Version to 3.7.3, no additional changes needed.
 + Move homepage to the Homepage field and fix the URL.
   * debian/rules:
 + Add -Wl,-z,defs to LDFLAGS and actually append.
Files: 
 0e234d6cb35f9b4ddb0ecfbc50fc3061 830 utils optional xdg-user-dirs-gtk_0.7-1.dsc
 f27313d2f743b06e17d3b2272ec539d2 138404 utils optional 
xdg-user-dirs-gtk_0.7.orig.tar.gz
 d7583c8b5fcb5228573d600b6e9c1fd5 1938 utils optional 
xdg-user-dirs-gtk_0.7-1.diff.gz
 1786e178c409d07bae711504851f9298 27188 utils optional 
xdg-user-dirs-gtk_0.7-1_i386.deb

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

iD8DBQFHsayHBsBdh1vkHyERAjb7AKCmtpPxC5J5RZ6XgKbFR4Khu4AFKACfeiR7
xSOI4tBV3zKqMTpECUp0Za0=
=w1eL
-END PGP SIGNATURE-


Accepted:
xdg-user-dirs-gtk_0.7-1.diff.gz
  to pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.7-1.diff.gz
xdg-user-dirs-gtk_0.7-1.dsc
  to pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.7-1.dsc
xdg-user-dirs-gtk_0.7-1_i386.deb
  to pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.7-1_i386.deb
xdg-user-dirs-gtk_0.7.orig.tar.gz
  to pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.7.orig.tar.gz


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



Accepted xdg-user-dirs 0.10-1 (source i386)

2008-02-12 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 14:54:52 +0100
Source: xdg-user-dirs
Binary: xdg-user-dirs
Architecture: source i386
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: Sebastian Dröge [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 xdg-user-dirs - tool to manage well known user directories
Closes: 445898
Changes: 
 xdg-user-dirs (0.10-1) unstable; urgency=low
 .
   * New upstream bugfix release with many new translations.
   * debian/control.in:
 + Update Standards-Version to 3.7.3, no additional changes needed.
 + Move homepage to the Homepage field and fix the URL (Closes: #445898).
   * debian/rules:
 + Add -Wl,-z,defs to LDFLAGS and actually append.
Files: 
 00c9ae1daf101e0007c7bbaeddcb217b 752 utils optional xdg-user-dirs_0.10-1.dsc
 6873f49ea7f568743621ed1e05e52dab 242835 utils optional 
xdg-user-dirs_0.10.orig.tar.gz
 c839346af527917b3f190c04f67c46c1 2777 utils optional 
xdg-user-dirs_0.10-1.diff.gz
 097f5d95db144213876f800b2e4985d7 28522 utils optional 
xdg-user-dirs_0.10-1_i386.deb

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

iD8DBQFHsaikBsBdh1vkHyERAutlAKCBh7nWnqtty32GPdfk5EdKVRPBVACgrsOT
/hpEtNnzO0Xc/xTwdJQKFzg=
=kJOa
-END PGP SIGNATURE-


Accepted:
xdg-user-dirs_0.10-1.diff.gz
  to pool/main/x/xdg-user-dirs/xdg-user-dirs_0.10-1.diff.gz
xdg-user-dirs_0.10-1.dsc
  to pool/main/x/xdg-user-dirs/xdg-user-dirs_0.10-1.dsc
xdg-user-dirs_0.10-1_i386.deb
  to pool/main/x/xdg-user-dirs/xdg-user-dirs_0.10-1_i386.deb
xdg-user-dirs_0.10.orig.tar.gz
  to pool/main/x/xdg-user-dirs/xdg-user-dirs_0.10.orig.tar.gz


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



Accepted pcb 20080202-2 (source all amd64)

2008-02-12 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Feb 2008 00:47:14 +1100
Source: pcb
Binary: pcb pcb-common pcb-gtk pcb-lesstif
Architecture: source all amd64
Version: 20080202-2
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 pcb- printed circuit board (pcb) design program - meta-package
 pcb-common - printed circuit board (pcb) design program - common files
 pcb-gtk- printed circuit board (pcb) design program - GTK+ interface
 pcb-lesstif - printed circuit board (pcb) design program - LessTif interface
Changes: 
 pcb (20080202-2) unstable; urgency=low
 .
   * Call dh_installmime in debian/rules to register the MIME types properly
   * Added Recommends: for extra-xdg-menus, which will add an Electronics
 menu to your freedesktop environment.
Files: 
 959810b1cab86e10cb29317fef48569d 901 electronics optional pcb_20080202-2.dsc
 398bdb32b205c8ceaaa48a1740610f75 5921 electronics optional 
pcb_20080202-2.diff.gz
 fb954feb9f0b310998ebc82a869bf427 960 electronics optional 
pcb_20080202-2_all.deb
 e8ecad38cdec5bc31771fc2cdca38a79 1722706 electronics optional 
pcb-common_20080202-2_all.deb
 95fa4ac55d2c63049317281e6441b4ee 461648 electronics optional 
pcb-gtk_20080202-2_amd64.deb
 e38835f1b896e5d15dac4c9985bd010c 423976 electronics optional 
pcb-lesstif_20080202-2_amd64.deb

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

iD4DBQFHsaRH30WoBV0H6VwRAuOKAJdISw+8nj+1TmbuMYnaPIwrYGwJAJ4sstIy
A7gz8j+WuzHS/VpfdL/Caw==
=NuQg
-END PGP SIGNATURE-


Accepted:
pcb-common_20080202-2_all.deb
  to pool/main/p/pcb/pcb-common_20080202-2_all.deb
pcb-gtk_20080202-2_amd64.deb
  to pool/main/p/pcb/pcb-gtk_20080202-2_amd64.deb
pcb-lesstif_20080202-2_amd64.deb
  to pool/main/p/pcb/pcb-lesstif_20080202-2_amd64.deb
pcb_20080202-2.diff.gz
  to pool/main/p/pcb/pcb_20080202-2.diff.gz
pcb_20080202-2.dsc
  to pool/main/p/pcb/pcb_20080202-2.dsc
pcb_20080202-2_all.deb
  to pool/main/p/pcb/pcb_20080202-2_all.deb


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



Accepted geda-gattrib 1:1.4.0-2 (source amd64)

2008-02-12 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 23:18:42 +1100
Source: geda-gattrib
Binary: geda-gattrib
Architecture: source amd64
Version: 1:1.4.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 geda-gattrib - GPL EDA -- Electronics design software -- attribute editor
Changes: 
 geda-gattrib (1:1.4.0-2) unstable; urgency=low
 .
   * Fix FTBFS: don't attempt to update the freedesktop database at build-time
Files: 
 e0c6b1c6b2802720824bfab39013ed2b 811 electronics optional 
geda-gattrib_1.4.0-2.dsc
 3923444caa8a05e399cceb52c45939d6 2518 electronics optional 
geda-gattrib_1.4.0-2.diff.gz
 a306422672ea446b8bd74bacb6387126 118412 electronics optional 
geda-gattrib_1.4.0-2_amd64.deb

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

iD8DBQFHsZB330WoBV0H6VwRAppXAJ9OgbcDiEfUtlkRhDGJBhpdWAY7gACgpGZC
3rZaloRIt8GzCtlpWkdpm60=
=5kUw
-END PGP SIGNATURE-


Accepted:
geda-gattrib_1.4.0-2.diff.gz
  to pool/main/g/geda-gattrib/geda-gattrib_1.4.0-2.diff.gz
geda-gattrib_1.4.0-2.dsc
  to pool/main/g/geda-gattrib/geda-gattrib_1.4.0-2.dsc
geda-gattrib_1.4.0-2_amd64.deb
  to pool/main/g/geda-gattrib/geda-gattrib_1.4.0-2_amd64.deb


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



Accepted dialog 1.1-20071028-3 (source amd64)

2008-02-12 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 16:52:52 +0100
Source: dialog
Binary: dialog
Architecture: source amd64
Version: 1.1-20071028-3
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila [EMAIL PROTECTED]
Changed-By: Santiago Vila [EMAIL PROTECTED]
Description: 
 dialog - Displays user-friendly dialog boxes from shell scripts
Closes: 457263 463234
Changes: 
 dialog (1.1-20071028-3) unstable; urgency=low
 .
   * Build with -fPIC. Required by gnunet. Closes: #457263. Note that
 this is just a temporary workaround for Bug#454948. There will
 be a shared library in the near future.
   * Added Provides: libdialog-dev. Packages who build-depend on dialog
 because of its library *must* now depend on libdialog-dev instead.
   * Changed extended description to mention editor. Closes: #463234.
Files: 
 cdc7fdffb69a43216cc8e4ac360a9bd2 593 misc optional dialog_1.1-20071028-3.dsc
 bef1a6b839d6f78a4bdb988548727de2 9300 misc optional 
dialog_1.1-20071028-3.diff.gz
 e1ffefc4259481fdf72bcfc62a66d162 269332 misc optional 
dialog_1.1-20071028-3_amd64.deb

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

iD8DBQFHscGSd9Uuvj7yPNYRAqfvAJ9PLxB/usvu056jUAMMidqLj/u++ACfY3+U
WWxzMxR/N6xtvWcrJNIS+NM=
=Iat6
-END PGP SIGNATURE-


Accepted:
dialog_1.1-20071028-3.diff.gz
  to pool/main/d/dialog/dialog_1.1-20071028-3.diff.gz
dialog_1.1-20071028-3.dsc
  to pool/main/d/dialog/dialog_1.1-20071028-3.dsc
dialog_1.1-20071028-3_amd64.deb
  to pool/main/d/dialog/dialog_1.1-20071028-3_amd64.deb


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



Accepted swi-prolog-doc 5.6.50-1 (source all)

2008-02-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 12:56:04 +
Source: swi-prolog-doc
Binary: swi-prolog-doc
Architecture: source all
Version: 5.6.50-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 swi-prolog-doc - Documentation for SWI-Prolog interpreter and XPCE
Changes: 
 swi-prolog-doc (5.6.50-1) unstable; urgency=low
 .
   * New upstream release.
   * Do not compress the PDFs - it is inconvenient and does not save much space.
   * Add get-orig-source target to debian/rules.
   * Update upstream location in debian/copyright.
   * Rename Vcs-Browse - Vcs-Browser.
Files: 
 e8b47cf38d6e57ed04d4956872a9d174 758 doc optional swi-prolog-doc_5.6.50-1.dsc
 2d80c7d8c4869642adc7acbd58ec583d 3926426 doc optional 
swi-prolog-doc_5.6.50.orig.tar.gz
 136bd8913ebfd90be090b865fd2a6033 2306 doc optional 
swi-prolog-doc_5.6.50-1.diff.gz
 b73c9aebb0ca4bf0251a3ca97321dc45 3927802 doc optional 
swi-prolog-doc_5.6.50-1_all.deb

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

iD8DBQFHso2Z+C5cwEsrK54RAnZbAJ9gDUGwmNgQ1yelTBOviZdOtgpcaACfSKM5
JA0EWw9R90xvtLff8IUnZvQ=
=zeIn
-END PGP SIGNATURE-


Accepted:
swi-prolog-doc_5.6.50-1.diff.gz
  to pool/main/s/swi-prolog-doc/swi-prolog-doc_5.6.50-1.diff.gz
swi-prolog-doc_5.6.50-1.dsc
  to pool/main/s/swi-prolog-doc/swi-prolog-doc_5.6.50-1.dsc
swi-prolog-doc_5.6.50-1_all.deb
  to pool/main/s/swi-prolog-doc/swi-prolog-doc_5.6.50-1_all.deb
swi-prolog-doc_5.6.50.orig.tar.gz
  to pool/main/s/swi-prolog-doc/swi-prolog-doc_5.6.50.orig.tar.gz


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



Accepted zelig 3.1-1-1 (source all)

2008-02-12 Thread Chris Lawrence
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 23:46:39 -0600
Source: zelig
Binary: r-cran-zelig
Architecture: source all
Version: 3.1-1-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lawrence [EMAIL PROTECTED]
Changed-By: Chris Lawrence [EMAIL PROTECTED]
Description: 
 r-cran-zelig - GNU R package providing a unified front-end for estimating 
statis
Changes: 
 zelig (3.1-1-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 b5baeabcc77d14cfea939438fecf0cd9 642 math optional zelig_3.1-1-1.dsc
 589fb5aed92a4982b684783bfd12314e 12337698 math optional zelig_3.1-1.orig.tar.gz
 71c5621038f2606534df6cc188f05be7 3854 math optional zelig_3.1-1-1.diff.gz
 d9018aca47d02f8dfa5b02cefc791a64 12743876 math optional 
r-cran-zelig_3.1-1-1_all.deb

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

iD8DBQFHso2p2wQKE6PXubwRAhneAJ9Tk56Isgnf6Oo8S5f9FnLiDWh7gQCguYAn
HG2YTjx8UCr5iB9JrOP2spY=
=bHui
-END PGP SIGNATURE-


Accepted:
r-cran-zelig_3.1-1-1_all.deb
  to pool/main/z/zelig/r-cran-zelig_3.1-1-1_all.deb
zelig_3.1-1-1.diff.gz
  to pool/main/z/zelig/zelig_3.1-1-1.diff.gz
zelig_3.1-1-1.dsc
  to pool/main/z/zelig/zelig_3.1-1-1.dsc
zelig_3.1-1.orig.tar.gz
  to pool/main/z/zelig/zelig_3.1-1.orig.tar.gz


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



Accepted iaxmodem 1.1.0~dfsg-1 (source amd64)

2008-02-12 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 15:29:42 +0100
Source: iaxmodem
Binary: iaxmodem
Architecture: source amd64
Version: 1.1.0~dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team [EMAIL PROTECTED]
Changed-By: Julien BLACHE [EMAIL PROTECTED]
Description: 
 iaxmodem   - software modem with IAX2 connectivity
Changes: 
 iaxmodem (1.1.0~dfsg-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 b55c0546d24c02ae0c93327eca772e69 898 comm optional iaxmodem_1.1.0~dfsg-1.dsc
 5fa3a15d30fd39c0187379c7d0e4a4ed 2312891 comm optional 
iaxmodem_1.1.0~dfsg.orig.tar.gz
 3e595dce32e8e8c49df6e62eb075747f 7390 comm optional 
iaxmodem_1.1.0~dfsg-1.diff.gz
 ded3c8eb235b4cc86f2e6ad22f62ddb4 206772 comm optional 
iaxmodem_1.1.0~dfsg-1_amd64.deb

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

iD8DBQFHsa33zWFP1/XWUWkRAjq4AKCdsI+kHCcl0JsqzyZyLQZ3K3VkQQCgmDBI
YxGlDElSyrYiNboT75XZFIU=
=0lo5
-END PGP SIGNATURE-


Accepted:
iaxmodem_1.1.0~dfsg-1.diff.gz
  to pool/main/i/iaxmodem/iaxmodem_1.1.0~dfsg-1.diff.gz
iaxmodem_1.1.0~dfsg-1.dsc
  to pool/main/i/iaxmodem/iaxmodem_1.1.0~dfsg-1.dsc
iaxmodem_1.1.0~dfsg-1_amd64.deb
  to pool/main/i/iaxmodem/iaxmodem_1.1.0~dfsg-1_amd64.deb
iaxmodem_1.1.0~dfsg.orig.tar.gz
  to pool/main/i/iaxmodem/iaxmodem_1.1.0~dfsg.orig.tar.gz


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



Accepted gnumed-client 0.2.8.3-2 (source all)

2008-02-12 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 13:47:29 +0100
Source: gnumed-client
Binary: gnumed-client gnumed-client-de gnumed-common gnumed-doc
Architecture: source all
Version: 0.2.8.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team [EMAIL PROTECTED]
Changed-By: Andreas Tille [EMAIL PROTECTED]
Description: 
 gnumed-client - medical practice management - Client
 gnumed-client-de - medical practice management - Client for German users
 gnumed-common - medical practice management - common files
 gnumed-doc - medical practice management - Documentation
Changes: 
 gnumed-client (0.2.8.3-2) unstable; urgency=low
 .
   [ David Paleino ]
   * debian/control:
 - added myself to Uploaders
 - wrapped long lines
 - removed [Med] from short description (let's use DebTags!)
   * debian/conf/gnumed-client.conf - fixed broken configuration file,
 now the local database shows up in GNUmed!
   * debian/compat - updated to 5
   * debian/po/it.po added - DebConf also localized in Italian now!
   * debian/gnumed-client.desktop - removed deprecated Encoding field.
   * debian/gnumed-client.README.debian - fixed some typos.
   * debian/rules cleaned up a bit:
 - removed unused targets (left only mandatory ones)
 - removed unused dh_* calls
 - merged duplicated targets
 .
   [ Andreas Tille ]
   * Added a patch supplied by upstream
   * Make usage of quilt
Files: 
 ddee26ba8e9e10323875281b59e7b720 1088 misc optional gnumed-client_0.2.8.3-2.dsc
 cae5be800c280e3ec07b6aee8af3283e 21128 misc optional 
gnumed-client_0.2.8.3-2.diff.gz
 8077f8de0837912c7f8f3c8af0450fe0 867448 misc optional 
gnumed-client_0.2.8.3-2_all.deb
 b621a98d886aa14c98b79b70a363ad3f 7916 misc optional 
gnumed-client-de_0.2.8.3-2_all.deb
 46b1d4dd5e792caef4b28da46df27ce2 75044 misc optional 
gnumed-common_0.2.8.3-2_all.deb
 104e755e887185f20fffb811c6b6f955 51604 doc optional 
gnumed-doc_0.2.8.3-2_all.deb

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

iD8DBQFHsayPYDBbMcCf01oRAs34AJ0aF5/F90ZRWd7blROKJp/lwrJKXgCeMX5k
dZ3+wNWGHWK7/289UWa9fuQ=
=RUnc
-END PGP SIGNATURE-


Accepted:
gnumed-client-de_0.2.8.3-2_all.deb
  to pool/main/g/gnumed-client/gnumed-client-de_0.2.8.3-2_all.deb
gnumed-client_0.2.8.3-2.diff.gz
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.3-2.diff.gz
gnumed-client_0.2.8.3-2.dsc
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.3-2.dsc
gnumed-client_0.2.8.3-2_all.deb
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.3-2_all.deb
gnumed-common_0.2.8.3-2_all.deb
  to pool/main/g/gnumed-client/gnumed-common_0.2.8.3-2_all.deb
gnumed-doc_0.2.8.3-2_all.deb
  to pool/main/g/gnumed-client/gnumed-doc_0.2.8.3-2_all.deb


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



Accepted miro 1.1.2-1 (source all i386)

2008-02-12 Thread Uwe Hermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 01:15:49 +0100
Source: miro
Binary: miro miro-data
Architecture: source all i386
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Uwe Hermann [EMAIL PROTECTED]
Changed-By: Uwe Hermann [EMAIL PROTECTED]
Description: 
 miro   - GTK+ based RSS video aggregator
 miro-data  - GTK+ based RSS video aggregator data files
Closes: 439398 441894 442078 447090 460442 461253 461287
Changes: 
 miro (1.1.2-1) unstable; urgency=low
 .
   * New upstream release (Closes: #460442).
   * debian/copyright: Update various entries.
  + Miro now has a special exception which allows linking against OpenSSL.
  + portable/BitTorrent/ is gone, portable/libtorrent/ is here.
   * Close some bugs which I cannot reproduce in the latest Miro release.
 Please reopen if the problem persists.
  + Democracyplayer does not run at all (Closes: #441894).
  + Crashes on start gecko/bug-buddy pthread_join() (Closes: #447090).
  + Can't close: gives various error messages (Closes: #439398).
   * Recommend 'ttf-dejavu' instead of 'ttf-bitstream-vera' which is going
 to be removed (Closes: #461253, 461287).
   * Channel guide links are no longer opened in a browser (Closes: #442078).
Files: 
 795ca93c199a729469c1820f93367f6a 837 net optional miro_1.1.2-1.dsc
 4131abb696a4b8007568dab2f468c262 13235943 net optional miro_1.1.2.orig.tar.gz
 a264376c11f3a63085345af515e69bdf 10040 net optional miro_1.1.2-1.diff.gz
 ad200031a414f3674b4e8b87111a265f 860168 net optional miro-data_1.1.2-1_all.deb
 ec21f54690a04c12cc0da669c0590c9b 1975680 net optional miro_1.1.2-1_i386.deb

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

iD8DBQFHsZEEXdVoV3jWIbQRAs6CAJ9VuJefqCvexoUfr6v1PDYRXNCJqwCdFWY2
hxcz0j1Q+3GftXdRA58rK9s=
=L/x/
-END PGP SIGNATURE-


Accepted:
miro-data_1.1.2-1_all.deb
  to pool/main/m/miro/miro-data_1.1.2-1_all.deb
miro_1.1.2-1.diff.gz
  to pool/main/m/miro/miro_1.1.2-1.diff.gz
miro_1.1.2-1.dsc
  to pool/main/m/miro/miro_1.1.2-1.dsc
miro_1.1.2-1_i386.deb
  to pool/main/m/miro/miro_1.1.2-1_i386.deb
miro_1.1.2.orig.tar.gz
  to pool/main/m/miro/miro_1.1.2.orig.tar.gz


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



Accepted pcb 20080202-1 (source all amd64)

2008-02-12 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 23:30:35 +1100
Source: pcb
Binary: pcb pcb-common pcb-gtk pcb-lesstif
Architecture: source all amd64
Version: 20080202-1
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 pcb- printed circuit board (pcb) design program - meta-package
 pcb-common - printed circuit board (pcb) design program - common files
 pcb-gtk- printed circuit board (pcb) design program - GTK+ interface
 pcb-lesstif - printed circuit board (pcb) design program - LessTif interface
Changes: 
 pcb (20080202-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 524810a8609c49d20a1c6999c12c7521 901 electronics optional pcb_20080202-1.dsc
 933eda642f3838b24d417224693f8386 4240472 electronics optional 
pcb_20080202.orig.tar.gz
 8916aa2d3535d3f5f870ff1d809b7d7b 5792 electronics optional 
pcb_20080202-1.diff.gz
 79e5c0c210777aa092516709bc0cd74b 962 electronics optional 
pcb_20080202-1_all.deb
 ec811b67c586bdd6b8d6d2cb5f0ffc7c 1722486 electronics optional 
pcb-common_20080202-1_all.deb
 610592c4a9297cb6a9b1b707639967d6 461648 electronics optional 
pcb-gtk_20080202-1_amd64.deb
 3fe57606b06fb4a3831d084cf87b3e9a 423970 electronics optional 
pcb-lesstif_20080202-1_amd64.deb

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

iD8DBQFHsZYh30WoBV0H6VwRAoCGAKCBQ/Xqrj2rstJvbNePdXDRs0iOwACeNbXd
TqZht3iyYzHrC36SR1ApsDU=
=cTtC
-END PGP SIGNATURE-


Accepted:
pcb-common_20080202-1_all.deb
  to pool/main/p/pcb/pcb-common_20080202-1_all.deb
pcb-gtk_20080202-1_amd64.deb
  to pool/main/p/pcb/pcb-gtk_20080202-1_amd64.deb
pcb-lesstif_20080202-1_amd64.deb
  to pool/main/p/pcb/pcb-lesstif_20080202-1_amd64.deb
pcb_20080202-1.diff.gz
  to pool/main/p/pcb/pcb_20080202-1.diff.gz
pcb_20080202-1.dsc
  to pool/main/p/pcb/pcb_20080202-1.dsc
pcb_20080202-1_all.deb
  to pool/main/p/pcb/pcb_20080202-1_all.deb
pcb_20080202.orig.tar.gz
  to pool/main/p/pcb/pcb_20080202.orig.tar.gz


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



Accepted runit 1.8.0-2 (source powerpc)

2008-02-12 Thread Gerrit Pape
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 22:38:24 +
Source: runit
Binary: runit
Architecture: source powerpc
Version: 1.8.0-2
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape [EMAIL PROTECTED]
Changed-By: Gerrit Pape [EMAIL PROTECTED]
Description: 
 runit  - a UNIX init scheme with service supervision
Changes: 
 runit (1.8.0-2) unstable; urgency=low
 .
   * debian/update-service, debian/update-service.8: new; add/remove a
 service to/from system-wide service supervision (helps to move away
 from /var/service/, #461478).
   * debian/rules: install update-service program and its manpage.
Files: 
 5d65cfcb7b594c5225ae46e3877a5c70 627 admin optional runit_1.8.0-2.dsc
 c19d4ce3ece546a1427e1187daa518d2 10586 admin optional runit_1.8.0-2.diff.gz
 34903edf87db1d9e7b926769f90d0512 111654 admin optional 
runit_1.8.0-2_powerpc.deb

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

iD8DBQFHsZAgGJoyQbxwpv8RAtqsAJ0Z7WkH1d405sUZ1nK6u5hIRShP7wCfZdVy
Whjdpb84WIoXbDuAltROTwM=
=6C8O
-END PGP SIGNATURE-


Accepted:
runit_1.8.0-2.diff.gz
  to pool/main/r/runit/runit_1.8.0-2.diff.gz
runit_1.8.0-2.dsc
  to pool/main/r/runit/runit_1.8.0-2.dsc
runit_1.8.0-2_powerpc.deb
  to pool/main/r/runit/runit_1.8.0-2_powerpc.deb


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



Accepted madwifi-tools 1:0.9.4~rc2+dfsg-1 (source i386)

2008-02-12 Thread Kel Modderman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 21:05:04 +1000
Source: madwifi-tools
Binary: madwifi-tools
Architecture: source i386
Version: 1:0.9.4~rc2+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian madwifi team [EMAIL PROTECTED]
Changed-By: Kel Modderman [EMAIL PROTECTED]
Description: 
 madwifi-tools - tools for the Multiband Atheros Driver for WiFi
Changes: 
 madwifi-tools (1:0.9.4~rc2+dfsg-1) unstable; urgency=low
 .
   * New upstream release candidate.
   * Convert debian/rules to debhelper only from cdbs. Drop build dependency on
 cdbs. [debian/control, debian/rules]
   * debian/dirs is no longer required, adjust installation of file in install
 target of debian/rules to create directories as required. [debian/dirs,
 debian/rules]
   * Convert dpatch patch system to quilt. Build depnd on quilt.
 [debian/patches/*]
   * Update Standards Version to 3.7.3.
   * Add debian/madwifi-tools.madwifi.modprobe to provide module blacklist,
 and allow madwifi to operate when installed alongside an ath5k kernel
 module when this package is installed (and is a hard dependency of
 madwifi-modules-_KVERS_). [debian/madwifi-tools.madwifi.modprobe,
 debian/rules]
   * Drop Alex Wallis from Uploaders, he hasn't been active for too long.
 [debian/control]
   * Cleanup debian/rules get-orig-source target. [debian/rules]
   * Install the new ath_info upstream tool. [debian/rules, debian/manpages]
   * Add debian/patches/02_ath_info_manpage_warnings.patch to fix errors in
 ath_info.8.
Files: 
 b626022f098fff93a412bbb2e5d0d0a1 981 contrib/net optional 
madwifi-tools_0.9.4~rc2+dfsg-1.dsc
 a623854295f34bb9a081ad9ceca1f03f 71810 contrib/net optional 
madwifi-tools_0.9.4~rc2+dfsg.orig.tar.gz
 98672b41b09b7d162886f55aa960a14f 8434 contrib/net optional 
madwifi-tools_0.9.4~rc2+dfsg-1.diff.gz
 dc1745709ea43dc9e2d4bbcc896c6bb2 49438 contrib/net optional 
madwifi-tools_0.9.4~rc2+dfsg-1_i386.deb

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

iD8DBQFHsY+uaGRzDfCV5eQRAiX4AJ9jDy5lfoAZKWBB0UJgvO6TchyG4ACfcY4X
oJ3D7AbEFfaq8Yik9z+DNsE=
=nbSg
-END PGP SIGNATURE-


Accepted:
madwifi-tools_0.9.4~rc2+dfsg-1.diff.gz
  to pool/contrib/m/madwifi-tools/madwifi-tools_0.9.4~rc2+dfsg-1.diff.gz
madwifi-tools_0.9.4~rc2+dfsg-1.dsc
  to pool/contrib/m/madwifi-tools/madwifi-tools_0.9.4~rc2+dfsg-1.dsc
madwifi-tools_0.9.4~rc2+dfsg-1_i386.deb
  to pool/contrib/m/madwifi-tools/madwifi-tools_0.9.4~rc2+dfsg-1_i386.deb
madwifi-tools_0.9.4~rc2+dfsg.orig.tar.gz
  to pool/contrib/m/madwifi-tools/madwifi-tools_0.9.4~rc2+dfsg.orig.tar.gz


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



Accepted me-tv 0.5.17-1 (source amd64)

2008-02-12 Thread Michael Lamothe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 21:56:59 +1100
Source: me-tv
Binary: me-tv
Architecture: source amd64
Version: 0.5.17-1
Distribution: unstable
Urgency: low
Maintainer: Michael Lamothe [EMAIL PROTECTED]
Changed-By: Michael Lamothe [EMAIL PROTECTED]
Description: 
 me-tv  - Me TV, it's TV for me computer
Closes: 464922
Changes: 
 me-tv (0.5.17-1) unstable; urgency=low
 .
   * New upstream release (Closes: #464922)
Files: 
 098f6183c249c63f815e7ae4cafecfce 819 graphics optional me-tv_0.5.17-1.dsc
 8b53e8be17ee00331b0d9feaa5dafc9f 532830 graphics optional 
me-tv_0.5.17.orig.tar.gz
 bf930efe8258b6a36e796f60cd0926f9 1936 graphics optional me-tv_0.5.17-1.diff.gz
 ccf205becba1c8987e1856546b02ee6b 193180 graphics optional 
me-tv_0.5.17-1_amd64.deb

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

iD8DBQFHsYo37Ro5M7LPzdgRAheIAJ0XCCJ2rStIJ3LOwvFhwdQ63r3MEQCfa70o
/ttlWp+eCidmzJa7sYAO/gM=
=yMzt
-END PGP SIGNATURE-


Accepted:
me-tv_0.5.17-1.diff.gz
  to pool/main/m/me-tv/me-tv_0.5.17-1.diff.gz
me-tv_0.5.17-1.dsc
  to pool/main/m/me-tv/me-tv_0.5.17-1.dsc
me-tv_0.5.17-1_amd64.deb
  to pool/main/m/me-tv/me-tv_0.5.17-1_amd64.deb
me-tv_0.5.17.orig.tar.gz
  to pool/main/m/me-tv/me-tv_0.5.17.orig.tar.gz


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



Accepted llvm 2.2-1 (source all amd64)

2008-02-12 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 11:11:34 +0100
Source: llvm
Binary: llvm llvm-libs llvm-doc llvm-examples
Architecture: source amd64 all
Version: 2.2-1
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team [EMAIL PROTECTED]
Changed-By: Pierre Habouzit [EMAIL PROTECTED]
Description: 
 llvm   - Low-Level Virtual Machine (LLVM) compiler for C/C++
 llvm-doc   - documentation for LLVM (Low-Level Virtual Machine) compiler
 llvm-examples - examples using LLVM (Low-Level Virtual Machine) compiler
 llvm-libs  - common libraries for LLVM compiler for C/C++
Changes: 
 llvm (2.2-1) unstable; urgency=low
 .
   [ Pierre Habouzit ]
   * New upstream release.
   * debian/debhelper.in/llvm-examples.examples: add missing file so that
 llvm-examples isn't empty.
   * debian/debhelper.in/llvm.{preinst,postinst}: use binfmt-support to
 register llvm.binfmts properly.
 .
   [ Arthur Loiret ]
   * debian/debhelper.in/llvm.install: Remove libs,
   * debian/rules.d/build.mk: Remove extra-license-file.
Files: 
 7fcfb196a6fadd69db933e67e02eb09e 969 devel optional llvm_2.2-1.dsc
 c16f89f0f28b66db0b776dfb2997cc40 5702420 devel optional llvm_2.2.orig.tar.gz
 4df2a38c014920577e34bbe558b2ed8e 8484 devel optional llvm_2.2-1.diff.gz
 a9728697168a87f9c61746e101491549 16909482 devel optional llvm_2.2-1_amd64.deb
 6f8d0c7a38d949e95929ecdb94bfbcd1 7318822 devel optional 
llvm-libs_2.2-1_amd64.deb
 b37646eb386224a6c917f85796b4c206 1053174 doc optional llvm-doc_2.2-1_all.deb
 d2d8f3287565410ef40ecb2fa910f99d 19228 doc optional llvm-examples_2.2-1_all.deb

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

iD8DBQFHsYEVvGr7W6HudhwRAmtKAKCDYjhIL+6UCWfzAYgZOyW80Te7EACghl82
zo1OGU81Pra7NHmBfhlqGEI=
=S0V9
-END PGP SIGNATURE-


Accepted:
llvm-doc_2.2-1_all.deb
  to pool/main/l/llvm/llvm-doc_2.2-1_all.deb
llvm-examples_2.2-1_all.deb
  to pool/main/l/llvm/llvm-examples_2.2-1_all.deb
llvm-libs_2.2-1_amd64.deb
  to pool/main/l/llvm/llvm-libs_2.2-1_amd64.deb
llvm_2.2-1.diff.gz
  to pool/main/l/llvm/llvm_2.2-1.diff.gz
llvm_2.2-1.dsc
  to pool/main/l/llvm/llvm_2.2-1.dsc
llvm_2.2-1_amd64.deb
  to pool/main/l/llvm/llvm_2.2-1_amd64.deb
llvm_2.2.orig.tar.gz
  to pool/main/l/llvm/llvm_2.2.orig.tar.gz


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



Accepted debian-maintainers 1.20 (source all)

2008-02-12 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 23:00:17 +1100
Source: debian-maintainers
Binary: debian-maintainers
Architecture: source all
Version: 1.20
Distribution: unstable
Urgency: low
Maintainer: Debian Maintainer Keyring Team [EMAIL PROTECTED]
Changed-By: Anibal Monsalve Salazar [EMAIL PROTECTED]
Description: 
 debian-maintainers - GPG keys of Debian maintainers
Closes: 464686
Changes: 
 debian-maintainers (1.20) unstable; urgency=low
 .
   * Added Debian maintainer Xavier Oswald. Closes: #464686
Files: 
 f7b708a3f37625a98077294e21708280 906 misc extra debian-maintainers_1.20.dsc
 b3c33f337a748f5522ba3d40d98361eb 2384734 misc extra 
debian-maintainers_1.20.tar.gz
 db369168c44483946e0c360524b87a37 317730 misc extra 
debian-maintainers_1.20_all.deb
 66cea9c1876876864b23a5da86c53af6 389462 raw-keyring - 
debian-maintainers_1.20_all.gpg

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

iD8DBQFHsYuFgY5NIXPNpFURAs8SAKCyuzO09MnmorOAnpzA//nUKlzDEwCgxeq/
pR6WqS8IRvWLfummWe7joZg=
=F6vF
-END PGP SIGNATURE-


Accepted:
debian-maintainers_1.20.dsc
  to pool/main/d/debian-maintainers/debian-maintainers_1.20.dsc
debian-maintainers_1.20.tar.gz
  to pool/main/d/debian-maintainers/debian-maintainers_1.20.tar.gz
debian-maintainers_1.20_all.deb
  to pool/main/d/debian-maintainers/debian-maintainers_1.20_all.deb
debian-maintainers_1.20_all.gpg byhand


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



Accepted geda-symbols 1:1.4.0-1 (source all)

2008-02-12 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jan 2008 16:43:23 +1100
Source: geda-symbols
Binary: geda-symbols
Architecture: source all
Version: 1:1.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 geda-symbols - Symbols for GPL EDA -- Electronics design software
Changes: 
 geda-symbols (1:1.4.0-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 ea79b05ca3622a774a0c77a1b9a713dd 763 electronics optional 
geda-symbols_1.4.0-1.dsc
 212f390e71d0fb4188b3a48d5bd8c076 833319 electronics optional 
geda-symbols_1.4.0.orig.tar.gz
 03998c2ecf5098e2206a90e0bad6e3fd 2515 electronics optional 
geda-symbols_1.4.0-1.diff.gz
 4dd71f07646ab6714458c45b6be54cda 599898 electronics optional 
geda-symbols_1.4.0-1_all.deb

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

iD8DBQFHrld+30WoBV0H6VwRAgVkAKDCHo0q4N2wxeIxG6leeaz5ZR6zmgCgvOcG
vah7eAoxkh7L5wylQYJXWuQ=
=WV4b
-END PGP SIGNATURE-


Accepted:
geda-symbols_1.4.0-1.diff.gz
  to pool/main/g/geda-symbols/geda-symbols_1.4.0-1.diff.gz
geda-symbols_1.4.0-1.dsc
  to pool/main/g/geda-symbols/geda-symbols_1.4.0-1.dsc
geda-symbols_1.4.0-1_all.deb
  to pool/main/g/geda-symbols/geda-symbols_1.4.0-1_all.deb
geda-symbols_1.4.0.orig.tar.gz
  to pool/main/g/geda-symbols/geda-symbols_1.4.0.orig.tar.gz


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



Accepted madwifi 1:0.9.4~rc2-1 (source all)

2008-02-12 Thread Kel Modderman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 21:23:44 +1000
Source: madwifi
Binary: madwifi-source
Architecture: source all
Version: 1:0.9.4~rc2-1
Distribution: unstable
Urgency: low
Maintainer: Debian madwifi team [EMAIL PROTECTED]
Changed-By: Kel Modderman [EMAIL PROTECTED]
Description: 
 madwifi-source - source for the Multiband Atheros Driver for WiFi
Closes: 463353
Changes: 
 madwifi (1:0.9.4~rc2-1) unstable; urgency=low
 .
   * New upstream release candidate.
 - linux 2.6.24 compatibility (Closes: #463353)
   * Drop all patches applied upstream.
 - debian/patches/10_CVE-2007-5448_sanitize_xrates.dpatch
 - debian/patches/13_fix-2.6.24-set-module-owner.dpatch
 - debian/patches/14_fix-2.6.24-inet-net-proc-net.dpatch
 - debian/patches/12_fix-2.6.23-include-fs-h.dpatch
   * Bump Standards Version to 3.7.3, no extra changes required.
   * Convert to quilt patch system from dpatch. Rename debian/patches/00list to
 debian/patches/series. Depend on quilt and not dpatch. [debian/patches/*,
 debian/control, debian/rules]
   * Convert debian/rules to debhelper, drop build-dependency on cdbs. Remove
 debian/madwifi-source.dirs, it is no longer required. [debian/rules,
 debian/control, debian/madwifi-source.dirs]
   * Produced module image package has versioned dependency on madwifi-tools
 (= 1:0.9.4~rc2+dfsg-1) to provide smooth upgrade path to
 linux-image-2.6.24 by claiming priority over ath5k.
   * Drop Alex Wallis from Uploaders, he hasn't been active for too long.
 [debian/control*]
   * Port get-orig-source debian/rules target from the previous cdbs style
 package with cleanups. [debian/rules]
Files: 
 d50e73e7e77a61f73c6508cc80ab9c01 896 non-free/net optional 
madwifi_0.9.4~rc2-1.dsc
 5b393026ada387d501c5b769d3f2cdc3 3681136 non-free/net optional 
madwifi_0.9.4~rc2.orig.tar.gz
 391cc29affc09d913ad50cc51a7174ee 12612 non-free/net optional 
madwifi_0.9.4~rc2-1.diff.gz
 b2a15a5724cee6fddc596d0737c89eac 3563686 non-free/net optional 
madwifi-source_0.9.4~rc2-1_all.deb

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

iD8DBQFHsY/KaGRzDfCV5eQRAnPDAJ9ICN0TE4P3sXW+QU+y4o1g9sK9eQCdFctB
+qRfCq6YZ5ChWJGbFLZCvA8=
=BdCI
-END PGP SIGNATURE-


Accepted:
madwifi-source_0.9.4~rc2-1_all.deb
  to pool/non-free/m/madwifi/madwifi-source_0.9.4~rc2-1_all.deb
madwifi_0.9.4~rc2-1.diff.gz
  to pool/non-free/m/madwifi/madwifi_0.9.4~rc2-1.diff.gz
madwifi_0.9.4~rc2-1.dsc
  to pool/non-free/m/madwifi/madwifi_0.9.4~rc2-1.dsc
madwifi_0.9.4~rc2.orig.tar.gz
  to pool/non-free/m/madwifi/madwifi_0.9.4~rc2.orig.tar.gz


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



Accepted coriander 2.0.0~rc6-2 (source amd64)

2008-02-12 Thread Guus Sliepen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 13:25:37 +0100
Source: coriander
Binary: coriander
Architecture: source amd64
Version: 2.0.0~rc6-2
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen [EMAIL PROTECTED]
Changed-By: Guus Sliepen [EMAIL PROTECTED]
Description: 
 coriander  - control IEEE1394 digital camera
Changes: 
 coriander (2.0.0~rc6-2) unstable; urgency=low
 .
   * Link with -Wl,--as-needed to prevent linking to unused libraries.
Files: 
 7b9aded6f6589107c77b4e3ecf356366 729 gnome extra coriander_2.0.0~rc6-2.dsc
 18bf6fc24bcdf5b31b4480e06e29ab59 3938 gnome extra coriander_2.0.0~rc6-2.diff.gz
 e6fc01ab149b6cbef185646c4f411827 141698 gnome extra 
coriander_2.0.0~rc6-2_amd64.deb

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

iD8DBQFHsZCaAxLow12M2nsRAiisAJ44sc6xamjt1Pjzyi7Mv74NBcAeiACfYASS
vv2xQ8CWGwEQgh9n4yeTcX0=
=Z0MT
-END PGP SIGNATURE-


Accepted:
coriander_2.0.0~rc6-2.diff.gz
  to pool/main/c/coriander/coriander_2.0.0~rc6-2.diff.gz
coriander_2.0.0~rc6-2.dsc
  to pool/main/c/coriander/coriander_2.0.0~rc6-2.dsc
coriander_2.0.0~rc6-2_amd64.deb
  to pool/main/c/coriander/coriander_2.0.0~rc6-2_amd64.deb


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



Accepted subversion 1.4.6dfsg1-1 (source all i386)

2008-02-12 Thread Peter Samuelson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 23:49:02 -0600
Source: subversion
Binary: subversion libsvn1 libsvn-dev libsvn-doc libapache2-svn 
python-subversion subversion-tools libsvn-java libsvn-perl libsvn-ruby1.8 
libsvn-javahl libsvn-ruby
Architecture: source all i386
Version: 1.4.6dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Peter Samuelson [EMAIL PROTECTED]
Changed-By: Peter Samuelson [EMAIL PROTECTED]
Description: 
 libapache2-svn - Subversion server modules for Apache
 libsvn-dev - Development files for Subversion libraries
 libsvn-doc - Developer documentation for libsvn
 libsvn-java - Java bindings for Subversion
 libsvn-javahl - Java bindings for Subversion (dummy package)
 libsvn-perl - Perl bindings for Subversion
 libsvn-ruby - Ruby bindings for Subversion (dummy package)
 libsvn-ruby1.8 - Ruby bindings for Subversion
 libsvn1- Shared libraries used by Subversion
 python-subversion - Python bindings for Subversion
 subversion - Advanced version control system
 subversion-tools - Assorted tools related to Subversion
Closes: 428755 441827 447824 453166 459023
Changes: 
 subversion (1.4.6dfsg1-1) unstable; urgency=low
 .
   * New upstream version.
   * Build with db 4.6, to match apr-util.
   * patches/svn-clean-manpage: New patch, fix a small typo.  (Closes: #441827)
   * patches/neon27: New patch from upstream trunk to support neon 0.27.
 - control: build-depend on libneon27-dev.
 - rules: no longer --disable-neon-version-check.
   * patches/ruby-newswig: Support swig 1.3.33.  (Closes: #453166)
   * patches/python-memleak: New patch to fix a serious memory leak in the
 Python bindings.  Thanks to Jelmer Vernooij.  (Closes: #428755)
   * control: Policy 3.7.3.
   * control: spell 'Source-Version' as 'binary:Version' for political
 correctness.  (Or for clarity.)
   * control: add appropriate Vcs-Svn and Vcs-Browser fields.
   * control: subversion-tools Recommends: rsync.  (Closes: #459023)
   * patches/svn2cl: update svn2cl to 0.9 (from upstream trunk).
   * patches/commit-email: use original 'sendmail' commit-email.pl mode,
 rather than the direct SMTP feature.  (Closes: #447824)
   * rules: do not run 'dh_testroot' or 'make extraclean' in clean rule.
   * rules: rewrite DEB_BUILD_OPTIONS support; remove 'notest' synonym, as
 the world seems to be standardizing on 'nocheck'.
   * rules: remove 'DEB_BUILD_OPTIONS=-j[N]' support, add support for the
 new 'dpkg-buildpackage -j[N]' feature.
   * rules: add an option to disable ruby bindings.  Though it turns out
 we don't need it ... yet.
Files: 
 648b1769f5025e4552f94d19c2fb2a10 1358 devel optional 
subversion_1.4.6dfsg1-1.dsc
 46e26d9499ad482e0d65131a6228ffe1 6474068 devel optional 
subversion_1.4.6dfsg1.orig.tar.gz
 c0663982f1bd27a923d7c1f84ed9cc12 80484 devel optional 
subversion_1.4.6dfsg1-1.diff.gz
 26554a73e575b55efdbecf2f185b952e 1180024 doc extra 
libsvn-doc_1.4.6dfsg1-1_all.deb
 dfda33eb81975bd3465c853261d9c753 168598 admin extra 
subversion-tools_1.4.6dfsg1-1_all.deb
 b36ec2f0235da51e441c8d3434578160 772 devel optional 
libsvn-javahl_1.4.6dfsg1-1_all.deb
 350829b49e64b99c7a35967a5ef85335 708 devel optional 
libsvn-ruby_1.4.6dfsg1-1_all.deb
 8960538718b6498cf6c5e6204a5fa538 1053524 devel optional 
subversion_1.4.6dfsg1-1_i386.deb
 d0b2f9dc0471fcdf642c9b24ccd75ffc 598620 libs optional 
libsvn1_1.4.6dfsg1-1_i386.deb
 8bb03d37ecf7b9b518b207130ff73d64 820418 libdevel extra 
libsvn-dev_1.4.6dfsg1-1_i386.deb
 b508c389ccb107cfffa0b93cad7ea587 135522 net optional 
libapache2-svn_1.4.6dfsg1-1_i386.deb
 cd600717cc0f9ef59e42a56963ba5fd9 536404 python optional 
python-subversion_1.4.6dfsg1-1_i386.deb
 32cad50ed5d083fd814a4d62ffe8dadd 214870 devel optional 
libsvn-java_1.4.6dfsg1-1_i386.deb
 573960afef2f171b58ec3c367145f72f 796130 perl optional 
libsvn-perl_1.4.6dfsg1-1_i386.deb
 ba4863d6941383b700e1a59d650cd9ca 377810 devel optional 
libsvn-ruby1.8_1.4.6dfsg1-1_i386.deb

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

iD8DBQFHsYqKXk7sIRPQRh0RAuFuAKCHXFWsH+oQHWZ8oz7O7qJpsxxCrQCdFJoP
SBUVAhg2+V64DVFKz9ycprI=
=3NwO
-END PGP SIGNATURE-


Accepted:
libapache2-svn_1.4.6dfsg1-1_i386.deb
  to pool/main/s/subversion/libapache2-svn_1.4.6dfsg1-1_i386.deb
libsvn-dev_1.4.6dfsg1-1_i386.deb
  to pool/main/s/subversion/libsvn-dev_1.4.6dfsg1-1_i386.deb
libsvn-doc_1.4.6dfsg1-1_all.deb
  to pool/main/s/subversion/libsvn-doc_1.4.6dfsg1-1_all.deb
libsvn-java_1.4.6dfsg1-1_i386.deb
  to pool/main/s/subversion/libsvn-java_1.4.6dfsg1-1_i386.deb
libsvn-javahl_1.4.6dfsg1-1_all.deb
  to pool/main/s/subversion/libsvn-javahl_1.4.6dfsg1-1_all.deb
libsvn-perl_1.4.6dfsg1-1_i386.deb
  to pool/main/s/subversion/libsvn-perl_1.4.6dfsg1-1_i386.deb
libsvn-ruby1.8_1.4.6dfsg1-1_i386.deb
  to pool/main/s/subversion/libsvn-ruby1.8_1.4.6dfsg1-1_i386.deb
libsvn-ruby_1.4.6dfsg1-1_all.deb
  to pool/main/s/subversion/libsvn-ruby_1.4.6dfsg1-1_all.deb
libsvn1_1.4.6dfsg1-1_i386.deb
  to 

Accepted fetchmail 6.3.8-11 (source all i386)

2008-02-12 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 04 Feb 2008 16:19:17 +0100
Source: fetchmail
Binary: fetchmail fetchmailconf
Architecture: source all i386
Version: 6.3.8-11
Distribution: unstable
Urgency: low
Maintainer: Fetchmail Maintainers [EMAIL PROTECTED]
Changed-By: Nico Golde [EMAIL PROTECTED]
Description: 
 fetchmail  - SSL enabled POP3, APOP, IMAP mail gatherer/forwarder
 fetchmailconf - fetchmail configurator
Closes: 461642 463987 464549
Changes: 
 fetchmail (6.3.8-11) unstable; urgency=low
 .
   * Add removal of /var/run/fetchmail to postrm script (Closes: #463987).
   * Fix grammar in manpage (05_fix-manpage-grammar.patch; Closes: #461642).
   * Bump standards version to 3.7.3, no changes needed.
   * Fix obsolete national encoding in copyright file.
   * Fix cryptic comment in init file (Closes: #464549).
Files: 
 5b6f719e0a7d657d1b25b6929ddeb523 932 mail optional fetchmail_6.3.8-11.dsc
 b7fb6d6d4cfcd97ff6d0d551bf025021 63180 mail optional fetchmail_6.3.8-11.diff.gz
 423a0acd0ce95699dfc000bd1bdef4fb 62044 mail optional 
fetchmailconf_6.3.8-11_all.deb
 b0e5566c75c943bda0aa38cd5b76aeee 652912 mail optional 
fetchmail_6.3.8-11_i386.deb

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

iD8DBQFHsYX2HYflSXNkfP8RAjyBAJ9b1sNGFXUQa6i6fFPRWqLqxRYq6wCgiBbY
Tnb49vPexTL4glnaENd0eCk=
=b1vs
-END PGP SIGNATURE-


Accepted:
fetchmail_6.3.8-11.diff.gz
  to pool/main/f/fetchmail/fetchmail_6.3.8-11.diff.gz
fetchmail_6.3.8-11.dsc
  to pool/main/f/fetchmail/fetchmail_6.3.8-11.dsc
fetchmail_6.3.8-11_i386.deb
  to pool/main/f/fetchmail/fetchmail_6.3.8-11_i386.deb
fetchmailconf_6.3.8-11_all.deb
  to pool/main/f/fetchmail/fetchmailconf_6.3.8-11_all.deb


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



Accepted germinate 0.38 (source all)

2008-02-12 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 11:30:53 +
Source: germinate
Binary: germinate
Architecture: source all
Version: 0.38
Distribution: unstable
Urgency: low
Maintainer: Colin Watson [EMAIL PROTECTED]
Changed-By: Colin Watson [EMAIL PROTECTED]
Description: 
 germinate  - Expand dependencies in a list of seed packages
Changes: 
 germinate (0.38) unstable; urgency=low
 .
   * Fix germination from multiple seed sources in bzr mode.
   * germinate-update-metapackage now automatically expands the seeds option
 for seed inheritance, so you no longer usually need to have separate
 seeds and output_seeds options in update.cfg.
Files: 
 4a3a82c57c109e5213c92b3f669bfec6 682 utils optional germinate_0.38.dsc
 9a6660af0f272f8dd85d6fdc422b42ca 42736 utils optional germinate_0.38.tar.gz
 570b96485aee8d5cdb2c8110eb01834e 39348 utils optional germinate_0.38_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Colin Watson [EMAIL PROTECTED] -- Debian developer

iD8DBQFHsYPi9t0zAhD6TNERAoo4AJ9Y5Dc/g8Z7M2HkfCtp5sn1bP93pwCfcUKa
JmgJ9Ya/2pRrd4aOp/yIBlo=
=+xNC
-END PGP SIGNATURE-


Accepted:
germinate_0.38.dsc
  to pool/main/g/germinate/germinate_0.38.dsc
germinate_0.38.tar.gz
  to pool/main/g/germinate/germinate_0.38.tar.gz
germinate_0.38_all.deb
  to pool/main/g/germinate/germinate_0.38_all.deb


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



Accepted drupal5 5.7-1 (source all)

2008-02-12 Thread Luigi Gangitano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 11:40:29 +0100
Source: drupal5
Binary: drupal5
Architecture: source all
Version: 5.7-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano [EMAIL PROTECTED]
Changed-By: Luigi Gangitano [EMAIL PROTECTED]
Description: 
 drupal5- a fully-featured content management framework
Closes: 459378 464599 464876
Changes: 
 drupal5 (5.7-1) unstable; urgency=low
 .
   [ Luigi Gangitano ]
   * New upstream release
 - Fixes several non-security related bugs (Closes: #464876)
 .
   * debian/po/hu.po
 - Updated Hungarian debconf templates translation (Thanks to Miklos
   Lukacs) (Closes: #459378)
 .
   * debian/cron.sh
 - Fixed cron script for multisite setup (thanks to Fernando Lucas
   Rodriguez) (Closes: #464599)
 .
   * debian/watch
 - Removed unused 'uupdate' token
Files: 
 8e8b0ae9ea64ee1718e3d60d7e577b89 700 web extra drupal5_5.7-1.dsc
 c7d9911ad1001c790bbdfe6fd4cdfc89 754688 web extra drupal5_5.7.orig.tar.gz
 a4a908d6490b5b53c72d0d47eda00c12 25803 web extra drupal5_5.7-1.diff.gz
 0e40d04ff8555ca260f93cc3c4a78cbe 774596 web extra drupal5_5.7-1_all.deb

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

iD8DBQFHsXxQ8ZumGJJMDCYRAqHUAJ95hXkYAcED2xHhOd8SP2+4sg5eJgCeJu4L
PEwNdG/I1q1LdaCM1Linnd4=
=5fj8
-END PGP SIGNATURE-


Accepted:
drupal5_5.7-1.diff.gz
  to pool/main/d/drupal5/drupal5_5.7-1.diff.gz
drupal5_5.7-1.dsc
  to pool/main/d/drupal5/drupal5_5.7-1.dsc
drupal5_5.7-1_all.deb
  to pool/main/d/drupal5/drupal5_5.7-1_all.deb
drupal5_5.7.orig.tar.gz
  to pool/main/d/drupal5/drupal5_5.7.orig.tar.gz


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



Accepted phylip 1:3.67-2 (source all i386)

2008-02-12 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 12 Feb 2008 18:29:32 +0100
Source: phylip
Binary: phylip phylip-doc
Architecture: source all i386
Version: 1:3.67-2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team [EMAIL PROTECTED]
Changed-By: Andreas Tille [EMAIL PROTECTED]
Description: 
 phylip - [Biology] A package of programs for inferring phylogenies
 phylip-doc - [Biology] A package of programs for inferring phylogenies
Changes: 
 phylip (1:3.67-2) unstable; urgency=low
 .
   * Group maintenance:
 - Maintainer: Debian-Med Packaging Team
   [EMAIL PROTECTED]
 - XS-DM-Upload-Allowed: Yes
 - Uploaders: Andreas Tille [EMAIL PROTECTED]
 - Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/phylip
 - Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/phylip
   * Standards-Version: 3.7.3 (no changes needed)
   * Homepage: http://evolution.genetics.washington.edu/phylip.html
   * Conversion of debian/copyright to UTF8
   * Make use of quilt instead of simplepatchsys
Files: 
 68260cf2dafaa05d10876f201e61bc1d 959 non-free/science optional 
phylip_3.67-2.dsc
 0908a75733ea853c8c3b378776ea0040 9637 non-free/science optional 
phylip_3.67-2.diff.gz
 8a8daf2d476e147c9256f72556314889 317608 non-free/doc optional 
phylip-doc_3.67-2_all.deb
 7cb6f8cd1491e88c478ab5b8d7f7312b 1990148 non-free/science optional 
phylip_3.67-2_i386.deb

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

iD8DBQFHspfIYDBbMcCf01oRAkWnAKC/MCayY+/1p6xF+h2NYIs7S4jPrACeKb5c
u6z0NwgA9o8EYOfjjBxjjJY=
=63Wd
-END PGP SIGNATURE-


Accepted:
phylip-doc_3.67-2_all.deb
  to pool/non-free/p/phylip/phylip-doc_3.67-2_all.deb
phylip_3.67-2.diff.gz
  to pool/non-free/p/phylip/phylip_3.67-2.diff.gz
phylip_3.67-2.dsc
  to pool/non-free/p/phylip/phylip_3.67-2.dsc
phylip_3.67-2_i386.deb
  to pool/non-free/p/phylip/phylip_3.67-2_i386.deb


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



Accepted microcode.ctl 1.17-7 (source i386)

2008-02-12 Thread Giacomo Catenazzi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 11 Feb 2008 08:45:54 +0100
Source: microcode.ctl
Binary: microcode.ctl
Architecture: source i386
Version: 1.17-7
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Giacomo Catenazzi [EMAIL PROTECTED]
Description: 
 microcode.ctl - Intel IA32/IA64 CPU Microcode Utility
Closes: 439872 457224
Changes: 
 microcode.ctl (1.17-7) unstable; urgency=low
 .
   * New microcode and document intel site as new official download
 source
   * Finnish translation of the debconf templates,
 thanks Esko (Closes: #457224)
   * New microcodes includes support for core due (Closes: #439872)
Files: 
 3a46cca3ffb536ca883d09ee6b06ceb2 604 contrib/utils optional 
microcode.ctl_1.17-7.dsc
 0db7fabdf84838b13ac9ce8e11f0c30b 16910 contrib/utils optional 
microcode.ctl_1.17-7.diff.gz
 d292de0027575807ed205c05d2cb0027 22040 contrib/utils optional 
microcode.ctl_1.17-7_i386.deb

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

iD8DBQFHr/8E+ZNUJLHfmlcRAvuFAKCH1nnqDJl1O4LqBOS4YuvLf/X3bACdGlJk
BucpvSn66QPNjtFb9FTGIIs=
=KdZG
-END PGP SIGNATURE-


Accepted:
microcode.ctl_1.17-7.diff.gz
  to pool/contrib/m/microcode.ctl/microcode.ctl_1.17-7.diff.gz
microcode.ctl_1.17-7.dsc
  to pool/contrib/m/microcode.ctl/microcode.ctl_1.17-7.dsc
microcode.ctl_1.17-7_i386.deb
  to pool/contrib/m/microcode.ctl/microcode.ctl_1.17-7_i386.deb


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



Error de lintian

2008-02-12 Thread Leopold Palomo-Avellaneda
Bones,

estoy construyendo un paquete (Xenomai) que son unos parches para el kernel 
que ten dan características de tiempo real. Cuando hago ejecuto un:

debuild -uc -us -rfakeroot  

compila y se construye como una seda, pero en el paso final, cuando comprueba 
con lintian, da este error:


dpkg-genchanges: including full source code in upload
dpkg-buildpackage (debuild emulation): full upload; Debian-native package 
(full source is included)
Now running lintian...
internal error: syntax error in section 1 after the tag description:  
Patch-file: adeos-ipipe-2.6.20-arm-1.8-03.patch
Finished running lintian.

El paquete no lo he construido yo, pero el mantenedor (o en este caso quien lo 
ha construido tampoco sabe que hacer, ya se lo pregunté ...)

Alguien sabe que puede ser?

Gracias,

Leo



  1   2   >