Re: Tool to build Debian packages not requiring root in containers ?

2024-05-08 Thread Charles Plessy
Le Wed, May 08, 2024 at 08:02:41AM -0700, Otto Kekäläinen a écrit :
> 
> I read the docs on how Singularity is able to pull Docker images of Debian
> Sid and build on top of them, and run and exec just like Docker/Podman.
> Unfortunately it has its own Containerfile format (
> https://docs.sylabs.io/guides/3.5/user-guide/quick_start.html#singularity-definition-files)
> and the commands have their own syntax. I guess Debcraft could be extended
> to support it, but that would require at least one Singularity user as
> frequent contributor to test and develop Singularity-compatibility.
> 
> The entire code base is shell code. Perhaps you want to take a look if it
> looks hackable for you?

Hi Otto,

I looked at the code, and while it would be easy to replace the podman
commands to run containers, I wonder if there isn't a major roadblock:

The main use of Singularity containers is to provide static images for
software.  The default is that the image is read-only and has write
access to the host filesystems.  Thus, running apt upgrade in a
singularity container isn't something that is done usually.  It might
even be impossible, although I am not expert enough to make that
statement firmly.

Is there a chance debcraft can work from a static container provided by
the user?

I think that the key problem I have is that I want to use a build Debian
packages that need no root access and that do not need to install
dependencies that need root access, and I want to do that with user
privileges only.

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from home  https://framapiaf.org/@charles_plessy
- You  do not have  my permission  to use  this email  to train  an AI -



Re: Tool to build Debian packages not requiring root in containers ?

2024-05-08 Thread Charles Plessy
Le Tue, May 07, 2024 at 08:17:31PM -0700, Otto Kekäläinen a écrit :
> 
> Can you give me an example of a package you want to build and what is
> the starting point, and I can tell you what command to issue to
> https://salsa.debian.org/otto/debcraft to achieve it?
> 
> It supports running Podman in user mode (=no root permissions needed),

Hi Otto,

it looks really great!

Do you think you can make it work with Singularity/Apptainer instead of
Podman?  Our cluster runs only singularity 3.5.2
(https://docs.sylabs.io/guides/3.5/user-guide/).  Debian has version
4.1.2 in the singularity-container package.

The conversion of a Docker container to the Singularity format is
simple, and Singularity already mounts most of the local storage to make
it visible and writable from within the container.

The typical packages that I want to build are the r-bioc-* collection.
Together, they represent a dependency graph deep of a dozen of layers,
which makes transitions work-intensive.

With tools like debcraft I would like to prepare a set of updated
packages for which I know that the CI tests pass, and that can be
uploaded all together at the same time when I we get green light from
the Release team.  (And to rebuild all of them if in the meantime the
contents of Unstable have changed significantly).

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from home  https://framapiaf.org/@charles_plessy
- You  do not have  my permission  to use  this email  to train  an AI -



Tool to build Debian packages not requiring root in containers ?

2024-05-07 Thread Charles Plessy
Hello everybody,

I just re-suscribed :)

At work I have access to a nice cluster with plenty of nodes rich of 128
cores and 512 Gb RAM.  The nodes do not run Debian but Singularity is
available for virtualisation 
(https://en.wikipedia.org/wiki/Singularity_(software)).

And in Debian I am part of transitions involving more than 100 packages
every 6 months (r-api-bioc-*)…

I want to leverage our cluster to automate as much of the rebuilds as I
can, but could not find the right tool.  I tried to run sbuild in a
Singularity image and this failed.  However, I do not need the whole
power of engines like sbuild, as none of the packages involved require
root priviledges to build.

Do you have a suggestion for a tool can run in user mode in a container
image having access to local storage on the host, and that given a
Debian source control file will download the dependencies and build the
package ?

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://fediscience.org/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: Can we distribute pre-built locales to speed up image generation?

2023-08-01 Thread Charles Plessy
Le Tue, Aug 01, 2023 at 03:18:18PM +0530, Nilesh Patra a écrit :
> 
> https://micronews.debian.org/2023/1686751737.html

Thanks !  I was using sid but just switched to fasttrack thanks to your
message.

Cheers,

-- 
Charles



Re: Can we distribute pre-built locales to speed up image generation?

2023-08-01 Thread Charles Plessy
Le Tue, Aug 01, 2023 at 11:56:28AM +0200, PICCA Frederic-Emmanuel a écrit :
> 
> I sthere a maliling list where we can speak about these singuarity/apptainer 
> applications ?

I wouln't mind debian-hpc@l.d.o, but I do not know about the opinion of
the other subscribers?

Cheers,

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://fediscience.org/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



[solved] Re: Can we distribute pre-built locales to speed up image generation?

2023-08-01 Thread Charles Plessy


> > I was wondering if it was recently considered to provide pre-built
> > locales again, either in a separate package
 
Le Tue, Aug 01, 2023 at 09:37:23AM +0100, Simon McVittie a écrit :
> Is locales-all not that package?

Exactly! Thank you so much and sorry for the noise.

> locales-all has Installed-Size: 227M, I don't know why that differs so
> much from your estimate.

I was reporting the size of the Singularity image, which must be
compressed in some way.  A minimal image containing the hello package
and locales-all is ~90M.

Cheers,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://fediscience.org/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Can we distribute pre-built locales to speed up image generation?

2023-08-01 Thread Charles Plessy
Hello everybody,

In the course of generating singularity/apptainer Debian images at work,
I wanted to make all locales available to the users.

Running locale-gen on everything from /usr/share/i18n/SUPPORTED only
adds ~60 Mb to the image, which is small compared to the image total
size and the available storage in my use case.  However, generating all
of them at image creation time is by far the most time-consuming and
earth-heating stage.

The description of the locales package mentions that in the past they
were distributed pre-built.  I was wondering if it was recently
considered to provide pre-built locales again, either in a separate
package or in one of the system images that we distribute, in the
interest of embracing language diversity.

It has been a long time I have not posted here, and I am not subscribed
at the moment.  Please CC me!

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://fediscience.org/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: Firmware GR result - what happens next?

2022-10-02 Thread Charles Plessy
Le Mon, Oct 03, 2022 at 12:33:20AM +0200, Mattia Rizzolo a écrit :
> 
> I can live with an APT hook warning me if I have non-free but not
> non-free-firmware, but I would prefer to even do without that.

In addition, how about distributing the firmware in both 'non-free' and
'non-free-firmware' at the same time for a release or two ?

Cheers,

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: faciliter la contribution ?

2022-04-05 Thread Charles Plessy
> 
> > on peut envoyer le rapport directement par email en utilisant des
> > pseudo en-têtes.
 
Le Sat, Apr 02, 2022 at 03:38:09PM +0200, Marc Chantreux a écrit :
> 
> c'est ok de faire des tests? y'a quelqu'un a prévenir ?

Je je connais pas de moyen de faire de tests.  Mais tu peux ouvrir un
bug sur le paquet mailcap pour suggérer d'utiliser le système de liens
alternatifs pour /usr/bin/see et commandes apparentées, comme tu l'as
fait sur Salsa (désolé encore de ne pas l'avoir remarqué rapidement).

Après, si tu veux faire plus de tests, il faut trouver des bugs :)

Bonne journée

Charles



Re: faciliter la contribution ?

2022-04-02 Thread Charles Plessy
Le Sat, Apr 02, 2022 at 01:25:15PM +0200, Marc Chantreux a écrit :
> 
>   To: bug-${package}@debian.org
>   From: ${sender:+$sender <$email>}${sender-$email}
>   Subject: ${version}-${arch}: ${shortdesc}
>   X-please-keep-me-informed: yes, please

Bonjour Marc,

on peut envoyer le rapport directement par email en utilisant des
pseudo en-têtes.

To: sub...@bugs.debian.org
From: ${sender:+$sender <$email>}${sender-$email}
Subject: ${version}-${arch}: ${shortdesc}

Package: ${pakage}
Version: ${version}
Tags: patch

Et en suite le reste du message et le patch

https://www.debian.org/Bugs/Reporting

Pour ma part, la partie la plus stressante du système est que la réponse
du serveur prend un temps variable et que j'ai déjà perdu plus d'un
rapport parce que mon système d'envoi de courriels n'est pas configuré
assez parfaitement.  C'est pour ça que j'utilise reportbug, qui permet
d'envoyer le rapport via le serveur SMTP dédié de Debian
(reportbug.debian.org, ouvert à tous les utilisateurs).

Bon week-end,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



text/javascript to replace application/javascript

2022-03-21 Thread Charles Plessy
Hello again,

I promise it is my last email today :)

RFC 4329, which deprecated text/javascript in favor of
application/javascript, is being in the process of being obsoleted by a
new one that reverts it (draft-ietf-dispatch-javascript-mjs-17).

https://datatracker.ietf.org/doc/html/draft-ietf-dispatch-javascript-mjs-17

The changes are alreay being put in effect by the IANA, so I updated
the media-types package accordingly.  As the changes put the standard
in line with the practice, I do not expect breakage, but just in
case, here is the mail that announces them.

Cheers,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy


signature.asc
Description: PGP signature


Is /etc/mime.types used for anything else than associating file suffixes and media types ?

2022-03-21 Thread Charles Plessy
Hello everybody again,

as of today, `/etc/mime.types` has 2183 entries, of which 1166 associate
file suffixes to media types.  The other lines just declare the
existence of a media type.

I am not aware of uses of `/etc/mime.types` other than associating file
suffixes and media types, suggesting that half of its contents, and the
updates to it, may be not useful.

I am curious if some of you know other uses of this file.

Have a nice day,

Charles

(maintainer of the `media-types` and `mailcap` packages)

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy


signature.asc
Description: PGP signature


Alternative aliases for print, see, edit and compose ?

2022-03-20 Thread Charles Plessy
Hello everybody,

the `mailcap` package (formerly `mime-support`) provides commands named
`compose`, `edit`, `print` and `see`, which are aliases to
`run-mailcap`, which is used to open files (especially when `xdg-open`
is not installed).

`run-mailcap` is able to parse information from `/etc/mailcap` that
indicate alternative ways of opening a file according to the intent of
the user, in particular if they would prefer to edit the file, or just
display it.  The commands listed above are the way this intent is
communicated.

It has been suggested to me via a pull request on Salsa that the
`mailcap` package could use the _alternatives_ system so that other
packages can provide their own version of the `run-mailcap` aliases.  I
have no objection in principle, but before doing so I would like to
confirm on this mailing list:

 - Is there interest from other package maintainers to provide their
   own alternatives ?

 - Are there objections ?

 - What would be the interface ?  For the `open` command, the interface
   is minimal: the file to open as argument, and the rest is
   unspecified.

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy


signature.asc
Description: PGP signature


Another big update of /etc/mime.types

2022-01-23 Thread Charles Plessy
ion/vnd.apache.arrow.file and a/vnd.apache.arrow.file
  019548b Added application/vnd.afpc.cmoca-cmresource and application/vnd.age
  d76426c Added application/3gppHal+json, a/3gppHalForms+json, a/vnd.3gpp.5gnas
  a/vnd.3gpp.gtpc, a/vnd.3gpp.interworking-data, a/vnd.3gpp.lpp,
  a/vnd.3gpp.mcdata-payload, a/vnd.3gpp.mcdata-service-config+xml,
  a/vnd.3gpp.ngap, a/vnd.3gpp.pfcp, a/vnd.3gpp.s1ap
  8fa36b5 Added application/token-introspection+jwt and a/oauth-authz-req+jwt
  786a184 Added application/sarif-external-properties+json a/sarif+json
  e67ffcd Added application/prs.cyn
  b128636 Added application/opc-nodeset+xml
  53bbc91 Added application/missing-blocks+cbor-seq
  f2b0f17 Added application/manifest+json
  d7ea565 Added application/jscalendar+json
  a200fce Added application/example and multipart/example
  ab41bc3 Added application/EmergencyCallData.cap+xml
  453d139 Added application/dash-patch+xml
  3bec167 Added application/clr
  177c6cc Added application/city+json
  88cd048 Added application/captive+json
  ca0176f Added application/at+jwt
  1d96815 Added application/ace+cbor
  99e1fdb Added application/express, a/p21, a/p21+zip,
  model/step, m/step+xml, m/step+zip, m/step-xml+zip
  73099d3 Added model/vnd.sap.vds
  841728d Added model/e57.
  e1f3159 Added model/vnd.pytha.pyox with only pyox file extensio because
  pyo is used by Python.

 -- Charles Plessy   Sun, 23 Jan 2022 18:34:58 +0900


-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



mime.types vs mime/globs (was Re: Shall we serve scripts as application or as text?)

2021-08-30 Thread Charles Plessy
Le Sun, Aug 29, 2021 at 10:53:04PM +, Thaddeus H. Black a écrit :
> 
> What is the relationship between /etc/mime.types
> and /usr/share/mime/globs, please?  When to use the one and when,
> the other?

Hi Thaddeus,

/etc/mime.types is a conffile; you can edit it and dpkg will ensure to
preserve the changes or prompt you in case of conflicts during upgrades.

/usr/share/mime/globs is an autogenerated file.  Any change you make
there can be silently lost.

Also, /etc/mime.types is provided by a package, media-types, that
contains only this file, does not have dependancies and is more likely
to be installed on desktopless systems.

So if you only need a one-to-one lookup table for associating media
types and file extensions, and if you need to allow easy extension and
customisation by the local administrator, you should better use
/etc/mime.types.

The information in both files overlap a lot since most of it has the same
origin: the media types registered at the IANA.

https://www.iana.org/assignments/media-types/media-types.xhtml

This said, the XDG's shared MIME-info database contains much more
information than /etc/mime.types, such as magic numbers or subtypes.
If you write an application for a system where you can be sure that
this information is available, use it !

Cheers,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Shall we serve scripts as application or as text?

2021-08-28 Thread Charles Plessy
Hello evrybody,

and since it is my first email after the release, A BIG THANK YOU to
those who made it possible !

Since Bullseye, the /etc/mime.types is provided in its own package,
media-types, and in Bookworm I would like to brush up its contents
further.

/etc/mime.types is typically used by servers to provide a media type to
the receiver of a file, based on the extension of that file's name.
Thus, it is expected that file extensions appear only once in
/etc/mime.types.

At the moment, one of the exceptions to this rule are some script
extensions, in particular sh, csh and tcl, which are present under both
the text/ and the application/ types.

Judging from IANA's registered types for other script languages, it
looks like the application type is more relevant.  Also, the
application/ types appear first in our /etc/media.types file, and if I
remember well this gives them precedence anyway.  A quick random check
in the Internet shows that there is no consistency on how shell scripts
are served, but that the application type is used among others.

Before I remove text/x-sh and the like so that shell and tcl scripts
files are served as 'application' like others, I would like to hear if
some of you see a potential problem with that.

Have a nice Sunday!

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: Added hundreds of media types to /etc/mime.types

2021-01-15 Thread Charles Plessy
Hi Helmut, and everybody,

I have just uploaded media-types 4.0.0, which I hope removes all
regressions regarding duplicated file extensions in the `application/`
types.

Interestingly, there has been duplicates in our `mime.types` file for a
long time, but never within the `application/` type.  Several subtypes
are listed under both `text/` and `application/`, for instance `x-sh`.
I have left this unchanged as we are close to the release.

The changes I made are described in `debian/changelog` of course, and
I also kept a record of the cases where an arbitrary decision is needed
in the source package's `README.md` file.

https://salsa.debian.org/debian/media-types/-/blob/4.0.0/debian/changelog

https://salsa.debian.org/debian/media-types/-/blob/master/README.md

Le Mon, Jan 11, 2021 at 08:23:24AM +0100, Helmut Grohne a écrit :
> 
> That still leaves the question of why extensions suddenly are case
> sensitive (another regression of media-types) even though most consumers
> treat them as case insensitive. Alexandre Duret-Lutz filed #979554 to
> that end and we're still waiting for a response from Charles.

Earlier release of Debian already shipped a `mime.types` file with
upper-case file extension, so I think that their presence is not a
regression, although I agree that it might be a problem.  I propose
to resolve that in the next release.

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: Added hundreds of media types to /etc/mime.types

2021-01-08 Thread Charles Plessy
[Please CC me, I am not subscribed].

Le Fri, Jan 08, 2021 at 05:54:43PM +0100, Paul Gevers a écrit :
> 
> autopkgtest [12:47:41]: test defconfig: [---
> Duplicate mimetype: '.png' => 'image/vnd.mozilla.apng' (already have
> 'image/png'), merging to 'application/octet-stream'
> Duplicate mimetype: '.pcx' => 'image/vnd.zbrush.pcx' (already have
> 'image/pcx'), merging to 'application/octet-stream'
> Error: duplicate array-key: .pgb. Please get rid of the duplicate entry.
> 2021-01-07 12:47:41: (configfile.c.1966) source:
> /usr/share/lighttpd/create-mime.conf.pl line: 495 pos: 8 parser failed
> somehow near here: (COMMA)
> 2021-01-07 12:47:41: (configfile.c.1966) source:
> /etc/lighttpd/lighttpd.conf line: 48 pos: 8 parser failed somehow near
> here: (EOL)
> autopkgtest [12:47:42]: test defconfig: ---]
> 
> found in
> https://ci.debian.net/data/autopkgtest/testing/armhf/l/lighttpd/9433211/log.gz

Thanks Paul,

I have removed `png` from `image/vnd.mozilla.apng` and will remove
`image/pcx` entirely as `image/vnd.zbrush.pcx` is preferred now.

I ran /usr/share/lighttpd/create-mime.conf.pl and only had duplicate
warnings, that do not cause errors (the scripts returns 0).  With the
latest /etc/mime-types file in Sid, I do not have parser errors.

In the latest CI log of lighttpd on amd64, there is:

defconfigFAIL stderr: Duplicate mimetype: '.sdf' => 
'application/vnd.stardivision.math' (already have 'application/vnd.Kinar'), 
merging to 'application/octet-stream'

Unfortunately, `sdf` is a legitimate extension for both media types.  I
see that /usr/share/lighttpd/create-mime.conf.pl already has a section
for resolving such conflicts, so I think that the best solution is
to implement a choice in this script.

If this is too close to the freeze, I can temporarly remove `sdf` for
`application/vnd.stardivision.math` and re-add it later.

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Added hundreds of media types to /etc/mime.types

2021-01-06 Thread Charles Plessy
[Please CC me, I am not subscribed].

Dear all,

happy new year!

Just a quick heads-up on the contents of /etc/mime.types: it did not
receive major updates for years, but I just added hundreds of
IANA-registered media types in the upload I just made for the
media-types package.  It might affect what servers declare as media
types for the files they transmit, when they base their choices solely
on file extensions.  The changes I made were pulled from the latest
Fedora stable package distributing /etc/mime.types, so I expect that it
was tested to some extent, but in a few cases I also removed deprecated
mime types in favor of the IANA-registered version.  In case of
problems, please feel free to ask me to comment some lines or NMU if you
feel some urgency.

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



/usr/bin/open now in use through the alternatives system.

2020-12-27 Thread Charles Plessy
[Please CC me, I am not subscribed]

Dear all,

I went ahead and uploaded to Sid mime-support version 3.68, which
provides /usr/bin/open as a symbolic link to /usr/bin/run-mailcap using
the alternatives system, at a priority of 30.  I welcome other
alternatives.

I also changed the behaviour of run-mailcap so that, when run as `open`,
it will not replace the file with a temporary copy when its name needs
to be escaped.  As a consequence, there is no redundancy between the
`see` and `open` commands.

At the moment the manual page of open is simply the one of run-mailcap,
but I plan to provide a specific one.  Given the lack of answer to my
previous email (quoted below), I have not implemented URL support in
/usr/bin/run-mailcap.

> Le Sat, Oct 10, 2020 at 04:27:17AM +0900, Charles Plessy a écrit :
> > 
> > May I ask you for extra information on how important is it to support
> > URLs, and if anything beyond file:/, http:// and https:// would need
> > to be supported ?
> ...
> > Also, can you give me a pointer to an explanation of what file:/ URLs
> > are useful for ?  I read RFC 8089, but still did not get the point.
> ...
> > Since `eog http://example.com/image.png` will open the image,
> > shouldn't an "open" program ask to the server what the media type of
> > the URL is, and pass it to the default program able to handle it,
> > instead of just visualising in the browser ?

Have a nice day,

Charles

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Please test the split of mime-support into media-types and mailcap, in Experimental now.

2020-10-27 Thread Charles Plessy
Dear all,

I am pleased to report that the media-types and mailcap packages have
been accepted in Experimental.

They implement the split of the mime-support package into two components,
that I described in #964850.

If you are interested in that change, I would be happy if you could help
me by testing the packages in Experimental before I upload them to
Unstable in a week or two.

Have a nice day,

-- 
Charles Plessy Nagahama, Yomitan, Okinawa, Japan
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Re: Proposal: use /usr/bin/open as an alternative for run-mailcap and others.

2020-10-27 Thread Charles Plessy
Le Sat, Oct 10, 2020 at 04:27:17AM +0900, Charles Plessy a écrit :
> 
> May I ask you for extra information on how important is it to support
> URLs, and if anything beyond file:/, http:// and https:// would need
> to be supported ?
...
> Also, can you give me a pointer to an explanation of what file:/ URLs
> are useful for ?  I read RFC 8089, but still did not get the point.
...
> Since `eog http://example.com/image.png` will open the image,
> shouldn't an "open" program ask to the server what the media type of
> the URL is, and pass it to the default program able to handle it,
> instead of just visualising in the browser ?

Hi all,

I hope I have not blasted you with my long answer and questions...

At the moment, I think that I will go ahead with shipping
`/usr/bin/open` as a symbolic link to `/usr/bin/run-mailcap` managed
with the alternatives system, and state in its manual page that opening
URLs is not supported for the moment but may be in the future.

Regarding the redundancy with `/usr/bin/see`, I think that it is not an
issue because 1) `see` was not intended to be provided by other packages
and 2) its purpose is to visualise the contents of a document, while the
purpose of `open` is to have the same effect as double-clicking on a
document's icon.  The difference is similar to the one between
"click-spacebar" and "double-click" on macOS.

Have a nice day,

-- 
Charles



Re: Proposal: use /usr/bin/open as an alternative for run-mailcap and others.

2020-10-09 Thread Charles Plessy
Thanks you Simon, Jérémie and everybody for your feedback.

