Re: finally end single-person maintainership

2024-04-09 Thread Jose-Luis Rivas
On Tue Apr 9, 2024 at 1:52 PM -03, Wookey wrote:
> On 2024-04-08 21:44 +0900, Simon Richter wrote:
>
> > Testing a package requires me to
> > commit everything into git first, so I have to remember to squash all these
> > commits later.
>
> Right - this was (one of the) main thing(s) that annoyed me enough to
> just go back to the non-git based workflow. I want to make changes and
> try them. I don't want to have to commit every damn time - it's not
> done yet - I'll commit it after I'm satisfied that it works. But I
> don't know that until I've made a whole set of changes and it builds.

Use gbp-buildpackage --git-ignore-new. By default checks for uncommited,
so you don't ship to Debian things that are not commited. If you use
this flag, the burden of checking this lands on you.

Yet, you can still use the regular workflow to build stuff, just
dpkg-buildpackage -us -uc.

> So now I've got a pile of changes which should really be separate
> commits and logically separate things often affect the same files, and
> even the same lines, so really I need to commit some chunks and not
> others and tidy it all up. Yes this makes a nice set of commits but
> it's _so_ much work in comparison to just editing the damn files, and
> then effectively doing one fat 'commit' when I dupload. Often
> something ends up stalled for weeks or months or years because I've
> got some chunks in the wrong places and sorting it out is painful, so
> I go do something else and lose all my state. You all know how that
> goes...

Use git commit -p, I tend to throw -v as well, so when I am writing the
commit description I also get the diff of that commit. With -p you
basically select by blocks what goes into your commit with simple y and
n. You can also split blocks.

If you prefer to just make a bunch of small commits and then combine
them all into one big-fat commit, just use git rebase -i HEAD~N with N
being how many commits you want to rebase.

This will give you a file text where you decide which commits are
squashed onto the top one, you can also re-arrange. After you save that
file, it'll allow you to modify the commit.

So you can do a bunch of git commit -m 'random' and with git rebase -i
create a proper commit message from a bunch of commits.

> I realise this (like my previous message) will result in a load of
> people telling me git _is_ better and I'm just doing it wrong, or
> should learn better tools. And they may even be right, (and I will
> probably learn some things from this thread), but I don't believe the
> goal we agree on (fixing other people's packages should be culturally
> accepted) _requires_ this change in tooling (which is a heavy cost for
> at least some of us).

Git is the default tooling in the whole open-source ecosystem. Maybe a
poll would be good to know how much people actually is against using Git
as default, after so many years with proper git tooling in Debian. I
would not be surprised if the loud bunch in the mailing lists end-up
being very very small.

I understand is hard to have your workflows changed, but IMO it's been
too many years that Git is the default VCS everywhere. There's no other
workflow you need to change, if you use Git.

> The point here is that 'requiring salsa' is actually code for 'no,
> you can't just use the tarball-based VCS any more - you have to use
> git'.  Removing that interface is a very big deal - it has served
> quite well for 30 years. Yes it old-fashioned and crufty and
> (presumably) only a minority still use it as the primary interface,
> but any GR on this should acknowledge what we are requiring of people
> still using it, not just frame this as 'and add salsa'. It's more
> fundamental than that (or I am misunderstanding)..

This is untrue. All the git tooling depends on non-git tooling for the
build. I actually have a setup for building everything on docker and
does not use any git tooling, because that's just sugar-coating for the
non-git tools.

> Also what do you git people do to replace uscan? Currently I go to my
> existing version, or a newly-acquired apt get or dget source. I do
> 'uscan' and if there is a new upstream version I have a nice separate
> directly that is easy to dirdiff (then fixup any packaging and
> dupload). If there isn't I can move on. 

You can use uscan.

> git world seems to make this way more complicated. I have to set up
> two different repos - one for salsa one for upstream, then pull them,
> maybe into different branches, and fight the diff config to let me
> dirdiff two different commits. And the upstream pull will always pull
> changes, not just only do it is there is an actual release (tag).
>
> None of that feels like an improvement over 'uscan'. One word for the
> standard process of updating to a new version. And if the patches
> still apply it's probably all done (I always do a meld review too to
> see what changed).

I see, you are confusing two things here. Having the source from Git vs
using tarballs. And using Salsa 

Re: Init systems and docker

2019-10-14 Thread Jose-Luis Rivas
On 10/14/19 05:49, Marc Haber wrote:
> 
> So, +1 to be able to run a default systemd-based Debian with systemd
> as pid 1 in a docker container.

Hi Marc, you can do this already. As explained somewhere else in the
thread, just run docker run with the --privilege flag.

Cheers.
-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Init systems and docker

2019-10-12 Thread Jose-Luis Rivas
Hello Tomas!

On 10/12/19 13:00, Tomas Pospisek wrote:
> I have to say that I disagree with you and many others on this thread.
> Maybe Docker was *meant* for single application containers, I do not know.
> 
> However running a service ("a single application") often implies
> surrounding services. F.ex. you want logs to be saved? Maybe you need to
> run cron or at? Maybe you want to get notified about problems, stats,
> whatever via email?

In all the professional instances of containerization I have seen, these
are provided by external containers/services, so you don't have to
maintain several configuration in several places. Logs go to stdout and
from there you collect them into whatever service you have for this,
process them and use that processing to send notifications or make them
searchable.

> 
> Now you can start re-implementing all the existing "surrounding" service
> solutions on the outside of the container. Which is a *lot* of complex
> work in my experience. The quick fix to those "surrounding" problems is
> often enough to stand onto proven-to-work shoulders and to install the
> "surrounding services" *inside* the container:
> 
> apt-get install cron at rsyslogd etc. etc.
> 
> Now the next problem is how to start those. Easiest way is to hook the
> provided Debian init scripts into whatever mini-init system one chooses.
> And so forth.
> 
> So I imagine people that want to run stuff in containers are usually
> very glad if init scripts are available, work and can be re-used.
> 
> John Goerzen is maintaining Debian docker images (thanks!) that contain
> a useful set of the mentioned "surrounding" services, that are quite
> popular AFAIK.
> 
> Being you, I'd ask for patches. I think running stuff in
> Docker/Kubernetes is a good solution for a lot of problems. I think
> Debian should grow to accommodate those architectures. And I think
> Debian *will* accommodate them (see John's work and a lot of other nice
> efforts in that direction not least by Ubuntu), it just takes time to
> find the sweet spot solutions, to spread the knowledge and knowhow etc.
> A lot of container loads are Debian based, not the least a lot of
> Kubernetes' own people's
Debian already does for a part of container users. You don't need
patches, support is already there. The ones complaining right now
haven't read the right part in Docker's manual to get it running.

Cheers.

-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Init systems and docker

2019-10-11 Thread Jose-Luis Rivas
Forgot to add that docker has a recommended way of running multiple
processes per container and it actually avoids init systems launching
its own micro init:
https://docs.docker.com/config/containers/multi-service_container/

On 10/11/19 19:25, Jose-Luis Rivas wrote
> Here's a little bit of history on trying to make systemd work into
> containers and the reason why it was tried (IMO, a silly one):
> https://lwn.net/Articles/676831/
> 
> In short: they should not be using systemd inside the container and if
> they want to the issue is not on how Debian ships systemd but that they
> are not using the --privilege parameter for launching their container.
> 
> The extended version:
> 
> There's not much sense in using systemd inside a docker container, to be
> honest. Generally you want to launch your service as custom as possible
> and the ENTRYPOINT allows you to do just that. Docker already sends the
> SIGKILL to the PID 1, which should be the service you're shipping in
> that container.
> 
> Ideally (and this is one the best practices I've seen people using)
> containers should be built following something like the UNIX paradigm,
> so: they ship one service and only one which then communicates with
> others via some network protocol. People trying to use systemd inside a
> container is probably trying to ship several services in just one image
> which is essentially an anti-pattern on containerization.
> 
> On the other hand, not all people is using a container to launch a
> service installed via the package manager, so very few would benefit
> from having systemd doing the init of the service they installed.
> 
> In my opinion, there's no requirement at all to maintain sysv scripts,
> at least not under the assumption that they are required by docker
> containers because they are not. Actually, no init script at all is
> required by docker containers.
> 

-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Init systems and docker

2019-10-11 Thread Jose-Luis Rivas
Hello Scott,

On 10/11/19 18:49, Scott Kitterman wrote:
> I have had bugs filed against more than one package I maintain regarding 
> issues 
> with sysv init scripts when used in docker.
> 
> I have been told by docker users (I'm not one) that systemd as provided on 
> Debian can't be used in docker.  I have no idea if that's true or not.  I try 
> really hard to know as little about init systems as possible and trust our 
> maintainers who work on such things.
> 
> If it is true, then to the extent we want Debian to be useful for docker does 
> that mean we ought to maintain sysv init scripts?  If it's not true, can 
> someone point me to documentation that explains using systemd on Debian in 
> docker?
> 
> Thanks.
> 
> I'm sure I'll fail, but I'm really not trying to start another email list 
> flamefest.  I'd just like to understand this a little better so I can 
> properly 
> maintain my packages.
> 
> Scott K
> 
> 

Here's a little bit of history on trying to make systemd work into
containers and the reason why it was tried (IMO, a silly one):
https://lwn.net/Articles/676831/

In short: they should not be using systemd inside the container and if
they want to the issue is not on how Debian ships systemd but that they
are not using the --privilege parameter for launching their container.

The extended version:

There's not much sense in using systemd inside a docker container, to be
honest. Generally you want to launch your service as custom as possible
and the ENTRYPOINT allows you to do just that. Docker already sends the
SIGKILL to the PID 1, which should be the service you're shipping in
that container.

Ideally (and this is one the best practices I've seen people using)
containers should be built following something like the UNIX paradigm,
so: they ship one service and only one which then communicates with
others via some network protocol. People trying to use systemd inside a
container is probably trying to ship several services in just one image
which is essentially an anti-pattern on containerization.

On the other hand, not all people is using a container to launch a
service installed via the package manager, so very few would benefit
from having systemd doing the init of the service they installed.

In my opinion, there's no requirement at all to maintain sysv scripts,
at least not under the assumption that they are required by docker
containers because they are not. Actually, no init script at all is
required by docker containers.
-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Debian and our frenemies of containers and userland repos

2019-10-05 Thread Jose-Luis Rivas
On 10/5/19 12:25, Bernd Zeimetz wrote:
> 
> 
> On 10/5/19 3:31 AM, Paul Wise wrote:
>> On Fri, Oct 4, 2019 at 10:49 PM Enrico Weigelt wrote:
>>> On 24.07.19 08:17, Marc Haber wrote:
>>>
 Do we have a build technology that uses containers instead of chroots
 yet?
>>>
>>> Something like docker-buildpackage ?
>>
>> AFAICT, docker-buildpackage doesn't exist but whalebuilder does.
> 
> https://github.com/metux/docker-buildpackage
> 
> 
> Having something that works with git-buildpackage would be really nice,
> though. Even better if it would allow to use the k8s API to build things...
> 

deb-build-pkg build -o ../

https://github.com/resnullius/deb-build-pkg

It's a simple bash script. Maybe I should write better docs than the
help already available with `deb-build-pkg --help`.

It's not using k8s API but I don't see a reason why it would not be
compatible. Building a Deployment yaml on-the-fly and you're ready. Just
calling something different than the `run_docker()` function.

With deb-build-pkg you don't even need to be in a Debian system to build
stuff.

-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Debian and our frenemies of containers and userland repos

2019-10-04 Thread Jose-Luis Rivas



On 10/4/19 10:49, Enrico Weigelt, metux IT consult wrote:
> On 24.07.19 08:17, Marc Haber wrote:
> 
>> Do we have a build technology that uses containers instead of chroots
>> yet?
> 
> Something like docker-buildpackage ?
> 

For this purpose I built deb-build-pkg which is a pretty
straight-forward way to build debian packages, it's a simple bash script
that only requires bash and docker in your system in order to build the
packages.

https://github.com/resnullius/deb-build-pkg/blob/master/deb-build-pkg

-- 

   __.https://wiki.debian.org/JoseLuisRivas
___'/___  rsa4096/D278F9C15E5461AA3C1E2FCD13EC43EEB9AC8C43



Re: Next steps for gitlab.debian (Re: GitLab B.V. to host free-software GitLab for Debian project)

2016-06-08 Thread Jose-Luis Rivas
On 08/06/16, 10:41pm, Ben Hutchings wrote:
> On Wed, 2016-06-08 at 19:40 +0200, Alexander Wirt wrote:
> > On Wed, 08 Jun 2016, Jonathan Dowland wrote:
> > 
> > > On Wed, Jun 08, 2016 at 09:47:56AM +0200, Alexander Wirt wrote:
> > > > I am also not very keen on using a system with a "open core / 
> > > > enterprise"
> > > > model. For such a crucial service I would really prefer a real open 
> > > > source
> > > > system. But maybe I am alone with that oppinion. 
> > > 
> > > You are not alone, but please do not call Gitlab CE not "real open 
> > > source".
> > I do for every software which forces me to sign things like:
> > https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/legal/individual_contributor_license_agreement.md
> [...]
> 
> I don't see what's so unreasonable about that.  They're asking you to
> provide the same licence for your contributions, as the licence for the
> existing Gitlab software.  Every FOSS project expects that, even if
> they don't make such a formal statement of it.
> 
> Ben.

Nodejs requires that as well. Nothing wrong with it.

And in that case, calling node.js not real open source, would be quite a
mistake.

-- 
⨳ PGP 0x13EC43EEB9AC8C43 ⨳ https://ghostbar.co



Re: hdparm needs a new maintainer

2016-03-01 Thread Jose-Luis Rivas
On 01/03/16, 05:02pm, Ivan Gimenez wrote:
> Hi
> 
> For me it is ok, I am just a newbie in packaging.
> 
> I have received help from a debian mentor Anibal Montalve Salazar <
> ani...@debian.org>, but I got no references for gbp
>  (yet another Debian packaging toolchain ? )

Yes: https://wiki.debian.org/PackagingWithGit
> 
> what is exactly a collab-maint repository,  a Git repo for the package host
> somewhere ?

Yes:
https://wiki.debian.org/Alioth/CollabMaintImport?highlight=%28CategoryAlioth%29
and https://wiki.debian.org/Alioth/Git?highlight=%28CategoryAlioth%29

-- 
⨳ PGP 0x13EC43EEB9AC8C43 ⨳ https://ghostbar.co


signature.asc
Description: PGP signature


Re: Bug#815675: ITP: ftpbackup -- Script to backups your data from a Debian system to a ftp space

2016-02-23 Thread Jose-Luis Rivas
On 23/02/16, 08:37am, Nikolaus Rath wrote:
> 
> I'm actually rather shocked that a Debian Developer would consider
> letting this into the archive. Carl, I hope you just filed the ITP
> before having looked at the program?
> 

He wrote it.

L6: # Copyright © 2013-2016 Carl Chenet 

-- 
⨳ PGP 0x13EC43EEB9AC8C43 ⨳ https://ghostbar.co



Accepted rtorrent 0.9.6-2 (source armhf) into unstable

2015-11-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 06 Nov 2015 10:19:01 -0500
Source: rtorrent
Binary: rtorrent
Architecture: source armhf
Version: 0.9.6-2
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 rtorrent   - ncurses BitTorrent client based on LibTorrent from rakshasa
Changes:
 rtorrent (0.9.6-2) unstable; urgency=medium
 .
   * remove dependency on libsigc++
Checksums-Sha1:
 1f389e939780ae3d1a5f463d18ac3f70c567249f 2086 rtorrent_0.9.6-2.dsc
 6c9a89cbb63a09734c9a821ecb241a07b11c4542 15524 rtorrent_0.9.6-2.debian.tar.xz
 339c84c4fff1ae7a010bca1ee85b42e90ae243af 398788 rtorrent_0.9.6-2_armhf.deb
Checksums-Sha256:
 dcaedb4bce2fa00beeff2f53de5002987ec59a0b39d44254ae19116cedf425ea 2086 
rtorrent_0.9.6-2.dsc
 f2992bf64263f57219d3871889501a09285869b6fdf913438e462fd9461ae5fb 15524 
rtorrent_0.9.6-2.debian.tar.xz
 eb2fc5e11f118a1c7db4b848c3b9dee99d3d1621400bfa3e9fa985cb9e0dce43 398788 
rtorrent_0.9.6-2_armhf.deb
Files:
 587c7fedd1dd816f1396eeafdd354018 2086 net extra rtorrent_0.9.6-2.dsc
 e1bbed9bebaf23e1112545667b54 15524 net extra rtorrent_0.9.6-2.debian.tar.xz
 a87ff2143ace7055debc77ab4517a5eb 398788 net extra rtorrent_0.9.6-2_armhf.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWQPncAAoJEPAe+gXRgGsPATcP/2SmMIHJITc4G71S9wmLGOxT
yhkZLRPCO99gfc1KwoKOjYbfkSqeaSnwYzc2mC1uKWHUjRoIPbF/6zKQrjagcwKl
57yVJJqA1hKOEckDjN8tQcJe2dGsoZyt+mlTOLamDjDCy/ts7MS11dkL/Oe4C4w7
5laJnfAoR2QKFg7wmGLc330Q1ZntRMDtjRsj6Jv5c0zFUfYYF7tFs+XSv423iDwF
OBl0q875oOFBA/BATFzsN5yChDozxwGLFjxkrLrRC0rnbJvbSndcRCfo+nlsmTcA
BKNDhMsL10kvQEc/0NxCZbzHaMKqXgAVN5kD+U2G7SE4Z6JdPdj4CyPXEJwCZQxu
WwcEUpJH9sl5SrD/3L/V4AivQUgCvlwEUaFxj9JRhWlunIAqY/k3VmoiV4xIg5QI
icOsvKu8DMTY2Cs3LrsUnGHq/a8eICpuYrFC1tUL2h6iUntsXt8C2lwpcndm0rHN
REXahTk6rr3t+odOZz1GgeHynwtZjgul3rWQ2M1CpVShBloL6q0A5Nhz7Fb5vgl1
v8D8j0j2I3Z7QfgE2SNe9soauFFEIQn3qJMNl/OGDHd9S4GlP41BUNX7PyjQbPSY
YSyv5zsArHylyK649gk19mn9xDaATh2pFBpXshj/Rcl5Qz5q6HCD9mQ0vtpcNonO
4bIt1DeDwofSHEmtQ3R+
=Apm6
-END PGP SIGNATURE-



Accepted powertop 2.8-1 (source armhf) into unstable

2015-11-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 06 Nov 2015 12:38:09 -0500
Source: powertop
Binary: powertop powertop-dbg
Architecture: source armhf
Version: 2.8-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 powertop   - diagnose issues with power consumption and management
 powertop-dbg - debugging symbols for powertop
Closes: 801873
Changes:
 powertop (2.8-1) unstable; urgency=medium
 .
   * new upstream release (Closes: #801873)
Checksums-Sha1:
 0e810219e5b9384ebfaedbc57bdd6d4b82ad0a8b 2034 powertop_2.8-1.dsc
 60da464a0c5d39c64b5d4a0e854bc6c480f8927a 67 powertop_2.8.orig.tar.gz
 18a1fe0393e14fe686b4e21364efb6695a9b9841 7336 powertop_2.8-1.debian.tar.xz
 efeb92dc47a41e63cd4d14c5012d8fdfb9f306a1 1967592 powertop-dbg_2.8-1_armhf.deb
 0365211226e0cdef3c6ef407f8f6f07e0f6825e9 159800 powertop_2.8-1_armhf.deb
Checksums-Sha256:
 44de086c60cbded6ae28bb87c4b946d67768e3a22a50945f5aea665e34f0bb49 2034 
powertop_2.8-1.dsc
 a87b563f73106babfa3e74dcf92f252938c061e309ace20a361358bbfa579c5a 67 
powertop_2.8.orig.tar.gz
 da95b8013853655743777ec47a03d28e3891b51d1f8284bcf4e52cff7c63df8c 7336 
powertop_2.8-1.debian.tar.xz
 090d8455a104c4b7a03c91156209f852fdfd393d59ab21b3912fc648a3ae4a10 1967592 
powertop-dbg_2.8-1_armhf.deb
 24a7fbe8aaca24f58092a4542bed6a7abfe9eeefa547a53b59181a642497b491 159800 
powertop_2.8-1_armhf.deb
Files:
 4f02725e5d8a56d48c8b87ab3c2177f3 2034 utils extra powertop_2.8-1.dsc
 c55fedb69203e480801b18bd7b886241 67 utils extra powertop_2.8.orig.tar.gz
 9e1c3fd6da755c081ac9cd68d842cdbd 7336 utils extra powertop_2.8-1.debian.tar.xz
 26f3b29cc14579bb1778a1172267d761 1967592 debug extra 
powertop-dbg_2.8-1_armhf.deb
 50b13c3a57f02679c656679edcf991b2 159800 utils extra powertop_2.8-1_armhf.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWQPo5AAoJEPAe+gXRgGsPIT4QALLKvZRXZmH0+zZMxsT9i7zV
ZZdS/TqK1dtP0n/Z0U/NBY9aJ3QIJQ6TWfOMsLrEjGMMPe1BSuyMpkeUdQ0GVQd3
SGOk0B5vpx8qN/8eoKM7mmFzrly4awpJf0nwDReYl0RxT7+mdQCGpdZON0c6hf6R
kq0Anrj+/edMyY3QeOZyDvAvLg4u+7LeJy/94MgvilZ9jEZKobB9/4X2ubwcISsV
gWsVgIGIc6OrQMvqpsP8QXURL3yX9ubJ7FPGsJoKmEH3tDxq3PdyNJ89JVho12fJ
FIwDE/DnW8EDDCz9IX5nqkTZJuIR79Susg9O0nHbk25c/HssyqmD1nk4u1rewPH1
4IOYcWfdmn9RaxXDqDR93i8b6h49L8mOqrfNiZsT6vwTVqeLYiKdyxXGa/4PPHzQ
JqDyS+yxjMFl3Nj/zJQ4+K3qJ+iQ6xPtashUMxnNhdL5LdxKGUBQ8maVJG6bKjkk
6rljaZnPuRDfzJBUePkEhx2zG5eT4P6OVGKFujNi3nxvxUqn/tM3+NqvoEAm+sR0
NKWZo9vinTGiND5nbnwO6QhasaiO9gPTDyqIQ6445p6sc6/ElSkHvcBqYEjSEfZr
tsm7ytFnfJQ2p6uKhiizNwNo0qfuHq1teaA4jISmPqWh38QXMzXdQ/Qkzg+7T5qH
C4RklckMJUdJcAaBFV8J
=XC52
-END PGP SIGNATURE-



Accepted libtorrent 0.13.6-1 (source armhf) into unstable, unstable

2015-10-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Sep 2015 04:03:36 +
Source: libtorrent
Binary: libtorrent-dev libtorrent19
Architecture: source armhf
Version: 0.13.6-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 libtorrent-dev - C++ BitTorrent library by Rakshasa (development files)
 libtorrent19 - C++ BitTorrent library by Rakshasa
Closes: 779430 797866
Changes:
 libtorrent (0.13.6-1) unstable; urgency=medium
 .
   [ Jonathan McDowell ]
   * Remove Benoît Knecht from Uploaders. Closes: #779430.
 .
   [ Jose Luis Rivas ]
   * New upstream version.
   * debian/watch now uses github.
   * Bumped package to match the soname change. Closes: #797866.
 (urgency=medium since this is an RC-bug, gcc5 transition)
   * Removed patches, they were already applied upstream.
   * Updated homepage.
Checksums-Sha1:
 8655072a6e899e4bcaae4a869e4673bade2577d5 2131 libtorrent_0.13.6-1.dsc
 9ca6ca9698f81c758fe934b52374f23588a7cc78 340818 libtorrent_0.13.6.orig.tar.gz
 0d987894d56ae64d57d01c7e3d4f59a8edbefecb 21288 
libtorrent_0.13.6-1.debian.tar.xz
 27e6dcebdd2743f90f3a02e0dd34831ddabb4f41 64996 
libtorrent-dev_0.13.6-1_armhf.deb
 5e4451e264e6f59dcf7dbb8af877c70ef23d59cd 347630 libtorrent19_0.13.6-1_armhf.deb
Checksums-Sha256:
 a52b26a1c6e82d4679f91692084208acc83f4a3168d3cbf877e9644c9b156ae4 2131 
libtorrent_0.13.6-1.dsc
 bf963ac6e73e194a2cd87ebdf809988b5b3d6244bb7cd43d7d0c4852fc501524 340818 
libtorrent_0.13.6.orig.tar.gz
 1d57b44c1b702653cdf10e6cbf2dc17db1c2dbfa2b17f601dbb3cfbf88fdd85c 21288 
libtorrent_0.13.6-1.debian.tar.xz
 dcef549762acb1c080ccd266a73143901ea071f05045f43b37264b3fa8202751 64996 
libtorrent-dev_0.13.6-1_armhf.deb
 430767bd97590a989a55ef98073153ceb95d004da41d33bf6bf262bf0a0f976d 347630 
libtorrent19_0.13.6-1_armhf.deb
Files:
 62fda4609c483403df9a3ad3d1da4369 2131 libs extra libtorrent_0.13.6-1.dsc
 8c8eaa9fa03bd113967c68eea26493e7 340818 libs extra 
libtorrent_0.13.6.orig.tar.gz
 fcef8eb35aa6ca26878d92764e485a22 21288 libs extra 
libtorrent_0.13.6-1.debian.tar.xz
 eb8da2c128c9c19d67fa310f8a8c7f20 64996 libdevel extra 
libtorrent-dev_0.13.6-1_armhf.deb
 eb4d40035c01746a3ae1f56d734b7e85 347630 libs extra 
libtorrent19_0.13.6-1_armhf.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWDB6GAAoJEPAe+gXRgGsPH2EP/RGYt72MAPk4LC6FWQ7zgO1F
3CKz9VHHFXVj+zAuruhFL96izlbJLC+tTe19rEMVHQPqyXdBTMhG4sn/bQNYNqm0
rYatMYGSQXaEaXTMc3ycJjobWLpcONxK8ii3ACQ3/w004x6RIDhwwk/eSIB0jqlr
2dmervJfnnh2foy8G16iY5ejcF3MBsKXFC/ST868Q3wJ7HVOJyD/LmOG1GkSMT56
insZS4OO36chz8ucFvZllTr7cwKYmp0kykVgEfV8cH56Le8DWP3PIXMjMPikR7Qo
2eyFhgYZ2viLcoZwn/9SK5aJ+h5cMPw7xchYO/9rmhka/efs4yCwoCQBqHbfQ00/
7dscE4rGhdPVO/GYwa1UAIvLHJvf55yQQXrgqfneeUKsDjLpCnX6G/yIkTD3hm/9
SgmJUN9p/tIitJY6ROm3C94kRbWXf4kGSO4NXsgqo0BRqSLvatfojbtP8JCumFMj
NvusvBzrd3lI/bYwyWkc4za953Lq+DMivVb7ucnbRmuy/L50SxvAZemRP2r1GVHA
D+8TX61mlVPhiRvWK5sujjvJzHL5+UGP/E/w62aYpIJCX206pqz5EsLTzCyVcwCS
ocPfLHGySCdN3XQZrfouTjBZ1Ol4frmVwAjV2wuDU1Yuk5Y8/P+GUGm+cax0ICBV
9sctLlgIgTiIFH4e+0RQ
=ebLp
-END PGP SIGNATURE-



Accepted rtorrent 0.9.6-1 (source armhf) into unstable

2015-10-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 Oct 2015 00:40:22 -0400
Source: rtorrent
Binary: rtorrent
Architecture: source armhf
Version: 0.9.6-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 rtorrent   - ncurses BitTorrent client based on LibTorrent from rakshasa
Closes: 779431 789465
Changes:
 rtorrent (0.9.6-1) unstable; urgency=medium
 .
   [ Jonathan McDowell ]
   * Remove Benoît Knecht from Uploaders. Closes: #779431.
   * Update upstream website. Closes: #789465.
 .
   [ Jose Luis Rivas ]
   * debian/watch: using github
Checksums-Sha1:
 c6005d2e59a61af5541a0ac67185ed8ee55e644b 2105 rtorrent_0.9.6-1.dsc
 27505081254618077c291eb1ee36bfb41f974834 226141 rtorrent_0.9.6.orig.tar.gz
 a291dbee394d4e345ad60aee83f261d8f7dc63bc 15516 rtorrent_0.9.6-1.debian.tar.xz
 3617f1030c0ee268fd17edae4169458925aa8e35 398742 rtorrent_0.9.6-1_armhf.deb
Checksums-Sha256:
 8173699eea7d885a41e36d37f86db32f56759a9c82d738e683a26cf315f7558b 2105 
rtorrent_0.9.6-1.dsc
 8ca89ca9e8f0cf984198d030203087e93d24743dfa158091a5d225a70ca4c8cf 226141 
rtorrent_0.9.6.orig.tar.gz
 6c58bf59c4de421ade84d9c4c9081050e7df1c117e954edcc6914935a604bba1 15516 
rtorrent_0.9.6-1.debian.tar.xz
 576d2075c5d933d4d6987d7eea88e5beae5df8fe06cac29668d94e31f5d205c8 398742 
rtorrent_0.9.6-1_armhf.deb
Files:
 3abafc0d1a0ec172c0fbf9f9ee20ac4a 2105 net extra rtorrent_0.9.6-1.dsc
 b8b4009f95f8543244ae1d23b1810d7c 226141 net extra rtorrent_0.9.6.orig.tar.gz
 1220758b84c375960b163ff28e3d1bc7 15516 net extra rtorrent_0.9.6-1.debian.tar.xz
 6732c24b3e81b551a5fb0ec19aca7ca1 398742 net extra rtorrent_0.9.6-1_armhf.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWD2RxAAoJEPAe+gXRgGsPw7gQAL05iCttTieAe1hmrfUesQ+u
IZpUNy9/69hIkuZlizjPWCupvPiEKAe6HQNZHBpAGBheGVn1bF1rRZpuVZfkZaPC
/2iBqhLreeAauyajMOlJuhhMEViYZi5Bhg9ZbV2mS4reWXVPi7ZTfdOavSNa0D6J
zb0TdHoeeqXrXmf+P4fQdPCbVUjuaDv+aJEdADxzRI9I0rom3Z5B2UiAcqj0W9KH
xARF8Xxm7iVv4uVZAoViEmDVFIXkkJWTSPmr65aiPMO1s2LUQPQmGdIIa/D0Z3i7
n1v7Vrx0irrgYdEg88bzekg6XUoIhDzuSYNxNWEvDnXgTW/hrUR+OcDHRqICt1jy
dsjc0F7Pjh7mWJ0FYcSVYpxmQ0Ck7XouwOgVOnRwlhZn4E4/y7Wte5nqLtLhcLcn
KQWk1ktO2R7i7cemMkVSLN/F7wGkOSZtEWZjfLbIacreg/z4iMdmibNPVxZy+w7O
hHbfE5gp+i+u0JqkZe96wl8shkYza1EicekFdEeFCc1i78WyWJFdi3RvYwsd/7Qu
D3D4LjGuYVsZZTMKHNvizYapvwTEMLYuSGACPxPRA3Mq4FWSLB5JfmLnKMqcO0k2
S1On9idLE792bZ3NKCr0qbcMv3fi4vyNS6mIIjEtJagANm9EB+dcQOU/N4PfpClL
Ce1uNo4nc6o+m1qgVPWX
=w/n3
-END PGP SIGNATURE-



Accepted pgpdump 0.29-1 (source amd64) into unstable

2015-09-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 09 Sep 2015 11:50:06 -0500
Source: pgpdump
Binary: pgpdump
Architecture: source amd64
Version: 0.29-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 pgpdump- PGP packet visualizer
Changes:
 pgpdump (0.29-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 fc2e5a4cafc53e024e28bce16c25405d8497e0de 1815 pgpdump_0.29-1.dsc
 55d802a236351ae5176ba668b5c739a4fcfc8169 62972 pgpdump_0.29.orig.tar.gz
 003ad756bccf14acb2bca0cdaf97bdaa8da05fd2 3225 pgpdump_0.29-1.diff.gz
 fa4b4cdb57616cd6447211a0f4f416d6dea29a73 19146 pgpdump_0.29-1_amd64.deb
Checksums-Sha256:
 81cf1772e13c50325afb865cc8235ba9542686cc23e3877ce40b67a81039a88a 1815 
pgpdump_0.29-1.dsc
 b2b3ffe998eda901f4f888a62354730fb53840e68493cfff76962524c43e1d11 62972 
pgpdump_0.29.orig.tar.gz
 156bee845e19c4533625f50d377accd4e324e0a737bccb52803308b3edc0c511 3225 
pgpdump_0.29-1.diff.gz
 b845267eba40010374a57fa4344035f1be1bf836fe29e78cee7eb4eed4f43107 19146 
pgpdump_0.29-1_amd64.deb
Files:
 387f456e160771b411fdec591b2391d8 1815 utils optional pgpdump_0.29-1.dsc
 293c404e4573f7cf6e7d05a62c44459d 62972 utils optional pgpdump_0.29.orig.tar.gz
 b2c03a1250205200aa1dc8e50111 3225 utils optional pgpdump_0.29-1.diff.gz
 c6e15fe79af3b8abd9713e89321d7bac 19146 utils optional pgpdump_0.29-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV8GPTAAoJEPAe+gXRgGsPsjoP/RvDdcJcHY9IsEwlWUATl5St
sYag9gy3nM3uoDKdgDyJoJ3hx0tz1NEIrUy90mmeC4gOkg9PYkJmM27A5JFD9g1K
NyIihX3CzTjrRDQH/ppmLxhTmOX1jNuYyEZ1VatH7/NOvqI/TVLbLRtKfp4P/YrI
gOtsaeDgzZMCyqtCBa2BMDk6VPzkvVOyvDbxvY0se/lsnnGIchEqmUseDqA8RRjf
iYAxbeDFOjPFdd2QGWPEN7m5jLc9lb6q5NxhP0HOURPdSamf/LEiYsOJ7dyzg0Ek
PHvAL0wDlymvJ0ifyo/hiQQfIsff0H05ZLCVc3G0hf8Vu/WgIflULfdUz2PCCxT8
ngXYikXW+3eBj96hsidzSLv9+hEclzN0c6T9p2Vh+bjga449O1Cm/Nr3tTifQeYo
lqGCmI1ll+fhykrO08PRbZEYqn0rUD0BjyoW7LG9LX2NZKkTR2LYVh5YBq0H+mc1
ifU4QPGYv8kNKmUsqz4J/ZXtawfnqUENIsjlA1RV/UTiGFW4CKrVAjeO9Iy+P2Go
veUSXr8TWNSQUw57mkE/Lpr2AJB7fWzjrcuMAaFxHfMdBEPzWvkC/ovjCsi2XIwf
GM3YJOiOdgKuWw9dkJh22m0DstN1oYg17kvJBQlJwJUDEO1KVcyBbCZuFidm+dzj
pYWHXIlg4SyyUraUI0dm
=1MMu
-END PGP SIGNATURE-



Accepted powertop 2.7-1 (source amd64) into unstable

2015-09-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 09 Sep 2015 08:41:21 -0500
Source: powertop
Binary: powertop powertop-dbg
Architecture: source amd64
Version: 2.7-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Rivas <ghost...@debian.org>
Changed-By: Jose Luis Rivas <ghost...@debian.org>
Description:
 powertop   - diagnose issues with power consumption and management
 powertop-dbg - debugging symbols for powertop
Closes: 795297
Changes:
 powertop (2.7-1) unstable; urgency=medium
 .
   * New upstream version to unstable. (Closes: #795297)
Checksums-Sha1:
 d77f69314ec7424f38e5e3a34ce3a1e871a7dcec 2036 powertop_2.7-1.dsc
 1c74bf8650a35a4a2e791f5e9fe0c7246160dbd8 7288 powertop_2.7-1.debian.tar.xz
 b17f677c6fe6470f54c8edf59611de383f59cf98 1746440 powertop-dbg_2.7-1_amd64.deb
 910d1573d0cc392abc95a12af19fb755de6dab24 183402 powertop_2.7-1_amd64.deb
Checksums-Sha256:
 3567f5acb9345c63268eb4d04e36db84c9ac685bdd076f71fe5d8a574715f448 2036 
powertop_2.7-1.dsc
 70924cd8ec3f4cdbbeb0067f5855509d199c8611582310fadbd3d5d8064fbb0b 7288 
powertop_2.7-1.debian.tar.xz
 c85d8ddf12baeee1f005480e53387296b87d39daaef0acc8b83e9af030727544 1746440 
powertop-dbg_2.7-1_amd64.deb
 bd33b34c08913adf60be490b7093df89b224cb8fee70b632c9f67ac79783b075 183402 
powertop_2.7-1_amd64.deb
Files:
 3d00a4e2efa4333a667168cd813793a1 2036 utils extra powertop_2.7-1.dsc
 bb8de26ef922e8b65a0b228d2035a6c2 7288 utils extra powertop_2.7-1.debian.tar.xz
 f09dee7ac95fdf51203e197658240a7b 1746440 debug extra 
powertop-dbg_2.7-1_amd64.deb
 868b35602ed75872bc8ba22186edc8c6 183402 utils extra powertop_2.7-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV8FogAAoJEPAe+gXRgGsPDc8P/ifmZMsiHClR7KYy/Pu7W7pi
PMhsOhruNmVOqC4D4BxZnUz+qN0SO59Q1tuFTzpx2FwC6Pb+oKDRCJUJCzCwWY+n
f4i9ZOzcjrRBIC1pfqZfOufYslMk+oPjTWetLCzlhYnGV8X33bK90A4MH44CZmc2
/rQvFLcK/rXpojvIM2DdYEHLzadOfj3JWa3VfdT5u8mkdkPeAaokxSp4Y44m/dJ5
aYftaM6zl2f9YHWa32kRPu+ST3oBFvB4cKJjdshsk6Pdhox1bsy4o/qlZbDQ356H
m/73c8upDPqs/MCiLnDy95bUMAOppuUlvT24ualhlPbU7XRp9Ezq+AYP8PEzZlVG
U8L73HwF6AWACSqRURuTDLTnPQwEtS+b3Xv6dSOtfGKzOvHA6+IoG5D6JEzUx6vy
J3lew98rjql8+FdJpIjKXecrAFaQCvmIJJ+0nRiiAQbrqX6tvNuiQA8Wfm+iieax
RT0dS6k5ty10aCSAn2RZPU61oUsbS2aQIO1l/+HyTs3iVm745pDXDDVIMsU+hQq3
fZLZBpUgIZ2aezf6uUhRtznz8g28vZoHh1cj4EKbQ0cNKsatKC+X66UJOII3GbIq
3SibX15/M6Dk1rimddI+/h0hIQ1QlzZQz+5rb3+wKgj19xdVP18Rf8JBETYH6e0M
1VQYv/liknfEH63SB4sH
=phH3
-END PGP SIGNATURE-



Re: Script to generate common license texts

2015-09-04 Thread Jose-Luis Rivas
I have used neosnippet for it
https://github.com/ghostbar/vim-snippets/blob/master/snippets/_/licenses.snip

-- 
⨳ PGP 0x13EC43EEB9AC8C43 ⨳ https://ghostbar.co



Re: Improving your archive and package system for small package

2015-09-03 Thread Jose-Luis Rivas
On 03/09/15, 03:13pm, Bastien ROUCARIES wrote:
 
> I was thinking generally, perl latex python have a lot of small
> package. Each language could not come with its own solution. Maybe
> creating a tool agregating small debian package in a big one. But
> doing something only for javascript is not a solution.
> 
> Bastien

The use of small packages in nodejs is different to that on perl, latex
and python. They are very used and they are way too much. There are
several solutions for the same problem and everyone uses a different
one.

I use nodejs everyday in my work and opensource projects and I refuse to
package them into debian precisely by this reason.

-- 
⨳ PGP 0x13EC43EEB9AC8C43 ⨳ https://ghostbar.co


signature.asc
Description: Digital signature


Re: dgit and git-dpm

2014-10-29 Thread Jose-Luis Rivas
On 29/10/14, 07:44pm, Thorsten Glaser wrote:
 Ian Jackson dixit:
 
 [ NMU ]
 A dgit user should be able to do this without reading the debdiff:
 
 This is a dangerous habit to get into – I’d prefer users of even
 dgit, no matter how good it may be, to not rely on that. This is
 a social issue, not a technical one.
 

Please explain yourself, is not obvious what social issue you're
referring to if dgit is replicating debdiff and dpkg-buildpackage
behavior.

-- 
⨳ GPG 0x13EC43EE B9AC8C43 ⨳ https://ghostbar.co


signature.asc
Description: Digital signature


Re: Reintroducing FFmpeg to Debian

2014-08-01 Thread Jose Luis Rivas
On 28/07/14, 01:20am, Andreas Cadhalpun wrote:
 Hi all,
 
 some of you may have noticed a weird ffmpeg package in the NEW queue[1].
 Let me explain:
 
 In 2011 Libav[2] was forked from FFmpeg[3]. It was a time of great
 uncertainty, the fork happened with much drama that didn't help making a
 technical cut, and at that peculiar time Debian switched to Libav.
 
Hi Andreas and everyone,

FWIW, my experience with this is that I had to make my own FFmpeg
package a while ago [0] because I needed it for a project I was working
on at the moment [1].

[0] https://github.com/ghostbar/FFmpeg.deb
[1] https://github.com/ghostbar/RTSP-Streaming.js

The reason for having to package my own FFmpeg is the current libav
which is taking the space of ffmpeg seemed to conflict with every other
ffmpeg package out there, including marillat's and for my project I
actually needed ffmpeg, not libav since it didn't had the functionality.
(More specifically: the ability to take still images from an rtsp
stream).

Not having FFmpeg available in the debian repositories is a nuissance,
and certainly having libav instead which seems to be a fork yet not
having the full FFmpeg functionality and using the same package name is
worst. I didn't figured this out at first because the binary said
`ffmpeg`. Of course, I'm talking about [2] since now that seems to not
be an issue yet remains the lack of functionality.

[2] https://packages.debian.org/wheezy/ffmpeg

If the issue is that this would mean having to fix security bugs twice
then it would be reasonable to stop shipping libav and instead ship
ffmpeg, since has more functionality and AFAICS from their repos bunch 
of active bug-fixing.

I honestly do not understand why ffmpeg is not in the repos nor why
there seems to be an active movement to block it.

Kind regards.
-- 
Jose Luis Rivas · ghostbar http://ghostbar.co
The Debian Project · http://www.debian.org
GPG · D278 F9C1 5E54 61AA 3C1E  2FCD 13EC 43EE B9AC 8C43


signature.asc
Description: Digital signature


Re: How to avoid stealth installation of systemd?

2014-07-01 Thread Jose Luis Rivas
On 01/07/14, 05:35pm, Juliusz Chroboczek wrote:
  gentle persuasion [...] is more in line with point 4 of the Debian
  Social Contract than [...] bullying?
 
  May I suggest that you treat others the way you want to be treated?
 
 I am not a Debian Developer.  I am not bound by the Social Contract.

FYI, you are bound to https://www.debian.org/code_of_conduct. The reason
why that document exists is because the Social Contract has barely
something about behaviour.
 
 Are we to expect a higher standard of behaviour from a Debian Developer
 than from a random user who is pissed off because his system has just been
 broken?  Or is being a Debian Developer power without responsibility, as
 some of your esteemed colleagues appear to believe?

Either Debian Developer or a regular user who's pissed of or happy, we
expect the same higher standard. CoC applies to everyone.
 
  The suggestion to just add conflicts is also not quite helpful.
 
 I'm not sure I'm following.  There was no reason whatsoever to install
 systemd on my system, yet it got installed and broke the ACPI scripts.  To
 my untrained eyes, it looks like a conflict is missing somewhere.

Knowing what exactly installed systemd in your system should be helpful.
It's not like systemd got installed by itself without being a dependency
of another package.

Kind regards.
-- 
Jose Luis Rivas | ghostbar
The Debian Project → http://www.debian.org
GPG D278 F9C1 5E54 61AA 3C1E  2FCD 13EC 43EE B9AC 8C43


signature.asc
Description: Digital signature


Re: Misc Developer News (#35)

2014-05-27 Thread Jose Luis Rivas
On 27/05/14, 05:41pm, Bastian Venthur wrote:
 On 27.05.2014 11:47, Paul Wise wrote:
 
 [...]
 
  Common mistakes with OpenPGP keys in Debian 
  ---
  
  Jo Shields reported[6] on common mistakes that Debian members and 
  contributors are making with their OpenPGP keys. His advice is to
  add UIDs for all used mail addresses, get all your UIDs signed,
  make sure you have an encryption subkey, use exact naming in your
  UIDs, make sure your webmail plugin works and avoid Enigmail.
 
 [...]
 
 avoid Enigmail sounds a bit odd, given that Thunderbird/Icedove is a
 very commonly used client and Enigmail -- as far as I know -- the de
 facto standard extension for PGP for Thunderbird.
 
 Could you elaborate a bit on the problems of using Enigmail? In the
 quoted blog post I read something about Thunderbird inserting spurious
 line breaks into signed mails. That might have something to do with
 the format=flowed-issue in the mail headers. But as far as I know
 this option is disabled by default in Icedove.
 

I've seen the issue with people sending me emails using Thunderbird in
Windows, never from another OS, has the ^M at the end, and from the
comments it seems with Windows was the last time he used Thunderbird +
Enigmail.

-- 
Jose Luis Rivas -- http://joseluisrivas.net | http://ghostbar.co
GPG: 4096R/D278 F9C1 5E54 61AA 3C1E  2FCD 13EC 43EE B9AC 8C43


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140527070812.ga2...@arya.ghostbar.co



Re: Bug #702005: Where can i get more attention on this?

2014-05-08 Thread Jose Luis Rivas
On 08/05/14, 01:05pm, Ian Jackson wrote:
 Ian Jackson writes (Re: Bug #702005: Where can i get more attention on 
 this?):
  [some stuff to Luis Alejandro Martínez Faneyth l...@huntingbears.com.ve]
 
 Unfortunately, Luis's mail domain is hosted at Hotmail which hates
 chiark:
 
   l...@huntingbears.com.ve
 SMTP error from remote mail server after MAIL 
 FROM:ijack...@chiark.greenend.org.uk SIZE=4130:
 host 3fd47c7f131f4ca31143ff3af72008.pamx1.hotmail.com [65.54.188.78]:
 550 SC-002 (BAY0-PAMC1-F10) Unfortunately, messages from 212.13.197.229 
 weren't sent. Please contact your Internet service provider since part of 
 their network is on our block list. You can also refer your provider to 
 http://mail.live.com/mail/troubleshooting.aspx#errors.
 
 (I know of the causes of this; I disagree with Hotmail and resolving
 things is nontrivial.)
 
 So hopefully Luis will see my reply here on -devel or in the bug.
 
 Luis, if you want to email me, please use a different email address
 that doesn't go to Hotmail.
 
I already pointed Luis's to your email on the list's archive on IRC and
on Twitter. I'll point it out in IM in a few hours anyway so I make sure
he does see it.

Thanks Ian.
-- 
Jose Luis Rivas | ghostbar
The Debian Project → http://www.debian.org
GPG 3E7D 4267 AFD5 2407 2A37 20AC 38A0 AD5B CACA B118


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140508125003.ga1...@arya.ghostbar.co



Re: howto handle jquery embedding by build-depends

2014-05-08 Thread Jose Luis Rivas
On 08/05/14, 08:01am, Daniel Baumann wrote:
 src:lxc contains documentation (*.sgml only) and build-depends on
 docbook2x, no jquery is needed or installed as build-depends. the
 resulting bin:lxc-dev then contains a *compressed* jquery.js put there
 by docbook2x. lintian detects this and warns about it (W:
 embedded-javascript-library).
 
 i think we have the following possibilities to handle such embedding of
 files by build-depends, where the embedded files were not part of the
 original source (starting with least favourable one):
 
   A: ignore it and overwrite the lintian warning
 
   B: overwrite the lintian warning, use a built-using: relation in
  control (in lxc case, against docbook2x which imports the
  jquery.js)
 
   C: post-process the binary package content at buildtime to replace
  the embedded files through proper depends (e.g. for jquery,
  replace the file with a symlink to /usr/share/javascript/jquery
  /jquery.js and have a depends or recommends on libjs-jquery).
 
  this could potentially have side effects if the copy of the
  to-be-embedded file (jquery.js) inside the tool that imports it
  (docbook2x) is not in sync with the standalone packaged version
  (libjs-jquery), so that we end up with a newer/incompatible
  version.
 
 for lxc, i'd go with C.
 
 did i miss anything? (yes, i haven't fully read the last thread about
 jquery on debian-devel a couple of weeks ago, i think it only covered
 the 'what to do with embedded js in source packages'-cases, not this
 'what to do with embedded js in binary packages not being part of the
 source package'-case).

I actually think there's a D option and is based on the solution that Daniel
Kahn Gillmor gave on a similar issue I had with powertop, which is using
native javascript instead of jquery. [0] Of course, this wouldn't be on
lxc but directly on docbook2x and that would fix it for more packages
than only lxc.

[0] https://bugs.debian.org/695890

Other people in this thread has already pointed out the issues with
several versions of jQuery and I honestly believe native javascript
should be enough for the transformations docbook2x seems to be using.

BTW, I failed to see on docbook2x website how is that javascript is used
at all. Would you give me a hint so I don't need to build the package
myself to check if this is actually a viable solution in this case as
well?

Kind regards.
-- 
Jose Luis Rivas | ghostbar
The Debian Project → http://www.debian.org
GPG 3E7D 4267 AFD5 2407 2A37 20AC 38A0 AD5B CACA B118


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140508130217.gb1...@arya.ghostbar.co



Re: Ghostscript licensing changed to AGPL

2014-05-06 Thread Jose Luis Rivas
Hi Jonas,

On 06/05/14, 11:05am, Jonas Smedegaard wrote:
 Ghostscript have changed its license from GPL-3+ to AGPL-3+ since 
 version 9.07.
 
 Ghostscript includes a library - libgs9 - licensed as AGPL-3+ like the 
 rest of the project.  It also includes a set of Type1 fonts apparently¹
 licensed the same.
 
 I've tried² suggest relicensing of the library part, mentioning the the 
 problems AGPL has for libraries and fonts, and referring to our recent 
 thread here.  Seems they have no interest in such change - or perhaps I 
 simply failed in getting the message across - perhaps others here can 
 help explain them the problems better than me.

I saw it and I fail to see what exactly they want to achieve with this
change since AGPLv3 is for web apps. I see you exposed your position
very well but they didn't gave specifics on what they want to avoid with
this besides protect against commercial use of GPL Ghostscript which I
believe is bad enough in DFSG terms.
 
 Seems that these projects may link against Ghostscript, and therefore 
 (possibly) effectively becomes AGPL-3+ with this change:
 
   * gimp
   * texlive-bin (texlive-binaries)

Actually with this one is worst, since the LPPL is not compatible with
the GPL, lets not even talk about GPLv3 or AGPLv3 :-/

[snip]
 
 AGPL Ghostscript is now in experimental.  How to proceed?

I think we should get some feedback from debian-legal before doing
anything. We need to be aware of their intention, how they plan to
proceed on their protection against commercial use of Ghostscript and
what are the implications for the currently linked applications.

Kind Regards.

-- 
Jose Luis Rivas | ghostbar
The Debian Project → http://www.debian.org
GPG 3E7D 4267 AFD5 2407 2A37 20AC 38A0 AD5B CACA B118


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140507014416.ga2...@arya.ghostbar.co



Re: Non-source Javascript files in upstream source

2014-04-27 Thread Jose Luis Rivas
On 27/04/14, 06:18pm, Nicolas wrote:
 
  Jo Nicolas,
 
  You could generate the minified javascript from normal javascript files.
 
 
 I know that but non minified files don't work. It gives errors Uncaught
 SyntaxError: Unexpected token ILLEGAL

Then the issue is with the source files. That's not right. If you want
you can mail me privately and I will help you patching them. Maybe the
actual upstream source has it right.

Kind regards.
-- 
Jose Luis Rivas -- GPG: 0xB9AC8C43
http://www.joseluisrivas.net/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140427102043.ga...@arya.ghostbar.co



Re: Non-source Javascript files in upstream source

2014-04-26 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

El 26/04/14, 06:20pm, Peter Samuelson escribió:
 
 [Manuel A. Fernandez Montecelo]
  If you agree that source-is-missing also applies in those cases, do
  you also think that we should immediately declare all source packages
  in Debian containing a 'configure' script as somehow non free (unless
  we can check unambigously that they were generated by the .ac)
 
 There's 2 reasons to care if configure was built from the configure.ac
 in the tarball.  The immediately practical reason is to ensure that if
 we or our users need to patch it, we can patch the actual source, and
 still be able to build correctly.  (These things do tend to bitrot if
 you don't watch them.)  Basically that means always rebuilding from
 source - which is already a best practice in Debian.  Not every package
 does it, but IMO every package _should_.
 
 The other reason to care is of course to comply with our free software
 guidelines.  For that purpose, I think it's entirely reasonable to
 assume good faith in upstream.  If we find out that some upstream
 intentionally tricks us by shipping a mismatching configure, just so
 they can point and laugh at the DFSG violation, the solution is very
 simple: remove the package from Debian, because such upstreams clearly
 can't be trusted not to trick us in more malicious ways.
 

I think is unfair to compare `configure` files with minified JavaScript,
starting by the fact that you can't read the minified JavaScript and
distinguish if is doing something wrong compared with the source of the
same un-minified JavaScript.

I think is fine to ship these minified JS files as long as you have a
reproducible way to show that is the same as the source.

Maybe a dh script should be born for this and my head says the prototype
may look like `dh_js_minify_reproduc --source source.js --output min.js
- --rules-should-apply='--with-license --with-copyright' and throw an
error if it's a mismatch.

Kind regards.
 
 -- 
 To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/20140426232014.gd4...@p12n.org
 

- -- 
Jose Luis Rivas -- GPG: 0xB9AC8C43
http://www.joseluisrivas.net/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlNcQeUACgkQOKCtW8rKsRhndwCfWOT9rNfsvyf9A+wNRH3G1xJr
03IAoL8NazLacbwzqYqjIqQxLlKu2EIR
=z0qp
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140426233149.gc12...@arya.ghostbar.co



Re: Non-source Javascript files in upstream source

2014-04-26 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

El 26/04/14, 06:20pm, Peter Samuelson escribió:
 
 [Manuel A. Fernandez Montecelo]
  If you agree that source-is-missing also applies in those cases, do
  you also think that we should immediately declare all source packages
  in Debian containing a 'configure' script as somehow non free (unless
  we can check unambigously that they were generated by the .ac)
 
 There's 2 reasons to care if configure was built from the configure.ac
 in the tarball.  The immediately practical reason is to ensure that if
 we or our users need to patch it, we can patch the actual source, and
 still be able to build correctly.  (These things do tend to bitrot if
 you don't watch them.)  Basically that means always rebuilding from
 source - which is already a best practice in Debian.  Not every package
 does it, but IMO every package _should_.
 
 The other reason to care is of course to comply with our free software
 guidelines.  For that purpose, I think it's entirely reasonable to
 assume good faith in upstream.  If we find out that some upstream
 intentionally tricks us by shipping a mismatching configure, just so
 they can point and laugh at the DFSG violation, the solution is very
 simple: remove the package from Debian, because such upstreams clearly
 can't be trusted not to trick us in more malicious ways.
 

I think is unfair to compare `configure` files with minified JavaScript,
starting by the fact that you can't read the minified JavaScript and
distinguish if is doing something wrong compared with the source of the
same un-minified JavaScript.

I think is fine to ship these minified JS files as long as you have a
reproducible way to show that is the same as the source.

Maybe a dh script should be born for this and my head says the prototype
may look like `dh_js_minify_reproduc --source source.js --output min.js
- --rules-should-apply='--with-license --with-copyright' and throw an
error if it's a mismatch.

Kind regards.
 
 -- 
 To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/20140426232014.gd4...@p12n.org
 

- -- 
Jose Luis Rivas -- GPG: 0xB9AC8C43
http://www.joseluisrivas.net/


- -- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140426233149.gc12...@arya.ghostbar.co

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlNcVbEACgkQOKCtW8rKsRjmGQCfVPeh/hut08w4cnyIzmsNYi9W
LcoAoIc6H549oQNmsXcMvYXZNAlIauXZ
=Y5kV
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140427005617.ga27...@arya.ghostbar.co



Keeping feature requests and other non-real bugs in Debian's BTS?

2013-08-31 Thread Jose Luis Rivas
Hi,

I would like to keep as clean as possible the BTS of my packages. With
`rtorrent` particularly I have found lots of feature-requests bugs which
were already sent to upstream but haven't been fixed and are there
taking dust.

Should we keep them? Cant I just close them since are no Debian-specific?

What about keeping just debian-specific bugs in Debian's BTS? What's the
policy here?

Kind Regards.
-- 
Jose Luis Rivas
The Debian Project -- http://debian.org


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5222803d.9070...@debian.org



Accepted powertop 2.4-1 (source amd64)

2013-08-30 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Fri, 30 Aug 2013 22:47:26 -0430
Source: powertop
Binary: powertop
Architecture: source amd64
Version: 2.4-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 powertop   - Linux tool to find out what is using power on a laptop
Closes: 659517 685607 686699 695891 695893 705993
Changes: 
 powertop (2.4-1) unstable; urgency=low
 .
   * New upstream release (Closes: #685607, #695893, #659517, #686699, #705993)
   * debian/control:
 + Jose Luis Rivas's email to `ghost...@debian.org`.
 + Remove build-dependency on `cdbs`. No need anymore.
 + Add dependency on `automake` so `config.{guess,sub}` are auto-updated on
 build.
 + Standards-Version to 3.9.4.
 + Swap on fields maintainer and uploaders.
 + Add Vcs-* fields.
   * debian/watch: upstream changed to `tar.gz` from `tar.bz2`, so reports on
 newer versions were failing to be accurate. (Closes: #695891)
   * Acknowledging NMU's.
   * debian/rules: Simple dh format.
   * debian/patches: changes applied upstream. No need anymore.
   * debian/copyright: update to copyright-format/1.0
Checksums-Sha1: 
 0a13a3ceb1d3a2518653ed6694a6a65b2898d368 1301 powertop_2.4-1.dsc
 3a5558a2bec10ff18864e8566bbec90783a8edd7 632390 powertop_2.4.orig.tar.gz
 586605d71fb0dc24bc33b329b0ed827f248dbe24 7402 powertop_2.4-1.debian.tar.gz
 d4dad986f6e44dfafe5ce70bf27cb1194aae5564 158814 powertop_2.4-1_amd64.deb
Checksums-Sha256: 
 3836d6bea01127722d65910c3f64abfbc6c84561713f56afaf0e378e65f8848d 1301 
powertop_2.4-1.dsc
 42796c94546ae7f3d232e41b7fa09b2532396ca389908ff528870311db6327b7 632390 
powertop_2.4.orig.tar.gz
 47076dd1fe5f7d91e992760a4016327eb1b53fd09ef47dad512e28c60a55232a 7402 
powertop_2.4-1.debian.tar.gz
 0c085e30bef77dd116ab14ddd08d3cded714b5346f4f79c8675757f2310a4a2c 158814 
powertop_2.4-1_amd64.deb
Files: 
 8305b433cc23c878553642f81c965478 1301 utils extra powertop_2.4-1.dsc
 3aa686bb245d6683b86cba9a6a4b8c6d 632390 utils extra powertop_2.4.orig.tar.gz
 c9bd3770c3ddd788a556444dc4e17ec3 7402 utils extra powertop_2.4-1.debian.tar.gz
 303a1746358a17919a29f888637fbb16 158814 utils extra powertop_2.4-1_amd64.deb

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

iEYEAREDAAYFAlIhZa4ACgkQOKCtW8rKsRhQUACgt+dnSRXs4XJ4DZV98qt8fMz1
mWAAmQHZnOp6do9QsPvV6yZ6xAwVS5sd
=ziK+
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vfcpg-00029h...@franck.debian.org



Accepted pgpdump 0.28-1 (source amd64)

2013-08-26 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 26 Aug 2013 10:45:17 -0430
Source: pgpdump
Binary: pgpdump
Architecture: source amd64
Version: 0.28-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 pgpdump- PGP packet visualizer
Changes: 
 pgpdump (0.28-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/watch: mangle updated to match versioning on GitHub (with a v
 before the version number).
   * debian/copyright: updated to dep5.
   * debian/source/format: Created.
   * debian/control:
+ Standard-Versions to 3.9.4.
+ debhelper = 9.
   * debian/compat: bump to 9.
Checksums-Sha1: 
 ded671ba7158912fcd62a6cfbf3b24127cfae01b 1192 pgpdump_0.28-1.dsc
 dd31e5eef6cf71a2a9c236cd5d392bc368f54dea 62370 pgpdump_0.28.orig.tar.gz
 8db1527fb721aabfae90377afe66dec83f1d1e7d 3225 pgpdump_0.28-1.diff.gz
 3aaca8b3caefb1bc3ef0dba70fe8f4cec5341ebd 18906 pgpdump_0.28-1_amd64.deb
Checksums-Sha256: 
 7c0b375f748e227ff01bc368870df64f5cdf8f6870c5fc0561e1dfac1f62cc05 1192 
pgpdump_0.28-1.dsc
 f26923f7f83e85b6b61d2202dc49d4484c1aef06cd2c370c5aa649b56cbd 62370 
pgpdump_0.28.orig.tar.gz
 93b045a680b6536841a4a80096607a3cf09d8cd471372f2154743ae8f1fa3d94 3225 
pgpdump_0.28-1.diff.gz
 8ed885291345aa1013d1ed609a3c54bd5bb0d275da00b31c5e0b17762b280137 18906 
pgpdump_0.28-1_amd64.deb
Files: 
 9268105f3910cb513e188b952cccbd44 1192 utils optional pgpdump_0.28-1.dsc
 ba38225ba5ccb28a1d6aa14700e94f69 62370 utils optional pgpdump_0.28.orig.tar.gz
 a5b542ab35a9c17f3ed6bfe51ed5c0ba 3225 utils optional pgpdump_0.28-1.diff.gz
 b10ba5d29f1c2630d6073b47b23c654f 18906 utils optional pgpdump_0.28-1_amd64.deb

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

iEYEAREDAAYFAlIbcwMACgkQOKCtW8rKsRjGTACgq+yyQaFjCGnBKHwdtmZ1cbnE
d6kAn33fWSfNJCEdOs7Shzvu+BYdiqPw
=rhpa
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vdyno-000129...@franck.debian.org



[VAC] now - ?

2012-07-19 Thread Jose Luis Rivas
Hey people,

I'm moving from Barquisimeto to Caracas - Venezuela, tomorrow. Don't know when I
will have internet in my new home and as is Caracas I'll mostly not be at home
but for sleep-time. I need to setup all my things, my kid and all that stuff so
probably will be unresponsive for a few months while I adapt.

All my packages are co-maintained/group-maintained, so this email is just
intended to anyone trying to contact me so I can do something for them within
Debian. I'll be available anyway for key-signing within Caracas if anyone is
passing by.

Cheers!
-- 
Jose Luis Rivas - GPG: 0x7C4DF50D / 0xCACAB118
The Debian Project Developer
Venezuela




signature.asc
Description: OpenPGP digital signature


Re: tratando de compilar liferea

2012-02-21 Thread Jose Luis Rivas
On 02/21/2012 06:57 PM, Fabián Bonetti wrote:
 Hola gente.
 
 Bueno quiero compilar liferea para añadir algunas redes sociales mas.
 
 pero tengo un problema de dependencias y no se por donde resolver.
 
 me aparece:.
 Requested 'gio-2.0 = 2.26.0' but version of GIO is 2.24.2
 
 o sea que tengo 2.24.2 y me pide igual o mayor que 2.26.0
 
 ando en squeeze 6.0.4
 
 No tengo muy claro quien usa esa librería. 
 
 Intente bajar de aqui 
 http://packages.debian.org/search?keywords=libglib2.0-dev
 
 2.30.2-6
 
 pero quise preguntar aquí que es lo mejor en estos casos a proseguir.

Hola Fabián,

Lo mejor para compilar paquetes es estar entre testing y unstable. De
todas formas, puedes usar algo como cowbuilder para compilar los
paquetes en un ambiente limpio y/o descargarte los fuentes para tú
versión, es decir, squeeze.

No sé si los descargaste con apt-get source o desde algún Git/SVN. Si lo
hiciste desde uno de los últimos tienes una versión que probablemente no
sea compatible con las librerías disponibles en squeeze, por lo que te
recomendaría bajarte las fuentes con apt-get source y a partir de ahí
hacer las modificaciones. Las dependencias las resolverás entonces sin
mezclar paquetes de diferentes versiones de Debian.

Saludos.

-- 
Jose Luis Rivas - GPG: 0x7C4DF50D / 0xCACAB118
The Debian Project Developer -- http://ghostbar.ath.cx
Barquisimeto, Venezuela



signature.asc
Description: OpenPGP digital signature


Bug#632162: O: mybashburn -- Burn data and create songs with interactive dialog box

2011-06-30 Thread Jose Luis Rivas
X-Debbugs-CC: debian-devel@lists.debian.org
package: wnpp
severity: normal

This package has been in very bad shape since long time ago, upstream
is not responding since 2008 and there have been no changes since that
time.

Maybe this should be removed, but there could be someone who would
like to take over upstream and/or debian maintenance.

Regards.
-- 
Jose Luis Rivas. San Cristóbal, Venezuela.
Debian Project Developer
GPG 0xCACAB118 (old) 0x7C4DF50D (new)
http://ghostbar.ath.cx/about



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktinkoj4yo3chtg0_7pmadgg++b6...@mail.gmail.com



Accepted mybashburn 1.0.2-2 (source all)

2011-06-30 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Thu, 30 Jun 2011 01:31:27 -0430
Source: mybashburn
Binary: mybashburn
Architecture: source all
Version: 1.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 mybashburn - Burn data and create songs with interactive dialog box
Changes: 
 mybashburn (1.0.2-2) unstable; urgency=low
 .
   * QA upload.
   * Removing dependency on coreutils.
   * Moved Homepage to description to pseudo-header
   * Bump to S-V 3.9.2 with the changes noted on the 2 past items.
   * Changing maintainer name to QA team, orphaning the package.
Checksums-Sha1: 
 7079771fd813c3abf31f9fbb83c87ed5aa69b534 981 mybashburn_1.0.2-2.dsc
 86ddcd5eb9288fb738dd1108c9ba26827f5cff5d 2183 mybashburn_1.0.2-2.diff.gz
 334de4b0ab7c4ca05c37707f776698150e5ce954 83646 mybashburn_1.0.2-2_all.deb
Checksums-Sha256: 
 d85971aa3bd7849b5ea82a7da7ed5237d65e46e986c16f3fb49de37dff492304 981 
mybashburn_1.0.2-2.dsc
 246599422f82abe6c82ee5a8f0bbb7f80e347908d49ef75db695f9da488c4a79 2183 
mybashburn_1.0.2-2.diff.gz
 945e9eb3cdf69b6cf6328941cc73568c8a9fbfe98ccf86dbea4dddac010d2512 83646 
mybashburn_1.0.2-2_all.deb
Files: 
 ebae8c0e3956f16fc3da1ea4f12af69d 981 utils optional mybashburn_1.0.2-2.dsc
 30410148a28bc072e24c6db16c3c86c8 2183 utils optional mybashburn_1.0.2-2.diff.gz
 d3a3b93a31f7a250eedaebf04b4c29af 83646 utils optional 
mybashburn_1.0.2-2_all.deb

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

iEYEAREDAAYFAk4MEwIACgkQOKCtW8rKsRipoACcCaL9Jq2G+YFsduorFqGeGBT4
HaoAnjNoiWYSqQ2PbSF5nSjJoM+hf65Q
=Yd8h
-END PGP SIGNATURE-


Accepted:
mybashburn_1.0.2-2.diff.gz
  to main/m/mybashburn/mybashburn_1.0.2-2.diff.gz
mybashburn_1.0.2-2.dsc
  to main/m/mybashburn/mybashburn_1.0.2-2.dsc
mybashburn_1.0.2-2_all.deb
  to main/m/mybashburn/mybashburn_1.0.2-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qcayt-0005x7...@franck.debian.org



Accepted xscreensaver 5.14-1 (source i386)

2011-05-23 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 22 May 2011 23:12:59 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra xscreensaver-screensaver-webcollage 
xscreensaver-screensaver-bsod
Architecture: source i386
Version: 5.14-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-screensaver-bsod - BSOD hack from XScreenSaver
 xscreensaver-screensaver-webcollage - Webcollage hack from XScreenSaver
Closes: 627382 627397
Changes: 
 xscreensaver (5.14-1) unstable; urgency=low
 .
   [ Tormod Volden ]
   * New upstream version 5.14
 - Fixed crash in Blank Only Mode when DPMS disabled.
   (Closes: #627382, #627397)
 - Added ``Quick Power-off in Blank Only Mode'' option.
 - BSOD GLaDOS.
   * Clean up duplicate build-depends (thanks Jeremy Bicha)
   * Drop xli | xloadimage recommends (we use gdk-pixbuf)
Checksums-Sha1: 
 fa3c0d90ecf5f0b1c1b7019eb466626807f41621 1776 xscreensaver_5.14-1.dsc
 0b9905ea4bce4dfa88c916229b7f1da045bcde6b 5935284 xscreensaver_5.14.orig.tar.gz
 1f81ef9a21537d4fb4d47201dd15695d4b29585a 75133 xscreensaver_5.14-1.diff.gz
 d63afcff2b9b0e8b13a3b0270adf072346ebfc1e 870400 xscreensaver_5.14-1_i386.deb
 e624991f7e690e737f960e4985834c693eac3fc6 531450 
xscreensaver-data_5.14-1_i386.deb
 85fa6c81f52bb03683327addadcdced19827a311 2640146 
xscreensaver-data-extra_5.14-1_i386.deb
 5782fd8a3276293ac178aeca4906f2d6bdba72b4 2182406 
xscreensaver-gl_5.14-1_i386.deb
 ef25725369812b51a0fe912385d5b2c71cea344f 2276058 
xscreensaver-gl-extra_5.14-1_i386.deb
 7afb12a92ba378da607221f8bcada4115b4e24bc 64112 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 59604a4c7d3db5267dcd548c03194319262652fb 163990 
xscreensaver-screensaver-bsod_5.14-1_i386.deb
Checksums-Sha256: 
 ef30e082e322d797b3dc77d4ad21419ed08e9c9c1ede434db8938c3a4c6e2f90 1776 
xscreensaver_5.14-1.dsc
 56ca8e4a8403edafb697aa0dab7c57051c6dd49058cd7b47b5ae6c35c3ad4699 5935284 
xscreensaver_5.14.orig.tar.gz
 98510560af18f5efc9551cdb8b65eed39009de1736bf6e1b24b019a4beb2197b 75133 
xscreensaver_5.14-1.diff.gz
 f14a6018236a5ede47fed53419f48ed7a0de08f71a7a51c7b7b514c9fbf82b60 870400 
xscreensaver_5.14-1_i386.deb
 1d37d90a9c6a9a30c592acce99931dc27a313397dc358b6b0644dbe84f569292 531450 
xscreensaver-data_5.14-1_i386.deb
 f6d1a20bef0249d4aa9c76bbf8727b243e0c1daa49c45faef3599525009112d5 2640146 
xscreensaver-data-extra_5.14-1_i386.deb
 7c32546f637903a2f1100747724aa6641ada88b8125248a938b2be0b91ba868c 2182406 
xscreensaver-gl_5.14-1_i386.deb
 af312b84ddd687dc1df3dd96f8027395af726bdca7ca7f5d3987bd0db32d5c83 2276058 
xscreensaver-gl-extra_5.14-1_i386.deb
 ef8b18180b7f27ade087457cc41871d7d3d3e687df1cdad84a7d53f79a9ce81e 64112 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 a26c0e08ad9004cd840f5f8f3f167256aae19c18d38899f054e863f89b7fbffe 163990 
xscreensaver-screensaver-bsod_5.14-1_i386.deb
Files: 
 d2f7cde7039ca03811baf2f6a5766835 1776 x11 optional xscreensaver_5.14-1.dsc
 ccc0a27be3f5417cf4d25399ccd600b9 5935284 x11 optional 
xscreensaver_5.14.orig.tar.gz
 883d369a765b1773755c5ae88b61c6d3 75133 x11 optional xscreensaver_5.14-1.diff.gz
 09d95b589fa6662d022f8506215f6d0c 870400 x11 optional 
xscreensaver_5.14-1_i386.deb
 93bc5d304bfae0ea4bff9e5b9a7d 531450 x11 optional 
xscreensaver-data_5.14-1_i386.deb
 ed17b71f01c353cba96cc74c04467090 2640146 x11 optional 
xscreensaver-data-extra_5.14-1_i386.deb
 5d0edd9ef398b54ea87b3a290f93c452 2182406 x11 optional 
xscreensaver-gl_5.14-1_i386.deb
 c77c95f73805d9dfc485f441d3e1185e 2276058 x11 optional 
xscreensaver-gl-extra_5.14-1_i386.deb
 19e714322dd1ef76caa49d9af4f18e45 64112 x11 optional 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 3ad6090dedf13321cc7c1feb6d01d3e8 163990 x11 optional 
xscreensaver-screensaver-bsod_5.14-1_i386.deb

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

iEYEAREDAAYFAk3Z3wMACgkQOKCtW8rKsRiI0wCgnn/679i39Pwyzak8dlm7aXch
PLIAniD5IZnjTaXggmPM84PoAbt9qyo6
=yRhf
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-data-extra_5.14-1_i386.deb
xscreensaver-data_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-data_5.14-1_i386.deb
xscreensaver-gl-extra_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-gl-extra_5.14-1_i386.deb
xscreensaver-gl_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-gl_5.14-1_i386.deb
xscreensaver-screensaver-bsod_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-bsod_5.14-1_i386.deb
xscreensaver-screensaver-webcollage_5.14

Accepted libconvert-pem-perl 0.08-1 (source all)

2010-12-25 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 25 Dec 2010 15:58:17 -0430
Source: libconvert-pem-perl
Binary: libconvert-pem-perl
Architecture: source all
Version: 0.08-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 libconvert-pem-perl - Perl module for reading/writing encrypted ASN.1 PEM files
Changes: 
 libconvert-pem-perl (0.08-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ gregor herrmann ]
   * Change my email address.
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * debian/control:
+ Added myself to uploaders field.
 + Refreshed.
 + Bumped to Standards-Version 3.9.1 by removing versioned perl and
 versioning debhelper = 7.
   * debian/compat,copyright: refreshed.
   * debian/rules: refreshed to tiny version using DH7.
   * debian/libconvert-pem-perl.docs: Added.
   * Switch to dpkg-source 3.0 (quilt) format.
Checksums-Sha1: 
 35d94c39ec9e3fe064f374040587d9104aeb1d75 1525 libconvert-pem-perl_0.08-1.dsc
 eaee6c317cb8d4002604dacea45ea0d3349398f5 54089 
libconvert-pem-perl_0.08.orig.tar.gz
 1ed5d85fc8b429a7a91e3c04ce9f3e7b004f2c43 2323 
libconvert-pem-perl_0.08-1.debian.tar.gz
 13c04deb3e58fc502f01c5e22bf9c8950c1cb8fd 22218 
libconvert-pem-perl_0.08-1_all.deb
Checksums-Sha256: 
 4686bbfef30cbb3a56509b32d01849f0e060444d7db5d69bc1074462808fb3c7 1525 
libconvert-pem-perl_0.08-1.dsc
 070ef357af0394d776647ca4b9dd992395617e49f0a5f393c85a29733f100b52 54089 
libconvert-pem-perl_0.08.orig.tar.gz
 f8a2fd0c857022a5d3a764d6de325688b791d67aa958b23d727cd6dc6d55bdf8 2323 
libconvert-pem-perl_0.08-1.debian.tar.gz
 276c7fb6691078220a13096396ed64e35e3a2ada9739d7894101c22fc3982c89 22218 
libconvert-pem-perl_0.08-1_all.deb
Files: 
 7a07337ac2a1ad9f952cef30510c9074 1525 perl optional 
libconvert-pem-perl_0.08-1.dsc
 a55c927457035806228e62b403551f13 54089 perl optional 
libconvert-pem-perl_0.08.orig.tar.gz
 090749d9be34f8c433812e37c9ae1291 2323 perl optional 
libconvert-pem-perl_0.08-1.debian.tar.gz
 41eb68c0e922daf6e7d94b56596402ae 22218 perl optional 
libconvert-pem-perl_0.08-1_all.deb

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

iEYEAREDAAYFAk0WVLcACgkQOKCtW8rKsRjD2QCbBRnjPmXbkh9mDhu0OEy0MRph
9AIAoM6MdENVqAu0vY/l+trnhV2XvdUS
=dfKt
-END PGP SIGNATURE-


Accepted:
libconvert-pem-perl_0.08-1.debian.tar.gz
  to main/libc/libconvert-pem-perl/libconvert-pem-perl_0.08-1.debian.tar.gz
libconvert-pem-perl_0.08-1.dsc
  to main/libc/libconvert-pem-perl/libconvert-pem-perl_0.08-1.dsc
libconvert-pem-perl_0.08-1_all.deb
  to main/libc/libconvert-pem-perl/libconvert-pem-perl_0.08-1_all.deb
libconvert-pem-perl_0.08.orig.tar.gz
  to main/libc/libconvert-pem-perl/libconvert-pem-perl_0.08.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pwb1h-0003dy...@franck.debian.org



Testing debconf scripts

2010-12-18 Thread Jose Luis Rivas
Hi,

I was trying to test my own debconf scripts but I couldn't even test
debconf-scripts from mysql that they do work.

Anyone can help me out with this? I try running directly the postinst
but nothing shows. Anyone had worked with this?

Regards.
-- 
Jose Luis Rivas - GPG (old/new): 0xCACAB118 / 0x7C4DF50D
San Cristóbal, Venezuela - http://ghostbar.ath.cx/
Debian Project Developer - http://debian.org/



signature.asc
Description: OpenPGP digital signature


Re: Nota sobre el SO

2010-12-03 Thread Jose Luis Rivas
Disculpen pero esta discusión no es para esta lista, los problemas de capa 8 
van a debian-user-span...@lists.debian.org
-Original Message-
From: Moises Brenes moises.bre...@gmail.com
Date: Fri, 3 Dec 2010 09:40:32 
To: debian-devel-spanish@lists.debian.org
Subject: Re: Nota sobre el SO

2010/12/3 Lobo Oscuro lobooscu...@gmail.com

 El problema es mas bien los cuelges que recibo en debian, tiene fallas, a
 veces no puedo pasarme a consola completa, sigo teniedo problemas con la
 distribucion de teclado, a veces de repente se me cuelga gnome y se me
 reinicia sola, etc.


Todo tiene su explicacion, pero hay que investigar, bueno... si es
informatico...


 Y todavia pretende que le instale nvidia para usar geoforce que incluso
 involucra recompilar toda la kernel, nooo gracias.


No, no es asi solo necesitas las fuentes del kernel y generas el modulo para
la grafica :)



 Creo que me voy a probar otra distro. el mint es uno de lo que tengo en
 lista. Se que linux es personalizable, pero de aca a destrabar aunque sea el
 idioma de gnome, prefiero que lo mas basico ya este echo y que solo baste
 instalar y usar.


bueno, anda, no solo hay una distro y para todos hay al menos una



   Tal vez los problemas sean mucho mas simple de lo que parece, tal vez el
 problema de las fallas de debian se resuelva justamente instalando nvidia,
 pero no me conviene, soy un super iman para los problemas, y no tengo
 paciencia para renegar. Esos son solo algunos, pero siempre hay algo que me
 choca, mas un sistema casi vacio como esto.


Solo decir que un sistema con mas de 23mil paquetes a disposicion no lo
consideraria un sistema vacio :), otra cosa, un buen SO no se basa en la
apariencia de la capa grafica.


   Si la situacion se da regresare algun dia de nuevo a debian con
 conocimientos de todo www.debian.org y www.gnome.org y www.kernel.org y no
 se que otro sitio me falte para pasar a ser un completo y maldito geek tan
 masoquista como emo.

   Me imagino que ustedes pasan por lo mismo tambien, ya estan tan
 acostumbrados a renegar con el sistema como los usuarios con el windows, y
 por eso apenas tienen tiempo de ayudar con los problemas ajenos, que cada
 uno muera con su SO.



Si muriera con mi distro solo  no estaria en esta lista



 Si, entiendo como son las cosas.


No, no sabes, ya has trabajado?




   Mi computadora lo unico que tiene de raro es que tengo puesta una
 geoforce, el resto es generico, y la mayoria de las fallas vienen del
 sistema, no creo que la distribucion de teclado o los componentes de los
 paneles de gnome sea un problema de hardware.


Esto es una ciencia exacta, no se basa en supuestos, tenes que tener pruebas
para decir que es el hardware o el software el problema, el sistemas tiene
las herramientas para ello.




   Bue, si las cosas persisten de esta manera cambio de distro, mas me
 gustaria quedarme y personalizar, pero los problemas mas basicos no se
 pueden resolver.


Cuando empece con Debian no decia que los problemas no se podian resolver...
YO no los podia resolver, para eso tuve que leer porque queria, sino queres
leer(por aprender) y eres informatico mejor aventate el monitor encima



   Tengo curiosidad tambien el porque no mejoraron el aspecto de gnome, o
 arreglaron las herramientas que vienen, de esa forma, las descargas de las
 iso estarian mejor.


En el caso de Debian, tiene muchisimas formas de instalar, inclusive sin
descargar un ISO :)



 Estoy seguro que mas de uno en esta lista o en varias le cayeron mal
 ubuntu. (o eso creo)


No, yo colaboro con usuarios de Ubuntu



   Entonces donde esta esa impendancia que no mejore? Lo veo igual como hace
 un año.



Seguro te leiste el changelog




-- 
http://blog.mbrenes.com

El individuo ha luchado siempre para no ser absorbido por la tribu. Si lo
intentas, a menudo estarás solo, y a veces asustado. Pero ningún precio es
demasiado alto por el privilegio de ser uno mismo. - Friedrich Nietzsche.



Accepted pgpdump 0.27-1 (source i386)

2010-08-15 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 14 Aug 2010 22:23:30 -0430
Source: pgpdump
Binary: pgpdump
Architecture: source i386
Version: 0.27-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 pgpdump- PGP packet visualizer
Closes: 464572
Changes: 
 pgpdump (0.27-1) unstable; urgency=low
 .
   * New upstream release
   * Migrated to debhelper 7, removed cdbs and dependencies
   * Updated debian/watch, now pointing to github repo
   * Updated my email address on debian/control
   * Now dumps notation names (fixed upstream with patch from Riskó Gergely
   Closes: #464572)
   * Bumped to Standards-Version 3.9.1 wo/ changes.
   * Added Vcs-git and Homepage fields to debian/control.
Checksums-Sha1: 
 11b9ed3a97911c5068329d6a38bc29ea3b56704e 1155 pgpdump_0.27-1.dsc
 82bbe0a09f8edbab14887304d9bc22da850deced 62360 pgpdump_0.27.orig.tar.gz
 ddd2e091ba0711ec6e96fae61542b8414bd6d42a 2965 pgpdump_0.27-1.diff.gz
 0c379692c90da8909fc0557b4ede1d7a99511ad0 19110 pgpdump_0.27-1_i386.deb
Checksums-Sha256: 
 b3f5e0aedc6f4b4fb97cf65fda6da7bfc6a692c36dc03dc629cce6041a01234a 1155 
pgpdump_0.27-1.dsc
 5dec0bc05391df57c8f8547781a0445732c6204543c3dcd0beeeb3204a134cc9 62360 
pgpdump_0.27.orig.tar.gz
 a037a3f6e3db262334c2ceda4d8d9987bce1309552076dc0b123c501f7440eb6 2965 
pgpdump_0.27-1.diff.gz
 222c89ed2c360fe68ccd555e34c6db171719ab8350c6da37bc5bea8d01979434 19110 
pgpdump_0.27-1_i386.deb
Files: 
 b4d497803a6ad2117ae4d21616dd1999 1155 utils optional pgpdump_0.27-1.dsc
 3ee1c5cf364f0c37d8bdb04ffbbfb1f4 62360 utils optional pgpdump_0.27.orig.tar.gz
 5ab423abb8bf3bebfaf1b8c8fbf378dc 2965 utils optional pgpdump_0.27-1.diff.gz
 638c147d027c28a2477851d3564337f9 19110 utils optional pgpdump_0.27-1_i386.deb

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

iEYEAREDAAYFAkxnlXoACgkQOKCtW8rKsRi04wCggiq2XG/8D2ra9+FzC2TuC4jV
afQAnRHlcTIxOPOhwWWmOOkarbYQL3xB
=hyQB
-END PGP SIGNATURE-


Accepted:
pgpdump_0.27-1.diff.gz
  to main/p/pgpdump/pgpdump_0.27-1.diff.gz
pgpdump_0.27-1.dsc
  to main/p/pgpdump/pgpdump_0.27-1.dsc
pgpdump_0.27-1_i386.deb
  to main/p/pgpdump/pgpdump_0.27-1_i386.deb
pgpdump_0.27.orig.tar.gz
  to main/p/pgpdump/pgpdump_0.27.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1okxho-0001ho...@franck.debian.org



Accepted liblingua-en-inflect-perl 1.892-1 (source all)

2010-07-05 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 05 Jul 2010 18:04:24 -0430
Source: liblingua-en-inflect-perl
Binary: liblingua-en-inflect-perl
Architecture: source all
Version: 1.892-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 liblingua-en-inflect-perl - Perl module to pluralize English words
Changes: 
 liblingua-en-inflect-perl (1.892-1) unstable; urgency=low
 .
   * New upstream release
   * Added me as uploader
Checksums-Sha1: 
 c690c3e4c66534ecec83861c639dcdda336d 1463 
liblingua-en-inflect-perl_1.892-1.dsc
 d6700a93c0eb20ca0625d1fbbe8c7fe4890d6cbf 45522 
liblingua-en-inflect-perl_1.892.orig.tar.gz
 c45b257b0cfcc67db7578c3e975d360a71bc0afd 2528 
liblingua-en-inflect-perl_1.892-1.diff.gz
 6958e138e72af10f61ca0f5c5bf11a10fffc853c 52014 
liblingua-en-inflect-perl_1.892-1_all.deb
Checksums-Sha256: 
 414068cba228290ccc30cf70d572bb7cc06f41b7e7a27dcc0677b9cf74a8f1af 1463 
liblingua-en-inflect-perl_1.892-1.dsc
 ae3a39190435025291534bd972988024ae9b1b5dd7fca4e6732a4efe9798df55 45522 
liblingua-en-inflect-perl_1.892.orig.tar.gz
 b84a9561b93fb9fdca39ee17d4917106231f9d767ec3408f3f04188294e352c9 2528 
liblingua-en-inflect-perl_1.892-1.diff.gz
 5de0a1ea84aa0e1e9fa508eea18a02a5a12aef7aea7e1e0f946902ae0a1b5448 52014 
liblingua-en-inflect-perl_1.892-1_all.deb
Files: 
 66bf942991c9b936879cfdf45e2fff2e 1463 perl optional 
liblingua-en-inflect-perl_1.892-1.dsc
 f31095e39fffba972273ec895de6e3ec 45522 perl optional 
liblingua-en-inflect-perl_1.892.orig.tar.gz
 711cb2d4c3b5fa0fea7808a71b3ac859 2528 perl optional 
liblingua-en-inflect-perl_1.892-1.diff.gz
 8b60043b4ff0b2e0be3662bfd040bdc6 52014 perl optional 
liblingua-en-inflect-perl_1.892-1_all.deb

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

iEYEAREDAAYFAkwyXrgACgkQOKCtW8rKsRiP3ACcCRSoM+DHPnw3KeOZYx0R1LhA
NqwAnjWfZoJVECWpbphpgBoQGbdSVif6
=w4a/
-END PGP SIGNATURE-


Accepted:
liblingua-en-inflect-perl_1.892-1.diff.gz
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.892-1.diff.gz
liblingua-en-inflect-perl_1.892-1.dsc
  to main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.892-1.dsc
liblingua-en-inflect-perl_1.892-1_all.deb
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.892-1_all.deb
liblingua-en-inflect-perl_1.892.orig.tar.gz
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.892.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ovura-0003fo...@franck.debian.org



Accepted xscreensaver 5.10-7 (source i386)

2010-01-24 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 24 Jan 2010 11:41:02 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra xscreensaver-screensaver-webcollage 
xscreensaver-screensaver-bsod
Architecture: source i386
Version: 5.10-7
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-screensaver-bsod - BSOD hack from XScreenSaver
 xscreensaver-screensaver-webcollage - Webcollage hack from XScreenSaver
Closes: 559693
Changes: 
 xscreensaver (5.10-7) unstable; urgency=low
 .
   * Removed libxxf86misc{*} from Build-Depends (Closes: #559693)
Checksums-Sha1: 
 1aaeab5778fd7fbde6e5f7fcf2b1f7072ea6da5d 1796 xscreensaver_5.10-7.dsc
 f27bac4be4c85eb2e85a6057f25a4e131288bc5b 74218 xscreensaver_5.10-7.diff.gz
 2fad4cd34ad0c6501f8628f1c971be42d5ddfe33 734482 xscreensaver_5.10-7_i386.deb
 ba82da5d926387b3b812aa0537acb9360b24dcdd 478886 
xscreensaver-data_5.10-7_i386.deb
 ecca0e14a95d8ca46d81bbf3dc5ab0d5dbeaa2e0 2370144 
xscreensaver-data-extra_5.10-7_i386.deb
 f2f15f7cc46c09ea5edc808da24da97a9831ac7f 2011820 
xscreensaver-gl_5.10-7_i386.deb
 fa78d325a10c77def4e16174306ec4197228fb0a 2127582 
xscreensaver-gl-extra_5.10-7_i386.deb
 bcbf58778bc31201b9e32c5f589a93b300113d81 63302 
xscreensaver-screensaver-webcollage_5.10-7_i386.deb
 684ceb0a721c0950b08ce7ad5f0d3882111ab8ab 161466 
xscreensaver-screensaver-bsod_5.10-7_i386.deb
Checksums-Sha256: 
 cd48d44c7cd51c5ca3e2aa1aceabc5a3a1f8ee1e23fd3059f7bfbccc7fd50d16 1796 
xscreensaver_5.10-7.dsc
 27fdf5bb3d42f72dc4a1d4325c844946853d13caf6bc6c73ebb92db34dd5982d 74218 
xscreensaver_5.10-7.diff.gz
 20ebef4e4bb14c41ccca1c45b8f5f72318f1acc743e5b35cfd574615d289a39d 734482 
xscreensaver_5.10-7_i386.deb
 3286ce2ded8d1ceb4ffe513b133d94bbcddfea7ee2eaead484021754155ad315 478886 
xscreensaver-data_5.10-7_i386.deb
 f75956aa5cfcdc7aa1effa2905aca167fae4da7b057c4715612766270de34c3c 2370144 
xscreensaver-data-extra_5.10-7_i386.deb
 e553ca5220782f2e38f60524b1c724118d0f342e86e0353a6aa8e34ae9b9279b 2011820 
xscreensaver-gl_5.10-7_i386.deb
 12e321806a52e9507a1cb9a479c2f1b486c4a83574f72d625350ba5627727b67 2127582 
xscreensaver-gl-extra_5.10-7_i386.deb
 bb3fd303696623f54ff4c95e0e1fdf358a888f8a62b6f5c30de33f26f677ac75 63302 
xscreensaver-screensaver-webcollage_5.10-7_i386.deb
 28d10aaea77cfd77a9681adce5d1c8902a1b209a42653c867369c3d4ca4d04e3 161466 
xscreensaver-screensaver-bsod_5.10-7_i386.deb
Files: 
 137c0ae18efa037f5ba7d9fd144e1e1a 1796 x11 optional xscreensaver_5.10-7.dsc
 16b50bf5038d72b73f2e8ac54adff280 74218 x11 optional xscreensaver_5.10-7.diff.gz
 27c0492b6f0542b370127681da980260 734482 x11 optional 
xscreensaver_5.10-7_i386.deb
 7fde96b0e8b6f25c1d94418f4e996e0b 478886 x11 optional 
xscreensaver-data_5.10-7_i386.deb
 efdde63729ee5afb8d55c90135786f52 2370144 x11 optional 
xscreensaver-data-extra_5.10-7_i386.deb
 ca85c123a5de05cbfd9084c5cef53310 2011820 x11 optional 
xscreensaver-gl_5.10-7_i386.deb
 99f5f923e3843f81c89130f04b9c3275 2127582 x11 optional 
xscreensaver-gl-extra_5.10-7_i386.deb
 9f517eda58b665a218aad10016280d36 63302 x11 optional 
xscreensaver-screensaver-webcollage_5.10-7_i386.deb
 2ef62673ac2a67394b56f59188e42475 161466 x11 optional 
xscreensaver-screensaver-bsod_5.10-7_i386.deb

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

iEYEAREDAAYFAktcrDcACgkQOKCtW8rKsRhD+QCg0rRndh7sWFof8K7KcanZVDlj
Q8sAoJmVQJcW54ut5DCbuBg3Yqb58XxV
=F2kx
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-data-extra_5.10-7_i386.deb
xscreensaver-data_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-data_5.10-7_i386.deb
xscreensaver-gl-extra_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-gl-extra_5.10-7_i386.deb
xscreensaver-gl_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-gl_5.10-7_i386.deb
xscreensaver-screensaver-bsod_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-bsod_5.10-7_i386.deb
xscreensaver-screensaver-webcollage_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-webcollage_5.10-7_i386.deb
xscreensaver_5.10-7.diff.gz
  to main/x/xscreensaver/xscreensaver_5.10-7.diff.gz
xscreensaver_5.10-7.dsc
  to main/x/xscreensaver/xscreensaver_5.10-7.dsc
xscreensaver_5.10-7_i386.deb
  to main/x/xscreensaver/xscreensaver_5.10-7_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xscreensaver 5.10-6 (source i386)

2010-01-11 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 11 Jan 2010 18:17:34 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra xscreensaver-screensaver-webcollage 
xscreensaver-screensaver-bsod
Architecture: source i386
Version: 5.10-6
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-screensaver-bsod - BSOD hack from XScreenSaver
 xscreensaver-screensaver-webcollage - Webcollage hack from XScreenSaver
Closes: 357297
Changes: 
 xscreensaver (5.10-6) unstable; urgency=low
 .
   * Removing autostart from xdg, is now on /usr/share so user can copy it if
   wants autostart. (Closes: #357297)
Checksums-Sha1: 
 ceae610b3d64bc25656042127ab0f373d7ec2334 1814 xscreensaver_5.10-6.dsc
 a78707e158524d49b837f03511871aeb51cb0b44 74181 xscreensaver_5.10-6.diff.gz
 bbd4c71aaccd0130e5a5fdb05be31875ff5cf404 734738 xscreensaver_5.10-6_i386.deb
 a3109fc95ad735389960497f4330065934387112 478850 
xscreensaver-data_5.10-6_i386.deb
 a5ad1e2111f5448f30ed08db6d9c3b6ca1aed3c8 2370158 
xscreensaver-data-extra_5.10-6_i386.deb
 41b43b7d031052604cbab6e4e32a09f6967db0ba 2011746 
xscreensaver-gl_5.10-6_i386.deb
 d727a4f1132d826b3d68cff10b27610b31c85304 2127580 
xscreensaver-gl-extra_5.10-6_i386.deb
 c02db009ebcd6a26e089193c47e8a9b07d06a583 63272 
xscreensaver-screensaver-webcollage_5.10-6_i386.deb
 32203f8b7dba71316b6cde1659a26b211c9e86d2 161450 
xscreensaver-screensaver-bsod_5.10-6_i386.deb
Checksums-Sha256: 
 47c8a5b180e2169af914780e2a873593e78cc7e710399c61ff2a05e5ab27c614 1814 
xscreensaver_5.10-6.dsc
 e9dd6b3b827585f12d8b7f16becee3c638a2b3a9b4588b492c064356657c6d60 74181 
xscreensaver_5.10-6.diff.gz
 c4f7c4c20be19b891c340bfdf4c2ad074feb1c86dad248745b23fc936e592505 734738 
xscreensaver_5.10-6_i386.deb
 8dee1ea8c8218b6afd743b2113c4a9664b69e09fdfc1aa7445cfba5a289e5475 478850 
xscreensaver-data_5.10-6_i386.deb
 1a3164031d03f67b8a417d2badde73f0a82c442a22b2cfd4cfaa2f636f2adffe 2370158 
xscreensaver-data-extra_5.10-6_i386.deb
 1f28853608605bd37dac037bb226b87be7d8408d5a3f944cd9955c19884c9166 2011746 
xscreensaver-gl_5.10-6_i386.deb
 8e3c81613de45cb5e9bd01b072ad00806802992814efacdd3d279dce657568a8 2127580 
xscreensaver-gl-extra_5.10-6_i386.deb
 d53add7dd93092d8d0882d28c5ff29cdec225ccdcae29913534caf58c95835f7 63272 
xscreensaver-screensaver-webcollage_5.10-6_i386.deb
 5313c45a2af876895d3e5bdab585afb6c3673ff31e5da3f7aeb2be0b003045fe 161450 
xscreensaver-screensaver-bsod_5.10-6_i386.deb
Files: 
 7188ff2806ffda8de374fa4e12426af4 1814 x11 optional xscreensaver_5.10-6.dsc
 6a58767e6907660a6fa9f86f2d5ef53d 74181 x11 optional xscreensaver_5.10-6.diff.gz
 73bbc9eea92629f409230dc90d259ba9 734738 x11 optional 
xscreensaver_5.10-6_i386.deb
 1025e67c56933ea18d2fe1aa8358da9b 478850 x11 optional 
xscreensaver-data_5.10-6_i386.deb
 80e62d7d435707ac6000fa17b1521e2d 2370158 x11 optional 
xscreensaver-data-extra_5.10-6_i386.deb
 0b196ac6d7bdb087719d3a1fcf506937 2011746 x11 optional 
xscreensaver-gl_5.10-6_i386.deb
 e3e0e2dcf273529fbcc875aa8fb75412 2127580 x11 optional 
xscreensaver-gl-extra_5.10-6_i386.deb
 102e308abec3c18defdf035c34c38264 63272 x11 optional 
xscreensaver-screensaver-webcollage_5.10-6_i386.deb
 0eb791ccf12ca4bff5eb26cbfc720642 161450 x11 optional 
xscreensaver-screensaver-bsod_5.10-6_i386.deb

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

iEYEAREDAAYFAktLy7sACgkQOKCtW8rKsRhfAwCfXVjv7aXXvkAqIgXgebLXgUuy
MRwAnRYKd7KQ8O37WGemgcBUuXMTFRzk
=wN43
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-data-extra_5.10-6_i386.deb
xscreensaver-data_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-data_5.10-6_i386.deb
xscreensaver-gl-extra_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-gl-extra_5.10-6_i386.deb
xscreensaver-gl_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-gl_5.10-6_i386.deb
xscreensaver-screensaver-bsod_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-bsod_5.10-6_i386.deb
xscreensaver-screensaver-webcollage_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-webcollage_5.10-6_i386.deb
xscreensaver_5.10-6.diff.gz
  to main/x/xscreensaver/xscreensaver_5.10-6.diff.gz
xscreensaver_5.10-6.dsc
  to main/x/xscreensaver/xscreensaver_5.10-6.dsc
xscreensaver_5.10-6_i386.deb
  to main/x/xscreensaver/xscreensaver_5.10-6_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xscreensaver 5.10-4 (source i386)

2009-12-04 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 08 Nov 2009 09:27:00 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra xscreensaver-screensaver-webcollage 
xscreensaver-screensaver-bsod
Architecture: source i386
Version: 5.10-4
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-screensaver-bsod - BSOD hack from XScreenSaver
 xscreensaver-screensaver-webcollage - Webcollage hack from XScreenSaver
Closes: 550201 553529
Changes: 
 xscreensaver (5.10-4) unstable; urgency=low
 .
   * Removing Xsession hook (Closes: #550201)
   * Split hacks bsod and webcollage on independent packages
   (Closes: #553529)
Checksums-Sha1: 
 ec5301fd33becea8c0cde22c6a507b7f775c9bf9 1814 xscreensaver_5.10-4.dsc
 d9fb45f69639e28df41f49f3010fcec3f0eb9ba4 73822 xscreensaver_5.10-4.diff.gz
 632c296b262dac0a305c939ec39493bb6a1072bc 734850 xscreensaver_5.10-4_i386.deb
 038b0130aede8ca660fa1c7963dcdfba9ed26feb 485578 
xscreensaver-data_5.10-4_i386.deb
 1c017e6996b821d9ef953ae750fc5ef3b753248b 2390112 
xscreensaver-data-extra_5.10-4_i386.deb
 06503c2ec695fddb108e15f5a9c96e0ee1fd3268 2024468 
xscreensaver-gl_5.10-4_i386.deb
 1bb30dd8bc19b7494cad9ca9f34e45aff6c7327a 2128946 
xscreensaver-gl-extra_5.10-4_i386.deb
 9c56663536e3ba94f98f59eb1b28f4e83a6a9989 62926 
xscreensaver-screensaver-webcollage_5.10-4_i386.deb
 d18618fb5da3d84400624463432c000802192c86 160566 
xscreensaver-screensaver-bsod_5.10-4_i386.deb
Checksums-Sha256: 
 97f89ca4c6a5f0f3466f492ff0b3f59f3f83d68c3e6e4e6ae7162005227c0e33 1814 
xscreensaver_5.10-4.dsc
 00cb1864676acfcad8d315e58b1d718b11d159b51969b7fe688f37f50696d8b9 73822 
xscreensaver_5.10-4.diff.gz
 ad61b0dc268267b976830ae75f9994497d214c439dc4b63b8b83272cf0648787 734850 
xscreensaver_5.10-4_i386.deb
 856976bd902c788f46df15a95c5f81c87ca039403470cdba633c0928a7c2d309 485578 
xscreensaver-data_5.10-4_i386.deb
 5da3c675a35b1060756161ce9a8088ad4cc0f020a64d3e180d95bf6f202b0d11 2390112 
xscreensaver-data-extra_5.10-4_i386.deb
 e83ab20bf3be6a46be85f7c7343242c9b16c50f61e80ec8cb62d649bfbe1125e 2024468 
xscreensaver-gl_5.10-4_i386.deb
 e0b0974a8d8f26b90784c790a8f60bec23e978f25a422c828274ec39581627ea 2128946 
xscreensaver-gl-extra_5.10-4_i386.deb
 9c3f926a470168d22bac659e34b8c480fb2a1047dac3e11e4190a9d14b780b65 62926 
xscreensaver-screensaver-webcollage_5.10-4_i386.deb
 8e021f889a9a0dbaf40c657e0b5c95c3260cbef8a7c724ecf749e2e16ebef0a1 160566 
xscreensaver-screensaver-bsod_5.10-4_i386.deb
Files: 
 cfadffdd98880b61532d65df4afbb0b2 1814 x11 optional xscreensaver_5.10-4.dsc
 aec0bcc15103a01aefe34b434643a69b 73822 x11 optional xscreensaver_5.10-4.diff.gz
 e50bd3a23995ec07a2af93f07223648f 734850 x11 optional 
xscreensaver_5.10-4_i386.deb
 8bcbe97ee2e9bbdc98157fd4fcb6f549 485578 x11 optional 
xscreensaver-data_5.10-4_i386.deb
 39240172dce569ca973c8f68f0a36821 2390112 x11 optional 
xscreensaver-data-extra_5.10-4_i386.deb
 adfdbccee94d7388142f60d7d1b3255b 2024468 x11 optional 
xscreensaver-gl_5.10-4_i386.deb
 057dff21c6d117a60b187b2cf612d20c 2128946 x11 optional 
xscreensaver-gl-extra_5.10-4_i386.deb
 2a8f400fe82489835ad3c765401d5125 62926 x11 optional 
xscreensaver-screensaver-webcollage_5.10-4_i386.deb
 c780aa9d2b1bafc471ce3e801b9b044b 160566 x11 optional 
xscreensaver-screensaver-bsod_5.10-4_i386.deb

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

iEYEAREDAAYFAksVp5cACgkQOKCtW8rKsRifaACfZbFVCrEP4XZLg9jVXicAU+y9
1EwAniuPn9ahSF4y2CdZ03Lulu8Hp+0N
=otGZ
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-data-extra_5.10-4_i386.deb
xscreensaver-data_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-data_5.10-4_i386.deb
xscreensaver-gl-extra_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-gl-extra_5.10-4_i386.deb
xscreensaver-gl_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-gl_5.10-4_i386.deb
xscreensaver-screensaver-bsod_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-bsod_5.10-4_i386.deb
xscreensaver-screensaver-webcollage_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-webcollage_5.10-4_i386.deb
xscreensaver_5.10-4.diff.gz
  to main/x/xscreensaver/xscreensaver_5.10-4.diff.gz
xscreensaver_5.10-4.dsc
  to main/x/xscreensaver/xscreensaver_5.10-4.dsc
xscreensaver_5.10-4_i386.deb
  to main/x/xscreensaver/xscreensaver_5.10-4_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libppix-regexp-perl 0.002-1 (source all)

2009-11-18 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 02 Nov 2009 21:40:14 -0430
Source: libppix-regexp-perl
Binary: libppix-regexp-perl
Architecture: source all
Version: 0.002-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 libppix-regexp-perl - Perl module to parse regular expressions
Closes: 552187
Changes: 
 libppix-regexp-perl (0.002-1) unstable; urgency=low
 .
   [ Jonathan Yu ]
   * Initial Release (Closes: #552187)
 .
   [ Jose Luis Rivas ]
   * New upstream release
Checksums-Sha1: 
 524fd7a346ab515d4bbcc45156cd7a7e72adc928 1462 libppix-regexp-perl_0.002-1.dsc
 3c6059f59e4db3e8c836b494bf69914315f5039c 108508 
libppix-regexp-perl_0.002.orig.tar.gz
 62d8b13537991d5170d5056a3507a5c53fa242cc 1307 
libppix-regexp-perl_0.002-1.diff.gz
 807745d8fb6924cd0d52274d6bd089e697a8c260 212228 
libppix-regexp-perl_0.002-1_all.deb
Checksums-Sha256: 
 aa96c5c3a63d613bf00819d9a058ed76de21dc6c0ff44ae5ecf7054cfa34a0fa 1462 
libppix-regexp-perl_0.002-1.dsc
 9775deafcfb0fafc75e5720d58fc4a73f12c9c4b983d8cd635ccafc6e4efce71 108508 
libppix-regexp-perl_0.002.orig.tar.gz
 4deba78155f3867dbb013b95288d84ab83ac73ded8adc4289acc324994641ffa 1307 
libppix-regexp-perl_0.002-1.diff.gz
 f4c814fc7bd8b285e184f2f6b201267bb4f205ca913d93dd1ae22500c33d0437 212228 
libppix-regexp-perl_0.002-1_all.deb
Files: 
 8c7482c7967c02738b3b0577c42b7688 1462 perl optional 
libppix-regexp-perl_0.002-1.dsc
 4a5c883c27fb5da709a8fe3ee8e287d0 108508 perl optional 
libppix-regexp-perl_0.002.orig.tar.gz
 c64baee6a458bdb2cb052e0683678ff0 1307 perl optional 
libppix-regexp-perl_0.002-1.diff.gz
 92229162b30a78ef01a945f8c30f193a 212228 perl optional 
libppix-regexp-perl_0.002-1_all.deb

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

iEYEAREDAAYFAkrvkqIACgkQOKCtW8rKsRgUxwCg0QJ6jRhRfkX9QtGzEvEVioq+
WCYAoIBWfBGhdLhb7rkKL5iFK6rHkxqs
=4RAe
-END PGP SIGNATURE-


Accepted:
libppix-regexp-perl_0.002-1.diff.gz
  to main/libp/libppix-regexp-perl/libppix-regexp-perl_0.002-1.diff.gz
libppix-regexp-perl_0.002-1.dsc
  to main/libp/libppix-regexp-perl/libppix-regexp-perl_0.002-1.dsc
libppix-regexp-perl_0.002-1_all.deb
  to main/libp/libppix-regexp-perl/libppix-regexp-perl_0.002-1_all.deb
libppix-regexp-perl_0.002.orig.tar.gz
  to main/libp/libppix-regexp-perl/libppix-regexp-perl_0.002.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libmouse-perl 0.40-1 (source all)

2009-10-20 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Tue, 20 Oct 2009 16:02:03 -0430
Source: libmouse-perl
Binary: libmouse-perl
Architecture: source all
Version: 0.40-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 libmouse-perl - lightweight object framework for Perl
Changes: 
 libmouse-perl (0.40-1) unstable; urgency=low
 .
   * New upstream release
   * Updating my email on debian/copyright
Checksums-Sha1: 
 83c508fccdc9c8e1b65359fd0858695e4b639c0e 1817 libmouse-perl_0.40-1.dsc
 d41373ac10ee1914f21aefaf1636e80e9c8bf7fe 148001 libmouse-perl_0.40.orig.tar.gz
 7d2b6f2572960a113a7c149e493004dc89c0a851 2862 libmouse-perl_0.40-1.diff.gz
 72ae45e184899f8d8cb45cdf0bc4eb8de21cd071 120358 libmouse-perl_0.40-1_all.deb
Checksums-Sha256: 
 0bc5172d447a1ac0a47a59aa123f7c6b645640e21a94defe4758bdbb3bd305c0 1817 
libmouse-perl_0.40-1.dsc
 5bf1f9f56c122b2d27f0c2e437759b6bb19428898dbdf556cc96314720990407 148001 
libmouse-perl_0.40.orig.tar.gz
 5123ca88467f164fb94569eff04c8d6b0021521a5aafbe51d042eb31fc4f2f7c 2862 
libmouse-perl_0.40-1.diff.gz
 f81755e5a05eb5cdc71d0617d8605fe890675e0c71df7a7a2914379eeb870239 120358 
libmouse-perl_0.40-1_all.deb
Files: 
 30cb5abf7ceff0162e4de33f484bc5e7 1817 perl optional libmouse-perl_0.40-1.dsc
 396c362e79bf863a2465b69ee4bf34e7 148001 perl optional 
libmouse-perl_0.40.orig.tar.gz
 0fc63864564d5203e281ccd720d12277 2862 perl optional 
libmouse-perl_0.40-1.diff.gz
 8e4a39741896a968168e75f66173a4d5 120358 perl optional 
libmouse-perl_0.40-1_all.deb

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

iEYEAREDAAYFAkreHtQACgkQOKCtW8rKsRgoRQCfV4g2FS5YT2BsffTzLzcMKIh3
UKgAn3dVPZSnGbd7R7YQHbBOgLKUxLGP
=2Vpg
-END PGP SIGNATURE-


Accepted:
libmouse-perl_0.40-1.diff.gz
  to pool/main/libm/libmouse-perl/libmouse-perl_0.40-1.diff.gz
libmouse-perl_0.40-1.dsc
  to pool/main/libm/libmouse-perl/libmouse-perl_0.40-1.dsc
libmouse-perl_0.40-1_all.deb
  to pool/main/libm/libmouse-perl/libmouse-perl_0.40-1_all.deb
libmouse-perl_0.40.orig.tar.gz
  to pool/main/libm/libmouse-perl/libmouse-perl_0.40.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libnet-smpp-perl 1.12-1 (source all)

2009-10-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 03 Oct 2009 15:37:25 -0430
Source: libnet-smpp-perl
Binary: libnet-smpp-perl
Architecture: source all
Version: 1.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 libnet-smpp-perl - Implementation of Short Message Peer to Peer protocol over 
TCP
Closes: 329638 470585
Changes: 
 libnet-smpp-perl (1.12-1) unstable; urgency=low
 .
   * New upstream release (Closes: #329638)
   * Added debian/watch file.
   * Added debian/libnet-smpp-perl.{docs,examples}
   * Upgraded debian/rules to dh7 and upgraded dependencies on debhelper as
 well as debian/compat and added override on debian/rules to remove *.pl
 scripts that are examples.
   * Updated debian/copyright.
   * Added Debian Perl Group as Maintainer and added me as uploader. (Closes:
 #470585)
   * Bumped Standards-Version to 3.8.3, thus removed versioned dependency on
 perl = 5.6.0-16.
   * Removed name of the package on short-description and update
 long-description.
   * Add debian/README.source to document quilt usage, as required by
 Debian Policy since 3.8.0.
   * Added quilt and patches to fix bad path to perl on some scripts.
   * Added Vcs-* and Homepage fields on debian/control.
Checksums-Sha1: 
 05f94edb5038512bab10fc5baaea315ea5368c56 1306 libnet-smpp-perl_1.12-1.dsc
 2f22c4f417494379123edb73b37761813419a2a1 48686 
libnet-smpp-perl_1.12.orig.tar.gz
 319ef740eb6cd11ca5a553365f3cd7ee355f2dbd 2333 libnet-smpp-perl_1.12-1.diff.gz
 59e17ff1e0bace577e0ab3fc247443cf4c13ca53 59004 libnet-smpp-perl_1.12-1_all.deb
Checksums-Sha256: 
 7e3d059651e52915a86555fa243d2c921dd83db673dbdd76a1c55b11a5c1fbe7 1306 
libnet-smpp-perl_1.12-1.dsc
 f90c05a05a7b96ac18c16d3f65674d0fdec109d6a07fc089980cf342978d1720 48686 
libnet-smpp-perl_1.12.orig.tar.gz
 306d9978be83d2f12b8b3c86f3374ffbd96889d56be6ac1ec9a826e07736bd08 2333 
libnet-smpp-perl_1.12-1.diff.gz
 3c7f576117c519470b2fc657538df9994f3d3e95d9199c6efe0ef24fd0f9a055 59004 
libnet-smpp-perl_1.12-1_all.deb
Files: 
 031e54baa50828e2d3c235ec3898b0d4 1306 perl optional libnet-smpp-perl_1.12-1.dsc
 6bffbbe840d91a95543d46d52cfd4691 48686 perl optional 
libnet-smpp-perl_1.12.orig.tar.gz
 35bbe0e959ded04ef1f80536e556ff75 2333 perl optional 
libnet-smpp-perl_1.12-1.diff.gz
 c9e9d9875b6d3f180fa72321c7b79af5 59004 perl optional 
libnet-smpp-perl_1.12-1_all.deb

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

iEYEAREDAAYFAkrHsEoACgkQOKCtW8rKsRhJsACg0b1u5iutLtw66KDFHd8LObD4
dRMAnjO8UWW0e7wpwP7OKqQtCfyRi+wP
=ptb8
-END PGP SIGNATURE-


Accepted:
libnet-smpp-perl_1.12-1.diff.gz
  to pool/main/libn/libnet-smpp-perl/libnet-smpp-perl_1.12-1.diff.gz
libnet-smpp-perl_1.12-1.dsc
  to pool/main/libn/libnet-smpp-perl/libnet-smpp-perl_1.12-1.dsc
libnet-smpp-perl_1.12-1_all.deb
  to pool/main/libn/libnet-smpp-perl/libnet-smpp-perl_1.12-1_all.deb
libnet-smpp-perl_1.12.orig.tar.gz
  to pool/main/libn/libnet-smpp-perl/libnet-smpp-perl_1.12.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libaudio-mpd-perl 0.19.7-1 (source all)

2009-10-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 04 Oct 2009 00:29:40 -0430
Source: libaudio-mpd-perl
Binary: libaudio-mpd-perl
Architecture: source all
Version: 0.19.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 libaudio-mpd-perl - Perl module to communicate with MPD servers from perl
Changes: 
 libaudio-mpd-perl (0.19.7-1) unstable; urgency=low
 .
   * New upstream release
   * Removed patch, applied from upstream. Removed quilt and updated
 debian/rules.
   * Added me as maintainer.
Checksums-Sha1: 
 ca4b1661b8cde4cc6a168a0cf31726a8384f22f5 1597 libaudio-mpd-perl_0.19.7-1.dsc
 1aa4804af8c113867eb35ed1020e16a88d68ee24 52893 
libaudio-mpd-perl_0.19.7.orig.tar.gz
 498b14e0addc688553f0bb412c57e3ae5e99a134 2877 
libaudio-mpd-perl_0.19.7-1.diff.gz
 fb1d128a3e78211f67acf0cb55658206e15a5a90 44016 
libaudio-mpd-perl_0.19.7-1_all.deb
Checksums-Sha256: 
 a064f73f4fd7169d45e23979a845086b53f795f402d25958b7b08434b2afad78 1597 
libaudio-mpd-perl_0.19.7-1.dsc
 6f469b0444145cd4274809e0ea7eebf25613bf1286a4d1b795303abf55f0fcff 52893 
libaudio-mpd-perl_0.19.7.orig.tar.gz
 5a02f9947838fa4ece8ba42fa2d23a0ca308f0f9ee177922c675a3628a7f96b9 2877 
libaudio-mpd-perl_0.19.7-1.diff.gz
 6a48030fc3c420ff5646e81dd8a557c4e6a4f8e63d7f4434fcb053d888ea4eb8 44016 
libaudio-mpd-perl_0.19.7-1_all.deb
Files: 
 cdabfc5aff920cb0246da0a1c2cccf08 1597 perl optional 
libaudio-mpd-perl_0.19.7-1.dsc
 85c412f96ae7b89b54dc4550bf7042e7 52893 perl optional 
libaudio-mpd-perl_0.19.7.orig.tar.gz
 13b340429e73f9f3785199e90f482165 2877 perl optional 
libaudio-mpd-perl_0.19.7-1.diff.gz
 73f02b5b99582ec825272179470fd592 44016 perl optional 
libaudio-mpd-perl_0.19.7-1_all.deb

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

iEYEAREDAAYFAkrILAQACgkQOKCtW8rKsRjF+ACeK33VYXFNh4nYrq0f2TVhZZGp
+goAoKAycLc4jkBK3yF9J9kFv64z0HFt
=EZPP
-END PGP SIGNATURE-


Accepted:
libaudio-mpd-perl_0.19.7-1.diff.gz
  to pool/main/liba/libaudio-mpd-perl/libaudio-mpd-perl_0.19.7-1.diff.gz
libaudio-mpd-perl_0.19.7-1.dsc
  to pool/main/liba/libaudio-mpd-perl/libaudio-mpd-perl_0.19.7-1.dsc
libaudio-mpd-perl_0.19.7-1_all.deb
  to pool/main/liba/libaudio-mpd-perl/libaudio-mpd-perl_0.19.7-1_all.deb
libaudio-mpd-perl_0.19.7.orig.tar.gz
  to pool/main/liba/libaudio-mpd-perl/libaudio-mpd-perl_0.19.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xscreensaver 5.10-1 (source i386)

2009-09-25 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 23 Sep 2009 20:47:27 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra
Architecture: source i386
Version: 5.10-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
Changes: 
 xscreensaver (5.10-1) unstable; urgency=low
 .
   [ Tormod Volden ]
   [Tormod Volden]
   * New Upstream Version
   * Drop patch applied upstream:
 - 12_upstream_fix_typo_in_de.po.patch
   * Removed hyperball and hypercube hacks, retired upstream
   * debian/rules: Drop workaround for missing autoconf 2.64 support,
 fixed upstream
 .
   [ Jose Luis Rivas]
   * Updated Standards-Version to 3.8.3 wo/ any changes needed.
   * Created debian/README.source.
   * Added patch 20_hack_flurry_man_name for NAME section of manpage for flurry
 hack.
   * Changed my email from ghostba...@gmail.com to ghost...@debian.org on
 Maintainer field.
   * Acknoledging nmu for 5.07.
Checksums-Sha1: 
 50d5aad730253fbceb45e80eea6b2d264b40937c 1746 xscreensaver_5.10-1.dsc
 e0a838a8020f178fcf46a49c949d56e67b5d88bf 5576745 xscreensaver_5.10.orig.tar.gz
 d6e95fa259c84c654abef5fe0df4d6f9670a82da 72943 xscreensaver_5.10-1.diff.gz
 fe952ce55a276634fb23540ded91e870c296c43a 730826 xscreensaver_5.10-1_i386.deb
 e4355c1f294be3ac1a45953e1642155f0ceb2d48 530600 
xscreensaver-data_5.10-1_i386.deb
 d636c55c1f01c8382dae168565c1805251d5729f 2577680 
xscreensaver-data-extra_5.10-1_i386.deb
 58e6c8745576eb35946a97f1f95abacfafe2b968 1982216 
xscreensaver-gl_5.10-1_i386.deb
 fe4fec4752d5e66852d63c3908150cee209b9f0c 2125436 
xscreensaver-gl-extra_5.10-1_i386.deb
Checksums-Sha256: 
 26da1362e1928abe0126c898c2ff95e781bc0dcf6e3099c2f460c6691fb901cf 1746 
xscreensaver_5.10-1.dsc
 4aa216caa2b9556db9652558eb84ab33690f6f14475036e2bf22c23b7c79e61f 5576745 
xscreensaver_5.10.orig.tar.gz
 f91dc60bdb30fe231344e02b59d7e1b9cf2256a8a9255860dc889100525c5c35 72943 
xscreensaver_5.10-1.diff.gz
 2fb97aed65080f268acfef9f139bbead67fb1196be19e094234f41050f9173a8 730826 
xscreensaver_5.10-1_i386.deb
 e72c5190996380a788f6b7c1c7115b25e8b3b38a467c1a6ebe1bd75693ec08b8 530600 
xscreensaver-data_5.10-1_i386.deb
 038f927a57250b0e17fb03e9dbd810f6cfc71c35c334e71ecefdb600e036d56c 2577680 
xscreensaver-data-extra_5.10-1_i386.deb
 9737da23575e4f1632c035854f443faa2cf5cfaa707b4b819e3c812641c888f8 1982216 
xscreensaver-gl_5.10-1_i386.deb
 009418f7b016009801826a8b4aae1e18971541b4f43fbbeb0282856e1413b341 2125436 
xscreensaver-gl-extra_5.10-1_i386.deb
Files: 
 d9a6595d423cc3e3fc2c018ea059566a 1746 x11 optional xscreensaver_5.10-1.dsc
 adcf0a2f156c8bdeec917356d0013acc 5576745 x11 optional 
xscreensaver_5.10.orig.tar.gz
 0e97c0ccbb3adc31adc57cd8aba2e7a7 72943 x11 optional xscreensaver_5.10-1.diff.gz
 ee9ab79689292e51374e4b3cfa0cd818 730826 x11 optional 
xscreensaver_5.10-1_i386.deb
 3feda1c8880a2ca78ebca6972435a10d 530600 x11 optional 
xscreensaver-data_5.10-1_i386.deb
 617c984bb5f4ec24c939d0a57b253d6c 2577680 x11 optional 
xscreensaver-data-extra_5.10-1_i386.deb
 3fcf675b752c7403a99d6b8535950b31 1982216 x11 optional 
xscreensaver-gl_5.10-1_i386.deb
 2b94eac9a6e5f27079b440cc60f89185 2125436 x11 optional 
xscreensaver-gl-extra_5.10-1_i386.deb

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

iEYEAREDAAYFAkq7IYgACgkQOKCtW8rKsRiM6QCfaAz9qsDr0qNFFOXMgbdnyJo3
D0YAoIBq0Sl+QYTYbG7xj0p+McY3AGJz
=EpSB
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.10-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-data-extra_5.10-1_i386.deb
xscreensaver-data_5.10-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-data_5.10-1_i386.deb
xscreensaver-gl-extra_5.10-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-gl-extra_5.10-1_i386.deb
xscreensaver-gl_5.10-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-gl_5.10-1_i386.deb
xscreensaver_5.10-1.diff.gz
  to pool/main/x/xscreensaver/xscreensaver_5.10-1.diff.gz
xscreensaver_5.10-1.dsc
  to pool/main/x/xscreensaver/xscreensaver_5.10-1.dsc
xscreensaver_5.10-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver_5.10-1_i386.deb
xscreensaver_5.10.orig.tar.gz
  to pool/main/x/xscreensaver/xscreensaver_5.10.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xscreensaver 5.10-2 (source i386)

2009-09-25 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Fri, 25 Sep 2009 16:52:44 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra
Architecture: source i386
Version: 5.10-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
Closes: 314553 357297 481749 486603 495633 504424 505379 539699 539937 544352 
544837
Changes: 
 xscreensaver (5.10-2) unstable; urgency=low
 .
   * Updated my email on debian/copyright.
   * Added README.hacking to debian/xscreensaver.docs (Closes: #544352).
   * Included a hook for Xsession thanks to Y Giridhar Appaji Nag
   deb...@appaji.net (Closes: #357297).
   * Fixed the changelog.
 .
 xscreensaver (5.10-1) unstable; urgency=low
 .
   [ Tormod Volden ]
   * Drop patch applied upstream:
 - 12_upstream_fix_typo_in_de.po.patch
   * Removed hyperball and hypercube hacks, retired upstream
 .
   [ Jose Luis Rivas ]
   * Updated Standards-Version to 3.8.3 wo/ any changes needed.
   * Created debian/README.source.
   * Added patch 20_hack_flurry_man_name for NAME section of manpage for flurry
 hack.
   * Changed my email from ghostba...@gmail.com to ghost...@debian.org on
 Maintainer field.
   * Acknoledging nmu for 5.05.
 .
   [ Tormod Volden ]
   * New Upstream Version
 - Fixed intermittent failure in xscreensaver-command
   Thanks to contribution by James Vega (Closes: 486603)
 - Fixed another potential RANDR crash
   * Drop patches applied upstream:
 - 11_upstream_phosphor_segfault_win_size.patch
 - 63_upstream_blinkbox-man.patch
 - 64_upstream_topblock-man.patch
 - 65_upstream_eruption-man.patch
 - 66_upstream_truchet-man.patch
 - 67_upstream_metaballs-man.patch
 - 70_upstream_fix_local_screenlock_bypass.patch  (Closes: #539699)
   * Do not ship juggle any longer (merged with juggler3d)
   * Ship new hacks: rubikblocks and surfaces
   * 80_Makefile_in-clean-fix.patch: Workaround for make distclean
 failure in some situations, probably autoconf 2.64 issue
   * Ship the new photopile hack
   * Delete two unused patches (52_ and 60_) from source
   * Fix location of Norwegian Bokmål locale (no - nb)
   * Do not ship these hacks any longer (retired upstream):
   bubbles, critical, flag, forest, glforestfire, lmorph, laser,
   lightning, lisa, lissie, rotor, sphere, spiral, t3d, vines,
   whirlygig, worm, mismunch
   * 10_upstream_skip_retired_hacks.patch: Fix hacks/Makefile.in and
 hacks/glx/Makefile.in so that retired hacks are not built
   * debian/control: Update FSF address
   * Update to debhelper compat 7
   * Fix typo in package description (Closes: #504424)
   * Add missing hacks to package description (Closes: #481749)
   * debian/control: Breaks gnome-screensaver  2.26 since we are
 using full paths in the desktop files
   * Split debian/patches/20_hacks_Makefile.patch into new
 20_hacks_man_section.patch and 20_hacks_maze_xpm_libs.patch
   * debian/patches/20_skip_install-pam.patch:
 Do not run install-pam since we use dh_installpam
   * 11_upstream_phosphor_segfault_win_size.patch:
 phospor hack segfaults on window resize (Closes: #505379)
   * debian/split-hacks.{sh,config}: Configure which hacks go
 in which packages instead of manually editing *.files
 (Closes: #539937)
   * Refresh 50_driver_screensaver-properties-desktop.patch so that
 we do not change the .desktop file Category (Closes: #544837)
 .
   [ James Vega ]
   * debian/rules: Fix sequential build invokations
 .
   [ Jose Luis Rivas ]
   * debian/copyright: Major update (not 100% yet)
   * Move jigsaw from xscreensaver-data-extra.files to
 xscreensaver-gl-extra.files since it now is a glx hack
   * Screensavers that uses images now rotates according to EXIF data
 since this new upstream version (Closes: #314553)
   * Reinstate flurry on xscreensaver-gl-extra since crashes were not
 reproducible (Closes: #495633)
Checksums-Sha1: 
 b2e8f8197aa50491f3f389813694b65f522e5d0c 1746 xscreensaver_5.10-2.dsc
 e0a838a8020f178fcf46a49c949d56e67b5d88bf 5576745 xscreensaver_5.10.orig.tar.gz
 bee9d0a48f3fe3e87b18000a07bd47cad37062bc 72926 xscreensaver_5.10-2.diff.gz
 648718771f0e50ac4c7074d0a143f237f9a4f12f 733952 xscreensaver_5.10-2_i386.deb
 fc46e7d949050322f7b6505eae5bb489638a1bc6 530308 
xscreensaver-data_5.10-2_i386.deb
 1fa691d08b31ce62fb91d876fe36b3e726072c06 2577674 
xscreensaver-data-extra_5.10-2_i386.deb
 97f5416c6a0db9f2a362329d8be75eea58253dab 1982162 
xscreensaver-gl_5.10-2_i386.deb

Re: Quiero borrar un Bug ITP

2009-08-12 Thread Jose Luis Rivas
Simplemente usa cont...@b.d.o y desde ahí haz un retitle del bug
-Original Message-
From: Leinier Cruz Salfran salfra...@ipigto.rimed.cu

Date: Wed, 12 Aug 2009 05:30:08 
To: debian-devel-spanish@lists.debian.org
Subject: Quiero borrar un Bug ITP


Hola.

Hace algunos dias atras cree un Bug ITP #539568 .. Despues de algunas
pruebas, de leer las Reglas de Debian y otros correos en
'debian-mentors' quiero borrar ese Bug ITP viejo y crear otro con otro
nombre .. Como puedo hacerlo?

Gracias...



Re: Quiero borrar un Bug ITP

2009-08-12 Thread Jose Luis Rivas
No, simplemente vuelves a enviar la descripción. Igual eso es más protocolar. 
Donde debe ir realmente bien es en el debian/control, no te preocupes tanto pot 
lo que dice el itp
-Original Message-
From: Leinier Cruz Salfran salfra...@ipigto.rimed.cu

Date: Wed, 12 Aug 2009 05:53:36 
To: debian-devel-spanish@lists.debian.org
Subject: Re: Quiero borrar un Bug ITP


supuse que eso debia

si quiero cambiar la descripcion hago un 'merge'???



El mié, 12-08-2009 a las 21:52 +, Jose Luis Rivas escribió:
 Simplemente usa cont...@b.d.o y desde ahí haz un retitle del bug
 -Original Message-
 From: Leinier Cruz Salfran salfra...@ipigto.rimed.cu
 
 Date: Wed, 12 Aug 2009 05:30:08 
 To: debian-devel-spanish@lists.debian.org
 Subject: Quiero borrar un Bug ITP
 
 
 Hola.
 
 Hace algunos dias atras cree un Bug ITP #539568 .. Despues de algunas
 pruebas, de leer las Reglas de Debian y otros correos en
 'debian-mentors' quiero borrar ese Bug ITP viejo y crear otro con otro
 nombre .. Como puedo hacerlo?
 
 Gracias...
 



Accepted libhtml-template-pro-perl 0.76-1 (source i386)

2009-07-15 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 Jul 2009 12:25:11 -0430
Source: libhtml-template-pro-perl
Binary: libhtml-template-pro-perl
Architecture: source i386
Version: 0.76-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghostba...@gmail.com
Description: 
 libhtml-template-pro-perl - Perl/XS module to use HTML Templates from CGI 
scripts
Changes: 
 libhtml-template-pro-perl (0.76-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
 .
   [ gregor herrmann ]
   * Install the new TODO file.
Checksums-Sha1: 
 e8f2ab9f3849bd4a8311a479be3168665c42ae64 1533 
libhtml-template-pro-perl_0.76-1.dsc
 4b70040e9a2869a36ae0e40582bd49b90712d004 125809 
libhtml-template-pro-perl_0.76.orig.tar.gz
 03c8779a3e9e2c1b19aae7715700fa5ee4e40929 3317 
libhtml-template-pro-perl_0.76-1.diff.gz
 52d298ac561cd6c9a56e214722dc261860c78bc8 91906 
libhtml-template-pro-perl_0.76-1_i386.deb
Checksums-Sha256: 
 c16c432713f0a73f0b3458f716c9e6fb83757901060d1a84b33b2fe6ae1ef384 1533 
libhtml-template-pro-perl_0.76-1.dsc
 070066b0dd254fb6ddb27e94fd160f1cdcd8fbf6b24fbe968ddcb256a81bdebe 125809 
libhtml-template-pro-perl_0.76.orig.tar.gz
 79e19d23e15db9e714b40ba97544e4a2e681e8664b1d83ceeb71900b85d474e1 3317 
libhtml-template-pro-perl_0.76-1.diff.gz
 49207e245213e6f94c2c46d1c3ec2e99fe9523fa9a06336103ba7322f1603840 91906 
libhtml-template-pro-perl_0.76-1_i386.deb
Files: 
 583e1430a45b4e687d721baf1a0923a2 1533 perl optional 
libhtml-template-pro-perl_0.76-1.dsc
 9f9811d7b29b3b5ceebc6f89cff309e7 125809 perl optional 
libhtml-template-pro-perl_0.76.orig.tar.gz
 9785ced1f89efe5d36fb860f35e247b5 3317 perl optional 
libhtml-template-pro-perl_0.76-1.diff.gz
 3d7fa2e3055359e03f24fb46815294b3 91906 perl optional 
libhtml-template-pro-perl_0.76-1_i386.deb

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

iEYEARECAAYFAkpd/+YACgkQOzKYnQDzz+R6cQCg/koN0OLtoys3CdpwTh9bEXGL
X2wAnAyz5WUPkrIzknoYIIwbRTla+e+l
=LTGh
-END PGP SIGNATURE-


Accepted:
libhtml-template-pro-perl_0.76-1.diff.gz
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.76-1.diff.gz
libhtml-template-pro-perl_0.76-1.dsc
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.76-1.dsc
libhtml-template-pro-perl_0.76-1_i386.deb
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.76-1_i386.deb
libhtml-template-pro-perl_0.76.orig.tar.gz
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.76.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libhtml-template-pro-perl 0.75-1 (source i386)

2009-07-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 09 Jul 2009 15:31:43 -0430
Source: libhtml-template-pro-perl
Binary: libhtml-template-pro-perl
Architecture: source i386
Version: 0.75-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghostba...@gmail.com
Description: 
 libhtml-template-pro-perl - Perl/XS module to use HTML Templates from CGI 
scripts
Changes: 
 libhtml-template-pro-perl (0.75-1) unstable; urgency=low
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Updated Standards-Version to 3.8.2, no changes needed.
   * Added me as uploader.
 .
   [ gregor herrmann ]
   * debian/copyright: update years of upstream copyright.
Checksums-Sha1: 
 581ddca39c724db23e6420b83d25720beeccc90e 1533 
libhtml-template-pro-perl_0.75-1.dsc
 599dfa928add6362ef0197d055d16b893d5684fa 122095 
libhtml-template-pro-perl_0.75.orig.tar.gz
 adee67147ef209b1d82b1267b7a54131355f73f5 3279 
libhtml-template-pro-perl_0.75-1.diff.gz
 a510531d5ce0a8c4dd2519b30d7006324a230fa0 88364 
libhtml-template-pro-perl_0.75-1_i386.deb
Checksums-Sha256: 
 da0a9cfb0864f9ab4a6afb647f51ff87f8ec98fe6c5e3fe84b8cf6fb 1533 
libhtml-template-pro-perl_0.75-1.dsc
 01aa023f17f7293855408b23156488481776fda17ec740f7004537d4077f9f68 122095 
libhtml-template-pro-perl_0.75.orig.tar.gz
 9d1497bbc42ac9fcc5a161d8ae333fcff91030de5634b4960038358e328c82bf 3279 
libhtml-template-pro-perl_0.75-1.diff.gz
 fc495990bfd197504df6c4ee2351ee88a43a2cbb6d44e8cb92e72005d23405ee 88364 
libhtml-template-pro-perl_0.75-1_i386.deb
Files: 
 2982fded50b5e93b30f1b2f268d665f9 1533 perl optional 
libhtml-template-pro-perl_0.75-1.dsc
 df6a800977a5daaad47a0fa48be8a766 122095 perl optional 
libhtml-template-pro-perl_0.75.orig.tar.gz
 0dd7e3bb0ec654e127616d783189bf2b 3279 perl optional 
libhtml-template-pro-perl_0.75-1.diff.gz
 da718ec825db052e656c456bcb003bea 88364 perl optional 
libhtml-template-pro-perl_0.75-1_i386.deb

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

iEYEARECAAYFAkpWU84ACgkQOzKYnQDzz+RqWwCguAl6XzlohKkwXt+wxuIo3Wd9
jxoAn1qt8arlO14/+XQ9g89AhX+IKl+S
=warD
-END PGP SIGNATURE-


Accepted:
libhtml-template-pro-perl_0.75-1.diff.gz
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.75-1.diff.gz
libhtml-template-pro-perl_0.75-1.dsc
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.75-1.dsc
libhtml-template-pro-perl_0.75-1_i386.deb
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.75-1_i386.deb
libhtml-template-pro-perl_0.75.orig.tar.gz
  to 
pool/main/libh/libhtml-template-pro-perl/libhtml-template-pro-perl_0.75.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libsearch-xapian-perl 1.0.10.0-1 (source i386)

2009-02-28 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 02:56:27 -0430
Source: libsearch-xapian-perl
Binary: libsearch-xapian-perl
Architecture: source i386
Version: 1.0.10.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jose Luis Rivas ghostba...@gmail.com
Description: 
 libsearch-xapian-perl - Perl bindings for the Xapian C++ search library
Changes: 
 libsearch-xapian-perl (1.0.10.0-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * debian/control:
+ Added me as uploader.
   * debian/copyright:
+ Updated formatting.
 .
   [ gregor herrmann ]
   * debian/copyright: attribute copyright for the packaging to members of the
 Debian Perl Group instead of to the group as a whole.
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
   * debian/control: change my email address.
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
 .
   [ Ryan Niebur ]
   * add description to patch
   * bump versioned dependency on libxapian-dev
   * remove the test databases in the clean target
   * add me to uploaders
Checksums-Sha1: 
 ff560eb26b14a275928aa9440663e0b8e1890e3b 1632 
libsearch-xapian-perl_1.0.10.0-1.dsc
 ade2ad2841715f75e6587a7446d8c5a8cf15e83d 45314 
libsearch-xapian-perl_1.0.10.0.orig.tar.gz
 76a4d2d136c8600b35f0cdc874d997dc19259ff8 3487 
libsearch-xapian-perl_1.0.10.0-1.diff.gz
 7e32a32ebf7f32a63c387c50a538f16a53517978 216966 
libsearch-xapian-perl_1.0.10.0-1_i386.deb
Checksums-Sha256: 
 1b480bb1a9d94d4ab1e06e74369495330ae78f653ab1c65748d291989732688e 1632 
libsearch-xapian-perl_1.0.10.0-1.dsc
 d8c1a22f7f6628e5b3363347cd8325dd600f5f807782b8d000412525eb27605b 45314 
libsearch-xapian-perl_1.0.10.0.orig.tar.gz
 c27c0de9f3898c0d8031c1af1c01a4156e4281b1ff0fd031b4134e2c670b2161 3487 
libsearch-xapian-perl_1.0.10.0-1.diff.gz
 4e47684e184bc70dd5c7498167df3d35879f95f1dbf6141fcd576003e1b0fc7c 216966 
libsearch-xapian-perl_1.0.10.0-1_i386.deb
Files: 
 97d13fe90c62cf9141ff702c4075a16a 1632 perl optional 
libsearch-xapian-perl_1.0.10.0-1.dsc
 c1fdeb4071323ef64b6b6180765cf09d 45314 perl optional 
libsearch-xapian-perl_1.0.10.0.orig.tar.gz
 4e881e99d24c4bdeb613860cd85f1194 3487 perl optional 
libsearch-xapian-perl_1.0.10.0-1.diff.gz
 f5e24e71ab436b62412fd38a6b2a137c 216966 perl optional 
libsearch-xapian-perl_1.0.10.0-1_i386.deb

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

iEUEARECAAYFAkmphKsACgkQOzKYnQDzz+SUugCXRSLu9QLiWZpkEBQgal9nrWPL
LwCeKLm2Obd/+1N4SbMMHpdCJ0AYJkc=
=mrgu
-END PGP SIGNATURE-


Accepted:
libsearch-xapian-perl_1.0.10.0-1.diff.gz
  to 
pool/main/libs/libsearch-xapian-perl/libsearch-xapian-perl_1.0.10.0-1.diff.gz
libsearch-xapian-perl_1.0.10.0-1.dsc
  to pool/main/libs/libsearch-xapian-perl/libsearch-xapian-perl_1.0.10.0-1.dsc
libsearch-xapian-perl_1.0.10.0-1_i386.deb
  to 
pool/main/libs/libsearch-xapian-perl/libsearch-xapian-perl_1.0.10.0-1_i386.deb
libsearch-xapian-perl_1.0.10.0.orig.tar.gz
  to 
pool/main/libs/libsearch-xapian-perl/libsearch-xapian-perl_1.0.10.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libtorrent 0.12.4-1 (source i386)

2008-11-28 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 Nov 2008 13:54:25 -0430
Source: libtorrent
Binary: libtorrent-dev libtorrent11
Architecture: source i386
Version: 0.12.4-1
Distribution: experimental
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libtorrent-dev - a C++ BitTorrent library by Rakshasa (development files)
 libtorrent11 - a C++ BitTorrent library by Rakshasa
Changes: 
 libtorrent (0.12.4-1) experimental; urgency=low
 .
   * New Upstream Version
   * Updated debian/ChangeLog file.
   * debian/copyright: Added copyright notice of src/utils/sha_fast.*
Checksums-Sha1: 
 d4a5372c5b4fd22162e8d7b8bd730166d3e8f1ad 1236 libtorrent_0.12.4-1.dsc
 6deab3f6af5e9566c987131d586751c7dc3b5dbb 600778 libtorrent_0.12.4.orig.tar.gz
 fa6a9818b1c94edba1ca13c96aa741c73c2c3dbf 11339 libtorrent_0.12.4-1.diff.gz
 56472d3f401dcc4304c25dc47da543df342efc54 42702 libtorrent-dev_0.12.4-1_i386.deb
 86e73f3ab5cf7cdd2f356710195c999220618f38 332562 libtorrent11_0.12.4-1_i386.deb
Checksums-Sha256: 
 0b025955eb83e74db98984eb6afe1cc013d4801c3efa1ab10fd2b155129e8eca 1236 
libtorrent_0.12.4-1.dsc
 a48c307fdcc77a28ee3a2ba0b68501a42e3709bf693c52df4831b87c71c8c359 600778 
libtorrent_0.12.4.orig.tar.gz
 68f47b1ed196da581efc069123f760eaffda9dfb74b26da57b4193e475d2f062 11339 
libtorrent_0.12.4-1.diff.gz
 4964f3a65cc1de4f0795724e6f4942f9f9c603ee383b1280d59a8ceb199ba8a4 42702 
libtorrent-dev_0.12.4-1_i386.deb
 84f7aec757ee50c51579e08affdcd720701db851ba3fa26e6d2e50d92983a066 332562 
libtorrent11_0.12.4-1_i386.deb
Files: 
 bf5a382ce05a57be5fc880b1f4a69c6f 1236 libs extra libtorrent_0.12.4-1.dsc
 7e4b4c29a69c86c38e3e60ec11fc2255 600778 libs extra 
libtorrent_0.12.4.orig.tar.gz
 73622fed695a45294e0c9e769fc3b5b3 11339 libs extra libtorrent_0.12.4-1.diff.gz
 75d8fd68df7aac85a7297d056472245e 42702 libdevel extra 
libtorrent-dev_0.12.4-1_i386.deb
 e54331aa08203539a17047411a4e8bf3 332562 libs extra 
libtorrent11_0.12.4-1_i386.deb

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

iEYEARECAAYFAkkpef0ACgkQq4wAz/jiZTeeJwCePn2MVtt07Pp9lPoWsjv04Dnb
1dcAoMqBBgcrDF66tRzKi51wEkvgieFQ
=9Y5s
-END PGP SIGNATURE-


Accepted:
libtorrent-dev_0.12.4-1_i386.deb
  to pool/main/libt/libtorrent/libtorrent-dev_0.12.4-1_i386.deb
libtorrent11_0.12.4-1_i386.deb
  to pool/main/libt/libtorrent/libtorrent11_0.12.4-1_i386.deb
libtorrent_0.12.4-1.diff.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.4-1.diff.gz
libtorrent_0.12.4-1.dsc
  to pool/main/libt/libtorrent/libtorrent_0.12.4-1.dsc
libtorrent_0.12.4.orig.tar.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.4.orig.tar.gz


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



Accepted libb-hooks-endofscope-perl 0.04-1 (source all)

2008-11-28 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 11 Nov 2008 00:28:16 -0430
Source: libb-hooks-endofscope-perl
Binary: libb-hooks-endofscope-perl
Architecture: source all
Version: 0.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libb-hooks-endofscope-perl - Execute code after a scope finished compilation
Closes: 504241
Changes: 
 libb-hooks-endofscope-perl (0.04-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #504241)
Checksums-Sha1: 
 1643baaef2a78db7939600a97c7b5826193edd08 1458 
libb-hooks-endofscope-perl_0.04-1.dsc
 85416947f5536a6415a850edc645806cc416e557 14775 
libb-hooks-endofscope-perl_0.04.orig.tar.gz
 f31c2908548fa35fcab8ce34acd92f7700f2e843 1348 
libb-hooks-endofscope-perl_0.04-1.diff.gz
 575ee0c25a8ba7f46b243a4f873265b9644864da 5238 
libb-hooks-endofscope-perl_0.04-1_all.deb
Checksums-Sha256: 
 704b4c10c9453228c62adb0399460d34c033b7b54d6fbae8fa7458fcaba77a77 1458 
libb-hooks-endofscope-perl_0.04-1.dsc
 a94083963f0c680e0daaeae71ff38c27cff7ae79dff6bb254b6822b21c960e10 14775 
libb-hooks-endofscope-perl_0.04.orig.tar.gz
 982d39d004c0b2fc7520a84dea3dc39f9c7387779bdde59d7ce17911de4cc37f 1348 
libb-hooks-endofscope-perl_0.04-1.diff.gz
 05a105f5a39c997ea0be7e3c5770b3a4013a33af51ad62e93a45f6fa12a3f9d3 5238 
libb-hooks-endofscope-perl_0.04-1_all.deb
Files: 
 e0720f7ad7bac13238a781f64065b6f8 1458 perl optional 
libb-hooks-endofscope-perl_0.04-1.dsc
 1705a0643af266ad902f8dda2212dd78 14775 perl optional 
libb-hooks-endofscope-perl_0.04.orig.tar.gz
 4c6df4ff457c65de9f34cc1dc1794453 1348 perl optional 
libb-hooks-endofscope-perl_0.04-1.diff.gz
 a3b7ef09785e39d5737e028d90f16a87 5238 perl optional 
libb-hooks-endofscope-perl_0.04-1_all.deb

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

iEYEARECAAYFAkkZtyAACgkQOzKYnQDzz+QA4gCdFVzpXYgejX2lurr5aVgg3nKe
OJEAoMRbXj2PGhS7g+e++mWDbgLYRRCV
=i0HY
-END PGP SIGNATURE-


Accepted:
libb-hooks-endofscope-perl_0.04-1.diff.gz
  to 
pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.04-1.diff.gz
libb-hooks-endofscope-perl_0.04-1.dsc
  to 
pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.04-1.dsc
libb-hooks-endofscope-perl_0.04-1_all.deb
  to 
pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.04-1_all.deb
libb-hooks-endofscope-perl_0.04.orig.tar.gz
  to 
pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.04.orig.tar.gz


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



Accepted rtorrent 0.8.4-1 (source i386)

2008-11-23 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 Nov 2008 23:03:55 -0430
Source: rtorrent
Binary: rtorrent
Architecture: source i386
Version: 0.8.4-1
Distribution: experimental
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 rtorrent   - ncurses BitTorrent client based on LibTorrent from rakshasa
Changes: 
 rtorrent (0.8.4-1) experimental; urgency=low
 .
   * New upstream release
   * Updated B-P on libtorrent-dev to 0.12.4
Checksums-Sha1: 
 b8d5ac3fc79f725efd5caeeb483519de3c845425 1254 rtorrent_0.8.4-1.dsc
 83a7c0dbeb46bb074ae075d9faf5d05f0df17571 518306 rtorrent_0.8.4.orig.tar.gz
 9967abbd7062802ba5bd7d60aa54eb9f49dc51e3 4481 rtorrent_0.8.4-1.diff.gz
 87057c8f9681ea045088a8e5962d5aa6ff37c4dc 345226 rtorrent_0.8.4-1_i386.deb
Checksums-Sha256: 
 649efd1d46eca30e0c13b954b16aef3cc2ceba239a58600a996abcd8d9fe7926 1254 
rtorrent_0.8.4-1.dsc
 257722380b39e84e700e9f2d2f6600ba724723f1ed59327bfce47a57d293 518306 
rtorrent_0.8.4.orig.tar.gz
 7c82c88ab35dfe88606c098fa7298f419219976e0ecd66530ff83a4550d97236 4481 
rtorrent_0.8.4-1.diff.gz
 beffc755634cc156710bb173b7e927f7795a7e737b45297201ebe0a373670f0d 345226 
rtorrent_0.8.4-1_i386.deb
Files: 
 76f40052a89a8077fc30e14ca5184694 1254 net extra rtorrent_0.8.4-1.dsc
 dc0f37d933b0b6c713ad617e09441f3b 518306 net extra rtorrent_0.8.4.orig.tar.gz
 2ba02af2b7c6ad620a139b80da036621 4481 net extra rtorrent_0.8.4-1.diff.gz
 495a01c74a3bd4fd98496b15fed6 345226 net extra rtorrent_0.8.4-1_i386.deb

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

iEYEARECAAYFAkkphCUACgkQq4wAz/jiZTeONgCgoUw1DFHgOTTO+/DP9pKrxvqZ
G14AoI1+ODlQ04o3XMukp0oRPJ9t1NGx
=P2Y5
-END PGP SIGNATURE-


Accepted:
rtorrent_0.8.4-1.diff.gz
  to pool/main/r/rtorrent/rtorrent_0.8.4-1.diff.gz
rtorrent_0.8.4-1.dsc
  to pool/main/r/rtorrent/rtorrent_0.8.4-1.dsc
rtorrent_0.8.4-1_i386.deb
  to pool/main/r/rtorrent/rtorrent_0.8.4-1_i386.deb
rtorrent_0.8.4.orig.tar.gz
  to pool/main/r/rtorrent/rtorrent_0.8.4.orig.tar.gz


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



Accepted libpoe-api-peek-perl 1.3200-1 (source all)

2008-11-15 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 18:25:47 -0430
Source: libpoe-api-peek-perl
Binary: libpoe-api-peek-perl
Architecture: source all
Version: 1.3200-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libpoe-api-peek-perl - Peek into the internals of a running POE environment
Changes: 
 libpoe-api-peek-perl (1.3200-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * debian/control:
+ Bumped to 3.8.0 Standards-Version (no changes needed).
+ debhelper is now = 7
   * debian/rules:
+ Updated to debhelper v7.
   * debian/compat:
+ Upgraded to 7.
   * Refreshed debian/copyright.
   * Deleted CDBS from Build-Depends.
 .
   [ gregor herrmann ]
   * debian/copyright:
 - add Upstream-Name field
 - add additional copyright holder
 - add stand-alone License: stanzas
   * debian/control:
 - mention module name in long description
 - make runtime dependency on libpoe-perl versioned, too
Checksums-Sha1: 
 6144d4ff37ebb89579bf2b0c00e6f8afa244b990 1436 libpoe-api-peek-perl_1.3200-1.dsc
 72ca46fa58c72d39e28bf20295c6b0da00c3c19e 21358 
libpoe-api-peek-perl_1.3200.orig.tar.gz
 82ec600e7290e0e0a8b6557e6e0adb8c14517d63 3035 
libpoe-api-peek-perl_1.3200-1.diff.gz
 09bc6ef2f206495026179e16b75131bd5a2ca6f8 15024 
libpoe-api-peek-perl_1.3200-1_all.deb
Checksums-Sha256: 
 cee231873492068c23e7a06d25e864e804509f452527f1721736045cdf224f08 1436 
libpoe-api-peek-perl_1.3200-1.dsc
 667f9210a50d1ed5b0cc8f9e41cd5433616d24c5fc7672c4d1e7b88f99291f92 21358 
libpoe-api-peek-perl_1.3200.orig.tar.gz
 7b25d06ab50488c8b5d01164e90a5cb011cd583c901065723581433f36658251 3035 
libpoe-api-peek-perl_1.3200-1.diff.gz
 2e1ab19fd0144afc951aa9b55029505fcead68ce522ebf7d571a44d8946e3d43 15024 
libpoe-api-peek-perl_1.3200-1_all.deb
Files: 
 97515ee258c25a5b8024f2aaf444fb6d 1436 perl extra 
libpoe-api-peek-perl_1.3200-1.dsc
 f85ca096f39a97f22139a758e02169a2 21358 perl extra 
libpoe-api-peek-perl_1.3200.orig.tar.gz
 60b742963af3c2109a1bcb82b8f54249 3035 perl extra 
libpoe-api-peek-perl_1.3200-1.diff.gz
 6e2c3123b97b1ec923177073e8508e54 15024 perl extra 
libpoe-api-peek-perl_1.3200-1_all.deb

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

iEYEARECAAYFAkkfDp8ACgkQOzKYnQDzz+TirQCgq4t8Ta+/q+d0b8Ikb8S7YqG+
MvAAnjicN3e6/GryzbnZFBTXx9EPbjnd
=MELT
-END PGP SIGNATURE-


Accepted:
libpoe-api-peek-perl_1.3200-1.diff.gz
  to pool/main/libp/libpoe-api-peek-perl/libpoe-api-peek-perl_1.3200-1.diff.gz
libpoe-api-peek-perl_1.3200-1.dsc
  to pool/main/libp/libpoe-api-peek-perl/libpoe-api-peek-perl_1.3200-1.dsc
libpoe-api-peek-perl_1.3200-1_all.deb
  to pool/main/libp/libpoe-api-peek-perl/libpoe-api-peek-perl_1.3200-1_all.deb
libpoe-api-peek-perl_1.3200.orig.tar.gz
  to pool/main/libp/libpoe-api-peek-perl/libpoe-api-peek-perl_1.3200.orig.tar.gz


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



Accepted libpoe-component-client-dns-perl 1:1.01-1 (source all)

2008-11-15 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 02:35:10 -0430
Source: libpoe-component-client-dns-perl
Binary: libpoe-component-client-dns-perl
Architecture: source all
Version: 1:1.01-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libpoe-component-client-dns-perl - a DNS client component for POE
Changes: 
 libpoe-component-client-dns-perl (1:1.01-1) unstable; urgency=low
 .
   [ Martín Ferrari ]
   * Updating my email address
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Switched to debhelper v7, updated debian/rules, debian/compat and upgraded
   debhelper dependency to = 7 on debian/control.
   * Patch is applied from upstream, no longer needed.
   * Added me as Uploader.
   * debian/control: Bumped to Standards-Version 3.8.0 (no changes needed).
   * Refreshed debian/copyright.
 .
   [ gregor herrmann ]
   * debian/copyright: use stand-alone License: stanzas instead of free text.
   * Add patch fix_pod.patch.
   * Add debian/README.source to document quilt usage, as required by
 Debian Policy since 3.8.0.
Checksums-Sha1: 
 70edc86920c438b69efb00be58ab31e30c599458 1587 
libpoe-component-client-dns-perl_1.01-1.dsc
 f3f35c3c6288dc235443dbd86c544026b38dc4d3 12588 
libpoe-component-client-dns-perl_1.01.orig.tar.gz
 83dff610ffb754cb371e77b9723aa90a0ea5203f 3477 
libpoe-component-client-dns-perl_1.01-1.diff.gz
 b02f52ae5b8e227eb86885cbcd22dc699c063b45 17548 
libpoe-component-client-dns-perl_1.01-1_all.deb
Checksums-Sha256: 
 77d0d30e9f4f0bede1089e6380c31e0bfc2915072e0d52518df3f1a02a8a405a 1587 
libpoe-component-client-dns-perl_1.01-1.dsc
 07acde1acb796530d6b632972cb78eda0a814ac374e22a2633fb84f4bc98bbe0 12588 
libpoe-component-client-dns-perl_1.01.orig.tar.gz
 54b07662a9c893ce01780d03eb6d6f495b30a3ad2a5bc4eb6b392302c8c0ab38 3477 
libpoe-component-client-dns-perl_1.01-1.diff.gz
 0fcdfccafc5b86ecf944541bfca9ff6a6849e93ca60233bcb18962fade86d1f0 17548 
libpoe-component-client-dns-perl_1.01-1_all.deb
Files: 
 1ed5ec7f4520758d20133efdccaa52eb 1587 perl extra 
libpoe-component-client-dns-perl_1.01-1.dsc
 2eef0b3d43830a3cbc29877bc5474eef 12588 perl extra 
libpoe-component-client-dns-perl_1.01.orig.tar.gz
 17e04f04e5b60f5b00f7ddf25d3694c6 3477 perl extra 
libpoe-component-client-dns-perl_1.01-1.diff.gz
 4a4e46a9ff01d76d8cdc85059e5dd619 17548 perl extra 
libpoe-component-client-dns-perl_1.01-1_all.deb

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

iEYEARECAAYFAkkfE28ACgkQOzKYnQDzz+QSXgCfSviJDvuKWWupRcL7HISl5C8Y
rDwAoKraJ1ubcpowygD8ETDt5R59fEIZ
=lToi
-END PGP SIGNATURE-


Accepted:
libpoe-component-client-dns-perl_1.01-1.diff.gz
  to 
pool/main/libp/libpoe-component-client-dns-perl/libpoe-component-client-dns-perl_1.01-1.diff.gz
libpoe-component-client-dns-perl_1.01-1.dsc
  to 
pool/main/libp/libpoe-component-client-dns-perl/libpoe-component-client-dns-perl_1.01-1.dsc
libpoe-component-client-dns-perl_1.01-1_all.deb
  to 
pool/main/libp/libpoe-component-client-dns-perl/libpoe-component-client-dns-perl_1.01-1_all.deb
libpoe-component-client-dns-perl_1.01.orig.tar.gz
  to 
pool/main/libp/libpoe-component-client-dns-perl/libpoe-component-client-dns-perl_1.01.orig.tar.gz


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



Accepted liblexical-persistence-perl 0.98-1 (source all)

2008-11-14 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 13 Nov 2008 02:28:34 -0430
Source: liblexical-persistence-perl
Binary: liblexical-persistence-perl
Architecture: source all
Version: 0.98-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 liblexical-persistence-perl - Perl module for accessing persistent data 
through lexical variabl
Changes: 
 liblexical-persistence-perl (0.98-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Refreshed debian/copyright
   * Changed to debhelper v7, updated debian/{rules,compat,control}.
   * Bumped to 3.8.0 Standars-Version (no changes)
   * Updates Vcs-Browser URI to viewsvn instead of wsvn
   * Added me as uploader.
 .
   [ gregor herrmann ]
   * debian/control: change my email address.
Checksums-Sha1: 
 5e6f99f886ef999e2c4429cc47e8553bb617ba19 1602 
liblexical-persistence-perl_0.98-1.dsc
 c2e97f5008c68f0b9f7f643a9ce4b21bfee572d7 12499 
liblexical-persistence-perl_0.98.orig.tar.gz
 938193901d77c3a97d21e12a9dd8ca5927f8e617 1856 
liblexical-persistence-perl_0.98-1.diff.gz
 913df082209eed45cb52d85dd6301d0833222632 18338 
liblexical-persistence-perl_0.98-1_all.deb
Checksums-Sha256: 
 32cebdc07af7b224eb05101f2a9c91497a329c7c268b181142e27b48b9ad33be 1602 
liblexical-persistence-perl_0.98-1.dsc
 c0c346cd02cdd144570eefd9a20eff63a832006c2efd3d924850e31a9d2d73f0 12499 
liblexical-persistence-perl_0.98.orig.tar.gz
 959220a8fe21ae8df3afccb143b5ede8eba84b7aea2e3d2fd9eb26a7a44f0afe 1856 
liblexical-persistence-perl_0.98-1.diff.gz
 0b4725ca083865259295559de4a07b4a7fd190daac4bcdd2ffec9a0198a17843 18338 
liblexical-persistence-perl_0.98-1_all.deb
Files: 
 8eeaeb0c0d1acbfa26df44f6d70a9a4c 1602 perl optional 
liblexical-persistence-perl_0.98-1.dsc
 d01cb510432a1ccba61d4b02520f99e4 12499 perl optional 
liblexical-persistence-perl_0.98.orig.tar.gz
 9dd46845ca0779fa11c62fe70720f73c 1856 perl optional 
liblexical-persistence-perl_0.98-1.diff.gz
 a426f0b6f8d0e93b3dcbb658bdcf251a 18338 perl optional 
liblexical-persistence-perl_0.98-1_all.deb

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

iEYEARECAAYFAkkd9H4ACgkQOzKYnQDzz+RqFQCg2S7cW3LvnBsJifXIVxe0LXX5
zs4AoKATk/PSBgRmFCsIVPR92+4PlHrm
=2EsW
-END PGP SIGNATURE-


Accepted:
liblexical-persistence-perl_0.98-1.diff.gz
  to 
pool/main/libl/liblexical-persistence-perl/liblexical-persistence-perl_0.98-1.diff.gz
liblexical-persistence-perl_0.98-1.dsc
  to 
pool/main/libl/liblexical-persistence-perl/liblexical-persistence-perl_0.98-1.dsc
liblexical-persistence-perl_0.98-1_all.deb
  to 
pool/main/libl/liblexical-persistence-perl/liblexical-persistence-perl_0.98-1_all.deb
liblexical-persistence-perl_0.98.orig.tar.gz
  to 
pool/main/libl/liblexical-persistence-perl/liblexical-persistence-perl_0.98.orig.tar.gz


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



Accepted libexception-class-trycatch-perl 1.12-1 (source all)

2008-11-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 04 Nov 2008 00:37:35 -0430
Source: libexception-class-trycatch-perl
Binary: libexception-class-trycatch-perl
Architecture: source all
Version: 1.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libexception-class-trycatch-perl - syntactic try/catch sugar for use with 
Exception::Class
Changes: 
 libexception-class-trycatch-perl (1.12-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Switched to debhelper 7.
   * debian/control: added me as uploader.
   * debian/copyright: Updated formatting.
 .
   [ gregor herrmann ]
   * debian/rules: use the template from dh-make-perl
   * debian/copyright: add Upstream-Name field and reflect upstream's
 re-licencing under the Apache 2.0 License.
   * debian/control: start short description with lower-case letter.
Checksums-Sha1: 
 3349b30ae33abccd56169f60f4521173bf5a1042 1631 
libexception-class-trycatch-perl_1.12-1.dsc
 4e1f5b7f716e0bd357e010c9a4a0c6c34f943045 17811 
libexception-class-trycatch-perl_1.12.orig.tar.gz
 6ce761ef7aa099b7b3db2225767b970f4b29ddbe 2084 
libexception-class-trycatch-perl_1.12-1.diff.gz
 df1d67ccfb77ba8986e7d48195c34757db50ee9f 15504 
libexception-class-trycatch-perl_1.12-1_all.deb
Checksums-Sha256: 
 d8844751222196587935c1229c7ce28adbf413740483d18cf9ed31726b6e88a2 1631 
libexception-class-trycatch-perl_1.12-1.dsc
 4161c9bcd11ac60f053db94a0fcb74844372bdea1701477f4bd31c132eb4235c 17811 
libexception-class-trycatch-perl_1.12.orig.tar.gz
 9c9afbfa436466145175b95cc0284b8c89aaa97efde92c2cce7a6964e04b4c17 2084 
libexception-class-trycatch-perl_1.12-1.diff.gz
 09c33ca626de32e47f61beaf86c69f1318893eb2193bc66879825d7f71ed1456 15504 
libexception-class-trycatch-perl_1.12-1_all.deb
Files: 
 3d2c16070088fc5650dedc1c27b45d40 1631 perl optional 
libexception-class-trycatch-perl_1.12-1.dsc
 d9943ce5e251437312a11001b9531f43 17811 perl optional 
libexception-class-trycatch-perl_1.12.orig.tar.gz
 1b1c63ca14979faaf3464f845c5124ba 2084 perl optional 
libexception-class-trycatch-perl_1.12-1.diff.gz
 ac12bc8d878eca403a7a42c86b840cea 15504 perl optional 
libexception-class-trycatch-perl_1.12-1_all.deb

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

iEYEARECAAYFAkkbKfcACgkQOzKYnQDzz+QiMwCePvncqFetVgA2ZFXjgiDWV//p
qeQAni0EJFtz8mTzciyTehzU7cMCEkGV
=GYYC
-END PGP SIGNATURE-


Accepted:
libexception-class-trycatch-perl_1.12-1.diff.gz
  to 
pool/main/libe/libexception-class-trycatch-perl/libexception-class-trycatch-perl_1.12-1.diff.gz
libexception-class-trycatch-perl_1.12-1.dsc
  to 
pool/main/libe/libexception-class-trycatch-perl/libexception-class-trycatch-perl_1.12-1.dsc
libexception-class-trycatch-perl_1.12-1_all.deb
  to 
pool/main/libe/libexception-class-trycatch-perl/libexception-class-trycatch-perl_1.12-1_all.deb
libexception-class-trycatch-perl_1.12.orig.tar.gz
  to 
pool/main/libe/libexception-class-trycatch-perl/libexception-class-trycatch-perl_1.12.orig.tar.gz


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



Accepted libbusiness-isbn-data-perl 20081020-1 (source all)

2008-11-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 12:19:43 -0430
Source: libbusiness-isbn-data-perl
Binary: libbusiness-isbn-data-perl
Architecture: source all
Version: 20081020-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libbusiness-isbn-data-perl - data pack for Business::ISBN
Changes: 
 libbusiness-isbn-data-perl (20081020-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * Add debian/README.source to document quilt usage, as required by
 Debian Policy since 3.8.0.
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Set Standards-Version to 3.8.0 (changes already applied by gregor
   herrmann).
   * Added me as uploader.
   * Refreshed debian/copyright
   * Switched to debhelper v7, updated debian/{rules,compat,control}.
 .
   [ gregor herrmann ]
   * debian/control:
 - change my email address
 - remove cdbs and patchutils from Build-Depends
 - remove trailing comma from Depends
 - start short description with lower-case letter
   * debian/copyright: add Upstream-Name field and use stand-alone License
 stanzas.
Checksums-Sha1: 
 5cf51710896e5f8982d192fb6ced420df80d0a78 1605 
libbusiness-isbn-data-perl_20081020-1.dsc
 8505d9b9d5fa7e3e79c1552a8e48228bada96b56 11318 
libbusiness-isbn-data-perl_20081020.orig.tar.gz
 6dfa023028d282b3da1ee0f5a81d63b99b8eab4f 2822 
libbusiness-isbn-data-perl_20081020-1.diff.gz
 ac9ebe73626fd2f341c4d2cd96ee21d8258cdbbe 12576 
libbusiness-isbn-data-perl_20081020-1_all.deb
Checksums-Sha256: 
 6b094196ce09e61b0bf0c0f36548cf32286385dc20db06403322a5c1a57c7482 1605 
libbusiness-isbn-data-perl_20081020-1.dsc
 6743de00e0c980b695ef91506c9365a87d770db99050ba124c59b1d27491a9e4 11318 
libbusiness-isbn-data-perl_20081020.orig.tar.gz
 f818b9bf42f56116bee0de337a1b1123a824df449c523d6a5b433c54ca068ac4 2822 
libbusiness-isbn-data-perl_20081020-1.diff.gz
 34b7a9ae0b24fd70d3779d5eff6e8780b134922cd843fe8cc9dc75a028f295ec 12576 
libbusiness-isbn-data-perl_20081020-1_all.deb
Files: 
 01bc36b0e06d5c6a8d0b0a119f47c7a8 1605 perl optional 
libbusiness-isbn-data-perl_20081020-1.dsc
 81e3b403f7bbdd77010f078d06a04548 11318 perl optional 
libbusiness-isbn-data-perl_20081020.orig.tar.gz
 e1e122ee5cf90f5bf57962cf52f71f3c 2822 perl optional 
libbusiness-isbn-data-perl_20081020-1.diff.gz
 7c298a2cbbe35e860faf86b73e557cce 12576 perl optional 
libbusiness-isbn-data-perl_20081020-1_all.deb

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

iEYEARECAAYFAkkbLF0ACgkQOzKYnQDzz+SMzgCfUwdFsOS4C6LFHgd8hRIm8aUq
XGkAn2oStTr37C3SuIbvrXovds0Y1tmZ
=ogOU
-END PGP SIGNATURE-


Accepted:
libbusiness-isbn-data-perl_20081020-1.diff.gz
  to 
pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20081020-1.diff.gz
libbusiness-isbn-data-perl_20081020-1.dsc
  to 
pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20081020-1.dsc
libbusiness-isbn-data-perl_20081020-1_all.deb
  to 
pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20081020-1_all.deb
libbusiness-isbn-data-perl_20081020.orig.tar.gz
  to 
pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20081020.orig.tar.gz


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



Accepted libtime-local-perl 1.1901-1 (source all)

2008-11-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 03:46:03 -0430
Source: libtime-local-perl
Binary: libtime-local-perl
Architecture: source all
Version: 1.1901-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libtime-local-perl - efficiently compute time from local and GMT time
Changes: 
 libtime-local-perl (1.1901-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Updated formatting of debian/copyright.
   * debian/control: Bumped Standards-Version to 3.8.0 (no changes needed)
   * Switched to debhelper v7, updated debian/{rules,control,compat}
   * Deleted CDBS as Build-Depend
 .
   [ gregor herrmann ]
   * debian/watch: add uversionmangle to cope with 2- and 4-digit minor
 versions.
   * debian/copyright: add Upstream-Name field and use stand-alone License
 stanzas at the bottom.
   * debian/control: long description: mention module name and remove
 (homepage) URL.
   * Activate additional tests by setting IS_MAINTAINER and MAINTAINER in
 debian/rules and adding libtest-pod-perl, libtest-pod-coverage-perl to
 Build-Depends-Indep in debian/control.
Checksums-Sha1: 
 9f3e1a8854e9145647e8af010be88963d823097c 1375 libtime-local-perl_1.1901-1.dsc
 0ef18e3ddef63ec1fe9d7c16555a831c5f6a3cc6 18623 
libtime-local-perl_1.1901.orig.tar.gz
 293fb6f833001b47560e1216f8a31f39f6670824 2108 
libtime-local-perl_1.1901-1.diff.gz
 2bdd951faf55eee512c9ea0f3be7e4bfea2737c4 16980 
libtime-local-perl_1.1901-1_all.deb
Checksums-Sha256: 
 ba4b9dd796fab46064f3e24f7e78b819568e966baebe0a7d9a6384460439bd8a 1375 
libtime-local-perl_1.1901-1.dsc
 7e91a558171b1f5133b521ab98afce171ed9d9bd2e837801074d0ed9d459d9c2 18623 
libtime-local-perl_1.1901.orig.tar.gz
 0b63d03e0cea33129069a4a40f0abd289fe4fe7922ecfd2cbfd0dcfc8844e25c 2108 
libtime-local-perl_1.1901-1.diff.gz
 05f4dc411eab690d0d3e126424c6e9bc50a92676f2b05ddd1cedadfd486218cd 16980 
libtime-local-perl_1.1901-1_all.deb
Files: 
 b14eef7b631cf6e71ec133ce6356495e 1375 perl extra 
libtime-local-perl_1.1901-1.dsc
 bd47c6403f325168c9dc5a1ff0567176 18623 perl extra 
libtime-local-perl_1.1901.orig.tar.gz
 fb6d1ed73a3e0333f702ab473c8312e6 2108 perl extra 
libtime-local-perl_1.1901-1.diff.gz
 bff08682b448d7a393b732a912a69d7c 16980 perl extra 
libtime-local-perl_1.1901-1_all.deb

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

iEYEARECAAYFAkkbPFwACgkQOzKYnQDzz+Tk6gCg4j3CJUfZT23jkVi1DGZMIIa9
JSYAnAuaSNgyNaMg1HelnNj1GiB3O0TJ
=1W+y
-END PGP SIGNATURE-


Accepted:
libtime-local-perl_1.1901-1.diff.gz
  to pool/main/libt/libtime-local-perl/libtime-local-perl_1.1901-1.diff.gz
libtime-local-perl_1.1901-1.dsc
  to pool/main/libt/libtime-local-perl/libtime-local-perl_1.1901-1.dsc
libtime-local-perl_1.1901-1_all.deb
  to pool/main/libt/libtime-local-perl/libtime-local-perl_1.1901-1_all.deb
libtime-local-perl_1.1901.orig.tar.gz
  to pool/main/libt/libtime-local-perl/libtime-local-perl_1.1901.orig.tar.gz


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



Accepted libcgi-session-serialize-yaml-perl 4.24-1 (source all)

2008-11-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Nov 2008 13:27:19 -0430
Source: libcgi-session-serialize-yaml-perl
Binary: libcgi-session-serialize-yaml-perl
Architecture: source all
Version: 4.24-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libcgi-session-serialize-yaml-perl - YAML and YAML::Syck support for 
CGI::Session's serializers
Changes: 
 libcgi-session-serialize-yaml-perl (4.24-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/control: requires libcgi-session-perl = 4.30.
   * debian/control: added me as uploader.
 .
   [ gregor herrmann ]
   * Remove empty debian/patches/{,series} and build dependency on quilt.
   * Don't install README any more (text version of the POD documentation).
   * debian/copyright: switch to new format.
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
   * debian/control:
 - slightly rephrase short description and add module name to
   long description
 - remove build dependency on libmodule-build-perl, debhelper 7 prefers
   MakeMaker
Checksums-Sha1: 
 b84515aca71f696a1e2eb4c22abcf64750de040a 1453 
libcgi-session-serialize-yaml-perl_4.24-1.dsc
 37de9f7bbb1c493d7a00c28af25b58a53fb22c4b 4765 
libcgi-session-serialize-yaml-perl_4.24.orig.tar.gz
 15e077348579e18f7e9a876cd9dca13bca0ed97c 2003 
libcgi-session-serialize-yaml-perl_4.24-1.diff.gz
 3ca9e3e5080eaf58e746fcbe78fb8bb13c635399 6864 
libcgi-session-serialize-yaml-perl_4.24-1_all.deb
Checksums-Sha256: 
 8fe38d4263c18c88648484f6a2594167958edd2cb3ca7f8943591aefc56e4181 1453 
libcgi-session-serialize-yaml-perl_4.24-1.dsc
 9e3f5838e9c404a57d2f0c6f87a0cd453cfb9518e68a0e4f34ff8f74073cf595 4765 
libcgi-session-serialize-yaml-perl_4.24.orig.tar.gz
 4643135d5bc972e954112609b902d7b39df727cee797344d778ee0c33188f6ba 2003 
libcgi-session-serialize-yaml-perl_4.24-1.diff.gz
 9d8a76a599f0da46fd52cf0d00e55cc1504b93cffe36f059bc741e0cdba44b27 6864 
libcgi-session-serialize-yaml-perl_4.24-1_all.deb
Files: 
 baab98399e0c62a2a5d099cd8e5250ed 1453 perl optional 
libcgi-session-serialize-yaml-perl_4.24-1.dsc
 ca87c10e71b39012859e11bd3bcec9fd 4765 perl optional 
libcgi-session-serialize-yaml-perl_4.24.orig.tar.gz
 352360bc9067ef27faf9f95e50addaf7 2003 perl optional 
libcgi-session-serialize-yaml-perl_4.24-1.diff.gz
 e6faf70cf023bcfd01781f450242cdfd 6864 perl optional 
libcgi-session-serialize-yaml-perl_4.24-1_all.deb

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

iEYEARECAAYFAkkbMxEACgkQOzKYnQDzz+QAQACgvm9Q7iuLDrfaBBMK99yCBDdl
6BEAn18o8DgYmLgVgEyFmp8wQV7dY0i/
=XRRD
-END PGP SIGNATURE-


Accepted:
libcgi-session-serialize-yaml-perl_4.24-1.diff.gz
  to 
pool/main/libc/libcgi-session-serialize-yaml-perl/libcgi-session-serialize-yaml-perl_4.24-1.diff.gz
libcgi-session-serialize-yaml-perl_4.24-1.dsc
  to 
pool/main/libc/libcgi-session-serialize-yaml-perl/libcgi-session-serialize-yaml-perl_4.24-1.dsc
libcgi-session-serialize-yaml-perl_4.24-1_all.deb
  to 
pool/main/libc/libcgi-session-serialize-yaml-perl/libcgi-session-serialize-yaml-perl_4.24-1_all.deb
libcgi-session-serialize-yaml-perl_4.24.orig.tar.gz
  to 
pool/main/libc/libcgi-session-serialize-yaml-perl/libcgi-session-serialize-yaml-perl_4.24.orig.tar.gz


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



Accepted libastro-fits-header-perl 3.0-1 (source all)

2008-11-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 18:51:43 -0430
Source: libastro-fits-header-perl
Binary: libastro-fits-header-perl
Architecture: source all
Version: 3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libastro-fits-header-perl - Perl tools for reading, modifying and writing FITS 
headers
Changes: 
 libastro-fits-header-perl (3.0-1) unstable; urgency=low
 .
   [ Joachim Breitner ]
   * Removed myself from uploaders.
 .
   [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
 field (source stanza); Homepage field (source stanza). Removed: XS-
 Vcs-Svn fields.
   * debian/watch: use dist-based URL.
   * Set Standards-Version to 3.8.0 (no changes).
   * Add /me to Uploaders.
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * Added me to Uploaders.
   * debian/copyright: Updated formatting.
 .
   [ gregor herrmann ]
   * debian/copyright:
 - use a stand-alone License stanza at the end
 - update years of upstream copyright
 - add an additional copyright holder for one file
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
Checksums-Sha1: 
 99a36bdddedbac9d265704aeee5298846ea0d023 1469 
libastro-fits-header-perl_3.0-1.dsc
 0e5cf7f51a89aab63d63cb1b0ce2e5689b3949ff 85375 
libastro-fits-header-perl_3.0.orig.tar.gz
 e1f5e435f48b8eda2f828a6c2a43cb19f2ae071e 3008 
libastro-fits-header-perl_3.0-1.diff.gz
 43ab9c1701c88fd66684c51b25761785b385e491 51646 
libastro-fits-header-perl_3.0-1_all.deb
Checksums-Sha256: 
 fff572cae48d9319b030cee932f43f1a6641630e005be326dcafd76fe72eeb0d 1469 
libastro-fits-header-perl_3.0-1.dsc
 22d856791462f61e77dccb6fa6108cc0901c306b5f4eacac4385dad48eae7bf9 85375 
libastro-fits-header-perl_3.0.orig.tar.gz
 e97fdb49990bacad37911b72fd5062e98cd3c89ad4894b693444fb95e9d5d45d 3008 
libastro-fits-header-perl_3.0-1.diff.gz
 2ad49464ebaf0f7f9f5af91f1485f9e4117ec1ef16456138cd2d61e236759c5d 51646 
libastro-fits-header-perl_3.0-1_all.deb
Files: 
 acc9ad3c76edd46f1391f33c382821f9 1469 perl optional 
libastro-fits-header-perl_3.0-1.dsc
 5d9fa2424486846115c80c3fd6b82949 85375 perl optional 
libastro-fits-header-perl_3.0.orig.tar.gz
 2e76c40db6815e262b7c91f6ab6527b1 3008 perl optional 
libastro-fits-header-perl_3.0-1.diff.gz
 b9af61a338b9ad02e0e0d1864c217356 51646 perl optional 
libastro-fits-header-perl_3.0-1_all.deb

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

iEYEARECAAYFAkkbN98ACgkQOzKYnQDzz+Sk5ACfe22sBPgIfEKidlbh27VCGPx2
2FkAnjw29R5iUyX00eAw8L2ng0cdflfU
=1XrB
-END PGP SIGNATURE-


Accepted:
libastro-fits-header-perl_3.0-1.diff.gz
  to 
pool/main/liba/libastro-fits-header-perl/libastro-fits-header-perl_3.0-1.diff.gz
libastro-fits-header-perl_3.0-1.dsc
  to 
pool/main/liba/libastro-fits-header-perl/libastro-fits-header-perl_3.0-1.dsc
libastro-fits-header-perl_3.0-1_all.deb
  to 
pool/main/liba/libastro-fits-header-perl/libastro-fits-header-perl_3.0-1_all.deb
libastro-fits-header-perl_3.0.orig.tar.gz
  to 
pool/main/liba/libastro-fits-header-perl/libastro-fits-header-perl_3.0.orig.tar.gz


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



Accepted libmoose-perl 0.61-1 (source all)

2008-11-10 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 10 Nov 2008 10:51:37 -0430
Source: libmoose-perl
Binary: libmoose-perl
Architecture: source all
Version: 0.61-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libmoose-perl - Extension of the Perl 5 object system
Changes: 
 libmoose-perl (0.61-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Refreshed debian/copyright.
   * Added me as Uploader.
 .
   [ gregor herrmann ]
   * Bump versioned (build) dependency on libclass-mop-perl to = 0.68.
Checksums-Sha1: 
 d9a267df1413ce1e579d3085afe3cd6a089129c5 1856 libmoose-perl_0.61-1.dsc
 3a5cad3cd4b8711fa17eecd2b1d1002dfdd6dce1 252900 libmoose-perl_0.61.orig.tar.gz
 03ab847fbd7796567fcd3c13d565244c0c74df1e 5132 libmoose-perl_0.61-1.diff.gz
 6bd0a7c18a7fb5390a7b04ab047d3d3ab4633cdc 402638 libmoose-perl_0.61-1_all.deb
Checksums-Sha256: 
 c224f6fb53585502422466e5a954d1412a57fa17660c0c97f173d4ca61718a3f 1856 
libmoose-perl_0.61-1.dsc
 6f2af5f67e0ec144743369029217b41e6fc5b61f9760fb2b486a42db8de75256 252900 
libmoose-perl_0.61.orig.tar.gz
 fc0a0927b450ec37232fc830ded06b6e6ec280584dc2b0caa506d853ce830200 5132 
libmoose-perl_0.61-1.diff.gz
 bfee810af08671a95181d10543608a300df3967972b2657c6e9a3538a1904eae 402638 
libmoose-perl_0.61-1_all.deb
Files: 
 7d5bad472e309d7cf35d3acc2bd78083 1856 perl optional libmoose-perl_0.61-1.dsc
 f0de59b6ebe644b05caf2be22bb08dc0 252900 perl optional 
libmoose-perl_0.61.orig.tar.gz
 3cfcbcd46b0353b1c697afef82fe2749 5132 perl optional 
libmoose-perl_0.61-1.diff.gz
 6391746bc9677c59d368aff34a685c5d 402638 perl optional 
libmoose-perl_0.61-1_all.deb

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

iEYEARECAAYFAkkYhIYACgkQOzKYnQDzz+Ss+wCg7CcxDsHSdQ0QCRiUUhRe7lp3
VfgAn2FUQGZCT4DqmG2S6l2S06k0NBkR
=qhxe
-END PGP SIGNATURE-


Accepted:
libmoose-perl_0.61-1.diff.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.61-1.diff.gz
libmoose-perl_0.61-1.dsc
  to pool/main/libm/libmoose-perl/libmoose-perl_0.61-1.dsc
libmoose-perl_0.61-1_all.deb
  to pool/main/libm/libmoose-perl/libmoose-perl_0.61-1_all.deb
libmoose-perl_0.61.orig.tar.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.61.orig.tar.gz


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



Accepted libmouse-perl 0.11-1 (source all)

2008-11-10 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 10 Nov 2008 10:55:26 -0430
Source: libmouse-perl
Binary: libmouse-perl
Architecture: source all
Version: 0.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libmouse-perl - lightweight object framework for Perl
Changes: 
 libmouse-perl (0.11-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Added me as uploader.
 .
   [ gregor herrmann ]
   * debian/control: start short description with a lower-case letter.
Checksums-Sha1: 
 e11fda06257b0fa97c1f4712531bf4d23113c066 1377 libmouse-perl_0.11-1.dsc
 c1befd1473ecb89c2d673e4699bc17a8571dd9fe 50205 libmouse-perl_0.11.orig.tar.gz
 9816fdd34acf2e8f71b6034442d3934267b3ad4e 2115 libmouse-perl_0.11-1.diff.gz
 a8d9c2831efe6826580f6c4ea7adfb1b592cd16f 46476 libmouse-perl_0.11-1_all.deb
Checksums-Sha256: 
 311834ffcd1cce42d87ee9ecbedccae3bcaadff42a2ac01aff552ea0c9893665 1377 
libmouse-perl_0.11-1.dsc
 14171dd7d03338e1ad9991d52146144979b28b4383e15134ad395fa6a6ec2d62 50205 
libmouse-perl_0.11.orig.tar.gz
 b56f02c6517584d9577cdbb5f37872ef42a20baf6e1b18746c9be294e714afa7 2115 
libmouse-perl_0.11-1.diff.gz
 6a9e508ee443f9ad62702478eecee1717266b6b075e0b78a38535bd152a21546 46476 
libmouse-perl_0.11-1_all.deb
Files: 
 61fdc356fba70705486216a504d20a1b 1377 perl optional libmouse-perl_0.11-1.dsc
 2431bfe3d308b9b2edc0ac162fc4acf8 50205 perl optional 
libmouse-perl_0.11.orig.tar.gz
 c91d39bd326ebd923773a9bfca154b78 2115 perl optional 
libmouse-perl_0.11-1.diff.gz
 a75fef700deb5c8ed96d57174091d7b8 46476 perl optional 
libmouse-perl_0.11-1_all.deb

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

iEYEARECAAYFAkkYhg8ACgkQOzKYnQDzz+TaZACggunxu6kdw4JY3H8Y8hVhBfwZ
JygAoJ0IOM/EioZkkMmJvQV1lb028eK7
=4QGV
-END PGP SIGNATURE-


Accepted:
libmouse-perl_0.11-1.diff.gz
  to pool/main/libm/libmouse-perl/libmouse-perl_0.11-1.diff.gz
libmouse-perl_0.11-1.dsc
  to pool/main/libm/libmouse-perl/libmouse-perl_0.11-1.dsc
libmouse-perl_0.11-1_all.deb
  to pool/main/libm/libmouse-perl/libmouse-perl_0.11-1_all.deb
libmouse-perl_0.11.orig.tar.gz
  to pool/main/libm/libmouse-perl/libmouse-perl_0.11.orig.tar.gz


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



Accepted liblocale-maketext-lexicon-perl 0.73-1 (source all)

2008-11-09 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Nov 2008 23:32:53 -0430
Source: liblocale-maketext-lexicon-perl
Binary: liblocale-maketext-lexicon-perl
Architecture: source all
Version: 0.73-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 liblocale-maketext-lexicon-perl - Lexicon-handling backends for 
Locale::Maketext
Changes: 
 liblocale-maketext-lexicon-perl (0.73-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/watch: Fixed, now there's only one URL from where to fetch
   the tarball, the dist-based.
   * Added me as Uploader.
   * Refreshed debian/copyright.
 .
   [ gregor herrmann ]
   * debian/control:
 - add libtest-pod-perl to enable an additional test
 - mention module name in long description
 - add packages for recommended modules to Suggests:
Checksums-Sha1: 
 6857cbdf37d9c88bd3c0fe495a59614703052df1 1664 
liblocale-maketext-lexicon-perl_0.73-1.dsc
 e29e2a1e6ffa884ac8e86e8d441379f95f66ed44 103374 
liblocale-maketext-lexicon-perl_0.73.orig.tar.gz
 b55b44898bc8a1c46b47d980ce3c5cb61eeffc44 5430 
liblocale-maketext-lexicon-perl_0.73-1.diff.gz
 11db7ee12fa881236f458553c8a75242e6e3278a 92154 
liblocale-maketext-lexicon-perl_0.73-1_all.deb
Checksums-Sha256: 
 feb84c7d3ed1940e1d98c9c7017398bdda084696bfa2a7286e8de658211ee09a 1664 
liblocale-maketext-lexicon-perl_0.73-1.dsc
 d1fd3a39c93878470592a21eb06f19276aed9777331a6e5edb821db9756d7aab 103374 
liblocale-maketext-lexicon-perl_0.73.orig.tar.gz
 812cdb2b4f2fef6473b1d16a9f008ac88935e0ed26519d30b3900403647dc849 5430 
liblocale-maketext-lexicon-perl_0.73-1.diff.gz
 487ce0a196223a519438f440dfa6aa62e0ba4a8f5891029d926521018a993fca 92154 
liblocale-maketext-lexicon-perl_0.73-1_all.deb
Files: 
 b023a909bee9f818e2ef3588bdaa78bb 1664 perl optional 
liblocale-maketext-lexicon-perl_0.73-1.dsc
 5ee1182ce5c8e91593b09eecc1d6d2a9 103374 perl optional 
liblocale-maketext-lexicon-perl_0.73.orig.tar.gz
 23bcaa158104f618f4699abbc0ac6950 5430 perl optional 
liblocale-maketext-lexicon-perl_0.73-1.diff.gz
 17857e788ca65b80c5cdf796d831b9a9 92154 perl optional 
liblocale-maketext-lexicon-perl_0.73-1_all.deb

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

iEYEARECAAYFAkkXc1EACgkQOzKYnQDzz+Sp7wCg2eDDew6ARVivoL8xxrpgq2Mw
QP4AoLBPC0KiRBy/NPmvW9KNlMDh8ST+
=Grq6
-END PGP SIGNATURE-


Accepted:
liblocale-maketext-lexicon-perl_0.73-1.diff.gz
  to 
pool/main/libl/liblocale-maketext-lexicon-perl/liblocale-maketext-lexicon-perl_0.73-1.diff.gz
liblocale-maketext-lexicon-perl_0.73-1.dsc
  to 
pool/main/libl/liblocale-maketext-lexicon-perl/liblocale-maketext-lexicon-perl_0.73-1.dsc
liblocale-maketext-lexicon-perl_0.73-1_all.deb
  to 
pool/main/libl/liblocale-maketext-lexicon-perl/liblocale-maketext-lexicon-perl_0.73-1_all.deb
liblocale-maketext-lexicon-perl_0.73.orig.tar.gz
  to 
pool/main/libl/liblocale-maketext-lexicon-perl/liblocale-maketext-lexicon-perl_0.73.orig.tar.gz


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



Accepted libnet-rawip-perl 0.25-1 (source i386)

2008-11-06 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 01:56:53 -0430
Source: libnet-rawip-perl
Binary: libnet-rawip-perl
Architecture: source i386
Version: 0.25-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libnet-rawip-perl - Perl interface to lowlevel TCP/IP
Changes: 
 libnet-rawip-perl (0.25-1) unstable; urgency=low
 .
   [ Franck Joncourt ]
   * Removed liblist-moreutils-perl from dependencies.
 .
   [ gregor herrmann ]
   * Add debian/README.source to document quilt usage, as required by
 Debian Policy since 3.8.0.
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Refreshed tests_no_network.patch to accomplish latest t/iflist.t.
   * Added me as uploader.
   * Refreshed debian/copyright.
   * Switched to debhelper v7, updated debian/{rules,control,compat}.
   * Deleted CDBS as build-depend.
 .
   [ gregor herrmann ]
   * Add patch fix_pod.patch to fix a POD error.
   * debian/control: minor typo/wording fixes.
Checksums-Sha1: 
 2e8e1ed7b03f5dd534d9ceb15a4d544ea9fe5630 1447 libnet-rawip-perl_0.25-1.dsc
 e1e2a85374436e314bce7cfb091415ebf72e6fba 43474 
libnet-rawip-perl_0.25.orig.tar.gz
 e4fbf3987b4c17e96a4d45465ef9553e4eaac8a2 3889 libnet-rawip-perl_0.25-1.diff.gz
 d2e3e6dcd33fbdf7e4ff6110d1d22cb70266a2c4 74538 
libnet-rawip-perl_0.25-1_i386.deb
Checksums-Sha256: 
 524358a8b0bbbfa388ff19b5d856d0444b522ccd0678d356bf04831f37e5c047 1447 
libnet-rawip-perl_0.25-1.dsc
 6d104b2f0e453eff7a1b479c528798670b15729ed6ecf41430405ff6d7e1ee58 43474 
libnet-rawip-perl_0.25.orig.tar.gz
 66ffe588871dcfa47a124607b037aebd1ea4dcd12ad380fe6c37f173ac13e845 3889 
libnet-rawip-perl_0.25-1.diff.gz
 fe56139957baa54defd60503bde82d47cecc99198f9ebd715deccb944f3c9edf 74538 
libnet-rawip-perl_0.25-1_i386.deb
Files: 
 848b1247668cb4fbaa3a99a04c013d6e 1447 perl extra libnet-rawip-perl_0.25-1.dsc
 a99f461e20e7894154f64729a4652448 43474 perl extra 
libnet-rawip-perl_0.25.orig.tar.gz
 27f42ce5b7115b0a4d1a5f06e5ac7147 3889 perl extra 
libnet-rawip-perl_0.25-1.diff.gz
 fb090f4bd003dbbdc60c2cfe7aa0edb3 74538 perl extra 
libnet-rawip-perl_0.25-1_i386.deb

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

iEYEARECAAYFAkkTXAwACgkQOzKYnQDzz+QJFwCfZKS/TrT1kxjQ/whSzh9WD4Ig
+y8AoLPzHLdZZGWuyuLx51JJC1zaMGI4
=Hole
-END PGP SIGNATURE-


Accepted:
libnet-rawip-perl_0.25-1.diff.gz
  to pool/main/libn/libnet-rawip-perl/libnet-rawip-perl_0.25-1.diff.gz
libnet-rawip-perl_0.25-1.dsc
  to pool/main/libn/libnet-rawip-perl/libnet-rawip-perl_0.25-1.dsc
libnet-rawip-perl_0.25-1_i386.deb
  to pool/main/libn/libnet-rawip-perl/libnet-rawip-perl_0.25-1_i386.deb
libnet-rawip-perl_0.25.orig.tar.gz
  to pool/main/libn/libnet-rawip-perl/libnet-rawip-perl_0.25.orig.tar.gz


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



Accepted libtext-csv-xs-perl 0.58-1 (source i386)

2008-11-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 03:11:29 -0430
Source: libtext-csv-xs-perl
Binary: libtext-csv-xs-perl
Architecture: source i386
Version: 0.58-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libtext-csv-xs-perl - perl Text::CSV_XS - comma-separated values manipulation 
routines
Changes: 
 libtext-csv-xs-perl (0.58-1) unstable; urgency=low
 .
   * New upstream release.
   * Added me as uploader.
Checksums-Sha1: 
 0399101f362e04107b94385de8834935e45c6146 1616 libtext-csv-xs-perl_0.58-1.dsc
 cdfd1ede9124e2feee065bff982ff4e615f89ae4 92891 
libtext-csv-xs-perl_0.58.orig.tar.gz
 9141b1968cad5d5b93b8bc86acaae284b6c454e7 4976 
libtext-csv-xs-perl_0.58-1.diff.gz
 62090382405ff9bca20718fd184c184b2d78906e 64360 
libtext-csv-xs-perl_0.58-1_i386.deb
Checksums-Sha256: 
 e0edda11d653a121fcf60de5f544b0d558d1b6f27019c9bfa0418192a23ad211 1616 
libtext-csv-xs-perl_0.58-1.dsc
 4bfee8c947495f0f0c994abda0056f14f24f9ba0acde971efebe143326223fbe 92891 
libtext-csv-xs-perl_0.58.orig.tar.gz
 20ab89c8d20bd9d3040ea42a6d922a9a69f65b64f22bb3fa520bde9ab5463e18 4976 
libtext-csv-xs-perl_0.58-1.diff.gz
 d114d3f18daeaf5a6ba59bb7a73cc3f215d57328edddeca10e4f63e5c83aa59e 64360 
libtext-csv-xs-perl_0.58-1_i386.deb
Files: 
 40fd9da4c91dbd05b622719f05bccb16 1616 perl optional 
libtext-csv-xs-perl_0.58-1.dsc
 0a60b6423f752220716dc0672b482055 92891 perl optional 
libtext-csv-xs-perl_0.58.orig.tar.gz
 151da67c6cd55ac150126e701f28f88d 4976 perl optional 
libtext-csv-xs-perl_0.58-1.diff.gz
 a58d61cc3302b14af5c5c5506aa05086 64360 perl optional 
libtext-csv-xs-perl_0.58-1_i386.deb

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

iEYEARECAAYFAkkPcxsACgkQOzKYnQDzz+Tp6gCfV+ZqkwKc69Sjad6tiZrnNoec
et8An058kwZ2hP2WGUNulvoohocOLulm
=FLtg
-END PGP SIGNATURE-


Accepted:
libtext-csv-xs-perl_0.58-1.diff.gz
  to pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_0.58-1.diff.gz
libtext-csv-xs-perl_0.58-1.dsc
  to pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_0.58-1.dsc
libtext-csv-xs-perl_0.58-1_i386.deb
  to pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_0.58-1_i386.deb
libtext-csv-xs-perl_0.58.orig.tar.gz
  to pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_0.58.orig.tar.gz


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



Accepted libdevel-ebug-perl 0.49-1 (source all)

2008-11-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 22:43:04 -0430
Source: libdevel-ebug-perl
Binary: libdevel-ebug-perl
Architecture: source all
Version: 0.49-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libdevel-ebug-perl - simple, extensible Perl debugger
Changes: 
 libdevel-ebug-perl (0.49-1) unstable; urgency=low
 .
   [ Martín Ferrari ]
   * Updating my email address
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/copyright: Updated a little bit according to
   wiki.debian.org/Proposals/CopyrightFormat
   * debian/control:
+ bumped to 3.8.0, changes already applied.
+ Added me as uploader.
   * debian/patches/Makefile.PL.patch:
+ Updated so apply to the new Makefile.PL
   * Switched to debhelper v7, updated debian/rules, debian/compat and
   debian/control debhelper dependency to =7.
 .
   [ gregor herrmann ]
   * debian/copyright: update years of upstream copyright; editorial changes.
   * debian/control:
 - change my email address
 - remove cdbs build dependencies; replaced by dh7
 - short description: don't start with a capital letter
 - long desciption: remove spurious last line which looked like a
   copypaste error
   * Remove patches and quilt from build dependencies, dh7 handles the build
 just fine. Remove also debian/README.source.
   * debian/rules: call `perl Build install' manually to work around
 installation of .packlist file.
Checksums-Sha1: 
 cfc06a6c56efd548bda68a04bf687ee27802b94e 1696 libdevel-ebug-perl_0.49-1.dsc
 224319f5e68e157a71ee8770fd9ca32a684c0d4b 25928 
libdevel-ebug-perl_0.49.orig.tar.gz
 19435e2122b9cf75c26b536473d168154b0df833 2922 libdevel-ebug-perl_0.49-1.diff.gz
 a30fda224a3eda9e81c23d72aa88d797a821b75c 37888 
libdevel-ebug-perl_0.49-1_all.deb
Checksums-Sha256: 
 e9a3509f440eb9b7e6a7929eebeb3c34f83d1fdc405063f67e4b058ad64aa0e9 1696 
libdevel-ebug-perl_0.49-1.dsc
 02295bc410dd17536047afccf1a3d309347fc450321b9971c89695fd5523c975 25928 
libdevel-ebug-perl_0.49.orig.tar.gz
 82d7fd8df62930796910af11678baf1a6cf4ec1ec7603b09f8f42d19196da678 2922 
libdevel-ebug-perl_0.49-1.diff.gz
 2383eec1ffc52fc9ffd0e93d9048bd1694c154a83a4a107c3941191506f66600 37888 
libdevel-ebug-perl_0.49-1_all.deb
Files: 
 3a6595a202a6a89beb9e0f72f816668c 1696 perl optional 
libdevel-ebug-perl_0.49-1.dsc
 dc63f74ebbbe677353b2457ac30377e6 25928 perl optional 
libdevel-ebug-perl_0.49.orig.tar.gz
 09b052c4fff937ebcb82a3b9c799f957 2922 perl optional 
libdevel-ebug-perl_0.49-1.diff.gz
 e38cfe5488715ed125c5f6342cdf18e0 37888 perl optional 
libdevel-ebug-perl_0.49-1_all.deb

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

iEYEARECAAYFAkkPelEACgkQOzKYnQDzz+RKBQCeNOc0N7U5iTGID+YQcVPTuyl+
0g8AnRX/IgTjoSuwnGfCzEFcqsfuxlYv
=mJtD
-END PGP SIGNATURE-


Accepted:
libdevel-ebug-perl_0.49-1.diff.gz
  to pool/main/libd/libdevel-ebug-perl/libdevel-ebug-perl_0.49-1.diff.gz
libdevel-ebug-perl_0.49-1.dsc
  to pool/main/libd/libdevel-ebug-perl/libdevel-ebug-perl_0.49-1.dsc
libdevel-ebug-perl_0.49-1_all.deb
  to pool/main/libd/libdevel-ebug-perl/libdevel-ebug-perl_0.49-1_all.deb
libdevel-ebug-perl_0.49.orig.tar.gz
  to pool/main/libd/libdevel-ebug-perl/libdevel-ebug-perl_0.49.orig.tar.gz


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



Accepted libnet-sip-perl 0.50-1 (source all)

2008-11-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 02:23:24 -0430
Source: libnet-sip-perl
Binary: libnet-sip-perl
Architecture: source all
Version: 0.50-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libnet-sip-perl - SIP handler Perl module
Changes: 
 libnet-sip-perl (0.50-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
 .
   [ gregor herrmann ]
   * debian/copyright: remove Debian Perl Group from packaging copyright, refer
 to members.
Checksums-Sha1: 
 aa69be5d68538ce4f3c799e74cfe03a3260095cc 1486 libnet-sip-perl_0.50-1.dsc
 24a6138acb828c0b54c87f84843d441744730411 140243 
libnet-sip-perl_0.50.orig.tar.gz
 31fa9b2746ed12e7a059c3eebe603d012b7d6aa0 3686 libnet-sip-perl_0.50-1.diff.gz
 70bdf281ace990ccd0ac67cef5e30ae2dd0103a0 225938 libnet-sip-perl_0.50-1_all.deb
Checksums-Sha256: 
 d7fdd0060199ceec9ae7b807e71724543d783d4e402442b9ef7f8c006c44b668 1486 
libnet-sip-perl_0.50-1.dsc
 7bc6d638488485bde0cff9018af4f14927233e2b6a5b622faa3328813e0524df 140243 
libnet-sip-perl_0.50.orig.tar.gz
 8e99dc27978706ef081b4c5954a792be1e7d549a100e74b63cba1ed376e6ea4c 3686 
libnet-sip-perl_0.50-1.diff.gz
 2484363ac0c915ae48da1c7747e4dc5c38043da41f75bba678d460b64a477db7 225938 
libnet-sip-perl_0.50-1_all.deb
Files: 
 59deac5281bbabfbad6866a29218d5b3 1486 perl optional libnet-sip-perl_0.50-1.dsc
 0532c51117afff2b4ab8fcc740c3fc74 140243 perl optional 
libnet-sip-perl_0.50.orig.tar.gz
 225968a795c0b347ff5b6629188274da 3686 perl optional 
libnet-sip-perl_0.50-1.diff.gz
 9ffcb9729eaaa7489d47ab8fa280b7f2 225938 perl optional 
libnet-sip-perl_0.50-1_all.deb

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

iEYEARECAAYFAkkPfQEACgkQOzKYnQDzz+RnXACfWWMaKs3n+tlGKt/E8hfLKr02
6jEAoLTenOWiJIxcwVGjtPuHbnlpfCxq
=boW9
-END PGP SIGNATURE-


Accepted:
libnet-sip-perl_0.50-1.diff.gz
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.50-1.diff.gz
libnet-sip-perl_0.50-1.dsc
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.50-1.dsc
libnet-sip-perl_0.50-1_all.deb
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.50-1_all.deb
libnet-sip-perl_0.50.orig.tar.gz
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.50.orig.tar.gz


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



Accepted libspreadsheet-read-perl 0.29-1 (source all)

2008-11-03 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 03:37:27 -0430
Source: libspreadsheet-read-perl
Binary: libspreadsheet-read-perl
Architecture: source all
Version: 0.29-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libspreadsheet-read-perl - Read common spreadsheet formats and return the data
Changes: 
 libspreadsheet-read-perl (0.29-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Added me as uploader.
 .
   [ gregor herrmann ]
   * debian/control:
 - bump versioned Recommends on libtext-csv-xs-perl to 0.56
 - make build dependencies versioned too
 - wrap a long line
Checksums-Sha1: 
 c6e7ef00baa3426cfc9a94b81cdc57ce781ec7a2 1597 
libspreadsheet-read-perl_0.29-1.dsc
 5a16c119d4914e6492e467a9ca8881dd1a013bf9 70412 
libspreadsheet-read-perl_0.29.orig.tar.gz
 27783cf0c7489abff36041af550d8937063cb537 2076 
libspreadsheet-read-perl_0.29-1.diff.gz
 079ab1820c34a9e63423aefea4b0772fdf7944c7 25868 
libspreadsheet-read-perl_0.29-1_all.deb
Checksums-Sha256: 
 0292952b8d62add55b51502df8bb50e53bb525917f4e210eba553d7e23b28dbb 1597 
libspreadsheet-read-perl_0.29-1.dsc
 2ab84008e371749e628e87eba55b806eda8e52766455c900b19ad3fa3de4a063 70412 
libspreadsheet-read-perl_0.29.orig.tar.gz
 e12a49d2a0024c8033cfae8b7a7c95006559bed030fb8bdf9ee02e9158fa543b 2076 
libspreadsheet-read-perl_0.29-1.diff.gz
 79ad46a5a1b25b92cac109cd5f67e4dbc9bf67fb5b17b2f817c215227b684354 25868 
libspreadsheet-read-perl_0.29-1_all.deb
Files: 
 1a911e310557d8a6b7d41c491c35d3d5 1597 perl optional 
libspreadsheet-read-perl_0.29-1.dsc
 b5eff92aac4719a67781a3955f88a9ae 70412 perl optional 
libspreadsheet-read-perl_0.29.orig.tar.gz
 19dde264c9046801e3ebf8f6a45306e7 2076 perl optional 
libspreadsheet-read-perl_0.29-1.diff.gz
 f51d6355266707847d0783c788d4da54 25868 perl optional 
libspreadsheet-read-perl_0.29-1_all.deb

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

iEYEARECAAYFAkkPf7oACgkQOzKYnQDzz+QKLwCZAWjtkzwmu2e4lov80lsm/n7W
EQ8AnRR0EeofGtzm/DoD2kyGTtyab1CS
=XXe9
-END PGP SIGNATURE-


Accepted:
libspreadsheet-read-perl_0.29-1.diff.gz
  to 
pool/main/libs/libspreadsheet-read-perl/libspreadsheet-read-perl_0.29-1.diff.gz
libspreadsheet-read-perl_0.29-1.dsc
  to pool/main/libs/libspreadsheet-read-perl/libspreadsheet-read-perl_0.29-1.dsc
libspreadsheet-read-perl_0.29-1_all.deb
  to 
pool/main/libs/libspreadsheet-read-perl/libspreadsheet-read-perl_0.29-1_all.deb
libspreadsheet-read-perl_0.29.orig.tar.gz
  to 
pool/main/libs/libspreadsheet-read-perl/libspreadsheet-read-perl_0.29.orig.tar.gz


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



Accepted libxml-atom-perl 0.29-1 (source all)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Nov 2008 03:28:32 -0430
Source: libxml-atom-perl
Binary: libxml-atom-perl
Architecture: source all
Version: 0.29-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libxml-atom-perl - Atom feed and API implementation
Changes: 
 libxml-atom-perl (0.29-1) unstable; urgency=low
 .
   [ David Paleino ]
   * debian/control: removed myself from Uploaders
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Switched to debhelper v7, updated debian/rules, debian/compat and build
 dependencies to debhelper = 7 on debian/control.
   * Bumped to Standards-Version 3.8.0 wo/ changes needed.
   * debian/copyright: Updated formatting.
   * Added me as Uploader.
 .
   [ gregor herrmann ]
   * debian/watch: extended regexp for matching upstream releases.
   * debian/copyright:
 - Perl is licensed under GPL-1+, not GPL-2+
 - add information for files under inc/
 - add Upstream-Name header
   * debian/control:
 - change my email address
 - re-wrap a long line
 - remove a spurious space
Checksums-Sha1: 
 9ecadfd2f57731011bf8300c3fe3b7e752eeed78 1689 libxml-atom-perl_0.29-1.dsc
 bfb70711a52f3b0dc3a55c9ba77816c318bfec04 66343 
libxml-atom-perl_0.29.orig.tar.gz
 1385f4be3f0539152a66f0f2ecc553676b09ab7d 3155 libxml-atom-perl_0.29-1.diff.gz
 af96071da8211cb89feb9b52b8c6692842c2a1b2 47282 libxml-atom-perl_0.29-1_all.deb
Checksums-Sha256: 
 36b803ff8d0bbc9420ca5592621204390676da46e84edf752c9c9d7b80b8915e 1689 
libxml-atom-perl_0.29-1.dsc
 329a5ef7f59d6ed2b139b064d4bee8e8e06c61862faf4cbd489407e47c5c8952 66343 
libxml-atom-perl_0.29.orig.tar.gz
 97297190ceee5c557896b64a44737059ee4354c4651b93c49aa5bc6b3b5312c5 3155 
libxml-atom-perl_0.29-1.diff.gz
 1f124ac973d4474fd01e4c83a737bd7fbe0e5a449b710945324f4a0c151222be 47282 
libxml-atom-perl_0.29-1_all.deb
Files: 
 aa7deee2ab6823a1d622aa31f1022f91 1689 perl optional libxml-atom-perl_0.29-1.dsc
 a48608130ace3b79b73ada0130369cda 66343 perl optional 
libxml-atom-perl_0.29.orig.tar.gz
 188371aa64908ba44eabf6ece2070bc0 3155 perl optional 
libxml-atom-perl_0.29-1.diff.gz
 5804ca24cf4169d9366a40e98b42ca7f 47282 perl optional 
libxml-atom-perl_0.29-1_all.deb

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

iEYEARECAAYFAkkNylkACgkQOzKYnQDzz+Qb9ACfQVUuuOnebpwTJR22tsnAC6/M
OnoAoMdZIYOV7c6jVqEUaYaze/6Dy6L0
=0hCG
-END PGP SIGNATURE-


Accepted:
libxml-atom-perl_0.29-1.diff.gz
  to pool/main/libx/libxml-atom-perl/libxml-atom-perl_0.29-1.diff.gz
libxml-atom-perl_0.29-1.dsc
  to pool/main/libx/libxml-atom-perl/libxml-atom-perl_0.29-1.dsc
libxml-atom-perl_0.29-1_all.deb
  to pool/main/libx/libxml-atom-perl/libxml-atom-perl_0.29-1_all.deb
libxml-atom-perl_0.29.orig.tar.gz
  to pool/main/libx/libxml-atom-perl/libxml-atom-perl_0.29.orig.tar.gz


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



Accepted libxml-parser-lite-tree-perl 0.08-1 (source all)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 01:23:24 -0430
Source: libxml-parser-lite-tree-perl
Binary: libxml-parser-lite-tree-perl
Architecture: source all
Version: 0.08-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libxml-parser-lite-tree-perl - lightweight XML tree builder
Changes: 
 libxml-parser-lite-tree-perl (0.08-1) unstable; urgency=low
 .
   [ Martín Ferrari ]
   * Fix priority to match archive override (optional - extra).
   * Updating my email address
 .
   [ David Paleino ]
   * debian/control: removed myself from Uploaders
 .
   [ gregor herrmann ]
   * New upstream release.
   * Add /me to Uploaders.
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}. Drop cdbs.
   * debian/copyright: switch to new format; add information about the newly
 added lib/XML/Parser/LiteCopy.pm.
   * Set Standards-Version to 3.8.0 (no changes).
   * Add patch XML-Parser-Lite.patch to use the original XML::Parser::Lite
 instead of the embedded copy; add quilt framework and
 debian/README.source. Remove the embedded copy from the binary package in
 debian/rules.
   * Don't install README any more.
 .
   [ Jose Luis Rivas ]
   * Relicensed debian/* to Artistic
 .
   [ gregor herrmann ]
   * debian/watch: extended regexp for matching upstream releases.
   * debian/control:
 - add ${misc:Depends} to Depends:
 - long description: mention module name
 - short description: don't start with a capital letter
Checksums-Sha1: 
 eeb017b77024425a4449846bce849358d47aadb6 1548 
libxml-parser-lite-tree-perl_0.08-1.dsc
 756a24d0c3266246d5a03dd80618ffbb17ba8150 8378 
libxml-parser-lite-tree-perl_0.08.orig.tar.gz
 797fffd674d4323b40d68274b1f156a7a588dee8 2832 
libxml-parser-lite-tree-perl_0.08-1.diff.gz
 01312c2b04ae9d467c25a046dbdcb58fd16db8be 8310 
libxml-parser-lite-tree-perl_0.08-1_all.deb
Checksums-Sha256: 
 6f976616fffd1a8ae033b0aac8dd4149bab8d6f7cb785f89574635d60df1db87 1548 
libxml-parser-lite-tree-perl_0.08-1.dsc
 ad8b43840daaa0e89e3dbaa5386bac6b135638c11729d6d0c5907c059a40c174 8378 
libxml-parser-lite-tree-perl_0.08.orig.tar.gz
 2056e4017fe6abc6f275edec203435e2aacbe2de233d46dee2caa97dfdea8148 2832 
libxml-parser-lite-tree-perl_0.08-1.diff.gz
 eba6d76a81176f06fe62a54b884b7faef2a5337972cf7aa68cc5a154efafb199 8310 
libxml-parser-lite-tree-perl_0.08-1_all.deb
Files: 
 1402d98269985fb33f03216633a17dd4 1548 perl extra 
libxml-parser-lite-tree-perl_0.08-1.dsc
 9db206c8bbe195d63ef9637a91538f05 8378 perl extra 
libxml-parser-lite-tree-perl_0.08.orig.tar.gz
 1e9de0e9aa87286272b31affe55de05b 2832 perl extra 
libxml-parser-lite-tree-perl_0.08-1.diff.gz
 ebac4b2f0a4cefacfc0892977e3e3254 8310 perl extra 
libxml-parser-lite-tree-perl_0.08-1_all.deb

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

iEYEARECAAYFAkkNzScACgkQOzKYnQDzz+Sl6gCgq+4jRUL4J8MpwgaOOdAqkApg
SZkAn10whyvsdBRlnM5Rc1drkimCgawH
=ALFb
-END PGP SIGNATURE-


Accepted:
libxml-parser-lite-tree-perl_0.08-1.diff.gz
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.08-1.diff.gz
libxml-parser-lite-tree-perl_0.08-1.dsc
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.08-1.dsc
libxml-parser-lite-tree-perl_0.08-1_all.deb
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.08-1_all.deb
libxml-parser-lite-tree-perl_0.08.orig.tar.gz
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.08.orig.tar.gz


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



Accepted libconfig-json-perl 1.3.0-1 (source all)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 16:15:33 -0430
Source: libconfig-json-perl
Binary: libconfig-json-perl
Architecture: source all
Version: 1.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libconfig-json-perl - parser for JSON-based configuration files
Changes: 
 libconfig-json-perl (1.3.0-1) unstable; urgency=low
 .
   [ Ernesto Hernández-Novich (USB) ]
   * New upstream release
 .
   [ Jose Luis Rivas ]
   * debian/control:
+ Standard-Versions 3.8.0 (no changes needed).
+ Added me as uploader.
 .
   [ gregor herrmann ]
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
   * debian/copyright: refresh formatting.
   * debian/control: remove leading article from short description.
Checksums-Sha1: 
 9f9b03b1dcb146ac0cd2555af064b48bb5d9ca95 1467 libconfig-json-perl_1.3.0-1.dsc
 07a079298a8191a60ca23428a6402ae662a0bec0 10537 
libconfig-json-perl_1.3.0.orig.tar.gz
 0ce90cbaffabc869a427fa09e7c984ca08c5c12c 1591 
libconfig-json-perl_1.3.0-1.diff.gz
 6864a483abbf7117f5dbea53bcd3220447cfcb7a 14612 
libconfig-json-perl_1.3.0-1_all.deb
Checksums-Sha256: 
 75ab432f3b652508b1c1b40105d4113f60e2256abc0d3f0631c931c19f53ec9d 1467 
libconfig-json-perl_1.3.0-1.dsc
 ca94d7542592ece014c5dea4da9339506ef90d70dab262863c5990c83256f21e 10537 
libconfig-json-perl_1.3.0.orig.tar.gz
 21d01e25b0dc36d2aaa9687ff1b592d9f2c31e116953053f94826a44438e17c0 1591 
libconfig-json-perl_1.3.0-1.diff.gz
 49e8983c097bc47ba18da126f02b6b31ebd4612b07d0009e5d8402e35741fbe8 14612 
libconfig-json-perl_1.3.0-1_all.deb
Files: 
 806d99840720450c8fd0b7e2d4fa5b69 1467 perl optional 
libconfig-json-perl_1.3.0-1.dsc
 a547ad317c8806465a0fb48219e52433 10537 perl optional 
libconfig-json-perl_1.3.0.orig.tar.gz
 bee1360a2431fc80543e84f5c3e94766 1591 perl optional 
libconfig-json-perl_1.3.0-1.diff.gz
 5fc6593b612b5d29c0f07259be901d9e 14612 perl optional 
libconfig-json-perl_1.3.0-1_all.deb

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

iEYEARECAAYFAkkN66AACgkQOzKYnQDzz+RXJwCeJ+WYDkXmpv7fsF8cU0ReOUPH
WLEAoO6ClPGUxem3fmBZPBAoSuAVrUyJ
=3xDi
-END PGP SIGNATURE-


Accepted:
libconfig-json-perl_1.3.0-1.diff.gz
  to pool/main/libc/libconfig-json-perl/libconfig-json-perl_1.3.0-1.diff.gz
libconfig-json-perl_1.3.0-1.dsc
  to pool/main/libc/libconfig-json-perl/libconfig-json-perl_1.3.0-1.dsc
libconfig-json-perl_1.3.0-1_all.deb
  to pool/main/libc/libconfig-json-perl/libconfig-json-perl_1.3.0-1_all.deb
libconfig-json-perl_1.3.0.orig.tar.gz
  to pool/main/libc/libconfig-json-perl/libconfig-json-perl_1.3.0.orig.tar.gz


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



Accepted libaudio-mpd-common-perl 0.1.3-1 (source all)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 17:56:48 -0430
Source: libaudio-mpd-common-perl
Binary: libaudio-mpd-common-perl
Architecture: source all
Version: 0.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libaudio-mpd-common-perl - common perl helper classes for MPD
Changes: 
 libaudio-mpd-common-perl (0.1.3-1) unstable; urgency=low
 .
   [ Joey Hess ]
   * Use debhelper v7; 3 line rules file.
 .
   [ gregor herrmann ]
   * debian/watch: use dist-based URL.
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Updated debian/copyright, added copyright for debian/*.
   * debian/control:
+ Bumped to 3.8.0 (No changes needed).
+ Added me as Uploader.
 .
   [ gregor herrmann ]
   * debian/rules: use the template from dh-make-perl.
   * debian/control:
 - split build dependencies into Build-Depends and Build-Depends-Indep
 - add libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep
   to enable additional tests
 - mention module name in long description
   * debian/copyright: add headers.
Checksums-Sha1: 
 50daf4e9ffaeaf537f0a02303e055df228916dac 1472 
libaudio-mpd-common-perl_0.1.3-1.dsc
 1a13d96be94170f79c25cf9fcd68c547fdf8145f 8405 
libaudio-mpd-common-perl_0.1.3.orig.tar.gz
 0ae2e3b088d8df7cd41002d8d67dc88acfc4d98c 1561 
libaudio-mpd-common-perl_0.1.3-1.diff.gz
 fe1c159cb8bc6888109c362a1a9d9c185eea7058 29312 
libaudio-mpd-common-perl_0.1.3-1_all.deb
Checksums-Sha256: 
 f637a2ce5a8857c6d8344d8a4ce86ebc546727a5cf48fd9c409f0c2b0caf7c35 1472 
libaudio-mpd-common-perl_0.1.3-1.dsc
 4b78cd573a9bddf1355108cce18560d73d11b1e9fa7313e675997d437bce6b41 8405 
libaudio-mpd-common-perl_0.1.3.orig.tar.gz
 f4663c0d44ad34deaee93568f06d2735755167bea6b9404e4b8f6522f8003b13 1561 
libaudio-mpd-common-perl_0.1.3-1.diff.gz
 2e94cd51aaca4a01eb5d57360a4a400b5e08823a2e62b52d513eb064dfa347b9 29312 
libaudio-mpd-common-perl_0.1.3-1_all.deb
Files: 
 b557db60367d78ed827cdd0503c3693e 1472 perl optional 
libaudio-mpd-common-perl_0.1.3-1.dsc
 30d319cb5acb5c3e066ccd63c3465549 8405 perl optional 
libaudio-mpd-common-perl_0.1.3.orig.tar.gz
 8f05be9ab40a5e4c1541c3f12fe0d43b 1561 perl optional 
libaudio-mpd-common-perl_0.1.3-1.diff.gz
 483427a75ced4d7eeea52914275877fb 29312 perl optional 
libaudio-mpd-common-perl_0.1.3-1_all.deb

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

iEYEARECAAYFAkkN6FkACgkQOzKYnQDzz+T89gCfZ+nhNhPRM1Xum50EWTZDpkcB
5UAAn32aKKdZ+hsN7LGEFKA2BI2G/d4w
=/bH7
-END PGP SIGNATURE-


Accepted:
libaudio-mpd-common-perl_0.1.3-1.diff.gz
  to 
pool/main/liba/libaudio-mpd-common-perl/libaudio-mpd-common-perl_0.1.3-1.diff.gz
libaudio-mpd-common-perl_0.1.3-1.dsc
  to 
pool/main/liba/libaudio-mpd-common-perl/libaudio-mpd-common-perl_0.1.3-1.dsc
libaudio-mpd-common-perl_0.1.3-1_all.deb
  to 
pool/main/liba/libaudio-mpd-common-perl/libaudio-mpd-common-perl_0.1.3-1_all.deb
libaudio-mpd-common-perl_0.1.3.orig.tar.gz
  to 
pool/main/liba/libaudio-mpd-common-perl/libaudio-mpd-common-perl_0.1.3.orig.tar.gz


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



Accepted libdevel-nytprof-perl 2.07-1 (source i386)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 22:59:57 -0430
Source: libdevel-nytprof-perl
Binary: libdevel-nytprof-perl
Architecture: source i386
Version: 2.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libdevel-nytprof-perl - perl source code profiler
Changes: 
 libdevel-nytprof-perl (2.07-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/control:
+ Added me as uploader.
   * debian/copyright:
+ Added Debian Perl Group copyright over debian/*.
 .
   [ gregor herrmann ]
   * debian/copyright: replace Debian Perl Group by Jose.
   * debian/libdevel-nytprof-perl.links: remove leading slashes, as per the
 examples in dh_link(1).
Checksums-Sha1: 
 c20ab56c50ff91c9fc5b86c0b9b67c389cfd20d5 1448 libdevel-nytprof-perl_2.07-1.dsc
 5d7e359cc8835cd0633fc71bde39712c3fee3667 168280 
libdevel-nytprof-perl_2.07.orig.tar.gz
 6dabdb81460b664e29d83ef54ffdac4708619176 2940 
libdevel-nytprof-perl_2.07-1.diff.gz
 d249da1a849c167d452aecaa798da83aa6688db7 172208 
libdevel-nytprof-perl_2.07-1_i386.deb
Checksums-Sha256: 
 ec02f161f1a35801bca4e7be5da0322db2481cedb3adf801fcb028a8f01248ca 1448 
libdevel-nytprof-perl_2.07-1.dsc
 bc9d2335abc71b9eac382c9456b7da19c2e7cdfb8108d1cd7be1a51ab6dca6ca 168280 
libdevel-nytprof-perl_2.07.orig.tar.gz
 c2b675738f7dc6a91b612340c5cf52dd5c117597ff78c15698930f6f2d83f902 2940 
libdevel-nytprof-perl_2.07-1.diff.gz
 f319dfa9eb6e26d3406e45d85d6bfc57a2b01bfad2422549937509d2064a 172208 
libdevel-nytprof-perl_2.07-1_i386.deb
Files: 
 dac551c8190c5381c96a99de2ead9d04 1448 perl optional 
libdevel-nytprof-perl_2.07-1.dsc
 6448c7a4dd78944c087f81b4278ffc63 168280 perl optional 
libdevel-nytprof-perl_2.07.orig.tar.gz
 cda4c0c87d76d6ed58b68213df9d87c1 2940 perl optional 
libdevel-nytprof-perl_2.07-1.diff.gz
 61d2d60cac451a9cdf1c8c1b0ee580e6 172208 perl optional 
libdevel-nytprof-perl_2.07-1_i386.deb

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

iEYEARECAAYFAkkN764ACgkQOzKYnQDzz+RKyQCgzgVAR+qaQjrpJQSA44+fRaKJ
O+8AoI7L0pkWAu9zDiIzYH8nBVeFOCAf
=9TW5
-END PGP SIGNATURE-


Accepted:
libdevel-nytprof-perl_2.07-1.diff.gz
  to pool/main/libd/libdevel-nytprof-perl/libdevel-nytprof-perl_2.07-1.diff.gz
libdevel-nytprof-perl_2.07-1.dsc
  to pool/main/libd/libdevel-nytprof-perl/libdevel-nytprof-perl_2.07-1.dsc
libdevel-nytprof-perl_2.07-1_i386.deb
  to pool/main/libd/libdevel-nytprof-perl/libdevel-nytprof-perl_2.07-1_i386.deb
libdevel-nytprof-perl_2.07.orig.tar.gz
  to pool/main/libd/libdevel-nytprof-perl/libdevel-nytprof-perl_2.07.orig.tar.gz


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



Accepted libexception-class-perl 1.26-1 (source all)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 17:03:50 -0430
Source: libexception-class-perl
Binary: libexception-class-perl
Architecture: source all
Version: 1.26-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libexception-class-perl - module that allows you to declare real exception 
classes in Perl
Changes: 
 libexception-class-perl (1.26-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/control:
+ Bumped to Standards-Version 3.8.0 (no changes needed).
+ Bumped dependencies to minimium required versions.
 .
   [ gregor herrmann ]
   * debian/control:
 - change my email address
 - wrap a long line
 - remove libmodule-build-perl, debhelper7 prefers MakeMaker
 - remove leading article and spurious space from short description
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
   * debian/copyright: switch to new format.
Checksums-Sha1: 
 7c23b24ba93c1c2cc1fa9f4111d01a35a111cad7 1578 
libexception-class-perl_1.26-1.dsc
 e24e67ad5b19266fd5b98023c4bb15df530439d0 24366 
libexception-class-perl_1.26.orig.tar.gz
 4220a6d2771d7c03396f158443238115f413cb0f 2577 
libexception-class-perl_1.26-1.diff.gz
 5f91e8984a053c9b336b8a62066fff06b298c587 25378 
libexception-class-perl_1.26-1_all.deb
Checksums-Sha256: 
 56145928830a34bada9368cf12574bc7de62e04bc00e3a0f2f2491ed9d361d06 1578 
libexception-class-perl_1.26-1.dsc
 ba36621dd1a03471447ecef4c1723c6c94d2a27b0e25c61b0acf2dc784bba4d7 24366 
libexception-class-perl_1.26.orig.tar.gz
 5ee8c9bcb3cce4266aa2a2a4c60b1013d4256564f6de3571fd85daec006cb6b9 2577 
libexception-class-perl_1.26-1.diff.gz
 0b55bbddbba71e6f4c39253d3bfd53b9d8381c1b04693499f7804aa7abb05485 25378 
libexception-class-perl_1.26-1_all.deb
Files: 
 dc72bd7a7ed7d719343dbffce6bf88ec 1578 perl optional 
libexception-class-perl_1.26-1.dsc
 362d428cae5dee785a9ed9ac91103a32 24366 perl optional 
libexception-class-perl_1.26.orig.tar.gz
 c9bf09e2b5c746735ce26ac7b12da5ca 2577 perl optional 
libexception-class-perl_1.26-1.diff.gz
 3811e25fe16039598298fa610412bab0 25378 perl optional 
libexception-class-perl_1.26-1_all.deb

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

iEYEARECAAYFAkkN8wcACgkQOzKYnQDzz+SYDACcCF6nA11ZO/PUHaWWne+81IB1
dz8AnA6E2dQBdf9gcyTaFDJKdipJE8eh
=wk2u
-END PGP SIGNATURE-


Accepted:
libexception-class-perl_1.26-1.diff.gz
  to 
pool/main/libe/libexception-class-perl/libexception-class-perl_1.26-1.diff.gz
libexception-class-perl_1.26-1.dsc
  to pool/main/libe/libexception-class-perl/libexception-class-perl_1.26-1.dsc
libexception-class-perl_1.26-1_all.deb
  to 
pool/main/libe/libexception-class-perl/libexception-class-perl_1.26-1_all.deb
libexception-class-perl_1.26.orig.tar.gz
  to 
pool/main/libe/libexception-class-perl/libexception-class-perl_1.26.orig.tar.gz


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



Accepted libfile-spec-perl 3.2900-1 (source i386)

2008-11-02 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 23:57:01 -0430
Source: libfile-spec-perl
Binary: libfile-spec-perl
Architecture: source i386
Version: 3.2900-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libfile-spec-perl - tools for working with paths and file specs across 
platforms
Changes: 
 libfile-spec-perl (3.2900-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Added me to uploaders.
   * Bumped to Standards-Version 3.8.0 (no changes needed).
 .
   [ gregor herrmann ]
   * debian/control:
 - change my email address
 - remove libmodule-build-perl from build dependencies, debhelper7 prefers
   MakeMaker
 - de-capitalize first word in short description
 - rephrase last sentence in long description
   * Refresh lintian override.
   * Set debhelper compatibility level to 7; adapt
 debian/{control,compat,rules}.
   * debian/coopyright: refresh formatting.
Checksums-Sha1: 
 647ef9cf4b29396c744d12b0cf86b3c0f869b14b 1418 libfile-spec-perl_3.2900-1.dsc
 c21af70ef6a91affb5808d9881abbee43a456366 130270 
libfile-spec-perl_3.2900.orig.tar.gz
 b8179852a916fa5fd9a73e4e3bd2b19840844325 4307 
libfile-spec-perl_3.2900-1.diff.gz
 c1c7614933b74c74262d5f76f4b4753cff882551 90172 
libfile-spec-perl_3.2900-1_i386.deb
Checksums-Sha256: 
 814228b1feb8a3388c21f3c5a767d8a9e019ab8e19a95c2abe242c4e4e621fe0 1418 
libfile-spec-perl_3.2900-1.dsc
 aa9aea0263fe642389b3045123052967f20981c60e576b1b3c2a0f7485ab0a9f 130270 
libfile-spec-perl_3.2900.orig.tar.gz
 2b4e73959895273331c024731bb2d83d42c546ade6f2cfc4aab23bace5c49886 4307 
libfile-spec-perl_3.2900-1.diff.gz
 0d168f46a3cae2e2e27311dd1cd39ab47fb140d5cabdf9fe993e2f4a8cc21059 90172 
libfile-spec-perl_3.2900-1_i386.deb
Files: 
 8bd4e058b8dc1a784c2baf05a3851f27 1418 perl optional 
libfile-spec-perl_3.2900-1.dsc
 9c8b8f41afdca2db3d685e175bd14582 130270 perl optional 
libfile-spec-perl_3.2900.orig.tar.gz
 e66a6c0f99eb4b311315c986fd9d07ff 4307 perl optional 
libfile-spec-perl_3.2900-1.diff.gz
 c22b2018ca7c20f48169d719e21ea2ed 90172 perl optional 
libfile-spec-perl_3.2900-1_i386.deb

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

iEYEARECAAYFAkkN908ACgkQOzKYnQDzz+Tl0wCg0YI8M8RgFrEQYHHtYIc4BQf+
GGoAoPaDieKoMTdYXStxt++PycoZxU9S
=x2A+
-END PGP SIGNATURE-


Accepted:
libfile-spec-perl_3.2900-1.diff.gz
  to pool/main/libf/libfile-spec-perl/libfile-spec-perl_3.2900-1.diff.gz
libfile-spec-perl_3.2900-1.dsc
  to pool/main/libf/libfile-spec-perl/libfile-spec-perl_3.2900-1.dsc
libfile-spec-perl_3.2900-1_i386.deb
  to pool/main/libf/libfile-spec-perl/libfile-spec-perl_3.2900-1_i386.deb
libfile-spec-perl_3.2900.orig.tar.gz
  to pool/main/libf/libfile-spec-perl/libfile-spec-perl_3.2900.orig.tar.gz


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



Accepted xscreensaver 5.07-1 (source amd64)

2008-10-31 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 31 Oct 2008 18:54:17 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra
Architecture: source amd64
Version: 5.07-1
Distribution: experimental
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
Changes: 
 xscreensaver (5.07-1) experimental; urgency=low
 .
   [ Tormod Volden ]
   * New Upstream Version
   * driver/XScreensaver.ad.in:
 + Use ISO time/date format in password dialog
 + Use url as default text method
 + remove dnalogo and flurry which are not installed
   * remove xsublim hack since upstream no more installs it
   * add desktop file comment to cubicgrid, hypnowheel and lcdscrub
   * debian/patches: renamed, commented, refreshed patches and series
   * debian/control: use Suggests xscreensaver instead of Enhances
 for -data and -gl packages
   * Fixed Exec and TryExec entries in desktop files.
   * Fixed manpages warnings and bad-formatting.
   * Fixed Vcs-Browser URI.
Checksums-Sha1: 
 2e5802b8cc20e28dae79b325e90aec1c22032cd1 1741 xscreensaver_5.07-1.dsc
 82c611ab271807ad871aa46a3a7f6b95706d31aa 5513131 xscreensaver_5.07.orig.tar.gz
 e8b152fdd2d3d1cc5e36f65606268e2539cc0566 76420 xscreensaver_5.07-1.diff.gz
 212651b2c36405e6f04bf1ddf08d24aca139a492 740320 xscreensaver_5.07-1_amd64.deb
 465b14f7b5e962fa1e9322ea9709aafd6bcb76db 566656 
xscreensaver-data_5.07-1_amd64.deb
 9770e92c66b4f62444739ca2a4506bcd5c41f43f 3493566 
xscreensaver-data-extra_5.07-1_amd64.deb
 3e0620f373573b73a63ef4329b70c040b50cfbb1 2113428 
xscreensaver-gl_5.07-1_amd64.deb
 19b1842e152c7ff35dd621549c6ca819a821e98e 2076164 
xscreensaver-gl-extra_5.07-1_amd64.deb
Checksums-Sha256: 
 c588a093eb22f6b9b4a4bfb419f889a0390181075f017ff22158245416dd6c00 1741 
xscreensaver_5.07-1.dsc
 8c50a74c07b1fffcbb20bd79e3ee92f1f52191e5a187433bb49964ccf94badb6 5513131 
xscreensaver_5.07.orig.tar.gz
 9c435b5b759cf97d8dc1037a84e80616542f03e32639b4bc82fbe98684fb2d51 76420 
xscreensaver_5.07-1.diff.gz
 637fd33f5cac75bec06428de4b9ecb168210156ac946630e8bf74ded5cb7050e 740320 
xscreensaver_5.07-1_amd64.deb
 5362c529897ed0490560a7adeca43ec934c05c6b5d46f10d7540ff31aab11309 566656 
xscreensaver-data_5.07-1_amd64.deb
 9990b39d7a674c324d38a0c8360dcd61bbb152a0bde3a231e08a930109ad09c6 3493566 
xscreensaver-data-extra_5.07-1_amd64.deb
 eb87d9563e99feed9963aae27e89b1df75a0809c165c9c1c5caf0dadfe99562f 2113428 
xscreensaver-gl_5.07-1_amd64.deb
 fb880267bab546bdb167f253781c806a85b4e22744ee02014d26a2d75b971920 2076164 
xscreensaver-gl-extra_5.07-1_amd64.deb
Files: 
 48a527d803b69c450f906ff0d68f1836 1741 x11 optional xscreensaver_5.07-1.dsc
 55a12fcb5d3a7231c9850ef9d9f82918 5513131 x11 optional 
xscreensaver_5.07.orig.tar.gz
 5881f1a6f43ee277514220866b945f5c 76420 x11 optional xscreensaver_5.07-1.diff.gz
 10efde09b4ea1e94e063a6872b35119a 740320 x11 optional 
xscreensaver_5.07-1_amd64.deb
 e7b5ce0b0e448351a9fe93a9c5ee50dc 566656 x11 optional 
xscreensaver-data_5.07-1_amd64.deb
 7523db8157c1114830a90df5c5c5dd51 3493566 x11 optional 
xscreensaver-data-extra_5.07-1_amd64.deb
 6845641ffaf2dec305238035a033324c 2113428 x11 optional 
xscreensaver-gl_5.07-1_amd64.deb
 ad6d873a1289e81c8bbdbd1e76561717 2076164 x11 optional 
xscreensaver-gl-extra_5.07-1_amd64.deb

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

iEYEARECAAYFAkkLwOQACgkQgY5NIXPNpFVvSwCgz1TkssXi89MaNxTjSnowlX7Z
ro8AoJ8TK4IkxbxyP5j+4o2eC8U+NCYn
=5EKj
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.07-1_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-data-extra_5.07-1_amd64.deb
xscreensaver-data_5.07-1_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-data_5.07-1_amd64.deb
xscreensaver-gl-extra_5.07-1_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-gl-extra_5.07-1_amd64.deb
xscreensaver-gl_5.07-1_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-gl_5.07-1_amd64.deb
xscreensaver_5.07-1.diff.gz
  to pool/main/x/xscreensaver/xscreensaver_5.07-1.diff.gz
xscreensaver_5.07-1.dsc
  to pool/main/x/xscreensaver/xscreensaver_5.07-1.dsc
xscreensaver_5.07-1_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver_5.07-1_amd64.deb
xscreensaver_5.07.orig.tar.gz
  to pool/main/x/xscreensaver/xscreensaver_5.07.orig.tar.gz


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



Accepted gkrellm 2.3.1-7 (source amd64)

2008-08-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 06 Aug 2008 00:20:30 -0430
Source: gkrellm
Binary: gkrellm gkrellmd
Architecture: source amd64
Version: 2.3.1-7
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 gkrellm- The GNU Krell Monitors
 gkrellmd   - The GNU Krell Monitors Server
Closes: 493077
Changes: 
 gkrellm (2.3.1-7) unstable; urgency=low
 .
   * Fixed restarting issues in init file and stopping errors. (Closes: #493077)
Checksums-Sha1: 
 40ace4433759791f798149981182f758a31b7135 1192 gkrellm_2.3.1-7.dsc
 20f0ba41383892e6074509fcf93f4f46b546e040 14479 gkrellm_2.3.1-7.diff.gz
 af34e75c87d525909915cc8a5725100a8fe6a849 816168 gkrellm_2.3.1-7_amd64.deb
 b373790033f7a93b33a7173850afd2eb6ee0e89c 110296 gkrellmd_2.3.1-7_amd64.deb
Checksums-Sha256: 
 cbef427c6d5fd28c499eb4a1ee8794b52c03b1fa822ae522a56c3315a41e176d 1192 
gkrellm_2.3.1-7.dsc
 486b36a7f33852eb75dde60681f4a0a14c419fdfafb07f9a44f626e799d68fe1 14479 
gkrellm_2.3.1-7.diff.gz
 3f789f4865afd0de3128e7632ae49fd3b32a5daae1cbf1a89e56e7db51599e33 816168 
gkrellm_2.3.1-7_amd64.deb
 664f9b59734532d5e54077f8ee4958e95d9c5c05b5940e512587e7c9a8394c88 110296 
gkrellmd_2.3.1-7_amd64.deb
Files: 
 9140e63a685102dea5ed7a76f846fab2 1192 x11 optional gkrellm_2.3.1-7.dsc
 ca2e909e655769adfde1eaeb751b2c79 14479 x11 optional gkrellm_2.3.1-7.diff.gz
 4b16b1dd21afdee77ec9ae0cf4558f77 816168 x11 optional gkrellm_2.3.1-7_amd64.deb
 ca24d117d8a1b5b5309fce1ce74c9606 110296 x11 optional gkrellmd_2.3.1-7_amd64.deb

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

iEYEARECAAYFAkihTMAACgkQgY5NIXPNpFV7jwCgil1DbFY8jm8xrvL3JPLlYHFW
JmsAnRotRgIk3ZbGzhU4PFnnJUChxPjm
=yp1d
-END PGP SIGNATURE-


Accepted:
gkrellm_2.3.1-7.diff.gz
  to pool/main/g/gkrellm/gkrellm_2.3.1-7.diff.gz
gkrellm_2.3.1-7.dsc
  to pool/main/g/gkrellm/gkrellm_2.3.1-7.dsc
gkrellm_2.3.1-7_amd64.deb
  to pool/main/g/gkrellm/gkrellm_2.3.1-7_amd64.deb
gkrellmd_2.3.1-7_amd64.deb
  to pool/main/g/gkrellm/gkrellmd_2.3.1-7_amd64.deb


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



Re: Intel Atom Processor

2008-07-24 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Steffen Moeller wrote:
 Kushal Koolwal wrote:
 I got your point, you mean we(group of debian) should make a blueprint for 
 some Device like Netbook / UMPC / MIDs.
 Yes. Exactly!

 what is your blueprint based debian like? 
 At this point of time I am not sure what is going to look like. May be it 
 will help me if you can tell me what exactly do you mean by it. I apologize 
 for my unfamiliarity with some of the terms.

 maybe we can start a project named mobian (mobile debian) ?
 Yes this would be awesome. This will bring Debian up to the speed of likes 
 of Ubuntu. I would be happy to assist in this with whatever knowledge and 
 skills I have.

 Thanks for effort and initiative.
 
 The EeePCs are sold throughout large resellers (Saturn, Staples, ...) in 
 Germany and at least until the new ones get out they all ship with
 Debian - perfectly visible to every potential customer passing by. I have not 
 seen Debian or Linux on any product before in these shops. So, I
 really think that for the perception of Debian (and Linux at large) it would 
 be good if there was some initiative that gives Debian on these
 machines some backup.
 
 To have a connected user base itself would already be a plus. Some flyer to 
 print out would be good that points to this community site so we can
 put such next to these machines in the shop. And Asus would probably help to 
 get this across to their customers, too. People would then learn
 how to submit bug reports and get some indication of what software to 
 install.   Even the software that is distributed with the EeePC and that
 is on display in the store is not fully usable, for instance try to change 
 the your coordinates in Celestia, the dialog of which is beyond the
 screen size. Would an alioth project and pages on wiki.d.o be sufficient?
 
 Best,
 
 Steffen
 
 
You mean like these ones:
http://alioth.debian.org/projects/debian-eeepc
http://wiki.debian.org/DebianEeePC

I don't think that works as you said since this group exists since 2007...

Regards.
- --
Jose Luis Rivas. San Cristóbal, Venezuela. PGP: 0xCACAB118
http://ghostbar.ath.cx/{about,acerca} - http://debian.org.ve
`ghostbar' @ irc.debian.org/#debian-ve,#debian-devel-es
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkiIrIUACgkQOKCtW8rKsRi+tQCguUZb8Ax+8mNAcX6z/wDxL2Qx
cuAAoNpoVyDSZPNkestk6lGg/SXKJC0Z
=LMvz
-END PGP SIGNATURE-


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



Accepted libxml-atom-service-perl 0.16.0-1 (source all)

2008-07-23 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 18:41:25 -0430
Source: libxml-atom-service-perl
Binary: libxml-atom-service-perl
Architecture: source all
Version: 0.16.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libxml-atom-service-perl - Atom Service Document object
Closes: 458809
Changes: 
 libxml-atom-service-perl (0.16.0-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
 .
   * New upstream release
   * debian/control:
+ Bumped to 3.8.0, no changes needed.
   * Initial upload to debian archive (Closes: #458809)
   * Fixed typo in license path at debian/copyright.
 .
   [ gregor herrmann ]
 .
   * Add libxml-atom-perl, libtest-pod-perl, libtest-pod-coverage-perl to
 Build-Depends-Indep; move libtest-perl-critic-perl to Build-Depends-Indep.
   * Allow perl-modules (= 5.10) as an alternative to libversion-perl.
   * Refresh debian/rules, no functional changes, except: don't install README.
   * Add lintian override for manpage problem (long line caused by a long URL).
   * Add /me to Uploaders.
   * debian/copyright: re-arrange stanzas and add detailed license information.
Checksums-Sha1: 
 e0aaf29a360e999eb587b3b59c18295bcb2988f1 1606 
libxml-atom-service-perl_0.16.0-1.dsc
 78856b6e48189b28caacf578324848c2d4662c34 9533 
libxml-atom-service-perl_0.16.0.orig.tar.gz
 a5d16732457853cfbaca999a1ec248fb17a5c699 2427 
libxml-atom-service-perl_0.16.0-1.diff.gz
 f9a62a49b7e9f1535c11658ff57c525edaecfe42 27972 
libxml-atom-service-perl_0.16.0-1_all.deb
Checksums-Sha256: 
 5c26af0b27f5ec4c0002d534feaf185831b930b1d7ea01af6b2abd4680077181 1606 
libxml-atom-service-perl_0.16.0-1.dsc
 80b87997d5b2ee333d0b516be4be00cdaf7359802cb81f725635ee5fe5187b22 9533 
libxml-atom-service-perl_0.16.0.orig.tar.gz
 d8b465ca0c7b564bc8f25695a14c1b55e8af84264b21941dc7e13ebfc59ffacb 2427 
libxml-atom-service-perl_0.16.0-1.diff.gz
 39de4489e4be3c0f3e426fd4fcfd1a25285f7ac98d417d540f81c016932615fc 27972 
libxml-atom-service-perl_0.16.0-1_all.deb
Files: 
 34c51080802efb32ae40dca91e0b9fc9 1606 perl optional 
libxml-atom-service-perl_0.16.0-1.dsc
 8bfaaa1f13efc2e007d5904884950440 9533 perl optional 
libxml-atom-service-perl_0.16.0.orig.tar.gz
 0a889af5cd3a553ce9149628a9dd8e68 2427 perl optional 
libxml-atom-service-perl_0.16.0-1.diff.gz
 c6f7364a046377a14fd7139cf78ef2d0 27972 perl optional 
libxml-atom-service-perl_0.16.0-1_all.deb

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

iEYEARECAAYFAkh7g40ACgkQOzKYnQDzz+TlpQCg7wkEZienCup7w3N6SMGxMVz4
K08AoPEndj9Ty3C96x5aSDNDHc05dtQZ
=9HKz
-END PGP SIGNATURE-


Accepted:
libxml-atom-service-perl_0.16.0-1.diff.gz
  to 
pool/main/libx/libxml-atom-service-perl/libxml-atom-service-perl_0.16.0-1.diff.gz
libxml-atom-service-perl_0.16.0-1.dsc
  to 
pool/main/libx/libxml-atom-service-perl/libxml-atom-service-perl_0.16.0-1.dsc
libxml-atom-service-perl_0.16.0-1_all.deb
  to 
pool/main/libx/libxml-atom-service-perl/libxml-atom-service-perl_0.16.0-1_all.deb
libxml-atom-service-perl_0.16.0.orig.tar.gz
  to 
pool/main/libx/libxml-atom-service-perl/libxml-atom-service-perl_0.16.0.orig.tar.gz


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



Accepted libset-infinite-perl 0.63-1 (source all)

2008-07-22 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 22 Jul 2008 00:02:27 -0430
Source: libset-infinite-perl
Binary: libset-infinite-perl
Architecture: source all
Version: 0.63-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libset-infinite-perl - Sets of intervals
Changes: 
 libset-infinite-perl (0.63-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * Added me as uploader.
   * debian/copyright: Better formatting, more machine readable.
   * Bumped to 3.8.0 wo/ changes needed.
 .
   [ gregor herrmann ]
   * debian/copyright: update years of copyright and author email address.
   * Refresh debian/rules, no functional changes; except: don't install almost
 empty README any more.
Checksums-Sha1: 
 05fa6a25572d7c7dc52c3b5ee54b30f30c46eb1c 1404 libset-infinite-perl_0.63-1.dsc
 4732c8826fb3c8baf78bee0ec17111a4a6d3bb4e 49960 
libset-infinite-perl_0.63.orig.tar.gz
 1a64a9daedf73a1a84921cb8a6fdd31f85a185a5 2109 
libset-infinite-perl_0.63-1.diff.gz
 c54b556ef642f7f3b9b46b1e0cbb7ce308982ed0 45716 
libset-infinite-perl_0.63-1_all.deb
Checksums-Sha256: 
 1ebf198e034aed6cc905d402451af8268dc96b80172a4a64dd22c63b59eda6b1 1404 
libset-infinite-perl_0.63-1.dsc
 5c9039ff2afed512783808e5b4e588f4390533f20278d047c3dec851097c 49960 
libset-infinite-perl_0.63.orig.tar.gz
 e3ffd616be410f1a7a10e547b6ae2f95327fad7411db69f38b1676988b7673b7 2109 
libset-infinite-perl_0.63-1.diff.gz
 e428152b319b5cc16ea5e2d604528dcd722208f3582a62933b1604fdc563138a 45716 
libset-infinite-perl_0.63-1_all.deb
Files: 
 4f8ea5cb8578d16ad3f967610b9fd405 1404 perl optional 
libset-infinite-perl_0.63-1.dsc
 8c573e00f3152db222de08b104b74c31 49960 perl optional 
libset-infinite-perl_0.63.orig.tar.gz
 4b6c1e0fddea95d6249af75d158c75d0 2109 perl optional 
libset-infinite-perl_0.63-1.diff.gz
 dc7d5286df7798d7a5af989bf7a8f8d9 45716 perl optional 
libset-infinite-perl_0.63-1_all.deb

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

iEYEARECAAYFAkiF86QACgkQOzKYnQDzz+QSMACdFMfhSwbyjLuccJLF1Ipi0ExV
/BcAoKywjOMjHSotwM0CavUS4tmJPVuh
=/NOY
-END PGP SIGNATURE-


Accepted:
libset-infinite-perl_0.63-1.diff.gz
  to pool/main/libs/libset-infinite-perl/libset-infinite-perl_0.63-1.diff.gz
libset-infinite-perl_0.63-1.dsc
  to pool/main/libs/libset-infinite-perl/libset-infinite-perl_0.63-1.dsc
libset-infinite-perl_0.63-1_all.deb
  to pool/main/libs/libset-infinite-perl/libset-infinite-perl_0.63-1_all.deb
libset-infinite-perl_0.63.orig.tar.gz
  to pool/main/libs/libset-infinite-perl/libset-infinite-perl_0.63.orig.tar.gz


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



Accepted xscreensaver 5.05-3 (source amd64)

2008-07-20 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Jul 2008 14:48:48 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra
Architecture: source amd64
Version: 5.05-3
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
Closes: 354559 428797 453708 471920 473681 475861 479715 480231 480592 482385 
484112
Changes: 
 xscreensaver (5.05-3) unstable; urgency=low
 .
   [ Tormod Volden ]
   * debian/patches/10_jwz-xscreensaver-randr-patch-3.patch:
 from upstream, addresses issues with xrandr/xinerama
 (Closes: #482385, #428797, #471920, #453708, #473681, #479715, #480231)
   * fixed typo screen  real_nscreens in driver/lock:1527 from above patch
   * drop 61_DualHead-nVidia_bug471920.patch (obsolete)
   * drop 67_XineRama-mode_bug473681.patch (obsolete)
   * fix m6502.o typo in hacks/Makefile.in
   * refresh 53_XScreenSaver.ad.in.patch
   * refresh (disabled) 60_add-ant-hack.patch
 .
   [ Jose Luis Rivas ]
   * add xscreensaver-demo desktop file, thanks to Daniel Dickinson
 (Closes: #480592)
   * update package descriptions (thanks jwz)
   * fix categories in xscreensaver.menu
   * change build-deps from xlibmesa-gl-dev to libgl1-mesa-dev,
 xutils to xutils-dev, x-dev to x11proto-core-dev.
   * bump Standards-Version to 3.8.0
   * add Vcs fields and Homepage to debian/control
   * Flurry is not installed until the bug get fixed (Closes: #484112)
 .
 xscreensaver (5.05-2) unstable; urgency=low
 .
   * (this version was not published)
   * debian/rules: Add `--with-proc-interrupts' to the configure command.
 (Closes: #354559)
   * debian/patches/61_DualHead-nVidia_bug471920.patch:
 Thanks to Vincent Crevot (Closes: #471920)
   * debian/patches/67_XineRama-mode_bug473681.patch:
 Thanks to Lionel Elie Mamane (Closes: #473681)
   * create debian/watch
   * debian/control: fix libpam0g deps to use = 0.72 instead of =0.72-1
   * debian/xscreensaver.pam:
 Add common-account for handling account service type (Closes: #475861)
Checksums-Sha1: 
 97712104d918473578b8d2977599893b867836bb 1735 xscreensaver_5.05-3.dsc
 aa87692182ae3a77435d9618d041aed7b3f62f4c 112014 xscreensaver_5.05-3.diff.gz
 d2ac3f55371cee059e3e53d0deb5f7bc603611be 743594 xscreensaver_5.05-3_amd64.deb
 439f1db415a966504ded0f5744f95971f16d3305 545916 
xscreensaver-data_5.05-3_amd64.deb
 855223fc5a1140b17741ccdb8db7bd85d0fdfdf1 3351364 
xscreensaver-data-extra_5.05-3_amd64.deb
 9552c0ef4f4181969006fc8335dceb2d0d3f6497 2059670 
xscreensaver-gl_5.05-3_amd64.deb
 c218b4378fde3d6cc32da39c214f1dd296b431f5 1985252 
xscreensaver-gl-extra_5.05-3_amd64.deb
Checksums-Sha256: 
 ff2496b57ee02a30ad4b119f1c538428bfc173d781a744a93bfdfd75c944ea02 1735 
xscreensaver_5.05-3.dsc
 2980300b5fe58d2c404a7eca4fdde5a65136b5a0e5bad019e1528ba372ef3115 112014 
xscreensaver_5.05-3.diff.gz
 51a78518b1a70f53d20a36b79885c31c599f065e5588e53c79bccbf36ade5051 743594 
xscreensaver_5.05-3_amd64.deb
 d72ed8ced603e973cf8ac9cf8bee5190dfa16c3b15d3bc14f01390bbbfdb5876 545916 
xscreensaver-data_5.05-3_amd64.deb
 b1e3aa8618803723c32d1d13cfe5fb148d42ac3c350a3ef87c7b8b870516c171 3351364 
xscreensaver-data-extra_5.05-3_amd64.deb
 5dae16108b7ed13a2656847332a61a8143275a7ab484b600e039b838c677a4c4 2059670 
xscreensaver-gl_5.05-3_amd64.deb
 a2820297490f3630cd9855def83978634bd0161a8ed531e5e9bf4ffeba4b1ae4 1985252 
xscreensaver-gl-extra_5.05-3_amd64.deb
Files: 
 e57e4e0de8063d5ad80c6a60779d6616 1735 x11 optional xscreensaver_5.05-3.dsc
 16a8abe0c74d5a83a8aa4d22402c48ac 112014 x11 optional 
xscreensaver_5.05-3.diff.gz
 653e55f8f1a11553d1f3b8e9b401f22d 743594 x11 optional 
xscreensaver_5.05-3_amd64.deb
 c479702e4d0b3fa798c8d8069230a315 545916 x11 optional 
xscreensaver-data_5.05-3_amd64.deb
 88563aa9bc530b0751238f506ba49032 3351364 x11 optional 
xscreensaver-data-extra_5.05-3_amd64.deb
 43dda84fc04baa77ac47753980c50239 2059670 x11 optional 
xscreensaver-gl_5.05-3_amd64.deb
 bb4dd89404980515261bb3bb3c352a72 1985252 x11 optional 
xscreensaver-gl-extra_5.05-3_amd64.deb

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

iEYEARECAAYFAkiEAOYACgkQgY5NIXPNpFVqjACeJJF9R407jEITVbUXKn01/s4p
qscAoNBIGGHCFgy4+eWFVbbU2rFE6V8C
=jJ4/
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.05-3_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-data-extra_5.05-3_amd64.deb
xscreensaver-data_5.05-3_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-data_5.05-3_amd64.deb
xscreensaver-gl-extra_5.05-3_amd64.deb
  to pool/main/x/xscreensaver/xscreensaver-gl-extra_5.05-3_amd64.deb

Accepted libnet-sip-perl 0.46-1 (source all)

2008-07-15 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Jul 2008 07:02:14 -0430
Source: libnet-sip-perl
Binary: libnet-sip-perl
Architecture: source all
Version: 0.46-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libnet-sip-perl - SIP handler Perl module
Changes: 
 libnet-sip-perl (0.46-1) unstable; urgency=low
 .
   * New upstream release.
   * Added me to uploaders.
Checksums-Sha1: 
 b66be9f436485ca171a5fbd7d4c48026fa554ae6 1490 libnet-sip-perl_0.46-1.dsc
 04b151ca33382df8b3fd8caaece0102b6e3c4e6c 137825 
libnet-sip-perl_0.46.orig.tar.gz
 ab87b92e2fe029203d77dccdecdae8b6d7babc82 2806 libnet-sip-perl_0.46-1.diff.gz
 31c5df2b9df9ed697d4bba750bd237071171f282 225086 libnet-sip-perl_0.46-1_all.deb
Checksums-Sha256: 
 a7f9d14bc34bdb110e67a12084fab2d7ab3536c5cfaa9685eb9d1acc97d9a875 1490 
libnet-sip-perl_0.46-1.dsc
 564145c40777ad2e98658b4dc3632cdacf0313aa31f857a2b5efaca3617489eb 137825 
libnet-sip-perl_0.46.orig.tar.gz
 631420626b498dbd717943aa84b1f9c179c1277d4b2b01dff6024c1be3bb5d4a 2806 
libnet-sip-perl_0.46-1.diff.gz
 926ccc3fcdb61f2b4b3bfb8e3ac2e56bc95ff73b2b186fbc65ee22b722670d5f 225086 
libnet-sip-perl_0.46-1_all.deb
Files: 
 2211e0d18261714acc246fc4e6e6cf01 1490 perl optional libnet-sip-perl_0.46-1.dsc
 34004629da6efb07fe49b94ce57e4ef4 137825 perl optional 
libnet-sip-perl_0.46.orig.tar.gz
 848b5acbe9082b7757548a2893b46172 2806 perl optional 
libnet-sip-perl_0.46-1.diff.gz
 ffdc871b28c505252a3bd4301a123cce 225086 perl optional 
libnet-sip-perl_0.46-1_all.deb

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

iEYEARECAAYFAkh8oYoACgkQHqjlqpcl9jucXQCffYnbwq0Gzf0Hpmxxz0PsQJXG
Du4An1KjCWWS6j6o+loUhriU2x/0sbpI
=AL+x
-END PGP SIGNATURE-


Accepted:
libnet-sip-perl_0.46-1.diff.gz
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.46-1.diff.gz
libnet-sip-perl_0.46-1.dsc
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.46-1.dsc
libnet-sip-perl_0.46-1_all.deb
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.46-1_all.deb
libnet-sip-perl_0.46.orig.tar.gz
  to pool/main/libn/libnet-sip-perl/libnet-sip-perl_0.46.orig.tar.gz


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



Accepted libwww-curl-perl 4.05-1 (source i386)

2008-07-14 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 18:23:44 -0430
Source: libwww-curl-perl
Binary: libwww-curl-perl
Architecture: source i386
Version: 4.05-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libwww-curl-perl - Perl bindings to libcurl
Changes: 
 libwww-curl-perl (4.05-1) unstable; urgency=low
 .
   [ Martín Ferrari ]
   * Updating my email address
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/control:
+ Standards-version bumped to 3.8.0 wo/ changes needed.
+ Added me as co-maintainer
+ Capitalized conflics and replaces.
+ Removed quilt from Build-Depends
+ Added libmodule-install-perl, libtest-pod-coverage-perl and
libtest-pod-perl as Build-Depend.
   * debian/rules:
+ Removed quilt.
+ Re-enabled tests (but only ones that don't require internet connection or
needs a package that's not in the archive like t/meta.t).
+ Now lib/WWW/Curl/Share.pm gets cleaned too and Makefile.old
   * debian/NEWS:
+ Deleted, no longer needed
   * debian/patches:
+ Deleted all the directory, is no longer used, upstream already merged
these changes in Makefile.PL and anyway is not used since 3.12-1.
   * debian/copyright:
+ Added license for inc/* files.
 .
   [ gregor herrmann ]
   * Refresh debian/rules, no functional changes.
   * debian/control: wrap long line.
   * Add /me to Uploaders.
Checksums-Sha1: 
 39c8b575cb52c65f22a2312a7f7156d1b750cdd4 1533 libwww-curl-perl_4.05-1.dsc
 1d0eb6d4f1d9c29d8035fc94a6c0811f6c79fc59 40162 
libwww-curl-perl_4.05.orig.tar.gz
 df8b42c9299c97f9db38b1ef8c03511ef3a47404 11669 libwww-curl-perl_4.05-1.diff.gz
 5210746c867376bd08ff601d0ef556c6dc576406 52972 libwww-curl-perl_4.05-1_i386.deb
Checksums-Sha256: 
 1a6c63db8a3eb00c83de95339d9135a77dadb388bc21eb722244b7d93ece8870 1533 
libwww-curl-perl_4.05-1.dsc
 208bf29e4f61591974c4572d839d25a91b36a0387680fa51fa3e7d496a8f0fd6 40162 
libwww-curl-perl_4.05.orig.tar.gz
 9c9b5e347bdfab9a6c84789187d1ddf4d20b8b5020f03278dc519585aaf414ab 11669 
libwww-curl-perl_4.05-1.diff.gz
 d3f84f5e6d6faf87d7be6a7f2a10312934a485f73fea24c3d639b1e678374333 52972 
libwww-curl-perl_4.05-1_i386.deb
Files: 
 e92e09ac752fc9f3a7cad8f19b8f242c 1533 perl optional libwww-curl-perl_4.05-1.dsc
 a49d09edc7491d9d8abec3ef79799853 40162 perl optional 
libwww-curl-perl_4.05.orig.tar.gz
 a7d51c9774004e47ca03463c4de558c5 11669 perl optional 
libwww-curl-perl_4.05-1.diff.gz
 d87bddea2c1560dfe675c0f2717e9a81 52972 perl optional 
libwww-curl-perl_4.05-1_i386.deb

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

iEYEARECAAYFAkh7f3cACgkQOzKYnQDzz+QBrwCgiScndY+bCYXH1Y7DxMT6JEBm
oVwAn1dCcJ34QUe70toWllmIKTrNaKvD
=xCXB
-END PGP SIGNATURE-


Accepted:
libwww-curl-perl_4.05-1.diff.gz
  to pool/main/libw/libwww-curl-perl/libwww-curl-perl_4.05-1.diff.gz
libwww-curl-perl_4.05-1.dsc
  to pool/main/libw/libwww-curl-perl/libwww-curl-perl_4.05-1.dsc
libwww-curl-perl_4.05-1_i386.deb
  to pool/main/libw/libwww-curl-perl/libwww-curl-perl_4.05-1_i386.deb
libwww-curl-perl_4.05.orig.tar.gz
  to pool/main/libw/libwww-curl-perl/libwww-curl-perl_4.05.orig.tar.gz


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



Accepted gkrellm 2.3.1-6 (source amd64)

2008-07-12 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 06 Jul 2008 23:56:22 -0430
Source: gkrellm
Binary: gkrellm gkrellmd
Architecture: source amd64
Version: 2.3.1-6
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 gkrellm- The GNU Krell Monitors
 gkrellmd   - The GNU Krell Monitors Server
Closes: 475932 476641 485745
Changes: 
 gkrellm (2.3.1-6) unstable; urgency=low
 .
   * Applied sysfs battery patch (Closes: #476641) - Thanks to Leo L. Schwab
 ewhac at best.com
   * Fixed desktop category in .desktop file
 .
 gkrellm (2.3.1-5) unstable; urgency=low
 .
   * Added patch for memory leakage (Closes: #485745) - Thanks to Dmitry B.
 Khlonin for pointing out the patch.
   * Updated Vcs URI
   * Updated some stuff missing, thanks to Corey Wright
 .
 gkrellm (2.3.1-4) unstable; urgency=low
 .
   * debian/gkrellmd.init:
+ Fixed creation of pidfile (Closes: #475932) - thanks to Daniel Dickinson
   * debian/control:
+ Added VCS fields
 .
 gkrellm (2.3.1-3) unstable; urgency=low
 .
   * debian/gkrellmd.init:
+ Fixed variable naming I miswrite in last upload.
   * debian/gkrellmd.postrm:
+ Added, now will delete the gkrellmd user if purged, thanks to
Pedro Fragoso.
   * debian/gkrellm.desktop:
+ Added, thanks to Pedro Fragoso.
   * debian/gkrellm.install:
+ Added gkrellm.desktop.
Checksums-Sha1: 
 73948bc87101f5ee0184b97da526e62a003356a7 1192 gkrellm_2.3.1-6.dsc
 e2f4242484fa0712def14897bffa50f68854c4e7 14440 gkrellm_2.3.1-6.diff.gz
 4f4388685a215bbe454525395a369da13b572553 816134 gkrellm_2.3.1-6_amd64.deb
 806e7153811d80e3b936ea31b2bcce509f82a5f9 110250 gkrellmd_2.3.1-6_amd64.deb
Checksums-Sha256: 
 02b263fd2a4c3df0a802507db07d0da4a29fcd4d4185ba1c879247c44f56161c 1192 
gkrellm_2.3.1-6.dsc
 daa12e8a97e7c0320ddc7c9477ac14867d51fe649fc125bcfb2cfa20f9e4ebef 14440 
gkrellm_2.3.1-6.diff.gz
 4bd1c103c0ff92874da41525a11afcfe243044dde34ba1fdc3c8604cba50aba8 816134 
gkrellm_2.3.1-6_amd64.deb
 610a9fa9cb906ac62c29520c8379b03452920b0fbe95f190f972702d73dcf311 110250 
gkrellmd_2.3.1-6_amd64.deb
Files: 
 725ee2c500691a23008e295c248abfda 1192 x11 optional gkrellm_2.3.1-6.dsc
 f0f6de5c4f60ecc7527487fdcfdd7ed5 14440 x11 optional gkrellm_2.3.1-6.diff.gz
 21a47bd5fc490fe84078e71419e46e1e 816134 x11 optional gkrellm_2.3.1-6_amd64.deb
 9456f995d91680c5c6be0ee57cd92f45 110250 x11 optional gkrellmd_2.3.1-6_amd64.deb

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

iEYEARECAAYFAkh5Yt4ACgkQgY5NIXPNpFWxxACgvjunCX7Btrp5xRHEw5Jg3Lmv
NVEAoJN9njtD8OIj1ANMhPlhiffts9ub
=oTCI
-END PGP SIGNATURE-


Accepted:
gkrellm_2.3.1-6.diff.gz
  to pool/main/g/gkrellm/gkrellm_2.3.1-6.diff.gz
gkrellm_2.3.1-6.dsc
  to pool/main/g/gkrellm/gkrellm_2.3.1-6.dsc
gkrellm_2.3.1-6_amd64.deb
  to pool/main/g/gkrellm/gkrellm_2.3.1-6_amd64.deb
gkrellmd_2.3.1-6_amd64.deb
  to pool/main/g/gkrellm/gkrellmd_2.3.1-6_amd64.deb


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



Accepted libtorrent 0.12.2-1 (source i386)

2008-07-06 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 08 May 2008 22:51:25 -0430
Source: libtorrent
Binary: libtorrent-dev libtorrent9
Architecture: source i386
Version: 0.12.2-1
Distribution: experimental
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libtorrent-dev - a C++ BitTorrent library by Rakshasa (development files)
 libtorrent9 - a C++ BitTorrent library by Rakshasa
Changes: 
 libtorrent (0.12.2-1) experimental; urgency=low
 .
   * New upstream release
   * Deleted debian/patches/update-changelog.patch:
+ Now is shipped in a plain text file, easier to maintain.
   * debian/control:
+ Added by Rakshasa to the short description of the package.
Checksums-Sha1: 
 17fcd23017e214ebb3fc76c4cb98865318b73eb7 1262 libtorrent_0.12.2-1.dsc
 a53d2c671e9f2dd971d0622d5b3672da91c46ef9 585374 libtorrent_0.12.2.orig.tar.gz
 4f599534a8b4abe50fa78d0e832e80a429014537 11196 libtorrent_0.12.2-1.diff.gz
 f7f49acb0f0e979b7644bca1e635760f00de1bb5 42012 libtorrent-dev_0.12.2-1_i386.deb
 4e5579a2f9950debc9c8522dcf2b30f7e9b570b0 10504 libtorrent9_0.12.2-1_i386.deb
Checksums-Sha256: 
 0f68223e7925e1ace48e9b1db537f7218fb3f43b3cd0886874056737361d5108 1262 
libtorrent_0.12.2-1.dsc
 cf9d2cd667fd6939a3e0bd27e48d0c7f35d9ab2f7affbb3214da03fd2c1360a8 585374 
libtorrent_0.12.2.orig.tar.gz
 0fb88f6ad96b28455d51d4553769682770b9ed5d2cd6e2a7a292d71aa4389d39 11196 
libtorrent_0.12.2-1.diff.gz
 a323c8411a3d94113a1f8581920741a42ea458319d0fe2e1c9ef7765f5087656 42012 
libtorrent-dev_0.12.2-1_i386.deb
 4f0f19e152ff805d293b96758df4bc0b910ea3946b84e856616e07e20466e2ea 10504 
libtorrent9_0.12.2-1_i386.deb
Files: 
 9485cc927546142c62215c1f5c6c06fe 1262 libs extra libtorrent_0.12.2-1.dsc
 0831ca06f8906c7898fd67931ab239c7 585374 libs extra 
libtorrent_0.12.2.orig.tar.gz
 3587118c9a489b72f7e12124936519f4 11196 libs extra libtorrent_0.12.2-1.diff.gz
 3236d4a9de2032e4eb1682d8591a667e 42012 libdevel extra 
libtorrent-dev_0.12.2-1_i386.deb
 bf7ee74379248486cb83141a8ac8eb50 10504 libs extra libtorrent9_0.12.2-1_i386.deb

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

iD8DBQFIcFHSUWAsjQBcO4IRAi8oAJ9eBIN8jZb0yg7I1XrsPoTOo6Fw3wCfTHnS
oE4MwVEhlpguRyHfbtqqmhM=
=ySZU
-END PGP SIGNATURE-


Accepted:
libtorrent-dev_0.12.2-1_i386.deb
  to pool/main/libt/libtorrent/libtorrent-dev_0.12.2-1_i386.deb
libtorrent9_0.12.2-1_i386.deb
  to pool/main/libt/libtorrent/libtorrent9_0.12.2-1_i386.deb
libtorrent_0.12.2-1.diff.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.2-1.diff.gz
libtorrent_0.12.2-1.dsc
  to pool/main/libt/libtorrent/libtorrent_0.12.2-1.dsc
libtorrent_0.12.2.orig.tar.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.2.orig.tar.gz


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



Accepted libhttp-server-simple-perl 0.34-1 (source all)

2008-06-29 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Jun 2008 00:27:46 -0430
Source: libhttp-server-simple-perl
Binary: libhttp-server-simple-perl
Architecture: source all
Version: 0.34-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libhttp-server-simple-perl - simple stand-alone HTTP server
Changes: 
 libhttp-server-simple-perl (0.34-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release
   * debian/control:
+ Bumped to Standards-Version 3.8.0, no further changes needed
   * Added me as co-maintainer
 .
   [ gregor herrmann ]
   * Add debian/README.source for compliance with Policy 3.8.0.
   * debian/rules: remove obsolete source and diff targets, add install to
 .PHONY.
   * Refresh patches.
   * debian/control: change my email address.
Checksums-Sha1: 
 83b7b2e4defe71313179c730e0477a4b3794043d 1648 
libhttp-server-simple-perl_0.34-1.dsc
 80c2a02d482e07a37861fc6146d62c561704db11 25734 
libhttp-server-simple-perl_0.34.orig.tar.gz
 8c173c8dd9a545fd6e4dd2f7e78fce00323f 5355 
libhttp-server-simple-perl_0.34-1.diff.gz
 7ba510e16ba3c1274d6f4e9acca70656aa4a56d6 27188 
libhttp-server-simple-perl_0.34-1_all.deb
Checksums-Sha256: 
 940e62894ccd5b8702cf73fdd77c956f99463f4a406a0e71f63af8b71b9a77f0 1648 
libhttp-server-simple-perl_0.34-1.dsc
 df31c42b6bd59a52b2e91dbf25e6f2718c03a1ff0e2104a27e909eb6c0753039 25734 
libhttp-server-simple-perl_0.34.orig.tar.gz
 c29b2b6b3ac1cb4c3f8aac760dce5aa8da79e7eb049c835fa77dfe609bceb5ec 5355 
libhttp-server-simple-perl_0.34-1.diff.gz
 ac1d529c0040d73caf372d9a37efd39f330b2d0c6fbb89c40a51c550f88d851a 27188 
libhttp-server-simple-perl_0.34-1_all.deb
Files: 
 5f98f4703d7cc1ce4415ed1bb17a2353 1648 perl optional 
libhttp-server-simple-perl_0.34-1.dsc
 bd913fa7a819e07ef8c2bde1daa301e4 25734 perl optional 
libhttp-server-simple-perl_0.34.orig.tar.gz
 189dda54278a0ab0a399d7abf8354d57 5355 perl optional 
libhttp-server-simple-perl_0.34-1.diff.gz
 f4fb6c1e425cf239a8069a8c0194f07b 27188 perl optional 
libhttp-server-simple-perl_0.34-1_all.deb

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

iEYEARECAAYFAkhnlZIACgkQOzKYnQDzz+RzVACfQBSMmxp02sH3GR4s1fbv7Y9v
6CYAoPrD8rE+QZgZ8rN+7msT23smlS6c
=+oJg
-END PGP SIGNATURE-


Accepted:
libhttp-server-simple-perl_0.34-1.diff.gz
  to 
pool/main/libh/libhttp-server-simple-perl/libhttp-server-simple-perl_0.34-1.diff.gz
libhttp-server-simple-perl_0.34-1.dsc
  to 
pool/main/libh/libhttp-server-simple-perl/libhttp-server-simple-perl_0.34-1.dsc
libhttp-server-simple-perl_0.34-1_all.deb
  to 
pool/main/libh/libhttp-server-simple-perl/libhttp-server-simple-perl_0.34-1_all.deb
libhttp-server-simple-perl_0.34.orig.tar.gz
  to 
pool/main/libh/libhttp-server-simple-perl/libhttp-server-simple-perl_0.34.orig.tar.gz


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



Accepted libaudio-moosic-perl 0.10-1 (source all)

2008-06-29 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Jun 2008 00:12:28 -0430
Source: libaudio-moosic-perl
Binary: libaudio-moosic-perl
Architecture: source all
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libaudio-moosic-perl - Moosic client library for Perl
Changes: 
 libaudio-moosic-perl (0.10-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * Take over for the Debian Perl Group with maintainer's permission
 (http://lists.debian.org/debian-perl/2008/06/msg00039.html)
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
 field (source stanza); Homepage field (source stanza). Changed:
 Maintainer set to Debian Perl Group pkg-perl-
 [EMAIL PROTECTED] (was: Florian Ragwitz
 [EMAIL PROTECTED]); Florian Ragwitz [EMAIL PROTECTED] moved
 to Uploaders.
   * Add debian/watch.
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * debian/control:
 + Changed to latest Standards-Version, not changed needed.
 + Added me as co-maintainer.
   * debian/rules: Removed distclean call from clean since there's no such
 distclean target.
 .
   [ gregor herrmann ]
   * debian/copyright: use author-independent upstream source URL and adjust
 years of copyright. Add copyright/license for files under inc/.
   * Set debhelper compatibility level to 7 and update debian/rules.
   * Don't install README any more.
   * debian/control:
 - add libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep
 - add /me to Uploaders
Checksums-Sha1: 
 4e43eea1be95c4ea1290a55302cfcb5fc5f63c5a 1478 libaudio-moosic-perl_0.10-1.dsc
 22d1d71532a36dc4031b7234cbd48ace761a8a47 18513 
libaudio-moosic-perl_0.10.orig.tar.gz
 4a8a363e29b89eeeb07d786afff0b39320d0dcbd 2001 
libaudio-moosic-perl_0.10-1.diff.gz
 b56bf02a0700b38c2a6a03a592278b2898da5c65 18460 
libaudio-moosic-perl_0.10-1_all.deb
Checksums-Sha256: 
 7cd67d2c856a9d7c4619302a898151deb9629774574372063d3cf5bd0e77a99a 1478 
libaudio-moosic-perl_0.10-1.dsc
 cd2d03fc09a5ef65bf67216cce90b53f87902b2f84891791a71cdb4aacddfbbc 18513 
libaudio-moosic-perl_0.10.orig.tar.gz
 b202f14a861f43f1de78f9f1cbc4d87e4b7622736a9386346cc88cd1e2e01ac6 2001 
libaudio-moosic-perl_0.10-1.diff.gz
 5505146b13c4511c3fa7320abe44fe7eb9ab4c4c398ee48563200685f1cae28f 18460 
libaudio-moosic-perl_0.10-1_all.deb
Files: 
 6515428ec6ec7359f6fe6d3257ef69b3 1478 perl optional 
libaudio-moosic-perl_0.10-1.dsc
 5070872e448adc97dda64a419278cbef 18513 perl optional 
libaudio-moosic-perl_0.10.orig.tar.gz
 f2f6f556b6c13d6d1da26784be3d8aa7 2001 perl optional 
libaudio-moosic-perl_0.10-1.diff.gz
 515740b4af3fa36778baa14d3ea25282 18460 perl optional 
libaudio-moosic-perl_0.10-1_all.deb

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

iEYEARECAAYFAkhnmroACgkQOzKYnQDzz+QQhwCdHrTzZxCXRH1HIPgD1bsfotL7
vvUAoLmtVazBCZQ1sgK20wlJ+unwX+Nv
=QWIJ
-END PGP SIGNATURE-


Accepted:
libaudio-moosic-perl_0.10-1.diff.gz
  to pool/main/liba/libaudio-moosic-perl/libaudio-moosic-perl_0.10-1.diff.gz
libaudio-moosic-perl_0.10-1.dsc
  to pool/main/liba/libaudio-moosic-perl/libaudio-moosic-perl_0.10-1.dsc
libaudio-moosic-perl_0.10-1_all.deb
  to pool/main/liba/libaudio-moosic-perl/libaudio-moosic-perl_0.10-1_all.deb
libaudio-moosic-perl_0.10.orig.tar.gz
  to pool/main/liba/libaudio-moosic-perl/libaudio-moosic-perl_0.10.orig.tar.gz


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



Actualizar feed en planetadebian

2008-06-02 Thread Jose Luis Rivas Contreras
Hola,

Por favor, quisiera que se actualizara mi feed en planeta debian para
que ahora use http://ghostbar.ath.cx/taxonomy/term/13/0/feed

Muchas gracias.
-- 
Jose Luis Rivas. San Cristóbal, Venezuela. PGP: 0xCACAB118
http://ghostbar.ath.cx/{about,acerca} - http://debian.org.ve
`ghostbar' @ irc.debian.org/#debian-ve,#debian-devel-es


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



Re: Mailing lsit code of conduct, again

2008-05-18 Thread Jose Luis Rivas Contreras
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Frans Pop wrote:
 Ben Finney wrote:
 Russ Allbery [EMAIL PROTECTED] writes:
 We don't enforce it anyway, and all this provision seems to do in
 practice is create these annoying arguments periodically.
 No, that's not all it does. It also has the significant effect that
 discussions in these forums do not, in the main, generate needless
 individual copies of messages in the participants's mailboxes. I, and
 presumably the people who drafted the code of conduct, continue to
 find that a very favourable outcome of this provision.
 
 Fully agreed. I'd hate to see this dropped from the CoC.
 
 Clint Adams sent a request to d-www to have the CoC changed and I have 
 replied with a strong NACK to that suggestion. If the CoC should be 
 changed, it should be done after a proper discussion (on d-project 
 probably) and at least be done in coordination with the listmasters, not as 
 the result of an individual request by a random DD.
 
 Cheers,
 FJP

I believe it could be easier that the mailing list software left the
mailing list in the reply-header. The main issue is that when you hit
Reply the only one who is left in the headers is actually who sent the
email and if you hit Reply All obviously the author of the last email
is listed too.

There's a good reason why this haven't been done yet? Other mailing
lists which I've been subscribed use this.

Regards.
- --
Jose Luis Rivas. San Cristóbal, Venezuela. PGP: 0xCACAB118
http://ghostbar.ath.cx/{about,acerca} - http://debian.org.ve
`ghostbar' @ irc.debian.org/#debian-ve,#debian-devel-es
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFIMErPOKCtW8rKsRgRAiieAKCaf3a+JQZhCNQP3/vdvhQpNBgMIACfUBLA
MpQ/DR0Ce5xQj2OZXi2wrkk=
=mtbj
-END PGP SIGNATURE-


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



Accepted libcoat-perl 0.2-1 (source all)

2008-05-11 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 11 May 2008 17:36:53 -0430
Source: libcoat-perl
Binary: libcoat-perl
Architecture: source all
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libcoat-perl - light and Moose-compatible meta-class for Perl5
Closes: 479994
Changes: 
 libcoat-perl (0.2-1) unstable; urgency=low
 .
   [ Jose Luis Rivas ]
   * New upstream release.
   * Now the version don't have the underscore. (Closes: #479994)
   * Added me to uploaders.
 .
   [ gregor herrmann ]
   * Refresh debian/rules, no functional changes.
   * debian/control: change my email address.
   * debian/rules: save a .orig file under t/ from being deleted by dh_clean.
Checksums-Sha1: 
 8952d632b19d7892dad7f5690298f34b32d1ca31 1350 libcoat-perl_0.2-1.dsc
 3645b605a9de37bc21d60f6aff9183cd0737906c 25039 libcoat-perl_0.2.orig.tar.gz
 c10320b152a1b28c26ca73f4be9f6af9eb86f494 2510 libcoat-perl_0.2-1.diff.gz
 6e40ccb32d51645fb5d2740ed5c05bc33435d77f 24236 libcoat-perl_0.2-1_all.deb
Checksums-Sha256: 
 cc11791d1953221903d8b5801c5223ff0aeb143f73879c6fd9099a052c673e1a 1350 
libcoat-perl_0.2-1.dsc
 4809f9321d418ec5a858922b4f14d85c8f41c7a59f0ad90ee430c288a32bb72d 25039 
libcoat-perl_0.2.orig.tar.gz
 57eeaf03df1cf4663418acba6bbe50034e98b34c7f13391ecd73f4e3d1e48014 2510 
libcoat-perl_0.2-1.diff.gz
 74898f7f1bcaa6f62b20a7af0006f6993c1e3d41a89f01ae5be84903a8f2d0ce 24236 
libcoat-perl_0.2-1_all.deb
Files: 
 9f319ae1601c06ab07d1cc5f5703683b 1350 perl optional libcoat-perl_0.2-1.dsc
 7b174cbf055aadf56de7947714c69d71 25039 perl optional 
libcoat-perl_0.2.orig.tar.gz
 d1445cbc23ce7678bcf83bd8a9114749 2510 perl optional libcoat-perl_0.2-1.diff.gz
 e199c535065265c1ee870e796118b75b 24236 perl optional libcoat-perl_0.2-1_all.deb

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

iD8DBQFIJ3O4OzKYnQDzz+QRAujlAJ9Ch2q6YGYSO05kjf0zJS/xgFdTuwCggCwO
3iuKw4+npfPXeYuciehR/Fw=
=2Y2e
-END PGP SIGNATURE-


Accepted:
libcoat-perl_0.2-1.diff.gz
  to pool/main/libc/libcoat-perl/libcoat-perl_0.2-1.diff.gz
libcoat-perl_0.2-1.dsc
  to pool/main/libc/libcoat-perl/libcoat-perl_0.2-1.dsc
libcoat-perl_0.2-1_all.deb
  to pool/main/libc/libcoat-perl/libcoat-perl_0.2-1_all.deb
libcoat-perl_0.2.orig.tar.gz
  to pool/main/libc/libcoat-perl/libcoat-perl_0.2.orig.tar.gz


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



Accepted gkrellm 2.3.1-2 (source amd64)

2008-05-10 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 06 May 2008 19:02:04 -0430
Source: gkrellm
Binary: gkrellm gkrellmd
Architecture: source amd64
Version: 2.3.1-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 gkrellm- The GNU Krell Monitors
 gkrellmd   - The GNU Krell Monitors Server
Closes: 426185 458262 475932
Changes: 
 gkrellm (2.3.1-2) unstable; urgency=low
 .
   * debian/gkrellmd.postinst:
+ Fixed to --no-create-home, doesn't needs it. (Closes: #426185)
   * debian/gkrellmd.init:
+ Fixed the creation of the PID file with background option.
(Closes: #458262, #475932)
Checksums-Sha1: 
 07ab756fb52b15bb031a9d2d711afd7dfcebe6e7 1056 gkrellm_2.3.1-2.dsc
 638cb90eaba6feceee3aa727f682e3fe23cee26a 10878 gkrellm_2.3.1-2.diff.gz
 e2520548e727dbdec9696e3a4664990d419224fa 812704 gkrellm_2.3.1-2_amd64.deb
 03d0ca4404eb2a78e4ed0e13220f0bf53b83e25c 107844 gkrellmd_2.3.1-2_amd64.deb
Checksums-Sha256: 
 e93baa3cd3936b3cb36fc07d9e6df64f95abd0b8c1619a434cda4290f03b0de3 1056 
gkrellm_2.3.1-2.dsc
 bc8e18185a5c7a022985f20125d7ca4bcd85708e55163ace12e63b8cecfe 10878 
gkrellm_2.3.1-2.diff.gz
 4bdc35411a081484dadff14a62d42f773aed60a8d81e2d408b6d31139988f920 812704 
gkrellm_2.3.1-2_amd64.deb
 51b66dccfa26f094e4336c5b8c5ee792422fb921c8dd65164a8ba353645fe079 107844 
gkrellmd_2.3.1-2_amd64.deb
Files: 
 c9105705d7c31c0b855639f4e257d343 1056 x11 optional gkrellm_2.3.1-2.dsc
 61d381acb656a0855e789f3acd79a17f 10878 x11 optional gkrellm_2.3.1-2.diff.gz
 9fd5368db341758d6fae7dbae93d4ecb 812704 x11 optional gkrellm_2.3.1-2_amd64.deb
 c12eba9da2ab4515f7014d80eb2934bc 107844 x11 optional gkrellmd_2.3.1-2_amd64.deb

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

iD8DBQFIJU0FgY5NIXPNpFURAuGSAKDazvl7A0bhig9wVom2zepMwsqglwCgqvtv
t4Ea62BG1dhhLlATkGVcef0=
=S4MR
-END PGP SIGNATURE-


Accepted:
gkrellm_2.3.1-2.diff.gz
  to pool/main/g/gkrellm/gkrellm_2.3.1-2.diff.gz
gkrellm_2.3.1-2.dsc
  to pool/main/g/gkrellm/gkrellm_2.3.1-2.dsc
gkrellm_2.3.1-2_amd64.deb
  to pool/main/g/gkrellm/gkrellm_2.3.1-2_amd64.deb
gkrellmd_2.3.1-2_amd64.deb
  to pool/main/g/gkrellm/gkrellmd_2.3.1-2_amd64.deb


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



Accepted rtorrent 0.7.9-2 (source amd64)

2008-05-10 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 06 May 2008 16:40:06 -0430
Source: rtorrent
Binary: rtorrent
Architecture: source amd64
Version: 0.7.9-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 rtorrent   - ncurses BitTorrent client based on LibTorrent
Closes: 474852 479807
Changes: 
 rtorrent (0.7.9-2) unstable; urgency=low
 .
   * debian/patches/01_missing-libraries_474852.patch:
Fixes missing libraries, thanks to Bradley Smith. (Closes: #474852)
   * debian/patches/02_offbyone-xmlrpc_479807.patch:
Fixes the off-by-one-error in xmlrpc. Thanks to David Härdeman
(Closes: 479807)
Checksums-Sha1: 
 7d8ad4bf65f1259d9705b741e8cad46fbae6b247 1213 rtorrent_0.7.9-2.dsc
 c6f57b3cb76ea80142538411eb5445c24072db91 4899 rtorrent_0.7.9-2.diff.gz
 aa617db9ea2c9422ee1454684dfb12bc896fae89 349902 rtorrent_0.7.9-2_amd64.deb
Checksums-Sha256: 
 10707a06438a5523381c2f5e108842622747207759f19fa1160b2c3b36883771 1213 
rtorrent_0.7.9-2.dsc
 9401507ff8b094312af4a730fba2a3f9d7b937ce3f352e07d3e73d78c03e5ca3 4899 
rtorrent_0.7.9-2.diff.gz
 964209921ad373d9bd7ca0507a3f68d83988c1b7b31679a57f5102b407e97b4d 349902 
rtorrent_0.7.9-2_amd64.deb
Files: 
 0c7756cd67db0d0f246bcab9176b535a 1213 net extra rtorrent_0.7.9-2.dsc
 11d39622f4cd79af0557937448f05579 4899 net extra rtorrent_0.7.9-2.diff.gz
 49d375b6b1756ef05946577f5e0a9541 349902 net extra rtorrent_0.7.9-2_amd64.deb

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

iD8DBQFIJVE2gY5NIXPNpFURAjLxAJ4xS8A3mSDePA7X4S8Wd6u7o2QBVgCePL5W
0GnW0sYNpNzMbXbWEEaP6fU=
=PFEc
-END PGP SIGNATURE-


Accepted:
rtorrent_0.7.9-2.diff.gz
  to pool/main/r/rtorrent/rtorrent_0.7.9-2.diff.gz
rtorrent_0.7.9-2.dsc
  to pool/main/r/rtorrent/rtorrent_0.7.9-2.dsc
rtorrent_0.7.9-2_amd64.deb
  to pool/main/r/rtorrent/rtorrent_0.7.9-2_amd64.deb


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



Accepted libtorrent 0.12.1-1 (source amd64)

2008-05-10 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 26 Apr 2008 21:42:32 -0430
Source: libtorrent
Binary: libtorrent-dev libtorrent10
Architecture: source amd64
Version: 0.12.1-1
Distribution: experimental
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 libtorrent-dev - a C++ BitTorrent library (development files)
 libtorrent10 - a C++ BitTorrent library
Closes: 441362 449214
Changes: 
 libtorrent (0.12.1-1) experimental; urgency=low
 .
   * New upstream release.
   * debian/rules:
+ Added `-W' flag (Closes: #449214).
+ Added CXXFLAGS to build with xscale if arch is arm (Closes: #441362).
Checksums-Sha1: 
 564d36023ae20bab6c3df18dd78ab0f936d912c9 1192 libtorrent_0.12.1-1.dsc
 6ab4de6a12814a0b7a23dcafc9de9c9d2ee1bbe7 584965 libtorrent_0.12.1.orig.tar.gz
 3d8b52e78185da94119dbce5ab6c857f1ed2 9490 libtorrent_0.12.1-1.diff.gz
 143e92727cd2748e6e159a30c21db8b3950b3e99 39432 
libtorrent-dev_0.12.1-1_amd64.deb
 126ac34abbe5b08cadd26ad22b94feab6217e25b 337638 libtorrent10_0.12.1-1_amd64.deb
Checksums-Sha256: 
 1a05ce5b9cc4fa4213a207374ae60052259f19d9d4d8993859ef84d3a94047f0 1192 
libtorrent_0.12.1-1.dsc
 6f61831bf13e44fbbb98e2cd1378ac8c56e551c9fcb6d4cd8f653a72a4121a08 584965 
libtorrent_0.12.1.orig.tar.gz
 88fbe374861b48fd65e6e7c0526c2523756552c97b8c019aeae64989d16fae69 9490 
libtorrent_0.12.1-1.diff.gz
 dbfae6ebe44ac71f3765cb2e6edd102c7e96de8e02b18789cdd74ef096e1b2bd 39432 
libtorrent-dev_0.12.1-1_amd64.deb
 092bcd647ff83e5c9e7d2b486eb05d730609b110f082bfcbaec960342a3dcb8a 337638 
libtorrent10_0.12.1-1_amd64.deb
Files: 
 283cb97840158f3a21cdaa394840e40f 1192 libs extra libtorrent_0.12.1-1.dsc
 a033670d49691e9194564b1b20443e57 584965 libs extra 
libtorrent_0.12.1.orig.tar.gz
 67a0e597833151eeaeff214e58431e25 9490 libs extra libtorrent_0.12.1-1.diff.gz
 67e0f0c4fa245d5a2ada86c10835bc4b 39432 libdevel extra 
libtorrent-dev_0.12.1-1_amd64.deb
 831da2a0abd3d4c49b11efb63e29e24e 337638 libs extra 
libtorrent10_0.12.1-1_amd64.deb

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

iD8DBQFIJVfEgY5NIXPNpFURApRGAJ49Js+XCs1gGt7wKzx34Pf9SxtXmQCgkB0r
JXz0ewPzKtNikJTty0oY1xI=
=wYvX
-END PGP SIGNATURE-


Accepted:
libtorrent-dev_0.12.1-1_amd64.deb
  to pool/main/libt/libtorrent/libtorrent-dev_0.12.1-1_amd64.deb
libtorrent10_0.12.1-1_amd64.deb
  to pool/main/libt/libtorrent/libtorrent10_0.12.1-1_amd64.deb
libtorrent_0.12.1-1.diff.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.1-1.diff.gz
libtorrent_0.12.1-1.dsc
  to pool/main/libt/libtorrent/libtorrent_0.12.1-1.dsc
libtorrent_0.12.1.orig.tar.gz
  to pool/main/libt/libtorrent/libtorrent_0.12.1.orig.tar.gz


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



Accepted xscreensaver 5.05-1 (source i386)

2008-03-16 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 11 Mar 2008 22:45:00 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra
Architecture: source i386
Version: 5.05-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas [EMAIL PROTECTED]
Changed-By: Jose Luis Rivas [EMAIL PROTECTED]
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
Closes: 191530 310157 453708 458145 469099 469108 470466
Changes: 
 xscreensaver (5.05-1) unstable; urgency=low
 .
   * New upstream release.
 - fixed overlapping with Xinerama. (Closes: #453708)
 - fixed double-buffering in cubestorm and noof (Closes: #310157)
 - don't warn about about bogus ClientMessages of GNOME (Closes: #191530)
   * debian/control:
 - Added which hacks are in which package to the description field of each
   package. (Closes: #469108)
 - Added a warning that xss-data-extra ships webcollage and may download
   porn from the internet without appropriate filters. (Closes: #458145)
 - Added conflicts with kscreensaver-xsavers previous to 4:3.5.9-1 to
   avoid breakage for KDE users after the package split in 5.04-3.
   (Closes: #469099)
 - Deleted a superfluous x-dev build-depend.
   * debian/screensaver-desktop-files: Added desktop files for cubicgrid,
 hypnowheel and lcdscrub (new hacks)
   * debian/patches/50_driver_screensaver-properties-desktop.patch:
 Use the svg icon we ship in xscreensaver.svg
   * debian/xscreensaver-data-extra.files: Added new hack lcdscrub, removed
 ant hack. (See note below about 60_add-ant-hack.patch)
   * debian/xscreensaver-gl-extra.files: Added new hacks hypnowheel and
 cubicgrid.
   * debian/patches/53_XScreenSaver.ad.in.patch: Extract from the disabled
 52_driver_XScreenSaver.ad.in.patch fixing the gnome-terminal dependency
 (Closes: #470466).
   * debian/patches/60_add-ant-hack.patch: Deactivated for the moment, there
 were several new changes in Makefile.in and XScreenSaver, besides,
 ant doesn't have a man page and hasn't been shipped for a long time.
 Will not be shipped until we find a way to actually make it fit the new
 upstream code.
   * debian/patches/70_fade_oversleep.patch: Dropped, applied upstream.
   * debian/patches/71_endgame_whiter_colour.patch: Dropped, applied upstream.
   * debian/patches/series: Cleaned up.
Files: 
 21297aadbea970d4ceaf348d0760e09d 1138 x11 optional xscreensaver_5.05-1.dsc
 d759262b10d76f87f1a7fc50ae8664d4 5468293 x11 optional 
xscreensaver_5.05.orig.tar.gz
 b000ecde6fa413788ffc2a6510ccd9d9 73411 x11 optional xscreensaver_5.05-1.diff.gz
 49ebf2b7300dea3d67ee1b3017285ab2 729940 x11 optional 
xscreensaver_5.05-1_i386.deb
 0bac5f54583a132c9f29cac509d50992 491278 x11 optional 
xscreensaver-data_5.05-1_i386.deb
 2d7c1cf08286e89daee7284e49b56934 2960224 x11 optional 
xscreensaver-data-extra_5.05-1_i386.deb
 01b6b6af0ad4d1975c34108e2e9aadd7 1904938 x11 optional 
xscreensaver-gl_5.05-1_i386.deb
 ec8f5fbc239d20e4eefae6da7dd4086b 1842606 x11 optional 
xscreensaver-gl-extra_5.05-1_i386.deb

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

iD8DBQFH3a7wmBxf18ZxJX0RAhTxAJ4h2zxBsD4x5/8sdzVhYJHS25KNFACgnK2m
JKfZFHYP2N8TmzFlYfFf7bk=
=gTMr
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.05-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-data-extra_5.05-1_i386.deb
xscreensaver-data_5.05-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-data_5.05-1_i386.deb
xscreensaver-gl-extra_5.05-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-gl-extra_5.05-1_i386.deb
xscreensaver-gl_5.05-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver-gl_5.05-1_i386.deb
xscreensaver_5.05-1.diff.gz
  to pool/main/x/xscreensaver/xscreensaver_5.05-1.diff.gz
xscreensaver_5.05-1.dsc
  to pool/main/x/xscreensaver/xscreensaver_5.05-1.dsc
xscreensaver_5.05-1_i386.deb
  to pool/main/x/xscreensaver/xscreensaver_5.05-1_i386.deb
xscreensaver_5.05.orig.tar.gz
  to pool/main/x/xscreensaver/xscreensaver_5.05.orig.tar.gz


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



  1   2   3   >