> On Thu, 08 Oct 2020 at 05:54:27 +0900, Charles Plessy wrote:
> > /bin/open has been kindly freed a couple years ago (#732796) and I would
> > like to propose to repurpose it as a standard command for opening files,
> > like on Mac OS and NextStep before it.

Le Wed, Oct 07, 2020 at 11:17:34PM +0100, Simon McVittie a écrit :
> 
> Is this intentionally a filename, and not a URI reference like the
> argument to xdg-open(1), the `gio open` subcommand in gio(1), and macOS
> open(1)? In particular, if we're using this name by analogy with the
> command in macOS, it doesn't seem great to be using a different invocation
> pattern.

I intentionally refrained from including URIs in my proposal, but I am
willing to consider it.

On my side, I never used open or xdg-open with a URL, so when I first
saw `xdg-open {file | URL}` in its manual page, I wondered how important
it was for the end user.  Then, I looked at the manual page of `open` on
macOS, and saw that its first two lines only mention files and
directories.  Thanks for the heads-up, now I know it also opens URLs.

For browsing an URL, I always call `firefox` directly.  This is more a
habit than a conscious decision, and also I would not pretend to
represent the typical user.  May I ask you for extra information on how
important is it to support URLs, and if anything beyond file:/, http://
and https:// would need to be supported ?  Also, can you give me a
pointer to an explanation of what file:/ URLs are useful for ?  I read
RFC 8089, but still did not get the point.

The reason I ask is that `run-mailcap` does not support URLs
at the moment.  It would be possible to have emulate other tools by
passing HTTP urls to the default browser.  Still, I wonder
if that is what a new user would expect.  For instance, since `eog
http://example.com/image.png` will open the image, shouldn't an "open"
program ask to the server what the media type of the URL is, and pass it
to the default program able to handle it, instead of just visualising in
the browser ?  But if the answer is "yes", I do not know how long it
would take me to implement it...

Le Wed, Oct 07, 2020 at 07:15:42PM -0400, Jeremy Bicha a écrit :
> 
> You should be aware that Ubuntu implemented this idea 2 years ago.
> (I'm sure Ubuntu developers would love for this to be implemented by
> other distros or further upstream.)
> 
> https://launchpad.net/bugs/1624022

I was not aware of the `browse` command implemented following the
Launchpad bug above; thank you for the heads-up.  I just read the
discussion, and I see that `open` was also considered, but unfortunately
it was not free at that time.  I think that `open` is a much better word
for the task.  Also, it is not clear to me if `browse` intends to be an
alias to `xdg-open` only or something broader.

I the case of `open`, if there is an interest for the alternatives
system, I intend to give a low priority to the one pointing to
run-mailcap, so that on defauult Desktop systems, `open` would really
emulate what happens when the user double-clicks a file.

Have a nice day,

-- 
Charles Plessy
Akano, Uruma, Okinawa, Japan



Proposal: use /usr/bin/open as an alternative for run-mailcap and others.

2020-10-07 Thread Charles Plessy
Hello everybody, hello Debian freedesktop.org maintainers,

/bin/open has been kindly freed a couple years ago (#732796) and I would
like to propose to repurpose it as a standard command for opening files,
like on Mac OS and NextStep before it.

As I maintain the mime-support package (soon to be split in `mailcap`
and `media-types`, seee #964850), that provides the `run-mailcap`
command to open files, I propose to provide /usr/bin/open as a symbolic
link to it using the alternatives system.

While `run-mailcap` has mutiple command-line options, I would like to
define the "interface" of /usr/bin/open as having a single argument
only, which is a path to a file or a directory.  This would give the
opportunity for other packages such as xdg-utils to provide
/usr/bin/open if they wish so.

I welcome your comments; please CC me as I am not subscribed.

Have a nice day,

Charles

-- 
Charles Plessy
Akano, Uruma, Okinawa, Japan



Splitting mime-support into mailcap and media-types (Re: Bug#964850: ITP: mailcap -- Debian's mailcap system, and support programs)

2020-10-04 Thread Charles Plessy
Le Sat, Jul 11, 2020 at 01:48:55PM +0900, Charles Plessy a écrit :
> 
> I plan to split the mime-support package into "mailcap" (this WNPP bug)
> that will provide the mailcap system, optionally, and "media-types"
> (ITP later), which will provide /etc/mime.types (Priority: standard).
> 
> My goal is to allow for evolution of this package, or alternative
> implementations if we need to satisfy at the same time those who would
> like some change and those who would not.  Lastly, the split will also
> allow us to explore the complete replacement of mailcap entries by
> information flowing from the FreeDesktop menu system.

Dear all,

I made progress in preparing the split: `mime-support` will become dummy
and depend on `media-types`, providing /etc/mime.types, priority Stanard,
and `mailcap`, providing the mailcap system, priority optional.

Before I upload to experimental, I would be happy to hear your comments.
The source packages are on Salsa.

 - https://salsa.debian.org/debian/mime-support
 - https://salsa.debian.org/debian/media-types
 - https://salsa.debian.org/debian/mailcap

Please CC me and the bug; I am not subscribed to debian-devel.

Have a nice day,

Charles

-- 
Charles Plessy
Akano, Uruma, Okinawa, Japan



Bug#964850: ITP: mailcap -- Debian's mailcap system, and support programs

2020-07-10 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy 

* Package name: mailcap
  Version : 3.65
  Upstream Author : the authors of the current mime-support package
* URL : Will be hosted on Salsa
* License : Public domain
  Programming Lang: Perl
  Description : Debian's mailcap system, and support programs
  Priority: optional
  Provides: run-mailcap

 The mailcap system associates media types with programs that can handle them,
 using system and user configuration files.  A file's media type is determined
 by its extension or by running the "file" command if available.
 .
 Other packages register their programs as viewers/editors/composers/etc by
 placing mailcap entry files or FreeDesktop menu entries in predetermined
 directories monitored by this package's dpkg triggers.
 .
 This package provides a "run-mailcap" program to open arbitrary files, and in
 addition the "see", "edit", "compose", and "print" aliases to display, alter,
 create, and print (respectively).

I plan to split the mime-support package into "mailcap" (this WNPP bug)
that will provide the mailcap system, optionally, and "media-types"
(ITP later), which will provide /etc/mime.types (Priority: standard).

My goal is to allow for evolution of this package, or alternative
implementations if we need to satisfy at the same time those who would
like some change and those who would not.  Lastly, the split will also
allow us to explore the complete replacement of mailcap entries by
information flowing from the FreeDesktop menu system.

Have a nice week-end,

Charles (mime-support maintainer)

-- 
Charles Plessy
Akano, Okinawa, Japan



Accepted r-bioc-iranges 2.20.1-2 (source) into unstable

2020-01-16 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 17 Jan 2020 04:14:04 +0900
Source: r-bioc-iranges
Architecture: source
Version: 2.20.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian R Packages Maintainers 
Changed-By: Charles Plessy 
Changes:
 r-bioc-iranges (2.20.1-2) unstable; urgency=medium
 .
   * Team upload
 .
   [ Dylan Aïssi ]
   * Add salsa-ci.yml
   * Update autopkgtests
Checksums-Sha1:
 a8da9ba138438929accf393a890aab62f1cf2192 2142 r-bioc-iranges_2.20.1-2.dsc
 82c0b2d16861add1334d7f65ceaa7697d37f7405 4788 
r-bioc-iranges_2.20.1-2.debian.tar.xz
Checksums-Sha256:
 11520c404e9533ce453a438b7765118d7c692d4d64663bfa2d5260c13b9d4531 2142 
r-bioc-iranges_2.20.1-2.dsc
 f30ebb3c247fd5ab6c0ef05bfd37abbe6b7a9bc6fb926dc5d259183b49663455 4788 
r-bioc-iranges_2.20.1-2.debian.tar.xz
Files:
 78b2748a7d41a68f3c9c7f0c5fa82e0d 2142 gnu-r optional 
r-bioc-iranges_2.20.1-2.dsc
 2b380d9cc832f96f3aff8c7114946170 4788 gnu-r optional 
r-bioc-iranges_2.20.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAl4gvMMACgkQxb1sjyKV
1QJd7w//XpNlKe+hBk6cvkxVhZkhhxPoWSTWJ8hoF1FFeUl4IBFaQ+RutGQEkmSL
Ohhaw+wWyzcVD3Q8ggmIoVnh7/o42Ca+i90LuZOy2bOInMZ7jJIjF/3t8eO5Y3LN
fb8SZqWkqzWaCqmme0vNPYB1/4GLuPANWw/NO8rfmqTLUfKKHQVZeTApGGso6GcX
q04i0HDALiYvqwNCWu3OEeJGaq9+jcgdobnzyTG44K7NnQUIxHhK2ok/MiHkJ6S8
sMJ28ElWLz6phExE9xUkO3NQj82UP0FYkO1P6cYvjTaEd1fbTkUQYV/xnfUmjsxu
i9vj8c0jRigfzOoMumMDFyqfuBHhMfP7MUdG4m3VW+QExZb0c3PYrRBFAWN3btk5
TVazYTcZC9rpFPsjYnnt1xrJiZP+gkVJ9mhkG9NjENXpzFC+yLEYc4repk7n5juN
Su5822Rl3YXdI+kyyYIfcx4cXxdP84poxF3LJC5JaU47fHjps3CyclnFmVw3q+1Z
KlZky67VuYEMN0A6CK/VjQM7NUXs8+5S0pYhVvTMVH8TieJtB32nlJuOhpo1g+tA
iT6ekFEtA3W+uJ1NayZbnuxocFfKFT6q3tEl14HRIoB/XtW3IidyGhvB+lndA7yD
n7STzv9H7Meo1GOqJrvFVF/miTD02+UjB2rYGXNhBpGszjQpqhc=
=iXQb
-END PGP SIGNATURE-



Accepted mime-support 3.64 (source) into unstable

2019-10-08 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Oct 2019 22:11:08 +0900
Source: mime-support
Architecture: source
Version: 3.64
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Packagers 

Changed-By: Charles Plessy 
Closes: 939226 939587
Changes:
 mime-support (3.64) unstable; urgency=medium
 .
   [ Sven Joachim ]
   fd4ca45 update-mime: avoid using uninitialized values (Closes: #939587)
 .
   [ Charles Plessy ]
   f72871a run-mailcap: revert 694e239 (use strict etc.), because it was
   incompatible with its argument parsing (Closes: #939226)
   55f3742 Switch to 3.0 (native) to ease the use of git debpush.
Checksums-Sha1:
 6aac846d4d0fb4e2e7374e12b6ced1d1b02ac96d 1585 mime-support_3.64.dsc
 35d439a2bb55a5b2a79f2f91a9aaeea6d417d4f2 33036 mime-support_3.64.tar.xz
 d2b57d3ea8978cb95687171568ab7ea6da64dd9c 4407 
mime-support_3.64_source.buildinfo
Checksums-Sha256:
 34cf61a73c394487614e9927a36de971f5239726cb67ae5c7e704c2012e30405 1585 
mime-support_3.64.dsc
 587f35aabd25e9cabd9be485ce94539fb783d5b8d23492798dbec320ee6b1e88 33036 
mime-support_3.64.tar.xz
 bd042c7b3bfaae02b1c321cb816b3697100fce68dff2593110c6138613f675f5 4407 
mime-support_3.64_source.buildinfo
Files:
 a9e51a40b3def2553a8a9552bd6e548d 1585 net standard mime-support_3.64.dsc
 c965cfb9488f22790841a583ad064fea 33036 net standard mime-support_3.64.tar.xz
 2a79b6b3a366d3a91df65ee74d9732d0 4407 net standard 
mime-support_3.64_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAl2cdeoACgkQxb1sjyKV
1QIhyw//ezOEQZEA6Ao7z3n2daWPWPuqGL6+LLRvSgcLGfzagumkSuUd1JTKLmKL
vWQWa0+MI76QieLvLz12tzgEs3xk1YnL5l6ZwNGlHPoXeN8vld1L7SEHMQ4MGqb9
G/vHGXqIa0pXRJ/DuF/rFbdwE7Ywjww7XAikMiKz21TM/bpjMpwTQ8fJY9ISJ0qb
nOS1864l81EO9i3c51j79wRwm4PYM2ao+MkAxI5S0cYU+QI0bOwu3yv8omn/hM9/
ONXScfvFU4hriW2SUdu2BRqZl3YZGamDAp+kFRBRrGn0GpVwVGLR4fk08nkSntQO
PzUGRyUEjxUdklZSvxTWfMH8DOVMUcODfNYADBfQYEeos9pIhN7DJuYCO28yHaZ3
7Zd984YfvBUl8cFUvWwkxknN0iYn4bLb1Afvwi7OvJnk8zeJ+8FH6HYXeotuuBaf
/dpwei2iRm/7vrxdzkCTTr8Zhqq32l5lMnoKoy2gK7/gZT06QHtxZT+EL/bjgMnE
KHp4W3ILAiCJdtO1HdbQDgsffO5H5JwIQc4p09fACqPTTc9cMBOMFgte+HLI3MU7
WS5Ii5P+0pQsAwZbF5+HQxmArFNIOUXzP3C5pY4sQreh7tD16c0LXMOUJSVix5Xj
8hgP+/MYztmwgKA54B4CgGfApgEbba/TRVMO+GcshlMgA558RbY=
=ClLU
-END PGP SIGNATURE-



Making mailcap optional ?

2019-08-14 Thread Charles Plessy
Hello everybody,

(please CC me, I am not subscribed)

The mailcap (metamail capability file) system, defined by RFC 1524,
associates media types (called MIME types at the time) to software
available to handle them.  It was created to open email attachements but
can also be used with downloaded files, etc.  A main database is found
in /etc/mailcap and user-specified entries can be added in their home
directories.

In Debian, the mailcap system is provided by the mime-support package,
which I adopted a couple years ago.  It has a Standard priority.  The
package contains a template for /etc/mailcap, a tool for interrogating
this database and launching programs (run-mailcap), and a few
debian-specific additions to handle Debian packages, audio files, etc.

Other Debian packages can provide entries for /etc/mailcap by depositing
files containing new entries in /usr/lib/mime/packages, which is
monitored by dpkg with a "noawait" trigger.

Modern desktop environments typically use the Desktop menu entry system
and the shared-mime-info database instead of the mailcap system.
Thereofore, I wonder if it is time to make the mailcap system optional,
for instance to help reducing the number of dpkg triggers active on
standard systems.

But the mime-support package has also another function, which is to
provide the /etc/mime.types file, that associates file suffixes to media
types.  This is of course essential to the mailcap system, but it is
also used by many other packages, as one can see from the
reverse-depends list of mime-support.  The contents of /etc/mime.types
mostly stems from the IANA (RFC 6838).

Therefore I am tempted to move the mailcap system into a new package
(which could be called "mailcap" for instance).  The mime-support
package would basically contain /etc/mime.types only.  In the future,
I would be happy to automate (or see other people automate) the update
of the /etc/mime.types file from information taken from the IANA
website, perhaps in coordination with other distributions.

Please let me know your thoughts (perhaps after waiting a day or two to
let your thoughts mature).

Have a nice day,

Charles

-- 
Charles Plessy
Akano, Uruma, Okinawa, Japan



Accepted mime-support 3.63 (source) into unstable

2019-08-10 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 11 Aug 2019 08:53:20 +0900
Source: mime-support
Architecture: source
Version: 3.63
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Packagers 

Changed-By: Charles Plessy 
Closes: 783195 803729 927300 931300
Changes:
 mime-support (3.63) unstable; urgency=medium
 .
   * Media types
 .
   7909e87 Add mjs suffix to application/javascript (Closes: #927300)
   ac860b6 Add application/ls+json(Thanks: Nicolas Fella)
 .
   * run-mailcap
 .
   [ Elliott Mitchell ]
   694e239 use strict; use warnings (Closes: #803729)
   c7b7de6 Return !0 when launched program does not exist (Closes: #783195)
 .
   * update-mime
 .
   [ Alex Riesen ]
   21035f8 update-mime: softly reject empty media types (Closes: #931300)
Checksums-Sha1:
 3bdd14bb43f42c54e9fb340760fd36c6e2494179 1576 mime-support_3.63.dsc
 2d26aab65b0d4596dc20403f136b782439c890b8 37133 mime-support_3.63.tar.gz
 4106efa6b4aca536b7c84b26f2ef0e86aa2ec42e 4335 
mime-support_3.63_source.buildinfo
Checksums-Sha256:
 cd6253ee91d7f6939df277ec859992fc911bda1f8f24d9a25a87acb67198609a 1576 
mime-support_3.63.dsc
 8a97f4ffabf4a7dd34e6e21425b0b4a8926be6046678d851888d045b3935b643 37133 
mime-support_3.63.tar.gz
 4ce170588c7fc9dec0935de60995df49e0d2d277d71d21b082598be060ec0960 4335 
mime-support_3.63_source.buildinfo
Files:
 2dc56d49c98736b551876a3b73495d43 1576 net standard mime-support_3.63.dsc
 d0857acab723aad4b0bbe2ed6f81512e 37133 net standard mime-support_3.63.tar.gz
 84dc8b8d42bfe12dcffbd39c141d610a 4335 net standard 
mime-support_3.63_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAl1PYwAACgkQxb1sjyKV
1QIvuA//QLth4aii3bTu2llxqx0vtTl7fEAPovXO3QDmbkhkE75/aGcQiV43IB1+
Cs1xneMnnViPz+L7xDMk3RMIwcK/Had0tE9NbjViHS+yFT50HWd1y8nrZNXBtQ+u
RNVjQaw06mEvQowD/tpM2kV1kViLvUTge4sz2koOCglKFNzHBsDHLMKVHmLej7O9
/uJ4fOSasFK5ldkQMOsceBxyrA6SU8fQTB3D5jEcQZsrdNsnnjTsCXHe85I8x6Hd
YX6zgXFCL2lat79w93LTE1Uxhwf2EqbzHxYr1uEEJl1SqPkEQZRR12Os/c+W7ZiR
cZqpEHVa8JwMz6SZ73WZAuZgcKErHN83wbnC2em3M7ZaTDMNCRIQwmriKWdlFAQk
haUF0Ga2wz1Hsj8u+4FzQ34zxU5zNnWP8hDZ8hCzSRNP2qMkN5lvkhoGif1Km8tG
eLS2iyv4sJXZTPk6P76rVuwGYt6TJjM9DiYd1UsdtDEf9ua4/7qQW3cvR8lSt+nv
8iIZ9aL7h8Ab03j3kd7NfVeytzZ6Zttiw2awPNFW49rE6P4NGvwvM8tRpQryHEYZ
3uB4gKa8tyr0ciBALsti8/haFcWuYb4qJTT1LXTu+F1jyynToPVElq99oNeKVohU
99h/N+uk0GkhBX0oUL9G5N/cYjpku5LeUgAPlDu+hJ0zV7gqG8g=
=jhsr
-END PGP SIGNATURE-



Re: tag2upload (git-debpush) service architecture - draft

2019-08-03 Thread Charles Plessy
Hello everybody,

sorry if it is too naive, and sorry if I missed part of the discussion,
but,

if creating a source package is fast and reproducible, could the
dgit user commit the signed .dsc file somewhere, and the dgit
infrastructure use it and throw an error if the hash sums do not match ?

Have a nice day,

Charles

-- 
Charles Plessy  Akano, Uruma, Okinawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Accepted bedtools 2.27.1+dfsg-4 (source) into unstable

2019-02-14 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 14 Feb 2019 22:11:21 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source
Version: 2.27.1+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Charles Plessy 
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Closes: 890117
Changes:
 bedtools (2.27.1+dfsg-4) unstable; urgency=medium
 .
   * Disable the shuffle test on other 32-bit architectures.
   * Restrict build to little-endian release architectures. Closes: #890117
   * QA-build with Salsa.
Checksums-Sha1:
 66e1d643cd84463760c3961af71144e884a1f1eb 2244 bedtools_2.27.1+dfsg-4.dsc
 27fb51ccc6d30f2ce71d73321464119d4a27fa98 12164 
bedtools_2.27.1+dfsg-4.debian.tar.xz
 b486720a7ddac72dc71c9f337d413099c3fa24b7 7197 
bedtools_2.27.1+dfsg-4_source.buildinfo
Checksums-Sha256:
 964e9344a4caebbb3dd6b0eeb60874fd420499a3422293c4103630a096728005 2244 
bedtools_2.27.1+dfsg-4.dsc
 1d271ae0819175b24e86651a4d8edfba8adc0d46d261241d712ae07b73821087 12164 
bedtools_2.27.1+dfsg-4.debian.tar.xz
 ed77a12c1c555c5098d397bbd40f50a93e35ae2571666d1f5753204f6df86418 7197 
bedtools_2.27.1+dfsg-4_source.buildinfo
Files:
 82f6c61f98cb0c97cec803c0108318da 2244 science optional 
bedtools_2.27.1+dfsg-4.dsc
 0771088ea68eef745728eac3b41cb9e1 12164 science optional 
bedtools_2.27.1+dfsg-4.debian.tar.xz
 7da7043b4ce1b3a47d4de07f1d59b090 7197 science optional 
bedtools_2.27.1+dfsg-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlxlaacACgkQxb1sjyKV
1QK3zQ//UAVJEywSgLKnCWsI2WnFu7o31spyDcOPa72ySHBRgA45U2Y6KYl2BiDM
wlZ8IT0/zlCoVP1SyT+6R73i3yBGMWUEpLfw0lLUFpG+Xgp/8R1S6mp3KWueOPF4
ixDB44OmKHiGytYXwK+URuYKImdj3S8u18w9L2G96UFKYX6jLLneXz3Vp/Oq9Bar
Megbaod7m96cOKTr9FquA/KehFx5WvMPK+AjLL+8Qolgf3DR65vSmKtRYDi6oAIL
r9b7ZkmwNGFeOYoYtVdIA2rexXUTXlLJzF7Q/k7bha2JT/+Ooh+/8Ie2x6rCnOv6
x/8IthNGYwI52/EnkFUqmYpS7E3UInnMBjLO7Bm1AO3NMj90tvu4mDgtko19O6Kj
mU/uuEO+rdqqIQPseeg9Y5AghJXwDQBVbjyZ1Uzj7OtBybH+ktD1uFDydOCvcqus
r2NhYrU6x5gj86pvaK6JpFCWPLHU1z2WekaDVCrRlmtZ+NRnf7/H7bYbjPhHjTm2
U5Add6cRdtIvB/7Io9CW+R01Rw6g8Nr0zpCzQGhVK6JXc5ssEpYEHqKP5e287dtR
UrVWkPKhiCcmm8FvqLbJT5h0wJYl1TSsQsuAJwZoEhBpy7Vo7BNum+1neltJlsPQ
8/cY65HJMMCryDJUeWFfib0U1k0bbJcPwRMwUIl/BAbwih9At4o=
=/Yhv
-END PGP SIGNATURE-



Accepted perlprimer 1.2.4-1 (source) into unstable

2019-02-13 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 13 Feb 2019 21:28:09 +0900
Source: perlprimer
Binary: perlprimer perlprimer-doc
Architecture: source
Version: 1.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Charles Plessy 
Description:
 perlprimer - Graphical design of primers for PCR
 perlprimer-doc - Tutorial to perlprimer
Changes:
 perlprimer (1.2.4-1) unstable; urgency=medium
 .
   [ Charles Plessy ]
   * QA-build with Salsa.
   * New upstream version 1.2.4
   * Conforms to Policy version 4.3.0
 .
   [ Steffen Moeller ]
   * debian/upstream/metadata:
 - Added references to registries
 - yamllint cleanliness
 - added reference to Methods paper.
   * Bumped policy from 3.9.8 to 4.1.0 (no changes)
 .
   [ Andreas Tille ]
   * debhelper 11
   * Point Vcs fields to salsa.debian.org
   * Standards-Version: 4.2.0
Checksums-Sha1:
 9adef4b890c06ee08a4301f650c1e17d96fd9379 2062 perlprimer_1.2.4-1.dsc
 f2eede736aaa710ad6ad2b8353003ee1df0138ab 368497 perlprimer_1.2.4.orig.tar.gz
 a2f360a62cf63c9e6e0a88704d316f21aeff1f96 11208 perlprimer_1.2.4-1.debian.tar.xz
 d356734b1c2bcc46013f694487554354aec1fef3 6043 
perlprimer_1.2.4-1_source.buildinfo
Checksums-Sha256:
 1e13626aebed14936102fa16ff1e87cf86833411263bf74adab1a509a9092ae0 2062 
perlprimer_1.2.4-1.dsc
 332ff5dc413ce89809ca36c1147fd3177af9dc044e862f7ed0d54078a988bd53 368497 
perlprimer_1.2.4.orig.tar.gz
 85977c154707d6a75268f588b1734656fd820640804aa9861f7226eb3cc71e5f 11208 
perlprimer_1.2.4-1.debian.tar.xz
 e86626970617393d78a28ae643a6b6a207877238fcca24e105af900fb9ffca16 6043 
perlprimer_1.2.4-1_source.buildinfo
Files:
 dc96bf061e7cfcc0997c817ac4779372 2062 science optional perlprimer_1.2.4-1.dsc
 277373aeff21bc3a62111f233b1f8010 368497 science optional 
perlprimer_1.2.4.orig.tar.gz
 82429201aeab94b65cfd5a4296ab92db 11208 science optional 
perlprimer_1.2.4-1.debian.tar.xz
 d1a9ff09231282fed953e37334929eb8 6043 science optional 
perlprimer_1.2.4-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlxkDpEACgkQxb1sjyKV
1QKrxxAAmzE+MoT5sKD6raeWwLyUiGuRVZJ/P8iudUnOiHUhQYCAXL6OyWbNKc9J
bxmmj92r+PYlXaltZ8EPNWY+5Bi1/afhRK3upEV3coeYQltAdWyUQ+J+ldKFsz1G
Mj222nh6Jboj4ZCNGtDjEwIHGbKIr7hIRQNPCaV6Rc1is3CR4y/2s6f1kxHfIL3W
KKF0OUzMBICRA9tDZPUC6E1NYjXsvSJ41Mtvf2Wfheiy+eFg90OTIyYlWYbFaBeJ
3E63N42/Q1r3BsJlJAZJQCUkw2Vn4z3XGgTnL9FyuhAbAIfMpen/X+LijQrWI6wh
bt+zin68/WNH30UHnAY/BvSWlGtMOKnTKEWqRrE6OGyQI7nu7yd5wJDruFJJMz8S
mUISD2em9jg9jbV/H6BzhUdV26EJGC+ltVq9awEQpMxs61aCuO0MSruHalMd9Mti
nxSclqvjhkln1CtBRrVIFOn5SGN02a3HRtHhYh1sQj0TX6sQRGnoEvMBMGU/0Ao+
Jl9OfZaGCMr4fW+p7t911PeOdg9KbKdZBSpixR2VeUe3eVTrFTK1S/McIdEPQ5Zh
d5ugCbrztQWFddf4rmq3OOHtu9qqlHGjNcvlLwldpKCvwC+bIdx/6L6WZ9TXVB85
95dGJtZCMnZkRdRFuVT3tnGcgYbRB3pa+tuVvSJAyz4qqckvFsc=
=TnJe
-END PGP SIGNATURE-



Accepted mime-support 3.62 (source) into unstable

2019-02-09 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 09 Feb 2019 21:32:33 +0900
Source: mime-support
Binary: mime-support
Architecture: source
Version: 3.62
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Packagers 

Changed-By: Charles Plessy 
Description:
 mime-support - MIME files 'mime.types' & 'mailcap', and support programs
Closes: 908832
Changes:
 mime-support (3.62) unstable; urgency=medium
 .
   * Added media types
 .
   2f7cd89 application/wasm  Closes: #908832
 .
   * Packaging
 .
   [ Ondřej Nový ]
   d48da1b d/control: Fix wrong Vcs-*
 .
   [ Charles Plessy ]
   426f2c8 Continuous integration on Salsa
   638d524 Conforms to Policy version 4.3.0.
Checksums-Sha1:
 fa1d4f2d6fd1a9e4de1b587eefed428acb5e721e 1576 mime-support_3.62.dsc
 4e812139179856be82ae87ad86b13d82456010a5 37130 mime-support_3.62.tar.gz
 51c4d95ee837afa8e8a3202dc693f757886efc2c 4768 
mime-support_3.62_source.buildinfo
Checksums-Sha256:
 62195cb653122db4571f97a3293e558dacf15563b061e8e1f24f6ce1b52b 1576 
mime-support_3.62.dsc
 54e0a03e0cd63c7c9fe68a18ead0a2143fd3c327604215f989d85484d0409f4a 37130 
mime-support_3.62.tar.gz
 088b00afe0b7079c02ec9e6ead3d7d6190d327f957255d4859655cb0d8fff03b 4768 
mime-support_3.62_source.buildinfo
Files:
 76dc7126565e6f11f52f9d9983f77cb0 1576 net standard mime-support_3.62.dsc
 185e0a37c487ef87a48921cf68535503 37130 net standard mime-support_3.62.tar.gz
 d5caac069d06d5c585f8767b38a89d54 4768 net standard 
mime-support_3.62_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlxeywYACgkQxb1sjyKV
1QLPDg/9GAMBSliN5lhAtZmMyUyOMCbQQhbRWDtt3cnt4TOMYv8SFns/SmQLabSx
mEIecHOfv/lscVZCqmJlxRptwl3SrvNZbO2h6C7Ul4k02dQFhbZrsq1rdY0pfyzF
Y/w9xHzB9HsTSkJP3V0ey25t84juGmDBsLwPqzd+nn8afXjIrWvAMKzdl8447g6s
EhH79QTyZzg/8aih5+s6hAyJoyoXjm9AwbXUpLL37aRSEgCubUucvbUVcpeJyBNC
2k/FBDbxsgHHffg1N7yaBPnIw0ovjRftskSPEyTvIpd26wxLPBbwVnPUhp/+Vt3t
niK9QJfqTOCk1zkb0HSlorM9BVxT47pxCWJ594oMDQeaStJk0kyOdFAobdD5h5p+
MbPQpenIVePOMPOp6B/lM63lSsEBDlqmDO0gd+syZH2ZFan1jHMYby1S4rLLuN2R
9sy29ngiz+GtvwoSZvx/EfiUnXfdbjv7aIbxOqedYhzlnTdaIS/Y52U7EiuKKaPo
HeCVCfJLj8LXBx2DCAOGxosGAYAkI6QAwTndPIPD0geiIYGnxcWWaEQo6dlwuykK
Z6jDLc9D3Dj22OHsqhP3iO3kPQxjiSJRpgRPgqo9aqP2LzOoPgyfjVeyaZf4n4ax
pDH3N3DX3qkESyZu+NKZliosc32OCnoLW6IIiTkW5hb5gpCQ8+Q=
=K+sW
-END PGP SIGNATURE-



Re: Proposal: Repository for fast-paced package backports

2019-01-02 Thread Charles Plessy
Hi Dominik,

happy new year to you and everybody.

I read your proposal, and the whole discussion with great interest.

In brief, I think that it would be wise to uncouple the fast-paced
("fast-forwards" ?) repository that you propose from the stable backports,
and I hope that you will be able to get support from the Debian
infrastructure for making it happen.

Thomas sent the link to the 2013 proposal on "Developer repositories for
Debian" (https://lists.debian.org/debian-devel/2013/05/msg00131.html),
which has a great potential.  If you have the resources for doing so,
how about sending a patch to the FTP team that would implement a
solution in line with this proposal ?  Debian support for this endeavor
might be possible though sposored developments such as the Google Summer
of Code or the Outreachy programs, for instance.  If the resulting work
is integrated, you would get an easy way to use the Debian
infrastructure for your goals, and if it is rejected, well, at least you
will be able to run it on your side, and it may be an asset for
experimenting or for operating through stable releases in the long run.

Regarding the details of your proposal, I have not seen keywords
regarding regression checks and reproducible builds.  These are powerful
tools that did not exist when the Debian Backports were invented.  Have
you considered utilising them ?  Perhaps it is too naive, but on my
side, for the leaf packages I maintain, I have always been dreaming of a
repository where I can just migrate a package from unstable (instead of
rebuilding) if there is sufficient evidence that it works flawlessly on
a Stable background.  Which may be why I am trying to convince you to
implemente "Developer repositories" (aka "PPAs" or "Bikesheds") for
solving your own problem :)

Have a nice day,

Charles

-- 
Charles Plessy  Tsurumi, Kanagawa, Japan
Debian Med packaging team http://www.debian.org/devel/debian-med
Tooting from work,   https://mastodon.technology/@charles_plessy
Tooting from home, https://framapiaf.org/@charles_plessy



Accepted euca2ools 3.3.1-2 (source all) into unstable

2018-07-01 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 02 Jul 2018 07:35:23 +0900
Source: euca2ools
Binary: euca2ools
Architecture: source all
Version: 3.3.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Cloud team 
Changed-By: Charles Plessy 
Description:
 euca2ools  - tools for interacting with AWS API-compatible services
Closes: 856675
Changes:
 euca2ools (3.3.1-2) unstable; urgency=medium
 .
   7c456e1 Remove Miguel from the Uploaders field. Closes: #856675
   15fe8c2 Set Maintainer to the Debian Cloud team on tracker.debian.org.
   1a18d6b Moved source package repository to Salsa.
   b90f5cc Remove get-orig-source target in debian/rules.
Checksums-Sha1:
 197bf9b380feb6837108f63006f683586bbb151e 2211 euca2ools_3.3.1-2.dsc
 827a73cbb919c4dfa6d8d958268b9cc9dbf87c46 5532 euca2ools_3.3.1-2.debian.tar.xz
 1dac2fc1a9f63b76527a5e9f296be99f78fdd7b7 390488 euca2ools_3.3.1-2_all.deb
 bc406e4dcbba52f0cbcbecae868a5834d3ceebb3 7017 euca2ools_3.3.1-2_amd64.buildinfo
Checksums-Sha256:
 9bab499092884bdb08566850e7819d29a96da7af97f0dc77900327c78ceaecb8 2211 
euca2ools_3.3.1-2.dsc
 8a69baa3cb804a247bf671d484644e8c8d1b707909186f7252ef36b6006b1829 5532 
euca2ools_3.3.1-2.debian.tar.xz
 e04c5314d75504c11f71ac46a23526a4842c0e3a2bd8a2253e636a27f260bd5d 390488 
euca2ools_3.3.1-2_all.deb
 91a3c4d7c47d894fe59c810672316e325d5d1d29606823f490fbc415c0743094 7017 
euca2ools_3.3.1-2_amd64.buildinfo
Files:
 c927c2e561e7418db02c645e7de3b9f7 2211 utils optional euca2ools_3.3.1-2.dsc
 522a808b303c41a264c61e8b3b765a08 5532 utils optional 
euca2ools_3.3.1-2.debian.tar.xz
 5f2e9a12be6aea155dce47cc5e7ffc0f 390488 utils optional 
euca2ools_3.3.1-2_all.deb
 ff91f23006c6a116426eed849ad9ee4b 7017 utils optional 
euca2ools_3.3.1-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAls5WJEACgkQxb1sjyKV
1QKhPxAAl36SYazejWAhWdopNr0CwCGBw2yteO6VEXxpkMITISXjheqD4agh/29+
hMTKsatIUof1f59yuybfAeENAMqr9xiflU4cairhcObtE8W8AHP8yUkyFhAAcaew
oqBpHKhfOYD8iIjxVlHpsfwRXJcxN8glICwklbXEyJusTJx8Zdma+PZvtKsctaVL
9+hie1TJJX84aQAzy3/2mO1fP9yJGqywwUwtyRze2omiDs96E4Ddm+qDRqqZMvhk
t6t/8KLFm1Pys+STAHzHoRuRPr5SrlM5pcu2boJcPdK6Fdp8+ePti6rNoxuTV2gC
TkMoJqR4BxjhkO/B/fyqdgWmLeZEPxKXHWcuxn7JhRSudYRjA9lx0JhmcyqNJyXs
P47QMMwdWAk+LKrLUYs4o2x/rNAnsJc9V21V4wy8/znbzJDUwp7WMMmQ5GpHdAxa
dGUGwRUTVfO6pDy/P3VECEHS3RIwsqEdY/wLB/7rdIPPrV7WcStPa+SR3WKEGEiG
fIWdcDTfXmc5MCr4Tgso8JC6AwSI7JdckjePbrZs+ipngiH5l7ZcANE6fosATm5W
UEFHy18xe/w77lT/jAnTLAto/7I6EuGcclVmYroZYm+2MEVF+hk6+Ixp3qnizSf8
zG79HSsJRSWaIvjn7DyXgnL7hokEk+1IIFwYk3TRTqm1cIgGprk=
=ouyF
-END PGP SIGNATURE-



Accepted mime-support 3.61 (source all) into unstable

2018-06-16 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 16 Jun 2018 17:55:26 +0900
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.61
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Packagers 

Changed-By: Charles Plessy 
Description:
 mime-support - MIME files 'mime.types' & 'mailcap', and support programs
Closes: 712054 900288
Changes:
 mime-support (3.61) unstable; urgency=medium
 .
   * Added media types
 .
   2977585 fonts/*   Closes: #900288, LP: #1380129
   ad05776 application/epub+zip  Closes: #712054
 .
   * Packaging
 .
   1909440 Remove Laszlo from the uploaders.
   34beb90 New canonical URLs and standards-version.
   5f46ab2 debian/postinst: remove removal of 'see'.
   10a132d Use tracker.debian.org for the Maintainer field.
 .
   * Fixed many issued found by Lintian.
 .
   bb05b29 Lintian: file-contains-trailing-whitespace
   1a2e972 Lintian: unnecessary-source-date-epoch-assignment
   7e17789 Lintian: spelling-error-in-manpage
   bfa7589 Lintian: insecure-copyright-format-uri
   aab7e48 Lintian: command-with-path-in-maintainer-script
   d858f9b Lintian: maintainer-script-ignores-errors
   22b3f61 Lintian: maintainer-script-without-set-e
Checksums-Sha1:
 d535f19fc9a89f33ec1a4f4329516b26a95971d8 1588 mime-support_3.61.dsc
 ceb9f75dd27e6c6fbdeb5aed59c2d5ec9fd153c8 36436 mime-support_3.61.tar.gz
 2451ca5ddc879a2bdde0b94de45b73fab182e8c4 37072 mime-support_3.61_all.deb
 2033c8f70772424738866071f4fb7257c8ee864a 4503 mime-support_3.61_amd64.buildinfo
Checksums-Sha256:
 a96dc8d9e5ac4e7b58b06373b6fa9dde9c07eb049bb141d9c185dac50b80 1588 
mime-support_3.61.dsc
 027fa5b709b3dabfb8dcdf68ab8c59e1f534a37eb1d1b5160ee1fd788103131d 36436 
mime-support_3.61.tar.gz
 503c96546af4907c06112697a1f75ef695e8f75c80f2d28e44e134eae1f25f3c 37072 
mime-support_3.61_all.deb
 4485f1f6de72ae18b17c4039154519b6e5e1f1f3111b27c2657b0b4657a01b74 4503 
mime-support_3.61_amd64.buildinfo
Files:
 fc400897203b8646b997951faf605bfe 1588 net standard mime-support_3.61.dsc
 9744e04ba314b398adaa51538f0ebde1 36436 net standard mime-support_3.61.tar.gz
 930458d560a2f9d38abcd1999f409b6c 37072 net standard mime-support_3.61_all.deb
 c025259c4b8eb8dc6ecbcaada901e5c8 4503 net standard 
mime-support_3.61_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlsk08AACgkQxb1sjyKV
1QKvthAAlWEkslu7xcBxgFTvPMnpNdESHyFuwi6jj3sA3+pEI5tgENsJt8KerNbn
cpITotJCE4muA0uLmKZKHmXYlhnRw7wnx0/uj/AWE+iEtIpIui44B2YpZKXgB2ea
IALPn6mqWhZIzco2+1M/F+Qngf2tKj5XwMa1adqptyWsZHJTuyICGXVX8636/GCr
vsMSkJ2+wwRRUibkiCNU1ln6wNiYGssK4D7FikIrpc9DgKvr+L6n3P8VMZyy++YM
4k18I55TAJ4w7CQYb0BPOsUfbedv7zEwCz+RvkFU2kgIumQ9VAa9lTncfRyq6Pd2
gWzB6k39I/3ADeLzwRHuODOGD4V9uBnGe5mxTHAdgvmXYxUHdAzumcK381KvSSgZ
bErFct4GPJ5lf1wGtR6/9A3cRQCN/9h8d4/cDeqs/znnxF1iJvUAHbVWJPyxLqU2
7WrJxniKWeGmwzVWwMagJAJfRZivkHH1gDoaBxj/Gf74bqtqwNbgxuxRdEAB3mnp
0Zq1HyTfOEGtmbYPBK13GE5IqQ8bs1hoRvEqTX9XYmYWY8JQaFhI2fcs/A8TDVMb
MGGQbZoOgzLfd0IWX1aD5wZFrjKF1wrIhCnbgGaTKNbnBWaHlqdLWhiqWiPUQVOa
hTGHYLC2hM7zMTj+w433G+RuMNugyJA9hDCJaFw9Ez68ccEfZ9k=
=2SOS
-END PGP SIGNATURE-



Accepted solvate 1.0-2 (source amd64 all) into unstable, unstable

2018-06-06 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Mar 2008 11:32:31 +0900
Source: solvate
Binary: solvate solvate-doc
Architecture: source amd64 all
Version: 1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 

Changed-By: Charles Plessy 
Description:
 solvate- arranges water molecules around protein structures
 solvate-doc - Documentation for solvate
Closes: 900483
Changes:
 solvate (1.0-2) unstable; urgency=low
 .
   [ David Paleino ]
   * Updated to Standards-Version 3.7.3 (no changes needed)
 .
   [ Charles Plessy ]
   * Changed the doc-base section according to the new policy.
 .
   [ Andreas Tille ]
   * Moved packaging from SVN to Git
 .
   [ Steffen Moeller ]
   * Now truly releasing (Closes: #900483).
Checksums-Sha1:
 599a23581aee2864dce8a3f2cc344327d879ba4c 2041 solvate_1.0-2.dsc
 06ea80f4b74a1aa71155e343a03f6bb382de10d5 1289706 solvate_1.0.orig.tar.gz
 4fadd05794e7c4401a9b2c635bcec194adac541c 4328 solvate_1.0-2.debian.tar.xz
 68bb51bc4dadb568cb7a1bda16d60269cef9a28f 52364 solvate-dbgsym_1.0-2_amd64.deb
 a99d28c5882c3873210ce866df5c965b59129aaa 1015344 solvate-doc_1.0-2_all.deb
 c8d2c048c58f95fb1dc703a48215515753e3e5d1 6364 solvate_1.0-2_amd64.buildinfo
 06c405b5b65cd9bb84974cea0ac5291f9ac33130 38768 solvate_1.0-2_amd64.deb
Checksums-Sha256:
 ee5130209dad68cf5f6e7ad7a7c4789943af3d2e6f18d49420be3fc8db346ebc 2041 
solvate_1.0-2.dsc
 562201246040b6fc66c1240e437737349ef01d062aa3eb72b6b86f5e1510768f 1289706 
solvate_1.0.orig.tar.gz
 2d0160b494f18706526f1c0ecace7d6a04befcc2d2e52d3a1cab0c51a654569e 4328 
solvate_1.0-2.debian.tar.xz
 a86e81812f2d7d87c2e5066015056d6c5ac5fe85d3f339cdc3056a85776ba659 52364 
solvate-dbgsym_1.0-2_amd64.deb
 71c71d3dbb26fc3a6a66f758eea17e7ed2c9acc2abb9d86d53f2c282a4d98d7d 1015344 
solvate-doc_1.0-2_all.deb
 84b1ebf057289e7ebaad414e05c942eebf5c57250e79b524b3a744771d620d0f 6364 
solvate_1.0-2_amd64.buildinfo
 94e3fd02247d20f3b0872dc4bb477c34ff7be19e2878524bedba5fdb2da5a6ef 38768 
solvate_1.0-2_amd64.deb
Files:
 4584ddcedf96bd8ab5b1d3476e4e9bde 2041 non-free/science optional 
solvate_1.0-2.dsc
 2a59c0fe0395dd9db2ceb235694eaca0 1289706 non-free/science optional 
solvate_1.0.orig.tar.gz
 52fa0dd8a5f65f39fd051e3310c34c83 4328 non-free/science optional 
solvate_1.0-2.debian.tar.xz
 f71ddea32c004b1b4d447754e3aa1a51 52364 non-free/debug optional 
solvate-dbgsym_1.0-2_amd64.deb
 84cdf8cd62cf63dd1b0768762ce3c34c 1015344 non-free/science optional 
solvate-doc_1.0-2_all.deb
 649b008492bb6930db085770e8f53e49 6364 non-free/science optional 
solvate_1.0-2_amd64.buildinfo
 71bfc2b7ba3d458479ee880277b901f2 38768 non-free/science optional 
solvate_1.0-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEhMGXeonn7+0+XKYuL9i+2sAg7tEFAlsP03UACgkQL9i+2sAg
7tHgYQ//aAVxpXcPevDrDmAQcqhy/0aCYiGeARYSMbRyjEx1CUPdlK9EFZpt3dbO
6porNgY8MD0C2gcThraUTxsjjf3uM64uSE4CdiY5Lr1940pB6vjimbqQVnEBJZ3q
OZjN/i9vIOlhhWDjGBKp0GDTG0hf8K1C6TtGRZqAZ0n8DlsP9t1GWHxeV+7CiD4X
SRfL6pAyHrKykUAzQH7A4wf62brKuN4ge/LdTY4nNKQOcpZuR27Fn0OYXylaBNc/
7IUMpM5NQVrD3fgRtUyfYrH7pvq0T9dCyTcDPC8HvzhjiNMRswnNkUO0/qzkHuwb
/qb/AHBGhVuo02fORcJGf91KX+SsCOIQVQLhHl2VaQeWYiBf241hLGp7f3HTL8q7
hrFi2VBvUofSgEg+MpybGFWRc6wCw8AOkue1ByL9ShQb8nFmxarcDcnJlGyHEwTy
LktZdVj1nJePZ8mMIIYdBODW7JhVWWM1G8ZLRy3QPiqokdGi/b2Ae7XXbBkRTvtO
xAin9RyAW4NVxMT7nFhLaYR0pLT+mJepMlu3XcZETODYTzEPHZwDPEtRt+hXtsR0
028US18d3whdWWFDqOA0Y6DFt1Hw5ZBy1JUnQMcZsNzuq5Ww+wLpSfpJ+AEKOVv7
ilCJILX/oCeA+0zm2NEPfk9EceUiu70wMcN8Qb/c+Q/3a/9j9ek=
=mbSg
-END PGP SIGNATURE-



Accepted libtfbs-perl 0.7.1-1 (source amd64) into unstable

2017-10-20 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 21 Oct 2017 11:41:55 +0900
Source: libtfbs-perl
Binary: libtfbs-perl
Architecture: source amd64
Version: 0.7.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 libtfbs-perl - scanning DNA sequence with a position weight matrix
Changes:
 libtfbs-perl (0.7.1-1) unstable; urgency=medium
 .
   * New upstream version 0.7.1
   * d/copyright, d/watch: Stop repacking upstream sources.
   * d/control:
 - Add upstream's notice of deprecation to the package's description.
 - Remove cruft Makefiles at build time.
 - Conforms to Policy version 4.1.1.
Checksums-Sha1:
 2b3b8a9d21e8e64d6324b6745439427b304c260c 2181 libtfbs-perl_0.7.1-1.dsc
 4c613ee2cac2bdbc49d457a41ef7ef1b92f80546 388360 libtfbs-perl_0.7.1.orig.tar.gz
 7a99008266ecd8c745b2890168bba21c050da04d 5912 
libtfbs-perl_0.7.1-1.debian.tar.xz
 7c3f4b7c774945adcc04fa2fbfd8b41aed717f9f 34456 
libtfbs-perl-dbgsym_0.7.1-1_amd64.deb
 d2836bc4775c012539787d89197e030a04dc976f 7912 
libtfbs-perl_0.7.1-1_amd64.buildinfo
 72ed1bd3becb6adceab9a10efe33f56bf618d771 241508 libtfbs-perl_0.7.1-1_amd64.deb
Checksums-Sha256:
 3ad8bef23bf2ed0451eab3ae1c6ad64d806551a35d1579095fb6c91dc6cb80e5 2181 
libtfbs-perl_0.7.1-1.dsc
 26a09a3dfff5abeee6b2bdfd8a07023d99ace3d3e28352a3e856c271186f23aa 388360 
libtfbs-perl_0.7.1.orig.tar.gz
 a74077c7a56da9cccd7008b2925a65867f5e5ca5d47b915e5e715707b21876f4 5912 
libtfbs-perl_0.7.1-1.debian.tar.xz
 dd17381dd91a21467c3f2ac626482a3ecdc14fad4c7f2ee43bd8cc608db49411 34456 
libtfbs-perl-dbgsym_0.7.1-1_amd64.deb
 698111c60d312022fd0065f0cc4246b0820b4aad7efb6d84b72ffc4d616f1218 7912 
libtfbs-perl_0.7.1-1_amd64.buildinfo
 72e3e6f04f224a379be1e30bfafc7e41d48ff024f70e4e161298fa50de63bf41 241508 
libtfbs-perl_0.7.1-1_amd64.deb
Files:
 5c12e3a40ad5387c5d76d830c3a6dc8d 2181 perl optional libtfbs-perl_0.7.1-1.dsc
 90f94b3fa345b435262e803ceba05b40 388360 perl optional 
libtfbs-perl_0.7.1.orig.tar.gz
 07b256ff2c80248780eedcab46c1ce60 5912 perl optional 
libtfbs-perl_0.7.1-1.debian.tar.xz
 02079f198b4f8a0439b32d76ac6b5f14 34456 debug optional 
libtfbs-perl-dbgsym_0.7.1-1_amd64.deb
 4ee4b9136d7a694b6c06e066c30162d0 7912 perl optional 
libtfbs-perl_0.7.1-1_amd64.buildinfo
 fcd65cd9df77634701b1ef16ea50a6a9 241508 perl optional 
libtfbs-perl_0.7.1-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnqtN8ACgkQxb1sjyKV
1QJBSA//ftmWyfgZgCiokGiGm+VuKJIhfgf9pZDfbttpMkvbC711I9R14p5ewHfQ
jcbJCwWruSM6+Q31EB66ZlHWiINk9a+zsDQA3D4FSrwd/NjzJtrYM/UrDttfso78
oQHdphF81Bg1Zmz10hyQPpb6eAxDHOC3LLCZXuF4NvGk6vkhXUGT5zWUv+FPu7uK
4LlW/uGVFL2HIKId94iwC3eq9FhiOQbYh0hXCzT+pZqdCCdyPq9IZrwIrd0gzor7
0j7nI+z6yMmDw0ymTUbSYeVpAaB/TSC8ZeJLdxzDT0jSp67PA/fwCyEdG2h5ntR6
Fjs2zar6ZuNbYmwnFXHPUPcMtYSoXdgs5rXsxg4frXIPoRZyeO+uEc7L/K/YN3EB
VALOzFR9cp8v3S4DykXK3UieoEGb3NylD95tThZ5s6qT2Gtqhs9vI4+LFELMeD/S
qJRpz6jwoEiYUNn9pfCv+XO6PR3ZglwsJBpRPn03xTU7B1d1zpynWc+FOKq5hg5d
v6RaT9taNdc9+jiTHqlRlvXWtauNX2z4LePX8ojFUaUo80ay6sZmt2hiegig6uVf
IdYLyKHWus5S/6iwxSNkalg+T5eYdTYVrL9+JlMWSjXPpcQuUjVRoXDIx1I/5S4J
VL/Jn4E91KC/FFbtFQQFYYX9IhJmx8LeFRvhzXad4ptdb7/LW6k=
=dRHl
-END PGP SIGNATURE-



Accepted last-align 885-1 (source) into unstable

2017-10-15 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 15 Oct 2017 22:20:19 +0900
Source: last-align
Binary: last-align
Architecture: source
Version: 885-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 last-align - genome-scale comparison of biological sequences
Changes:
 last-align (885-1) unstable; urgency=medium
 .
   * New upstream version 885
   * debian/rules: re-enable multi-threading.
   * debian/control: build-depend on zlib1g-dev.
Checksums-Sha1:
 5ac541186d532fec6ab0465047627fa44e3a423d 2013 last-align_885-1.dsc
 b2b9fbd0d49d73a38ec89519f9dc24d412d44210 386908 last-align_885.orig.tar.xz
 aa84f2b653cf2666c1be2fdaa94f889ee4e509c4 9236 last-align_885-1.debian.tar.xz
 e86ffeb96a72020fecaf91d7f1bf6efe84c26fc0 6418 last-align_885-1_source.buildinfo
Checksums-Sha256:
 2068cd865968924e1d92de950cff1a8862fa2d1bca9a5b9d6dd5e3096aeeba78 2013 
last-align_885-1.dsc
 ac8fd816f3dd601206bbe5867d96f2f06e8b818d367f3dc8f4b635a835f95327 386908 
last-align_885.orig.tar.xz
 cd98df9627a125b1db4d15eedec90342bb59cc1b59b3df32e60f9a042b89e88f 9236 
last-align_885-1.debian.tar.xz
 42c2388beb108a280e19a3468827fc286484c4f276c567d077715259837441a6 6418 
last-align_885-1_source.buildinfo
Files:
 92f1f799682d2c9105dcc7fd05439297 2013 science optional last-align_885-1.dsc
 d20fc855e28067585ecabbf78f6d6f4f 386908 science optional 
last-align_885.orig.tar.xz
 a461aad5d06f30851c3ea6e1e86f008c 9236 science optional 
last-align_885-1.debian.tar.xz
 3abc656f060e2285be3f626a770515a9 6418 science optional 
last-align_885-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnjYP4ACgkQxb1sjyKV
1QKHwRAAuaG/9bmSbPpm7MjS/kxpeyD4GoSUU32kJz15u8z+wsmlPyE8Ke8V7v/R
X4k3boT8QI2kOA4RojxstLT0swMz/pHu3+D1/de0x551cjb4Vk5qhVg05q6PSMrQ
TCPmr64zABi2PFjTp4pq8yrm8BbMJtXfHNnBpq68RUvuef2aORugIeb26bvv3d1s
XHFHv0zZwJhMZnxr8a4CInzU4KW67uOFZ8sTyRZR4kXvwYNMoRfMCFKgMSeBvz+q
lfEkcKzbOyPAkQJxDpY3tGXV6/NFwnMiWgt2ZF59l8B1LUvsc8s5bRxZRiEfw4mi
TgRESfwQbuSG5/6TiXXXw8mDYJFGS7urk5ophVkykw5mPsoDR9pC7CP7RBVAupWO
+mvfw+gZJOZ8mr3xwI+Kq+P0HEr7Ve0WV3XctUgXRxd/NyM7OPlwGDxFSITd/pQW
F67pTk+7Ao16plpm8qLX7M1s+vOTXZ7rt7PPT9jUfLcZGp1fwY04pEa95+3T9GTD
ZyAGMTjOjBDu66REgvDLz7Qweo9uOPwYVf/F1QVUfeiI80LwiuWvhCXZGu2doiWA
Tbm0BgxqEmEZHcgIT5qoqEw4SjSnnbYWSWI0VU1yjcyK/IzM/5vl+XQXLtVS3PJU
LiKISFibTdxT5ac6h6Y02fbk2fBk5BjGHblz+29n3it0oZ6Py8A=
=qMZ3
-END PGP SIGNATURE-



Accepted r-cran-pheatmap 1.0.8-2 (source) into unstable

2017-10-02 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 02 Oct 2017 13:29:54 +0900
Source: r-cran-pheatmap
Binary: r-cran-pheatmap
Architecture: source
Version: 1.0.8-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 r-cran-pheatmap - GNU R package to create pretty heatmaps
Changes:
 r-cran-pheatmap (1.0.8-2) unstable; urgency=medium
 .
   * Team upload.
   * Rebuild for the r-base-3.4 transition.
   * Moved packaging from SVN to Git
Checksums-Sha1:
 f805733ea4530636a0c9702163693231718f3b27 2075 r-cran-pheatmap_1.0.8-2.dsc
 826046a2045ea21f3ca395d164d95d184ba125bf 1508 
r-cran-pheatmap_1.0.8-2.debian.tar.xz
 761a83d3a4496c236b7a82bfb14751b22fd08917 9014 
r-cran-pheatmap_1.0.8-2_source.buildinfo
Checksums-Sha256:
 2c46dd37b6df6a5ee99cb599cbb10eb535d8266daed80565ef96c14a93cfb99f 2075 
r-cran-pheatmap_1.0.8-2.dsc
 5952f76533e772c6fa8bb66b83338f0374b8e3eda467625abe1b63dc88ad63aa 1508 
r-cran-pheatmap_1.0.8-2.debian.tar.xz
 bcd1d0d62a3f8aff985b8f4e2f137ed5bc3013ce06672556188ddc1fd3e41ce3 9014 
r-cran-pheatmap_1.0.8-2_source.buildinfo
Files:
 594fa2111238d21d7cea4522738718ef 2075 gnu-r optional 
r-cran-pheatmap_1.0.8-2.dsc
 df3a71b186fe2cd52a6e46d3c7a7958b 1508 gnu-r optional 
r-cran-pheatmap_1.0.8-2.debian.tar.xz
 4b52544ce7834ed15e078d1b7d0f3b9a 9014 gnu-r optional 
r-cran-pheatmap_1.0.8-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnR0W4ACgkQxb1sjyKV
1QKOIBAArEQ28T4cJkUyUKrWeiSanCuPk0D2KzeCroI7Gb+cBoi1Cyz3krs5OYZG
DehV7eSmLtrSghI/6S6pxRGoDIUEjC+R9ecEGk4UKWS9gBl7fjopu9MbicNhIUhE
sQdy7RMrA7M+QHfgLtb7+cFyk1HLNz857NSbyL10mEazT7CY/9kJr+Pwgyh1FNlW
mxIelDWc9CFXZC18rYfj7/5mRvk4U0TCeGnmbnw3b8CnU6ZFLvBKkSMVTqUDq47/
IMdAQtH0aaiGV+tpuBnqa9BQrVOky60kWhCcdBYBHJ/MV8tiFq2V7D/jwuya59R4
e/Upt74SiDMEfIobmgUK8DK5FldLuMjuhoHHCWJOepf4o7erYfzTffeE1m+VtuKc
w5a8uLrmEvD00yBwUhVEGWlxwOA296Uxg7pez2I+2ynj3lEY1cGE8l0x0ivFMG6V
Rm43dArtbUDS0777la+JhpiIgXyN8xSOyuWECMdf8gBc4hkbe2N6OQsI546d1C+K
QEtcyywgN6GwLBSbmnuZa9XtUGIK1rB2iG0D0ubluvLXgsvQePltGPWXaefKkREN
U0VdXjYVXhOG3a22OZiX8IW4cnVF3sB1YACPtdjoorUpyHoisqQDCydG0Nj2qT9O
yY0dY5ZY9Re+S9hTdmcPXzaKBCKGS/mXyWY8XQQfb+4NTHkTDOw=
=3qZO
-END PGP SIGNATURE-



Accepted bedtools 2.26.0+dfsg-5 (source) into unstable

2017-09-26 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Sep 2017 22:42:08 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source
Version: 2.26.0+dfsg-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Closes: 876802
Changes:
 bedtools (2.26.0+dfsg-5) unstable; urgency=medium
 .
   * Use "override_dh_install-indep" to prevent failures when
 architecture-independent packages are not built.  Closes: #876802
Checksums-Sha1:
 04a108a96014fbd1cd7fede469a536d9b4c2b627 2166 bedtools_2.26.0+dfsg-5.dsc
 a83d341243b104197279e2cbbc5f0efadd83c9a1 52448 
bedtools_2.26.0+dfsg-5.debian.tar.xz
 7a2f24ba256d4e2d63c0faf6c6921b84247dfedd 6807 
bedtools_2.26.0+dfsg-5_source.buildinfo
Checksums-Sha256:
 6fe8f1f4d3a4c2a0eca845f5504c29f8148d062210688dbc8cc37c55569be94b 2166 
bedtools_2.26.0+dfsg-5.dsc
 75284b5aef8ff132e455cc88f61b4a656d59393a80ebd8d530e279a8def709a7 52448 
bedtools_2.26.0+dfsg-5.debian.tar.xz
 5a4c16fe59284d375818607c9e71d819550d013dfaea9febc713e9f2de767a13 6807 
bedtools_2.26.0+dfsg-5_source.buildinfo
Files:
 dcb6b6f67beb6108d235f2ced975a448 2166 science optional 
bedtools_2.26.0+dfsg-5.dsc
 4cc7d742dec2849120ba25d900cdd2ba 52448 science optional 
bedtools_2.26.0+dfsg-5.debian.tar.xz
 77c697309d2b2cdbea66dd0670fac443 6807 science optional 
bedtools_2.26.0+dfsg-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnKW6sACgkQxb1sjyKV
1QKL/xAAkQEQ8iaoMf0qCKHHVx4OHTqLvfyOTNo4ciXwQTSWV0heDamXelI4ErKT
+FNLfls9+c9QirDR2CSd/jiJ4QoXzduET9IBlL3ttiqZAv7rClgEvG1Wauq4/SHx
chwkC0L65d1Eqx6epAPYcYqHLOBEPQbjdrgAblR+B6IlFgehMo9pmNFgfhtd1BlS
JICd7FQamr3ouOoFNQXbAh4/HmmMoMppOflbV01xiUZJ34KVUra52cFIUAlBH5uZ
LKQnbb7DMhGg66dYV8Akcjbj8FaM4vPqBwaLkmUh6dJpCKH/HDF7THaojNATd7kg
4VkP1h7dwqLUFP00M+5TwG6oN9xIPa8tzzz1/XXNqsRk+HzkZdS4qAHFDkPjVShD
byLZecGkUm7GiT5XjC1EchDdwgubc6h9RT5D6HHzb84AMppBXSclayvP8zfvyqKu
nzwwvsbKTBVFcO0V8wbVmKsgNb2FjkuO1RGaz0K+gGZKppGveFCM3HQpXM6d/lLn
EylADqacQQ9NqPuab/gXV/LgqHdu03s/dj61IysDp3h8llc3zWTCzVStPZ1BQQ7h
G5u/LQS9tN7N0mqQWxrlxP+AMqF8IoSsv5IV+qRLdl1UMru4yKKAU2arzmAIkD9X
te8gY46gqxo+9pb/BLg1vvA7ZQ9r70aRI8g0W4vpPHwenIxF7vo=
=MhAO
-END PGP SIGNATURE-



Accepted bedtools 2.26.0+dfsg-4 (source) into unstable

2017-09-25 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Sep 2017 23:09:53 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source
Version: 2.26.0+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Changes:
 bedtools (2.26.0+dfsg-4) unstable; urgency=medium
 .
   [ Andreas Tille ]
   * Fix autopkgtest
   * Ignore failures in the split feature for the moment
 (Related to bug #747337 but hesitating to close it)
   * debhelper 10
   * d/watch: version=4
 .
   [Steffen Moeller]
   * debian/upstream/metadata: Added references to registries
   * debian/copyright: Added Upstream-Name
 .
   [ Charles Plessy ]
   * Distribute /usr/bin/groupBy again.
   * Conflict/Replace/Provide filo (which is being removed from Debian).
Checksums-Sha1:
 cdabe64f9b46f4ed41833ce42132f735aee6c918 2166 bedtools_2.26.0+dfsg-4.dsc
 74714cbaa759c745937755badce84b981d25b03e 52384 
bedtools_2.26.0+dfsg-4.debian.tar.xz
 091388f3599bb939888d0e15f1dba09ce0f063a6 6807 
bedtools_2.26.0+dfsg-4_source.buildinfo
Checksums-Sha256:
 27f76d2f623eccf2f7b10e5f698f833384762becbb8476f733cf62adc8362bd4 2166 
bedtools_2.26.0+dfsg-4.dsc
 721fe3163c9d4e96c1658bceee68ca76e729af30c9daf18adf0fe673d3f69339 52384 
bedtools_2.26.0+dfsg-4.debian.tar.xz
 7d85013b44ca938f4f3423a61692dd62ed976a71ed59ca21f15fec96c3e764a2 6807 
bedtools_2.26.0+dfsg-4_source.buildinfo
Files:
 c69f4c30f1d8774f24bcd5f332980277 2166 science optional 
bedtools_2.26.0+dfsg-4.dsc
 625562c875642dd55213d4df7b90d4a7 52384 science optional 
bedtools_2.26.0+dfsg-4.debian.tar.xz
 f09d76d7bc07456c99d3c60bbc0fa0d4 6807 science optional 
bedtools_2.26.0+dfsg-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnJEuMACgkQxb1sjyKV
1QKKqRAArsup7RNEP5XNBN+ru3GcL8lMZCHqWuYTPS9/BZ9nS9W4g5lZ8g3ZSCvO
NsaKFyVDUaw3GexE0SOPuuIk8+jL38l87IzINJyekz3vI1woRhpKdmWt1xdJzDre
IOQ84sJlFR7oata3TASity9WmVqfZZYVJ33OtDNmxouLAF7rcBof93qFa2Z8fCF2
wCHrwBTq9V911rj/ZuXxwZ1Kza5iRUx307H10ARQAN4/apH+4ROCrCUXu92hwHE7
LAgsufIVuTl0UPFi7LPxd4qga1jSj7HIi0o9MDaB3MBci5Y4x9GICDw/r0j/PKUE
a1pcE0xrOYKR1sfIT/jE/zNJcCvlPQcKL6tiU786sw564if1WVnBAhXhyt+yAy0G
0aFdzFhae/hyevPKLyBM/oCVZPE4Zer/D5MZREcvKZuwOTYDW5BRklqcHb83/Yir
duuPTkDPaIr2sDLpAfC99Z4qcT5jRgr75SuPzhMepAJAxu5XA3HQI4OD9ryZP8F9
Rn3kDbDk0v4pM0NyQEignZBegLYBZpqUnoy8j26HAfDz8N2fjyYzOrOeVJFHQfkq
pvZv0s9iyhX9LP+Ivn7iDuimxRcvUfZe5JLJB1BW480YlGuv6AoA4X2gq8wt+waC
06yxcnPcJcLelcsZRfnSB9Z8Lg7mp6J6vLOryO/F8eniJUmDMnA=
=GQ4P
-END PGP SIGNATURE-



Accepted pvclust 2.0-0-2 (source) into unstable

2017-09-24 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 24 Sep 2017 22:23:04 +0900
Source: pvclust
Binary: r-cran-pvclust
Architecture: source
Version: 2.0-0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 r-cran-pvclust - Hierarchical Clustering with P-Values via Multiscale Bootstrap
Changes:
 pvclust (2.0-0-2) unstable; urgency=medium
 .
   * Team upload
   * Rebuild for r-api-3.4.
   * cme fix dpkg-control (VCS fields, Policy).
Checksums-Sha1:
 25891b51d53ef9fbe5da369594ac533048c22e55 1957 pvclust_2.0-0-2.dsc
 85dec689bebec6a5eca24075923dade73c725e64 2652 pvclust_2.0-0-2.debian.tar.xz
 04fcf6571520a345bd631fabd7f65661235b2ba3 8632 pvclust_2.0-0-2_source.buildinfo
Checksums-Sha256:
 28c753312475e8ca71de3808b7ddf3b33c3fbc0f8489dc8e9124e74e0400b16a 1957 
pvclust_2.0-0-2.dsc
 015375181e6fe8bc87edb024d81cb98a903695e4f18c63b2051c7474085d3c45 2652 
pvclust_2.0-0-2.debian.tar.xz
 1539801ebe10880c420769b92c3a6423367d3c60f896869040908e0eca9b6dc2 8632 
pvclust_2.0-0-2_source.buildinfo
Files:
 b64f4da0e49f034232a109a4a3b6a226 1957 gnu-r optional pvclust_2.0-0-2.dsc
 b067af4986b4c4babdf07fe58065 2652 gnu-r optional 
pvclust_2.0-0-2.debian.tar.xz
 6b2453415f46bca57179e58479805e95 8632 gnu-r optional 
pvclust_2.0-0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAlnHs/AACgkQxb1sjyKV
1QKLiRAAkkQWn/VqqdPlEKdArPkmb+JG9m3ICV6FIuhyy67B7mDfAx9sqGLDOa69
7sip80fyDlJIFiaewJ/vyBZe4n6XxHHTkEy9RvBuJu0c5OoTuazEmZZ21qPotSe6
waoswcMryl1TM9YQy9brkZHLSKviAy94ygfx9d4y61TFDNOzZ+imfYh2jTjHWhVo
MBSTK3nI1PpY+X0hnrXATpGfSlp+oExODPy8aAd4SU5INWHufDPU1TdkOr1xXoJq
akYlS/8xhyiK7DHW/0KxxVfl7Put7/61N5QM9TOeQ5DCnDDrAm8HC1G3EvbJbPi6
keGLg7f1RoOcVuxhYuv6IPq3n7Ir1jYFsBGxHyK+0IrqSUfIuKLS6vFbhLPjy2dE
SQEYmAdOSrKYMtSHfrH3BSpvW7tm5hqG4WTjScmZcSjWuIEPEWzayH5GakmDQxfS
2A+DUT3nK8Q0LDBIv86mHnIx1vLuPfZE8TR9eBCOBhVO2IDhVyrtupPIih8Zt5z+
02amM9f5eaegfCTrT2E5ejqEk43xS5Bx+7h2OnghtcXiK/LyxoLjKlZg5owa9Czq
+65m+p638j5BhGAOk01uFvFnuFLcj7wsCoCzvULTfPvpZyJFgq6CZxEb10KPlrHs
2zKYVZaCjBVaZ1Y62Yb/UdSus7unIV0QP419jj5COGCBs22wPHo=
=Pe3u
-END PGP SIGNATURE-



Accepted perlprimer 1.2.3-1 (source all) into unstable

2017-01-22 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 22 Jan 2017 23:16:11 +0900
Source: perlprimer
Binary: perlprimer perlprimer-doc
Architecture: source all
Version: 1.2.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 perlprimer - Graphical design of primers for PCR
 perlprimer-doc - Tutorial to perlprimer
Closes: 708477
Changes:
 perlprimer (1.2.3-1) unstable; urgency=medium
 .
   00b28ba New upstream version 1.2.3, closes: #708477.
   840bfa2 Simplify packaging as .pl suffix was dropped upstream.
   90fbf5e Delete patches, applied upstream.
   f700242 Remove outdated Watch field in d/u/metadata.
   d35bd09 Removed Debhelper file d/perlprimer-doc.dirs (implicit).
   c37612a Adapt d/perlprimer.docs to upstream changes.
   6ae70e7 Use HTTPS URL for debian/copyright.
   a066529 Minor format update of the gbp configuration file.
   7cdcd1e Update icon to display full size and be specific to PerlPrimer.
Checksums-Sha1:
 d115c1089b6e7eeedeab6f9ec317c77ca8618738 2082 perlprimer_1.2.3-1.dsc
 1a28e99685110af285c9be736493139a092f6ce2 363793 perlprimer_1.2.3.orig.tar.gz
 3b3bfc65e22af76a49eaf67722c55a8ea8591cd8 11460 perlprimer_1.2.3-1.debian.tar.xz
 0498461740024ffd7681b840c0d6989c21706554 254524 perlprimer-doc_1.2.3-1_all.deb
 62b624dc3821908a20a0912a7901961c605ee59c 96670 perlprimer_1.2.3-1_all.deb
 715928fe7fd2f0d5e81b9726fccdc31d9b796725 4981 
perlprimer_1.2.3-1_amd64.buildinfo
Checksums-Sha256:
 4cf26691a304fd60bde22b6a53e91fbfd10668e41ca54c609c2104a3f627f411 2082 
perlprimer_1.2.3-1.dsc
 322e4c361a5a03f253db046709a3db15964217b59389965a53706b8d068b50be 363793 
perlprimer_1.2.3.orig.tar.gz
 2954efba6520fa69a48b6297f3999100464154bff25eb494e69123b21026350f 11460 
perlprimer_1.2.3-1.debian.tar.xz
 471d31d782744bd949447ee547139d5e1186275941f6fd0375fc79902032a900 254524 
perlprimer-doc_1.2.3-1_all.deb
 ddbf591dafd0b4f67b0b11a064a243eabf366989530c270613f56705a90496e3 96670 
perlprimer_1.2.3-1_all.deb
 612e52fd19598cdfafa88378d66f833bdbb1ce6a2dc0d918fadcb6b358f9509d 4981 
perlprimer_1.2.3-1_amd64.buildinfo
Files:
 fafe0012332f47e3c0f777b8667b6375 2082 science optional perlprimer_1.2.3-1.dsc
 693e5a40f1a149a1dd9bfedfa6a617a9 363793 science optional 
perlprimer_1.2.3.orig.tar.gz
 84fe2b1ef58df9ff9e4d0b131745af72 11460 science optional 
perlprimer_1.2.3-1.debian.tar.xz
 9244e31f7b231efc284029b82add15de 254524 doc optional 
perlprimer-doc_1.2.3-1_all.deb
 dfe37df0b34436ee035cc5798f11d815 96670 science optional 
perlprimer_1.2.3-1_all.deb
 b566efa575af7b906b6553f71e415bfe 4981 science optional 
perlprimer_1.2.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEc0cUmcxg7Z7ugFlGxb1sjyKV1QIFAliEwKgACgkQxb1sjyKV
1QKtFA/8CegRPi2nVEAgL2HSC8M96pZ7g2yrICK901zsT/DXaDfhOnbSikcrtzf0
tCCWgy3dzeb1ckX67AXr3/1wcOylkzB9P6QsVWSXNjBNCivEVHMCAmEI/6msLXYX
RxluA0RwFb1/ZvtOXDNNjIJIxS7a2jw6R/2FEVktvT0eY1NPC3QJF8lY7vKwX4Hu
VGgAmWMgzIa5uYW0gBxvvOkML9ickmQZDDjaDftZddQgap0zH7tyokDAVza/scBr
gI2ov2W+oXX2OVDn3avErZ9gvelDJzI97K5GB78OnijHT1Ksjp6RkS9esYDlkHTi
pjsjsqj2Ab61XnKnx6+DYr8Yt4y/8XhSpPAec7HT+9+sZ/lJhjRRAsTKAfjYs1y9
LQrexjuwWfQ16mM/p2HGgGBpLsabqJavyH1lrY1mcpTquv9fdAwsdK3mJtWuW2kl
ZQOFyy3dsxWkNapoNu9xP1vJQ7o9Au9rzAgv6FFd7egaQnolNaK+JRYqkw4bNxzC
DmcGaSN7SA4se84q8qlhhfTbWuimu0Ic5767YaYeLYOMvgyt0hiOuXRDnOJPgWTh
v4oe/B9zAOwbsWOmFWMz7l3A4nPu4jsakDV+Ick8EtS1+wRCL0YsqRZC6kFT1aKT
D2d6FXMpJCZ4ngrxijGpvN/czvUga/bFlZu2HOzXjgH4Akar7/k=
=PS/i
-END PGP SIGNATURE-



Accepted bedtools 2.26.0+dfsg-3 (source) into unstable

2016-11-07 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 05 Nov 2016 21:48:09 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source
Version: 2.26.0+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Closes: 831833
Changes:
 bedtools (2.26.0+dfsg-3) unstable; urgency=medium
 .
   d6d3452 Sync with upstream repo at commit 6bf23c, closes: #831833.
Checksums-Sha1:
 4472b01419bd4fe181ab82540df71ed9c013d643 2115 bedtools_2.26.0+dfsg-3.dsc
 4b410659aa085ebd60e6f8bc9d37a0845d0cf3a2 51636 
bedtools_2.26.0+dfsg-3.debian.tar.xz
Checksums-Sha256:
 c64c137b24feb56d7c4733724f8c425a1271b907a14c72f4953cbf626f94427e 2115 
bedtools_2.26.0+dfsg-3.dsc
 7953013fcab73dc770dbe81b7615f6618b060b05913780c1a8c6a4f7643455ae 51636 
bedtools_2.26.0+dfsg-3.debian.tar.xz
Files:
 f0c31846c114bc05561a10f8572d800c 2115 science optional 
bedtools_2.26.0+dfsg-3.dsc
 df5973d57bee1e8944d13903a04f3bb6 51636 science optional 
bedtools_2.26.0+dfsg-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJYIHwGAAoJEMW9bI8ildUCRoUP/RmbcnvPbDu1BmwONTU3M7k2
N/KQfm6oYRAF9+HgEyWmk84vA9ddKHB2w2Z7foI8NgoGwZ1Q+ckH6KJokUsQSmLc
EcGDzrCQSR7qjMyIx3V50Jdcfr6raKhBZ9wXYLGkhc210h8WFrGcj9heYhyY2sxb
wjY0VTXyamJafEP0bf5r/kEWmpPukOd3f36odjTK3Bi4t8ilzRw/PMqS/Ae5rScq
tfHIypD+sHvwsNeK6FOh43tPlkyMpTMPBP84+lAlWs0KQcN6X+Bo4tChxVwj8o0m
hItSPhPk3a04JXx8kZh0Buod6UIyRfzBaZsatOK9ng/AkrOfcXmiK+q18oSuBsva
yAn34G50QCldAJZGx7I55iEqyW00Zo/U+sSywNy/MRcSPqFPQCQEpLQzfa0rTkc+
xN8b9HFUgBLPbTB5maYipWsyWIVzWTMUx18TpjiJtbVihHjbYnIVluphT/byf82c
H/bEKCMtewWaRmyLOnPmTPB6iGxc8qNH7OqPPMOy1IZjQ7pblySP5R9DBU/58PHQ
nEYMgERjWiKGRjyb7MHNZz9n2kUXabFgd6ASrSuciqK/z23qUWXvbsWYGvKc7v/k
AKoImcn1A7Qxz88AGZpLaTcF0ao9VTDo7WFhwsn5qGkfwRck+KoBlVZCCfSLEgj3
/Dp8sGA2arFvGe+sfM/k
=Ictc
-END PGP SIGNATURE-



Accepted euca2ools 3.3.1-1 (source all) into unstable

2016-10-22 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 22 Oct 2016 15:24:47 +0900
Source: euca2ools
Binary: euca2ools
Architecture: source all
Version: 3.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Eucalyptus Maintainers 
<pkg-eucalyptus-maintain...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 euca2ools  - tools for interacting with AWS API-compatible services
Closes: 841480
Changes:
 euca2ools (3.3.1-1) unstable; urgency=medium
 .
   d271cb9 Merge tag 'v3.3.1'.  Closes: #841480.  LP: #1527341.
   3f4b6a5 Depends on python-requestbuilder >= 0.2.3.
   4fae14b Emulate source package 1.0 format with single-debian-patch option.
   75ceff1 Use secure VCS URIs.
   07987b8 Use more canonical VCS URIs.
   c039d1f Depend on dh-python.
   a395a4d Conforms to Policy version 3.9.8.
   6819a8e Tighten dependencies on Python and requestbuilder.
Checksums-Sha1:
 dc31225cc7c9c5ac3b3865ccc9eba008d00d560a 2291 euca2ools_3.3.1-1.dsc
 e8c0381bbbe8c3f1511f7919c8cbdc9279fc735e 244792 euca2ools_3.3.1.orig.tar.gz
 4dd60dc2745defd4b96694ae9b0b667178b01c08 5520 euca2ools_3.3.1-1.debian.tar.xz
 182307a4d19061689c84887c24b5705c032f445f 394634 euca2ools_3.3.1-1_all.deb
Checksums-Sha256:
 3d10ae4b5f6b72f4455b98e070410de990da46b016a6e0d6832874360e6b6163 2291 
euca2ools_3.3.1-1.dsc
 7604d5abe94804c42828c1828f57124d1403fdce862fc1f6c1cdb421cd666856 244792 
euca2ools_3.3.1.orig.tar.gz
 c4649cdc04eb8c7c8d1733670bb85441b3c45b73bbf6cb1c7457c3961bb053c5 5520 
euca2ools_3.3.1-1.debian.tar.xz
 549622e091d490644e572d54e931848e4a570c2499e8b8bd080cb723c99f276b 394634 
euca2ools_3.3.1-1_all.deb
Files:
 d20df4bffa24dcec88268aefd1afc2db 2291 utils optional euca2ools_3.3.1-1.dsc
 73c08c4244fe6f07f1e94a40af8234b0 244792 utils optional 
euca2ools_3.3.1.orig.tar.gz
 3c887c98c564e4eff220e16480aad54c 5520 utils optional 
euca2ools_3.3.1-1.debian.tar.xz
 8fa2a5b4ea17a85930aa2f9d0958e853 394634 utils optional 
euca2ools_3.3.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJYCwxoAAoJEMW9bI8ildUCsAQP+gJR/hCOrTESfi7UzQ5TyO2B
haZRRAHcyj1rmyt2HMqh3OgdC/r86CWr5si+NcRca9y882+zyxrI2EXoYvKdPwA3
ClRTd19jV3d94vMIJ8GZms+Ve6445XOPq3vNOtR548QcHhjtXp6Z/BCAhoOQTGZy
wX4+W11d59L+lNCcaYrLEWlAp6W2CfQp4zObIJOeJWkBOJPB3FsYabMO5OKuL+Ka
fB+cs/TiRiGWXAhbhylQFOnsxybTrtqmgtSFbFzWCvjlmZ4/kR9NorDX+uJkxATe
JQohUbZ45iLW0J2vNcR4Pd20e1m9LInAl+ezDaauQV0KHW63OCuejb2voBnjtvw1
33S3tJQ3cl2k8sYrera8dQuSS1ZY0jt9U9RtP1HjeqjBCWdD1vlsxCyrfJmJwBF4
uhBnjiYi2BDWeHehAI535PjraqkQg3rIkfZ5EJ013dR2J8FeYk/9VjJREjafmAj+
bFa2LSl74CR3HCzTO8vXbn8XTGiUGj8E3RZYRW5mAeCD4T5+UJNhTdyXxCBVlctW
pkO/GHkLKMiwfwUW6Wz+ghd5vGfekNNrC9O3LUDHH7JJlDi1cSPiJ/jCWu4Wm+8l
h1iKH2eljjQJzFX+2dA/rqi4C9iGq9AkZpdbCZHYU/5oFP7jEMFOw61NeQexq8mS
E8Y0s8MA+76gFTog52BN
=JW5d
-END PGP SIGNATURE-



Accepted bedtools 2.26.0+dfsg-1 (source amd64 all) into unstable

2016-07-18 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 07 Jul 2016 13:58:08 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source amd64 all
Version: 2.26.0+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Closes: 805998
Changes:
 bedtools (2.26.0+dfsg-1) unstable; urgency=medium
 .
   [ Charles Plessy ]
   854dcc2 Merge tag 'v2.26.0' into debian/unstable
   99afd11 Ensure the architecture-independent package can be built separately.
   Thanks to Santiago Vila <sanv...@debian.org> (Closes: #805998)
 .
   [ Andreas Tille ]
   * Switch to default repository layout
   * Remove docs/content/images/tool-glyphs/barski_binding_site.png from 
upstream
 tarball since it is from
   Jothi et al, 2008, doi:10.1093/nar/gkn488
 since it is licensed under no-DFSG CC-BY-NC 2.0
   * Delete reference to removed image from Debian shipped doc
   * cme fix dpkg-control
   * cme fix dpkg-copyright
   * hardening += all
   * drop outdated Homepage field from debian/upstream/metadata
   * debian/control: Fix homepage
Checksums-Sha1:
 42ad14ee96eab9f57617fbe38659c128bcd93c97 2148 bedtools_2.26.0+dfsg-1.dsc
 ac252994b9312381fc69b0fcb7978e7229fd264a 13421052 
bedtools_2.26.0+dfsg.orig.tar.xz
 a9f8c25fcb531fa5a6f2c56f7fad45e854a127b4 8680 
bedtools_2.26.0+dfsg-1.debian.tar.xz
 d5f01a3486d460de6ef8ed3c9da5a27de35aba33 56216 
bedtools-dbgsym_2.26.0+dfsg-1_amd64.deb
 63acf74a3c1cbd1c07967872a94b6afb96cadda9 10488216 
bedtools-test_2.26.0+dfsg-1_all.deb
 a27a19ddb12a4ded50b9850e809d4e5e6d5d4c99 589438 
bedtools_2.26.0+dfsg-1_amd64.deb
Checksums-Sha256:
 fb74b66358efc338a36ffb34782d37dd0d2699f9223399120638a32b091c4344 2148 
bedtools_2.26.0+dfsg-1.dsc
 57fe2b2f2657059d19fd75838768bcec39471614028fda0d0b24f74c756ec057 13421052 
bedtools_2.26.0+dfsg.orig.tar.xz
 9169e9ace9904a3397e6748ac2ff0007d94a6003c553eaf0c132698962d44cb4 8680 
bedtools_2.26.0+dfsg-1.debian.tar.xz
 304f80816f8a83cfc6fb00f333ead7f94f27788c220a00c8465a3f4354dd3265 56216 
bedtools-dbgsym_2.26.0+dfsg-1_amd64.deb
 f0d74a7426676c904531d4bac009ca99af73089817d62ab00587c30d5f4257a2 10488216 
bedtools-test_2.26.0+dfsg-1_all.deb
 17781a94415ae1bcc4130e30f16c3321806a999457cd00b6827cb01ef897fa87 589438 
bedtools_2.26.0+dfsg-1_amd64.deb
Files:
 a70545aee1e6de2fead9ea5f6de1930a 2148 science optional 
bedtools_2.26.0+dfsg-1.dsc
 c60fe2176c89793d3d96f180b5207e88 13421052 science optional 
bedtools_2.26.0+dfsg.orig.tar.xz
 dd92826410ebf562e4fbbcc1c81e9eab 8680 science optional 
bedtools_2.26.0+dfsg-1.debian.tar.xz
 61dc2f0557e1a18834124c90294cbb67 56216 debug extra 
bedtools-dbgsym_2.26.0+dfsg-1_amd64.deb
 901823194b0eeb04f4ac8bf791305dae 10488216 science optional 
bedtools-test_2.26.0+dfsg-1_all.deb
 a93c4093d6bcc0538cdad8614fc0a8e4 589438 science optional 
bedtools_2.26.0+dfsg-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXjOucAAoJEFeKBJTRxkbRu50P/1VBC/oBNCfESxrA1yvk+B2g
D/gbbX2NrteVhobNUw0aZEH2LiDFkRq89ojCFmqOFGflit6ml87o/VStAftQES6r
ezcvDXEINMFDGMiQ2SI+9WFfUzfjbENkaQ5IwGziXWa+ecQLMEs3L1wZeExphkcf
7hXmqoW+hC/gfY15i7C1YQeW+v0lT8TaJr1yIR/e2uklcx0sDCPplqTIgwMl1uyu
30MknTMFnK9AF0QN0EG9pHJkWiRwv9LZquaoWn7rpNJwxMORu2HVWYhKNgpyrj92
QryrHEGkKTzSGY0fEQqCzKmc7gLOh5OHFrHTmfuO1H7y6IYphMvMQ2wVTX0rBl2J
EL+Jhcy4ZlNPbfaMvK9Pc41V91BGoWXJB36/WJngVmjYIFVAb3HPqXE3QVv5v4Q7
WL6uvOeevyLkxPKCO4QD05MIfnc760kBOOaUqcETalURR7jJa7FgFaMNDfp0ff1V
n5972WpzjwlgNSpYUvecBdO6denOZ+eN7Wg9vJc2KrBkHGwvn719rqanON49XIsE
p8uPOiWwlsUWdFYXAHW9Thh7QlKjjNhOW+b7CWBn+5PWA8rki6XgbmmZTWQk9ii3
gKMtIS3PIWHamsp6pl1db8LikiI+HX0ablSibnsL3w+lPz4tAPGZRyLyjrbxbVYg
84ZSLsDtR6qgWT9TSyAB
=m5t/
-END PGP SIGNATURE-



Accepted last-align 746-1 (source amd64) into unstable

2016-07-14 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 15 Jul 2016 14:24:00 +0900
Source: last-align
Binary: last-align
Architecture: source amd64
Version: 746-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 last-align - genome-scale comparison of biological sequences
Changes:
 last-align (746-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 e0146cea3fb7c184c7be6abb17630a12d88713e8 1967 last-align_746-1.dsc
 b28a45ac93f2fba9876f64c202484610ea5f97ec 371672 last-align_746.orig.tar.xz
 34c0d7677e2a0cc012e3b05d94ffeb770f5744c0 8384 last-align_746-1.debian.tar.xz
 fc55bcec6918e0d2b363a4cb993b3a964552552d 4203920 
last-align-dbgsym_746-1_amd64.deb
 e60e4d13816fa202db680d0a93bd1a8601f55efa 645348 last-align_746-1_amd64.deb
Checksums-Sha256:
 660a361f8684803544003d91ff22dc464d1763517830afefb57099917fc46957 1967 
last-align_746-1.dsc
 dcc74ca4099b0774cdad0c60cfd0d7f9fd6c503e80bdb55203c923bc206094aa 371672 
last-align_746.orig.tar.xz
 af4e37906c515a6d9bdd8d6ace02ad582a27cdf6b422da85ae46fc3d26b78a9e 8384 
last-align_746-1.debian.tar.xz
 1e3c5f0e9c2c7d35657e1b9338c0bad32a0b4c0b7d603e2bf78628251e58ad69 4203920 
last-align-dbgsym_746-1_amd64.deb
 96b09fa066c6a064c756163bda86cc4b0ce211dbeb09c88f7f2dcb89460a245c 645348 
last-align_746-1_amd64.deb
Files:
 97b98fd2d2633de9aa019a204632af91 1967 science optional last-align_746-1.dsc
 d791bded616d8742f64cf16cc9abeb58 371672 science optional 
last-align_746.orig.tar.xz
 267e5dc2c1c39760a426fa352df7b4e6 8384 science optional 
last-align_746-1.debian.tar.xz
 95b472568fc7a662f20a0d2bfb1c26ea 4203920 debug extra 
last-align-dbgsym_746-1_amd64.deb
 e9249dce08242127f0f0fe4815165023 645348 science optional 
last-align_746-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXiHXiAAoJEMW9bI8ildUC3ykP/3yvTBVGiIOG/IHgV4XacqNF
2fOV/i7mVE1vhBRo453yqe8GSXfGvoqPm1teIhRAa7CA3852DbPU6pFlp9XESDo3
7ZkH+B88h4B0a0r+8n+Ryf/dJp4Au5JxjPFHq0mqesX1opjBtUZbjYAGl1V0EHLj
O2aYQ8SrdbNL25GRYD7Ej50V29mp4qrxBuLyZlAPtKvhEDH6S/CoofOJOs7t0FN4
jqI7PzLhVFH6bKbdcUKC4FNxj+j+zVx6WFsyxx7gquYk0+anGk0RAio+/i+N9R/J
uMQsEpgmaJd/Jp2hoZ54wKbGl9vwkv/YtPqX4K26qYej1gaWulh8ofAzBixsViyt
bIBf+r6iyD1KVhCP+JWab6R/AnC7XKebKjgkuGU23uZO8t61pp8nR0MlAr7bVcQb
OkkPDnYMnTQEHZZD7Iw/pXzVW9+G1W4M4M4DXh1NL3V6u8g8sAbStCUukaxphvFC
zsET56lG8yIT7Iq8mfyOo0TFKchrV4Oo8ZJ6SY2aU03wqY5q7P9/B0bYlyUXgi8Z
MdMozQZBJkII/mMOlubATGG1pkR66hjnrMvmKM0otlG51xjrFwzk8YZxRT2DaEku
KKwHF/EHrupMLZ374iXd2HJ/L3wnQNJz/oB7gC69u90p/nxUr2TqVTOtwYGlEWaW
ixAqprwQbO8b8pbtjF1C
=akss
-END PGP SIGNATURE-



Accepted samtools 1.3.1-2 (source) into unstable

2016-05-08 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 08 May 2016 21:11:12 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source
Version: 1.3.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package
Closes: 822701
Changes:
 samtools (1.3.1-2) unstable; urgency=medium
 .
   952da10 Build-depends on htslib 1.3.1. (Closes: #822701)
Checksums-Sha1:
 a2ff20435ab232164b5a21b334dfe5974316 2166 samtools_1.3.1-2.dsc
 e7da64c8924e00adec7ce485b77a7884e894192d 11932 samtools_1.3.1-2.debian.tar.xz
Checksums-Sha256:
 9685c19919910f9c0ea658af290b0ddd1316ea54e2576687a2515096af86d182 2166 
samtools_1.3.1-2.dsc
 22071259e5a5aeacc2cce14c43c2de5cb1f82755ed1ad1f64c094b09013fb6b3 11932 
samtools_1.3.1-2.debian.tar.xz
Files:
 002bd04cff0c35c3938aed15ac48606c 2166 science optional samtools_1.3.1-2.dsc
 71c6099d5e9bd6bd0620c56b7a8728af 11932 science optional 
samtools_1.3.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXLy1iAAoJEMW9bI8ildUCdawQAJdUqYi+QcBfYQ7MZMZjU5SU
5XUhR2EPHU6ciOqG0lxsTVlB0YalLoW3kbsq1SzTnbZiI1jxClkA86KqLJS2Zqft
yhc9U9aZD+G3mIxrU87S51TH9ewC5eB8qeZXIk6aCi2k81p9Fo0EZqg3a3u4UR/A
TqQL4/hXHRVruWz4YOZhrsXDRgRZ5hxkKTnXtnn/nDoxnsKEPvKOcUiAfy9aAT3n
og7wyZB1u3s2/PyqqC7oFOIiBJ77WK+jGtFbvPu5vnVrrmVVWNX5OC3g/Gfys8av
1EzaAoWmy7YFvphhnsqVVUIt6JrRPrjhr+gR+pYA6n3zYxrnXSefTgT5GtmmHO6c
Q9DdEi1yJKRMD5FEdpst5JYXjvJH7PL973S6haLXEAVsdvsL2xzHmfIzEOrjHdUf
OztBJ7fQRvpSvhSU8UNmbjBM9bfC1K35Aex376r8+6wD5fAQ0ND+WPEK7WzIFMPv
SL+c0ArVFVDWYAf/+VeDkG567aXmJkj2M9am6ks0VxElWklmg4QRJgom6d2d2Cxx
qUTNgSVrFbkgBfBK10Hvm9TDSS322coxfFWaFfGq3u1coAMBtZyWKBcbOp2dzFy6
w4IDXIJiIACS6xnmy5gJhV1eyOin4zrYPFJmu5Jjw5reSbay67vZ1xr/ohMyfArR
rlPKD1V2SPX0R07G467G
=ALJt
-END PGP SIGNATURE-



Accepted mime-support 3.60 (source) into unstable

2016-05-01 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 01 May 2016 20:20:22 +0900
Source: mime-support
Binary: mime-support
Architecture: source
Version: 3.60
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Maintainers <mime-supp...@plessy.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 mime-support - MIME files 'mime.types' & 'mailcap', and support programs
Closes: 802753 804211 810587
Changes:
 mime-support (3.60) unstable; urgency=medium
 .
   5f9811a Add decoding and encoding support for xz.
   Thanks to Nicolas Schier <nico...@hjem.rpa.no> (Closes: #804211)
   67c43e3 Removed bzip support.
   13cbcc7 Recommend bzip2 and xz-utils, since run-mailcap uses them.
   d2b5636 Escape a left curly bracket with a backslash.
   (Warning since Perl 5.22, Closes: #810587)
   fe8d90a Added text/markdown. (Closes: #802753)
   bcf08d8 Conforms to Policy version 3.9.8.
   3b341bf Use secure URIs in the VCS fields.
Checksums-Sha1:
 767a81506a83e7ca8a4a2592ddf3e87a764ebb69 1605 mime-support_3.60.dsc
 288f468e0800017f44670198e71bbd05f0b3c2be 36840 mime-support_3.60.tar.gz
Checksums-Sha256:
 1c3c61f6943b130ee6518facac394b733661975955b84af640b78fa354d7595d 1605 
mime-support_3.60.dsc
 f31d81f68dc007f56567cc14fb3b2effbd42d1dd087e414508e14e33d1a6a3a4 36840 
mime-support_3.60.tar.gz
Files:
 6ff77fbfa2d164a8ca70440561c11c25 1605 net standard mime-support_3.60.dsc
 7ca392d06916a465223a70fa629371b4 36840 net standard mime-support_3.60.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXJebAAAoJEMW9bI8ildUClu8QAJpDxcHf8ZQqSXoD/gUBKhtY
d0lhhIY8kOHFCuJbxklL04hFRqUlsIhrGD/PzfoFvh1KJB85kFRp9AYDfamRihOm
UiIe6k5HG74ZxyBWaZGxjIwGeL/P+EU1634uK7l6lXXa/KPXANTtoDOorU+BnhOc
xpzo7k2c4R3sBLDbAQFwJY8DqI+YqF4XGve1S0VxCSRbtD/ZLXzXwnR2D//swOwy
QZWeIdgxgD1o8h01y2h931bOFcN67gqEJi7KJ0Rc/V/psw0zv2NFkJS6DpGPKsRt
1ec7VKhoL8l/d47gh3uFpBNv/WxBNEZkfJRhjIfRHCh53LNhe3C3NlH4OK8FOcN1
pYdO7tqhRqKMjgyZc4ynDHNJL9yt+P3U/sPimxVscn36y2jqKFjWYnJJQnwYo4Sb
+uyX/b8UO7BDiH09L7K7AsnNVdg565lJtrYPikMIJSb7RaSHJ+JmOTI6ui+wPV0Q
F3+z45IdHCCplyrkI4PiGqnzR7WYSda7u8xw05/26jGOvAXGWzkNk877QIAe1q7g
y2B78zh8jIVkB4RLVz8JERj4tCr5jLF3NxikEvW4lLOBQ1k0OYUXuXh5x/29lT3W
IPxE23pTwNwZX8hbfvphZBE2QV12MqSucqYwmH4TwtHDrua4Cl4RDXWdUpEPJFgA
Mw0ZcpGhOPe/5pyFMPov
=CrC/
-END PGP SIGNATURE-



Accepted samtools 1.3.1-1 (source) into unstable

2016-04-26 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Apr 2016 21:12:05 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source
Version: 1.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package
Changes:
 samtools (1.3.1-1) unstable; urgency=medium
 .
   0c961b2 Merge tag '1.3.1' into debian/unstable
   3666b08 Conforms with Policy version 3.9.8.
Checksums-Sha1:
 827c1cec8da71bf77fa439974b060f38c2fdfb35 2164 samtools_1.3.1-1.dsc
 1d5d2bca1742115ed0bc950b9c21132e9872768d 3757176 samtools_1.3.1.orig.tar.gz
 1b5d7c66ac0bdf5e929db53ed6358eb99a96af33 11864 samtools_1.3.1-1.debian.tar.xz
Checksums-Sha256:
 123bcfae31c974fab88fdde98444f79ac6fc038a9d94394c55e0580c3e91eee9 2164 
samtools_1.3.1-1.dsc
 30752c7b92cd9e146f4017983b2a41beb58c8966e93572cea76a14719f95a768 3757176 
samtools_1.3.1.orig.tar.gz
 ac6bc65fc8be520d973928be456dd4a6a82f6eac4b279e78715be7b9a17b2f50 11864 
samtools_1.3.1-1.debian.tar.xz
Files:
 d733ef46ac6218dec8d326bb29cb21ca 2164 science optional samtools_1.3.1-1.dsc
 463fdfcb80592e06ccb217835eb6eb40 3757176 science optional 
samtools_1.3.1.orig.tar.gz
 f77db1d3d16405f60e3fbe1f9ec621e5 11864 science optional 
samtools_1.3.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXH1s6AAoJEMW9bI8ildUCDlgP/0ivglBJa5bhhXRtZw49Hhn3
GnX7XgOE5DbWq0OjAnii5cvUnqPAApgb30cpTrW0/zUvdmlrRHGE5aUZj5enPK8G
jwLThIJbUFBz2NhiW8q0BY4R3MKsomFMNb+UyZoh1/IspOYGq6ySy+IrNAecbvRU
inuUx5SpYIM93NoVWdr0xLLBIKC49PxMUNr+d+s/4hJsS0T7DY07zhM8HRnuIhap
kLVfOkvstKdQ5V/+A2fbW5CLxNm4bU9Tmlh1YuImPNyVdIs/cYx9n581eO2kPelB
2rrs+Ia1xEEhW4snHg+cv8YS6xMJtCxYKCoIwhXaMrKh4BkftqMI41pJNcyXbCRA
WnJbCXXYX+4WwEU46NyCDmTw8lNEPUvlFiy6GKedYK+UrqGTOvg+gPuUWtmyz7ul
HlDKOcrVPD0XmH49LDg7CfR9NVti2viK14TwHNspkdzBwauUXsxdr2R6A3MkElyP
ZENdteu1uUtahFSJNx01qFnTqyyslBTTqaXjLmUNzWtgsPCbUG0yWC9GP5dwb23P
iG1XRTVcDrm/5Tdrlc68mmAlZqXRik6OEybgl+L2xe4oGw+qkksjTFWq0ZEVXkAU
S6qRndGWKk1BemFZTgL4Q6IH0yUoCUlP4alIPAXsKY+zvCb608Q8j1PtP0Zu55RA
6f8sZC7kWFDSM9jQbtE5
=ZixV
-END PGP SIGNATURE-



Accepted htslib 1.3.1-1 (source) into unstable

2016-04-25 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Apr 2016 22:28:11 +0900
Source: htslib
Binary: libhts1 libhts-dev htslib-test tabix
Architecture: source
Version: 1.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 htslib-test - Test data for HTSlib
 libhts-dev - Development files for the HTSlib
 libhts1- C library for high-throughput sequencing data formats
 tabix  - generic indexer for TAB-delimited genome position files
Changes:
 htslib (1.3.1-1) unstable; urgency=medium
 .
   36bf59a Merge tag '1.3.1' into debian/unstable
   559f8b4 Remove add_largefile.patch, applied upstream.
   7163afb Update symbols file. Missing _vcf_parse_format@Base and 
fai_read@Base.
   c2c1df3 Build-depend on libcurl4-gnutls-dev and libssl-dev.
   3b219b8 Enable libcurl.
   9101580 Conforms to the Policy version 3.9.8.
Checksums-Sha1:
 be88cb50a8d5fa46f1d83c9ac36d616473d5707f 2138 htslib_1.3.1-1.dsc
 193ba1beb9f73e11ba276c36a37f492c3a8d5fd2 1065840 htslib_1.3.1.orig.tar.gz
 be5849598a7defdced6747437af1cbef5464ded6 10124 htslib_1.3.1-1.debian.tar.xz
Checksums-Sha256:
 614f394f06dc304fa2c713950af83487c3b52ba6315fa8bf7e510a22ecb33401 2138 
htslib_1.3.1-1.dsc
 3bbd04f9a0c4c301abd5d19a81920894ac2ee5e86e8aa977e8c2035e01d93ea7 1065840 
htslib_1.3.1.orig.tar.gz
 19015e4c5b1d1f80b256ebe48d9dab910ea734db79e733dd3b19f8f49e726487 10124 
htslib_1.3.1-1.debian.tar.xz
Files:
 80a5afb4c5533a132f66dbd2f163 2138 science optional htslib_1.3.1-1.dsc
 3928b289648450dace4b5258d7a2f5de 1065840 science optional 
htslib_1.3.1.orig.tar.gz
 ad862ae3cdee3b4ed3be0495cbaf822e 10124 science optional 
htslib_1.3.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXHhx8AAoJEMW9bI8ildUCeWwQAJxgO/A1V7dkcXGwMfCWpeEA
SwlQeUpB6P63njYpy7imeIY4Bs48WXyuPYyO2yFtpFf86+ASo8Ta1OrMS5CeAxwW
wLYWgeFuNUQcbXZaXrAqW9FGFXmo2RD5o0SuNEmtXtATAR+swa9A3nl1ExbTvrxv
gX5JyWxeoI8SXW+CwHo7+XllOAo394yhY9nSHJdOiY1JawpegOKSmfVmDgD4Il5b
HCVC7brJPVPBfCMNFNDsN7E0IqliLmVU4IKSgkFav+1JyvO08QVQJmuE3TSbZ58v
zZgp5JB51ilFplp4+6QV5pQPDMeGXnc24+zJMObDrJyq6KUYu95JSoE2vWbgxqsh
GVkPlkQztbbHTafvE330UHfn9I5WqRsHhJtfn7rsKGf/kNxNa7a6MfXFcQNMRaxk
WAq86dJHaJnrMK6jvFhlpek/RVQHr5RIU9za8FKaII4g1VFhKM4KtUDYFk0ei5WF
8qErG7mcFJDnydZjecXPbztRZL7dbCx2OrEJHjicnVgILRtRI1lVFuQ6j0fJPnPd
C5iHHnrhFBCVxalu215De2SDUWK6bduKdSXFRlIKgbSHZT5hFH5LwkqpB8QvzgZR
j28GlOqurekhzTpI+SNsPT2fy41XKPDNWG7l8L58FYqHy1+Ud0ziFA+0nYwz21bl
XgwHuNOtnvRZVSSXyj9t
=gdeV
-END PGP SIGNATURE-



Accepted libbio-samtools-perl 1.43-1 (source amd64) into unstable

2016-02-20 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 21 Feb 2016 13:52:00 +0900
Source: libbio-samtools-perl
Binary: libbio-samtools-perl
Architecture: source amd64
Version: 1.43-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 libbio-samtools-perl - Perl interface to SamTools library for DNA sequencing
Changes:
 libbio-samtools-perl (1.43-1) unstable; urgency=medium
 .
   [ Charles Plessy ]
   dd47de5 Imported Upstream version 1.43
 .
   [ gregor herrmann ]
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
 autopkgtest schema.
   * New upstream release.
   * Update years of upstream copyright and licensing terms.
 .
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
Checksums-Sha1:
 36094601b50adfb01f7a79ed30ad0cf6511a5358 2213 libbio-samtools-perl_1.43-1.dsc
 140779726f17ef29f1a6028b34ed836d0a85f24c 340833 
libbio-samtools-perl_1.43.orig.tar.gz
 477d3725bc961df12de64dc02845cd86dd81a4d6 8024 
libbio-samtools-perl_1.43-1.debian.tar.xz
 7543cac8de70c24a353e1e398dabd9f51abdbfa3 82704 
libbio-samtools-perl-dbgsym_1.43-1_amd64.deb
 d90c23e39a65eb11a5d97350016f3fa612a8fcdd 194860 
libbio-samtools-perl_1.43-1_amd64.deb
Checksums-Sha256:
 177f4072ae73d555720ec3aff6da862bbd57530ff0f58dc6bfe19414cc76e69f 2213 
libbio-samtools-perl_1.43-1.dsc
 7085ee5e97ad75dbbebd8583072d67b2b06d29e7a9f9741c9ac58dabe300d3fd 340833 
libbio-samtools-perl_1.43.orig.tar.gz
 474d429d0e6cc6b9add4f308b458a4acbdba09be9ff976c9560f2cf387b744fb 8024 
libbio-samtools-perl_1.43-1.debian.tar.xz
 d33fea28dc0b69719c7a6d89e6056a56bd2f0945d7e84f552265bafe5950e808 82704 
libbio-samtools-perl-dbgsym_1.43-1_amd64.deb
 a4df93f636a758bbdf870b36678189b81cf99370b3dca58f29a2e622fcbf438f 194860 
libbio-samtools-perl_1.43-1_amd64.deb
Files:
 4b93f3d8ddbc5820c2297bcc599ad56f 2213 perl optional 
libbio-samtools-perl_1.43-1.dsc
 d36d7bfe91d6eaa8d220a2cb08d04a94 340833 perl optional 
libbio-samtools-perl_1.43.orig.tar.gz
 82a07567ab5fb2ef7240eec26ff0d243 8024 perl optional 
libbio-samtools-perl_1.43-1.debian.tar.xz
 227e5e224548488d88daa1b7f2b969ef 82704 debug extra 
libbio-samtools-perl-dbgsym_1.43-1_amd64.deb
 8d77eb41a194d0acfc02d2ff44fb047c 194860 perl optional 
libbio-samtools-perl_1.43-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWyUaYAAoJEMW9bI8ildUCPVcP/jhyyyCiEtqyCkDi93EpqRqj
fh+bPujAU/wGUBLgfxpHCh2Mec+OruccYC08Qg+B0csUjD8msmBkVO4qD2PMkPIK
j8Zub+UG5ZWkViN4tPxN2KNWp582tCjuNAqggHyXQECYrGX+IGv9mIPfaHIrjtxK
jDa4mVl30mVpvhEV0kEkXxxZcF4cOYqrJRx234spyCLSFhIZmNfwTa4WhW2U10Kx
klvfknqMXyyAKqM8ww9vTDgr3XzGEZvT1P3QkfJN4jMrDPKy1vNG4qEluHS8OqBn
/8otxlOgzS+u6jk+yAOAhoBPo1oVLc3tLHFU2SrUSltKRKz0t4t9EoJhfwDXaER/
5Pgr2E6lu+5W7tK20rljIuJH99PMy+3CeRcUfcMOYfdwVnc1HBcIZoEAS4wrRTWc
LeLQ+ldor5cKLz7H6NREYrvCV/3aa2IC2qmmgUSvSBQNw6BDDfPBHe134KCZp8Fp
Npat9jhjGKQz3Ss7UVb1KNvGM4EtGNPlrehJ+It6hHh7pKAcEyMOp2aK9dONUgXB
o9KlP7yzC9f4F+k8/Px5x18crx8u2U75SvHs+6wf8mjHC8eLrW0hFxJghrLwjVeE
vYpdjv9ppqJPwyw5DYUbkRVmF+Ks8oW8kN3uMAHdsDvOOhvN3XTPB8MS5MLL88UK
iSA6EClr7S3TLVLWiMGb
=We3E
-END PGP SIGNATURE-



Re: Debian, les versions et le noyau

2016-02-03 Thread Charles Plessy
Le Wed, Feb 03, 2016 at 12:28:15PM +0100, Laurent COOPER a écrit :
> 
> Sur les version LTS, la distribution UBUNTU a adopté une démarche
> intéressante. Quelques semaines après la sortie d'une version stable
> d'Ubuntu, son noyau sera dans la dernière version LTS disponible au
> téléchargement. Ceci permettant d'installer une distribution Ubuntu LTS
> en bénéficiant de la prise en charge de nouveaux matériels intégrée dans
> un noyau plus récent.
> 
> Pour pouvoir déployer des postes clients, c'est important.
> 
> Ma question (j'en avais posé une semblable il y a quelques temps) est
> toute bête. Un système analogue est il prévu sur Debian à court ou moyen
> terme ?

Bonjour Laurent,

c'est une question plutôt pour debian-user-french, donc je réponds là.

$ rmadison linux-image-amd64
debian:
 linux-image-amd64 | 2.6.32+29   | squeeze   | amd64, i386
 linux-image-amd64 | 3.2+46~bpo60+1  | squeeze-backports | amd64, i386
 linux-image-amd64 | 3.2+46  | wheezy| amd64, i386
 linux-image-amd64 | 3.16+63~bpo70+1 | wheezy-backports  | amd64, i386
 linux-image-amd64 | 3.16+63 | jessie| amd64, i386
 linux-image-amd64 | 4.3+70~bpo8+1   | jessie-backports  | amd64
 linux-image-amd64 | 4.3+70  | stretch   | amd64
 linux-image-amd64 | 4.3+70  | sid   | amd64

Regarde-voir du côté de backports.debian.org.

Amicalement,

Charles

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan



Re: AppStream / DEP-11 support now available in the Debian archive

2015-12-14 Thread Charles Plessy
Hi Matthias,

congratulation for this release !

In the upstream-metadata project (https://wiki.debian.org/UpstreamMetadata) we
document some information, some of which is redundant with what is now found in
AppStream, and some of which is not.

For example, we document bibliographic reference to the scientific litterature
where a given sofwtware has been published. This particular data has been the
driving need behind the creation of upstream-metadata project. But the moment,
I do not have enough free time to take care of the upstream-metadata project
properly.

Given that the scope of AppStream has grown, do you think that it could be
further extended to support the kind of information that we distribute in the
debian/upstream/metadata files ?

Have a nice day,

(Please Cc me, I am not subscribed).

—
Charles



Re: tracker.debian.org replaces packages.qa.debian.org for email subscriptions

2015-12-09 Thread Charles Plessy
Le Wed, Dec 09, 2015 at 12:18:21PM +0100, Raphael Hertzog a écrit :
> 
> we're getting one step further in the deprecation of
> packages.qa.debian.org in favor of the new tracker.debian.org. We have
> just migrated all mail subscriptions from the old PTS to the new package
> tracker. This does impact many persons, please read further for details.
 
Hi Raphaël,

great work !

I was just wondering: would it be now possible to use
@packages.debian.org as contact address (Maintainer field) for a
Debian package, or is it still impossible because of forward loops ?

Bonne journée,

(Please Cc me; I am not subscribed to -devel currently.)

Charles

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan



Accepted staden-io-lib 1.14.3-1 (source amd64 all) into unstable

2015-10-01 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 01 Oct 2015 22:13:09 +0900
Source: staden-io-lib
Binary: staden-io-lib-utils libstaden-read-dev libstaden-read11 
staden-io-lib-examples
Architecture: source amd64 all
Version: 1.14.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 libstaden-read-dev - development files for libstaden-read
 libstaden-read11 - Staden library for reading and writing DNA sequencing 
results
 staden-io-lib-examples - programs for maniuplating DNA sequencing files (usage 
examples)
 staden-io-lib-utils - programs for maniuplating DNA sequencing files
Changes:
 staden-io-lib (1.14.3-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 9fafd2281f23ae5771cd6d8da10e85ac00e4eb7f 2407 staden-io-lib_1.14.3-1.dsc
 b6d1fbfd3b11e303d650880b7af5471652c3187c 2128714 
staden-io-lib_1.14.3.orig.tar.gz
 445c03817071512e3ec7b3530f786d1e8cb4f946 8644 
staden-io-lib_1.14.3-1.debian.tar.xz
 6c46622e9e0de2abd814a6015c217d7fc351c8f1 355520 
libstaden-read-dev_1.14.3-1_amd64.deb
 8e36a8f910bb12057a628cbd9a396e564351d40e 284292 
libstaden-read11_1.14.3-1_amd64.deb
 0002cab5888a9b047e6a123097a2b29874dac58f 1270264 
staden-io-lib-examples_1.14.3-1_all.deb
 97375137f4be4b882ba645a15268a4be454edb14 239114 
staden-io-lib-utils_1.14.3-1_amd64.deb
Checksums-Sha256:
 6a00f5c8b0e15f5fb696090a50fcdfa01584cf3f59c06f6e9d3092bb854c1fb4 2407 
staden-io-lib_1.14.3-1.dsc
 f2dfda4ec9657c0ab154da8aebd6b528bddd4f94500b781359753fd8cd5708cb 2128714 
staden-io-lib_1.14.3.orig.tar.gz
 0ebac71a6d35b190104455ce588598b21773a11907d7f79092285de140b99886 8644 
staden-io-lib_1.14.3-1.debian.tar.xz
 9e6a5bf06b7878446433b2730ffd2b405e4a398bd68a15e998aa8c0f48cccab6 355520 
libstaden-read-dev_1.14.3-1_amd64.deb
 be2c508dbecb4c731b51c4c53ebb1a230de2ea4d748336cc1bc12fd09b7bc103 284292 
libstaden-read11_1.14.3-1_amd64.deb
 4c477a52e9777e41d96bc860c027a507d9449d307611aea37fafe12e14500fb9 1270264 
staden-io-lib-examples_1.14.3-1_all.deb
 fa744972963bd7198f4799f1b27417db347a5c5325dfe29d9a445f2fa835d029 239114 
staden-io-lib-utils_1.14.3-1_amd64.deb
Files:
 d6c2c7d0db5e0e80b4dbf640899850b3 2407 science optional 
staden-io-lib_1.14.3-1.dsc
 464c3314b90a2cf17725ed760996fe53 2128714 science optional 
staden-io-lib_1.14.3.orig.tar.gz
 86eddca9c347497d664b5b2931b2c215 8644 science optional 
staden-io-lib_1.14.3-1.debian.tar.xz
 1c3a803d965e244937d7c6daa1da2a90 355520 libdevel optional 
libstaden-read-dev_1.14.3-1_amd64.deb
 8537fa443538fcd179ec0d1b4e7ba6e6 284292 libs optional 
libstaden-read11_1.14.3-1_amd64.deb
 ea3831e1f785200d9bfdc76d1b469c9b 1270264 science optional 
staden-io-lib-examples_1.14.3-1_all.deb
 dc1e1585723a62a5b4eb255e80af9081 239114 science optional 
staden-io-lib-utils_1.14.3-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWDTQOAAoJEMW9bI8ildUCYisQAJkR4PD0OxbTGSrK0B8/J3I+
13inFPCYy4TOm6grVhT1HTEIVilL5CcsBtdMSMv50uTIqizuTU55cyUKsKrHw7Nt
ZGxhQhAt8bgelk98LOxvRJOvLjnKXNNOemy2gLhfTpbHrrgcG8eT/yClGae72pDV
ky/b1M/rKQ3UReAOjCisaj40WR+205NogLLccjnmSoWCQPMb5dhc35ufVg/sqC/k
/YFSCpgt7yqTbhrF6Z3uoS58zX8kHg+hT4zLufGAsAz2ZW6CiQp2X9DgHNW1D/1S
CERHrIb3ZLAs9+Y0wq+w5cJSfDA56LsTEQJrPJf2LFguafLM66CO+zF4/x5S+3v0
1pH/ce3jjO9765gANRmiElVIqOnLAWPrcx+SgNeaWVssDGrbMpj3ae6rKecPOblU
9jICU38BJ6GqSW7IzJwaS9rGOvv+MHPtB/OmP+7CVmDmdRbyvCw10PXgcft7uiZR
MgWYzsg1Xwxv3QA8GvEgQkv4ZfIWZ0xOI/CMkDjg8BFzHqX0TWtRTjDnqWCuCtvh
wZNRLOBGPSQGfFp3mhMgE75OAz4Y4Dl5TxG2Fa10GOfNLTIUMiLjOlgqjSm+xFgu
DNhdx2y1V10Z41n6hJuQ3v4GCcs0fuJqfEpc0T0IfrRSMCPiz92GVqqlz5e8nCKO
eo37Y7TAzzQfmp4b8eGZ
=ZhQ1
-END PGP SIGNATURE-



Accepted transrate-tools 1.0.0-1 (source amd64) into unstable, unstable

2015-10-01 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 30 Sep 2015 20:03:17 +0900
Source: transrate-tools
Binary: transrate-tools
Architecture: source amd64
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 transrate-tools - helper for transrate
Closes: 800412
Changes:
 transrate-tools (1.0.0-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ Michael R. Crusoe ]
   * Initial release (Closes: #800412)
Checksums-Sha1:
 b48a4b7c56ebf2e0a493bf3c0c9b09aa15d0132b 2042 transrate-tools_1.0.0-1.dsc
 84309a45a9770a22e4ef41a2930f9fb815c0b9fb 6167 transrate-tools_1.0.0.orig.tar.gz
 09fda1bfd6d5ebf093c7bc0b42a401c8a821aa14 3292 
transrate-tools_1.0.0-1.debian.tar.xz
 28cfd45dbed79e88add21c94d4b0ec23a5f3fa4a 16174 
transrate-tools_1.0.0-1_amd64.deb
Checksums-Sha256:
 fbb115bd8aeea5342a852be067d7331a7ba756ea8b0b1b659e4b1cbde7c181f8 2042 
transrate-tools_1.0.0-1.dsc
 cdaac24be4f9ad9caf36834e2bc464758afcb5e746c6e9851255c7ac92fad898 6167 
transrate-tools_1.0.0.orig.tar.gz
 b6723f04620d01daa69918ecf1cf6bac352164bc30d531527cd7dc11d9d37669 3292 
transrate-tools_1.0.0-1.debian.tar.xz
 5d558373156a101448f0b069d5f9b9be8d9ae3fce8bcef3c9a96fbc2e8d7dc67 16174 
transrate-tools_1.0.0-1_amd64.deb
Files:
 351e0d9208c7639f9565bdbd026b4ded 2042 science optional 
transrate-tools_1.0.0-1.dsc
 76344f9a81b1fb7b9387306c5d6f0c63 6167 science optional 
transrate-tools_1.0.0.orig.tar.gz
 d880aba72bf28e8dd5dd395a1027fc11 3292 science optional 
transrate-tools_1.0.0-1.debian.tar.xz
 69f0686b9cece399a00030bf220d5da8 16174 science optional 
transrate-tools_1.0.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWC8GmAAoJEMW9bI8ildUCcwEP/jTh9F8phrrMrKs1S13FsJN3
Jsa7U0aSL5XTXxEPWJT38tVWXTIXCZwIzfcO+ZdMRjuQE8Fgpa7E6ViUXGoykGFA
kJMMwS6arTDrs7zZI3at3CemNVvtphQxySOVTetqFrWbrMySDbOZx020PJbF3AeQ
/pdxlLaZq3N6PE5J/+x14cgrt/3IDNoxhP+fPqN4nXF5lSfjDTmbBygGYbRMawGm
8nm9WaJz6naiFaYfMv3s0MvEp6PhFAhp0zINS/KVne22J+D76VB6b7NaqR2PZc4V
9TK9vbCtQQZhkN5T9cFmgiR5qS1nUag3N0poBHA4l3V3Slgs40VySMuctEFxdoO3
RPs7PeKCRInHVL7JdhomI5um05DUXiMsc5tq/3vszU0OlNOdt7gEnX3Z03cdR8RR
f1OFlPPFmN1kaLiOv9stJggaUmumF2oEdtAilOkz0tGSKKM4icu4kp64pLS5tpjC
YXX24k9dmU4JttUVC/uT/i29MgS6S3sYfB4Ukv5VCeom5NqtsIxizr7Wzfy5taiP
ABxb6XG9iF8u9r3OQ8G9SBYjJWUbeJMvKNC6ywXL9J0H19LH/ddqjrLP/JQCI5HU
HhHbZkulKHcaeeU5POnQrIzYjHYkGJZ+JvL38y7YAaF50y9Mp1q4RqEsobNfgOVR
50YfERsL86dwPxRANkGh
=NT1q
-END PGP SIGNATURE-



Accepted libmath-random-perl 0.72-1 (source amd64) into unstable

2015-09-24 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 24 Sep 2015 21:57:58 +0900
Source: libmath-random-perl
Binary: libmath-random-perl
Architecture: source amd64
Version: 0.72-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 libmath-random-perl - Perl collection of random number generators
Changes:
 libmath-random-perl (0.72-1) unstable; urgency=medium
 .
   * New upstream release.
 .
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 .
   [ Axel Beckert ]
   * d/copyright: Remove quotes around URL in comment to unconfuse DUCK.
 .
   [ Charles Plessy ]
   * Update Standards-Version to reflect conformance with Policy 3.9.6.
   * Remove debian/patches/random-seed.patch, applied upstream.
Checksums-Sha1:
 39afae30cf4ff8c86fe7cd450b0d950f87d79cc1 2135 libmath-random-perl_0.72-1.dsc
 7a47300e79f1c752a5e60fa0add97db0acff642b 46907 
libmath-random-perl_0.72.orig.tar.gz
 a976f74a78c5140da321368215961115c45d3546 4228 
libmath-random-perl_0.72-1.debian.tar.xz
 c0a1abd491a891ecb4e9a858b6fea7f3be7cc5c3 52494 
libmath-random-perl_0.72-1_amd64.deb
Checksums-Sha256:
 1f11ba86e7ba18bb4a40b3e8a1733065398a5d893474d3101eaa89a457043930 2135 
libmath-random-perl_0.72-1.dsc
 be0522328811d96de505d9ebac3d096359026fa8d5c38f7bb999a78ec5bc254c 46907 
libmath-random-perl_0.72.orig.tar.gz
 32cd977a961b8f8c107d14bc34aa6506a7396fa52db27ec90190c9b6883902ab 4228 
libmath-random-perl_0.72-1.debian.tar.xz
 4237cb70c31707f59ba37e6b540056fb6e3d080a64d47aabcc894fef2e28e6e2 52494 
libmath-random-perl_0.72-1_amd64.deb
Files:
 4d978ebd8c5827c0688ced2e82c0d5fe 2135 non-free/perl optional 
libmath-random-perl_0.72-1.dsc
 b0b961e2ae06920801a9c9843c48d0bc 46907 non-free/perl optional 
libmath-random-perl_0.72.orig.tar.gz
 d06502c83bd0c14d76e94bc75986cfae 4228 non-free/perl optional 
libmath-random-perl_0.72-1.debian.tar.xz
 1cde390d865dd5c38b4b0d625fc0ecc2 52494 non-free/perl optional 
libmath-random-perl_0.72-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWA/PzAAoJEMW9bI8ildUCSkQP/iLI4NsftlzdfATVs+4SPBVa
CPVXd+CW2U9S+E8UNPc40PDlmzUqYamlpy1/5/A1xCph43TXWARpaAnYKfJTR44W
LXbUTlQ8kySIMr7kz4MiLgSN3D9cvYh6v2Me4AMt5CJoEibKktCh6N00ynunaBgx
2f6RRdKlu8pUV8Z1CqLuCHy+z+mZmtkzd9iK8YH4YNxcj3Og+Z35OhqXATwYFFf/
gwUwSgiQ0AqWnDl/0G35i8RpfH6vPr5w3PAuic4Mn0fesvG8X7lX7QEahbq44P1q
qbBCjpkJxWP9TaOyOyMAOIa1SFhEA63+EKXEK2DRFqlUbDVyIp0SfHn7sHrWVYOm
18ICp74xFs0mP8dCMnI/hMJlNPxYz8DRBPwN550afZsvrjr/4kBx2ymqD20f5qeL
TrE258cVqEi8HDFNL9N6dkj1lklTjr4U7eUFkJueYUci+PjlFYR3Yf/VwwGv4auk
bRCjjBJd5qBBnNztPJzfYjQzWH3W0dTQegyKdDIPwr7I22wwrjDb1PvFNwTS4t+k
srZJWaZ7CFz8zkkNLDUZWa0Hs98MfnYYCv4lIFJ48Dp9NRtPySNxuM17PsyTKPhc
GLJ1LR1SKUdrg7+VrwkaOtX2d+qTkexk4skfT5n0oHaNcE9uqZxgb8MLXrOxlHa/
ukxKyFrqyfj+yTRE2ytj
=JJc7
-END PGP SIGNATURE-



Accepted samtools 1.2-2 (source all amd64) into unstable

2015-09-17 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Sep 2015 20:21:15 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source all amd64
Version: 1.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package.
Changes:
 samtools (1.2-2) unstable; urgency=medium
 .
   [ Afif Elghraoui ]
   eb56918 Add patch to fix building on i386
   702d289 Remove source files not present in upstream tarball
   7afd302 Allow all scripts to be called without language extensions
 .
   [ Charles Plessy ]
   876f680 Document the update workflow of the source package's repository.
Checksums-Sha1:
 466308992c8332e39e607b2ea582bd233e0ca2d8 2117 samtools_1.2-2.dsc
 67060d378093df98a1a5e579f8aa717f7d820ddb 9660 samtools_1.2-2.debian.tar.xz
 42c12bab33f018b73d97617f54c6820a1fb32fa8 2646396 samtools-test_1.2-2_all.deb
 ceed8d67a37aef4352f4134fdabc585cbfa04a41 75450 samtools_1.2-2_amd64.deb
Checksums-Sha256:
 6b054a0967882dc98e2f81b0257ce26980d30d3a60ed878a0bec1ea0d90a188c 2117 
samtools_1.2-2.dsc
 45e989172a110c980a50380e13979eec78d982b75ddccae33f1c6f4e931ef686 9660 
samtools_1.2-2.debian.tar.xz
 8fc146560ecf3658e7287128ffc4f54c224f810c03e0a7565f0c3b595997ba12 2646396 
samtools-test_1.2-2_all.deb
 5228feb9b9d48c2ce843420266760c224e1e14758671b6c82e0c4009bc73a35f 75450 
samtools_1.2-2_amd64.deb
Files:
 1cc68f090a1ad2b0e0624e187c380073 2117 science optional samtools_1.2-2.dsc
 042d3648bfecb640ddca7a9ab34033c4 9660 science optional 
samtools_1.2-2.debian.tar.xz
 19dc121013e77df2f8d64d5bb954031a 2646396 science optional 
samtools-test_1.2-2_all.deb
 4c2ad525426b028fb47ea329de21da6c 75450 science optional 
samtools_1.2-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV+qPxAAoJEMW9bI8ildUCk40P/AwDaxQZbFBQ2tiZZvcB5VB6
zh3aVkOFC+ciS6MDqyfvXwbhaWYxqTtbyPqeXuJ/NrRShsN44lhFxHNJRNqVdUGq
Kw6LxfVYBYZsqUSFqaNxO6N2PQixnjJViHflXSyftRjqbYDkRegYRvxaSWlytY0E
OlCUn0EL5EJHqiE06CHz7tXazTS/3H44DmBYRFBjnoCUq0MCevnE2J7Q+2CAm+6g
EmpOoCDnPnX/cCRHb9i+2GWdA5uLjqvH61w+LS0nvv5Zo5v06iWWVQPNuhoX/hdI
y/uypuJRguoCD4cbJM0oThR3Gei16qsrPOIR5ZGzMTii60DKfB2UUjgsgZCqw+vv
LkD8dPsN0W3bZjvCV3/iXyz1ZzVWwyEpH0dYHFbZcSfve8t+U/wl91H7Cayamc7b
IBCz4vo/Qzdgfx6/Uc+gXluy4F59UsQ5ujYgFZA5dFsX0H8f5gldaWiu/+ZScsBF
e1lIHKxbTZlZyJT8lTU6kPmR6VpJcnuE/uzeGwvpys0HTQlJ3Ede7xDDn6dns9ss
UKM7vLvbM28Hzcx5elP7fPBANWit8Rxc9vBk1/j/QfdForbaz1B7L2yYcV6INBTF
qX+JdGQ9Fn4ZgjdH94VwENBV73a0B+aqyX01CsxyUZKCbHJdKIKIjYdc+UKi42XN
OD4I9Jl+5T8f6kKemCnv
=GHgl
-END PGP SIGNATURE-



Accepted bedtools 2.25.0-1 (source all amd64) into unstable

2015-09-04 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 04 Sep 2015 16:55:21 +0200
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source all amd64
Version: 2.25.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Charles Plessy <ple...@debian.org>
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Changes:
 bedtools (2.25.0-1) unstable; urgency=medium
 .
   e37865 Merge tag 'v2.25.0' into debian/unstable
Checksums-Sha1:
 5ba0404c4442e1d8be8f0e2d9a497ce539f4963d 2071 bedtools_2.25.0-1.dsc
 949fedcacc2e68adfd45e2034d20c3a432b3f2ad 19586049 bedtools_2.25.0.orig.tar.gz
 ea7804ab77a2d816ef77b35d62396bebf9ec96ba 8132 bedtools_2.25.0-1.debian.tar.xz
 c419dc06dca83db6c455663177685b7f8455de53 10195822 
bedtools-test_2.25.0-1_all.deb
 1666aaa0b44f4bffb0c52c08ef038c45ba318d9a 574390 bedtools_2.25.0-1_amd64.deb
Checksums-Sha256:
 0061c97c6b9595a95f573eeba6811ec3e3fd62209226c8020e7d7165e373e59b 2071 
bedtools_2.25.0-1.dsc
 159122afb9978015f7ec85d7b17739b01415a5738086b20a48147eeefcf08cfb 19586049 
bedtools_2.25.0.orig.tar.gz
 5eaa3670f4ae5fbd83d731e88e8f64c4546c8fef341751856c3d02b6b11c1327 8132 
bedtools_2.25.0-1.debian.tar.xz
 3925ee6778bd6798b31ed8df35dbf67a3d738436f6a7ef071c8dc1285f6fbd94 10195822 
bedtools-test_2.25.0-1_all.deb
 cae27740683d8a178d9bf565d01b016115125b9442cea7781be9fcd8e97accbb 574390 
bedtools_2.25.0-1_amd64.deb
Files:
 fb15306ca95d99168ec823af0676eed3 2071 science optional bedtools_2.25.0-1.dsc
 534fb4a7bf0d0c3f05be52a0160d8e3d 19586049 science optional 
bedtools_2.25.0.orig.tar.gz
 ac63b2b87d982493ca837e6b6ad6431c 8132 science optional 
bedtools_2.25.0-1.debian.tar.xz
 2e1dbe5447a8bd1633fbc7809bcd0e2f 10195822 science optional 
bedtools-test_2.25.0-1_all.deb
 15a2df0c0fd8033b82f9a1bb11966f42 574390 science optional 
bedtools_2.25.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV6byzAAoJEMW9bI8ildUC/pgP/3U10Cq7C3TRdC3W1DWSIcKk
bBik1A2Tw8YtIBYazKaxofm8Lfzrzrbnz0+RHkb/mzzGW4v98ga58vupvxqIlLdK
yFz52pFctC831frCoUUIrtt9ixR6z2+q4siEEmIei9r6TX4BfuiyFb+Z8XaqZqaA
Qr7enNJt70vGV23HTBYfm6H/MxIJNAt0JRr7DFnfeMDeaHVkBF22IhvwE/DHVW2c
I9u1LJpk0mboOsM0w70K9Ocwayh1cDcW66Dps9yOiyBm/Qn3wzsoNicicZ9UuNLY
pvgMW8WChvyasdpwmZaulrCtEa4bJnaYBQrNnLNipU+zV/MLXL6s9YQTFhqtkdGz
D/X57NE9+tbcgajQtzfGLhrF4ASNrvVnhfzqK7Z5HsJPtKmj4ZQOkAn/BZ9NZfIl
WP8FEqTq6sG+rXi5fkrwSIoqb67LVxlBWhfjPu0Lrrb9aqNYtBf0WpY8FraY7Dch
jgp6+U8CfhQMnTvoluT3B3C2Lr2sGTo0nRiCJzsjxLt6Xz/qBxPOJbW8+GZkKHdx
3hmnmIxmkC7MF1sbrh+UI0aE/byNnXpAQvi4al84phdoSSV7tp3JLXhLl+kxie/c
phzaOKFEngqNg1sgQ/9lPRNkirZ+GOa5nBqUp1ztcfZa03V+YzFd6FTcHq+8Fnqi
Z4zbFIQQ7qhE99Gk9F7+
=9Cpb
-END PGP SIGNATURE-



Accepted mime-support 3.59 (source all) into unstable

2015-08-02 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 03 Aug 2015 07:57:49 +0900
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.59
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Maintainers mime-supp...@plessy.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 mime-support - MIME files 'mime.types'  'mailcap', and support programs
Closes: 774303 776939 787459 793705
Changes:
 mime-support (3.59) unstable; urgency=medium
 .
   * Media types
   bdfd714 Add media types and extensions to support ClickOnce apps.
 .
   * Documentation
   77732bb Document how attacks with specially crafted file names are
   prevented. Closes: #774303
   4cd9ea4 Mention ~/.mailcap.order and better link between manpages.
   Closes: #787459
 .
   * Packaging
   8a8992d Remove obsolete arguments of dpkg-gencontrol.
   a65e461 Pass --no-name to gzip, to make the build more reproducible.
   Closes: #776939.
   db49144 Make the mtimes reproducible.  Closes: #793705
   Thanks to Maria Valentina Marin marival...@gmail.com
Checksums-Sha1:
 a7114ac2df190c6f74dac8afc76f7f6ebffc2a73 1604 mime-support_3.59.dsc
 1e395eed768b7d2d9d3ec1b29bf977a346680c37 35728 mime-support_3.59.tar.gz
 e1b8583818edeaf027aa7310de5cb6d877405825 36444 mime-support_3.59_all.deb
Checksums-Sha256:
 aaa6065653c386f13583179df823b659d056b29e954d65450a3c6f032405db81 1604 
mime-support_3.59.dsc
 7f5e94a346ad2a516106c07eb391d1e69ceaf17bea9711618186a1595f536b45 35728 
mime-support_3.59.tar.gz
 a5d55b40796e87e91d98963e16fd0c937e3e322280dcc04ecb65e0453b5bead0 36444 
mime-support_3.59_all.deb
Files:
 4ad60e702ad21deb1157e9bd01a80f54 1604 net standard mime-support_3.59.dsc
 165b4de1812a2bba9ca1a065adbe62f2 35728 net standard mime-support_3.59.tar.gz
 b70593917af3f89a587956450696951f 36444 net standard mime-support_3.59_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVvqPrAAoJEMW9bI8ildUComMQALM8ymp1eNbaL7BQTt943MCK
8upYtlq5QDhr6g97ykTXotdjBKqskn+57XVnnQvaw+SlmoNkzNZnqH+4OqNHzyP7
IBYuFL6xF6sknA3KSv2IDFL+Q/+tgf8SmRdca+x6lCO6EWXzGQ1FR9uI03Xg/qEJ
qkNA89/ChXQFtvpRQNN8MmZX5U6+K+lTOFkc/78UPgEbzbX/FuBfImtYkOtlDxcS
lG+5lMXp7StagebfrLmeT3FcfavQreYH3dBagnFkpBAF5wb32WHNlsAturNWjCw5
xXPaN22sWPLk5ole0EwLMKUUpey02nGLOiBqxmdNGijnLwUiE8qCNgnr5LqSojIv
gVbX9Fjx4LPb8belqne0e6JDteoqmW/MRuFLqjgrLHm8+h1xRZIuef54pbVdSh5C
FtDkRR2uF/QpI5hmmn0MuoutVG9oAwBLt1U5hj+rz0x4dA+FUWGuu4jwjMq9tdwP
YV0DDRWc89rwcIepSXucQt8eh8pZ9/WD4vvuFvZY2xf0YLoMU85O+jz4Il3AZcKs
yFESEBfFQb9xsAzis/AhWqJuAlkJSM0fZnNHMTjJP8saTHlDkahrOdNSoYxMYY2q
p6kgxDJ98OsGGkUHQ4VNaNc2LC6P2FKi0OMip/KFc6b+T+aAgnEmo+RM6AxFSlUS
fvZ0gXW7LS/zDsDV90pO
=riCE
-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: https://lists.debian.org/e1zm2wp-0003hm...@franck.debian.org



Accepted bwa 0.7.12-2 (source amd64) into unstable

2015-07-03 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 04 Jul 2015 13:00:50 +0900
Source: bwa
Binary: bwa
Architecture: source amd64
Version: 0.7.12-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 bwa- Burrows-Wheeler Aligner
Changes:
 bwa (0.7.12-2) unstable; urgency=medium
 .
   * Upload to Unstable.
   * Install bash completion script in /usr/share/bash-completion/completions.
   * Also distribute README-alt.md.
   * Watch GitHub instead of SourceForge.
Checksums-Sha1:
 8d7a870e66dfacd89da49e1e109ab45b237dd95a 2013 bwa_0.7.12-2.dsc
 e6854029fa5dcd4630bd0c3d1322ddf42c748d13 6012 bwa_0.7.12-2.debian.tar.xz
 1348696a4853d41e8d18cb87da11c147bce3009a 183802 bwa_0.7.12-2_amd64.deb
Checksums-Sha256:
 37ed7a0498155b3460c3c81a0b5a3fae24f525c30bb5f8300408947528c07b6e 2013 
bwa_0.7.12-2.dsc
 df9d255ece6dc206aa6207b68d03ec0ac52d03ec0c7f415814a8d92cf5c96f46 6012 
bwa_0.7.12-2.debian.tar.xz
 ce60e2caa5cf30ee10e2268b342cba1e122d25236a50971f30365de97039dc87 183802 
bwa_0.7.12-2_amd64.deb
Files:
 9776ad9d59ac4c8fef6b4e185209a3d4 2013 science optional bwa_0.7.12-2.dsc
 845fb3412e665d245ad518ce52ccfb14 6012 science optional 
bwa_0.7.12-2.debian.tar.xz
 d4d4b693d0902ce16c101d43b1a81b85 183802 science optional bwa_0.7.12-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVl2MmAAoJEMW9bI8ildUCTgwP/Arsjna8J1C4RsOHxTmOMfeU
lxMdo3sdgvSoQTeLEmgJxzmW701JdlwFpitP8zCwv9H5OHvNEvItaz+oIH0gy9kR
PZ48kZi5mX26+RGHOyb0UG0TV1PacoykMOlyprABvBC+CNIyWlggq7HhOf1BytHk
Dy4AQx0pRAW9y54VbHcc0XJWW3YafkNAlkhw07A/3UjHpjt60DnlkWAgkCVhIVtG
ziORd7qM9WQ//cU2yy3CxgOht7hinob1OUdmv13FoNnEyA/p2Lrn2DnGpccTF5UF
hZHV/UfE7LPINb/iCsfjyaasEc/8MQJ7I8SnamWvZ4RTbhcCKTfZpR61aW79G00y
0mlpaqPExbXiCTUlpojj8hXBXhywbvKcb60K8LULuOa+ToKcFhmH1nenh5XdQpbI
lfVOedTQ8yoNWkB5zvOOuyfcNHMy9503fCBqXHNFrSPgVfqoTd4pJjDngm5h+OMj
ypPN16h7cR8EFqDsnp7BH5wwR/XFBYu5FSkzLVGnpfdP76RsH7WW1wV+ZrgEL0hu
qf073OATxArZnNbkJGEJWUVRJr2m8auwQtzyUAYvxxbIF2lEjqJJ1uZb7crHkwLh
2f66vdM7bKbPx59JDxKNZc/ETtZ6gGJBr4ibj6hcIsbCoQEIF6iz7RGkNSNl0p0t
KuaMWE8ONhtlYf7Yd6H9
=4bWV
-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: https://lists.debian.org/e1zbfng-0002o1...@franck.debian.org



Accepted bioperl-run 1.6.9-3 (source all) into unstable

2015-07-02 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 23 Jun 2015 20:05:10 +0900
Source: bioperl-run
Binary: bioperl-run libbio-perl-run-perl
Architecture: source all
Version: 1.6.9-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 bioperl-run - BioPerl wrappers: scripts
 libbio-perl-run-perl - BioPerl wrappers: modules
Closes: 78
Changes:
 bioperl-run (1.6.9-3) unstable; urgency=medium
 .
   [ Charles Plessy ]
   * Build-depend on libmodule-build-perl, Closes: #78.
 .
   [ Andreas Tille ]
   * Compliant with Standards-Version: 3.9.6
Checksums-Sha1:
 7c76a2397726e0f40e148d3b0a979d881b94e264 2297 bioperl-run_1.6.9-3.dsc
 cbcbd7a7526ea0bfb5623b49c2cbe2e7c64d1b66 8896 bioperl-run_1.6.9-3.debian.tar.xz
 b6cb5920d40502864fbcab85732b8b8cfc039070 44124 bioperl-run_1.6.9-3_all.deb
 ae24cc48d712c94766b7b57be3069546d4edf7cf 753592 
libbio-perl-run-perl_1.6.9-3_all.deb
Checksums-Sha256:
 d429020261ad1226044c3984d80cc5e300559107b0fc9d47d39f1009493330f8 2297 
bioperl-run_1.6.9-3.dsc
 260486885eb0c1ab25dbcfd4758b022eb375397698c71df8d12c66060d37ca10 8896 
bioperl-run_1.6.9-3.debian.tar.xz
 4f7eec7ede1389ebfc6ed8694868e84b83b442736dac681c5867906824642f19 44124 
bioperl-run_1.6.9-3_all.deb
 3fb81ddf4a972672b6d40d5029a71daac5fce58259aa97d668e1eb2fa43661cf 753592 
libbio-perl-run-perl_1.6.9-3_all.deb
Files:
 9675f290e2885de24e9f9da39c869846 2297 science optional bioperl-run_1.6.9-3.dsc
 7a1d5c510dac6e0bb59dd323639ce0b7 8896 science optional 
bioperl-run_1.6.9-3.debian.tar.xz
 5f6ed6ac1aa4d75411cf947c3020f7ac 44124 science optional 
bioperl-run_1.6.9-3_all.deb
 bcd3bcd48747a1afe5078dfd3b698501 753592 perl optional 
libbio-perl-run-perl_1.6.9-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVlh2+AAoJEFeKBJTRxkbRlbsP/iydLFy7GLFcIR34j9Q7sJTR
43tN/C7FcTeTSIffbFwaAHDP9S/pZvwI8eDtwEA9kqYYC0yOIZGpEb+Cf76NCZ7K
R9e5c/VbjohpvOBtb2FbhZOBDH9irRkRQOqg8ZOyyCzeHBk67HP9UNAca4dZMQZC
ZC6mw2jifH2sNglBTmCrBtnZkf7kyl1Xd/jYZLBMiFo863IfV2jOY4KhXz768y6i
OPye4oBqTsNJPCesIB3vxwYlZInhvQouUBVDDwm0xyO0N06ylNqiDonHvJ2GLPZr
nxC4nq4SyaRJsrgzvVBEmnGgNtf/i3i0VuzpuggG51cPOkwYxf0QuSgilYn7RkDP
Z0RHtpOtczqDswy9a82ML9/N+Y5aUr+QiJ80n9aGW0wGafGL4yMTG3QO9dAZ8yPj
NuHAIL3NFqJ5vtN5m0aP80XYt35M6rVfTKL+fqUkipCQP+pP5+1PVNUTkIuil5ox
K2YAY3kS3/h2rcxX/EIx/5Jx5yuVrljI1wu/M9whdJYqkQxX4pFH7ttNyfDPygyo
uq0KmOTYcspC0rEmC1j0tA+duxI/7SsaFMNAHdcVLaQtCTlSf478MaxJ6tE1ZaMY
riz1jSuVtwPy6wsQ8R8sOiX1BArUiaKJxm/3Of0Wlcepns8ttCxwwFveFrDDsfUL
14CLDN6cfngxzaC5g1+9
=Lkp8
-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: https://lists.debian.org/e1zatqb-0002lm...@franck.debian.org



Accepted libbio-samtools-perl 1.41-1 (source amd64) into unstable

2015-06-17 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Jun 2015 08:01:22 +0900
Source: libbio-samtools-perl
Binary: libbio-samtools-perl
Architecture: source amd64
Version: 1.41-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 libbio-samtools-perl - Perl interface to SamTools library for DNA sequencing
Changes:
 libbio-samtools-perl (1.41-1) unstable; urgency=medium
 .
   0b7140a Imported Upstream version 1.41
Checksums-Sha1:
 99bbf3232913e3467d697ed6f0fab8ebc4c0fd6f 2207 libbio-samtools-perl_1.41-1.dsc
 b9071f249ee0ca6fe1d49cade2918e31e1581506 338745 
libbio-samtools-perl_1.41.orig.tar.gz
 4c685a42bc0e574fca368b842ca737b7ce9aae8f 7716 
libbio-samtools-perl_1.41-1.debian.tar.xz
 888de352973e43af8eee314a2b7e5b7f318d343b 194548 
libbio-samtools-perl_1.41-1_amd64.deb
Checksums-Sha256:
 273ec1507a30b04f751a4fc9491e33d26573439788bb6ce068f9b6a6191a4ac3 2207 
libbio-samtools-perl_1.41-1.dsc
 b5d7ca16c96cc9fbee5daceb3268f36011740fe4de92074c17a729bac57c3077 338745 
libbio-samtools-perl_1.41.orig.tar.gz
 747f9ebda88104e3682f5869adc78a1c59ad0b65f1f441ef23b157107f6a 7716 
libbio-samtools-perl_1.41-1.debian.tar.xz
 e60770d9c8ac33cc31b507653b2ee57b9494913993bf6cbbdf7065e5d47adecb 194548 
libbio-samtools-perl_1.41-1_amd64.deb
Files:
 0316621d5bb933b79bdfe421e61c 2207 perl optional 
libbio-samtools-perl_1.41-1.dsc
 23ecbe1023b7169cb7cf51bffe4b6526 338745 perl optional 
libbio-samtools-perl_1.41.orig.tar.gz
 b593787f9d577ca65fce43a962eeb819 7716 perl optional 
libbio-samtools-perl_1.41-1.debian.tar.xz
 e48f3298c10fdbac2972258515f25545 194548 perl optional 
libbio-samtools-perl_1.41-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVgfz4AAoJEMW9bI8ildUC0fYP/3D9PoUbKiz0Db6UGnc9xtSP
r/Yp0DNNXZEFNz/3gLU4x3yt41OIKsI4FcYFRX9ZAXbfTecM6CsJVs+AEhIecypx
p16E+d8kPr0QnrvmaTR0grcqiV1KMsSKXYYIsCk6i8mfPQYt7Z2qNGvpnLyzGQ7z
nb5phD2xXH6+rEo4PlcjoaSvT7jkPFbKBN7qf2GreZRnUDAdLKw+i0ayHT7V+6gp
XmhBktaFaSDBJeP6j/grUwXrSK/RXjygVuuNwBlMu83wYEb1rWCeC2iZzWZK1Vw/
wrgxCzPlptqnh+BiK/Fpc9ai6Vnk5gUSibgrZURQFl7J4hHWIOgw2EIyM4O4tDia
LcbuVeoLVTa7qx2edDIIZAgXK1yL5kTCWYxXnhqGVx2NS6Co9kERgDT9CBb4QBNA
NK4NXfEWoChAXJwW2WoZhamp9xzUn0wCv6a0cH3mZ/MbODBscT1kgUW+oC1wHXka
Q5vEpnqFyET8idW6DhBk/2AAukrIzKCVVAka/6jHDrQQUA432IQnNlFDzJC7LyUm
obwwvGUCgBKbmjG870bcyPI+VJjQKDJFFIb3/OzFBtLMnVS0isXy7AdQTnKFPViq
csfSSf8DLOBpSVaJ3fnEvUCKuqne4mnEW0rR6u0VQ81Nh24pspisM+81XDfjSOgz
LwuzdE580DW82H4XofEh
=97Xy
-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: https://lists.debian.org/e1z5mby-qa...@franck.debian.org



Accepted samtools 1.2-1 (source all amd64) into unstable

2015-06-15 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Jun 2015 06:12:12 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source all amd64
Version: 1.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package.
Changes:
 samtools (1.2-1) unstable; urgency=medium
 .
   a5f28a0 Merge tag '1.2' into debian/unstable
   c542e84 Build-depend on libhts-dev 1.2.
   6c2d9cd Build-depend and recommend libio-pty-perl.
   (Needed for the regression tests.)
   23e44a4 Removed fix_coverage_cap.patch, obsoleted by -d option.
   1091aab Refreshed fuzzy patches.
Checksums-Sha1:
 fba84572a2c3f7fc652cfe530bbad24b9957b28f 2117 samtools_1.2-1.dsc
 9fabb4903b9d1521aeea8a5538e64aefe8e85526 4318615 samtools_1.2.orig.tar.gz
 a91e9483810ed9ed0e979138febf467b6db6956d 9596 samtools_1.2-1.debian.tar.xz
 5af2830490b1588c6e2bcd3021733c0681cddfb4 2644688 samtools-test_1.2-1_all.deb
 5d97f7b4d27954e75904cd4a6155422f65022e57 392492 samtools_1.2-1_amd64.deb
Checksums-Sha256:
 56421ef07a64a3c54c557dd0d91dcbc7d9b5b08dc204ee09d852949db9900653 2117 
samtools_1.2-1.dsc
 e4be60ad24fe0324b9384fe58ec2ab7359fe926fbee3115d869c447eb01a9e47 4318615 
samtools_1.2.orig.tar.gz
 c3a6bead979cd8bb0b8fec3e9d6b2bb352db21ae4fdac8ad214757aed72bad23 9596 
samtools_1.2-1.debian.tar.xz
 5a3017e37793e4dc1daa7f8c029cb943d98001cd580d110bf569093b0bbb7e2d 2644688 
samtools-test_1.2-1_all.deb
 5af217333dd6c66de5667be1c7a3edb695f370a5add22458081747a7b8968856 392492 
samtools_1.2-1_amd64.deb
Files:
 57b89f47bc3977ee7cbdd2c0edac73b6 2117 science optional samtools_1.2-1.dsc
 2748356ef392c0694ca1142de37cf2aa 4318615 science optional 
samtools_1.2.orig.tar.gz
 af3dbbae0acff0b7f989b54455839b56 9596 science optional 
samtools_1.2-1.debian.tar.xz
 31a29a2c1ccf9235d4967d0582e25b51 2644688 science optional 
samtools-test_1.2-1_all.deb
 d7ce058d6c3b4d64fc6530615c960f6e 392492 science optional 
samtools_1.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVf0lbAAoJEMW9bI8ildUCkeIP/A/kRXygPbnk9kS066FdBDQT
jm7QKOUAvBDlNnAC4ZyM1DbTmu/p44z+KRNX/ZOY53AAC3RaWhVt/9F9iO1UyjRo
a/OikqtZQQX/nuKx4z23vpPbPnr/uLolx8uYSfwcaHakJLXeWJ/D7sc5DGNrExEW
VXqF3vp/P3JBcIJ4jPp6V9+l4aWEi15IobH1vyb9JcAEogALlLYCgrE2HPjF7wah
qI/l1rwXW/t5hzM0xjhtyTzeb0E7EoJwbnS9RdgKiaVAZEwVMNdJ1O8BtcaxV5rW
czxJd0yBDYfQCoT4ESnOtYAE+J8Wb2RGtA9gMbSrxXZdbO4FL+gazKZZY+rznSII
FKxiW9i/QckfgOmwZqOE/Dmv+BtDulL9UUuuhU2s/di1DHwARnl44NFC95647aE6
ao+ObVD3ecq1Ey7OClpQWCaILm4Deq9tV7l1dvOpTwXi9tB2PcYRvpMb6Svc1dB9
mOH/4NZH3q7NxufBVTv/y75SfO+tK95W8NLhkAZap0kR+Eu2e5fbPzNNXpRrkGeV
Rofll/JDRfrQcQRBuqsACQeVzHr4HQtqE8LmFluRz5uny+fryy+8TMzmsG+qKZk3
2r19PGhIA7M+XRIfK4QJkwUfsqnHIZnn0fE1r/m2na52YDtShLEBVnGDyQA4omdp
dr1ieed45Djj766FQiRS
=FLCx
-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: https://lists.debian.org/e1z4cpc-0002rz...@franck.debian.org



Re: Bug#787571: How about transferring /etc/mime.types from mime-support to base-files.

2015-06-04 Thread Charles Plessy
Le Wed, Jun 03, 2015 at 01:04:26AM +0200, Santiago Vila a écrit :
 
 To summarize: Because this would imply a change in the essentialness
 of the file, I don't think it would be a good idea.

Thanks for the quick and precise answer.  I agree.

Have a nice day,

Charles

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20150605014708.gf13...@falafel.plessy.net



Bug#787571: How about transferring /etc/mime.types from mime-support to base-files.

2015-06-02 Thread Charles Plessy
Package: base-files
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

Dear Santiago,

the mime-support package that I maintain can be thought of two compontents:

 - the /etc/mime.types file, that is parsed directly by some indepentent 
packages
   such as apache2, and

 - the mailcap system, with its executables, its configuration files, its dpkg
   triggers, etc...

I am currently planning to separate these components and one possibility would
be to have a single package for /etc/mime.types, that would track the one in
Fedora's Git repository.  I detailed this in https://bugs.debian.org/786889.

Alternatively, we could ship this file in base-files, since it is among these
traditional Unix files that one always expects to be available.  But it has
frequent updates, to it may be extra work for you.

What do you think about this ?

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20150602220654.ga26...@falafel.plessy.net



Accepted r-cran-rcurl 1.95-4.3-2 (source amd64) into unstable

2015-05-30 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 31 May 2015 09:14:50 +0900
Source: r-cran-rcurl
Binary: r-cran-rcurl
Architecture: source amd64
Version: 1.95-4.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 r-cran-rcurl - GNU R General network (HTTP/FTP/...) client interface
Closes: 786473
Changes:
 r-cran-rcurl (1.95-4.3-2) unstable; urgency=medium
 .
   * Team upload.
   * Build-Depend on libcurl4-openssl-dev only (Closes: #786473).
Checksums-Sha1:
 79f3099d3dae0beaec1a67db3b52226c29387a8b 2154 r-cran-rcurl_1.95-4.3-2.dsc
 9d02fdd8ba953e25f067359e2bcb2842f2ec4c0e 19844 
r-cran-rcurl_1.95-4.3-2.debian.tar.xz
 baf8661b4b5f0f66c35d3daf07d7836c4af445d2 526000 
r-cran-rcurl_1.95-4.3-2_amd64.deb
Checksums-Sha256:
 646fc5b0423eee12115d1922ce3fe6af6eda8ea54c894e1067d148e021b5774a 2154 
r-cran-rcurl_1.95-4.3-2.dsc
 6be668984375610c103abd061ae5bd09c4212ea44592d5f4ca0e603e8a073237 19844 
r-cran-rcurl_1.95-4.3-2.debian.tar.xz
 fca54b575afcfbeebc3b1cd498b343710353ab356c24c183f191fbad3c65b3fe 526000 
r-cran-rcurl_1.95-4.3-2_amd64.deb
Files:
 e4b89e4c5c5678ebbec6046ca5d2dd21 2154 gnu-r optional 
r-cran-rcurl_1.95-4.3-2.dsc
 f3c0a837af04238d16d0bd5a7d3ac5df 19844 gnu-r optional 
r-cran-rcurl_1.95-4.3-2.debian.tar.xz
 17c014b4c1fda3f056d523f818ba21e4 526000 gnu-r optional 
r-cran-rcurl_1.95-4.3-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJValX9AAoJEMW9bI8ildUCvzAP/2AK/QDKyH2t4XNomBOhNJQs
+VSXnxOq06G0lxb4Aw3YJQywrZSrTkV0CeQdKqBXqWqla3HZ7vFScnw8GbfSz6x2
AUkLA4qQV+e3R88bM7NkpQ/R+WuVrLTrNBS91X18K9Ld7sNBFypceXDxfWcEz+xX
wl3/WgIF5XiSttB/z+imitH1aPHVI81Jd7znqgyP2m8KBI2A4kRXDpLO1wM6eBdk
7WM1rCBef+OA48+j5IbK7JShuV3wNr6IsoF5x9p+sgUTZ2BPferqC6kO6a4SEaD6
smp1JjKy7XxGRWRKm7OZ1U7/aBM3y3gVB86YGoO6GbHYiTzfLMb7CfzV6kWPgZ3C
oqkmKiwb93qBKnBp2Q0WoKZRTD3zKgpQ5KOx2RZCc8o/7CyljX5+g9w2gku1bk49
lRnSLiotMNr/ynoVkH8kt88Evxn60ounIYPNr6M7ET4CQyXgVGK1nUJY6otC4O/Y
5swDqQc1C3u/xBr0CHsJk0uBQyfwLBDQPFyDD7xG1VTKbj0YievE/hDWfxYk/9sq
RplctAsDw+OvMaEllNjwNo1eIH6Gh1WB2nmfQqavrUUng9IPOzRGAHvWpQfWnqcX
gGALR+CpSyHiM5wMExM0aNSHm6GoRmB6UZAPQiishncfWz+Qg4K8IHEoir2hqXV4
pbXgz0ne8JNHKwuHdwDE
=QTrO
-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: https://lists.debian.org/e1yyrco-0002bg...@franck.debian.org



Accepted odt2txt 0.5-1 (source amd64) into unstable

2015-05-30 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 31 May 2015 09:52:44 +0900
Source: odt2txt
Binary: odt2txt
Architecture: source amd64
Version: 0.5-1
Distribution: unstable
Urgency: medium
Maintainer: Nelson A. de Oliveira nao...@debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 odt2txt- simple converter from OpenDocument Text to plain text
Closes: 780478
Changes:
 odt2txt (0.5-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release (closes: #780478).
Checksums-Sha1:
 c69d90c09f8de14d2467ca8b437837b8241d3639 1848 odt2txt_0.5-1.dsc
 deac1995f02d3b907843dd99a975b201a5f55177 24460 odt2txt_0.5.orig.tar.gz
 c08a2906cea2a895ef26312e616f9fdc6feaa795 3816 odt2txt_0.5-1.debian.tar.xz
 fdb2d54c8917d56d5a0d94c64c0f6bc39a1d3ac0 12940 odt2txt_0.5-1_amd64.deb
Checksums-Sha256:
 812f1e9b6d574165d08c7ec4adeb88b7d8a8df37bf3fc88903ede6ebd401cbc7 1848 
odt2txt_0.5-1.dsc
 23a889109ca9087a719c638758f14cc3b867a5dcf30a6c90bf6a0985073556dd 24460 
odt2txt_0.5.orig.tar.gz
 c1a47913f761033d3328135b96c921464108a114b7dba02a1a02ad4dc9e2d681 3816 
odt2txt_0.5-1.debian.tar.xz
 e154ddcd7460f3cb4eb934b70f15e9cd7b46f614a4e7b4955321c4268ff41617 12940 
odt2txt_0.5-1_amd64.deb
Files:
 e111ea92c7a79b1a76e3952a3ed5cf30 1848 text optional odt2txt_0.5-1.dsc
 8154dc7f2909dad6939d209695e62379 24460 text optional odt2txt_0.5.orig.tar.gz
 0a14a5e07f846b3f94423b391db01363 3816 text optional odt2txt_0.5-1.debian.tar.xz
 6480df00d5f30a0afc7aed3f2073c162 12940 text optional odt2txt_0.5-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVal8cAAoJEMW9bI8ildUCZDoP/0fnwm6xahGXGn+PP1802yoX
Xlv2DqWtVejTPLqFd6fHOYxqEjQ4DHZsGd1BYImINBdTKr0eQY9YnefqY/XCiquG
mKSaWZibtNf/Ua8JfvXNnc+Ag+vt/PAFcvA4Is0YytDCyXgsB6m8EqJaZp73cWXM
8L0uDFfHeG5eFOZ/VmlSsGkR5vgQG2i3rOCO7CjI6yBFduy5Af2V8PmrKYg+pk3k
FzkglsP1XcFSoAOEBcDM7y5u/FC+uc0cYmOHpcc8QxdvOsNj1lONTxRobxLycJKF
GG+wFbyYAoTQWOVgIwmBZ7vSkYKLa+jq6AB4noaB6TzjPUWQlZ9lFBJpoM9GPD8e
Pgig1sR/6Hh+hYGjhjb1UzabEFpuHYYUwcPetkziWmjmE9dQTd1jNj5ooISpMFfE
F/vgabT6PC7NO8o5cElpsk7J8BDHBNKMLlzeePUmkAGRUebctjneqffbNVHD5vaj
pOFPlBdXghH6pOQfZB7glXgOVCU0mZhOnqZfKw2tiinTUhiLhZuOP+mSQQo5gmmD
Amk5zTA912mMQoJCYln8vyAEdUZjwu3fuEOEba4wGx84rPW3aZDWx6y2+BpjwsCV
R6BzX2+nlOgZVPKn+knYuBvU8ET7Z1qzq2kTSu6Nc/gWRYNGJVFg2/XRfJx5DGt+
EbHIy+o4aqvkMs8xbm/A
=QW5Q
-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: https://lists.debian.org/e1yyrug-0007mu...@franck.debian.org



Bug#786889: ITP: media-types -- List of media types associated to file suffixes

2015-05-26 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy ple...@debian.org

  Package name: media-types
  Version : 2.1.44
  Upstream Author : Mostly Ville Skyttä ville.sky...@iki.fi, for Fedora
  URL : 
https://git.fedorahosted.org/cgit/mailcap.git/tree/mime.types
  License : Public domain
  Programming Lang: Just a text file
  Description : List of media types associated to file suffixes

 The IANA [Internet Assigned Numbers Authority] maintains a list of media types
 (see [RFC 6838]) and their detailed descriptions that indicate which file name
 suffixes, if any, are used to signal that a given file is of the given type.
 On Unix systems, the file `/etc/mime.types` summarises this information in a
 plain text tabular format (media types were formerly called MIME types).  
 .
 The IANA does not provide directly a `mime.types`f ile.  To keep it up to
 date, one has to regularly monitor changes on the IANA website.  This is done
 very well by the maintainer of Fedora's `mailcap` package.  This Debian package
 provides Fedora's `/etc/mime.types` in Debian systems. 
 .
  [Internet Assigned Numbers Authority]: 
https://www.iana.org/assignments/media-types
  [RFC 6838]: https://tools.ietf.org/html/rfc4855

Further comments:

Currently, /etc/mime.types is provided by the mime-support package, which I
maintain.  This package also provides Debian's implementation of the Mailcap
system (https://tools.ietf.org/html/rfc1524).  However, the /etc/mime.types
files is consumed by other systems, like Apache, and not all computers need to
have the Mailcap system installed.  Moreover, maintaing the /etc/mime.types is
time-consuming (see above), so I plan to track Fedora's file.  Since it lives
in a Git repository it is tempting to base a Debian source package on it, but
this Debian package would only distribute a single file.  Alternatively,
/etc/mime.types could be moved to a different package, for instance base-files,
but this would increase the work load of the package maintainer.

Your comments are welcome.  Please CC this ITP as I am not subscribed to
debian-devel.

Cheers,

Charles

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20150526131841.22093.98692.reportbug@falafel



Accepted htslib 1.2.1-1 (source all amd64) into unstable

2015-05-24 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 May 2015 13:35:03 +0900
Source: htslib
Binary: libhts1 libhts-dev htslib-test tabix
Architecture: source all amd64
Version: 1.2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 htslib-test - Test data for HTSlib
 libhts-dev - Development files for the HTSlib
 libhts1- C library for high-throughput sequencing data formats
 tabix  - generic indexer for TAB-delimited genome position files
Changes:
 htslib (1.2.1-1) unstable; urgency=medium
 .
   0662716 Merge tag '1.2.1' into debian/unstable
   084f27d Install NEWS as upstream changelog.
   316fb96 Override a Lintian false positive.
   3363679 Clean test directory.
   69bf167 Corrected a typo in tabix description.
Checksums-Sha1:
 a93f325aef7bd9b1aca30c3a11a93fb2106b9c59 2083 htslib_1.2.1-1.dsc
 904c7e8d1c37d52406a6c3e290d1b03b50acab91 997625 htslib_1.2.1.orig.tar.gz
 75328e4b2617e33b1d64553197f5af2fb4bb6ee9 8852 htslib_1.2.1-1.debian.tar.xz
 766e56b72c52a55d867a0a5a8a6928df54bed6b3 525034 htslib-test_1.2.1-1_all.deb
 91222d74515c2e3a64e8408c68666028186b881c 278086 libhts-dev_1.2.1-1_amd64.deb
 92dce3a29b0091f9b0ef7540e8008a547798d046 228730 libhts1_1.2.1-1_amd64.deb
 d97d1ff7a0fb7908cc354c576bbf3a12cdfd0166 223174 tabix_1.2.1-1_amd64.deb
Checksums-Sha256:
 97a2888221004d48e19da2fe50abaf2c2317ad1f1a6e47bed20a6c70374f 2083 
htslib_1.2.1-1.dsc
 4f67f0fc73ae86f3ed4336d8d8f6da3c12066e9cb5f142b685622dd6b8f9ae42 997625 
htslib_1.2.1.orig.tar.gz
 64d62e5c78c51c444adef995a4fe57f96bc0ff78e9e2aa4291f5742ab23bb711 8852 
htslib_1.2.1-1.debian.tar.xz
 082b7aeebfff558ec96cd18c08570f85a758a145bb449940daaf26e5588d8027 525034 
htslib-test_1.2.1-1_all.deb
 1d1ee5059d3b7b9128ca1fd6fb61bd508c0d11c7cd95c7902465af96e9229c3c 278086 
libhts-dev_1.2.1-1_amd64.deb
 613163244cc4409134000197dbc25533da230c668c829bb917dcd187545a39be 228730 
libhts1_1.2.1-1_amd64.deb
 b2b4a18b0d88d769554111ab0f1781b6c4ab02aadc5e4129fa3e54d80b7e2066 223174 
tabix_1.2.1-1_amd64.deb
Files:
 e456ef4307b203e71387b0032b5163ba 2083 science optional htslib_1.2.1-1.dsc
 81f5f1aa17a188a6b6250ca67d83384d 997625 science optional 
htslib_1.2.1.orig.tar.gz
 2e9d981f54993a6a0f00c86ac0eedc59 8852 science optional 
htslib_1.2.1-1.debian.tar.xz
 a9a8d0c307034f6cebfd4104d7f33750 525034 science optional 
htslib-test_1.2.1-1_all.deb
 8a7b1f36be6f67568760631736d62627 278086 libdevel optional 
libhts-dev_1.2.1-1_amd64.deb
 05b98aa0df99f72e23f4e4459ddd4846 228730 libs optional libhts1_1.2.1-1_amd64.deb
 94c59d5865b38c4a35a5d4b2db8f2341 223174 science optional 
tabix_1.2.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVYqnaAAoJEMW9bI8ildUCCuIQAIW1CWSBuZFUdza8TxUYAtKz
ljclzCPz7EyNTjtxJRhcS6T44oO9UoUUfvGVdxXFPzn3XVW5nWtkAZXJk8e9It0u
EfK8ZoN+kfCZZ/t+0JGx5YWDRFVbd+67v3aYQLKKj8xlYH5QkMDI+fS9nqTARZlG
QKP10OLy6yEqd8m9ygk2ga3sEKrbDRTx1JbN/M+Ao5k6dYJ6q5sxR9rHvIrJFAgH
A4zT5KbIlAHE9eqVLhHD2n8ol7esj7nj8Bz2eHHjebiNmjlDN4d84je0v/kvYRVf
XqPpSnuTPwR98z5ce+LOL7xuB0Rcdus6ID4meU4regpVl/oltHxHbahWPajkU4C7
CnmtL9ggaz/gHVtBDitzPNvpTllcAW6PNHGaVBUHODdw68qNCWvUK1IeIlrw2JIG
0eH4lEztRje4LXCd5i1C79/Djv+Lv0gTj7TxImGTQCzn8sux3cca9L0BDZzEjLfc
IqDFdpklU51bUFYW8pqR27OkX/aL1AU150+D4fSaNWdzM7xw13M+G5FmO8QoWVlZ
UxmFIuUp6iOkk6xQGS0h3KMRlu26KvYHt6RmmRjwVKEYWG7NVOlKqp7yhyZ1aL0e
lWcsUWqsSe37eodvaCoqkNQLOv2vMNw93skNwNp+0JwXFPS8UluN9wg/G24GmbIM
hby9IfgFBQsiF7rC1mGK
=YqgP
-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: https://lists.debian.org/e1ywkyp-00026f...@franck.debian.org



Accepted bowtie 1.1.1-2 (source amd64 all) into unstable

2015-02-02 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 03 Feb 2015 10:44:39 +0900
Source: bowtie
Binary: bowtie bowtie-examples
Architecture: source amd64 all
Version: 1.1.1-2
Distribution: unstable
Urgency: high
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 bowtie - Ultrafast memory-efficient short read aligner
 bowtie-examples - Examples for bowtie, the ultrafast memory-efficient short 
read al
Closes: 776881
Changes:
 bowtie (1.1.1-2) unstable; urgency=high
 .
   * Team upload.
   * Install missing commands.  Closes: #776881.
Checksums-Sha1:
 07a28a0af4b78bbdf722ad8cc22dfd44e30420cd 2195 bowtie_1.1.1-2.dsc
 0e26e94bbc417620c580061503abd54397176224 13064 bowtie_1.1.1-2.debian.tar.xz
 98a40fd8f05f9131be1e772558b0e3f08696fc46 1369362 bowtie_1.1.1-2_amd64.deb
 2b586fc20f2f2c8654b7fc48624e5083a82ce241 6307360 
bowtie-examples_1.1.1-2_all.deb
Checksums-Sha256:
 44f5af7bdedfc5330c004b37f3c014ecbefe5d290a593eb9b6e4be8d639897ed 2195 
bowtie_1.1.1-2.dsc
 bc6ee5fa83667e6e042b750b88eedfa770276713892610df06f5a6cf79f81ea3 13064 
bowtie_1.1.1-2.debian.tar.xz
 bd176deb2caea1b3a7088724e6c308cb6b7b13aa36951be97de98109514be253 1369362 
bowtie_1.1.1-2_amd64.deb
 a77dd074cecef4dce1b1cb8aa021bafdeb7c90211c315f759a83ed4a8ccd255d 6307360 
bowtie-examples_1.1.1-2_all.deb
Files:
 2210cbccf2207c970495ee228d0629ba 2195 science optional bowtie_1.1.1-2.dsc
 2a35d285f03c48d7619f40c198551720 13064 science optional 
bowtie_1.1.1-2.debian.tar.xz
 116b8244f07442931ce4aaff2f910f0c 1369362 science optional 
bowtie_1.1.1-2_amd64.deb
 1067dde15b877c86092bbee12bebef3c 6307360 science optional 
bowtie-examples_1.1.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJU0DKhAAoJEMW9bI8ildUCbQ0QAJ147vfy4ZzeMyVFKkUpO2Kr
1CFNpMzun1J3qRokRwcB+bkdrK7PptsBF5iBlWO5p5cWL5E8CUE2lpkKlyPMudzU
qUEQSJy0/f+v+HDDfsqVO38vp4OHa9byaOkOFrx02idsxhkxLJO2jUfaLGvlaT3k
1CtJOpWEcvE9FEIxXNWLcguBO/LKB4uRwijsIo15UT/r9XAl3lktWZxVcn3D/aOC
dbNz773QDzzmucFgf9NHzaownqEz5SmwnFUZWPnIMbTR2sCGLpRUu9xl8vlz/i1/
3Mt5O45xJbnGIi+FaXLJt6gjyap0eMHtFkG+arIynqkOg8KdkQWR3p0epx2QiZWz
ynnljuDiTtINirqy2phOW3MSF3bDl9AvJonNk4x9OnbugyY5j2xW6Pm540lshLlr
A3EUid+5bx+7HjWnRL8ghFTmtOj3JBeiQkzZ05NBU21PFJmBoVEIjX3qmhmkdZT+
sVOBvm5mGATdM8wAM4PUWHHbJhibuHGQD0lGc2OOdKvkLmfMA+63TFsyugYG1Nuf
QDtO/Sb4/GR+U8E85yMT/viylrGckB2RbR+1Wo3fOT0CzyD46WUfCG8/F2pXq631
QwAuG6zggjxTmQryTxciKvJ+907UGDU4GKcrApG16ApRbw+dNQQLZB/TXyh5Ktii
gnr5JgXiXaJjK8swvXvH
=vGNd
-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: https://lists.debian.org/e1yiu0y-ph...@franck.debian.org



Accepted mime-support 3.58 (source all) into unstable

2014-12-29 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 28 Dec 2014 14:45:59 +0900
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.58
Distribution: unstable
Urgency: high
Maintainer: Mime-Support Maintainers mime-supp...@plessy.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 mime-support - MIME files 'mime.types'  'mailcap', and support programs
Changes:
 mime-support (3.58) unstable; urgency=high
 .
   * CVE-2014-7209: run-mailcap shell command injection.
 Thanks to Timothy D. Morgan for the report.
 .
   d156797 Escape file name also when not passed through %s.  This
   avoids command injections using for instance semicolons.
   b585022 Resolve file name to an absolute path to avoid injection of
   command arguments with file names starting with dashes etc.
   Use File::Spec to avoid race conditions with temporary files.
   Thanks, Salvatore Bonaccorso for the patch.
Checksums-Sha1:
 bd04699c9c4df5fa08e0da5e74d92ff9977221ab 1604 mime-support_3.58.dsc
 5e8c8dc952aee1adc589dbc1a2526f3eb83fd293 34995 mime-support_3.58.tar.gz
 ad875319f0048ed742d3cb60f00d437a7db98790 35994 mime-support_3.58_all.deb
Checksums-Sha256:
 3279480870a7bd6c7e2a85f7f1e5deba50c3cb5edcbd6ce69a3cfc7fe0266284 1604 
mime-support_3.58.dsc
 3d9ca5115e93edb3ada3fb120cde88ac3d866903e18a41ca124428d77dd1721e 34995 
mime-support_3.58.tar.gz
 c05ebe8f38da4ff19d028c9f4680414149e5c7a746de13bc9db0a562796ed213 35994 
mime-support_3.58_all.deb
Files:
 c63a0f86e02b1c0e382f5d72e89138ab 1604 net standard mime-support_3.58.dsc
 461430b0c9356ff3d7b0f0b61f9edf53 34995 net standard mime-support_3.58.tar.gz
 81e70b10c1aeaa6e54eb436c842b5501 35994 net standard mime-support_3.58_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUn6c+AAoJEMW9bI8ildUCNKMP/iOjAbvO0F0yQf7pZXgYJkGC
GDw4jMNjuQjDMPRqDdPsJAcZYXT76n8uVY0uLymwUgzhQrscI5HpZSYPn/jC8OgN
80aETzimQgZGg+kwgcDCkt+XyRwPc+6JXR8dLvzdDWRLoccFzbbSo3+z13xwb+uf
Npp6TaKK875oNInRvY1lS3zqGghMY6JQJ2c0SzsUifN3zpkWszxJomeigkTu3gBh
hFjGIL1yst/DqYEMcPgKhMk+4yBG0tSZBmQRAuYV0xhcFyJ60f2ItYSj0JulePLD
oFDCwdUtwuSZnwzk3I6V+vlZqBJihxPOD7ypXcsFGBtjX4dsAuFiGL89jCGL50Ft
5bPt80ELu8QlBNQKDiVCoeVkVeI1tIQx23FTflhyw5FbxSYyXrmN88ynK6e7ot7e
WJypwQQTkwMbphcyrvVRzqGDyyLQok2dn2jpUNylDe3ImGdOGwRWkEh/0kII1hqI
qGu5q220TNanG05D6a9BuVCB/CWGuYvwrX8JuKKGAh1Y9MmVO447oMF+fp5eooFV
DLaN7y6LEyTU65RgFVjIMY/4JxCwO8BUzSXcYEwIw26jLSTgMxC4fU93WpOjBr14
XQUXwNyaxFEz2UPoHVg0VI8qe75ts71iVimKGYk/j6HZ/zlnItbq50DXcyYrpAHE
8xkr2FzrrNUYeimiMW5u
=iq5v
-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: https://lists.debian.org/e1y5xdp-0006jo...@franck.debian.org



Let's abandon debian-devel.

2014-11-10 Thread Charles Plessy
Hi all,

after unsubscribing from debian-vote, I had a bit of a thought about
debian-devel, which is hard to follow now, and suddenly I saw something very
clear.  This year's freeze seems of an excellent quality and promises to be
brief.  Is that thanks to debian-devel ?  Not much.  Excellent work is being
done on the Installer and is that thanks to debian-devel ?  Not much.  In 2010
when I was candidate to become DPL, I wrote that Debian was in growth crisis.
I think that it never has been so true.  Places like debian-devel, which can be
instrumental in smaller projects, are very toxic in larger ones.

From now on I will try to see if I can give to Debian the same quality of
contribution without being subscribed to debian-devel.  And I invite you to
think about it and *not* to discuss it on this list.

With most of the work done on topic mailing lists, trolls lose the lever effect
they have when feasting on debian-devel or debian-vote.  Let's make our project
stronger by reducing thr attack surface for troublemakers.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


-- 
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/20141110142535.gd13...@falafel.plessy.net



Is it harmless to associate more file extensions to application/octet-stream ?

2014-11-09 Thread Charles Plessy
Good evening everybody,

I have received the following demand to add associations between media types
and file extensions in /etc/mime.types.

- Forwarded message -

Date: Mon, 03 Nov 2014 01:13:34 -0500
To: mime-supp...@packages.debian.org
Subject: Please add these 5 MIME types to support ClickOnce apps

To help Microsoft Visual Studio ClickOnce applications deploy
smoothly, please add to the debian mime-support package these MIME
types as described here under Using Third-Party Web Servers
http://msdn.microsoft.com/en-us/library/ms228998.aspx

application/x-ms-application application
application/x-ms-manifestmanifest
application/octet-stream deploy
application/octet-stream msu
application/octet-stream msp

- End forwarded message -

While I would prefer to accept only the addition of information that has also
been submitted to the IANA, this one is backed by upstream documentation, so
I am about to update /etc/mime.types accordingly.

However, before doing so and for the avoidance of doubt, I just would like to
double-check that adding more file suffixes for application/octet-stream is not
going to cause problems.  Currently the only suffix is bin.  With search
engines I have not found evidence of a problem, but if you know one, please let
me know.

Have a nice Sunday,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20141109091033.ga13...@falafel.plessy.net



Re: so long and thanks for all the fish

2014-11-07 Thread Charles Plessy
Hi Joey,

among all the Debian developers you have been one of the most inspiring to me.
I hope that you will keep your blog syndicated on planet.debian.org !

Cheers,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20141107223551.gd31...@falafel.plessy.net



Re: dgit and git-dpm

2014-10-29 Thread Charles Plessy
Le Wed, Oct 29, 2014 at 04:09:03PM -0500, Jose-Luis Rivas a écrit :
 On 29/10/14, 07:44pm, Thorsten Glaser wrote:
  
  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.

Sorry to be very rude, but the social issue here is people like Thorsten
regulary asking a lot to others, in a way do not match the importance of their
own contributions to Debian.

Can we please us focus this list on what we do together, rather than on what
one does not want others to do ?

To those who want Debian to be different: move the project by contributing to
its core, inspire others to do so, or make your area of contribution one of the
major points for which Debian is recognised in the world.

Our large diversity of non-essential contributions (mine included) is one of
Debian's strength, but please remember that without the hard work of those that
you constantly demotivate on this list, you would have no Debian project to
contribute to.

Cheers,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20141030032519.gh5...@falafel.plessy.net



Accepted seaview 1:4.5.3.1-2 (source amd64) into unstable

2014-10-18 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 19 Oct 2014 08:15:00 +0900
Source: seaview
Binary: seaview
Architecture: source amd64
Version: 1:4.5.3.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 seaview- Multiplatform interface for sequence alignment and phylogeny
Closes: 765824
Changes:
 seaview (1:4.5.3.1-2) unstable; urgency=medium
 .
   * Remove unneeded build-dependance on libjpeg8-dev (Closes: #765824).
Checksums-Sha1:
 7f63aae46cf5c5651bb6e35658f1044fd70cf715 2071 seaview_4.5.3.1-2.dsc
 4fae1ac7676c1f07c48d168a545d30db610eec93 15764 seaview_4.5.3.1-2.debian.tar.xz
 305ad504a4e49554b8a81684909a3dbcfcbd3934 364740 seaview_4.5.3.1-2_amd64.deb
Checksums-Sha256:
 ae229c49d32204c3efe541a506f17b8cc47a39f59850d68810455aeebf0ad35e 2071 
seaview_4.5.3.1-2.dsc
 e5183f1caca039d90fb9a695ef6d66531192697541b4edd304f927fbdfc29e68 15764 
seaview_4.5.3.1-2.debian.tar.xz
 73de71f5c51ad98e67ab2c8bb854c036920fdcf1389347daced1d46dff11030f 364740 
seaview_4.5.3.1-2_amd64.deb
Files:
 9c7dd810adf17cfff572856f47b3b9d4 2071 science optional seaview_4.5.3.1-2.dsc
 c35eeecb83b9b0b24ebd7720eb9625a2 15764 science optional 
seaview_4.5.3.1-2.debian.tar.xz
 de740ad3984340e9ac8a51245b7d3347 364740 science optional 
seaview_4.5.3.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUQvVhAAoJEMW9bI8ildUCZPUP/2Fsnv/6UO2jK6Yb03Vx6lkM
knfnDvqMvu4fevEpzhIOsCMhaWdO5k6s303G5Y5VWr3QLEAJwVlaQ6MhGxjZgB0X
VGuHCBEbJt3KlrbrKsUZtI9/aSzeLAJr0E4VuvDkrU3+GaCK6dY9PFSUvff0YY2R
0lA1Zta3ico6oTQeV5Bb112JIQlYQc/5F1VELdu1Uu51zT5tWTBBmjZ2IPQynuyA
2OM0AgeewA4aa3eAm2VLbGvP5SVZDcT0Bm2F+G+LEl4NA5DiUf7hC7DRwlJxY3g+
ZeGtlGHpcOhVM/gku50ao6kKuwqwBXS/0m40WoXGXx+k0I/Vn8hIJ8zRbO6DOJuQ
S6Ap047Ad3nKR8ZvhncIx35WaFQtTQjt4Q0nTX9uedk0JLRN2JyeJXDAMGDxcRh2
Thhljfhbsc9ZKRQYqkF70BNK7CSq1PMhAEe765x9ni9lBiJ10jrWVpBU1avmNW/U
2S9OAwm55S0ceI2WosLvp+tknAUQE/WK4zr/lFvkiZxam8VtOjQcl2JyBDRbsOX0
b9t4+7wy6DF6jsDt6Bcs/b6YFz/AH3XzO+sDovj9wldNH8oDeBBvnIA5c6FwYr/u
3tOofX3zt2FeSAMgxmhtyymTAddb+MvkBryCTTaKe+pPseEiaL5oIQabE+qNyMg8
tK9x3Dw1mGswYoR7jPbD
=GMk9
-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: https://lists.debian.org/e1xfdvu-0004hl...@franck.debian.org



Re: piece of mind (Re: Moderated posts?)

2014-10-13 Thread Charles Plessy
Le Mon, Oct 13, 2014 at 02:21:45PM +0200, Thorsten Glaser a écrit :
 
 … but even then, am drowned by the masses.

No, you are drowning the masses under your emails, that is different.

-- 
Charles


-- 
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/20141013122644.gb3...@falafel.plessy.net



Accepted euca2ools 3.1.0-1 (source all) into unstable

2014-10-08 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 09 Oct 2014 08:20:20 +0900
Source: euca2ools
Binary: euca2ools
Architecture: source all
Version: 3.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Eucalyptus Maintainers 
pkg-eucalyptus-maintain...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 euca2ools  - tools for interacting with AWS API-compatible services
Closes: 734616 758910
Changes:
 euca2ools (3.1.0-1) unstable; urgency=medium
 .
   5d9d911 Merge tag 'v3.1.0' into debian/unstable
   Closes: #734616, #758910
   1cf5c42 Depends on python-requestbuilder = 0.2.3.
   bc2ef72 Conforms to Policy 3.9.6.
Checksums-Sha1:
 0bf36eab3b9c9511d7dd9212aa29586888285c92 2280 euca2ools_3.1.0-1.dsc
 5290172546707f3729da314535a7a9a429edda24 181631 euca2ools_3.1.0.orig.tar.gz
 5dbdb997102446bcaf573b7740460b9bb51786be 5364 euca2ools_3.1.0-1.debian.tar.xz
 943b4bdfcc867322bfbe940dd6c37d3109800903 270608 euca2ools_3.1.0-1_all.deb
Checksums-Sha256:
 4399bc6aef729e5894ca7fdaa5f711770dd8e0fc1b64a20e61cd89818f803afc 2280 
euca2ools_3.1.0-1.dsc
 52a7da2711c444ad38f44bd783dd8c1315e3b47ea05dea4d6cffee8bde0d8e0f 181631 
euca2ools_3.1.0.orig.tar.gz
 49c0f5e307a693b9066c89a44e84e9620f92487817e02e515d3dd83ee917dbab 5364 
euca2ools_3.1.0-1.debian.tar.xz
 0b4cbb4ff8860f29eb9b51d34eb61f2825f94fc3497a11cdbf6e08ef859ee435 270608 
euca2ools_3.1.0-1_all.deb
Files:
 820b14e237f844aa4d395e5acdead02b 2280 utils optional euca2ools_3.1.0-1.dsc
 962771fbee0c632434858c0b3f707bf7 181631 utils optional 
euca2ools_3.1.0.orig.tar.gz
 299e467c11c4cda832ea58171dfc5bc9 5364 utils optional 
euca2ools_3.1.0-1.debian.tar.xz
 583bcfc344347a3b9f614041aaef1770 270608 utils optional 
euca2ools_3.1.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUNcf5AAoJEMW9bI8ildUCK6IP/3OPnEIruD5fQrWuhq63ooPA
qg51xbE/f8DAGF7gep3zNfdxzyxrKgYvruceRr8sokqo8IUM78W9cJdgCD9btcIE
ZFq5dQOFRDUPpx/NAadeOxCqGvUZtKnUYvRBwsbTnJTCENse1q2FFhW1zvYhem/h
sjqHdYGf99zvxIAm0fdYqDnXHe7PPFCTmRcUWU2YQfcxBNJq/Hxk7YZ4yYer7lQo
M+bI943zuTdDUsmBQJ2METOOdyjSPAvvTU4XB53IqHavscI4wwSr1JONFduGpfF6
efchrJzLHC6bHGZfxijEc9DUvgpUGx52EbKC9QMLojjwrZP1pJNDQwXFu79Hk0vY
lKO/db7xwjVFKlIyrm18ivkFaj5Hxk7lI9o4mKA+blpIJBxLVBDem+IdZ34lGABO
fnZeaGnEJxdGfF38PHpwDn1IpscX3Z4Z39MUi/57zR+zaUqGkXdfhZd8cmAw/E93
bL28PQCwHAHBEw303qAhFYwW1zJirBZiXtqk37F6zFtg+1mNj89I5PQ7f4UHBVsE
gclGzuiQ3YXAGJfRaOxYGhtHiRJv1DI1XRo1zOizAhFindsV85sZsoZ04RWB/73P
y1B2in1Mlg9p0MKO//v1jdxUrU1ZlvNVsDLkEHJ94+MiLAUSrflEodMMauI7BXY2
WBbPHZTSOsLl4iflsRbz
=Zsk8
-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: https://lists.debian.org/e1xc0k1-00018b...@franck.debian.org



Accepted euca2ools 3.2.0~pre1-1 (source all) into experimental

2014-10-08 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 09 Oct 2014 08:31:52 +0900
Source: euca2ools
Binary: euca2ools
Architecture: source all
Version: 3.2.0~pre1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Eucalyptus Maintainers 
pkg-eucalyptus-maintain...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 euca2ools  - tools for interacting with AWS API-compatible services
Changes:
 euca2ools (3.2.0~pre1-1) experimental; urgency=medium
 .
   493e785 Merged upstream tag v3.2.0-pre1.
   3f4b6a5 Depends on python-requestbuilder = 0.2.3.
   349794b Conforms to Policy version 3.9.6.
   4fae14b Emulate source package 1.0 format with single-debian-patch option.
Checksums-Sha1:
 872be3f00d9e25f49ce0d1383c82947d32a3e622 2315 euca2ools_3.2.0~pre1-1.dsc
 d127270032d52c7a3df7af7193a262a6fcef67ec 218546 
euca2ools_3.2.0~pre1.orig.tar.gz
 bae179033d61e48cc39979edb210fde4650542b4 5388 
euca2ools_3.2.0~pre1-1.debian.tar.xz
 72dd905655fd2fba6dad51afab14703ae28f93f4 375778 euca2ools_3.2.0~pre1-1_all.deb
Checksums-Sha256:
 6b29acbf1f4c05e278dccf7a4c938c2043152875d0552c73ab7b49daf7847b65 2315 
euca2ools_3.2.0~pre1-1.dsc
 7ccd4a1861f7d9d99465fe32bc670081d5cc94b6bcdc86620e631da70d131276 218546 
euca2ools_3.2.0~pre1.orig.tar.gz
 ca92fab5ef829736527fb5b65cc0867432bca67fcc635f28970b3d6911a85ad4 5388 
euca2ools_3.2.0~pre1-1.debian.tar.xz
 5721a60c01231d9f96480a403db96d41184b5b7cfbc19db55a5b546300982091 375778 
euca2ools_3.2.0~pre1-1_all.deb
Files:
 f19eabaf01e40de51b8540219449a7ea 2315 utils optional euca2ools_3.2.0~pre1-1.dsc
 8ee1bb8f09e34d65d5a575943254337e 218546 utils optional 
euca2ools_3.2.0~pre1.orig.tar.gz
 7eda10ac627d8319bea29c14f107d369 5388 utils optional 
euca2ools_3.2.0~pre1-1.debian.tar.xz
 2af62fa0668efcd6aee64f06d8fe3393 375778 utils optional 
euca2ools_3.2.0~pre1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUNcq4AAoJEMW9bI8ildUCP48P/j4JqVc/Nd//o/DqP+Av0Ufy
RsPMS8SBq6sLL8nerAr42ZOu7tFih19lWAXmjUnaA9RZRCm3OVF9j+ooR4u6zwdu
xtMiuv2Lcss1Qws+4zFOTfSUz8wYcU32vpaHHdcpNkM8wFp3DSZmN0BGtoI1EiEo
c2ORH7d6BRphJvIvD/wDYok33tMEeSHus8mGGGn4JAZef9pjtmmnZzY8q8LoYRcM
htHatPBbhFSGWQHrAgIp/qHltkt4LAjK6w9Chm1dYUkN5sbpnwG88wk2JxVkRQpT
5JYWogAHKFujXdA2Ik/TatuPSQdeP+OVQN+B3Hcps+P6JMOXn2LdiJUTqd4GcGso
HnE6ITlT05RbZNqJlW5H0z4nlQoaPcK0Fg3ssnWlm/3bPBINwuIqA1DyFeNRRkFQ
9LA9mLdRWUjfkfFgs91wjTDTm3yHbFYEQ2GJbC17GhpksLAnKVPw1xzmvblFVHGZ
Xuwq1JsBcfPVjntdJfqAhudAr8Po554uLXLkPNXnEAaH/h9LhBBkKxFe41x1Sddt
CbWkY5kCXOhq6dBQtxTlPOimWpX3MJrbLkihgKQHqNf0bOKzsjhM0y+LGujPoXU0
yQTAFhxK3c0xHM4TMrwnoDkgILeUjzwFOh6TB4NJ8jCo0YaHIuDwpH/eua0QDlLj
B0Ff/6iZaNpHfcnJsqs+
=6FaS
-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: https://lists.debian.org/e1xc0yg-0002jq...@franck.debian.org



Re: Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Charles Plessy
Le Tue, Oct 07, 2014 at 06:07:19PM +0200, Thorsten Glaser a écrit :
 
 I deliberately used an extremely few insulting word for this
 but I don’t know how to else express it. And I do not believe
 in staying quiet if it can’t be politely expressed, because,
 let’s face it, the real world *is* full of shit, no matter
 where you look at.

So basically, you are using the passive-aggressive argument that you did your
best regarding avoiding insults, but it was unavoidable because the other
person really deserves insults.  And you do this about a decision taken in
2009, from which you had ample time to get over.

On this mailing list, you went as far as calling for murder, and regularly
insulting others.

I hope that next time you will get at the very least banned from posting on
this list for a few weeks.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


-- 
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/20141007221631.ga1...@falafel.plessy.net



Accepted odt2txt 0.4+git20140608-1 (source amd64) into unstable

2014-10-04 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 04 Oct 2014 17:21:42 +0900
Source: odt2txt
Binary: odt2txt
Architecture: source amd64
Version: 0.4+git20140608-1
Distribution: unstable
Urgency: medium
Maintainer: Nelson A. de Oliveira nao...@debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 odt2txt- simple converter from OpenDocument Text to plain text
Closes: 747343
Changes:
 odt2txt (0.4+git20140608-1) unstable; urgency=medium
 .
   * Team upload.
 .
   9848209 Merge upstream master branch (97b8999).
   c969e2d Upstream sources now hosted on GitHub.
   94bcdaa Use Debhelper 9.
   cbe9ff6 Machine-readable Debian copyright file.
   ef31154 Collaborative maintenance of the source package on Alioth.
   be4c71f Normalised debian/control with config-model-edit.
   eaf8c84 Corrected mailcap file.
   Thanks to Sven Joachim svenj...@gmx.de (Closes: #747343)
   b6eb0b4 Delete obsolete dpkg-source options file as bzip compression
   only saved 1 Kb.
   730dcd4 Conforms to Policy 3.9.6.
Checksums-Sha1:
 fc860571fe293944767c0452905693383d93f507 1932 odt2txt_0.4+git20140608-1.dsc
 e847fea9573271cc2a5a5489a992d2e291bb35a4 24471 
odt2txt_0.4+git20140608.orig.tar.gz
 38e29be3cfdb79ecfe19a908072bf7744e0f0c0f 3788 
odt2txt_0.4+git20140608-1.debian.tar.xz
 669783b08f2943042a0a82b842de50be18c02a58 13002 
odt2txt_0.4+git20140608-1_amd64.deb
Checksums-Sha256:
 d4619f35cee98df96bde07775032a000b5c867e1cc7325a10f3b72e7c9937b87 1932 
odt2txt_0.4+git20140608-1.dsc
 61b12fd449146d09d38749d6b58d3c2be4c96a03ddf3d160645df0820f40297e 24471 
odt2txt_0.4+git20140608.orig.tar.gz
 0b072021e3ca5a906293dd152cfefd0eaced43c8aa5ed78be613710416f74704 3788 
odt2txt_0.4+git20140608-1.debian.tar.xz
 a23f73dac442a848264da8491f6af5cece2d7739f635cf6340f7faadc56553b3 13002 
odt2txt_0.4+git20140608-1_amd64.deb
Files:
 ba73766468b496698bed87a717961074 13002 text optional 
odt2txt_0.4+git20140608-1_amd64.deb
 0d8b9768f52cd3f3d44dbcb0d0d2ccf9 1932 text optional 
odt2txt_0.4+git20140608-1.dsc
 9b25ae9add1661b494cee21d3e2ee275 24471 text optional 
odt2txt_0.4+git20140608.orig.tar.gz
 9e8921ff1e4c0e5a17c1c35173e791c8 3788 text optional 
odt2txt_0.4+git20140608-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUL9X5AAoJEMW9bI8ildUC1voP/inBSViHrrTMsppu9/EFigF+
ex6QS50/pc/4yPcBT/Szc48yvbMZ0yOxxqBukHT9ipAsMsobkuBm8B6E8cnWm77T
wN9euLHzKUAmUfp/lDrnXgjFCfV4DuZD6dtmK0nkeaj909THu+uxuf0ePBiWD9Uq
jZwhp7ORadxoGVxe+1z84eusOKmuNBgWm1tknNjZ4uOo2Fi62UXVQeyZTj07I0QC
coPeDuzZ0rhMCgFxHA3pq9YHIrFoCnWhX+toIXs8k577SHY+CcB7hVWS+rePW6pw
5BcS7iMu1JYiT44C7NyPgsxjYgDybDgyyzwV8HKYhg7D47xAY0fn/ECVgKMnVpbF
p+2Wy2D94I1dtnQZvrzyUTx7hz87dHzfWvmBPhHdd2PXC4kGyh8lrLuTEu5Bl4+n
AZBPxcExGdeJGBvFMCe31Q6bopJlBAVw7P0Jx9ztayudMywtVKJA4oYxiPBG6kEx
6SyP6F0H0pzDTx5TgV1MrthqALey7HzQQfARaP/Byn+4gfXL6u0buHuXwTmLiaNX
kFiHb7U+kweWz1A0qIvj1VKWBZK0KI6u/t5Bv/JAPzNVldArFGbb4fEaQgy0UGn7
JIWO2W6Djaj/Cr/QyOd67k8QOPH0Rh2awzz/ENrXheB9VEjjIbU+B/Ehzk2RDM/+
1FRD5/KPCwyYnuI/biP9
=/9MQ
-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: https://lists.debian.org/e1xannq-0004tt...@franck.debian.org



Accepted mime-support 3.57 (source all) into unstable

2014-10-04 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 04 Oct 2014 20:28:54 +0900
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.57
Distribution: unstable
Urgency: medium
Maintainer: Mime-Support Maintainers mime-supp...@plessy.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 mime-support - MIME files 'mime.types'  'mailcap', and support programs
Closes: 749771 756754 759746
Changes:
 mime-support (3.57) unstable; urgency=medium
 .
   * Media types added:
   ef09adf application/x-xz  Closes: #756754
 .
   * Changed associations of file suffixes with media types:
   94703d4 a/vnd.debian.binary-package: added ddeb,  closes: #759746
 .
   * Other:
   b412727 Document support for desktop entries.
   Thanks to Andreas Metzler ametz...@bebt.de, closes: #749771
   ce09266 Conforms to Policy 3.9.6.
Checksums-Sha1:
 ac9e6cda30450bb43caa1accb3b6e91e431758fc 1604 mime-support_3.57.dsc
 a1b00208174a16de6f0ce3ed8d1f3f308bbccfc9 34728 mime-support_3.57.tar.gz
 64beaf31ecea0ed20a50056ba643437641cb6989 35762 mime-support_3.57_all.deb
Checksums-Sha256:
 2bfbba1326f95ddb43103c80a8e9e55019d389cbc48095c9a03c8fac31c62684 1604 
mime-support_3.57.dsc
 484f1a7f3519215a8ee6acd2b4a541d1fe38152dba5d3d34122bd3ab1b3fdaac 34728 
mime-support_3.57.tar.gz
 01c1b1fcf4cab099bcefe55be9f5ec90fd0db68113017e69f84651092dffc03f 35762 
mime-support_3.57_all.deb
Files:
 1f7fde637f2224a8c49c7d3ca5d9cc79 35762 net standard mime-support_3.57_all.deb
 5c3102949141238ee1d570718c64407e 1604 net standard mime-support_3.57.dsc
 faeec3564acb160bd57048226f1060e5 34728 net standard mime-support_3.57.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUL9txAAoJEMW9bI8ildUCMOcQAI2aNYRso+drTnvc6rQ24xCP
2ELJUkC1WIFFkTR8yv0rRut2vAeFHnfbW3nYr/u7LFh5+Tzy5lhir1sdLM9ntvub
rlTKFlEXNBC1Q17QW61O2XUX4i23i0V7l794yToqi1AguOKRP3+d+M+eOfZ4BkaU
jVEPGg1dzUFQgR0TIsMTw+PGB4nfYjF0HkmT/4nWTZ6QHeqj5ZeOl1nTv9CcHFcK
B1auwQPXHhCQZHJ6tOuesrHbLylIU+zJ695f+kfaOCc5nq+0GgqHFWhb8ifYHxsb
UW3FcWlwRfzBRV7rL7APNATNZGA064REc8XtXr0rcRGRXqHoYYcBMNePSrg635ST
5Vd+Jx/dpE4BKQfHbligxQ8XFOlSTnNzeTd9IY4zJVDghpS4AHKS1AVzpzhfWPJN
CqFp1hQdaCD8lK/MnlonrEIAvE+fyOP3TOjTnXd0q7iPF5lvgSYmUr4gPF1L5uHX
V+oX299au9Xw+w0SSJjkptGsWkggLHhclEJjI4lue9KNEMX8xK8ucgJUcn5Qe4dp
cwUuiagGS87SUsiWTTq/Ljb6VIGWxL4/0WLZIhSydJtHk/vXi4UbnhRFgNoA1ay5
P8UCKCxxlPIU275EeWht4Jlb3Qoaex9BoFgbpGifbVgO+suMMvQW96miDbND8szv
UcaP2eSodcVHqYrcG5Qs
=uyUz
-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: https://lists.debian.org/e1xanqb-0005ld...@franck.debian.org



Accepted mafft 7.187-1 (source amd64) into unstable

2014-10-04 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 05 Oct 2014 09:00:33 +0900
Source: mafft
Binary: mafft
Architecture: source amd64
Version: 7.187-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 mafft  - Multiple alignment program for amino acid or nucleotide sequences
Changes:
 mafft (7.187-1) unstable; urgency=medium
 .
   * New upstream release.
   * Conforms to Policy 3.9.6.
Checksums-Sha1:
 50c09da4c50dbe50ef0bc35e9b8c253c96a5538b 1974 mafft_7.187-1.dsc
 bb38adf7f4c7eef58d16240abc32c40176164ba3 389604 mafft_7.187.orig.tar.gz
 2ab4018d6c0ded0a16f48ebb2570f2230a2121c1 5920 mafft_7.187-1.debian.tar.xz
 3aa36a02ae14ac285dd6de08faf222dba10ca265 764298 mafft_7.187-1_amd64.deb
Checksums-Sha256:
 dbfc6cca3c951a20f599a57bde3315f3045e7d6685fc610244dfe8ae02342aed 1974 
mafft_7.187-1.dsc
 95497ab49c9273ce1ede3146573a3bcd6cd805d7090323315fadb386e18232f5 389604 
mafft_7.187.orig.tar.gz
 8868438397e0c5d11acc304c413fe379b8edaf3418aa8f4b1c1ca12a8a667919 5920 
mafft_7.187-1.debian.tar.xz
 a88735aa81ab8a963c2c8ae885ca99ab4b8a01abf3da50ad96a03fd9fcb7bb80 764298 
mafft_7.187-1_amd64.deb
Files:
 6a07d4cc026fc167716bdb977396b42e 764298 science optional 
mafft_7.187-1_amd64.deb
 082f189264bf62f6ed35e41e92a35828 1974 science optional mafft_7.187-1.dsc
 c33cd7e68d4f80211ea2e99a328269fa 389604 science optional 
mafft_7.187.orig.tar.gz
 5fb1dae9a21e4f2634f9637aa1527adc 5920 science optional 
mafft_7.187-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUMI8mAAoJEMW9bI8ildUCdlgQAKRqrsdjm1cXrVaSwT5D2+Y4
/A105Ur4FaXWmNZYODS4tbijtBJvqA+Ql/PmAPTzSanmEazS4zRMyQN6GkjUPfAC
JUTzf6nmXS9ztBkvw7MLzPdfdWNCoSfjz1kbNutsDsXK9bhLlVtFdL1iY33iOPHN
hT6GFG4/Hb4L7FUGJNYUUuJqAVKfAplVyn7ZvJRmlF/E5BUl/gQnXLLD0ZTOz/Jn
5syhuTqyMX9iYSnT3ANPWZZ7N3DX/XGTl6X2BmPcrQq8wgoYZl33wITI4Bztdtqj
dIQXZBZ/nwNqPIk5aAz4l7Y87B4b7FFUoi+BBSLPXhRYS3MvC1LUTsoyJAJi0t+7
D5DJlhwkNJA5dK0V4D5kB6rQ5P1YZ1Qh6Wu6oKmVYMD7BScJpvVqrVIP7I/dj1NB
xPkJpREsNYaSAQIDBGtglYtE6h/kyrqxlRwCKAl5XRmUfGN0u9AoUQFATRC0F0em
lmlOnAZ0OPyezrp3+Aio8du912lOSWVqAnhgKc2wVwueUDdVszyenzGivhRuhISU
rEKh3z/asp5Bo1iU/vjRIv3jwhAfp1YYicctEC6iD+pS7kdIEx0snVPUiLjhPPph
CPTxKgVmQVL30sCef63x27HysNfFP+V427a7M4jyi3+cluyC9+nAeW5jtESTb7UT
UyZ/8VMX2Bo/PNGJPBpF
=iXi3
-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: https://lists.debian.org/e1xazlv-qu...@franck.debian.org



Re: versions / suffixes in experimental

2014-09-25 Thread Charles Plessy
Le Thu, Sep 25, 2014 at 11:15:46AM +0200, Daniel Pocock a écrit :
 On 25/09/14 10:00, Neil Williams wrote:
  On Thu, 25 Sep 2014 09:42:42 +0200
  Jonas Smedegaard d...@jones.dk wrote:
 
  Quoting Daniel Pocock (2014-09-25 09:16:46)
  I have a package, version 2.2.5-5 in unstable and testing
 
  I uploaded 2.2.5-6 and 2.2.5-7 to experimental.  Should I have
  given them versions like 2.2.5-6~exp1 or something and then upload
  a proper 2.2.5-6 to unstable when I am happy with it?  Or should my
  next upload to unstable by 2.2.5-8?  Or do I just ignore the
  version numbers I uploaded to experimental and use 2.2.5-6 as the
  next version number for an unstable upload, even if it doesn't
  contain the same things as 2.2.5-6 in experimental?
  Both approaches makes sense to me - depending on your reason for
  using experimental in the first place - and on your mood.
  Any approach which tries to use the same version in multiple suites at
  the same time does not make sense to the archive. The mood of the
  maintainer is rightly ignored by dak.
 
 
 Personally, I think the suffix would be useful for cases where the
 upload to experimental and unstable are both otherwise identical
 
 If I upload 2.2.5-8 to unstable, should it include the changelog entries
 for experimental too or that doesn't matter either way?

Hi Daniel,

Recently, I have have used Experimental as dead-end branches, for instance:

 - foo_1.2-3 uploaded to Unstable.

 - foo_1.2-4~experimental1 uploaded to Experimental

 - foo_1.2-4 uploaded to Unstable with the changelog entry from
   version 1.2-4~experimental1 merged in the entry for version 1.2-4.

I think that this is nicer than having a changelog entry for Unstable pointing
at the changelog entry from the upload to Experimental: think for instance to
the links to the change files in the package tracker.

Have a nice day,

-- 
Charles


-- 
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/20140925092716.ga11...@falafel.plessy.net



Accepted htslib 1.1-1 (source amd64 all) into unstable

2014-09-24 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 24 Sep 2014 21:24:11 +0900
Source: htslib
Binary: libhts1 libhts-dev htslib-test tabix
Architecture: source amd64 all
Version: 1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 htslib-test - Test data for HTSlib
 libhts-dev - Development files for the HTSlib
 libhts1- C library for high-throughput sequencing data formats
 tabix  - generic indexer for TAB-delimited genome position files
Changes:
 htslib (1.1-1) unstable; urgency=medium
 .
   1357fbd Merge tag '1.1' into debian/unstable
   87549cd Updated symbols file.  One symbol is missing.
   873ea9b Removed orphan paragraph in machine-readable copyright file.
   49de2b9 Allow parallel build.
   7fe3bb5 Normalise control file (VCS-Browser, Pre-Depends).
   0e5e9e6 Conforms to Policy 3.9.6.
Checksums-Sha1:
 4db5ccee1267f0a572e0dc9d5868ec70f26b2a99 2069 htslib_1.1-1.dsc
 206d1947eea6ad0b519e8c271702cdc281c976a7 957217 htslib_1.1.orig.tar.gz
 883afbd9282c3e6dc02e7feed024229ba58fe565 8228 htslib_1.1-1.debian.tar.xz
 6e2b09a03a74c3abf8def399a75e9c6214181920 204556 libhts1_1.1-1_amd64.deb
 e7430b65ca6a44e3157276fcd3448951da418650 249544 libhts-dev_1.1-1_amd64.deb
 5d17f0cc3291f02de7995fd8d866a407ec852ef8 516462 htslib-test_1.1-1_all.deb
 cb0ebcaef0899425a987aa0211e89ba92d8aa185 189910 tabix_1.1-1_amd64.deb
Checksums-Sha256:
 7aebe9fc35e390ce1d4123da00bf1453b55315302e807483f31b0dd3dca7e772 2069 
htslib_1.1-1.dsc
 eb0a7918862336518afcaf62e3d7da8b7f87053fd40d88f2d1ab689f7f25923f 957217 
htslib_1.1.orig.tar.gz
 933344fb9e357794bcbe162ceebc89d5c72870805e985ad06344ba703718b7fd 8228 
htslib_1.1-1.debian.tar.xz
 04055c2b92f14d44338f4911875f9f82c87888564576937f9d23102d61e2f03a 204556 
libhts1_1.1-1_amd64.deb
 0b47cd8f6feff42f55432cc6079117e55de126e6cebab77e4c9741ac47d1f21d 249544 
libhts-dev_1.1-1_amd64.deb
 de6f9e1724e2d951675b5d10d2e727e65fa310ae3efc0952b82d418828eed171 516462 
htslib-test_1.1-1_all.deb
 f8be942aea134a3a28c68eec11ff505a0116160d59680401f792864dab8c696d 189910 
tabix_1.1-1_amd64.deb
Files:
 ba400c82cd9932fc6feb77f4f3e0072d 204556 libs optional libhts1_1.1-1_amd64.deb
 75e0ce0dbd48da4f8ca0609d5adaefec 249544 libdevel optional 
libhts-dev_1.1-1_amd64.deb
 1bd2059de9bb0186449165ec1f409e42 516462 science optional 
htslib-test_1.1-1_all.deb
 0a7109428dd7b989d82e80f6c6e72bdb 189910 science optional tabix_1.1-1_amd64.deb
 8d973141b5b5405cf52a633fd902d299 2069 science optional htslib_1.1-1.dsc
 d0be108a121ace289fc960b854625f84 957217 science optional htslib_1.1.orig.tar.gz
 2f74134e218c9e7c00c8ba7a6229bbea 8228 science optional 
htslib_1.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUIrofAAoJEMW9bI8ildUCzXkP/1fB/0BmVzgzXuKFpvuSlN27
tzOTFVA2xFzWA441EOTYtHzy2Yu2NmCtdULCOG3lyL8enkjEgpUl22LpxODJtuga
e3osPBDs8Wnas4r67FjYRyRESY6hEhQBnugj6AXRpKP+Ra/Njjuxj43gfUfCsWP/
loQg4j+NkCpozwTF4xRG8rNfJokdJ4nCwRDWwNgfFG5zRXsy3PWaM4UQmh23RnCn
2kMkkPgcGtXy+k/PRyfNTYYSz/HUWKGEf4dhji4ZZgTa40Ja+OCjuAhEXOKfKwlz
hTXyKQzVwWVN8yn+9wRCafAd+PlTBcbtm1LypyDsTgw3ELCRES5MPIgCKqC3DBbH
3EfMzo/8esTmeHeiYvbba9shXjvM+eWi8pyODDdZF8Wa+9V4YgpV8sJCDruoZzA7
b3gDf915Ht9edfsMLz9YEiL8AjoJMsXjgc/vEHNOHy14jgnXHfmc9q5eUrz1qNL4
Muduz90QbKy9rbZCMM614lL1MaDHIrdrFFKIJoF93eEYx3u6Rk5Eu1Cos6DmB+8O
/dO7qUMY/EA2HlSwCP5uFj+iicZ3A3e/jN/374DyDZu/RRM7woNjJ7oiHR8l0y1U
vsXCK/HC9OUJ/0mTqNqI/oAWgsBWc8oEK/yvvtXQh3PivdgdGf9jBJ4CXMpnzDz/
L4Bt7CqVnORmf6o5fFHH
=ugG8
-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: https://lists.debian.org/e1xwm0d-0002uj...@franck.debian.org



Accepted samtools 1.1-1 (source amd64 all) into unstable

2014-09-24 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 25 Sep 2014 09:04:20 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source amd64 all
Version: 1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package.
Changes:
 samtools (1.1-1) unstable; urgency=medium
 .
   c448d48 Merge tag '1.1' into debian/unstable
   d12ab1e Merge branch 'develop' into debian/unstable to solve issue
   with regression tests needing a pseudo-terminal.
   See https://github.com/samtools/samtools/issues/300
   c87f8ce Add autopkg tests.
   7c50b7b Removed python-wrong-path-for-interpreter.patch
   (issue solved upstream).
Checksums-Sha1:
 388015e08bb5a845321b7658cc55cef2e5613d9e 2104 samtools_1.1-1.dsc
 ca446ec24eabd2f71605dde55a787f182cb50f13 4320951 samtools_1.1.orig.tar.gz
 0e4de8be00fb4dd375048b1b1dc05e2f120e2ead 10164 samtools_1.1-1.debian.tar.xz
 3424183e6577c856a09f4f838c1a398c8e5744ba 378168 samtools_1.1-1_amd64.deb
 f2542cc1d07aef31d216d43630c87c9edf38cabd 2644466 samtools-test_1.1-1_all.deb
Checksums-Sha256:
 ce8fe3ddb71817ba6d655ed6ac7d667c2d0b3a2664f78ae5fd0382da3fd307b1 2104 
samtools_1.1-1.dsc
 cee231e33b7290be8e07dea43a99b885d9df79d957625ac84879b47ff91cda69 4320951 
samtools_1.1.orig.tar.gz
 50e5d2299c2d99ce53647fc0cb08eee53bc31d08bfa7d7cc981e6fae28ab231b 10164 
samtools_1.1-1.debian.tar.xz
 55ca7fb40430ba8c17967568f5c48ee19379bdbae3cb218456dae7fed5ea107d 378168 
samtools_1.1-1_amd64.deb
 5fb20f9d61452c8863e6ff42d2ea0d9ec72211fb9dd43cca3b55eeeb49985196 2644466 
samtools-test_1.1-1_all.deb
Files:
 1d7d68a126fe90d8366eb3fed809230c 378168 science optional 
samtools_1.1-1_amd64.deb
 9ffe69f7310c265243d2fd553c322435 2644466 science optional 
samtools-test_1.1-1_all.deb
 148939471e917dfe65acde2ec02d10e0 2104 science optional samtools_1.1-1.dsc
 5fda5c175d04bff39c56078aea7cd3b1 4320951 science optional 
samtools_1.1.orig.tar.gz
 40b3a1f31e22323c8d247e1bff1a9c52 10164 science optional 
samtools_1.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUI109AAoJEMW9bI8ildUC+1AQAIb5bYiIgjKeARkusgIBHFMc
qMrznjhyTy94CGB92fEXOtFS1X0oPq+GVWceTjLNVkxdMIq31yIDXXG39CZYMIX8
/V54kk7ELn3FLqpqGcyoaLPqxEdfoCvarcSUVT6A/Jxa8iUGiO2qXYAzXgP/gexx
u74CTPC3CU2xUwYXw+hmjh3kj4L71JuQzP6eg0d3MuDZisf5/6fD7Mu8quYhfuj+
d25wzHP8EcAu6kxJLh7r1nxVQIERttib6r6UzTT9mqGZhVh+pvRPeYs/Hvg08GdZ
aQ9JV9bBVWaKdAFEIGlKbxx+B+u2RqwEHKMIDa81xfbe72/xSoNLM4Z/XCOIqu2u
9o4mAWE9L8lRYCJN7DvnjrC7DPrgogbCEvGKtTclYX5eVrFSdQBv2/OQvvxgXryU
jAxNSGytJiHm4tDChJ0Y3gyn4pBc78eMogI6DB1l4oU00OK7S3Hy3ogPGw7oXBrJ
26W8CLlSBNbVlXULkgD3jHM2rICxESYvhVU/mHTtVGWCHBFcLNp4M55IU4Mwfb/c
CZmcdZlvseSLs6BavPsA193hRf56BlHNoJqpRs7IOLZEEHQoepNoUTFgqn2eNtjo
W0+CteH77s5XNOVMDFt7pKyc3WEhOit1CLpnyErt/Kgx7hnsyXTnTo7+IFlHDRGX
hfcrc4G7i4H/Z6cmPSQ7
=LXcO
-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: https://lists.debian.org/e1xwwlf-0007zt...@franck.debian.org



Re: Trimming priority:standard

2014-09-23 Thread Charles Plessy
Le Tue, Sep 23, 2014 at 07:22:11PM +0200, Marco d'Itri a écrit :
 On Sep 23, Ralf Jung p...@ralfj.de wrote:
 
  I've seen multiple machines, including older machines of myself, to be
  under full disk load for at least several minutes due to (some form of)
  locate - every time the cronjob runs. The slowdown was noticeable,
 This is hard to believe, since the cron job uses ionice -c3.

Hi Marco and everybody,

I had a similar experience with ‘tracker’, GNOME's equivalent of locate, which
also runs under ionice.  Unfortunately I can not recall if during the years I
used the systems where the slowdown was noticeable I had changed something
relevant in the configuration of the hard drive (like running a hdparm command)
or if it was pristine.  The common thing between these machines was a loud and
slow hard drive: I never had this problem with a SSD (but again, on SSD I run
more recently installed systems where I am sure that I never used hdparm).

Anyway, the point I want to make is that we should trust Ralf when he reports
that full disk load slows his machine despite cron jobs using ionice, although
this is probably a corner case.

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
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/20140923223434.ga9...@falafel.plessy.net



Accepted bedtools 2.21.0-1 (source amd64 all) into unstable

2014-09-23 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Sep 2014 18:48:17 +0900
Source: bedtools
Binary: bedtools bedtools-test
Architecture: source amd64 all
Version: 2.21.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 bedtools   - suite of utilities for comparing genomic features
 bedtools-test - test data for the bedtools package
Changes:
 bedtools (2.21.0-1) unstable; urgency=medium
 .
   856a5fd Merge tag 'v2.21.0' into debian/unstable
   a4f6ab7 Merge corrections on version number.
Checksums-Sha1:
 1b056ad42bd38fd21a453dd0cdd0576cb166cec7 2072 bedtools_2.21.0-1.dsc
 6246ef763749ce3cafa808e665390c592b8b9698 4304048 bedtools_2.21.0.orig.tar.gz
 b6ce757989707960f02cf0b47277651fbc9fd217 7596 bedtools_2.21.0-1.debian.tar.xz
 1bfb781385287a9e77fd7d3ec10eb7cb27053525 607592 bedtools_2.21.0-1_amd64.deb
 0d3def593fa93057abae1205f8377cf1562ab805 2466320 bedtools-test_2.21.0-1_all.deb
Checksums-Sha256:
 648bc25f7cc7e749c9b91f8bfaa8be36bb9476c925cd61d8727c838139ad0e5c 2072 
bedtools_2.21.0-1.dsc
 51380b718cc5f2023d0738374a86a7d42fcca2385cf051a6f0c95d9c2624d78d 4304048 
bedtools_2.21.0.orig.tar.gz
 6af1833e9b005b0c54d0d2dbcf6873958387b708fe9d00ae999c6c26eed6e277 7596 
bedtools_2.21.0-1.debian.tar.xz
 309feddb20f65ddd44c0b773a188ff9ae803e923c738bb4909af4710bef2a2f2 607592 
bedtools_2.21.0-1_amd64.deb
 c3ae3eaf4090f13778b9e5db3b1d555764d2c11300e8e87d163fd48682fd7535 2466320 
bedtools-test_2.21.0-1_all.deb
Files:
 de019e210de572cdaf240318baa2c489 607592 science optional 
bedtools_2.21.0-1_amd64.deb
 e4084c221130ed77da3ac53eb6eef1b7 2466320 science optional 
bedtools-test_2.21.0-1_all.deb
 f3173f22250cf8143281fae655632d87 2072 science optional bedtools_2.21.0-1.dsc
 bedbfb4c572aefdf67f5e503a2eb319f 4304048 science optional 
bedtools_2.21.0.orig.tar.gz
 efc9c4dc94289eda24f25b488c58ca27 7596 science optional 
bedtools_2.21.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUIUlcAAoJEMW9bI8ildUC8CcP/jbT3etZQTeb6lrFHpF2tBWU
8djKIbhMpFMVHlGldg2NBMACJ2yy4dUC75s5Co2HrmQITJ0mK36cI8l/K58mjGyK
/mZByBctHKBvOvRxrZO4j0Z42Jf/rgqB/28huNijbFr3Zjp63d4GBCGvLCtqYRG/
nhjZ+L45vFHOYeIJbopFlrvWAQ8CILq0A9G/DkpQGe4SOipr0aPB0k5x5VgymAbA
xs68w4w7gcYLpGHh1svqkZEA5X6PIrqDgxhjDDx6e3JUH/81Jqf8x5zpk2qLkqh3
/S86AlO+LeVg+DeqCjTbTnAgLUaDZqbecnW+Qa37w07A5O7pUNbG+X9QyytN3gkH
RwgFvDlz069ePbjNEkR9JI9/jARixbbI6byEjsYzsJ19vpGDoYYNXcHduVldK1Jy
iXd3DlzGriZIE8fRxYTJ2x10WCFBJPkrtueBCEFlFJQR/ImjLXKv42vS12C/Wfi/
WPNACRhmRs5Lw4WM6ig1NVYw2+Sw0E8lUYD3GFKnSgIZ2FXCh2jMrUSorWHPDNQm
zSBomHdAUq9lv/fZMLB0Mxt/nbJ17nBwkIL5YygvMG1BXWbnHRZxjEomCayhGNCS
+TLN2OVyvSK2taRkfabdsMBfAR1bwFST0B0LytjyAVNyZqf7D2GoRSB6iokpSp2K
reg4gG5M0zvTZQQGGQ3T
=F8Ln
-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: https://lists.debian.org/e1xwnqs-0007tm...@franck.debian.org



Accepted paraclu 9-1 (source amd64) into unstable, unstable

2014-09-23 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Sep 2014 19:32:34 +0900
Source: paraclu
Binary: paraclu
Architecture: source amd64
Version: 9-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 paraclu- Parametric clustering of genomic and transcriptomic features
Closes: 762412
Changes:
 paraclu (9-1) unstable; urgency=low
 .
   * First upload to the Debian archive, closes: #762412.
Checksums-Sha1:
 6ceb05e690f8406037b686b2ca42c30b41f9535b 1861 paraclu_9-1.dsc
 ca5642ce74b72ce7522e5a346f9aae0e40390ab2 15432 paraclu_9.orig.tar.bz2
 4977bdc2d7c35312648dad700e648035aa6ff80c 2124 paraclu_9-1.debian.tar.xz
 bbd32f472467ccb6d19be474d3121d849cb2d0f1 9976 paraclu_9-1_amd64.deb
Checksums-Sha256:
 549f4ef38257b8c5c239897692abead887ccae77658b727c004d53603f1fa98e 1861 
paraclu_9-1.dsc
 eae9f35da9be499e45dcfe038d242fb2dfb487812bf54fdaf5586ed91480eecf 15432 
paraclu_9.orig.tar.bz2
 757b3a4434c63b37c3217b91d1603dbc760f243c2786f9830ce3b12f95bdd6c7 2124 
paraclu_9-1.debian.tar.xz
 822585ea326760b103c43f2b5bf0bbb76ddf7eed7dd996e2363efcbfea84728b 9976 
paraclu_9-1_amd64.deb
Files:
 2f8db5d4e0fabaa2e3a5ab1f07ad13db 9976 science optional paraclu_9-1_amd64.deb
 3ef8e588c84ab52290d7d0796bd6cccd 1861 science optional paraclu_9-1.dsc
 930140d0f5727a11d31cc01a841e21ea 15432 science optional paraclu_9.orig.tar.bz2
 bbe9c779f4bd7bd7ec1b152a9e508f6d 2124 science optional 
paraclu_9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUIUy6AAoJEMW9bI8ildUCu1kQALi8+rGwZ/TRrJRXd0lF1hGO
7hG6F81E6mp6TIM2/wbDudggVWfEMQ/jI8+8uDMNHodjhFgpaqOQMLzYihUnxKnu
K1WZSJiCsIiqQ3hBcubCfNbvU4fcN0Ciq8OfsH6awcPoj3fUHTj/SlsfvGpc0OUG
t10g7Gknd9JFzQlZO66BXMXAXTCtB2idvaJ6WNFTUR6I7uyl9W3/E5P0TpDvI6Vs
gRSl+UlUY3aKd3mQ0l4TBMSyv6fi3WKuw+m3SsMAc51vkUi9BuuSbbp53WL4pfSE
LTEhpYsw5Yc0pXPswe/SZ6BXAnYSKPLNAfedROLhFHRbb5Gy0mp4bq2v+2TW35bF
VMdw2OyJvHrepp4smsVatXDInKn0DU/7FlPCrrXeghisbfJw9/bXjk/YUeE9PbCz
OyG97RlFnPmpP5e1SYmqnx6puX4t1aca+ldIxKc0boDf6pZGcSf1ofxACDD76GoU
PUHm+O0OG8mmLTlYiPQ6wH3dAbjvFabuCxpdVTqRC8+wMwpgCyuDCjVPweEPrLNM
/0J3iyXx+IVXEcpUgbnLIHrNKCNFffmdkeAb1lQ0KWoYcMlcLe2lVNEkdYiQHWaY
sZ/w7XjEqLgIToiaxiLwIUD43lXPCQ0Un5DawYn304Uzrbjq/pZilbOLyjRd4Sx2
t9RGQCC71eAHW3YMu5XN
=503d
-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: https://lists.debian.org/e1xwphq-qg...@franck.debian.org



Accepted wise 2.4.1-17 (source amd64 all) into unstable

2014-09-23 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Sep 2014 20:14:47 +0900
Source: wise
Binary: wise wise-doc wise-data
Architecture: source amd64 all
Version: 2.4.1-17
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 wise   - comparison of biopolymers, like DNA and protein sequences
 wise-data  - data files for the wise package
 wise-doc   - documentation for the wise package
Changes:
 wise (2.4.1-17) unstable; urgency=medium
 .
   * debian/tests/control: explicitly depend on wise.  This avoids that
 ‘sadt’ skips the test when wise-doc is not installed.
   * debian/tests/run-unit-test: skip the first line of testman.pl, that
 misses a proper shebang and trigger a failure.
   * debian/control: shorten synopsis to less than 72 characters.
   * Conforms with Policy 3.9.6.
Checksums-Sha1:
 751477ad3bc60e19b80b2d0c7831ba271cda37ec 2215 wise_2.4.1-17.dsc
 ddd8a23ebc683637431736710e3b9249abe676ab 21956 wise_2.4.1-17.debian.tar.xz
 049d1a76f7cfb5a0e550add825eb2db337b25ba1 961036 wise_2.4.1-17_amd64.deb
 6b7d69c552c56ee58ed18706dc52d6472d7da342 817550 wise-doc_2.4.1-17_all.deb
 8549925196fba558ce2ac57c3878d739bd079b52 108188 wise-data_2.4.1-17_all.deb
Checksums-Sha256:
 a498ff816c3fd5070d3059e7bf375d0bfed1ec818df9a3b7f7e0e5310ba0539d 2215 
wise_2.4.1-17.dsc
 453105445db50772c7b28b5767225b848a7950ef1db3075882ab61253b78cccb 21956 
wise_2.4.1-17.debian.tar.xz
 d50facea1b78ab003c20812f0b111cfd020884e2298bd74995c192442a8e9361 961036 
wise_2.4.1-17_amd64.deb
 b898072d43a5368c0356400c818661e96d10d32b3b073562a29472c818da4cd5 817550 
wise-doc_2.4.1-17_all.deb
 8173f391d49c4897dde4a4643afa799e8c404b19c7c82435b58fbde6127799f0 108188 
wise-data_2.4.1-17_all.deb
Files:
 770ed33f5c52e4a442597986b736b4d0 961036 science optional 
wise_2.4.1-17_amd64.deb
 8bbc116492d089945c89dbdf255f3544 817550 doc optional wise-doc_2.4.1-17_all.deb
 d524f1c19003881fdc4dbd486b31a7d9 108188 doc optional wise-data_2.4.1-17_all.deb
 c8ef02d79159408eb5dc10af772d0443 2215 science optional wise_2.4.1-17.dsc
 ecf7cb09b38f8461912e00669258d249 21956 science optional 
wise_2.4.1-17.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUIWzrAAoJEMW9bI8ildUCUwEQALOwZYhTR0uv7HYYB8EEK1Se
KqkCokom4iRI2mH2epHCoGeZi51aIoATqtyW7A8+zOjM1z4y6znTHR6lqqZkjVA0
ABeikXlRUtLj7NZnCSnApIdXe6q+6Y/MYd17hn5eTACwuJSVbUVsC8vm/SZTZqg1
f5DQk21EcmFGw7I0o8F4aJgIDLMSTuc0Aaq62ZAgisCLi/uhrSL/n145PiJrSLe7
y10dq8EK0JEdV6zkbmnblHytIxlKFwjdgfJLQbGe/PCJRgsodFibtGVBjvbvsDUh
152UNSqrctDDGTqxoYI84QErtWVe6Is0taxxdb2abcBdHtXS2tkm8075hamfBWxf
Z/Xbizm63gCHTKFeBKDngiQewLWNinZMn05r5nTDkPyw7y6UEHy4ccNCxXxM8KhX
csXW2GaHQmbMg8iAVqJX9w7W2Wvk/P1fnFe4u0f9hnZ6HawIT413Ua0FpZbRZxF4
UKwPR0mO9b7rGMT5rVqDQim16nbV8ZinuwP+FC9Alk6R4HIoTUy+y+bsvXn/q6b4
v20IvC8wQ19daA6GFWAK2fHYARSYiswzwIIePqgHIZCCEhMnfCNU7nfiYO6A5/aS
QGPbZSCEn5xlTfJD8zO0oCxkD9pybP/35cFFr8h0iazMNcOHI1CNhdY5dUViIwZR
yNmSf3Jph4gDj7juhRVM
=t3eK
-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: https://lists.debian.org/e1xwpmi-0001vr...@franck.debian.org



Accepted samtools 1.0-1 (source amd64 all) into unstable

2014-09-22 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Sep 2014 09:36:27 +0900
Source: samtools
Binary: samtools samtools-test
Architecture: source amd64 all
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 samtools   - processing sequence alignments in SAM and BAM formats
 samtools-test - test files for the samtools package.
Closes: 544976
Changes:
 samtools (1.0-1) unstable; urgency=low
 .
   [ Charles Plessy ]
   54ca0c1 Merge with upstream's develop branch.
   241a731 razip was removed from samtools.
   dc25b81 debian/watch: also track release candidates.
   07aaf71 Indicate repository layout in git-buildpackage conf. file.
 .
   * debian/control
 .
   8bc0fb7 Stop depending on CDBS and quilt.
   e613142 Drop static libbam, replaced by the dynamic libhts (Closes: #544976).
   b5f284c Build-depend on tabix for the regression tests, that use bgzip.
   9febad6 Recommend python since samtools installs a python script in /usr/bin.
   0446ed7 Conforms with Policy 3.5.6.
 .
   * New package samtools-test
 .
   7293cca Create a test package for the test data.
   6bd7b89 Adjust install file for two-package build.
   caff5f5 Clean before installing test files (this removes compiled files).
 .
   * debian/rules
 .
   c930cbb Use Debhelper instead of CDBS and rely on the new upstream Makefile.
   845581d Adjust for dynamic linking.
   d859052 Indicate path to packaged bgzip.
   cb23517 Mimick Makefile's CPPFLAGS.
   aee1c6c Allow parallel building.
   edc09e4 Prevent Makefile from including local copy of the HTSlib.
 .
   * debian/patches
 .
   f73d764 d062687 Refreshed patches.
   2c52f6a 61ac2c5 Forwarded patches on GitHub.
   b8eb378 Dropped fix_example_makefile.patch, obsolete.
   66079b9 Correct path to python interpreter.
   218c1c1 Modify Makefile to facilitate dynamic linking.
 .
   [ Andreas Tille ]
   f69f412 Versioned Build-Depends libhts-dev = 1.0
Checksums-Sha1:
 d8e3b49287aa4e9d7670bd03cddf634200ac1e08 2078 samtools_1.0-1.dsc
 78bdac301a2a342a2cfac100b79fb5fa99808114 4291657 samtools_1.0.orig.tar.gz
 72232adde17be5fff6c7439fb33e9cdd8b1d039f 9552 samtools_1.0-1.debian.tar.xz
 a2999ffe52bfa44cca205bc6d91191a0e9903f81 376468 samtools_1.0-1_amd64.deb
 cafafae60bb5ee79e0b897057fa17e8287dccb13 2635574 samtools-test_1.0-1_all.deb
Checksums-Sha256:
 594e766341954502c0da3e47f01904c62a0f358740b46c6546bdd725b9e1a317 2078 
samtools_1.0-1.dsc
 c9be4ca074d9645f2782394c95366040f6d2e7334b513968fa8fb26460b626fe 4291657 
samtools_1.0.orig.tar.gz
 f8a74a708658b528ac86374e8ada20c3bcd4500644209a6920a62cbf3a15ac8b 9552 
samtools_1.0-1.debian.tar.xz
 d9cf341a930fa11866b5601cca4cc0765d918bb1353b723a6a8f26285f63a6e5 376468 
samtools_1.0-1_amd64.deb
 83e7a19ab43ee530aa530bf74fd5328a382521f602b516c9ad0724062e8ba080 2635574 
samtools-test_1.0-1_all.deb
Files:
 ded5642fc9ac0870395680178dd86019 376468 science optional 
samtools_1.0-1_amd64.deb
 99a0f3e55ebde2ab99175619ba9e7bb2 2635574 science optional 
samtools-test_1.0-1_all.deb
 2e3cb69ec34e0f5f2a6b7ba33c0457a4 2078 science optional samtools_1.0-1.dsc
 7eff9d605f21b0910887424069bae72e 4291657 science optional 
samtools_1.0.orig.tar.gz
 7859390d8a854b5b8a3e2f28612419ce 9552 science optional 
samtools_1.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUIMeEAAoJEMW9bI8ildUC1jcP/jkwfxEjG8YH7CuWlKNx7tQC
jO1XvhqMRsW2iT1rPAHzczdU/wke/tkSNgrsSDFdP1T3IlJVAOXjsPQE36UACuee
t3LZ75jrMartMxu/KQgwRDNzo/pHlI/1918nl5hblHpGwzWhyuxn9WzPKDOWai7w
+cr4xOmecfCi/pHHI3XglW4hdxbN6e0ebVsUW4HP+c7nqrKAS9Dr06vdnIPTAymG
BfjX1TJdVpf1aIjLrzaMWuBNF2/S7NbYtaUptLiA6tykySVPVlMO9fzfBVSw0elF
dqiP/dZpryOrSCZZouKTklyyRJO4eMIIx2htBso91UkjcHqVb4zw2qlVfg2Uwk/W
5ORWTaAOcKeAiLzSLIY5gHpt5YESTpJzJZvtYPM+AuMvhF3PbV/nyBmTStwgG1eM
nrPY8ZTEa9jwgjwygwIodVgtU9KccXn5sYKVo8nXynR074HIM9Lqkn8G/opdLouh
xseRo5KZAwnXP+KmaTT4gnHbYikv5XFXSpXsdevFlhiUPFS+w7XvK4Q0RU1WoaGs
O6QUReB85vR3Tu1e0fW1CM/VKMtJ7grTypOG8fbXDaEYQuVOnk2k7N1Vw2Dr5Sck
KtRbDxsv2CaYm2vLjZELPoPyQKGyGEnkXsyTd+jcHbrHaelV5AVUGRBdmccLKpMB
l9FC8ondtIz5o9wp13PM
=hcYc
-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: https://lists.debian.org/e1xweze-0002r0...@franck.debian.org



Bug#762412: ITP: paraclu -- Parametric clustering of genomic and transcriptomic features

2014-09-21 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy ple...@debian.org

* Package name: paraclu
  Version : 9
  Upstream Author : Martin C. Frith
* URL : http://www.cbrc.jp/paraclu/
* License : GPL-3+
  Programming Lang: C++
  Description : Parametric clustering of genomic and transcriptomic features

 Paraclu finds clusters in data attached to sequences.  It was first
 applied to transcription start counts in genome sequences, but it
 could be applied to other things too.
 .
 Paraclu is intended to explore the data, imposing minimal prior
 assumptions, and letting the data speak for itself.
 .
 One consequence of this is that paraclu can find clusters within
 clusters.  Real data sometimes exhibits clustering at multiple scales:
 there may be large, rarefied clusters; and within each large cluster
 there may be several small, dense clusters.


-- 
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/20140922014634.32408.15482.reportbug@localhost.localdomain



Accepted seaview 1:4.5.2-1 (source amd64) into unstable

2014-09-21 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 21 Sep 2014 19:48:42 +0900
Source: seaview
Binary: seaview
Architecture: source amd64
Version: 1:4.5.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 seaview- Multiplatform interface for sequence alignment and phylogeny
Changes:
 seaview (1:4.5.2-1) unstable; urgency=medium
 .
   * New upstream version.
   * New homepage.
Checksums-Sha1:
 b9e006bc1677bcb30ea9af5efc0efe28541eb001 2121 seaview_4.5.2-1.dsc
 52fe16041896f2c19fa7074a55c23555e66cfd1f 412421 seaview_4.5.2.orig.tar.gz
 c6c853af9dd10182648bcd970481852177cf51a7 15308 seaview_4.5.2-1.debian.tar.xz
 9b4681eb7387f27b7f1b2d38b42cc728658c4945 364134 seaview_4.5.2-1_amd64.deb
Checksums-Sha256:
 045211e70ff329d29003dcdc0318f0763a144266ae8e0c9db48a7aadb865cfa2 2121 
seaview_4.5.2-1.dsc
 b52ecd3a75ce2df33bde7f724caba4f14e257b4882b64a6f23b0e633607d6873 412421 
seaview_4.5.2.orig.tar.gz
 8e079163841311fb4c39ff9b2952c7723494dc4303104e573b367ccb748cb810 15308 
seaview_4.5.2-1.debian.tar.xz
 b7d194182fcbe9f3a78ebb6b425c725608dc998e27b9fc6f4c7b0028a1730051 364134 
seaview_4.5.2-1_amd64.deb
Files:
 976fef5f16136ada3e4f6fa5999e5e84 364134 non-free/science optional 
seaview_4.5.2-1_amd64.deb
 af6493e920ab158769180c34ece75579 2121 non-free/science optional 
seaview_4.5.2-1.dsc
 f07f2d8bb6dc37833302ff6ea49556c5 412421 non-free/science optional 
seaview_4.5.2.orig.tar.gz
 734be7f72f05f5737ec2f8b490ee55fb 15308 non-free/science optional 
seaview_4.5.2-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUHq/5AAoJEMW9bI8ildUC9uEQAKNf8C/UZFL1InlBkn7VUubI
3a33nVzIbwBJS3l+FC1c3qGnCcYLuijD7UCZ/O4YPg4mPcDlf+pT09r8LcxgDlXl
eQVnO2b6GOVjsO9WPydWkyFbzFXVhuTAzm0KuN0daGt0SJ42xmCFG51es3tIzvin
qs176zUv/PeaNkxKXUzkciCwcu5iK0zLJ3EaOxpC1kmQ905xJRYgmEvYubz7ooM9
I5WxNi3c4Xl0BBU/+Iv/uH59JUNvqwHVZ2xvNL6dV0G7NDHfEGmOlJqlhdbjvL6+
T2dlLLel+jp4e20rQWoMY/B087w0vr+KrM+Gsj3HRwrz7YJF9Uu7WuqDyfvMs7GI
lyl2aLVubKCcsv8dCcudr+rM9Kg7bdd8m5UpSe8n87ZUSSMhMF/Alp9VAJTNZ9wg
lQqj6c7lXpcOCrMm1UZzuJutfGLggbDeGUJt7asK/pxQuD9jQ7PmzxcTDw0FdmvW
PEQb97sPbYK4019IwGy0sb72wwITjK5ctzkns6s/WDNC4SYRMuNHhU7YYOLx3oyy
C4SbhZYQtLPh4JavkU5PmN5ITJ7WV0g9YA+VbbreiNK1nmOEOF7YjaXLxvNQthlo
DlHOfIhljRenyzIUprJ/c2MNqQGKyj1AD2mrOYEInBwzojYCfoXii0j47WUaQaCJ
qyByIHhA02uCy8Q5UAhh
=UmCA
-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: https://lists.debian.org/e1xvewc-0003qw...@franck.debian.org



Accepted samtools-legacy 0.1.19-2 (source amd64) into unstable, unstable

2014-09-18 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Sep 2014 20:03:23 +0900
Source: samtools-legacy
Binary: libbam-dev
Architecture: source amd64
Version: 0.1.19-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 libbam-dev - manipulates nucleotide sequence alignments in BAM or SAM format
Changes:
 samtools-legacy (0.1.19-2) unstable; urgency=medium
 .
   1bb181e Build libbam-dev from version 0.1.19 in a “legacy” source package.
Checksums-Sha1:
 6da4ec9c5bcf8a3f011b59592ee6100f6a029098 2030 samtools-legacy_0.1.19-2.dsc
 3a5880dd0940e98447caa70799b76a39091d3b38 557812 
samtools-legacy_0.1.19.orig.tar.gz
 27ebc3252989e10c3d485dbbaa67a554bbdae25b 8096 
samtools-legacy_0.1.19-2.debian.tar.xz
 5e1f4f01f1b627febf4d158850ddfd9cce12deef 123358 libbam-dev_0.1.19-2_amd64.deb
Checksums-Sha256:
 b79d1bc6fc29bf69e2116b9645d86981175cfe37e4cae2251ebe538672cf6116 2030 
samtools-legacy_0.1.19-2.dsc
 180c120a040ec660ebecc30ebae664772c0fd503e028173ab2496379bc208c17 557812 
samtools-legacy_0.1.19.orig.tar.gz
 56e22291050cae00af234632dede806c9acfc38d569e8f9e75dd2ae325fb26aa 8096 
samtools-legacy_0.1.19-2.debian.tar.xz
 698266afdc2424540a7f015834d757965d72d61dfb338df342d1062661c528de 123358 
libbam-dev_0.1.19-2_amd64.deb
Files:
 a7d60e66a61c14b8b8819cb0e5d8a619 123358 libdevel optional 
libbam-dev_0.1.19-2_amd64.deb
 acd06f79ddb353086e06cc00eeb6787b 2030 science optional 
samtools-legacy_0.1.19-2.dsc
 1229dc88487a49b03e69a5c0aa2f8a1e 557812 science optional 
samtools-legacy_0.1.19.orig.tar.gz
 e225e4a3ec995da8e824653eb1692d72 8096 science optional 
samtools-legacy_0.1.19-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUGBvqAAoJEMW9bI8ildUCuaoP/0h1j9MdkltaNm86J6znFIcl
hCrNDX4h5avMgzE5kwhwRWuvWvLu2eCYzMapBavLf+yBXFVhOJ1aiV+xdvKLyH8E
aqqrKUkLo8LKK+HO89LpT4j9VdxvMm7MbsdNkIPu8mg+UnE5PUrsSU925gjkezzr
+gGRAYJTaIrhabQjAr1+pqQgQM60qpwVvudqPJFCx6AxUgZgI2yxAdEow/d19Wko
1ddWk+DTGSJhkdR9JslhBsklXKWH1UjwDjCrJVFCgdJm8mXFnFTWaJsimCJgo2bB
/nXuHkix1guQmfjT/Qb8h8GRsmFysFmMkXIOPZNK3JwcjozhZBWZANmrgabRnis3
kw4b2udT6G9nrriUtBuejUbJ+tRDV6cN7SJZC6sj0Pa929DEpStRiPd2v1hdMICH
Ob8Lwp1C+1yEwJzC4Ph2EGAEKrGW/VTPXZZoAwciCB6iRcjGuckSSW+OOjNJTWnX
KiGfiQiQZWr6HxBDZcS064dxzgGR+te9ndsUYw0dF9at+CtFm/bToZom0ZL6jw+k
sEBNYVLcfuBCgDHN1d1UvV/HsuRO6VdXVdkl1DglyxeMUlR9MsMwX8zO4NHnDD4S
r/jmoTlnmOGV+mwjinqvWJ+RzC+HFkdhk1MNBDHoVk3TwBm65fTe+aWIFQOU/CKF
a8o9WVR2564v0An7Alpf
=DN6g
-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: https://lists.debian.org/e1xuanc-000881...@franck.debian.org



Accepted htslib 1.0-2 (source amd64 all) into unstable

2014-09-16 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Sep 2014 20:27:04 +0900
Source: htslib
Binary: libhts1 libhts-dev htslib-test tabix
Architecture: source amd64 all
Version: 1.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description:
 htslib-test - Test data for HTSlib
 libhts-dev - Development files for the HTSlib
 libhts1- C library for high-throughput sequencing data formats
 tabix  - generic indexer for TAB-delimited genome position files
Changes:
 htslib (1.0-2) unstable; urgency=medium
 .
   Uploaded to unstable (see previous changelog from experimental).
Checksums-Sha1:
 53d0514656624db59f7872e7416b9cae21de3705 2073 htslib_1.0-2.dsc
 4d3ffed48e525aa614c6d90ca609ffd6478c0834 8168 htslib_1.0-2.debian.tar.xz
 4f7acbe3666d29c9356a3b1ad791df69c5452211 204078 libhts1_1.0-2_amd64.deb
 bfb9a013f97ec60033dd50883d091874bff89b38 249018 libhts-dev_1.0-2_amd64.deb
 97e7ab12503eeadcdcd5d2a35c29eb15a1eeec94 516114 htslib-test_1.0-2_all.deb
 7dd5fe6fe85a29dcd1f603dbec40f1eefbb413cd 189978 tabix_1.0-2_amd64.deb
Checksums-Sha256:
 f26921871f703b7f47fceea5820baa1f0cbc4590053807a1d296a7a0bbce1bd1 2073 
htslib_1.0-2.dsc
 e6cdea9223ba502ee6f1956bf7c066951120396f46ad5f883cf7fe8639e4a68b 8168 
htslib_1.0-2.debian.tar.xz
 b75989c2273ec9b0a8299dc5daef5fe9270ef41e7ba1b705090d5b17a61d8bbe 204078 
libhts1_1.0-2_amd64.deb
 fd2dc1cf4eebbf9da12eb28ba652fe560b1f47b6ff0042f1ea554e5a0ba812f3 249018 
libhts-dev_1.0-2_amd64.deb
 f8475f18a700a9f469c90bdf9fcf3c34e8ab38281a831ad3ec6747fcc265260a 516114 
htslib-test_1.0-2_all.deb
 44908fc4b5cae97723b9acb5a631a795a9f1021d8783542bebdfbea28b01654a 189978 
tabix_1.0-2_amd64.deb
Files:
 8ffc250bba417d6bcf070ca2b885f013 204078 libs optional libhts1_1.0-2_amd64.deb
 f79a07fdad848e91a280a49e050d13e1 249018 libdevel optional 
libhts-dev_1.0-2_amd64.deb
 280c34dbe5a0b8d296a6eab6d7e69ce9 516114 science optional 
htslib-test_1.0-2_all.deb
 841963677645879ffa8fb9962721f9eb 189978 science optional tabix_1.0-2_amd64.deb
 05cc2d28c356fb39701792117b4d5f98 2073 science optional htslib_1.0-2.dsc
 b0921cda431b57bdbd688f460de3574d 8168 science optional 
htslib_1.0-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUGCIJAAoJEMW9bI8ildUCxuYP/3xmMXbBMNu3mLAZ7dbskhkW
jIAR7dkvsZfLMcXrHQJ0Wy+BrNpODoUsG6+8Bv268tSvxcwxYwsRqZ17syksLPqH
vEbpngzfHfSm9KorAYekrq3sw6lHA+YhIuPnEtZ5+HWHeovltyEVSAASXu/bskV9
NPvA8ES2fxU9l3//hluEWLp2fuFgjY4A422GzDEYtW6pffXkkKagylXeQdvEGo+X
Q6IownKLkjD3SR7CNY/OjAr+7NWxlu2g2VYzwjpONvpcGzkLHfAYHVjC5olKkn8Q
JV9tYhM5VfKK/ep3u9eJEuYGt/1n1lmCpkX4YJwV1I38nCz3cajK9dK7RyT48TH7
XjgcNK6zqDVOFJBKtZ2d2CHeTzCyFHHDoB0ew92bEocDc8y3kqcsAvl5dsINq75X
ZneGh+8Phas7KVtqCJtFX+krx7DfjqiwdE+YWPjCukGKWR68ZGVAZ3+5UExQM2F5
OTDtMcK0/CAMjdl08kt7AoCA7EP9TbooVw7rJiSFX5H+H9lIJbprrZbyGZIQqe9f
nz4pkeRes5Xw0lXHQ8LEDlbvVz9SQRJuPnyYRq69JCnF7v6Fnq6CsH3+sz3skN4r
fPsKvviab5NVuX/vQYY+RMB7Zlm3vj+ctHZe2N2gbTqUjzu6ur1paAgnqZ1D/ccz
H/HmR7MFhDn24FoKJFkC
=TD67
-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: https://lists.debian.org/e1xtrfs-0006bv...@franck.debian.org



Re: 2 months and no upload for pkg

2014-09-06 Thread Charles Plessy
Le Fri, Sep 05, 2014 at 01:09:09PM -0400, Scott Kitterman a écrit :
 
 grep -ir copyright * 
 
 Do that over your source and then compare what you have in debian/copyright.  
 You might be surprised how often that turns up missing stuff.  Check your own 
 packages at least as carefully as you expect the FTP Team to check it.

Hi Scott, FTP team and everybody,

to have a perfect match between the names listed in debian/copyright and the
names found in the copyright statements in the upstream source files requires a
considerable amount of work, and in the case of some licenses this work is not
necessary for compliance.

It has been sometimes argued that this work is useful for the review process,
to prove that the source files have been inspected systematically and in
details.  However, when I reviewed some packages in the NEW queue
(https://wiki.debian.org/CopyrightReview), I found little value for this
information: what really matters is when license statements are missed.

I therefore propose to focus the review of the NEW queue on license compliance,
since this the point where errors can have the broadest consequences on Debian
as a whole.

In my impression from what I read on this mailing list, there is a positive
opinion in general about the fact that packages are more throuroughly checked
by the FTP team, as it increases Debian's quality, and indeed I agree that if
we could get this with little effort it would be great.  But in practice we can
see that it does not scale and the consequence is that packages need monthes
for being reviewed.  Therefore, let's not ask for the impossible; instead,
let's seek for the same level of quality through other processes.

In other distributions like Fedora, new packages are peer-reviewed in a public
issue tracker, in a way that is not unlike the requests for sponsorship (RFS)
on the debian-mentors mailing list.  I think that it would be reasonable to
require such reviews in Debian as well.  The existence of such a review
would not increase the work load of the FTP team if the inspections in the NEW
queue would be focused on license compliance, that can be done independantly
without reading the all the messages generated during the peer review.

In summary, a radical way to reduce the work load generated by the NEW queue
would be to split that work, leaving only licence compliance checks and
approval of new Free licenses to the queue, and transferring the checks for
DFSG compliance (missing source files, non-free licenses, ...) and quality in
general to another stage of package production.

Have a nice week-end,

-- 
Charles Plessy


-- 
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/20140906090810.gf31...@falafel.plessy.net



  1   2   3   4   5   6   7   8   9   10   >