Re: [Pkg-opencl-devel] opencl-icd virtual package(s)?

2023-06-18 Thread Vincent Danjean

Le 18/06/2023 à 08:28, Rebecca N. Palmer a écrit :

On 18/06/2023 03:37, Paul Wise wrote:

Presumably any of the OpenCL ICDs work for most packages?


For most OpenCL-using *packages* but not most *hardware*.  (Except for 
pocl-opencl-icd, which works nearly everywhere but is slow.)


Perhaps there should be a default-opencl-icd virtual package?


Hence, such a package would need to Depend on or Recommend *all* the ICDs, 
similar to xorg-xserver-video-all.

I have proposed this before (see 31-Jan-2015 pkg-opencl-devel), but never 
actually did it, partly because there are applications that implicitly assume 
that all the installed ICDs work, and may fail to find the usable ICD if there 
are unusable ones installed.  (I consider this to be a bug in the application, 
but finding and fixing these would take time.)


This is problematic, because some icd are in main (pocl), others are in 
non-free (nvidia).

In fact, there is a problem since the beginning with OpenCL dependencies.

When a program uses OpenCL, it links against a ICD Loader that will dynamically 
load the available ICD.
There are different versions of OpenCL.
An ICD Loader supporting OpenCL x should also support OpenCL y<=x (there are a 
few exceptions, but I will ignore them for now)
This is provided by the virtual package libopencl1 (and the ocl-icd-libopencl1 
in main).
All OpenCL programs should only depend on the (versionned) libopencl1 virtual 
package. If using ocl-icd-opencl-dev, this is done automatically.
An OpenCL program can suggest/recommend one/some ICD packages but the ICD 
selection is done at runtime.

Reusing the commands from the first mail (but restricting to Depends only), 
only 4 packages really depends on a specific ICD:
$ grep-aptavail --no-field-names --show-field Package --field Depends 
--whole-pkg '(' --pattern .*opencl-icd.* --and --not --pattern 
'^opencl-icd(-1\.[1]2-1)?$' ')' | sort -u
hashcat
hashcat-nvidia
libhmsbeagle1v5
python3-pyopencl

For python3-pyopencl, it seems a false positive (depends on pocl-opencl-icd | 
mesa-opencl-icd | opencl-icd). However, it might be better to move this to a 
recommends (one can install a ICD without using a Debian package).
For libhmsbeagle1v5 also (depends on mesa-opencl-icd | opencl-icd), however it 
does not depends on an ICD Loader! (libopencl1)
Same for hashcat (depends on pocl-opencl-icd | opencl-icd) and it also does not 
depend on an ICD Loader!
hashcat-nvidia seems a metapackage forcing the installation of 
nvidia-opencl-icd or nvidia-legacy-390xx-opencl-icd (but, as it depends on the 
hashcat package for the program, I doubt that the nvidia implementation will be 
used if another one is presented by default to the program)

An ICD Loader supporting OpenCL x means that it provides all symbols required for 
OpenCL x (that are a supersede of symbols for OpenCL y
PS: I noticed this because beignet-opencl-icd is RC-buggy. This is the
only OpenCL ICD implementation package I can see that supports Intel
Ivy Bridge, but it is hard to tell which other packages support this,
because some descriptions don't mention which hardware is supported.


I think of it as
intel-opencl-icd = Intel integrated GPUs (replacing beignet-opencl-icd, which 
as you note, no longer builds)
mesa-opencl-icd = ATI GPUs (including AMD integrated GPUs)
pocl-opencl-icd = CPUs
but that might be out of date.





Bug#1033343: ITP: libstoragedisplay-perl -- Collect and display storages on Linux machines

2023-03-22 Thread Vincent Danjean
Package: wnpp
Severity: wishlist
Owner: Vincent Danjean 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libstoragedisplay-perl
  Version : 1.2.3
  Upstream Contact: Vincent Danjean 
* URL : https://metacpan.org/release/StorageDisplay
* License : Artistic or GPL-1+ (Perl)
  Programming Lang: Perl
  Description : Collect and display storages on Linux machines

 This program can be used to collect data about storage state on
 local and remote machine, and then to generate a DOT file
 the is a graphical representation of the storage state.
 .
 Data collecting requires only perl (and its basic modules) and a
 shell account with sudo rights.
 .
 DOT file generation requires more perl modules (the recommended
 ones), but this can be done on another machine.



Re: RFC: threading-aware virtual BLAS/LAPACK

2020-06-09 Thread Vincent Danjean
  Hi,

  Are blas providers really binary compatible? (ie exactly the same ABI?)

  Nonetheless, you can be interested into looking at the mechanisms
used by OpenMP to load various OpenMP implementation. Their solution
uses a wrapper (the real (ie ELF library) libopencl) that is only a
ICD loader and various ICD (real implementations that are loaded
(and choosen) at runtime.
The application can explicitly choose the implementation, or a default
one can be used, or the user (though envvar) can choose/force an
implementation.

  This path will need more works for BLAS/LAPACK maintainers. But, in
the long term, it would be probably better. If you are interested by
this, I would be pleased to discuss the design with you.

  Regards,
Vincent


Le 20/05/2020 à 16:58, Mo Zhou a écrit :
> Hi fellow devs,
> 
> I've suddenly got some inspiration on this problem, which resulted in a
> much better solution for the problem the original proposal confronts.
> 
> I like this overhauled solution.
> 
> No extra shared libs, no extra SONAMEs. No extra burden for the
> BLAS/LAPACK maintainers. Minor patching work for maintainers with
> special demands.
> 
> --- New solution ---
> 
> 1. BLAS providers create new directory under
>  /usr/lib//libblas-/
>and put another copy of their alternative symlinks into the
>directories.
> 
>e.g. libopenblas-pthread provides the extra symlink:
>  /usr/lib//libblas-pthread/libblas.so{,.3}
> 
> 2. Maintainers of reverse dependencies, when they have specific
>requirement on the threading implemetation, add the
>  /usr/lib//libblas-/
>directory to the RPATH property of the resulting ELF binaries.
>In that way the programs can use the BLAS implementation without
>worring about the uncertainty of the alternatives configuration.
> 
>Other packages insensitive to the threading implementations will
>use the libblas.so.3 in the global scope:
>  /usr/lib//libblas.so.3 (a symlink)
> 
> --- end solution ---
> 
> That's it, much simpler and much more efficient than my first version.
> 
> Comments please?
> 
> On Wed, May 13, 2020 at 10:54:00PM +0200, Gard Spreemann wrote:
>> Mo Zhou  writes:
>>
>>> Please comment:
>>>  1. Do we have a better solution where we can retain high performance and
>>> avoid threading trouble at the same time?
>>>  2. If we don't have a better solution, is my proposal acceptable?
>>>  3. In which way can my proposal be improved?
>>
>> Hi Mo,
>>
>> Your proposal seems sane to be, and a real service to the users!
> 
> :-)
> 
>> However, I am a little bit worried about the maintenance burden you are
>> setting up for the future; may it be promising too much to the users to
>> provide every single combination? Since this is BLAS, one could imagine
>> adding yet another couple of versions for each of the options, targeting
>> ever fancier vector instructions, etc. – at what point are special needs
>> best left to the user to cover?
> 
> With the second version of solution, we can elegantly solve all the
> problem, and prevent the threading trouble from propagating to our end
> users!
> 
>> I wish I had more constructive criticism. Thanks for the work!
> 
> Let me do the critism: the first version of my solution is rubbish ...
> 
>> An aside: do autopkgtest or other CIs currently test packages with
>> varied combinations of BLAS/LAPACK providers?
> 
> No. But that's easy to implement.
> 
> For example, we can add the following test cases in the autopkgtest
> control file of openblas:
> 
>   Test-Command: run-numpy-unit-test.sh
>   Depends: libopenblas-pthread-dev
>   
>   Test-Command: run-numpy-unit-test.sh
>   Depends: libopenblas-openmp-dev
>   
>   Test-Command: run-numpy-unit-test.sh
>   Depends: libopenblas-serial-dev
> 
> In this way we BLAS/LAPACK maintainers can immediately spot regressions
> in important packages. (adding these tests seems like my work)
> 
>>  Best,
>>  Gard
> 


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted latex-make 2.3.0-3 (source) into unstable

2020-01-16 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jan 2020 20:44:58 +0100
Source: latex-make
Architecture: source
Version: 2.3.0-3
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 943067
Changes:
 latex-make (2.3.0-3) unstable; urgency=medium
 .
   * Add Debian CI
   * Fix "Python2 removal in sid/bullseye" (Closes: #943067)
 Thank to Ubuntu and Matthias Klose to notify me.
 Only shebang lines was to be updated, the code was already ok.
   * Cleanup packaging
Checksums-Sha1:
 22d9c8230748625622823d4005264368c22e54b4 2057 latex-make_2.3.0-3.dsc
 461da550ec1847025e77df12e420e0ed7ad59df7 6840 latex-make_2.3.0-3.debian.tar.xz
 6ce3de4658f192b83ad96e035d503160e80e91a0 5660 
latex-make_2.3.0-3_source.buildinfo
Checksums-Sha256:
 0447d1889446da48fb92dd28553d46a09692167ad2bd24af0d622d81d273c07f 2057 
latex-make_2.3.0-3.dsc
 7ed47b725f5a923a2a93a57f1fcbda3a89c46fcb3878828585b1411979c9a6eb 6840 
latex-make_2.3.0-3.debian.tar.xz
 7ed21f19ce563f491828b6b8038de754b929570da41f148eede564180ad71d66 5660 
latex-make_2.3.0-3_source.buildinfo
Files:
 a17313913664cef378cc2982fb9fbfb2 2057 tex optional latex-make_2.3.0-3.dsc
 604056b3fd1f9fda282a11ed3663e64f 6840 tex optional 
latex-make_2.3.0-3.debian.tar.xz
 3f9ebe6887dbc86a4f16cae8df201c61 5660 tex optional 
latex-make_2.3.0-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAl4gwLkACgkQlkfeY37H
t1H6phAAitTHJN74ICCMsiTAIeXUV7JVG7Blavj7EZNUMHewTdSRwLgZSGAe1+P6
55AVrIAiCHfRP1iEe26zmOfHai7yEWHXzW8vh0jB7QSW0FxPv4/9E7OyfgQ1szXq
p2TLUHZnm42mJkPnFrHbDCVxIEjtlsyoKtNPUsGoKKqFko/ThCm/5pe5X9Y61UEW
zeLXESEEY5ldN5UTIz0chI9kqirIruciIrUGtz+cCfGovK6evgeoiDfNXBwwyZan
DPok83tXKu0HGHV/pEIY7SdYw6EoGa1y4TeT3LBUuMyJk6jUrrzGo/y5JZUqmsu6
oGNUhucsG5zhm8Sae3PO+noEStTjfZYVj0K+Ul7b0fTSqCjmNx3acChIAsuuNknh
MQDRecBlZbHOYhQNx4zh8+wNbLTvfRO+yG70uuiXjypO97ROeBmulwI7M7r6yD2B
tmBhTuHhGyw3JTyThdmtXaj1jpOi8P2UumQn1gG2mVf0U7D3htqJZ4sVWcxSLiLK
XLOzaWysu6rqTHNiKmp9pKi/Mibk3644mu+cf/3FrwqrNgsWHVyOrU6GBUuU5EWm
myVr2gJ21FaCNS5d/wmrQQwihQLefjXgPXnvqv6YCD4rtuGqcNtxzpi1U87rwbIG
jL1BOIa4vNnSFOFtZ7bsO9lShlchi4ycs7aOflvWhuaBphHvOck=
=5nqz
-END PGP SIGNATURE-



Accepted owfs 3.2p3+dfsg1-5 (source) into unstable

2019-12-11 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 11 Dec 2019 17:03:39 +0100
Source: owfs
Architecture: source
Version: 3.2p3+dfsg1-5
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 937225 943612
Changes:
 owfs (3.2p3+dfsg1-5) unstable; urgency=medium
 .
   * Remove python support (Closes: #937225, #943612)
 python3 will be re-added when upstream correctly support it
 python2 is not supported anymore in Debian
Checksums-Sha1:
 6ff1809c764a358ad6728f4723fb2012d731420c 2967 owfs_3.2p3+dfsg1-5.dsc
 b4be1274a4ed2f7d64dd03818daa051522a0f628 22020 owfs_3.2p3+dfsg1-5.debian.tar.xz
 9970a0c90551ec4f619aef0480e7394ad6a0529a 9109 
owfs_3.2p3+dfsg1-5_source.buildinfo
Checksums-Sha256:
 16f4def4cbbe68941aa1c04dbb4f390cbf3e514987d9d43f8fdab9d4fefcb793 2967 
owfs_3.2p3+dfsg1-5.dsc
 c70d6a662a04dda3ad35cd194e5122914e713e630f70629ac692f6c55144cd5e 22020 
owfs_3.2p3+dfsg1-5.debian.tar.xz
 d0f3d4c8051a1d0c45d22bc6497dc832045f0a6173fd6269ee6a632780ae7c69 9109 
owfs_3.2p3+dfsg1-5_source.buildinfo
Files:
 0b62a6a8c1149169a55352c142d8ed21 2967 electronics optional 
owfs_3.2p3+dfsg1-5.dsc
 cf924551bfa3f557ad3cd48aafb07662 22020 electronics optional 
owfs_3.2p3+dfsg1-5.debian.tar.xz
 9d3b1d7ae30d4c207adb7cdf74d86ad5 9109 electronics optional 
owfs_3.2p3+dfsg1-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAl3xFMUACgkQlkfeY37H
t1HT+w/+LClMqzbuzoEY0jIrYM4LByDOw2R2wpGc3xQrOuDACk134IudBm3yM737
yADnZKseEa54yFgJzjHR8YfC2sJ3qBwWv4f9meam5NGYS9bKA//T86J2Wr5+EO0/
tfDO31RnfuBJPK1HLajpJsCe7zb1AU1OHVdJ41LteeaqoiGamWEuRgAfQmYendMF
SCDXAWQPMEBd3/rE7HRbwV7S795zSwqBQtXm/uKwAOVS9Q2x/UQQwRrjqcieea2y
cKAW62mEGDsVeBkDahU+cObIsjCOt65iZIn+QFZDRFeIR55inpB0zhys/gCxulYb
zzXFyMP8SLgmXK0TVnjJ0Jj5rwqRhh6IkEVDXjMc6AZ3gbvtHyd+Mz6B+lE13nae
m9pIS48+rdi439WzdPAifIz+ELz+AAWHb1Nvz4SpyN8ja3F4FvxRFBFqQbPJMChZ
KItln6DdMmYmtvq193oCsNsaj8R0N94TqdJQqBPRDApWlzUPDI2MEMBWiLjvt4ct
WkhX+7G5xF/P6vI1ku/CFwjsfcTX7nznAoeBe9xV6A3FZyhJU7hH8EcBp8KxvTgN
o8DVmBwxHAW1tncI8dlpTNHFLlPJp06r6Ew8UqJLbDW+WoVFbZGAs/MAaptT/QEF
Ex0JVRj7ElKisMQgTimn1amT8lwTiJfdEDdsCqQgorCZpJxjXgg=
=LYlT
-END PGP SIGNATURE-



Accepted oar 2.5.8-2 (source) into unstable

2019-10-17 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Oct 2019 20:31:05 +0200
Source: oar
Architecture: source
Version: 2.5.8-2
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron 
Changed-By: Vincent Danjean 
Closes: 942467
Changes:
 oar (2.5.8-2) unstable; urgency=medium
 .
   * Revert to stretch behavior for Storable::dclone perl function (Closes:
 #942467)
Checksums-Sha1:
 a59438d25a962c0df07278ea1cdfbc6aad7b48f7 2481 oar_2.5.8-2.dsc
 e53729e8f23c1018fcb1d6ccb9b2cccae806814f 11404 oar_2.5.8-2.debian.tar.xz
 318d2f0bdac2577bed3c0c6c775a81a4fb65058e 8410 oar_2.5.8-2_source.buildinfo
Checksums-Sha256:
 00050d75585047add2251ce07d016fbb1979e6d4789467b57bb364c5f70ebbcf 2481 
oar_2.5.8-2.dsc
 4df5634837b583c651414a9803ef50e9a1bf15cea043374733d2f0c4cadc29c9 11404 
oar_2.5.8-2.debian.tar.xz
 e9194a22daeffc01d66248f5a29a682537b701ad515737ba000a44315a825c2a 8410 
oar_2.5.8-2_source.buildinfo
Files:
 b9b8edc10b4856fa78cd505194c8e2ce 2481 utils optional oar_2.5.8-2.dsc
 a0f899ad4dcf3ab98dd6d4cb68f000af 11404 utils optional oar_2.5.8-2.debian.tar.xz
 fd919bad502bb8ac96712a0e6df3e0a8 8410 utils optional 
oar_2.5.8-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAl2otBIACgkQlkfeY37H
t1Gbbw//S4+P2jvU+ZNuu3Ybzk/E75arzqQhueJVFV5NE3xulWL4rx7149azOEee
Qkat8hIr2oUQsaBAfd2leNhIGMD661WZ7FTmkRpsCyQ6EcNksC8ky4ZtwUznRx+c
fzvMbdGTCQaVawo7P9r9D6nT9kzlFk0t8pD4cH02oOA6rzg2EClQHK4PvNxg+grT
mT4VygytnVLHbosXvNupUQE4o8r1vK8hTbydiFz2pVcgAvQqlA1hKeFNWqB/WDVW
gnk1JwiYLbg7FGESFeWD5WuahjiEDs+413O25/0BnyObfSLYJEI0xXSQv/4MI3GW
dJhTZHWCUkq3dpMcGWWvqHKG0odL6VJY574uT+Z7+b66UVym2YnQWOfLmAE7hpac
WTOQ0t2j/ZSQVJfiVKRTGVZHesR+mlsVYMx3pEMDBWhcZdSwdrTfEASlNd8vheVF
uREtyV9hBfuq2br02YqGNQdLozRo5LMQ6OZG0kMS4qLoq23EJ3m3rFWOY+67g3Hh
M5vAy2zLyF7ypd/pFIVQjR43utjfPQDDY2Bagl71DfaUT+evOTYUMSF8Fo3JPbXg
M7pxzlrSt/XNT/mj/XLnlNJg6W7JLTxJVJpCpymiEsfcR1oEvlHbWH7ymzwN/xak
cLilWjxy2YLYcJt64BEj2xqXL/umOl64XqktKOUEjDIRcEyY+4c=
=iAX7
-END PGP SIGNATURE-



Accepted owfs 3.2p3+dfsg1-4 (source) into unstable

2019-08-23 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 23 Aug 2019 21:41:00 +0200
Source: owfs
Architecture: source
Version: 3.2p3+dfsg1-4
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Changes:
 owfs (3.2p3+dfsg1-4) unstable; urgency=medium
 .
   * Reupload as source-only
Checksums-Sha1:
 5d7463190c7cf51c257214c92ae25303834faf20 3231 owfs_3.2p3+dfsg1-4.dsc
 e3612699fb4dcca85f06fc47ae3bb1a5f2a8a8ba 22120 owfs_3.2p3+dfsg1-4.debian.tar.xz
 f136bbcfce32f4e7543f6982f04a270ddf7e32ce 10227 
owfs_3.2p3+dfsg1-4_source.buildinfo
Checksums-Sha256:
 4034b3c723c970b1d157adfefce205e7687479ff5ae663dc43f72d0ecd24 3231 
owfs_3.2p3+dfsg1-4.dsc
 1e5bc4018b0d39ced149c5eb9e9b727bfd9fdf1a251abfd77f5b38d5ac272790 22120 
owfs_3.2p3+dfsg1-4.debian.tar.xz
 079472f4bffaa3c31b157fcedebb4ab81185fb1c5327c83516a6e0915ade9efd 10227 
owfs_3.2p3+dfsg1-4_source.buildinfo
Files:
 d397429c8010176fd9037cee1620061c 3231 electronics optional 
owfs_3.2p3+dfsg1-4.dsc
 344bfca310c85d0d98abc84dfef358be 22120 electronics optional 
owfs_3.2p3+dfsg1-4.debian.tar.xz
 a44ce6a50a5683b63d59828a8380a867 10227 electronics optional 
owfs_3.2p3+dfsg1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAl1gQY8ACgkQlkfeY37H
t1GkOA/9GB+fyh0QqPmqG68Pqk5cw8kfQyQqAL3uN25DgLluqlcXb3xps59qhGfa
2pHEP8TRHwjLAVCFU6z4HnfRexOeXsE/KQKZZHB1vI++LO4vZx32jSA8fZw/fArE
zRzNpN6Y9FS5ABrDXHirpbQSgrznpb27kgKIHc1/cGIgtjyDDPXNxW1SPZhXCFtP
aHtpKxlgqQs8Cf+uli7eUTEZURp0m012i91OzqZTiXucSHhyZqhIHf93D9kIPBHe
TuS6Tq7JZVzXgd+HtJXiPKKKGKTY8Rh8YSYQnVhY+o0T4gdQRvwZ+3C8TRaPufCq
gf5t/HqxXfY74Zh1nPF1fEx8pexxSb+8hsbdv9GcfJhObbIX4a3E/2DIGCWA5Kgf
RmFGd8c1gPa2S37QZOaExEFuRudXTT9+26M++E4J/l/JRQxvxVl2//zZsK03PJld
NjKb4khAh60NsAVii+874n3vm8EUANVlMbaYC+O+SwCfqosyJpVxFU3ZK2K+8xtz
cJyePKDtFuAPCnKYl3VmlzoauBQnpxidb8V25QFV7VF26a9BEYSmv3F/Z0EhvrqL
0TdMzNbE1bZBTRcSMyZgbOWPSD7qxygrp/I5zucxAg15k5ly8EBKWK3Q2fKuvBmg
v3JyeLjDqNKFGzrcM41zJOl1fz7oDiiFZlxhdzOWkAdOY39/Krg=
=CDVK
-END PGP SIGNATURE-



Accepted owfs 3.2p3+dfsg1-3 (all amd64 source) into unstable

2019-07-25 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 25 Jul 2019 11:21:27 +0200
Binary: libow-3.2-3 libow-3.2-3-dbgsym libowcapi-3.2-3 libowcapi-3.2-3-dbgsym 
libow-dev libownet-3.2-3 libownet-3.2-3-dbgsym libownet-dev libownet-perl 
libownet-php libow-perl libow-perl-dbgsym libow-php7 libow-php7-dbgsym 
libow-tcl libow-tcl-dbgsym owfs owfs-common owfs-doc owfs-fuse owfs-fuse-dbgsym 
owftpd owftpd-dbgsym owhttpd owhttpd-dbgsym owserver owserver-dbgsym ow-shell 
ow-shell-dbgsym ow-tools python3-ow python3-ow-dbgsym python3-ownet python-ow 
python-ow-dbgsym python-ownet
Source: owfs
Architecture: all amd64 source
Version: 3.2p3+dfsg1-3
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 932299
Description: 
 libow-3.2-3 - 1-Wire File System full library
 libowcapi-3.2-3 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.2-3 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php7 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python3-ow - Dallas 1-wire support: Python 3 bindings
 python3-ownet - Python 3 module for accessing 1-wire networks
 python-ow  - Dallas 1-wire support: Python 2 bindings
 python-ownet - Python 2 module for accessing 1-wire networks
Changes:
 owfs (3.2p3+dfsg1-3) unstable; urgency=medium
 .
   * add -fPIC when compiling python modules (Closes: #932299)
   * Use debhelper-compat for dh supported version
   * bump Standards-Version
   * Fix systemd glitches found by lintian
   * Force correct LDFLAGS on python packages
   * Fix typo in manpages (for upstream)
Checksums-Sha1: 
 9bd17d0a09c449d11eccfbb8689e969bc80b504c 3231 owfs_3.2p3+dfsg1-3.dsc
 322a62b1601b937d1e66498de3e2ad84a6e5e244 22088 owfs_3.2p3+dfsg1-3.debian.tar.xz
 31840a3feeb59af40d99ce33aa0a49008dcd59a8 10133 
owfs_3.2p3+dfsg1-3_source.buildinfo
 fede4682f862c5d399dc1abb81171b671f924ce5 703080 
libow-3.2-3-dbgsym_3.2p3+dfsg1-3_amd64.deb
 e922544e7ea0e3f63763823e4ae22f7b6d31feb4 312680 
libow-3.2-3_3.2p3+dfsg1-3_amd64.deb
 cdf48f1e49643ffaa506c72b3289a1245c5461ce 17380 
libow-dev_3.2p3+dfsg1-3_amd64.deb
 2c866e86f45daa2f2e5530a1860286fed34f6630 59348 
libow-perl-dbgsym_3.2p3+dfsg1-3_amd64.deb
 42fbaa13f23749de293f1c76f1661562d4e2c944 20716 
libow-perl_3.2p3+dfsg1-3_amd64.deb
 4de70df56ec0b3bf84430305dae9ddca41a26365 43088 
libow-php7-dbgsym_3.2p3+dfsg1-3_amd64.deb
 fb992f956bdc8e2436566a94c1e6a3bf0d5c2ee3 14280 
libow-php7_3.2p3+dfsg1-3_amd64.deb
 843778af81b8ad0ffe3a682be456d23f5d659a16 47236 
libow-tcl-dbgsym_3.2p3+dfsg1-3_amd64.deb
 d58df5d3cb14904cfa3eedccc648f3abf3e11ea3 20796 
libow-tcl_3.2p3+dfsg1-3_amd64.deb
 6de2b5be85243946f2818ddd7bb0a2d1a7500229 20520 
libowcapi-3.2-3-dbgsym_3.2p3+dfsg1-3_amd64.deb
 c3e0074a072906fc7690a35748cda11cd28b5d4e 12332 
libowcapi-3.2-3_3.2p3+dfsg1-3_amd64.deb
 a737543775c43c7cd24591c8673935a2afc32def 43880 
libownet-3.2-3-dbgsym_3.2p3+dfsg1-3_amd64.deb
 eca636f4428f93f9cb4afb18c97087a9d8a4cdef 25820 
libownet-3.2-3_3.2p3+dfsg1-3_amd64.deb
 55d1370bddbfb42d44f101fc2af239dd5df33c11 16196 
libownet-dev_3.2p3+dfsg1-3_amd64.deb
 5526975f334a7fffb70f477f01e96eed5e236709 30164 
libownet-perl_3.2p3+dfsg1-3_all.deb
 24a76772569c4bd2e5ca69c71cc46ff99e13903a 17944 
libownet-php_3.2p3+dfsg1-3_all.deb
 691fb628a1095c8b064cbb97699532ced721f2b7 131892 
ow-shell-dbgsym_3.2p3+dfsg1-3_amd64.deb
 88394972082653fb6ea337d54042cec59d4ad90d 34092 ow-shell_3.2p3+dfsg1-3_amd64.deb
 49fcd0f3e0a4d5d98ef60d48f71aa975086d980f 28868 ow-tools_3.2p3+dfsg1-3_all.deb
 acbeeed1f4904fcadfce286c9c2fcd5340e6d5ac 17684 
owfs-common_3.2p3+dfsg1-3_all.deb
 1e36da7183356945c32452408a3b079bb8b0a438 201572 owfs-doc_3.2p3+dfsg1-3_all.deb
 9fd0ffef45ef16127f03cae80fb3c8941420ffb4 27816 
owfs-fuse-dbgsym_3.2p3+dfsg1-3_amd64.deb
 73fa853b0596a8975a6921b5ec657847b8b419ba 24248 
owfs-fuse_3.2p3+dfsg1-3_amd64.deb
 f790d74f16c251b645fda499a1873d7c418a3cff 9356 owfs_3.2p3+dfsg1-3_all.deb
 f88f55a6abfd2a217170c2c956d9679270ba9ae0 18073 
owfs_3.2p3+dfsg1-3_amd64.buildinfo
 f3f21f5656a98356496d0b33964aa3a2eb917c4b 75316 
owftpd-dbgsym_3.2p3+dfsg1-3_amd64.deb
 cb414f016cdb13f1f80c2f6ec18334c3c7696845 49532 owftpd_3.2p3+dfsg1-3_amd64.deb
 f1a68976b629718ebebff98de925ca11dbf6decb 50460 
owhttpd-dbgsym_3.2p3

Accepted fxt 0.3.9-1 (source amd64) into unstable, unstable

2019-07-23 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 12 Jul 2019 15:04:18 +0200
Source: fxt
Binary: fxt-tools fxt-tools-dbgsym libfxt-dev libfxt1 libfxt1-dbgsym
Architecture: source amd64
Version: 0.3.9-1
Distribution: unstable
Urgency: medium
Maintainer: Samuel Thibault 
Changed-By: Vincent Danjean 
Description:
 fxt-tools  - Multithreaded tracing library
 libfxt-dev - Multithreaded tracing library
 libfxt1- Multithreaded tracing library
Changes:
 fxt (0.3.9-1) unstable; urgency=medium
 .
   * New upstream release.
 + allow one to use up to 31 parameters in *PROBE* macros
   * remove applied upstream patch
   * add static library generation (now disabled by default upstream)
   * cleanup packaging
   * add myself as uploader
Checksums-Sha1:
 b2e6db127433750e3a35d49d8dfc9db62b102e29 2090 fxt_0.3.9-1.dsc
 277f132a2b613fefdaa4f5dabc721a0e306ad27c 1127231 fxt_0.3.9.orig.tar.gz
 81f6dd3f564d81aa7789da067f3707f575880091 3312 fxt_0.3.9-1.debian.tar.xz
 b3da08f156d2710877347e575f1d349aab82efac 12976 
fxt-tools-dbgsym_0.3.9-1_amd64.deb
 a78777e3d145f4e43d8acb367ecb171549b93521 16580 fxt-tools_0.3.9-1_amd64.deb
 6f0db083b4b2e26364f862f5a73fd82d41183a21 8178 fxt_0.3.9-1_amd64.buildinfo
 0a9353392afbcd10f50e72da8e95db0ba0356e2b 49224 libfxt-dev_0.3.9-1_amd64.deb
 87338b109fa28b12ba65bfffbef9299d17883def 2 libfxt1-dbgsym_0.3.9-1_amd64.deb
 e96bb51ab7b0344f83c9cf0593aa514fa5d65e1f 34344 libfxt1_0.3.9-1_amd64.deb
Checksums-Sha256:
 a8fc4370920a30cb18bfcc7a243504b0cd69bd225353084106db483108258a68 2090 
fxt_0.3.9-1.dsc
 403d65ea2c93f8e1e8f0d21ec219163f6ab9db8ccb5ae8fc49fd91c4537c9f7e 1127231 
fxt_0.3.9.orig.tar.gz
 13b5b8a56808c81f39b54242298471b76d59a06e336abf12c427ac1f2ccd28d8 3312 
fxt_0.3.9-1.debian.tar.xz
 3332f6adad450553143c3c2678f1ad8b15b1369c006808f97bc2bbddd9172c1f 12976 
fxt-tools-dbgsym_0.3.9-1_amd64.deb
 2a6c4a0a48e393291307731bbc35f53fcd39050a36e5a1c2ecf0352ba8f17d38 16580 
fxt-tools_0.3.9-1_amd64.deb
 d09b670d92e17d511ccceb928bdc1647d7031abe2cf05904a49fd5c4739e7a75 8178 
fxt_0.3.9-1_amd64.buildinfo
 68b5f0a13d1b3dd4e30baa144f677bbee27ebb394096ce4d2e53f99244a2d364 49224 
libfxt-dev_0.3.9-1_amd64.deb
 830f94f5a7bf8636232f0f1746b2d8d1e3dc35b684960f6bb1c8278caa4fd853 2 
libfxt1-dbgsym_0.3.9-1_amd64.deb
 9d2468b23564f4f0c69f9f7e3c369144f3a9da55f7fee30bdb2de0f350cad621 34344 
libfxt1_0.3.9-1_amd64.deb
Files:
 d299ab1f22868b1c14c19df8ffb7183c 2090 libs optional fxt_0.3.9-1.dsc
 e6868ed2b162b3d52cafbe3db789b6b0 1127231 libs optional fxt_0.3.9.orig.tar.gz
 4fbf9cbc2cd5326603f1cd21965090ac 3312 libs optional fxt_0.3.9-1.debian.tar.xz
 d12224c5210106256df3d30ad228f10b 12976 debug optional 
fxt-tools-dbgsym_0.3.9-1_amd64.deb
 09ee37bf7190e2def954b25a5da5cc58 16580 science optional 
fxt-tools_0.3.9-1_amd64.deb
 142930c38b513434de60c9257cdbc405 8178 libs optional fxt_0.3.9-1_amd64.buildinfo
 924c8eee3f1557761f3a5830842f2a8e 49224 libdevel optional 
libfxt-dev_0.3.9-1_amd64.deb
 3185981779d54f8a7136084319748ccc 2 debug optional 
libfxt1-dbgsym_0.3.9-1_amd64.deb
 72b3a28ad988294005f0e6d56c5398fd 34344 libs optional libfxt1_0.3.9-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAl0ok2IACgkQlkfeY37H
t1F9JA/+NS6epAFQ3bbPe/O1viaPdkQLszk48LSaOnCwE5O+5ryhwPiV92xCmV/o
Y1mc9UL9yBUREMQnNbxiN7WI3SQpaupWJVyUXzhD3jy5/o4X3c/1nlrhjC1f6y14
sL2jLqAmgtSRGCDXuGxntKB6XgqGU1mUNtNeMPOgCusz8zMStLy8Um9iGquorNUZ
7PoPNJdN2GaGr/UIm6FTAz4hSvFwPBZF3fN5/h2syjByPmfUZ49V227KxdXprw5/
AYCqA4ZrZgKLwpKY28C7NL+W9ddPV1NnUo5Xk4PzGYKnzA2RhRNqscvnyWntuD6z
MJo6ubcbja2gaQe4bfV8r90U42OJJ2FQC+DwPT1Bk0ac5Z08TzrD6+nNH8qn4uEc
XLhF0hkesii6UFkS0SeLVR4jUC6bQ7U2kyvhHLj5bW7WoYzgv2yMcePBbTqzFtJE
vcEK2dHst6vMfp8vpYRyIc4SQBO8gSlnXJjE77EKIEHXwN4W2coO84twr/fpLcr1
YDDvhyLMpYSWXpu2vXakrKSnclf8193GhtpaTWd0fSqhlTsMGM/KPQHEtviIrqXp
oMydpgTpkLTiQJa+zPQTPP6jNLoVNCflmQ1qvBaTGgtQrxsKG/uonOFteIHMGQpC
n7wNyXgC9k5T4eHH6zgXeEOB0uMLnxHcdgq2uNVaCmCHqmXRK2s=
=IxFz
-END PGP SIGNATURE-



Accepted yaz 5.27.1-2 (all amd64 source) into unstable

2019-01-14 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Jan 2019 09:33:55 +0100
Source: yaz
Binary: libyaz5 yaz yaz-doc libyaz-dev yaz-illclient yaz-icu
Architecture: all amd64 source
Version: 5.27.1-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Description: 
 libyaz5- YAZ Z39.50 toolkit (runtime files)
 libyaz-dev - YAZ Z39.50 toolkit (development files)
 yaz-doc- YAZ Z39.50 toolkit (documentation)
 yaz-icu- command line utility for ICU utilities of YAZ
 yaz-illclient - utility for ISO ILL of YAZ
 yaz- utilities for YAZ Z39.50 toolkit
Changes:
 yaz (5.27.1-2) unstable; urgency=medium
 .
   * Upload to unstable (ack from release-team in #918954)
Checksums-Sha1: 
 8342461cce18433ccf259c44edeaf6d683cb2bd6 2273 yaz_5.27.1-2.dsc
 556bcd98a7199ef561b76578f293398015fc092b 20476 yaz_5.27.1-2.debian.tar.xz
 04f94eca833c579d350581471496954735634a84 9270 yaz_5.27.1-2_source.buildinfo
 c77b038b1756a950b1698d8c2273354e6604bbdd 1039520 libyaz-dev_5.27.1-2_amd64.deb
 c35db8b23ccae17d788d5a569a046ce30e5a8135 1718040 
libyaz5-dbgsym_5.27.1-2_amd64.deb
 eb8146c67ab89b80725cf5102d6fdc74540b66ee 836752 libyaz5_5.27.1-2_amd64.deb
 8779c6c5f0099ad8489fa8e9d4aaa877301a749e 354048 yaz-dbgsym_5.27.1-2_amd64.deb
 2a6bfa362f82bea0124c7439839c5f8c59f38fbb 625568 yaz-doc_5.27.1-2_all.deb
 cdd6b078d6fb4c3a5274d5328d9b504ac7a12e09 17532 
yaz-icu-dbgsym_5.27.1-2_amd64.deb
 9ddfb5aa00853d0a29cfd91481ce4bdee80a5345 429796 yaz-icu_5.27.1-2_amd64.deb
 e1546bc1de4619d603af796bce367c39d446069d 46468 
yaz-illclient-dbgsym_5.27.1-2_amd64.deb
 46817c293f810064146385ff877d91100e9771bc 428804 
yaz-illclient_5.27.1-2_amd64.deb
 b039c1eaca9aad0d8573a6e86084c49b8e57e431 8745 yaz_5.27.1-2_amd64.buildinfo
 e8771ed311a5bbe1edf8f5ddaf58c08561a806a1 521140 yaz_5.27.1-2_amd64.deb
Checksums-Sha256: 
 d7d6acaf29db1d8a37865163b4e834e5df5964dcc5fe85a1cc595d09df22ebaf 2273 
yaz_5.27.1-2.dsc
 a2a1faa9bbda1c52ae05fbe2c63348a6ea81d0d17cccfe3957f1cc291a17ed22 20476 
yaz_5.27.1-2.debian.tar.xz
 6c76661b82ab5bb9e2c1023e319a13d8a1bdb679373e2ca6106a8cf7943ebb10 9270 
yaz_5.27.1-2_source.buildinfo
 0c0c144e3946bbe3dae8880a1df6b9623e42c56c97ae91ddd76197a29ce6d7ed 1039520 
libyaz-dev_5.27.1-2_amd64.deb
 62c29fc45064ff54acd2181b332802bf37dfdd12450890092598ce844a7abb92 1718040 
libyaz5-dbgsym_5.27.1-2_amd64.deb
 0fb1243003dfca23437d566a412a91f5e5a08ddbdc5c4fd24d059a9643a57cd6 836752 
libyaz5_5.27.1-2_amd64.deb
 e4343ca86f93331840cadec9eea1533a57c9b896af35325449f89a00c6bd13c5 354048 
yaz-dbgsym_5.27.1-2_amd64.deb
 506e8acaaf04bde07ada955adce336061f3cb1ac3edb02df998764250f7922ee 625568 
yaz-doc_5.27.1-2_all.deb
 a84f5d2dbc1bb72c1c45982110d58c5fedc13cacb2f9d6cf4b6f7cdbb7ee7d96 17532 
yaz-icu-dbgsym_5.27.1-2_amd64.deb
 dbfebf7a331865eaefbd41101af4f582901c03ccc656b215e35494423a43d05a 429796 
yaz-icu_5.27.1-2_amd64.deb
 e1884f1d63f310ca409f24baaec032d84b6639a67a9cc80f78cc1def73e59535 46468 
yaz-illclient-dbgsym_5.27.1-2_amd64.deb
 6f04484dd66eccb716d40a925c2381d3f613921163ea54c98bdc4ef7705b8aaf 428804 
yaz-illclient_5.27.1-2_amd64.deb
 cb1861af84364294e791b01596f75013fd6c6281c239a38eb9a28696da747bb8 8745 
yaz_5.27.1-2_amd64.buildinfo
 74f363db30c4026475d33fb17d34ef291798f7d36c363ee796e0ed6cf4b7f2fe 521140 
yaz_5.27.1-2_amd64.deb
Files: 
 cc254f66b7047b1f3d6760fc9459d1cc 2273 utils optional yaz_5.27.1-2.dsc
 e100ec788ddee3bf37dad4e842858ab3 20476 utils optional 
yaz_5.27.1-2.debian.tar.xz
 9f11cdac427b1c21dff48aed3534cef3 9270 utils optional 
yaz_5.27.1-2_source.buildinfo
 b7c24b13aa07d6e7a977dc4d6d6de1e9 1039520 libdevel optional 
libyaz-dev_5.27.1-2_amd64.deb
 58d2a12ddf491ca6d32568ed43be7ad7 1718040 debug optional 
libyaz5-dbgsym_5.27.1-2_amd64.deb
 058aa7d6831950f8fd7061541009a53d 836752 libs optional 
libyaz5_5.27.1-2_amd64.deb
 9e8f5610ec3efc446280397435a80dec 354048 debug optional 
yaz-dbgsym_5.27.1-2_amd64.deb
 2f5db145de2f9396d90f738464b7c814 625568 doc optional yaz-doc_5.27.1-2_all.deb
 5d7e9aa1b5ef485d72562ac29f1326d5 17532 debug optional 
yaz-icu-dbgsym_5.27.1-2_amd64.deb
 c5e78b5d642321acf8613289cdbb1c86 429796 utils optional 
yaz-icu_5.27.1-2_amd64.deb
 b683b06a5786eac21662d5b4f7173102 46468 debug optional 
yaz-illclient-dbgsym_5.27.1-2_amd64.deb
 c0ba45a68213c7fc21b937ac0e680754 428804 utils optional 
yaz-illclient_5.27.1-2_amd64.deb
 20170d3ef6f529629a6aa98f23d9b0ac 8745 utils optional 
yaz_5.27.1-2_amd64.buildinfo
 98a7cf032bc1ab9f5018d2df1b31b566 521140 utils optional yaz_5.27.1-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlw8hB8ACgkQlkfeY37H
t1Fd2xAAnWQCidZB6RVCBKP4CN6mAh44/PwXMVqbl2zwmgiMjpH9yn3KS/itu/ao
RW9yqVq8wttwK2SDKVr0+099W52b8F4rcN/lN5MWsNajGxwtBwFKK6Ms9ckV2a+3
ucbw6it8sksRH1yv+A8sYj+o7mslyw02kGpSO1AmgpcS8EZZKOkGVGiCSY6/9zpX
tnbFlvRJ7iSE0wxl6raOtNN9GDv8wOncWGSDAqwPAvBobZLzV/3XNNRWqHtaOcl+
2OjAOHgCrFu1GxJKPbTnD+Q8ZVF2T38f6EsJ3Xd1BBjjGtntE4BqJKbZK4/S3Mhv
w23uAER9DwSPX2Je/dvEpRKkkKUcKKf9E5JgbK3TnufkqBbVFAgXslWAw5K6I4iV

Accepted yaz 5.27.1-1 (all amd64 source) into experimental, experimental

2019-01-08 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 28 Dec 2018 14:16:26 +0100
Source: yaz
Binary: libyaz5 yaz yaz-doc libyaz-dev yaz-illclient yaz-icu
Architecture: all amd64 source
Version: 5.27.1-1
Distribution: experimental
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 880358 889571 915369 915394
Description: 
 libyaz5- YAZ Z39.50 toolkit (runtime files)
 libyaz-dev - YAZ Z39.50 toolkit (development files)
 yaz-doc- YAZ Z39.50 toolkit (documentation)
 yaz-icu- command line utility for ICU utilities of YAZ
 yaz-illclient - utility for ISO ILL of YAZ
 yaz- utilities for YAZ Z39.50 toolkit
Changes:
 yaz (5.27.1-1) experimental; urgency=medium
 .
   [ Vincent Danjean ]
   * New upstream release (long overdue) (Closes: #915369):
 - The PKG_PROG_PKG_CONFIG macro is now used, allowing yaz to cross-build
   from source (Closes: #880358).
 - pkg-config is now used to detect icu (Closes: #915394).
 - yaz-client no longer suffers a segmentation fault when connecting via a
   UNIX socket (Closes: #889571).
   * debian/control:
 - use the virtual package debhelper-compat to specify dh level
 - make libyaz-dev provide libyaz4-dev and upload to experimental
   so that build-rdeps can be checked
 .
   [ Hugh McMaster ]
   * Add debian/compat file, specifying compatibility level 11.
   * debian/control:
 - Remove trailing whitespace.
 - Raise Standards-Version to 4.3.0 from 3.9.5.
 - Switch to Priority: optional.
 - Update build dependencies.
 - Update Homepage field.
 - Remove alternative dependency on libicu36-dev.
 - Update for transition to libyaz5.
 - Update for transition to libyaz-dev.
 - Mark libyaz5 Multi-Arch: same.
 - Mark yaz-doc Multi-Arch: foreign.
   * debian/patches:
 - Remove for-upstream_fix-typo.diff and from-upstream_mips-bugfix.diff
   (no longer needed).
 - yaz-spelling-fixes.patch: Fix spelling errors in various files.
   * debian/rules:
 - Add 'hardening=+all' to DEB_BUILD_MAINT_OPTIONS.
 - Remove un-needed DH_OPTIONS variable.
 - Sort debhelper overrides.
 - Remove manual call to autoreconf.
 - Drop unsupported configure flags.
 - Remove un-needed dh_auto_install override and directory rename.
 - Ensure the package documentation is installed in yaz-doc.
 - Add dh_missing override.
 - Hide excessive warnings when calling dh_shlibdeps.
 - Do not install the (non-existant) README file into all packages.
 - Build with debugging/symbol information.
   * debian/watch: Use uscan version 4.
   * Update symbols file for yaz 5.27.1.
   * libyaz5:
 - Rename libyaz4.install to libyaz5.install.
 - Install the shared library symbolic links into a multi-arch libdir.
 - Rename libyaz4.symbols to libyaz5.symbols.
   * libyaz-dev:
 - Rename libyaz4-dev.install to libyaz-dev.install.
 - Drop debian/tmp path prefix from the install file.
 - Use multi-arch paths in the install file.
 - Move manpages from the install file into a manpages file.
 - Install README.md.
   * yaz:
 - Drop debian/tmp path prefix from the install file.
 - Move manpages from the install file into a manpages file.
 - Add binary and manpage entries for yaz-record-conv.
   * yaz-doc:
 - Rename yaz-doc.install to yaz-doc.docs.
 - Simplify list of files to install.
 - Add doc-base registration file.
   * yaz-icu:
 - Drop debian/tmp path prefix from the install file.
 - Move manpages from the install file into a manpages file.
   * yaz-illclient:
 - Drop debian/tmp path prefix from the install file.
 - Move manpages from the install file into a manpages file.
   * Only install the NEWS file into libyaz-dev and yaz-docs.
Checksums-Sha1: 
 638deae9ad705a89dc351ddd608ff9668e0aa373 2273 yaz_5.27.1-1.dsc
 1b642a8ca2fa58ab8db0beca6801667758f0d820 2578009 yaz_5.27.1.orig.tar.gz
 740eec2351d2ff3e1261ed095d8454a685b80aa8 20336 yaz_5.27.1-1.debian.tar.xz
 f871b7b62e2cee758220dc43e7ce94b2ab6535fa 9233 yaz_5.27.1-1_source.buildinfo
 85377d51d9ab538f5c167e5e86eef7edf0ee50eb 1040456 libyaz-dev_5.27.1-1_amd64.deb
 7d9417f0467570e91b1eb520ecc92aeed3487de4 1718164 
libyaz5-dbgsym_5.27.1-1_amd64.deb
 73ea929fad873b6d2da20035bba5f55bc3caec05 837028 libyaz5_5.27.1-1_amd64.deb
 d24f375dd76e0532a4254876816df422ec9e3b6a 353800 yaz-dbgsym_5.27.1-1_amd64.deb
 179125f5dbe40ee3bc267a5426cb308bcf9de3e4 625572 yaz-doc_5.27.1-1_all.deb
 8dd869a76d49f33fe0a8d2e570916adaa1b6843f 17532 
yaz-icu-dbgsym_5.27.1-1_amd64.deb
 50acc102f76ea2ec9ca0e4b1c4ed5201e25a44e7 429748 yaz-icu_5.27.1-1_amd64.deb
 a1864041765b83a48d5f7d833e3bf3673395de1b 46464 
yaz-illclient-dbgsym_5.27.1-1_amd64.deb
 e4c928432b481000a763e56d8b09ffe5cf92fd7a 428736 
yaz-illclient_5.27.1-1_amd64.deb
 9358fa0c8eafaa6bb85359bbe7c824245fb7496d 8735 yaz_5.27.1-1_amd64.buildinfo
 214e3f20c0494f9e6bc8d08f69edf3e4fb441cab 521512 yaz_5.27.1-1_amd64.deb

Accepted oar 2.5.8-1 (all amd64 source) into unstable

2019-01-04 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 04 Jan 2019 21:06:58 +0100
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.8-1
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron 
Changed-By: Vincent Danjean 
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.8-1) unstable; urgency=medium
 .
   [ Pierre Neyron ]
   * New upstream release
   * Remove patches as they were applied upstream
   [ Vincent Danjean ]
   * Switch to dh 12
   * Bump Standards-Version (no change needed)
Checksums-Sha1: 
 b259fb60704769501d1578bfbc974427a97f7c63 2481 oar_2.5.8-1.dsc
 8ceb265a01a68e58289fefc56134dc48368d0a2e 4676802 oar_2.5.8.orig.tar.gz
 1b3b6f615ccd8e9e5a0031660c805152f3b9941f 11036 oar_2.5.8-1.debian.tar.xz
 49d769735f2b1d18599b1fcd76d021f5c70ef342 8254 oar_2.5.8-1_source.buildinfo
 ca50b10adc84571e32e3eb597af50710298db40f 80580 liboar-perl_2.5.8-1_amd64.deb
 6e21f45766ad11720edbcc1ced2c3f35d1db36c3 11004 
oar-common-dbgsym_2.5.8-1_amd64.deb
 a7632a8d378a04e7f12c05a0fc95d4854ac6bcd0 66568 oar-common_2.5.8-1_amd64.deb
 4c823d94efdd195f7ab863de173cfb0f5535898d 2835328 oar-doc_2.5.8-1_all.deb
 f2e0fa1a8c8339f07567778a01c171530d615c85 34288 oar-node_2.5.8-1_amd64.deb
 d9f8d69557476dcfb004c2fcd08f114cd0fe651f 6880 
oar-restful-api-dbgsym_2.5.8-1_amd64.deb
 687c0d257e39d6fa06b15a34571db57d220db358 56696 
oar-restful-api_2.5.8-1_amd64.deb
 2104699cd0557128511a10d1cb78a7ba102879fa 13740 
oar-server-dbgsym_2.5.8-1_amd64.deb
 89585bf3d1c3d68761208f85b94420426e9a73c3 22144 
oar-server-mysql_2.5.8-1_amd64.deb
 bf49f05e2959d2945a0f3a72ad3927a565978f5e 22140 
oar-server-pgsql_2.5.8-1_amd64.deb
 eb37d7ccb2f5ccd4d70a2140b2507e9d8a0b5aa1 155188 oar-server_2.5.8-1_amd64.deb
 5df218efdd105a20c1b97ad552c09d106b624eff 10924 
oar-user-dbgsym_2.5.8-1_amd64.deb
 85f4782f92c160073eb736ccf85af542a33bb799 22104 oar-user-mysql_2.5.8-1_amd64.deb
 b189063ff6882cde561ee1371cbc049ea4acfcf1 22112 oar-user-pgsql_2.5.8-1_amd64.deb
 0c8abe445847d25aeb593268b40d6e2c667e6cb3 74300 oar-user_2.5.8-1_amd64.deb
 1e487d2da3b969d4842422b5d1202995b803d6c8 57520 oar-web-status_2.5.8-1_all.deb
 591228e259f06f8098290da5c60d8d6b7c1fef4d 10394 oar_2.5.8-1_amd64.buildinfo
Checksums-Sha256: 
 3f004c7b22ee61243aa01782d2c395115f126c654e31eadf087f9f9a9da3080e 2481 
oar_2.5.8-1.dsc
 98415f4bc0dc3835e1a9360f8bbda626e5fd350fbd213e6cce77eb0bbb380e45 4676802 
oar_2.5.8.orig.tar.gz
 4ca8b7bd11773198bf54eb5f7a71181c60e53813d7d31d4d65fcb1a7f15c3eb2 11036 
oar_2.5.8-1.debian.tar.xz
 76c802faa73ef8cdba220deec11d7f7ba93f1f62a4c8ce044e9dc3c8a025a3b7 8254 
oar_2.5.8-1_source.buildinfo
 66ed75a6818b74a284c4959e66f9d102aab30d3b3cb95049c4cf72ca30b20f50 80580 
liboar-perl_2.5.8-1_amd64.deb
 3296546c2c3061e1c6d689c5b913099147ba917b523324871e05eea0ee30a643 11004 
oar-common-dbgsym_2.5.8-1_amd64.deb
 7e8cd6a004794318272ffac250cd57e43b08a6915cf968912da18565f5e26202 66568 
oar-common_2.5.8-1_amd64.deb
 b14956c18e2ea3f52accd67a395b431d58da944770e1476f1396a7a0e8edc0cc 2835328 
oar-doc_2.5.8-1_all.deb
 b9bf8a921ba6d2df679bec44d971497f570e515b1a3df0625011a8768a198dcd 34288 
oar-node_2.5.8-1_amd64.deb
 20d303d066d9201062a530736214d078b742527efaa55d69ecbea4b43a2d5d6a 6880 
oar-restful-api-dbgsym_2.5.8-1_amd64.deb
 ff8a232726891d137e3814dd925b0ea3aed7ca8fb43af38a62b06a33449722c9 56696 
oar-restful-api_2.5.8-1_amd64.deb
 6b984b7831a2c2a35c11ef67a2835157fb14b70031573fb1177f7245798d4464 13740 
oar-server-dbgsym_2.5.8-1_amd64.deb
 dbc96e75176e098fc8621823e61657e8f06ce650aa6e88a9a25877cb775394a1 22144 
oar-server-mysql_2.5.8-1_amd64.deb
 3472873c540339a00317dcf6a55e5faf74e8a89b52dedfd7c05037b7033daaf4 22140 
oar-server-pgsql_2.5.8-1_amd64.deb
 b6cdbbc7366a007d95f9df04ef268e62a16f1103092b6239b2dae2664928f832 155188 
oar-server_2.5.8-1_amd64.deb
 e0e0f57db0a1616cd4a2dd76735ea71b5df6fa77a702f30efa22793d7ca4b3d0 10924 
oar-user-dbgsym_2.5.8-1_amd64.deb
 d75e927a3422b9d803f7cc4f2dc516786e4471b59ef89af9e1f9a98f624f91af 22104 
oar-user-mysql_2.5.8-1_amd64.deb
 314014388369aca1709df02be7329bedf80a0136c481ff8c8355b2a26e5ceb30 22112 
oar-user-pgsql_2.5.8-1_amd64.deb
 9fa78fe733da19d44266ce7f28b69570da1ec2e3470a2bf589127f2edab8fb04 74300 
oar-user_2.5.8

Accepted freshplayerplugin 0.3.9-2 (amd64 source) into unstable

2018-12-26 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 26 Dec 2018 08:46:13 +0100
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash
Architecture: amd64 source
Version: 0.3.9-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 916834
Description: 
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.9-2) unstable; urgency=medium
 .
   * Fix "FTBFS on big-endian architectures: test fails" using a
 upstream patch (thanks Rinat Ibragimov) (Closes: #916834)
Checksums-Sha1: 
 f1f9be5855f17a555d6cf3efe7d653bda5a742d2 2382 freshplayerplugin_0.3.9-2.dsc
 3c46f568fcea9e36f8ae72f59ded403bf4f9e78c 11288 
freshplayerplugin_0.3.9-2.debian.tar.xz
 251ff001952e0e062f79f7438b0408b743688c8b 16207 
freshplayerplugin_0.3.9-2_source.buildinfo
 bebd167a5af6cf2e4cf2087cc3922c323efc09ca 5034624 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-2_amd64.deb
 10958a3a12b193cef67e58c31a8af3f2905c97fb 369356 
browser-plugin-freshplayer-pepperflash_0.3.9-2_amd64.deb
 941485a59a3ce755f573c2d2bcc7b8e718bd4799 14451 
freshplayerplugin_0.3.9-2_amd64.buildinfo
Checksums-Sha256: 
 b5a7bb7c73840702482884a2ce62545f99211873a18a4982841a038f8001adb7 2382 
freshplayerplugin_0.3.9-2.dsc
 6e0bff3782eb293a6e72d1a74d1d8113c08f0b5c8d073f5dc6c8b7a322618c35 11288 
freshplayerplugin_0.3.9-2.debian.tar.xz
 28b493482e2982d93fd2067fd7248b66c5df8b9391f99a22c2a50c4f40c65bad 16207 
freshplayerplugin_0.3.9-2_source.buildinfo
 10acba7f2f9b2d23a3e49853df60036ce53b9f46cc3d402460770e014636a34f 5034624 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-2_amd64.deb
 77c824740e621b629fa65a55f288064ae8d60e1354350a441782c64ed56e16e2 369356 
browser-plugin-freshplayer-pepperflash_0.3.9-2_amd64.deb
 a4b099e6a2b75d1b5bda3c3ec1cd5887714a977b67f7465c89632cbd12a2d7b0 14451 
freshplayerplugin_0.3.9-2_amd64.buildinfo
Files: 
 9407c775e748f6659107385821a10fbf 2382 contrib/web optional 
freshplayerplugin_0.3.9-2.dsc
 03097068d882da47e9042b20cc51056d 11288 contrib/web optional 
freshplayerplugin_0.3.9-2.debian.tar.xz
 9d4a3cba2fc5c129b1fd7fe17315ae70 16207 contrib/web optional 
freshplayerplugin_0.3.9-2_source.buildinfo
 a0ac18fac893c5fb272b96524ac13543 5034624 contrib/debug optional 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-2_amd64.deb
 96ea71b030b99dc7db757e9e83cb32d1 369356 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.9-2_amd64.deb
 574871e5c7cc2c53a2a7abc0985bb9a1 14451 contrib/web optional 
freshplayerplugin_0.3.9-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlwjNJMACgkQlkfeY37H
t1GjXQ//V2x79NVyQ4V3K2TaLmrHQHd31HnlcLQeSFw6lDcFDhrmnlCJ64uaYKL7
lpsrmBNqZ2oXrMa7fXXNjFoKS126fQgKuVmKDMNeeX9bnaNgb0UB/D7mHtdELRAW
zhLOEFzFULlsIOjEsZlnokM5vvieFV0XcXMn413FHQ90Q8xqZORiPCfzqepDS41r
pmVFr4IGZY8wwVCDWT6N+tLCs2iCOT2Zxv+jnr/hyqxf4ybReUPBvJzCT8gxZGhW
K1cGtbCp6P3hgYNVe7oGuOnj4zbw2rdUA4kac6ISOjHkaEmOwoGfCAkTsWObnLGe
mBDN2vKQWWqA2GE5pa+zpcvb5HfQscjNZLF+aV6cJaZqW8CMiA8qAnMOYFqNww7W
mnwS6l1Qejyl671P/SGYsSsYhJ6h+PpDm7S1rbA5uwiFHN4Y6eNHs9hwwPZ5+6RP
abRo0WCWbcGy930sjDEABwh+hv7HwupXkoZExE83dMLO6al1KZbZHcS+qlrdI7LF
V411is2+e6fAeABxrD+Y83Zrv1AICDctTDqHnlvisG20+iUIEPzXyuXb89zWw1WK
KTiDhk9ylD+fd/BB3OJ75KAuzX2LWeZ9CEkfgaZgJg6JdwviZCYQhT5p1LIMefyk
WyDvaJtAFtQ6iB6TJjBvCmmG0zlgEtDag+wuR+Bh9j9Sy+ngbDk=
=2z4O
-END PGP SIGNATURE-



Accepted owfs 3.2p3+dfsg1-2 (all amd64 source) into unstable

2018-12-18 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 18 Dec 2018 20:48:32 +0100
Source: owfs
Binary: owfs-common owfs libow-3.2-3 libowcapi-3.2-3 libow-dev libownet-3.2-3 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php7 
libownet-php libow-perl libownet-perl python-ow python3-ow python-ownet 
python3-ownet libow-tcl owfs-doc
Architecture: all amd64 source
Version: 3.2p3+dfsg1-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 916559
Description: 
 libow-3.2-3 - 1-Wire File System full library
 libowcapi-3.2-3 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.2-3 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php7 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python3-ow - Dallas 1-wire support: Python 3 bindings
 python3-ownet - Python 3 module for accessing 1-wire networks
 python-ow  - Dallas 1-wire support: Python 2 bindings
 python-ownet - Python 2 module for accessing 1-wire networks
Changes:
 owfs (3.2p3+dfsg1-2) unstable; urgency=medium
 .
   * Fix python raise syntax to support python3 (Closes: #916559)
Checksums-Sha1: 
 9e3ccb1b6d095133351d3b87cbbf3695aadca847 3225 owfs_3.2p3+dfsg1-2.dsc
 e42f1d2df928c2c69c709d6b4044e080a511c489 21496 owfs_3.2p3+dfsg1-2.debian.tar.xz
 b466f1a30b998a3344c09f6f13ee534b86f38677 10593 
owfs_3.2p3+dfsg1-2_source.buildinfo
 440ed2374ab448c76a6ce07ef1b0f3cf7d590701 1762236 
libow-3.2-3-dbgsym_3.2p3+dfsg1-2_amd64.deb
 61492acda3d1b60ec4918bbef1361a8fd2464ae7 311392 
libow-3.2-3_3.2p3+dfsg1-2_amd64.deb
 efde28cb77ddae9288309cded074d1128e14fd8a 17268 
libow-dev_3.2p3+dfsg1-2_amd64.deb
 89cedd85a3da48105b2052626a2e0789acd0ed64 60364 
libow-perl-dbgsym_3.2p3+dfsg1-2_amd64.deb
 619128bdf289f0533782d2bb40ddb6e2be26ccf8 20592 
libow-perl_3.2p3+dfsg1-2_amd64.deb
 552d79f47b8cfe16a7fb3974ec791633d8458e12 43856 
libow-php7-dbgsym_3.2p3+dfsg1-2_amd64.deb
 cd7aedd1c3835ff110d672f9fc0ef925fd556e1f 14176 
libow-php7_3.2p3+dfsg1-2_amd64.deb
 f0a18cc389c37444f5b2609631d2a46054422ac7 48324 
libow-tcl-dbgsym_3.2p3+dfsg1-2_amd64.deb
 63087517db322dbf355f0cb1a1e358c67c976227 20640 
libow-tcl_3.2p3+dfsg1-2_amd64.deb
 bdd03e18064c4e24b5f090d66fe807bc3ac3c07d 20752 
libowcapi-3.2-3-dbgsym_3.2p3+dfsg1-2_amd64.deb
 7b4a16f62ad6e3a18f620eadbcf367843d31ca3d 12200 
libowcapi-3.2-3_3.2p3+dfsg1-2_amd64.deb
 6b73b6dd07132367781bb09aace89a9069933c2f 69056 
libownet-3.2-3-dbgsym_3.2p3+dfsg1-2_amd64.deb
 a904a0e7003720ccaf962e549256c1673c5a3522 25784 
libownet-3.2-3_3.2p3+dfsg1-2_amd64.deb
 eec9c19a6c8883796de632fa3eab46411c817c24 16076 
libownet-dev_3.2p3+dfsg1-2_amd64.deb
 1d58e4ea0be2f9507df12946c40aaaec488b6f45 30060 
libownet-perl_3.2p3+dfsg1-2_all.deb
 78c532fa7867225afd2c47d251e51137cf8a6f5f 17836 
libownet-php_3.2p3+dfsg1-2_all.deb
 bba4551b236243243d02d8f63a83e5b174f0b82c 303304 
ow-shell-dbgsym_3.2p3+dfsg1-2_amd64.deb
 df210f935a74f3f2794264779925fe9073ac2923 33948 ow-shell_3.2p3+dfsg1-2_amd64.deb
 cd7636f0e9e6518b3fa62ac4fa7f459ec9f1b1a5 28744 ow-tools_3.2p3+dfsg1-2_all.deb
 f049aee07d6a19948300ace6f9a0e62ad24795b3 17564 
owfs-common_3.2p3+dfsg1-2_all.deb
 b79e52ef08f6d775e46d473351ead3b568aed7a0 201436 owfs-doc_3.2p3+dfsg1-2_all.deb
 70e1feef1b40e773ae9a08592cf1c968415cf646 42196 
owfs-fuse-dbgsym_3.2p3+dfsg1-2_amd64.deb
 547e8a3586ef979660ec05fd1e85eb6191e0cad4 23928 
owfs-fuse_3.2p3+dfsg1-2_amd64.deb
 2957df25fe9281cbed67371156bbf32726381e55 9248 owfs_3.2p3+dfsg1-2_all.deb
 e35641229947f7e981443de158702f28ac80e81b 18361 
owfs_3.2p3+dfsg1-2_amd64.buildinfo
 5450a56172e88e3faafdff5438e4d3c6f6d29202 131272 
owftpd-dbgsym_3.2p3+dfsg1-2_amd64.deb
 9d7ba4adecd166e5e1f2f5535f31104a63617e57 49308 owftpd_3.2p3+dfsg1-2_amd64.deb
 c5d861e232c79370b7c3229de87a7b772b2ffca2 87972 
owhttpd-dbgsym_3.2p3+dfsg1-2_amd64.deb
 e373e9b7cdb9368259a63feb10d4ab4d2a7ccc46 33100 owhttpd_3.2p3+dfsg1-2_amd64.deb
 6fd8316b5faae376f4a72c2590f1562ee5311bc1 87380 
owserver-dbgsym_3.2p3+dfsg1-2_amd64.deb
 844e8d1584033627e5308637bd2151c5f8360de3 32984 owserver_3.2p3+dfsg1-2_amd64.deb
 9f262b42f7e7f36e60b03a677d183fe6591ca5c6 50868 
python-ow-dbgsym_3.2p3+dfsg1-2_amd64.deb
 31bc82d8312f5381be2d5713d030a1673b0962c3 33240 
python-ow_3.2p3+dfsg1-2_amd64

Accepted oar 2.5.8~rc8-3 (all amd64 source) into unstable

2018-12-13 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 13 Dec 2018 22:17:30 +0100
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.8~rc8-3
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron 
Changed-By: Vincent Danjean 
Closes: 916304
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.8~rc8-3) unstable; urgency=medium
 .
   * Really fix Makefile for parallel builds (Closes: #916304)
Checksums-Sha1: 
 9694cb9cebc48596d289783b0671de015e9d725d 2509 oar_2.5.8~rc8-3.dsc
 0086154b8c8085c6ab85150999f6cba0acc43cfc 11552 oar_2.5.8~rc8-3.debian.tar.xz
 e329b062e50f60043ae0c2e60f77e4b6f7f1cdce 8240 oar_2.5.8~rc8-3_source.buildinfo
 6a82af8dd80129e3931fddd2842b6e7e83246b2a 80444 
liboar-perl_2.5.8~rc8-3_amd64.deb
 7a6c4e92bd383875bffc83f61f740415fca376ee 13120 
oar-common-dbgsym_2.5.8~rc8-3_amd64.deb
 dfb63f3033eb7a2587bcb865c8f74982cbc653fa 66348 oar-common_2.5.8~rc8-3_amd64.deb
 33d800d26b63e5e3a650091f2618b0fd1d9cb731 2835252 oar-doc_2.5.8~rc8-3_all.deb
 9b3bfd7098a1a40dc413e77acc65403b39340baa 34204 oar-node_2.5.8~rc8-3_amd64.deb
 31212252eef424f24c435ded3c8d4517509e9c3e 8552 
oar-restful-api-dbgsym_2.5.8~rc8-3_amd64.deb
 ca24535c5b16f23b46e9a97edc4c8cd721f0d8f1 56580 
oar-restful-api_2.5.8~rc8-3_amd64.deb
 7df03f851d28ea6be2e90637cb7a8b555d539a50 27808 
oar-server-dbgsym_2.5.8~rc8-3_amd64.deb
 86ee5849483e290bcf8fd88944846c06356bfc32 22100 
oar-server-mysql_2.5.8~rc8-3_amd64.deb
 57b1ae5fd3c2bd6e08b4e6380e73c609a8bffd4d 22088 
oar-server-pgsql_2.5.8~rc8-3_amd64.deb
 1d64cafa6f2519269f1b16b5fa7b50b7707a95ae 155008 
oar-server_2.5.8~rc8-3_amd64.deb
 f7539ddd3d2d5e525d2fc547cd324e7caec87628 21104 
oar-user-dbgsym_2.5.8~rc8-3_amd64.deb
 34fa98884ae52befd666eb5ea667c221e916bab4 22044 
oar-user-mysql_2.5.8~rc8-3_amd64.deb
 d1cd222c8dcb397bd54275f1dcaafd7ec6b23afe 22048 
oar-user-pgsql_2.5.8~rc8-3_amd64.deb
 188467c1a87a7317d5e7c3af238a0e9a7fec4168 74160 oar-user_2.5.8~rc8-3_amd64.deb
 6c16c10427e3db4253388438fd2caec535ef8b7d 56724 
oar-web-status_2.5.8~rc8-3_all.deb
 e37f802d4d8e369c5a22ff84b5af9b15720376e3 10570 oar_2.5.8~rc8-3_amd64.buildinfo
Checksums-Sha256: 
 4f0dfd281ba4a85c8d31fe27a9968d02f0a67acdbfdae36a7f573548fd40362b 2509 
oar_2.5.8~rc8-3.dsc
 3534aa6e15fb0be780fe329eec866f3604d410a20bb800d2e98daa8f89d1b71b 11552 
oar_2.5.8~rc8-3.debian.tar.xz
 a8cacfed481fe03911919f23124fdfbc36ed5c7bfff4f3b2b9a6a598c383ba8e 8240 
oar_2.5.8~rc8-3_source.buildinfo
 c591343d3ec9f767c6afbed85ead30015888fe708e66959aebafb4562ad44f62 80444 
liboar-perl_2.5.8~rc8-3_amd64.deb
 5ebad659a10bcc747cbac85fa349a01698744992cfe6d10572213ac9cccb6dfe 13120 
oar-common-dbgsym_2.5.8~rc8-3_amd64.deb
 a75f7361f6f72a3c33d993c07ff973fbef6535c06ebadf5cd0f1b8b83f3cea62 66348 
oar-common_2.5.8~rc8-3_amd64.deb
 95e8e01451bd77849e2bf891afed9eb73727766d51613f4583e3caa984ddb090 2835252 
oar-doc_2.5.8~rc8-3_all.deb
 d713714732838f3d55c32442424b63ea05ab8f36c108da72f9984311f307c1e8 34204 
oar-node_2.5.8~rc8-3_amd64.deb
 5c1df36066c12cb9398cb43416a7eb66f2b87bda7a7f96455a069870e7c8931a 8552 
oar-restful-api-dbgsym_2.5.8~rc8-3_amd64.deb
 fc01e36f238db2f08947e2286a32771ced6d05b4fe3c221cf23fcb1f1470 56580 
oar-restful-api_2.5.8~rc8-3_amd64.deb
 d4a5b220e5700d7cbf67f1d5f744e2bc653b3256292d9bbe84fd57654fc935c9 27808 
oar-server-dbgsym_2.5.8~rc8-3_amd64.deb
 a8982670b72db227b561697cdc0d9ad04ea56c9c7866b54420cfb2aeb2c774e2 22100 
oar-server-mysql_2.5.8~rc8-3_amd64.deb
 d879b08e79da3d9f4d93e5e371f2b9e4841ca4dc8e073314d723d01fadf33df4 22088 
oar-server-pgsql_2.5.8~rc8-3_amd64.deb
 ba2b4d503c692fc3df732b5a04fd5d8d12d781242e56bfe170d1fa1f8a315c3d 155008 
oar-server_2.5.8~rc8-3_amd64.deb
 b55036d646051c1263d953f57007938aeee888d6d5d3ff9532f590dbe83553e0 21104 
oar-user-dbgsym_2.5.8~rc8-3_amd64.deb
 def24388df6c661b47eca965d77e6e821ace216f4c3467d5d02104ed44f92147 22044 
oar-user-mysql_2.5.8~rc8-3_amd64.deb
 7aa3fc90fa189300edc8823f1b405457e631e1efcb15b3d9fe18d870d91c63f6 22048 
oar-user-pgsql_2.5.8~rc8-3_amd64.deb
 1a0dcbee0ea7cb8e6545509be44ad46d18aa04de012a2793255f898b421d894d 74160 
oar-user_2.5.8~rc8-3_amd64.deb
 860127aa41cc8cd89a10c36fa5484e26e89ecf42f8b5523d9453499a321d1264 56724 
oar-web-status_2.5.8~rc8

Accepted owfs 3.2p3+dfsg1-1 (all amd64 source) into unstable, unstable

2018-12-13 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 11 Dec 2018 20:36:42 +0100
Source: owfs
Binary: owfs-common owfs libow-3.2-3 libowcapi-3.2-3 libow-dev libownet-3.2-3 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php7 
libownet-php libow-perl libownet-perl python-ow python3-ow python-ownet 
python3-ownet libow-tcl owfs-doc
Architecture: all amd64 source
Version: 3.2p3+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 913105
Description: 
 libow-3.2-3 - 1-Wire File System full library
 libowcapi-3.2-3 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.2-3 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php7 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python3-ow - Dallas 1-wire support: Python 3 bindings
 python3-ownet - Python 3 module for accessing 1-wire networks
 python-ow  - Dallas 1-wire support: Python 2 bindings
 python-ownet - Python 2 module for accessing 1-wire networks
Changes:
 owfs (3.2p3+dfsg1-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/watch: Use https protocol
 .
   [ Vincent Danjean ]
   * Add Debian CI
   * d/watch: switch to github
   * Add support for python3
 .
   [ upstream ]
   * v3.2p3 is mainly a bugfix & cleanup release.
   * New Functions
 + Added owcapi "OW_visible" method
 + PHP7 support
 + Add pkg-config entry for owcapi
   * Minor Fixes
 + Fixed OW_init() fail when parsing command line options before calling it
 + Fix glibc major() compat (Closes: #913105)
 + Fix uninstall in certain modules
 + Portable getpagesize
 + Fix generation of OW.pm
 + Add explicit avahi include dir, when enabled
 + Typos in manpages
Checksums-Sha1: 
 5d9bb994b6653c4995591aebbca4a793b23f 3225 owfs_3.2p3+dfsg1-1.dsc
 6e5eeecd9556979ecd0b1f161bdc47d62aa74e6b 837452 owfs_3.2p3+dfsg1.orig.tar.xz
 62cc0059c24fb94c37481c118f6a2c4b18b9a165 20252 owfs_3.2p3+dfsg1-1.debian.tar.xz
 a4497b18ee6a9f07ff3027224e5bab199c8098c7 10593 
owfs_3.2p3+dfsg1-1_source.buildinfo
 d9d197ef7b750c4942d1caa33fbcfa3b7c026115 1762228 
libow-3.2-3-dbgsym_3.2p3+dfsg1-1_amd64.deb
 2fb3375c6b564cf25687638ea80bd3e85da46ff1 311636 
libow-3.2-3_3.2p3+dfsg1-1_amd64.deb
 5c1c6e52c2db46fd0d2e36121aa44355e928126f 17240 
libow-dev_3.2p3+dfsg1-1_amd64.deb
 0d245e22854da1889cd671d14ba09ba9fec38a8d 60364 
libow-perl-dbgsym_3.2p3+dfsg1-1_amd64.deb
 3216d148be0c022d716796130eb5ae018d79c1df 20568 
libow-perl_3.2p3+dfsg1-1_amd64.deb
 fcd49838e38726fd6a8d082f2ec5d80469eeea92 43856 
libow-php7-dbgsym_3.2p3+dfsg1-1_amd64.deb
 b02cd5576bf18e75592910b99df126c8c7f1eef7 14140 
libow-php7_3.2p3+dfsg1-1_amd64.deb
 74673dd0c6945c0727ac3fae115034af0411e5c7 48328 
libow-tcl-dbgsym_3.2p3+dfsg1-1_amd64.deb
 356d239b134acca90e98c55ed345f8e0b0127c56 20616 
libow-tcl_3.2p3+dfsg1-1_amd64.deb
 9e7cc78ee92ff8990c03984ba930ea6e02959156 20752 
libowcapi-3.2-3-dbgsym_3.2p3+dfsg1-1_amd64.deb
 9996383361b8b26af0b83fc9c92f5e27f6f38c08 12172 
libowcapi-3.2-3_3.2p3+dfsg1-1_amd64.deb
 29ef21f765ac3c2e8cf12f42a31e61562aa9f9ed 69044 
libownet-3.2-3-dbgsym_3.2p3+dfsg1-1_amd64.deb
 31ab4e6c7a6119d1dbfb57f0f139ef894de6a0c7 25680 
libownet-3.2-3_3.2p3+dfsg1-1_amd64.deb
 b6c2d8b3411e9ec17f3805864c25cb9d184548f2 16044 
libownet-dev_3.2p3+dfsg1-1_amd64.deb
 b99db0111094b945e7a2d1d2cceeac60669678e5 30016 
libownet-perl_3.2p3+dfsg1-1_all.deb
 6c55ff09db92489b162c5f8b999e99e34ac51517 17804 
libownet-php_3.2p3+dfsg1-1_all.deb
 1d65d3c5d8b537ad9a8ec8262eaba01be4c00c51 303388 
ow-shell-dbgsym_3.2p3+dfsg1-1_amd64.deb
 b4287ab511b677e8b56a4ed15de5e71230fc00b6 33900 ow-shell_3.2p3+dfsg1-1_amd64.deb
 6dab88d3d4ab8f26875b377033c0e0c9741814b6 28704 ow-tools_3.2p3+dfsg1-1_all.deb
 66aa02183bac8026c35f86dc300a05e7be78f728 17532 
owfs-common_3.2p3+dfsg1-1_all.deb
 c1fea3f7e12f4fd83849edfb098a72d398f89757 201356 owfs-doc_3.2p3+dfsg1-1_all.deb
 97695ba43623104b21015e6676a5a2ae8d6486db 42192 
owfs-fuse-dbgsym_3.2p3+dfsg1-1_amd64.deb
 078d5ae9335ce9a8efd48db2652d72972f4db4ce 23908 
owfs-fuse_3.2p3+dfsg1-1_amd64.deb
 25d0293f2233d70d4bc1b3a84f7bd1913f7040ba 9208 owfs_3.2p3+dfsg1-1_all.deb
 46b234c4788b81950a4cafbdf7d4a358b3bbffa1 18308 
owfs_3.2p3

Accepted oar 2.5.8~rc8-2 (all amd64 source) into unstable

2018-12-07 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Dec 2018 15:28:18 +0100
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.8~rc8-2
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron 
Changed-By: Vincent Danjean 
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.8~rc8-2) unstable; urgency=medium
 .
   * Refresh packaging
   * Bash snipsets to be sourced are not binaries
   * Fix Makefile dependencies for parallel builds
 .
 oar (2.5.8~rc8-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc7-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc6-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc5-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc4-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc3-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc2-1) unstable; urgency=medium
 .
   * New upstream release candidate
 .
 oar (2.5.8~rc1-1) unstable; urgency=medium
 .
   * New upstream release candidate
Checksums-Sha1: 
 120755e3eb6530467785f08880d1fde0b0ad2774 2509 oar_2.5.8~rc8-2.dsc
 cd05c092c1c98f408107cd3976205b78a0f2de95 4673880 oar_2.5.8~rc8.orig.tar.gz
 f92d3e1f857c214de5e23bc176aa914eed0faf1d 11300 oar_2.5.8~rc8-2.debian.tar.xz
 06a858fa57e73a18101025df84c1d6e9176766d6 8240 oar_2.5.8~rc8-2_source.buildinfo
 78e3935178f6f56d294db0b129ba466cd84c791e 80404 
liboar-perl_2.5.8~rc8-2_amd64.deb
 3b160411bc680f943f3689f121646ea9d709ff0b 12900 
oar-common-dbgsym_2.5.8~rc8-2_amd64.deb
 c25549392f55abfe4f27caf6625c631568cb6686 66324 oar-common_2.5.8~rc8-2_amd64.deb
 32a1c95aa4d6ad53dc60171542c2297c2db6f148 2835344 oar-doc_2.5.8~rc8-2_all.deb
 4b80bed53252c2d9583eb8f8bb3855de8f07fbc9 34164 oar-node_2.5.8~rc8-2_amd64.deb
 49dd3935387df91895e5961751fc3d2b613d6a38 8512 
oar-restful-api-dbgsym_2.5.8~rc8-2_amd64.deb
 1adecdc666bf05ac51347cf7e0623856855ebb32 56552 
oar-restful-api_2.5.8~rc8-2_amd64.deb
 4b29f48bbc16d0966be96d5e7408ae3d1a7eda91 27540 
oar-server-dbgsym_2.5.8~rc8-2_amd64.deb
 d6c347e9fd2405c886e170dfb8379ebc005daa27 22060 
oar-server-mysql_2.5.8~rc8-2_amd64.deb
 318f6d88fdefd9ec57d47847b81f4ec8ed393299 22048 
oar-server-pgsql_2.5.8~rc8-2_amd64.deb
 cd41ef4f444ca95c8a322a8d6e67637e6c334e14 154888 
oar-server_2.5.8~rc8-2_amd64.deb
 7aa6ba6810508bbbfe855e3c1db21084f782491d 21376 
oar-user-dbgsym_2.5.8~rc8-2_amd64.deb
 6d6014f6d75bdefca2604ac4b975b794ee534a64 22020 
oar-user-mysql_2.5.8~rc8-2_amd64.deb
 ec3ca87a01d2b3f13fdb755106540e9548dd48ef 22020 
oar-user-pgsql_2.5.8~rc8-2_amd64.deb
 d91e2290178b3b6b8929b3be41ae98e3a72f9cfa 74120 oar-user_2.5.8~rc8-2_amd64.deb
 369002788e48b7fce1d7d6825e04d9aa2dd3ea39 56700 
oar-web-status_2.5.8~rc8-2_all.deb
 eda9afc2daa0a1ae03fcf4609d1b7aa33d96855a 10570 oar_2.5.8~rc8-2_amd64.buildinfo
Checksums-Sha256: 
 83292072f3994ba27eb9a8616aaa5ccc8a94ed5a829b264bf6fbc52b02c23d6c 2509 
oar_2.5.8~rc8-2.dsc
 9b88b7361f9f65c0168b73ac34ade6645c46f0b215e9a9239d5025d7ff454180 4673880 
oar_2.5.8~rc8.orig.tar.gz
 320bc5d7d314715d976045bfd9532410cf21328ff8ed51a169eefb96d4a853c1 11300 
oar_2.5.8~rc8-2.debian.tar.xz
 b65c0861c91db91e8d6e0e82f65269e1f0efb6b9710a5e0b9c4c7c24ddc04351 8240 
oar_2.5.8~rc8-2_source.buildinfo
 f489b8cafbec0e5d062c15bb7582ac30546ad425bda3d9b3ea0bbaddef739c69 80404 
liboar-perl_2.5.8~rc8-2_amd64.deb
 cad662b7e7e2e57335d5d720c9dd2024838a13ac8953b619286c0a8690a6ca3b 12900 
oar-common-dbgsym_2.5.8~rc8-2_amd64.deb
 8aedeea5231aa3d4f41754be7568319f4ee1de59dfa000d3802813f29f88277e 66324 
oar-common_2.5.8~rc8-2_amd64.deb
 3aed5603f09bcef45be9dc26f15c527578e4d0a4652bc09268668d5b32c4f712 2835344 
oar-doc_2.5.8~rc8-2_all.deb
 b10047ed93642fcf0f9d2c4a0587bce67318f12e4bfa34f79fa409264244bbf9 34164 
oar-node_2.5.8~rc8-2_amd64.deb
 f30edd0e0665466c87623cff0185654dc7a3484793eaf5efeceb40a337f4c329 8512 
oar-restful-api-dbgsym_2.5.8~rc8-2_amd64.deb
 ff0c32b4d047b8ec5d0889d75884ae6d86ba4a9f5087994f4beffed0735e1559 56552 
oar-restful-api_2.5.8~rc8-2_amd64.deb
 50af01ad6e521a68c22e05561193b783e4564be4c0c48de7803f07f4c5965965

Re: Debian CI pipeline for Developers

2018-11-16 Thread Vincent Danjean
Le 16/11/2018 à 21:39, IOhannes m zmölnig (Debian/GNU) a écrit :
> On 11/16/18 3:14 PM, Kentaro Hayashi wrote:
>> package repository, sure we can change the project's setting, but
>> debian/.gitlab-ci.yml seems to be the proper default setting.
> 
> i don't think there is any reason to use a (hidden) dotfile in the
> debian/ directory.
> the default uses a dotfile in order to not clutter the root directory of
> the repository, at least visually (ignoring the fact that the dotfiles
> are still pretty much visibly and having the configuration for all those
> various CI-services in your root - .gitlab-yi.yml, .travis.yml,
> appveyor.yml and what - not is *quite* a clutter).
> 
> so if you put the file in the debian/ directory anyhow, i'd just pick a
> sensible and visible name, like "debian/salsa-ci.yml"

I'm using debian/gitlab-yi.yml as proposed on
https://salsa.debian.org/salsa-ci-team/pipeline/blob/master/README.md
[...]adding the following definitions to your gitlab-ci.yml file[...]
[...]On Debian projects, you would normally want to put this file
under the debian/ folder,[...]

  Regards,
Vincent

> gfamdsr
> IOhannes
> 




signature.asc
Description: OpenPGP digital signature


Accepted latex-make 2.3.0-1 (all source) into unstable

2018-10-17 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 17 Oct 2018 16:03:26 +0200
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.3.0-1) unstable; urgency=medium
 .
   * New upstream release
 + add DEPENDS_EXCLUDE to forget wrong/unreachable dependencies
 + add support to handle a local texmf tree with latex-make in it
Checksums-Sha1: 
 6a8ed142956b1d88b0c7faa485fff9df5de33a67 2056 latex-make_2.3.0-1.dsc
 04cc978c9c00e318b7f2421d5d61a2ae59671fca 68606 latex-make_2.3.0.orig.tar.gz
 6918f81020cb305caaf800964ac63ec1a0d67f91 6232 latex-make_2.3.0-1.debian.tar.xz
 0a6903158ab538bc1d939449f0b1e3d6350ec068 6936 
latex-make_2.3.0-1_source.buildinfo
 60a471224402d4ac266a8b36091ca2c967bfd8ff 800376 latex-make_2.3.0-1_all.deb
 278538bb2efa3975cda0fb2195f9c45981598587 10217 
latex-make_2.3.0-1_amd64.buildinfo
Checksums-Sha256: 
 651e5aeab629b50de0040f4abc0f2c39190009698df55ca04f0b738db6db0f62 2056 
latex-make_2.3.0-1.dsc
 a11fcf392b400850984342e9ef5b447abe65850690f1be7ea06b37cc4b0e182d 68606 
latex-make_2.3.0.orig.tar.gz
 f4d9d1ba159b4c3f9c070e43cb557622ceb168ff1af0a0b9e0cf9ec4c4050843 6232 
latex-make_2.3.0-1.debian.tar.xz
 3676f34a6555ec18d89ff4fc6628c12848b19c642b5501a357437e59e994496c 6936 
latex-make_2.3.0-1_source.buildinfo
 6081b869430d8a46726c271e89e8d59fad3ef1ebdd95ed1cf7369ad5ca641de2 800376 
latex-make_2.3.0-1_all.deb
 881ada223e380fd3c39f82f53baf8b57cea625ec0e939ab66c7f3a38523be481 10217 
latex-make_2.3.0-1_amd64.buildinfo
Files: 
 f2c748bb9b7e7773e3deba7295e2620b 2056 tex optional latex-make_2.3.0-1.dsc
 2111ee3ac931a1f74c770d60efd5a6ae 68606 tex optional 
latex-make_2.3.0.orig.tar.gz
 bddbe53c2a195e0004819a161bf31219 6232 tex optional 
latex-make_2.3.0-1.debian.tar.xz
 235dd64083e5997c7336220d9b09ef67 6936 tex optional 
latex-make_2.3.0-1_source.buildinfo
 169a7eab3b69b2c604e57e61becfd499 800376 tex optional latex-make_2.3.0-1_all.deb
 795cbfcca842c3a0df49a326aad2e34f 10217 tex optional 
latex-make_2.3.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlvHTXAACgkQlkfeY37H
t1H5kQ//ZCG2bZgSfFqN4cPNbpIBlYS9u8AHn0iIYKwNEicfztDrzuGKAW1rzVrQ
VtnLadq7QxYKI0O8FuD4tDYmXMBGM+5ExEkCjbENfaoy8O0G1HhdWNc4+EfHFyDs
D48wYqLYwMRUwh64llDgqMqPDY8nzjJg1LtE2IZWvSr8JmBstmXm/3ddubcvje2S
2dTFYsjYvNRtWC/CscLWPwF5jUhwGzJaPq6x0M52eXHE1q1zjglMnfV3eyUasoYV
LXDWzHXymwQQG7sdXwIZK0mEIg2Dkdz7kNlOi2H2Nw9WzVwSuDQ2mnwVdnf2N33b
zfirfDZb0ML/Fv0pNAW3rH/iFsQrOXGbYYrgCmCcCSbnbdL7w041y2ak476vBSJD
m/6Mhq7SQs/0Zr46wDU65ZQ8Wg/r4o5iSmPo0tJ25M/cBiM2xb+DcQvnR2yn+u7P
yGQdcWZa7YZbnIXNOj6w5+Ljpv+xWlWnQzu47KAwOh1ZbyD7rD6SY+MOOlMd7g0N
OFpgfiQm5/9ubLpCD8jEgvHxdF5Z19zX3ZdcVpHKkgKLUTyU2HjsmWG/6ueD3Z9v
4R0cQI5qJ7PgNmFLR53R5/LnY9uhRLY88nTJGt4VpmFR1KjdnxI9/DYuSd3jo6U9
mkQuNRJPw8AYic18IdLn0t/Gmqa6Y0ne/1C1mGAnevS3HlXTe50=
=D6wa
-END PGP SIGNATURE-



Accepted owfs 3.2p2-2 (all amd64 source) into unstable, unstable

2018-09-24 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 23 Sep 2018 22:10:39 +0200
Source: owfs
Binary: owfs-common owfs libow-3.2-2 libowcapi-3.2-2 libow-dev libownet-3.2-2 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php7 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc
Architecture: all amd64 source
Version: 3.2p2-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Description: 
 libow-3.2-2 - 1-Wire File System full library
 libowcapi-3.2-2 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.2-2 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php7 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.2p2-2) unstable; urgency=medium
 .
   * Remove transitional owfs-dbg package
   * Make systemd service files uses /etc/owfs.conf (as was doing
 previous init scripts)
   * use Debian-ow user to run owftpd and owhttpd
Checksums-Sha1: 
 bb85f0fcdacc6a9d2986952fc6e6dfe39bd50606 3057 owfs_3.2p2-2.dsc
 83476f34137e9e4677b91d5b16bcbec0f097b376 22816 owfs_3.2p2-2.debian.tar.xz
 8926422428fb55167e6169a2788e49420c68 10129 owfs_3.2p2-2_source.buildinfo
 a1bbb6eccffcb41dcf5f5a8aa202e45559cf6ce4 1783416 
libow-3.2-2-dbgsym_3.2p2-2_amd64.deb
 0e6b9db34c5de45cf452d4025bb6922cf78ec0a9 311564 libow-3.2-2_3.2p2-2_amd64.deb
 34e3f248e15a983b8aca904a673992b1d356c4e0 16696 libow-dev_3.2p2-2_amd64.deb
 f6497857ba7b3b0a66c8c1c643b0d290185e569d 60524 
libow-perl-dbgsym_3.2p2-2_amd64.deb
 d024018b865729a0c35a89deafd9063ce438044c 20284 libow-perl_3.2p2-2_amd64.deb
 b5c99778b03c5c170a778ff02afa240293377dd1 43784 
libow-php7-dbgsym_3.2p2-2_amd64.deb
 740af774ecf3d92196f0f373724b1c346d003909 13808 libow-php7_3.2p2-2_amd64.deb
 e372606bab6465bba962ac87ae5bf0760ff0288e 48296 
libow-tcl-dbgsym_3.2p2-2_amd64.deb
 592933fb578fb46216ee36d5f3a983413ccba1ad 20328 libow-tcl_3.2p2-2_amd64.deb
 35e8412a75c9a4140e9d86f45d2e03085cd8a38a 20560 
libowcapi-3.2-2-dbgsym_3.2p2-2_amd64.deb
 c2a6e154cbefde8a28cb8a110edf7b45c6a66756 11780 
libowcapi-3.2-2_3.2p2-2_amd64.deb
 d2c937e1fac702255901b30457bb8aa8edbf7983 69276 
libownet-3.2-2-dbgsym_3.2p2-2_amd64.deb
 a521bec313f120d5faba3c3d46d6cf8ac5351511 25344 libownet-3.2-2_3.2p2-2_amd64.deb
 ca2a7bf4c82001e1b738a876c7330395b0e7a0a5 15696 libownet-dev_3.2p2-2_amd64.deb
 2faf67aefe1418da677aaaefc2f24398c2a8a456 29188 libownet-perl_3.2p2-2_all.deb
 325267800b428b6d6f0ca63ab88fe1c814ab6dc2 17456 libownet-php_3.2p2-2_all.deb
 82b6511bb636eb3b23d77e021fa1ff6cb100ac2f 304352 
ow-shell-dbgsym_3.2p2-2_amd64.deb
 f606ed8ee239dc7bd93e28344e9a5b1522bd9a1a 33544 ow-shell_3.2p2-2_amd64.deb
 f68723d71cb40e30bf4a81448310b92403127d34 28368 ow-tools_3.2p2-2_all.deb
 5162d8829216d08acf825fbcc23f7e807b7d2055 16704 owfs-common_3.2p2-2_all.deb
 0447ad760feeed3908cb1f8beb35956ce44f4ee8 200444 owfs-doc_3.2p2-2_all.deb
 4b0eaa8ea1ca0672239e885cdec8c71cf9159d5a 40080 
owfs-fuse-dbgsym_3.2p2-2_amd64.deb
 a8c583a57ea107fa7ac409f64a724a2b5d903ce3 23600 owfs-fuse_3.2p2-2_amd64.deb
 bab3306f9918675154126f93eb102f510fbf5867 8856 owfs_3.2p2-2_all.deb
 ffae2337647f515eb4945e29fdd85e4097e234a7 16513 owfs_3.2p2-2_amd64.buildinfo
 d997ca40e2eae1448fb868a6b51e1594903ba116 131564 owftpd-dbgsym_3.2p2-2_amd64.deb
 8bd1207530650e1651739c14271fa8a0ba5e68d8 48960 owftpd_3.2p2-2_amd64.deb
 a501c5a433bbcbff4a578c82225e5a5cf58a52a8 88908 owhttpd-dbgsym_3.2p2-2_amd64.deb
 7ef92caef7bfcc80276f3de6f1c80bcdfe7151aa 32760 owhttpd_3.2p2-2_amd64.deb
 b24c08264742fee91948d9b58cb1852f5213c288 87900 
owserver-dbgsym_3.2p2-2_amd64.deb
 51b6500fb33aa6b82d88b866c4ee06f8c1a58689 32656 owserver_3.2p2-2_amd64.deb
 bf52a1abd9cc622bf3831c8cebba8df5a99cf36f 50884 
python-ow-dbgsym_3.2p2-2_amd64.deb
 7d3ea83c353d78d172cd00482e195422453f 34264 python-ow_3.2p2-2_amd64.deb
 09904464971c622aabb1b0c7eb6dfa2a7622432d 16144 python-ownet_3.2p2-2_all.deb
Checksums-Sha256: 
 6709292d3c37f05465f473f5802c5e054eb50567f2f1d01a08d364541490902d 3057 
owfs_3.2p2-2.dsc
 7d0f780305c83f017cb4397c6095502a68ffb8e0957f81d783980e6f460b8a8c 22816 
owfs_3.2p2-2.debian.tar.xz

Accepted owfs 3.2p2-1 (all amd64 source) into unstable, unstable

2018-09-24 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 23 Sep 2018 14:37:33 +0200
Source: owfs
Binary: owfs-common owfs libow-3.2-2 libowcapi-3.2-2 libow-dev libownet-3.2-2 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php7 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc
Architecture: all amd64 source
Version: 3.2p2-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 823661 834018 904850 908025
Description: 
 libow-3.2-2 - 1-Wire File System full library
 libowcapi-3.2-2 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.2-2 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php7 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.2p2-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #908025)
   * Use upstream systemd init files (Closes: #834018)
   * compile with fdti support (Closes: #904850)
   * add owusbprobe into ow-shell
   * re-enable php binding (Closes: 823661)
Checksums-Sha1: 
 fd387c1ead44eed2180899ad5ca79c4a3f19d81d 3057 owfs_3.2p2-1.dsc
 d04032696a3fba9f250a9a1d552361072a9f22ea 1491195 owfs_3.2p2.orig.tar.gz
 fa7c9757578a7372026f661686000612b9f65601 22288 owfs_3.2p2-1.debian.tar.xz
 c78492b3cdd407964e690841b35ef189c0e45eeb 10129 owfs_3.2p2-1_source.buildinfo
 c935591930030d229bd6450577a0eea73fd737c4 1783404 
libow-3.2-2-dbgsym_3.2p2-1_amd64.deb
 6687c8ebdcff45093485b2c5fc34400f5324c10a 311872 libow-3.2-2_3.2p2-1_amd64.deb
 704aa5a88d89c6b4e2196af5362e2e68e7bfe965 16612 libow-dev_3.2p2-1_amd64.deb
 eca5a533219968a0fe89f4024125a54022d7b6b5 60552 
libow-perl-dbgsym_3.2p2-1_amd64.deb
 9f6ef59e7baeda0dc51cc9aedb7a2d7fc915431b 20168 libow-perl_3.2p2-1_amd64.deb
 4321bc8b390ae5ec797235538dbd6a4dc2d29fba 43820 
libow-php7-dbgsym_3.2p2-1_amd64.deb
 49ac646e2e23fd6aef459e7be7c6d7480bc4cc81 13720 libow-php7_3.2p2-1_amd64.deb
 76eb9b89cb17405fbc910eca60c13de96a20baf0 48340 
libow-tcl-dbgsym_3.2p2-1_amd64.deb
 86a74a68c2ad023ef3c42c885aa98030479a46b9 20228 libow-tcl_3.2p2-1_amd64.deb
 94633d2ee52b03a80692d0826bb0d73000f54f92 20592 
libowcapi-3.2-2-dbgsym_3.2p2-1_amd64.deb
 a4ac25399d6bce5b4bb0a157621f0ee5bca5fa9b 11684 
libowcapi-3.2-2_3.2p2-1_amd64.deb
 a49fb9d2a56049bd077b1ce9eaeef82d0b4aedd3 69296 
libownet-3.2-2-dbgsym_3.2p2-1_amd64.deb
 5c2e7f6d930f33802eca99e28ea2bd2ccc685d13 25252 libownet-3.2-2_3.2p2-1_amd64.deb
 aeea8c83058d0b2827029d7887c497c26e80891c 15612 libownet-dev_3.2p2-1_amd64.deb
 1509eb6cfcf1c883a95e85bc783b6af727d1c51c 29092 libownet-perl_3.2p2-1_all.deb
 f513282fe7e22447b9f0491e781c6ee3a2b1587d 17356 libownet-php_3.2p2-1_all.deb
 36dcc6e1d528ac13b87278e59d6388144b4bd0e6 304384 
ow-shell-dbgsym_3.2p2-1_amd64.deb
 d34a3a082c5f38475d842a795a84bbf309c0111f 33460 ow-shell_3.2p2-1_amd64.deb
 6e2d0b10e3e06ad85285c6030feaa2fcc5a18ddb 28268 ow-tools_3.2p2-1_all.deb
 ea7a624e2b9edd071979159bf079e160410346e3 16420 owfs-common_3.2p2-1_all.deb
 081d53f61c558b61916bc6eada9f1e501814 200300 owfs-doc_3.2p2-1_all.deb
 abc2389cbcbb47ed581f93b7a69f98eb20984dc5 40104 
owfs-fuse-dbgsym_3.2p2-1_amd64.deb
 7094f27169cb5749185c99cc6b69b20e180ea8bf 23532 owfs-fuse_3.2p2-1_amd64.deb
 8e5dec7679f990eeb3d598fffdd1d68a69224938 8760 owfs_3.2p2-1_all.deb
 9482fab240889ee160174fd90fa38259100e4272 16513 owfs_3.2p2-1_amd64.buildinfo
 c9571d415146c5b9a20fb480f302fc6b37a040a7 131604 owftpd-dbgsym_3.2p2-1_amd64.deb
 8b278d6f72cb43c866e76adb5d506f081969b42e 48884 owftpd_3.2p2-1_amd64.deb
 88f7d6253cb505cd7f268d7a13a2305b99d07167 88952 owhttpd-dbgsym_3.2p2-1_amd64.deb
 6cf87b64c523674d4c6e6196128e0a319cfaf3d7 32668 owhttpd_3.2p2-1_amd64.deb
 832d70b617dc228008af053211e1fbc3939cc86a 87944 
owserver-dbgsym_3.2p2-1_amd64.deb
 62aedd6e83290665974e32070937923307162b51 32540 owserver_3.2p2-1_amd64.deb
 d5878647e1c58c9b771ff81ad81681c40c37c7da 50864 
python-ow-dbgsym_3.2p2-1_amd64.deb
 1a539d4fcff7588e5d305af71a20dd8af9b9b624 34152 python-ow_3.2p2-1_amd64.deb
 e581e8acb68767a45eb39a8fd9e2d16d2662f5d9 16060 python-ownet_3.2p2-1_all.deb
Checksums-Sha256

Accepted freshplayerplugin 0.3.9-1 (amd64 source) into unstable

2018-09-23 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 21 Sep 2018 10:27:22 +0200
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash
Architecture: amd64 source
Version: 0.3.9-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 902256
Description: 
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.9-1) unstable; urgency=medium
 .
   * New upstream release
 Fix compatibility with the latest Firefox versions (Closes: #902256)
   * big thanks to Gunnar Hjalmarsson 
 that help me for the following points:
 + remove browser-plugin-freshplayer-libpdf and
   browser-plugin-freshplayer-nacl binary packages whose wrapper have been
   dropped upstream
 + backport a patch from upstream to build with latest ffmpeg
Checksums-Sha1: 
 118d2f56ca657c5bf6244adb97fab70787906692 2382 freshplayerplugin_0.3.9-1.dsc
 fc7ba6b860a126de15a6f26c2835a437774161e0 790261 
freshplayerplugin_0.3.9.orig.tar.gz
 0a8b3b5e7625a2f6c431f765ab4fbbb8671205c7 10128 
freshplayerplugin_0.3.9-1.debian.tar.xz
 bbe4b8d923613b6935d7b5b5ff62b2dc7d37a4e7 16258 
freshplayerplugin_0.3.9-1_source.buildinfo
 61b48bedffd90f9b18333b6c8c90912b0cb6930d 5018036 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-1_amd64.deb
 8c3a9b64a5dc176bedae1cf1fee590b31165d3a8 369684 
browser-plugin-freshplayer-pepperflash_0.3.9-1_amd64.deb
 44e488c9d1904c5bae43a25129611178017de1ae 14550 
freshplayerplugin_0.3.9-1_amd64.buildinfo
Checksums-Sha256: 
 30e25b254d157cd3feb443182df73d7295d9944e57f7a4e21bb831c2f899142b 2382 
freshplayerplugin_0.3.9-1.dsc
 4fa4fe07e812f6e10784ff984e1389b9b444ca44b84101999c6fad8f55db59d9 790261 
freshplayerplugin_0.3.9.orig.tar.gz
 41710c1ec79779a4eca6e6e38a3f2e14b21274d0540a89dd405307afb20b2f4a 10128 
freshplayerplugin_0.3.9-1.debian.tar.xz
 2a45eedffdcd38b84641d1bdc7784e61b1cc0e55a2fce0964187ee7bdd74bebb 16258 
freshplayerplugin_0.3.9-1_source.buildinfo
 fa5a94a78117c458ec083dc6ecd533d1c29947eda518c63db8bae15b7472adcd 5018036 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-1_amd64.deb
 eec604eb2b4d9e20d5dec05181688256fcae449fc98afad40fde40861b2db46d 369684 
browser-plugin-freshplayer-pepperflash_0.3.9-1_amd64.deb
 1645b48eda9b916ef93b5b88ed75fa040897acaaf22d5994ffd295babc72609f 14550 
freshplayerplugin_0.3.9-1_amd64.buildinfo
Files: 
 061992332d5cc16d17353261a47fda8f 2382 contrib/web optional 
freshplayerplugin_0.3.9-1.dsc
 a6ccf674b64e250b334ffcb748dd2317 790261 contrib/web optional 
freshplayerplugin_0.3.9.orig.tar.gz
 a5b67f7f3e57ce3aab581bf02f34f5ff 10128 contrib/web optional 
freshplayerplugin_0.3.9-1.debian.tar.xz
 5ba3c55df61e072fd0970d8a4b21127a 16258 contrib/web optional 
freshplayerplugin_0.3.9-1_source.buildinfo
 44c7a6b8d66b71dfa5a3a949f25fc574 5018036 contrib/debug optional 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.9-1_amd64.deb
 848cf0782f87eaa1c15d801d14e1ca28 369684 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.9-1_amd64.deb
 f7531474ac63a8aca759333d69cc11ed 14550 contrib/web optional 
freshplayerplugin_0.3.9-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlun0ZkACgkQlkfeY37H
t1FhSw/8Dl4nBqpg1WU3w+ERQRmOtCdcopwKkW2uR9MUeqPL+1ecjxP16IDPxXt8
lrZwWsrHSFZvvOMKjZWtC5gEcU1d01cXrEM+jWt37fecB1uT8LF7EvpRjdqR1RZy
JJKNDahl5eQKnVEyS3TLGgp27/3emSISEWZT5s4tuDSgwbjKtb88eBZmwyNYGd2c
7k5AFscAqYhYqG7zfdXinpuEIflQOKlJHE/RPumShrdEjw7w1nLyh/3TTZfn2R9S
fy3/qC7tD/Xvo6whHY//HB1s4VBXx8Rk/WemHIB4fr7LPKx+TIkNzhgT4ZuLBUqj
t1YYwPu7xVq18FhRM89UVPhW8/dKY2+/B3SWBbPUxrM5LLSuMckfES1WJvYAif81
LuyyHt7gKGutyDnLgdpYTogUfY1wAm/1d3knivt6CEDAGy6ivM3QACkywzAbTlEU
g30z5sdXO3Uz15ELw796GAlDYUDbGNIjBRM6nFrEUHx16qcRBPpryO+12RFAhJae
pePJQgXVO4KAjBNKHBRvzm4F6iCEhwUBGv9ur0AJCNJlxA9TdkLD/oplExtDOjPN
y6136NbUTlIHk+4vuK2SXa4maiqH0mcPHOSJcRGB4MeXCe+gg4onM03OJxsGpbHZ
8KaxKicqymGZxZ0pkefnNo7Ol20e7xQH7n/fsmWdabcvmLDap/k=
=RmGu
-END PGP SIGNATURE-



Accepted latex-make 2.2.5-1 (all source) into unstable

2018-09-04 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 04 Sep 2018 23:46:40 +0200
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.5-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 907948
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.5-1) unstable; urgency=medium
 .
   * New upstream release
 + Fix compatibility with recent fig2dev (Closes: #907948)
Checksums-Sha1: 
 02007a1df9553dcc47e11087a60fe42762c6f616 2050 latex-make_2.2.5-1.dsc
 b08cedbaa29c877823301903f9dfa499a7f4f369 67076 latex-make_2.2.5.orig.tar.gz
 f2b17567136268cd423e91e9b2b60b0c05cfa3c0 6196 latex-make_2.2.5-1.debian.tar.xz
 21293086c210cdcfbbb2924f2d89017c4b46a600 7013 
latex-make_2.2.5-1_source.buildinfo
 2128d5cb722982b23e7c599f48825b543821c44a 776272 latex-make_2.2.5-1_all.deb
 25e93838067da913495992c470cd997cc8ceb444 10165 
latex-make_2.2.5-1_amd64.buildinfo
Checksums-Sha256: 
 d76e0fc2761ee52557e067abf29f75e607fb268c4a42dd4643225c4ac38d3206 2050 
latex-make_2.2.5-1.dsc
 dc3b30fd71077e1fa114c4d6811fae03b7e394be247a5556fbe672d009aa6311 67076 
latex-make_2.2.5.orig.tar.gz
 132edc496540b9bc804dc50c7d4e06e83858c85836d069b0fdda39395f7d2120 6196 
latex-make_2.2.5-1.debian.tar.xz
 0e1ed42456451d0cadd150bf6f7eafdceb51468216c4ab445820669be007007a 7013 
latex-make_2.2.5-1_source.buildinfo
 8d97cdb728ef957dfbd0772afcbbc2b312e6c147ce29317d2dbf724d2e9fdd0f 776272 
latex-make_2.2.5-1_all.deb
 ad047c742d21d780ddc67e0a6184917cb0c2bb471d1e2ab0a593f82d90576e6d 10165 
latex-make_2.2.5-1_amd64.buildinfo
Files: 
 c1d54ef95191ee85509ba9affeacf727 2050 tex optional latex-make_2.2.5-1.dsc
 564bf9e7a4257b2bd270e3750ebe88c9 67076 tex optional 
latex-make_2.2.5.orig.tar.gz
 4b6b1bc52e9f01426299c06aad7bda6f 6196 tex optional 
latex-make_2.2.5-1.debian.tar.xz
 efdc4c2d5559a88072398938da9cab07 7013 tex optional 
latex-make_2.2.5-1_source.buildinfo
 ba9b391616ca266d9315cee948bed173 776272 tex optional latex-make_2.2.5-1_all.deb
 7d7c89a3c6c2df3f507e257a4ff1ac64 10165 tex optional 
latex-make_2.2.5-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAluPCtgACgkQlkfeY37H
t1FJ4w//dfx5M2QrSvg/8uUxVMmu6rrTOFd1yzlMiXvceLE5BLCAN0Zw0ntEx270
EAtc648YaNt3za3TMb2ePUAUCnrai8K86PYPtM8gc04VyF9q2eUKvnNDlFovIJ8z
WO1R7AD2f/dTFvjxP81rfPytuVlf9KWvjTXn4m3dzUjKk6kJSs1yz+3i22COmNYa
AQbGPCAS1YDYqr/KHVcEERHV47YmuwfcNuqmzxXpy96nL5Wn7VAZFjdBZ963aRxD
ImrW+AAbVevVDA0pCA5V9cOJjkCVsYFrJbx+hXvfD/TQPmKbsEDKtB20tDeeGzpO
vB2I2fM0gwQ9OjvDVqXjhBRVVN+eP0IuGsd7+/HtgfB2br2z90cT8vK9wQePxziV
Hgc1IR5qs9ALfULM+eED/aFZU8QZtIX+auGh+tkzNcnx/6iYJtx1dzItM61ctzfT
cLrDktrqKHz7YnMklmH37rnxckRJt/LQyZ/YEBmobdVxIQjrVWEq3V/kzoBJ9duR
LtVhVz5TFjmqxtVEmp6vEroXjxXR+qW1hDjaQFvAJE4alVWVfRdzWBluCgTa+CWS
VKYvN8tmE4mWLsdSVe3csW6U1mARzKALwCGcU8qYb8PPVK70h/IuVrumiJXNHvyQ
R/8r722H98ADcoLQ5fco/0+gL6Xw/jC+osLNtJa+I8cBhcstnF8=
=PtEQ
-END PGP SIGNATURE-



Accepted latex-make 2.2.4-1 (all source) into unstable

2018-05-29 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 29 May 2018 16:41:53 +0200
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Vincent Danjean 
Closes: 866153
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.4-1) unstable; urgency=medium
 .
   * Replace transfig by fig2dev (package renamed) (Closes: #866153)
   * Move some dependency to recommends (not required if not using
 figlatex.sty or PS)
   * New upstream version
 + Reorganize pdfswitch
 + Fix python synxtax to be valid in 2.7 and 3
Checksums-Sha1: 
 abe98d60dfc04892b223be96bd24414e56a43173 2050 latex-make_2.2.4-1.dsc
 71eb43d7fab1de4482b56eaf5a6ad6f4e3aec3ee 67262 latex-make_2.2.4.orig.tar.gz
 3c884a9a541e67b74cca42e44d82d8380aa3c8a2 6164 latex-make_2.2.4-1.debian.tar.xz
 b1364e49972853930aeca08d02350af22278b381 6673 
latex-make_2.2.4-1_source.buildinfo
 465dae8127001bbb1019f769cce3ebbebe4898fc 778120 latex-make_2.2.4-1_all.deb
 fde573ab4cb0421499d9942b373cc7947f26ab8c 10104 
latex-make_2.2.4-1_amd64.buildinfo
Checksums-Sha256: 
 fe900c139d082d39ef3fc0a4d204496dab27a65781a82894d2d322b7d0d2b3bc 2050 
latex-make_2.2.4-1.dsc
 8e2cd7deb06d0cc895e236a990a1fd21e46ff8d19b7dabfd7efcc4bec950121e 67262 
latex-make_2.2.4.orig.tar.gz
 d4587179ca754927b3d25a17c3aed81501a49b82cd87be2f82ca795840d53e97 6164 
latex-make_2.2.4-1.debian.tar.xz
 2014fea208027ab3bb74678ed9b6930b7d000a4d87c251c704e4bfa7b3133561 6673 
latex-make_2.2.4-1_source.buildinfo
 5d9cf855bf96d8f0089a40597cb2f51e889ddf440d43dea2beb5349ac41fccbe 778120 
latex-make_2.2.4-1_all.deb
 ac406ba8979a772afba9bfe20dd66fec24810a13274399810a4d4bd9f6d0c2ae 10104 
latex-make_2.2.4-1_amd64.buildinfo
Files: 
 d699f7cf7295b60049723ebc1b25c59b 2050 tex optional latex-make_2.2.4-1.dsc
 cb261c2261f4f544b42aaac72684035d 67262 tex optional 
latex-make_2.2.4.orig.tar.gz
 5ed490941f79d5e70d31fcc675d65b5f 6164 tex optional 
latex-make_2.2.4-1.debian.tar.xz
 9926d430a97b5f743f4f1463aa528483 6673 tex optional 
latex-make_2.2.4-1_source.buildinfo
 f7daf44989624befccbccc9c13a2fd20 778120 tex optional latex-make_2.2.4-1_all.deb
 2ebbbde749e2fed9fbf7bb64a9ab8809 10104 tex optional 
latex-make_2.2.4-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlsNd9YACgkQlkfeY37H
t1Fj/RAAkEPpEvRzaBmN9YhZ0cfaqdWjWLeX5lBEu7wn+N/ciPY/BjwrvWBxNK6B
D6Onera/nGAzKySZtg8S5JzZ3cNmmGNoYXRVcYW17wwrF/nYG6De58327Syc/+fv
oI4+xrLFkRgY4UnnUWK4wAx/27Ja00iuUcDkzc5P0AyGlAv9euwh16iw9JFOOEGX
xAK5xDhodlk4uGZVcl/FyXOER0sRhECSI66wXn6EunwbKT4MPtfSTMxrQMZkEsMn
w8dXZWXIqoEutfBYm0LQiJqV5MJJwZ/p7tlzni08GtL20axAAvOt8vI0bqYf3PZg
AWhPoqdQPJ4l57YW1SKvXODGPsWnecuNZ0o424g68MK4eB0VcrNCifGBrKNykbXl
3zDcksisboTVkv2hcjx2aLpq/RJazzk+C6qYo6YBJ8hS6IkUyqwcN8Z/hSJIDZ2n
fNivCisnLYc9opEuizcEpXmb0jWnCuy6plcI8hr7cBGEh+PNXsy5dgdhHzkiJWoX
2wa7/ledQ/R1P+QZYA+icMQN4bqMI/N8lsUI/nwpEX1tqQLI57ghTl89cQbRKCk6
NA7pqTz2BD0DqvMKXSd4zylNi1p8hzovHsu4bgtAepDJAV6fWJ9tZXpiJoiykGcL
EcIsme2YwRfZlKG3bbFCSVtI87W3UgEWl4ZdM5ooyUfVHYM5ChA=
=SE2Z
-END PGP SIGNATURE-



Accepted ocl-icd 2.2.12-1 (amd64 source) into unstable

2017-11-29 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 29 Nov 2017 09:54:37 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev
Architecture: amd64 source
Version: 2.2.12-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.12-1) unstable; urgency=medium
 .
   * New upstream release
 + add support for OpenCL 2.2
Checksums-Sha1: 
 68bcd46642a9586beee50788313f315d31ca6304 2115 ocl-icd_2.2.12-1.dsc
 0c3bbae53768364ef75529201b08d6ffe669857d 456646 ocl-icd_2.2.12.orig.tar.gz
 046331b3099bc5c3dbc9ba4397b8d792d61a523a 11064 ocl-icd_2.2.12-1.debian.tar.xz
 e60b06d5796f55b15a44b5d3bfdcbd17bf6cb4d1 7414 ocl-icd_2.2.12-1_source.buildinfo
 d9862840853b8ecf200b7fdab52cf93571b780e9 17764 ocl-icd-dev_2.2.12-1_amd64.deb
 2a17e310993b96add425a7e5edb25f7ae5cf097f 39776 
ocl-icd-libopencl1-dbgsym_2.2.12-1_amd64.deb
 b259f94e3aa656434647126bb111f0378cdab66e 37148 
ocl-icd-libopencl1_2.2.12-1_amd64.deb
 856f5c7c2c896e39586f92ec872ce7b873f70006 10332 
ocl-icd-opencl-dev_2.2.12-1_amd64.deb
 1b2fa55ce50e5fbb5d6034bdc54b776788e2da26 7122 ocl-icd_2.2.12-1_amd64.buildinfo
Checksums-Sha256: 
 fd7214c720fda03c7aafd8a1f2e54b6b2b4a42069a6f9bcfae862b4750c2d39a 2115 
ocl-icd_2.2.12-1.dsc
 7665f368354e3d2b7787ba4a23c6f061db1181195ba1914dd1cdcd462eca4df4 456646 
ocl-icd_2.2.12.orig.tar.gz
 d90bdb4ebd34af997f85bbe69175cced04fa737d4ff9e27076880f81c3530f59 11064 
ocl-icd_2.2.12-1.debian.tar.xz
 58c36b1d5ce0aaa91fac582877cf4d7a8e554744fdbe88a46ebf2a67ae0f6084 7414 
ocl-icd_2.2.12-1_source.buildinfo
 c443b652a5c3d6fa75b72962b3f63f3cffb4a8a41a08d232132182f8a5030c02 17764 
ocl-icd-dev_2.2.12-1_amd64.deb
 45e580505e490d034e0137afe7973fc738938a2d9e711098a8188e6d718e34f5 39776 
ocl-icd-libopencl1-dbgsym_2.2.12-1_amd64.deb
 89c1cc56cce751d30b8454c7f198dd7b26b2bb1b3cd9591ec74ca1deea80dfa7 37148 
ocl-icd-libopencl1_2.2.12-1_amd64.deb
 3244f4d386cbfdf9dbd215dca6e92267923ebec38b6ebb1cb654adf929b2bda8 10332 
ocl-icd-opencl-dev_2.2.12-1_amd64.deb
 fb7b88bb870b095263d872c7b19c2db02e84478ac08a940b499b66d593ad57e5 7122 
ocl-icd_2.2.12-1_amd64.buildinfo
Files: 
 d8e685d640fea783243803f82f284a94 2115 libs optional ocl-icd_2.2.12-1.dsc
 7d73f89bfc95a814ac87744489e0c27f 456646 libs optional 
ocl-icd_2.2.12.orig.tar.gz
 f8d6500cef773dde1b459b9abaa17b7e 11064 libs optional 
ocl-icd_2.2.12-1.debian.tar.xz
 36df64dbacd4a213fa53c903bb52f68f 7414 libs optional 
ocl-icd_2.2.12-1_source.buildinfo
 54bdef8eaa3249c4dbc0477d872df382 17764 libdevel optional 
ocl-icd-dev_2.2.12-1_amd64.deb
 76bd469f2f2300eb547d5aca45e3ad50 39776 debug optional 
ocl-icd-libopencl1-dbgsym_2.2.12-1_amd64.deb
 e4d8456c5b2ee8734205171494b0a720 37148 libs optional 
ocl-icd-libopencl1_2.2.12-1_amd64.deb
 357e0edf2ff117b4aa0fef1db910f12c 10332 libdevel optional 
ocl-icd-opencl-dev_2.2.12-1_amd64.deb
 88eccafcb53017fec79c6fed57788bad 7122 libs optional 
ocl-icd_2.2.12-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAloeepMACgkQlkfeY37H
t1HSlA//euMey5frdNEgyTs0qiN0YydLxshuZoC2NSdj+fQtV3OeBHyytJq0f/vM
wsDPCvY7uvafvd/dZYqi0uDLFy9d7RKiMkRDE+Jcy5/MxeLQ1a+A/4N+tbdTdhtw
gTTPYx45QPCs0nB+Qc5yjYYoBzEem8NkLGOTcxCDunIwqtiYYVjKBLZb6Dd8Kmss
uKtU5bxgUYR4Hevsa9wZSX2nFUudkklgIjhULUmBhipRMKF3pmVnOqY6VMXpanhm
yIWfQLrLsskLXFQeywbjM70+qsRycAatkxp9oZee0JlzNVJvY+55px9h8vK9JFP9
mwTVRfBX6Lrg1at9wa/8BcaFpziKGkksZMQFyfXqbZBYCoQPCsUE8BJ5BPZ1Q3d7
j3mi7rG54ZdOKAmLFnyFgXQGpcfgns9tpCtU32IcLc2j0pEKyfM3xhnlngY+8r2i
wnbf/WzrvtbMf1L7MUHyJHDs8z+hGxvgnA9GRPKjeSBfkuqiopTzHpeR5FtjW6Me
SHojftrsxkSSIjYrd839So/hoH61V8ycdpBsZQHEjSUA3g+onGMNMguvDnE5LH6g
wv0ZW6niFVu6VmZGJmiukUMgMmLsOQjTcV6eHeG0TDhmaqmmLaaTpKY/JBOYju+y
oS/xbmHQUa0lz9aBfM8Co6ntK0gzphfsDDFAO031AyvpxpOQtK8=
=Va3w
-END PGP SIGNATURE-



Accepted libset-intervaltree-perl 0.11-2 (amd64 source) into unstable, unstable

2017-10-17 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 16 Oct 2017 21:49:18 +0200
Source: libset-intervaltree-perl
Binary: libset-intervaltree-perl
Architecture: amd64 source
Version: 0.11-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 877438
Description: 
 libset-intervaltree-perl - Perform range-based lookups on sets of ranges
Changes:
 libset-intervaltree-perl (0.11-2) unstable; urgency=medium
 .
   * Fix copyright information for the ppport.h file
 .
 libset-intervaltree-perl (0.11-1) unstable; urgency=medium
 .
   * New upstream version
   * Initial release. (Closes: #877438: ITP: libset-intervaltree-perl)
 .
 libset-intervaltree-perl (0.10-2) unstable; urgency=medium
 .
   * Rebuild for stretch
 .
 libset-intervaltree-perl (0.10-1) unstable; urgency=low
 .
   * Initial Release to private repo
Checksums-Sha1: 
 ca0334497b17b62a66804e656c1660d0ba565f4e 2176 
libset-intervaltree-perl_0.11-2.dsc
 94f876f68ec30240c6c68cb92aa95f43009bd0db 71659 
libset-intervaltree-perl_0.11.orig.tar.gz
 d7ee54b6273ade14902cb9aa59e623fcf2d205d9 1716 
libset-intervaltree-perl_0.11-2.debian.tar.xz
 8b8dca6178cd86f93123eafb801d75a3464f0f6c 6130 
libset-intervaltree-perl_0.11-2_source.buildinfo
 f17cb9cbe69d43a089c7bcaa35c7d08ddccb37b7 115674 
libset-intervaltree-perl-dbgsym_0.11-2_amd64.deb
 9c5ad79184d5cf26262131f7cbfd6802e2af976e 5567 
libset-intervaltree-perl_0.11-2_amd64.buildinfo
 691064d24952f1f470a375a3e2e33d592309e0f2 23478 
libset-intervaltree-perl_0.11-2_amd64.deb
Checksums-Sha256: 
 8bd20a53c12569973d9eff08e1c2179dbaa718b5fa20c8deb91d96aa417512d1 2176 
libset-intervaltree-perl_0.11-2.dsc
 4cf9cca160ad6c5e006d3bd7f09860e817d0deba44d8418d02e39ce75d9aa274 71659 
libset-intervaltree-perl_0.11.orig.tar.gz
 6915d24c904dd91696ad042f266677521969c48bc74516ef533193e0e74c770d 1716 
libset-intervaltree-perl_0.11-2.debian.tar.xz
 fd02965b761b638dbfe20dbb4f34d9b6a46fa152844e1f5351df474214e87b8d 6130 
libset-intervaltree-perl_0.11-2_source.buildinfo
 038c8da62b94bae50ce7f02045f94346bcf4e4052d451c97b1828c34fc06 115674 
libset-intervaltree-perl-dbgsym_0.11-2_amd64.deb
 0f5f246a55ccd4ede72da20637d07a04b58c3b693cbe7c2476b191f3749c6150 5567 
libset-intervaltree-perl_0.11-2_amd64.buildinfo
 cbb7f4045101f80b8b13ce007cf53f9efc07a514ea52b0e3002b95e91397554b 23478 
libset-intervaltree-perl_0.11-2_amd64.deb
Files: 
 ac7ea110af8f941e6d5d43b0b770fc18 2176 perl optional 
libset-intervaltree-perl_0.11-2.dsc
 1982d8af644a07f196eabdd32428379f 71659 perl optional 
libset-intervaltree-perl_0.11.orig.tar.gz
 c0276eb9bbc7b1e777e2dea0b060f073 1716 perl optional 
libset-intervaltree-perl_0.11-2.debian.tar.xz
 0d4870c771eaaf3314240eca85592f8c 6130 perl optional 
libset-intervaltree-perl_0.11-2_source.buildinfo
 a628e90b9ca3a0131aa1e87ea2eff78c 115674 debug optional 
libset-intervaltree-perl-dbgsym_0.11-2_amd64.deb
 7a58c38d37bbc418e46942fea55c030d 5567 perl optional 
libset-intervaltree-perl_0.11-2_amd64.buildinfo
 ecc0e31ea3412f6871da330d8dc1f36f 23478 perl optional 
libset-intervaltree-perl_0.11-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlnlEx0ACgkQlkfeY37H
t1GjSRAAg/PyACTGQGjRHF+CsaLV/aH68p9UyuWvdeYLtYWj+yOkqxlht95YQ0oF
l/8KI7OtU6hTxex8WmgmdYGLcAHyenHtKMkXNQqUJyFubCjOi9JNQGDmI4tPihJv
ZnDVd8tF3puETgJDvWi+YSolGXUZVnbA9KvIA1saGVTloIwKJ8F0Vdautzc2KEOp
f8AQ07SUvwFDSfbH/i3s4F7JZ1f+Vxp57A1Ai1tUtd6zzd1IU49d9eTHTQbDDPjy
qVzWoZyJmXCAcTp4Gpy5b0ON7E1SHWwYGQakrK/giA0lJFPzQmpUjFamyxQSmfRA
5cNglSG86PEHuxZqDql8GJKChG+iJ5azJMF0oB+XT3zktyY9U1TAjej8Iroc5Oqv
DSgTbm8dvTNLkwh2CWwJ/p+6rViOKJ35AvJK+9yfUxyFq27op/RwrTwxxnnPPcG9
B+lkQxs49MJ03HlwACeopK74PyeNM7vk4GtNXyL0I7vAbUjC6Rcvn5224ssTMI2H
6f0y4HzZscr8ZBAjES6KymUI3Au9MQUgo0fEJ8cJX0SNcbUICVJxlBYyeRSo9umJ
8J+QHKSWoKAIeyVLD38mM/m5FpD0arsIsDIbBAiVoEDv+1t09ZMn1/ZWqQWxkk9U
hJm1uER41FVNsNzpHXBezUvaRjoyGrWOv4mwpYYzSQlszfpOl4M=
=BpEg
-END PGP SIGNATURE-



Accepted owfs 3.1p5-2 (all amd64 source) into unstable

2017-10-02 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 02 Oct 2017 22:12:41 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-5 libowcapi-3.1-5 libow-dev libownet-3.1-5 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p5-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 876692
Description: 
 libow-3.1-5 - 1-Wire File System full library
 libowcapi-3.1-5 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-5 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p5-2) unstable; urgency=medium
 .
   * Fix "owfs FTBFS with debhelper 10.9" (Closes: #876692)
 The libow-php5 was removed (see 3.1p1-4 below) but still in
 the dh_makeshlibs invocation (to be excluded...)
Checksums-Sha1: 
 0203c537e3a332f2220ce3fb7448873fde9d8945 3016 owfs_3.1p5-2.dsc
 441856470451e85baee4023227a75f0e0d5794c4 27452 owfs_3.1p5-2.debian.tar.xz
 d45af9607b97bdb620a4706d0ec2c99e6341c2ca 8664 owfs_3.1p5-2_source.buildinfo
 2828bd9ab69959ae6aaa3038ff2b1d70bf264474 1529530 
libow-3.1-5-dbgsym_3.1p5-2_amd64.deb
 eb7657364306df239baa7c1130dea8b547e2804f 307204 libow-3.1-5_3.1p5-2_amd64.deb
 d9973254e72499a2e9ea033de465a3ef6586d404 16420 libow-dev_3.1p5-2_amd64.deb
 15bcc0f7ce0e789fdb6188eccf7879b4b0541544 54728 
libow-perl-dbgsym_3.1p5-2_amd64.deb
 fd915b37a41d4cc4666fff5f4c75eb3de42a2a57 19824 libow-perl_3.1p5-2_amd64.deb
 1197a5f37a1fcabbae805b86d3c17ca35f642c5b 45406 
libow-tcl-dbgsym_3.1p5-2_amd64.deb
 57d5d6308185e867a7b550502678a4a6f9165361 20058 libow-tcl_3.1p5-2_amd64.deb
 1b1d51484742dba1a66ea27824ff894b4b6da534 19328 
libowcapi-3.1-5-dbgsym_3.1p5-2_amd64.deb
 1ee03b6e6c753b5fdb3b9ce31394f8e99e776bb7 11414 
libowcapi-3.1-5_3.1p5-2_amd64.deb
 febc53bcf0d1003a06ae987b90830271637f95bf 62390 
libownet-3.1-5-dbgsym_3.1p5-2_amd64.deb
 4cb4517f1fb5aa0259956a2f48eee3b0d7c90ce9 24922 libownet-3.1-5_3.1p5-2_amd64.deb
 5bc6ec187b83505bffa5aad4fcbd0d49e0132512 15416 libownet-dev_3.1p5-2_amd64.deb
 2a346a78e8eb9040d2599cf5db61f430ebc044f4 28878 libownet-perl_3.1p5-2_all.deb
 696ef9a12b24c13ff9f6d29440250899f386a96e 17172 libownet-php_3.1p5-2_all.deb
 b3bb8560d499150284c402f6f003201ee322a7a4 237330 
ow-shell-dbgsym_3.1p5-2_amd64.deb
 64a27b6a8ff8eeadd3e54d6449de31ec25786f61 27972 ow-shell_3.1p5-2_amd64.deb
 69412aa9ec722c2e61b2a0f75acd6ae91bc9898c 28068 ow-tools_3.1p5-2_all.deb
 3b53aa6acbac20b11cbfb38e9b740f239d06225e 16268 owfs-common_3.1p5-2_all.deb
 6db65fb6d7138caa0dd562ca30513ac2d697999c 8544 owfs-dbg_3.1p5-2_amd64.deb
 6711b960f985a229b38915ea68bb225547d4c0b0 197180 owfs-doc_3.1p5-2_all.deb
 e2a08039e3ee28193c75fb1b2bfe4d7aeb987d83 39656 
owfs-fuse-dbgsym_3.1p5-2_amd64.deb
 2ef49257fc6e3752ecc0080e9fe88cd5edab81f2 21532 owfs-fuse_3.1p5-2_amd64.deb
 7219ec59b02feeacb476b3ec305ce1c2827cc644 8578 owfs_3.1p5-2_all.deb
 fcd0baad4f5e11efe5545ebc6babc56646fa4d7b 15672 owfs_3.1p5-2_amd64.buildinfo
 8537d1215e7b45eaab33ecf34c1700e07014782c 117752 owftpd-dbgsym_3.1p5-2_amd64.deb
 7186dd2d9810d83d7490dd72f3daf087ab055982 47200 owftpd_3.1p5-2_amd64.deb
 1bcd2164d0b9cdc4f482ffc9751f8820693f1d87 74508 owhttpd-dbgsym_3.1p5-2_amd64.deb
 ec60cbc16ed7c100200d976c72073eb02356da06 30810 owhttpd_3.1p5-2_amd64.deb
 85184e8b917915323069912c8303ba001dde721d 78974 
owserver-dbgsym_3.1p5-2_amd64.deb
 a4b500a68b081255f194c167a38d563d06717415 31290 owserver_3.1p5-2_amd64.deb
 a5e7ec62c27bbf629a4e9d0c9251a8327bd6cd90 45048 
python-ow-dbgsym_3.1p5-2_amd64.deb
 9824a96fe664c6a30d98e69ae2563b2928c27222 33834 python-ow_3.1p5-2_amd64.deb
 3685cbda99563cac50ab89139cecab0faecb8837 15876 python-ownet_3.1p5-2_all.deb
Checksums-Sha256: 
 1f04a5c0dddb26b828e59889985938a039b5eb5051abfc62aa6845cf3284cbf9 3016 
owfs_3.1p5-2.dsc
 5ecdfee0230756217e599c1f449378b0bfb4babb65dca23b25f44f9c44ce2a17 27452 
owfs

Bug#877438: ITP: libset-intervaltree-perl -- Perform range-based lookups on sets of ranges

2017-10-01 Thread Vincent Danjean
Package: wnpp
Severity: wishlist
Owner: Vincent Danjean <vdanj...@debian.org>

* Package name: libset-intervaltree-perl
  Version : 0.11
  Upstream Author : Ben Booth <benbo...@gmail.com>
* URL : https://metacpan.org/release/Set-IntervalTree
* License : Perl (Artistic + GPL-1+)
  Programming Lang: Perl
  Description : Perform range-based lookups on sets of ranges

 Set::IntervalTree uses Interval Trees to store and efficiently look up ranges
 using a range-based lookup.
 .
 All intervals are half-open, i.e. [1,3), [2,6), etc.

 This perl library is used by starFusion, a perl programm that looks for fusion
transcripts on Illumina RNASeq data that I hope to latter also package
(probably within the debian-med group)



Accepted poti 4.9-1 (amd64 source) into experimental, experimental

2017-07-05 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 29 May 2017 16:44:50 +0200
Source: poti
Binary: libpoti8 libpoti-dev
Architecture: amd64 source
Version: 4.9-1
Distribution: experimental
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libpoti8   - library to create trace files in the Paje file format
 libpoti-dev - library to create trace files in the Paje file format (dev)
Changes:
 poti (4.9-1) experimental; urgency=medium
 .
   * New upstream version
 Fix small bugs from 4.6
Checksums-Sha1: 
 362828182d2890e0d522294e4075f49a40f06108 1859 poti_4.9-1.dsc
 a8f4367723ffd3b56c12067289cae7d516613fc1 37522 poti_4.9.orig.tar.gz
 16f1b15c9698bf618ddac2a4e81c996e70e3968b 2944 poti_4.9-1.debian.tar.xz
 ac1694c77cf1289d8d93a43ed3105dd330011b4d 6844 poti_4.9-1_source.buildinfo
 dbc846f5501f9c9ac1cbdefcdbbb769571633087 3798 libpoti-dev_4.9-1_amd64.deb
 ed378e8899d7132eed886c3684312400ee67885d 28302 libpoti8-dbgsym_4.9-1_amd64.deb
 a53f90f3e95980f659412912b6a633625898f4cf 10758 libpoti8_4.9-1_amd64.deb
 895a80b800b30e8098f1220cded5d1f81b671225 6468 poti_4.9-1_amd64.buildinfo
Checksums-Sha256: 
 a4b4a685d4d14a0fd2948fe42e03f4bde5e8dac9edc86df45df358881b40f3e5 1859 
poti_4.9-1.dsc
 0d39696191da94f883bdd71c2759eddd1666c8ebe2294a9adc9965422d738d88 37522 
poti_4.9.orig.tar.gz
 6e531819873b1a55ca024e121a05b89c8af68d1f3417fcccde429a85dfd18c83 2944 
poti_4.9-1.debian.tar.xz
 81365a2480cc4938c52aa8b6ee98242d85de75543867e2f0f2b55396d34ac7f0 6844 
poti_4.9-1_source.buildinfo
 77dd1fd0483a6401d355094128712523140a9839488c527cd4bb0f9c14b58b76 3798 
libpoti-dev_4.9-1_amd64.deb
 917655c7ad7c094f35bbedace3640b693db96f18a01ee240cb79f9f71c4f295b 28302 
libpoti8-dbgsym_4.9-1_amd64.deb
 eaaa546acb2b39498c5e16bdc1bd9df2847e585d5963efe59f0aa5000f885a17 10758 
libpoti8_4.9-1_amd64.deb
 b7bb0a718c129f6079cf801ce3f98ada1ec97659889c523b0142ed6e96554d40 6468 
poti_4.9-1_amd64.buildinfo
Files: 
 0689f21b4430b34878cd1769a3fd7bdd 1859 libs extra poti_4.9-1.dsc
 9d9f15ca51ba396a1738425724b13271 37522 libs extra poti_4.9.orig.tar.gz
 3b2f4d45e4ca05d610d29f7812358f6a 2944 libs extra poti_4.9-1.debian.tar.xz
 7e092d620c5f4476b73940cac7db695b 6844 libs extra poti_4.9-1_source.buildinfo
 0159a89b7fda91cb809fee7253835667 3798 libdevel extra 
libpoti-dev_4.9-1_amd64.deb
 a9eedf61457bb25b8f45ae604c16097d 28302 debug extra 
libpoti8-dbgsym_4.9-1_amd64.deb
 e225d9a1167083bfd3c5c15bd5374e09 10758 libs extra libpoti8_4.9-1_amd64.deb
 a7357a1d88e3ec57b47065de625b30fb 6468 libs extra poti_4.9-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlksNisACgkQlkfeY37H
t1G0exAAi8ct4Nbf66fzoXILtTG+KSvJJzUOoqsYcwDQHAa/ZoeEwLCs7vFV3/W2
ognZzGcHen/gyN3lDjZsPnDxszZFVRmnbdFNPhs4nY7qgajBcpCe9Hb/Zpa0pWBl
Dm6D8H83b0dm/XmNOFe+orqfoZ82EFKhfT5Kh2E+0I8+UB5ckeGRQOKGzOQi6efn
nVXUMChfT4AbgqY9G7IdwVPOnbG9D1DfxiHRbaS4HmM6aaZn/lJk/tkbgs810FfI
nXL0CmrkflPXXNrqeXJrvEo7nRN6CMtGqzFruWxs9iOl3BI8x1I/lkNplZItWdKz
Jpiq1zxlcb9vEso6Y0iq7TWfvHp9cixfG3fT+TvzogD1PG1NW996h24+7f8pjE4G
m5BHJQPYo/1GygIvd2QNthPRQNqcmInhlV1ktD1p+xFqkSynod0txCzhgVkCqbAQ
9SLQaMYbblT7x9AoAbFYU69Vp28hEfds4+klXcmcuJaILBXpRABTceu2viLatIhX
xWBmK9lOzqK3y8PAkuVIr/iM0n304tnjHgM0/+F88P8C/r5/F3l7cRck+DoR58dy
gtqmmmyy+k4hIsyQ5Fhy2I4nuUXXU0KeOTBrA//YVvJE4qFp1qTp6z//n/3hlS9k
nui9xB9C9IzKN/j2g32lGNKNVCZaYY7Isi1q7VH2eBq1hJckDIc=
=CWCU
-END PGP SIGNATURE-



Re: Too many Recommends (in particular on mail-transport-agent)

2017-05-31 Thread Vincent Danjean
Le 31/05/2017 à 09:51, Simon McVittie a écrit :
> On Wed, 31 May 2017 at 00:20:18 +, Anthony DeRobertis wrote:
>> AFAIK, mdadm's default (and maybe only supported, without some custom
>> scripting) way to report a degraded array is email.
> 
> Can't it report this via the system log? (syslog, systemd-journald)

mdadm reported events are usually critical ones.
If I remember correctly, these events also appear in system log.
But, even if I use logcheck, it too easy to miss such events in
system logs (or logcheck reports) : there are too many events
(or too many false positives for logcheck).

mails from mdadm are really an very important feature for me.

  Regards,
 Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



default config not in /etc [was: policy for shipping sysctl.d snippets in packages?]

2017-04-23 Thread Vincent Danjean
Le 23/04/2017 à 19:48, Josh Triplett a écrit :
> Evgeni Golov wrote:
>> My gut feeling is that droping the file to /usr/lib and allowing the admin
>> to override it later via /etc. And then load it in postinst.
> 
> That seems like exactly the right approach, and yes, you should put it
> in /usr/lib/50-yourpackagename.conf , following the conventions
> explicitly established for that purpose.  That makes it easy for the
> sysadmin to override *either* by directly creating a file with the same
> name in /etc *or* by adding a file later in the sequence to tweak
> individual settings, both of which can easily be done in packages for
> sysadmins who want to package their configuration tweaks. 

  It is very easy to override, yes. But, once done, it is very difficult
to know that a modification is done in /usr/lib/* that must be adapted
to the overriding /etc/* file.
  For me, this is a major regression over the 'all config is in /etc'
that has been pushed by Debian for a long time.

  Moreover, my /etc is tracked by etckeeper (and this save me several
times). Files in /usr/lib/* with the default configuration are not
(and there is even no way to 'automatically know where they are).
  On several of my systems, I moved /lib/systemd to /etc/something and
created a symlink from /lib/systemd to /etc/something so that
etckeeper track the default configuration on my system. It is a pity
that the same thing should be done more and more now.

  Perhaps, Debian can try to standardize this (for future releases),
for example asking to put the default config files in a central
place (with symlinks if required), for example /etc/default-config
or even /lib/default-config and/or /usr/lib/default-config.
  So we can imagine programs (such as etckeeper) that will track this
(these) directory(ies) and dpkg/apt hooks that can tell the admin
that a default config file has been modified when a override file
as been installed in /etc.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: init system agnosticism [WAS: how to remove libsystemd0 from a live-running debian desktop system]

2017-04-13 Thread Vincent Danjean
  Hi,

  I do not have any strong position on this subject.

Le 13/04/2017 à 02:13, Russ Allbery a écrit :
> I guess I'm confused about what you think this email will accomplish.  I
> feel like it's just another round of being convinced that, since you
> dislike systemd, everyone else must also somehow dislike systemd too, deep
> down inside, and if you just find the right argument, all those people who
> think they like systemd will realize that they actually don't and will
> come help you build something else.

  For me, the first argument explain in the first mail is not this one.
systemd is not portable on lots of system (hurd, kFreeBSD, ...), upstream
systemd is not interested in making its code portable, nor to stabilize
its interfaces so that other system init can easily implement them, lots
of applications are now using libsystemd to get 'classical' information
(status, ...) because they do not want to have to deal with several init
system and porters of platforms not supported by systemd have a really hard
work to follow systemd developments and patch all things.

  For me, this seems a real issue (and, again, I do not know the good
way to deal with this).
  From your mail, you seems to deny this issue ("everybody can be pleased
with systemd" and/or "this is not a general problem, just a problem
from people that dislike systemd"). For what I see, it seems a problem
also for people that like systemd but cannot use it on their plate-form
(Hurd, ...)

  I'm persuaded that ignoring this issue will lead to an unmaintanable
Debian distribution on plateforms that do not support systemd in the
middle/long term. But, perhaps, it is what the project wants.
  Enrico is proposing something else. I'm not sure if his proposal is
good and doable (ie with enough support from various parties and
manpower).
  I'm not pleased at all with arguments to stop this discussion nor
with arguments that try to deny the issue. I do not know what can
really be done to solve the issue.

  Regards,
Vincent




Re: "Ask HN: What do you want to see in Ubuntu 17.10?"

2017-04-07 Thread Vincent Danjean
Le 06/04/2017 à 21:08, Gunnar Wolf a écrit :
> Nikolaus Rath dijo [Wed, Apr 05, 2017 at 03:18:57PM -0700]:
>> I think there's a pre-requisite that's much harder for a lot of people:
>> finding out what laptop works well with Linux. This is the stage where I
>> have repeatedly failed - the differences in model numbers are just too
>> tiny and subtle, and typically things that work well are no longer sold
>> commercially.

This is even more difficult when you are required to choose between
a subset of a particular vendor due to professional rules ("marchés
publiques" in French)

> FWIW it's been a long time since I had any problems in this regard,
> and I'm surprised it's still an issue among knowledgeable people by
> 2017!

The previous rules make us choose DELL laptop. It worked reasonably
well. For my last laptop, I had to choose a HP one (ZBook 15). It is
a pity. I cannot suspend/restore reliably if I want to use the
NVidia card with the nouveau driver (I never tried the non-free
NVidia one) and not only the Intel card (and, on my laptop, the
external DP port is only wired to the NVidia card...)
  I already reported some bugs in the kernel/acpi/nouveau that
have been fixed. But it was 'easy' : these bugs were systematic/
reproducible.
  I've to create a new (kernel) bug with the current situation but
it is difficult to do so. The freeze are not systematic, they are
hard freeze (nothing in the logs), generally after a resume.
I'm under the impression they occur in ACPI routines.
Currently, I'm using the 4.7.0-1-amd64 kernel that allows me to
suspend/resume about 10 times between freeze (and hard reboot).
I've to test the 4.9 and 4.10 newly uploaded, but a few days ago,
with the previous versions, the 4.9 and 4.10 were freezing at nearly
each resume.

  Two days ago, I ran the Ubuntu firmware tests on this laptop:
Test   |Pass |Fail |Abort|Warn |Skip |Info |
---+-+-+-+-+-+-+
[...]
Total: |  981|  195|2|   33|  222|   11|

  I think the HP Bios is not really of good quality...

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: SPAM

2017-03-05 Thread Vincent Danjean
Le 05/03/2017 à 16:29, Joerg Jaspert a écrit :
> That would be the next step, DMARC, which is SPF plus DKIM plus some
> extra DNS records. And DMARC then allow to tell other mail servers (that
> follow DMARC) to get rid (spamfilter) mail that aren't from what your
> DNS says it should be from (or aren't signed correctly/at all). But its
> even more maintenance and burden for a group like Debian.

Is it even possible? I was under the impression that DMARC plays very
bad with mailing lists. If I recall correctly, mailman has to modify
mails that come from a DMARC domain.

  Regards,
    Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted latex-make 2.2.3-2 (all source) into unstable

2017-02-27 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 27 Feb 2017 10:56:07 +0100
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.3-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 855930
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.3-2) unstable; urgency=medium
 .
   * provide a writable HOME directory to compile test. This is
 required by lualatex (Closes: #855930)
Checksums-Sha1: 
 fcbbce8b3bc2b568259c6315e08588779979ba13 2079 latex-make_2.2.3-2.dsc
 8ceda0fdc32605f5c596bf989498a21c1f5e911e 6064 latex-make_2.2.3-2.debian.tar.xz
 2be8075197ea9a5468d972ea6c22c3a4796a6e4c 5050 
latex-make_2.2.3-2_source.buildinfo
 f3fb955996bdea9ab10c207c39343eb2a6c4c43a 775134 latex-make_2.2.3-2_all.deb
 ac9e931fed78b6df6a944b518b36c9f44490c0ed 9016 
latex-make_2.2.3-2_amd64.buildinfo
Checksums-Sha256: 
 522aa00c54287b49c540f6eebe9f8dc3f0a5917011aad237e3d4f91baa657506 2079 
latex-make_2.2.3-2.dsc
 8dcac0d4a728146dc007b5a7ab0f2700ea99f4fdf12d162e6dc752646985c461 6064 
latex-make_2.2.3-2.debian.tar.xz
 c1b3edb7e08481db6f2a7313a80c43c9e0656e17e328985c6b94f10f1fdc282f 5050 
latex-make_2.2.3-2_source.buildinfo
 2fae94eb8d6092150174893a2b63026949b954fc3d0f2d57111830fee70ae863 775134 
latex-make_2.2.3-2_all.deb
 a8704b71c9a5999895c4e83577a72082c5775078fba6f5e030996bb5f5395a5f 9016 
latex-make_2.2.3-2_amd64.buildinfo
Files: 
 6eca286774c34a6f47d68ac3cdb59e35 2079 tex optional latex-make_2.2.3-2.dsc
 01c776b08dd871f312c38b585d6fe8f6 6064 tex optional 
latex-make_2.2.3-2.debian.tar.xz
 30c924bee535282c9ae9061e220812c1 5050 tex optional 
latex-make_2.2.3-2_source.buildinfo
 c23034baf128a3f5c315b44e025f750a 775134 tex optional latex-make_2.2.3-2_all.deb
 9a37aaee21b7b391d8e43caf642da228 9016 tex optional 
latex-make_2.2.3-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAliz/DQACgkQlkfeY37H
t1EegxAAhOjE6uTbFkOR1IIhKe/kH3O7qcOh0/FX1vgPvLL92I6jHXVVtS3ecHNa
2//CxL8Z8aayz6J5dJzicTnTUYlwyNBx+43P9ClPfH/dCzQ5o5yHqR5UNa11zcKX
u5dzaUiwaHWIGxVJVkCi8c1bDs2+ztQQvqfbt+6B87H6/nA3ZOheVk7yatt5SovA
2gxISTreI1gl1oun9aecJigph5EJ3DZ0foce3p70dI7FiFwdqQviTFE2fkk9g/8Y
yDwQx5WltnI1LWpIcYwikFEN5KFiXSFPgjTG9bC27OpWkzStpIccTkyZ87O8O77u
Pmb2PqFyibsyKPFEiMpsF957mloA+XJ/kJ0zcq3A6aWKyOrrNDov27GFeQxdEwMo
iQH3lKKO6RN6tdmaPgWANJjyM+DWnwq/Ws/x5o92avIqzNKT3JZH+CK0nScJVjlD
VJLvq4ab+a7GhrE0FPBEQf7mPQenCXv3F4BXbtFV89e+NtC92e5F2iKf9mA6p0wT
bgfX/od/0NYGKRCjtLnnp+eXwFYZpvGLylisFt0mV6bSphfQ+f+oEElfZ3+mzJ8C
02cdLBYDDtHjlKRGgdX6o8vTeRE/wqyQ56hoEaPMZfzDfD2YCt6QZs2+oqlyWW7K
LOlbWQMAOfv6i8D2Pdaw2GcopKohwVx1M1THtB4aPOWk3HlCzKc=
=HiOA
-END PGP SIGNATURE-



Re: De-Branding of Icedove, reintroducing Thunderbird packages into Debian

2017-02-16 Thread Vincent Danjean
  Hi,

Le 15/02/2017 à 18:35, Christoph Goehre a écrit :
> With the change to the official Mozilla branding the users profile(s) will 
> also
> be changing from '$HOME/.icedove' to '$HOME/.thunderbird' so we need to 
> migrate
> the profile folder. This is done by /usr/bin/thunderbird, a wrapper script,
> which does the following things during initial startup:
> 
> * Copy the contents of the old profile folder into the new folder 
> ~/.icedove_moved_by_thunderbird_starter

It is a copy ? (and I suspect there is also a move to $HOME/.thunderbird)
If there is a copy (and not only a move), how do you handle (missing) disk
space?
  I saw lots of icedove installation with several tens of GiB of cached IMAP
mails. There won't necessarily be enough place to do a copy of such profiles
so the migration must handle correctly this possibility (if all the profile
is copied)

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: IPv6 problem for one debian mirror

2017-02-07 Thread Vincent Danjean
Le 08/02/2017 à 01:17, Samuel Thibault a écrit :
> Hello,
> 
> Vincent Danjean, on Wed 08 Feb 2017 01:05:51 +0100, wrote:
>> However, the machine answers to IPv4 connections but not to IPv6
>> $ time wget -6 ftp.fr.debian.org
>> --2017-02-08 00:53:58--  http://ftp.fr.debian.org/
>> Résolution de ftp.fr.debian.org (ftp.fr.debian.org)… 2a01:e0c:1:1598::2
>> Connexion à ftp.fr.debian.org (ftp.fr.debian.org)|2a01:e0c:1:1598::2|:80… ^C
> 
> No problem here (Orange ISP).
>
>>   So, who should be contacted to fix this problem (ie either remove
>> the IPv6 for debian.proxad.net. or makes this machine to answer again
>> to IPv6 or change the ftp.fr.debian.org alias or ...) ?
> 
> It's between your ISP and free. Unfortunately ipv6 is not so well
> connected, the Cogent IPv6 network is for instance notably *not*
> connected to google, so I wouldn't be surprised to see other such
> issues.  Which is your ISP?  That's probably where to start.


I had this problem at work this afternoon (ie with Renater routing,
2001:660:5301:: prefix)

I also have this problem at home with a sixxs tunnel (prefix
2a01:240:fe54::/48)

  Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



IPv6 problem for one debian mirror

2017-02-07 Thread Vincent Danjean
  Hi,

  I'm writing to this list to know where to report the following
problem.

  I'm using ftp.fr.debian.org as a mirror on several of my machines.
This is a CNAME to a machine of a French ISP:
$ dig -t any ftp.fr.debian.org
[...]
ftp.fr.debian.org.  1894IN  CNAME   debian.proxad.net.
[...]

This machine itself has two IPs: one IPv4 and one IPv6:
$ dig -t any debian.proxad.net.
[...]
;; ANSWER SECTION:
debian.proxad.net.  52429   IN  A   212.27.32.66
debian.proxad.net.  52701   IN  2a01:e0c:1:1598::2

[...]

However, the machine answers to IPv4 connections but not to IPv6
$ time wget -4 ftp.fr.debian.org
--2017-02-08 00:53:54--  http://ftp.fr.debian.org/
Résolution de ftp.fr.debian.org (ftp.fr.debian.org)… 212.27.32.66
Connexion à ftp.fr.debian.org (ftp.fr.debian.org)|212.27.32.66|:80… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 1915 (1,9K) [text/html]
[...]
real0m0,108s
user0m0,000s
sys 0m0,000s
$ time wget -6 ftp.fr.debian.org
--2017-02-08 00:53:58--  http://ftp.fr.debian.org/
Résolution de ftp.fr.debian.org (ftp.fr.debian.org)… 2a01:e0c:1:1598::2
Connexion à ftp.fr.debian.org (ftp.fr.debian.org)|2a01:e0c:1:1598::2|:80… ^C

real1m52,272s
user0m0,000s
sys 0m0,000s
[I did a C-c in the shell to interrupt]

My IPv6 connection is ok for other sites, for example:

$ time wget -6 www.debian.org
URL transformed to HTTPS due to an HSTS policy
--2017-02-08 00:57:00--  https://www.debian.org/
Résolution de www.debian.org (www.debian.org)… 2001:610:1908:b000::148:14, 
2001:41c8:1000:21::21:4
Connexion à www.debian.org (www.debian.org)|2001:610:1908:b000::148:14|:443… 
connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 14926 (15K) [text/html]
[...]
real0m1,079s
user0m0,012s
sys 0m0,000s


  So, who should be contacted to fix this problem (ie either remove
the IPv6 for debian.proxad.net. or makes this machine to answer again
to IPv6 or change the ftp.fr.debian.org alias or ...) ?

  As a side note, it is really sad that APT imposes a 1min timeout
for such problem. I proposed a patch in #668948 but never got any
feedback :-(

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: lintian: shlib-read-write-env

2017-02-01 Thread Vincent Danjean
Le 31/01/2017 à 16:56, Christian Seiler a écrit :
> (Any program that calls setenv() will call getenv() as well at
> some point, otherwise you could simply drop the setenv() completely;

Not necessarily. Instead of calling getenv, it can call fork+exec
(that will run an other program, MT or not, in the new environment).
The most classical example is the shell that can set lots of
environment variables from its startup files without necessarily
reading them.

> so any program that does that in an MT context is broken anyway,
> regardless of whether it uses a library that does an additional
> getenv().)

In an MT context, such a program should probably use setenv between
the fork and the exec (ie not in MT context) or, probably better,
use exec variants allowing to specify the new environment.

  Regards,
    Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted ocl-icd 2.2.11-1 (amd64 source) into unstable

2017-01-19 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 20 Jan 2017 07:01:03 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev
Architecture: amd64 source
Version: 2.2.11-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.11-1) unstable; urgency=medium
 .
   * New upstream release
 + OCL_ICD_ASSUME_ICD_EXTENSION must be set if the ICD is non compliant
   (for example, if it does not export clGetPlatformInfo)
Checksums-Sha1: 
 72598783ade44a89b0facdfa7a92d489471f5556 2105 ocl-icd_2.2.11-1.dsc
 d5c5faeb5dded49ec78feea7914616c2d96966b3 455800 ocl-icd_2.2.11.orig.tar.gz
 662e46ef01335600774978c6467e1962f87c651d 11044 ocl-icd_2.2.11-1.debian.tar.xz
 34f7ff9746015b2ffdba99d0ece71a5d1edf9b19 17508 ocl-icd-dev_2.2.11-1_amd64.deb
 122112e1c9e9f11798ba5eab5c4e885617aeab1a 40042 
ocl-icd-libopencl1-dbgsym_2.2.11-1_amd64.deb
 32b621147f7b170c453e472b6d036c4b945548be 36806 
ocl-icd-libopencl1_2.2.11-1_amd64.deb
 345450fb9af42cac9ba9f57d34af6380c229e625 10186 
ocl-icd-opencl-dev_2.2.11-1_amd64.deb
 0338f13527f95c60243599151ef13c7bd81d06b4 6038 ocl-icd_2.2.11-1_amd64.buildinfo
Checksums-Sha256: 
 605278590678baadcca07da70bdcd0c172d63d24e4f5127bf61acb86f4def398 2105 
ocl-icd_2.2.11-1.dsc
 02fa41da98ae2807e92742196831d320e3fc2f4cb1118d0061d9f51dda867730 455800 
ocl-icd_2.2.11.orig.tar.gz
 5094c0efe515adb27c8547db3cf43a9cfdb9235c97be877678a36bea41de5f77 11044 
ocl-icd_2.2.11-1.debian.tar.xz
 8f0d8c9ec99a2923c776db657025ecaa8d177d1fb0896ec2cc7b4d455a85147a 17508 
ocl-icd-dev_2.2.11-1_amd64.deb
 64c8c4b5733e25b8cde5c249c120d3c1214169842b1bf9b31b2a333675a73600 40042 
ocl-icd-libopencl1-dbgsym_2.2.11-1_amd64.deb
 9ec85d5fe9dcb97719fe062e8325e29715cc969c7533e680f9b5ae8995f0444a 36806 
ocl-icd-libopencl1_2.2.11-1_amd64.deb
 d238fd0ce8909720343ad58f4a39995429fec7e917959a996083f4493770fd08 10186 
ocl-icd-opencl-dev_2.2.11-1_amd64.deb
 babd06bfc4fcdbaa3cd1789afc99274dcf4ddd51d000b742b6f038bfc518e287 6038 
ocl-icd_2.2.11-1_amd64.buildinfo
Files: 
 955cf5265b92eecf1e56a169097dddbe 2105 libs extra ocl-icd_2.2.11-1.dsc
 32335dc7dd3ea2a4b994ca87f2f80554 455800 libs extra ocl-icd_2.2.11.orig.tar.gz
 196109bfb47e6d7cece4eec83c31c16e 11044 libs extra 
ocl-icd_2.2.11-1.debian.tar.xz
 21c126aec61d67edcdc5fb7a0dc92350 17508 libdevel extra 
ocl-icd-dev_2.2.11-1_amd64.deb
 1612515d7a1dfbda8cfbeeed0d671b23 40042 debug extra 
ocl-icd-libopencl1-dbgsym_2.2.11-1_amd64.deb
 72129f81ff796947e4c68e50fab8ffad 36806 libs extra 
ocl-icd-libopencl1_2.2.11-1_amd64.deb
 942d1dcac757a04ba95bf05ce693943e 10186 libdevel extra 
ocl-icd-opencl-dev_2.2.11-1_amd64.deb
 d317ef820cdea6b49b6a865b05bfcf1f 6038 libs extra 
ocl-icd_2.2.11-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAliBq+gACgkQlkfeY37H
t1GE6hAAjUWF8veENbnUgRBpAfo4Vw7r3AJmQizGXELYITSn6PhIyI2h5sICZitY
BBMe1BZGo39lngr17cm7OuMWv33hL1ugt/kXJ1C4c836FNtK1+Yw3tSeZUtd/hjP
v+TwChdjB0PE3hRLZlF1q/G1Nbs/IYKCf6AynGqBOANl05wVV4bGSC8q0CpGate4
dYWNPndOIG3RIlCaXnzsc6Oznj7K3G+1HTKlS5rf7htn6m+bpYbKfURwl9Gb2vZr
nxf6awxVUfDYWwvLC7VUn1o/DAZlINngZ94uPKNTeq/jkgum2HhmAQmx2SjOxwrY
2vZdDAWZUjzNtYx5eO+3EYxosutCEwRIInNtcVtYtou697YZwIj2sL00pT6cuCvb
K99WgTa9ZxQvr2ZvxB3LZnJDNGk7+KCff1OkvrCtuCcG2qv3ftIN445qI/bYbwdg
c5mMl+oePTTcNn3ogE7O32lQs5OPycvdW9mu2BpSSV9dzpvtaoM4Uu1QrkwpH9gS
pRIlxZzwNOfBswoRyf1axk8wwp5aDG2feXUnRURZXeloip6kkhIQ3ZmCvvbJn3Rv
CDi6wTwnzMm+Hq//GXUv9qFPYk7i2rxvEV97hhFnIhGU7am/6W+0vTTM6+HWaVyU
ivvjnZOU/Als2Ydt+x17RALVlhQg3k/R9rWFTqpBqkl4X9Q1h+g=
=nPHi
-END PGP SIGNATURE-



Accepted owfs 3.1p5-1 (all amd64 source) into unstable, unstable

2017-01-17 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 08 Jan 2017 23:32:07 +0100
Source: owfs
Binary: owfs-common owfs libow-3.1-5 libowcapi-3.1-5 libow-dev libownet-3.1-5 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p5-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libow-3.1-5 - 1-Wire File System full library
 libowcapi-3.1-5 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-5 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p5-1) unstable; urgency=medium
 .
   * New upstream release
   * fix watch file to avoid to look at non-release files
Checksums-Sha1: 
 aefaf52e1266a6ba8aa92bd6c95e5eb087771795 3016 owfs_3.1p5-1.dsc
 3f4fda54c2bd4fe9a708c0415ebd5f751e561715 1487748 owfs_3.1p5.orig.tar.gz
 7b1beaba97329cb3c0c94e76fdb998601de9ec25 27348 owfs_3.1p5-1.debian.tar.xz
 e7aa0fded736e1d616c553c68a505dcb83fffb73 1533076 
libow-3.1-5-dbgsym_3.1p5-1_amd64.deb
 ad5c906a91876f37bfa7f2d777eda2ddf588d88f 301876 libow-3.1-5_3.1p5-1_amd64.deb
 8e56ba879c09b766e722aefb2f52cbcd40cf24b8 16316 libow-dev_3.1p5-1_amd64.deb
 5c30ebf159b8d3df3fb0bfc60d515e8ab56813a2 53844 
libow-perl-dbgsym_3.1p5-1_amd64.deb
 078530137139d55be1ccee522840eff708806f6c 19464 libow-perl_3.1p5-1_amd64.deb
 c2c8655de7e40f4d0cb2eb966505ff20b2e722a9 45374 
libow-tcl-dbgsym_3.1p5-1_amd64.deb
 72245112a18859245096d65b1d902249b0799779 19666 libow-tcl_3.1p5-1_amd64.deb
 492e8fbb4915a753d8f9cc7974a4810d43a933a1 19392 
libowcapi-3.1-5-dbgsym_3.1p5-1_amd64.deb
 41b3e7799a8e7332039cf7a44e781595b30d0d4e 11266 
libowcapi-3.1-5_3.1p5-1_amd64.deb
 e00cf239c99a46941cf11c34cff65ccc45b0a05c 62234 
libownet-3.1-5-dbgsym_3.1p5-1_amd64.deb
 0dd50b6f48b547643c4d933f3df7273dbf03f64e 24520 libownet-3.1-5_3.1p5-1_amd64.deb
 f7e3f1d3eceba21abbf89f3ac26745a2cae23fba 15310 libownet-dev_3.1p5-1_amd64.deb
 a2bf789beebda56d82a3d182666e6b3d64644d1d 28780 libownet-perl_3.1p5-1_all.deb
 7e6e008473bc24ff0ae341461633379b2efa99c4 17070 libownet-php_3.1p5-1_all.deb
 73fb283c14369ef40af23a39ca5beb26ec0e4cd5 234800 
ow-shell-dbgsym_3.1p5-1_amd64.deb
 c9d172db2b4db4497d579fa0290092c0ffc7c436 27496 ow-shell_3.1p5-1_amd64.deb
 606f92531624c07d1f72c4b5b114696ae8c30061 27974 ow-tools_3.1p5-1_all.deb
 f16f543c0523dc20942925b060cbc56a3c2598f5 16174 owfs-common_3.1p5-1_all.deb
 29918db7723ff2bd582025b452a0794526b92808 8444 owfs-dbg_3.1p5-1_amd64.deb
 5ba025fb787f2d1b2cda6ed301d0f196df680440 197072 owfs-doc_3.1p5-1_all.deb
 a1fb48d808e121cf07868e4d37ad52a2f6f24e06 39412 
owfs-fuse-dbgsym_3.1p5-1_amd64.deb
 2ad2a1ee0ed2addd10a365e4e1b75caf2b3a21f8 21216 owfs-fuse_3.1p5-1_amd64.deb
 6503c3c3ade80600ceb6d7943d230217fd0f2dba 8476 owfs_3.1p5-1_all.deb
 eb626e6121d4159200e1c047896da68f018da784 14447 owfs_3.1p5-1_amd64.buildinfo
 18be5e4492c11ee0ecb918876096d3801e8348bb 118114 owftpd-dbgsym_3.1p5-1_amd64.deb
 bd623ad5b129417b89f33d94bb279db911958fa3 46582 owftpd_3.1p5-1_amd64.deb
 eeedcb2be0ef55c80128d4582208ee80f76e7bee 74472 owhttpd-dbgsym_3.1p5-1_amd64.deb
 daad668c8e62567eeb8eecec0d1e4e6b5604fdb8 30242 owhttpd_3.1p5-1_amd64.deb
 3770ab148b631c21bf6ddb037cab1c8766851abb 78620 
owserver-dbgsym_3.1p5-1_amd64.deb
 8a29c088aed52e7ca3413b9a165d41a32bc129de 30582 owserver_3.1p5-1_amd64.deb
 539e56656177396cbcb4f956a283c78b3be99d1f 45366 
python-ow-dbgsym_3.1p5-1_amd64.deb
 ca323082237a1af1dafb86e24591bf0a6aa3a477 33910 python-ow_3.1p5-1_amd64.deb
 64d873b7f81397552c5701206442769273e6621b 15784 python-ownet_3.1p5-1_all.deb
Checksums-Sha256: 
 cf651f3c885a0e605e65e2e35923fc31ca802ad6e72e06dcd33a1028f793d3cf 3016 
owfs_3.1p5-1.dsc
 87138566695f26743bc2b7334695b34b89b78ace1615ea74731158f51a27601f 1487748 
owfs_3.1p5.orig.tar.gz
 5fe94473e81f24e88f2a190b996b44a0a70f4611637ed857f488d986746213ec 27348 
owfs_3.1p5-1.d

Accepted latex-make 2.2.3-1 (all source) into unstable

2017-01-08 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 08 Jan 2017 23:10:39 +0100
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.3-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 815836
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.3-1) unstable; urgency=medium
 .
   * New upstream release
 + Add LuaLaTeX support (Closes: #815836)
Checksums-Sha1: 
 312e85a4d2da4d205cbc837d3c6dde41393382ad 2079 latex-make_2.2.3-1.dsc
 020362760730330a70e305820d47bc6fe7d4bcf3 66999 latex-make_2.2.3.orig.tar.gz
 04ee230911c3fb13a8580f4f31ded3554485fb48 5920 latex-make_2.2.3-1.debian.tar.xz
 b01f6770148b9a78dd5a147440d201a0f5fbbe6e 774992 latex-make_2.2.3-1_all.deb
 b190523d654d3c80ba0de5a5c5d7e50c4e479fc2 8828 
latex-make_2.2.3-1_amd64.buildinfo
Checksums-Sha256: 
 83bd02631b900b3d29c4cacfc5fb4237ca4b3f837b67b5b556a0ad15015c3f55 2079 
latex-make_2.2.3-1.dsc
 23991164cadf5376d44094096f8a397583dc80a68a9bef895912543b63bb22e8 66999 
latex-make_2.2.3.orig.tar.gz
 a3d738768e56f62af907554c4b2b708ecf98389e4fb84779816b8bd407525493 5920 
latex-make_2.2.3-1.debian.tar.xz
 cca7251d7a4209bc61d9bd1c0ca6d005f9bc5f0eda7edb96e27eacc32b86 774992 
latex-make_2.2.3-1_all.deb
 ec005f78f3dcba36932d51403fc8e9f3dc547f93646c1be6631155ac89d075bf 8828 
latex-make_2.2.3-1_amd64.buildinfo
Files: 
 e5ed42531c56045782ad8f6869055b4e 2079 tex optional latex-make_2.2.3-1.dsc
 84970396a9eb49fb53881ba95d9d5549 66999 tex optional 
latex-make_2.2.3.orig.tar.gz
 eac5234be1ffa65c2540dd55625b4c05 5920 tex optional 
latex-make_2.2.3-1.debian.tar.xz
 e80e5e087c9e382d64d836483aacd827 774992 tex optional latex-make_2.2.3-1_all.deb
 4f45fa1f62024ca67b16a809723608c8 8828 tex optional 
latex-make_2.2.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlhywOkACgkQlkfeY37H
t1EgLA/+LzG9ePog47V0zzeeyeMf0MzctsVMMv2AxBgsCsTKgsWIbz2K8/N5SCAx
dYq3O5E/u+qu+JlylyoHoJhyQGUDMndPn+4LPzz4bkI/GGmVkAOsYqQQM6I4Ai4i
Ls9xi/9toXvr1WdL8xJi+VMWzv6cLcDDvpfEDHj2Zz2hbv7hj0vxXTIVQiX+n9ON
rqvyqfing9wHxiddZGXYM6oGCwEiiLNfUBi090kzll2Fr/BAcK9cT9r4c53nBJfg
qER/GDxap/YUYybTQa2gOfNObOL64jAtAS8UynJks+cG9wqmKlSaT8D8REph1FD1
Y0WqoyxZGxWNSp0qyarlWsz/cx//O1WPQhooPfeNB8p1c+ExL8ewMMXVWbbETIA5
ZeljUwmWijp7c2ycV2w1uZiJpHXNX2nI12JEkWjfZjnwb8lxVZ+Hp7ZHc/TbW8cf
y9Mt+yszw6APoZwqO5pFaiz0WMV7s6EOq28+GwWBV2WaCvdWpUck3VGsFL+vmqm+
WlhUBm/pNN0+p0iZmPnftvpNIGdS8jl/A0/7sQfWlQlk27Fu28bCo25oEHPXWyEz
542mhM70aXoJwMp8hH58nr5zQ6h/VEw7TnVIpK1qAIKibVXHjRI7Zv6rAcPSN3MD
8u418IIgxiCWy/dvM+wQJJyYJ8CtIE8ZSfAxKlJarBeEMduq2oI=
=77Wz
-END PGP SIGNATURE-



Accepted oar 2.5.7-3 (all amd64 source) into unstable

2016-12-19 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 19 Dec 2016 14:47:53 +0100
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.7-3
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron <pierre.ney...@free.fr>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 848477
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.7-3) unstable; urgency=medium
 .
   [ Pierre Neyron ]
   * Fix recommends/suggests in oar-server-mysql: any variant of mysql can
 do (Closes: #848477)
Checksums-Sha1: 
 4bc83bb8b50336500fe1934b8179d82f9721532e 2409 oar_2.5.7-3.dsc
 ceb8f82bd083b2e4df57d151c53832fd98698d45 10696 oar_2.5.7-3.debian.tar.xz
 e23f96723872b279ff783bd13cf56385b95dd2db 76214 liboar-perl_2.5.7-3_amd64.deb
 d4520446a1ff5f95e5dc326cb53036f9daa3a80d 12778 
oar-common-dbgsym_2.5.7-3_amd64.deb
 4fb284126ac01596cad982c0ed32fbfaa66c5d14 64420 oar-common_2.5.7-3_amd64.deb
 33c84f7eea04461d5d1bf2955fed8e693046b231 2833544 oar-doc_2.5.7-3_all.deb
 17d9f8d80166b869474fefd47b73a126f7d48bfe 33198 oar-node_2.5.7-3_amd64.deb
 c53fc5ad0dbb05193fa429b96adef7ba2742bdb5 8158 
oar-restful-api-dbgsym_2.5.7-3_amd64.deb
 2c1631f8b2c73e6938cb78a961b4f428c7fd1a27 55066 
oar-restful-api_2.5.7-3_amd64.deb
 cd114f3f283cc71fb744b0ca9d0806bb2b688bc7 27584 
oar-server-dbgsym_2.5.7-3_amd64.deb
 c96c1344d78142fac76799a60b5a9fcb75aaee5e 21112 
oar-server-mysql_2.5.7-3_amd64.deb
 85f73b0661756b4b3948033c8e7d91ead95a58e5 21096 
oar-server-pgsql_2.5.7-3_amd64.deb
 6210acc85d3a8dc2a4bcb3d84855d3b6ee9bae53 149910 oar-server_2.5.7-3_amd64.deb
 88a23b9017b112344ecb3c28d87daee1cdfd5382 17828 
oar-user-dbgsym_2.5.7-3_amd64.deb
 630ff201dcfb70657bed939532bdd522ff68361b 21066 oar-user-mysql_2.5.7-3_amd64.deb
 65cd25bb77860a3ec66fac05fa1c6151fede5cc1 21072 oar-user-pgsql_2.5.7-3_amd64.deb
 ce2fb4a0de5486369727f755f8dda18f9382b6c0 68416 oar-user_2.5.7-3_amd64.deb
 5df46ad9256a15be48cfece6dcad4c67b3c0445d 55634 oar-web-status_2.5.7-3_all.deb
 7b64343a623fbd0718b31a32ecd84caef2c7f893 9076 oar_2.5.7-3_amd64.buildinfo
Checksums-Sha256: 
 b19bfa8d3019bfcd7d1b5723033822f62c9d26380129d3c4e09cf35f785e4414 2409 
oar_2.5.7-3.dsc
 ded167cabba287b4e2508aa8715753727c0e5d16cc3acdb6cfc18b898a602414 10696 
oar_2.5.7-3.debian.tar.xz
 fd42ca184af0e66327318527e2a546e2275583f73383f9b9f6adc8810d108e7a 76214 
liboar-perl_2.5.7-3_amd64.deb
 98a82cae74e172ad851477fe1c2fef82522f6474a1fc6ff272ff984626643fde 12778 
oar-common-dbgsym_2.5.7-3_amd64.deb
 e949e609dea539c11374b4996ee797ef05644b5b70c997c92bf21fe23c6e07e5 64420 
oar-common_2.5.7-3_amd64.deb
 04836b8546b6a6b113836aed531e27329c45f13b2d270b0da0fc3aa8a4d08d74 2833544 
oar-doc_2.5.7-3_all.deb
 8a6c5e8da5daf25bb8cd1194f94f7cadf349b4e180d77d692699312127455d7a 33198 
oar-node_2.5.7-3_amd64.deb
 29e646b4d1b0bf7a03cd95430493e843c27673289dfb4b07fa1ea5d92616b767 8158 
oar-restful-api-dbgsym_2.5.7-3_amd64.deb
 e7f6e4e2ff5cc0fd492b19ca75c769d6585d8e1a8b6097a457058296f95faef2 55066 
oar-restful-api_2.5.7-3_amd64.deb
 3dc5e3844d29d78957bc68663c5d658b101b6b964972c6fe5a3c27d33422d7aa 27584 
oar-server-dbgsym_2.5.7-3_amd64.deb
 0d36082010785ea8d1a127b61d847c1cc04d5542a95646dbe4a732bba1df8a75 21112 
oar-server-mysql_2.5.7-3_amd64.deb
 fa2687fe9decde7879a0feb32a54342aebddd1e5d05ad60dfd1d46905d22d8aa 21096 
oar-server-pgsql_2.5.7-3_amd64.deb
 f4820762429c50a09ebd8e09db9f2d34cda8b79d5de2b97b0dff71e311e60a6e 149910 
oar-server_2.5.7-3_amd64.deb
 79e3a4b284e6aeb7b93d92a7c60f717d36cc4aebf28142259b2af9dbb4e1 17828 
oar-user-dbgsym_2.5.7-3_amd64.deb
 9a710409a44b5953e614e8212a238619e136191c8c9e0313f889313c4425b6f7 21066 
oar-user-mysql_2.5.7-3_amd64.deb
 7911fa49829141c27b35e1f2bb0a72b3c31878f4b46d0dca99daffc9a542893c 21072 
oar-user-pgsql_2.5.7-3_amd64.deb
 4c8f7c9cb37b01da4af27c7152192ebbe27cf19f3c34738520ad5c4dd932654a 68416 
oar-user_2.5.7-3_amd64.deb
 eec0f0b7a979e4e76f0aae599a5f233dc7a051d7931537f0dc5709d65df0bf53 55634 
oar-web-status_2.5.7-3_all.deb
 f4d29ba2c3ec3436c7b50b5c8f4329546dae73a0ef4360038f15c225ca5bc4ca 9076 
oar_2.5.7-3_amd64.buildinfo
Files: 
 aa9967c660e38d891426e3b473dff274 2409 utils extra oar_2.5.7-3.dsc
 a58cfb83412041ae1bf672799a2e1cb1 10696 utils ext

Re: What happened to the idea of using migrations and coordinated uploads when updating packages that has many reverse dependencies?

2016-12-12 Thread Vincent Danjean
Le 12/12/2016 à 19:02, Pirate Praveen a écrit :
> Updating a library is a difficult task compared to packaging new
> libraries or applications.

With all the explanations in this thread, its logical. But it the
reverse of what I experimented in nearly all parts of Debian I've
been involved (C/Perl/Python/Java/...)

  I suppose these communities (js, nodejs, ...) do not generally have
test suites for their libraries...

  Regards,
Vincent


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted ocl-icd 2.2.10-1 (amd64 source) into unstable

2016-12-03 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 03 Dec 2016 20:25:42 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev ocl-icd-dbg
Architecture: amd64 source
Version: 2.2.10-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 845682
Description: 
 ocl-icd-dbg - Debug symbols for the generic OpenCL ICD Loader
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.10-1) unstable; urgency=medium
 .
   * New upstream release
 + clGetPlatformInfo is now taken is priority from the dispatch table
   (Closes: #845682)
   * ocl-icd-dev is now marked Multi-Arch: same
Checksums-Sha1: 
 0dd16881ee5251dad13dc2e41f3654661034605c 2156 ocl-icd_2.2.10-1.dsc
 590e6ec8004ecc6c3bdaf8d0a490fc1a1b489cc5 454035 ocl-icd_2.2.10.orig.tar.gz
 22765c51c1ed5fbf9fec5c97355d3494c2b517a1 11008 ocl-icd_2.2.10-1.debian.tar.xz
 307f7692815e45de6f47b77b232a33f482a9468b 48364 ocl-icd-dbg_2.2.10-1_amd64.deb
 1b7fb6e6595a2bc0e920d35aca11478dcf4fb025 17166 ocl-icd-dev_2.2.10-1_amd64.deb
 72735ab64946230624d603e0ef5472d443ca89fe 36236 
ocl-icd-libopencl1_2.2.10-1_amd64.deb
 12086d64638daa073ad715ea7a4aaf0a34a7b32e 9846 
ocl-icd-opencl-dev_2.2.10-1_amd64.deb
 c2cea4b44010eeb6a4f740e2da9cd578ace9b05b 5978 ocl-icd_2.2.10-1_amd64.buildinfo
Checksums-Sha256: 
 8ef1504a43fec3c3db9ffb9546c65f196d7f22464922991083f688141ba4e553 2156 
ocl-icd_2.2.10-1.dsc
 22e3c770d6ff6a1a09e547ba624dac0b327dc965de978dff04b5e911d47d2438 454035 
ocl-icd_2.2.10.orig.tar.gz
 54d0b48d4aab58980cd66b990b3c08fec1e50e07fc1b5518cf78f4b80b9f593d 11008 
ocl-icd_2.2.10-1.debian.tar.xz
 0dec2332c456f98a104b24e9dafc0d84bc5005326c028059145c2c4b33b2b243 48364 
ocl-icd-dbg_2.2.10-1_amd64.deb
 0a4337ad9a2bc41a176ea4cc74f38efe998605fe78ac096604f1273a924d54a8 17166 
ocl-icd-dev_2.2.10-1_amd64.deb
 2b03c72d1b1005237b567d07f0c007d77fc3400e168290d1e45a9bc47ef2f8f2 36236 
ocl-icd-libopencl1_2.2.10-1_amd64.deb
 820bec9595b1f8e317435a7d52db5d41a5a0a2ebe0d726a1fd3a239f51ba6185 9846 
ocl-icd-opencl-dev_2.2.10-1_amd64.deb
 45a6d68257be3bfa26503f3063cb1d3c33c9ecdea4ff87c88aae0521c9e9347f 5978 
ocl-icd_2.2.10-1_amd64.buildinfo
Files: 
 6b628479e1fa889f1d3a28018dd480ee 2156 libs extra ocl-icd_2.2.10-1.dsc
 5072917260dc53ea6d8efa4608e814de 454035 libs extra ocl-icd_2.2.10.orig.tar.gz
 da05726dac40b617d06302ce31528046 11008 libs extra 
ocl-icd_2.2.10-1.debian.tar.xz
 ef86157e5eea7b21c014d5404cc79277 48364 debug extra 
ocl-icd-dbg_2.2.10-1_amd64.deb
 2b322d6ec7c4623c1125d58f7462581b 17166 libdevel extra 
ocl-icd-dev_2.2.10-1_amd64.deb
 561e169033b94e8e3ae97e0c95f26f96 36236 libs extra 
ocl-icd-libopencl1_2.2.10-1_amd64.deb
 97806b9e8b140d1d07aeb022b4319a9a 9846 libdevel extra 
ocl-icd-opencl-dev_2.2.10-1_amd64.deb
 4fb2a37209179f10c25a4c64b76153c3 5978 libs extra 
ocl-icd_2.2.10-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlhDKhQACgkQlkfeY37H
t1Fd/A//WyFLtyZOXw+C2VJh9FqchAQ8SfVZ+DkZpkqZCt6pGZ0nyBhFkXxkHJWf
bllsduN/wzeyT7WqETHHQXnLy+cpVvO+KWw/EWgtnPJ+o74MZvtj3dMN8+lsJ/iD
/VlwyoiUoFl5U08vrHBmyldu1K/I+zOor74O93BHXwMOHa8QM7TpccmzHPMBTAgs
iGrKDzUySQqMfEPnXG9ANQruklvqaXyegJCLAC6JOsf7xFINAv/Iebt+mGZS4jTW
UMZc/Zwab+u4zXiF9qgoTvk2Ft3YetsMiV/OpdJn7AQR0b/o/2l757wWRElMxwOG
uqFSanRYO3YJmFL+2RvQ0vur3cT4JHiKh1TNlNLhztcxx+uiZ04BqHa0x7CHGxWH
7Jvyo6eWCkj1LAIvVduUXKnShITGbAVG93GU26fF5rnYXPeFrzJd5nDBICu19jWb
Ni7TZhzgIPq9mQ2mwzpDKvIsOryLoWIwzTb8pPtZtDzVq0rUF1+Fzs9r+XGs9APe
8BJoQlADO6nDh8DpDdBCHWlJ43ekVkJdOPcjheIrBWT7MwjCXzOTGuaFyeSC18KM
VFhAgN1dEzBmYuImqTr3TUk7dYTfuNuUXjCrq4LSLsOs3zizwbsb2t1itni5eT4X
kYgZSHEPVbFk6jSdwqrjDPohmVsy67lxny2NiRdequgY+ee4lVM=
=e9uZ
-END PGP SIGNATURE-



Accepted ocl-icd 2.2.10-2 (amd64 source) into unstable

2016-12-03 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 03 Dec 2016 21:37:08 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev
Architecture: amd64 source
Version: 2.2.10-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.10-2) unstable; urgency=medium
 .
   * migrate to automatic dbgsym packages
Checksums-Sha1: 
 7282a18348e8ca25bc6e0fbfc39ceb67f479c151 2105 ocl-icd_2.2.10-2.dsc
 e218c58b849ceff1025a6d922929483afec0ef34 10984 ocl-icd_2.2.10-2.debian.tar.xz
 3bc3390a199f538f722fb4194b6a5f35679e86fb 17196 ocl-icd-dev_2.2.10-2_amd64.deb
 583f8afe90e3cd85287be1cb292545a6539173ce 39870 
ocl-icd-libopencl1-dbgsym_2.2.10-2_amd64.deb
 6d6f7ecb1b858cefb0756320c178aa866b1400a7 36252 
ocl-icd-libopencl1_2.2.10-2_amd64.deb
 44122f2a22effaa7c090551fff8203586bb60af1 9876 
ocl-icd-opencl-dev_2.2.10-2_amd64.deb
 7cc3dc831f7d1336d14eae467d79f4b44af865dc 6008 ocl-icd_2.2.10-2_amd64.buildinfo
Checksums-Sha256: 
 c5a859ca0b6c28470fb107947b2affc9c2b5bad38493421e9b92eedc4d9e1a17 2105 
ocl-icd_2.2.10-2.dsc
 c1b0cd82aac235d273954295b46e8c7f70d33d76945ee16e9f28862162e5c176 10984 
ocl-icd_2.2.10-2.debian.tar.xz
 f2e391447865f184958caf04ca2dcbe981ad0c945ae3964c5f5149a3d7cc9fcf 17196 
ocl-icd-dev_2.2.10-2_amd64.deb
 22f66f91c892348425bbc550b4442b0d2254028b09d4f5c088ee9ffbe8355b13 39870 
ocl-icd-libopencl1-dbgsym_2.2.10-2_amd64.deb
 fece0b2298146aff81e9bbf039ea049a61efc147951264d0beb825637f063ae0 36252 
ocl-icd-libopencl1_2.2.10-2_amd64.deb
 2da056a433fc3bc66e2b7bf05073b69b98fa206860c24910b123019c2c59eb4a 9876 
ocl-icd-opencl-dev_2.2.10-2_amd64.deb
 68ff0be33d361ab323ea71b73cdd41d730d05a86027f464e275e97fad3ffea17 6008 
ocl-icd_2.2.10-2_amd64.buildinfo
Files: 
 8fd3ce57b37fe1edebafba5046233819 2105 libs extra ocl-icd_2.2.10-2.dsc
 b338578d3cdf812135134078fa3a8dee 10984 libs extra 
ocl-icd_2.2.10-2.debian.tar.xz
 81e8ad9021fedb1b6f9b5c1570c0184a 17196 libdevel extra 
ocl-icd-dev_2.2.10-2_amd64.deb
 8b72c7d28ba737881decd23c573c2f5d 39870 debug extra 
ocl-icd-libopencl1-dbgsym_2.2.10-2_amd64.deb
 7b8f98b2b8ce3bb28a517e972ea56d91 36252 libs extra 
ocl-icd-libopencl1_2.2.10-2_amd64.deb
 e253c41cd7baac3d11d1795767db64b0 9876 libdevel extra 
ocl-icd-opencl-dev_2.2.10-2_amd64.deb
 4d40e3bf6e6a53261f1932ca58f5d141 6008 libs extra 
ocl-icd_2.2.10-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlhDMAEACgkQlkfeY37H
t1H+LA//dv1NkK8RzgXLw19LCkjj8KWgUar6+jD9jWl/v8jFPaBJbkXyXIwv22g7
x9meGT3KWopXe85lb4Y0mg3+mrYU0XFvkhmw+H2C+OV9sHZnqMkzcH6O62YiqauF
KQ0gPVpOFHmuomXuEH8ZkVHtTjPACeWzvytlj8V5H4xtJgN/tMIHsWmU44N/qwcj
pirmbgphn7KEVFBKcai8otuBctEmyE7DfkoADZiu6CZck/JwzbG/n2rPld5zOkka
0burOmcGjVyxjn7tDL3TNY9R1hDq6b6mpXupvTnKUJI9UyBmIeaDj9KvUTRbpsyv
+HInXj6KvEqJYihB2GRsYdOIsU8AheXHYaGCAOjphFhxWSnijeBjlVRjf/raP20f
IFhiAdM9hNYO76byXaJwUIW2jezVzFs7VuYgj7hTBTPqPwyaTD991VD94HOyz49w
NkLlr8wiNL7+E9dhOwiIBtfJV8BBIZYF5ZuYnpo61QjAD1qeOYkfAu4TF4zb739F
0tKCPqHwbQw74oHLn1gIQuytw4bCrw5GXD1mXzV5P3u/6KHIfLiYWPzVG89mby0h
Ctj3Jxr4R15hzlwmBQDUfDLiiMET/yE5ev1Zrd6hOVMcCvH9HfcLFNa5znONBCPy
tWezb7NFkeWd0jvhsrXneeO8msdyMmSB2dfa9GToqAGQ4FENQEw=
=sgtX
-END PGP SIGNATURE-



Accepted picard-tools 2.7.1+dfsg-2 (all source) into unstable

2016-11-27 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 27 Nov 2016 21:01:25 +0100
Source: picard-tools
Binary: picard-tools libpicard-java libpicard-java-doc
Architecture: all source
Version: 2.7.1+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libpicard-java-doc - Documentation for the java picard library
 libpicard-java - Java library to manipulate SAM and BAM files
 picard-tools - Command line tools to manipulate SAM and BAM files
Changes:
 picard-tools (2.7.1+dfsg-2) unstable; urgency=medium
 .
   * Rebuild with htsjdk 2.7
   * Ensure for build and runtime that major versions of picard-tools
 and htsjdk are the same.
Checksums-Sha1: 
 e7e87e49c696ffc6562f28e4a83d3214065726e4 2495 picard-tools_2.7.1+dfsg-2.dsc
 8aa2379f46a886fa5e309d2858243245a9c46055 1969876 
picard-tools_2.7.1+dfsg.orig.tar.xz
 5e47f2c6db9706d23167e40b93916abcdfad4353 10524 
picard-tools_2.7.1+dfsg-2.debian.tar.xz
 aba13bad135a6047cb65141dd5af43b4d4455044 405542 
libpicard-java-doc_2.7.1+dfsg-2_all.deb
 bcd43faffc9df9aa57aee9232fb1ca759cddf3c0 1149826 
libpicard-java_2.7.1+dfsg-2_all.deb
 cbb02cd2464da0acb739e8093652f726e387eec1 7612 picard-tools_2.7.1+dfsg-2_all.deb
 c92fa766ff1bb6ceb2b525bbe4f01493644f1fc1 15189 
picard-tools_2.7.1+dfsg-2_amd64.buildinfo
Checksums-Sha256: 
 c7b7b1021beee2449ee620a3dfe94d55d2bc93a2f09e62c2051c7cb39b356a30 2495 
picard-tools_2.7.1+dfsg-2.dsc
 0e9b23e55fd59c0c265eb3ad0c3f2ad9d5365ade8bbf4ac0a31c07904bc9a647 1969876 
picard-tools_2.7.1+dfsg.orig.tar.xz
 bc2f4841ae6f356b2ed9226398458b98952d625481e1df2c88f759188a5d0dde 10524 
picard-tools_2.7.1+dfsg-2.debian.tar.xz
 b5b6c5ef451e2ddc4c3c8d1feebdda55d7bda66d018612b6447f6c027f9ad33c 405542 
libpicard-java-doc_2.7.1+dfsg-2_all.deb
 f4f1ae990a7484f2faeeba4e9f51302c19ced79096adda16c87b74fbfaf6de71 1149826 
libpicard-java_2.7.1+dfsg-2_all.deb
 bbffc58db668d0f8d8a37cb31ceec68b2239cc216863d776be4e0191987a4bb6 7612 
picard-tools_2.7.1+dfsg-2_all.deb
 fe67918288ad063d4dec0c313a05410b71912449c38ddd60fef77d94eb0566de 15189 
picard-tools_2.7.1+dfsg-2_amd64.buildinfo
Files: 
 f1d5a0d58d814a5eefa3fffcae848fb7 2495 science optional 
picard-tools_2.7.1+dfsg-2.dsc
 057ac5a5ed6675b59d149322bc7ccaf6 1969876 science optional 
picard-tools_2.7.1+dfsg.orig.tar.xz
 e1be51dadd908bec1b733c8d84e8e8cc 10524 science optional 
picard-tools_2.7.1+dfsg-2.debian.tar.xz
 348de67e833c4d0941c7972161a198c6 405542 doc optional 
libpicard-java-doc_2.7.1+dfsg-2_all.deb
 49dc152c2c170185cccad7d2e8bcf821 1149826 java optional 
libpicard-java_2.7.1+dfsg-2_all.deb
 67d4a2e10c07efe22be37baf90eed3cb 7612 science optional 
picard-tools_2.7.1+dfsg-2_all.deb
 407930b272dd931f23e29b002dfcbd81 15189 science optional 
picard-tools_2.7.1+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlg7SgcACgkQlkfeY37H
t1G92Q/+J9DvMvJadQ0tLA//SVUhiPYutEPC6M7iKYsZS3M/0dpQvjdDc2Q2LHNO
aluibWqbVqt/0q2R//z+6LW69xjpSB3oRNViNhl8eYso6wqfwmE95YoGm9PnuSH+
ISbp3cw6l6rqx3aFpmuIMMZucFLmUA0fHKKg23l7QbDtc6XELW5Z0BtXjqyjnpgR
eusySCFv6jllC6fBWpzreH3iPFW7ZTbCgfWSOsb1BW/KmYgDPeIkCc7eRopYUqJ9
/RkPw4I80aDilj68ku4A/HOpUjN8D72lfD00ymcfDzHrbfx/Ajx78YPTBdoqzf3P
+hmo+iDsusnuNLcZZWTmHGUlPlLnWImXBEz/ea3ORvn8QGVsvN7WuIaGCKl7Gh0G
UzUMEAeMp0bAUUy9fgHZJXdU+z18fQQjlADiWkYEnDorYJp5nXQKRv5I3prHJZgz
gYFCa6sVBOtPhnNyMSCARZ+T4aaM3gtvr1zxlErjaodidMHDHH9UjAmRbQVbG05t
fKVlFDnAoyDRcGO31MEtn9I8KrS24O2r6QLxlaJ9eH/AyJ/yKFObteNkkOVmY00C
KL9E1OtxCvrbKrwVDd/wQGafOh3ewL1+b07dgyKVL+VnUclyMZwi/MP8RAdk58Jq
3qPvTC/qfvrGM2xElpFQyUMg6NLIwupPOmg5LMBDA2mB8WEWtT8=
=pQnD
-END PGP SIGNATURE-



Accepted htsjdk 2.7.0+dfsg-1 (all source) into unstable

2016-11-27 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 16 Nov 2016 21:16:10 +0100
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: all source
Version: 2.7.0+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
Changes:
 htsjdk (2.7.0+dfsg-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1: 
 6e1edb0cd5df824d028a043a1804e7b95679bc83 2433 htsjdk_2.7.0+dfsg-1.dsc
 b8c09d85b63773c19e966201ce40a7c1b5128253 6335088 htsjdk_2.7.0+dfsg.orig.tar.xz
 99ee5554b83c4a64aca2e21acf3ceada9b60dc2f 21168 
htsjdk_2.7.0+dfsg-1.debian.tar.xz
 307adf0f46befc54d8f0bbb9328b06cfa9a83e9b 14193 
htsjdk_2.7.0+dfsg-1_amd64.buildinfo
 23f15efaf23a0887162db6b614e53076f9862e20 672352 
libhtsjdk-java-doc_2.7.0+dfsg-1_all.deb
 bb1b8599cb76a7696c7a075496bf7e7c6b97721e 1423492 
libhtsjdk-java_2.7.0+dfsg-1_all.deb
Checksums-Sha256: 
 250cb407e58d24b19af3e542820ca9c23c91a25c4633c5da638dfa522e4a0ba6 2433 
htsjdk_2.7.0+dfsg-1.dsc
 e20ced4a69fa9be169d4b1aa709f3625744bde8b6984cfa3bfb5da5f7e96 6335088 
htsjdk_2.7.0+dfsg.orig.tar.xz
 564dd24c8610fbdc6650e23c2794a6fd6e20d9ed258ac713f4452b10bd43e201 21168 
htsjdk_2.7.0+dfsg-1.debian.tar.xz
 3d0cd3f8f639c2e97bebbfbf894c4a580c85b92c2cb93d5f1ac11b90faae649b 14193 
htsjdk_2.7.0+dfsg-1_amd64.buildinfo
 a5a8217d2e2d366ab91fe552535da72119504883e8b7a901fac4c329080ceeb2 672352 
libhtsjdk-java-doc_2.7.0+dfsg-1_all.deb
 204a2b288b39fad768483dfe7b67b6c5240fe385b90975b723d7adc9a96fc4ce 1423492 
libhtsjdk-java_2.7.0+dfsg-1_all.deb
Files: 
 2232fa5d7ee439cb1471ada43c05761e 2433 science optional htsjdk_2.7.0+dfsg-1.dsc
 a4bed3b80fb055b2fff9aa8972b1124f 6335088 science optional 
htsjdk_2.7.0+dfsg.orig.tar.xz
 6c745350d278c6fe6f1c980f03f52a8b 21168 science optional 
htsjdk_2.7.0+dfsg-1.debian.tar.xz
 ee7bc0321f3e5696fbf7f58732eaf903 14193 science optional 
htsjdk_2.7.0+dfsg-1_amd64.buildinfo
 a0036aa66295c5dd78bef10c23498377 672352 doc optional 
libhtsjdk-java-doc_2.7.0+dfsg-1_all.deb
 27bcca65737ab1e56145be5b74605c7a 1423492 java optional 
libhtsjdk-java_2.7.0+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlg7PZMACgkQlkfeY37H
t1EqCxAAhDQ2CTe5rHj4CbKwKJDNwiVyTL6HcLSBSj25wJmsgiZMM0dOMYKIffhU
b5RPjNoWx5szC9QvOml1/dk3wqrOh456Ta5Lt7MbkH5xdpFHOmSSW8v0qwNUYGV/
y4Z55eT3dtxUVr5L8JTT1G6V+ThL7aJ0IXD8+bCRnvN636kh9FwLdm72lrX95THK
AeizytPl6/JxdwDGS7coHRjP8FJaK/UAt66adVRl78uCNT9qSxiqmf9TQVkphr6e
LJnvWJ+Q0q5z0xqTx4Tbq7EH48/fN4Rs+d/J8QvjZ0WLHT6yzJzUgiLpwfRUnanK
3PXbZhtpAJxySyShDPuVHEKzSt5qwBDgUTZEwOzlGgoRXjGnuVN58zKEERfGO6JN
sWwcChMjT1mB8gNiEYJNTvyq1Jdc2nrsal8NYTunb494kLw8UZdzCOJZsZURe/Ik
5QvhPbGRA07veT3xb0e71ZWbwduH8mEYMGrz3+kDTLESQKvrOzIFBjpEhqWKKGzU
fGZC6x680IihXRgJ4YvUK+67FaIEHiAk1GrqDClHwrm5FFGTnxQZ7TmXab1M9+7y
GaH+6NH3opSraX3svUeA4HNvehHVySK9A5mqlyxCvnT3Agz9Yn2PUHT5f6fzs2MR
9vMMlfILbGuuT0/UG0tq4gqOOcCugMZJMDgBtpgASkANxPtACQM=
=mubq
-END PGP SIGNATURE-



Accepted htsjdk 2.7.0+dfsg-2 (all source) into unstable

2016-11-27 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 27 Nov 2016 21:14:49 +0100
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: all source
Version: 2.7.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
Changes:
 htsjdk (2.7.0+dfsg-2) unstable; urgency=medium
 .
   * Fix mess in this changelog (the previous upload is missing the
 2.6.1+dfsg-1 entry)
Checksums-Sha1: 
 cc9d1a69e6517a03cdbda92ac68719d128435dc0 2433 htsjdk_2.7.0+dfsg-2.dsc
 f708a9ecc927256b5726253863640b16b9c6a024 21236 
htsjdk_2.7.0+dfsg-2.debian.tar.xz
 f873cb97f541558029561ce76054314f941b681e 14193 
htsjdk_2.7.0+dfsg-2_amd64.buildinfo
 72b25a44dd6ece563f97a81514dc9fbce4dac69c 672506 
libhtsjdk-java-doc_2.7.0+dfsg-2_all.deb
 031ed5d44c66e8615955ea9ef5b4482f51071027 1423616 
libhtsjdk-java_2.7.0+dfsg-2_all.deb
Checksums-Sha256: 
 5b06283df41440cfc41fdb3cdce7cb699791156d4a04a9a4205e630bbeef3cb6 2433 
htsjdk_2.7.0+dfsg-2.dsc
 55690ace007f2c9ead80406eca089e1523f3c606af9bc7a87d34f0972cddce20 21236 
htsjdk_2.7.0+dfsg-2.debian.tar.xz
 58d963a8080d7c436e0c347505f43bcd8e375138f96e90f271de4606617df750 14193 
htsjdk_2.7.0+dfsg-2_amd64.buildinfo
 79ef5aa175b35db02c4f781dd409fd71cfa264ad9d93d173af370cf3863e5e67 672506 
libhtsjdk-java-doc_2.7.0+dfsg-2_all.deb
 096228d7ff1bcd4291a7a6ddc5b2eadc60c48f2c00a8a1d2e7384755f709e902 1423616 
libhtsjdk-java_2.7.0+dfsg-2_all.deb
Files: 
 478f74b8314319c15371371ae5f2aa61 2433 science optional htsjdk_2.7.0+dfsg-2.dsc
 22173f9c86093b457ddb48111f648ef5 21236 science optional 
htsjdk_2.7.0+dfsg-2.debian.tar.xz
 0f6632b591af756becb7a425bc1a80c4 14193 science optional 
htsjdk_2.7.0+dfsg-2_amd64.buildinfo
 6d95a8dd97f2a6a194a3215cc4ff955c 672506 doc optional 
libhtsjdk-java-doc_2.7.0+dfsg-2_all.deb
 e9e3fc489f9fa12f09b903d819e07e29 1423616 java optional 
libhtsjdk-java_2.7.0+dfsg-2_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAlg7Qz8ACgkQlkfeY37H
t1HlLRAAkeSUS40i4E4hk1QlxVYNsXpUb7Rwr057jdGVDXtW2NnkVMCFZ1LdY1uY
XpWtXBn5YS2GJ6jznrDjzlBMOwaXbHRx3wcGi6SGYU1lyor2ji7WKc0riEZ5CdRY
V3jhA4my7+NA4hB1AGSeUUgJ9fayvlTO0PWhuSE7PtiZMCN/4shyq6lAgiLsTabw
91KOS78kLu4SQsluhob8+dgqvneQNyO1+qMWuSpc8jk+j2VR0ZSjF5BNLtQrg/ge
P0Ub+6qbZf6DkU5/FrhqfXJWStxPVvxrFUAD4h4ZtSZ/fGQV2zfJMnoMmatyyd03
d5QO3RKrnYA4m5VUNi97Td7qDNaff9ksj5Up+7Mwqp9dUL5trX0KNtZKDtElmfuO
qd7/f1zR9ep/Ahv7QcPxAioiB0x2hkB2JHWMroygA+5U7KKaghxwuwdwiDBuu+C+
J3SaxWkMcMx5ywKwOkRt3zBDphXrHKlJlCtc6QdA8FulS+HBb1/3JIuVMwUPSmft
l3QkBPoQd6bEaO4aUl8OVZc//yAAWWG4I6iiR4OkwIAcbxQRLDxxV7dGtE0HKFJ9
jK3wQwEVhS/TvKCpHVXhoOvtpPaWI8W/oFhhEyHQZXQZULcbQqfiIWJT2sqiP3C9
25MZC188eucYHeDH4oBqBe5eSbsPha4lF7XUv57GA91j7Oxiu0Q=
=TU8m
-END PGP SIGNATURE-



Re: Build a sort-of-systemd-dependent package on kfreebsd

2016-11-08 Thread Vincent Danjean
  Hi,

Le 08/11/2016 à 13:39, Alec Leamas a écrit :
> I'm now trying to wrap my head around how to conditionalize a packet such as 
> lirc. I'm coming from Fedora/RPM and used to just spread some
> %ifarch in the spec file. Now, is something similar possible in debian?

It should be. Here are some quick ideas to improve:

> In particular:
>   - How can I handle that kfreebsd should install a different set of files?

Most (all?) dh_... config files can be executable. See dh-exec(1)
for example.

>   - Is it possible to conditionalize the rules file w r t platform?

GNUMake allows to define conditional parts. Here is an example from owfs:

DEB_HOST_ARCH_OS:=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq ($(DEB_HOST_ARCH_OS),linux)
CONFIGURE_OPTIONS += --enable-w1
else
CONFIGURE_OPTIONS += --disable-w1
endif

  Regards,
Vincent

>   - If so, how?
> 
> 
> Cheers!
> 
> --alec
> 


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted khronos-opencl-clhpp 2.0.10-1 (all source) into unstable, unstable

2016-10-14 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Sep 2016 21:38:17 +0200
Source: khronos-opencl-clhpp
Binary: opencl-clhpp-headers opencl-clhpp-headers-doc
Architecture: all source
Version: 2.0.10-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenCL Maintainers <pkg-opencl-de...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 837112
Description: 
 opencl-clhpp-headers - C++ headers for OpenCL development
 opencl-clhpp-headers-doc - documentation for C++ OpenCL headers
Changes:
 khronos-opencl-clhpp (2.0.10-1) unstable; urgency=medium
 .
   * Initial release (Closes: #837112)
Checksums-Sha1: 
 5d03caa2c451fef12ab080f96395d4b7d180e595 2174 khronos-opencl-clhpp_2.0.10-1.dsc
 a3751cf1cd26cc0c0195af1ac558126f127297f7 129954 
khronos-opencl-clhpp_2.0.10.orig.tar.gz
 35f54dfed0d7417639f96e51002a945947bc2008 3212 
khronos-opencl-clhpp_2.0.10-1.debian.tar.xz
 4d85b19ea3064fafaa45d8a630955f8d54121ab2 281370 
opencl-clhpp-headers-doc_2.0.10-1_all.deb
 8c42c5e6acbdbf998490820e18bd7edde015d914 57466 
opencl-clhpp-headers_2.0.10-1_all.deb
Checksums-Sha256: 
 c5d74daf46b2f3b09183ae04b0db60b0207e8d8bfb19fde6cec3c65f1c559833 2174 
khronos-opencl-clhpp_2.0.10-1.dsc
 fa27456295c3fa534ce824eb0314190a8b3ebd3ba4d93a0b1270fc65bf378f2b 129954 
khronos-opencl-clhpp_2.0.10.orig.tar.gz
 1af20154fa890e0e845871d5d56c986a9860fcc30345fa21177dbb749d466e09 3212 
khronos-opencl-clhpp_2.0.10-1.debian.tar.xz
 547d2ba1700047f068318df53d493d62023af3b7d65882297829e7ee655f8699 281370 
opencl-clhpp-headers-doc_2.0.10-1_all.deb
 672ca56dbb5e3c2da8960156c4ad1f3ec9efe3e1ee0c159fecee11f7eb9bbb72 57466 
opencl-clhpp-headers_2.0.10-1_all.deb
Files: 
 2b4bf140a27f334a3df3d04162d65b17 2174 libdevel extra 
khronos-opencl-clhpp_2.0.10-1.dsc
 7ccdc2416bce676f9a4dcb3a8a4caeb7 129954 libdevel extra 
khronos-opencl-clhpp_2.0.10.orig.tar.gz
 5687de806b3ee492377d8f897c43affa 3212 libdevel extra 
khronos-opencl-clhpp_2.0.10-1.debian.tar.xz
 0df7547c1d87d40c55fea1639ee967ca 281370 doc extra 
opencl-clhpp-headers-doc_2.0.10-1_all.deb
 7cfdf633cd8d86c8582fa0a2647b329a 57466 libdevel extra 
opencl-clhpp-headers_2.0.10-1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJX0fX+AAoJEJZH3mN+x7dR9ZYP/AuKgx+sw+8bx9RJx+uCVCCf
eGjJtMQM1t3zNWH1e2SzXqbKID69kRyKi0MdUJLHMcQPsja/rL7euNfBfA+8P6ru
CsRa/yz7Frf+hIWFkP1HdkpcQA2ypKogKv008Uts0Yas+R9s97TIg/Xo5UIC3wwb
tW9o0Qas7e0vvAg1EKH2dvG/+/HVrYeZdlrQJ5TxzsNBfxasNumDXLH/JmWUVky1
unTLJxLjMEnT2jr1dSfMijIl8n6IvNUz/2U9bIKEaFmJWAgyPjdMTLfZWIZblsnJ
m4ixI4q/p5WhAvtkUmxxah4TejtGmF2dR4nUhf74C36DgkdQempVbHM1qZgZNqe/
gEDyYGeN2yiN35eqdbl1M3C0eqenip98oSm1bHcovmjwR+66FO8nYBvThUd6EaxZ
FVs8fB/IBtJbEbNZgS3U/DqAnUXllN/hWvMw3L+pKQtLYkdAjA5oDzI10lnGpvDK
sufKyKidADs7tjQCOtmA1Yo0mBLE/VP/7vSx1TNuyOBqm+44qWE9M2Caz5xTo8ZV
nN5/4+CafKql3qXWiNFF38GPBKohgWry8kL1krHPc8NiOAQ5ec13EfqAVvD1+pAV
/q6qNrP9nY1DSP/BR+zdI8P7TJ4E7jCODj/DOGZLJUGaPzYJaefq9u/lYXHChpMS
ahvdX/dXC3LLYiA5KuH2
=Lt33
-END PGP SIGNATURE-



Accepted owfs 3.1p4-1 (all amd64 source) into unstable, unstable

2016-10-10 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 30 Sep 2016 12:39:49 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-4 libowcapi-3.1-4 libow-dev libownet-3.1-4 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p4-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 815466 838144
Description: 
 libow-3.1-4 - 1-Wire File System full library
 libowcapi-3.1-4 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-4 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p4-1) unstable; urgency=medium
 .
   * New upstream release
 + remove patches that upstream applied
 + rename libraies (new soname as for each upstream release)
   * Fix new typos found by lintian
   * Add missing "Breaks: libow-2.8-15" (wheezy package) for owfs-common
 as owfs-common take over its conffile (Closes: #838144)
   * Remove libfuse-dev B-D on hurd-i386 (unavailable). Lets see if the
 package still compile on this arch (Closes: #815466)
Checksums-Sha1: 
 84723c9d0852a3cf16dabc351aec4007d8191f57 2984 owfs_3.1p4-1.dsc
 4e84168009b0255ddb881090c85f9598bb954baf 1455420 owfs_3.1p4.orig.tar.gz
 dd5da5ca353f282a3ebf4131b496cbedd1fb20e2 27252 owfs_3.1p4-1.debian.tar.xz
 b0d998ef24545e852160a77af3fc3238c973d83d 1534846 
libow-3.1-4-dbgsym_3.1p4-1_amd64.deb
 0ce52c104b2e7b4e880a817f8125eff9133ef4d3 301330 libow-3.1-4_3.1p4-1_amd64.deb
 6d48ee673a922dad6ed8007851a0512d4c4687f7 16262 libow-dev_3.1p4-1_amd64.deb
 286075dafd9624736308265933c629392f4fff59 53854 
libow-perl-dbgsym_3.1p4-1_amd64.deb
 e1e80bd206e9806003b487fb09206a093786775a 19426 libow-perl_3.1p4-1_amd64.deb
 4e6466a335617c59e60d8d953f25f1b0e9ee1390 45380 
libow-tcl-dbgsym_3.1p4-1_amd64.deb
 a2914e0c65e4ee9de67d95f9e40ee448a2d86864 19606 libow-tcl_3.1p4-1_amd64.deb
 cd3390efc6c004eca5390f289071c55ba816a4aa 19372 
libowcapi-3.1-4-dbgsym_3.1p4-1_amd64.deb
 394b07b4ae457184f0307cab346669ce631767a6 11212 
libowcapi-3.1-4_3.1p4-1_amd64.deb
 2fbe894c45f9fce701c0df549e3b85b12997500b 62232 
libownet-3.1-4-dbgsym_3.1p4-1_amd64.deb
 3f8fe58b7fd3ce5430dad7eaef1f1d74fc153ad8 24466 libownet-3.1-4_3.1p4-1_amd64.deb
 41ebaea9633f4828896b461a5a07f3c60ea98ab7 15266 libownet-dev_3.1p4-1_amd64.deb
 6b721fd7c7771c55868379f1fb614e6a26048638 28726 libownet-perl_3.1p4-1_all.deb
 a9a66998d4f6e3667e7ede65f6f60549f836ab67 17020 libownet-php_3.1p4-1_all.deb
 30c80a4069bb79f16421af8b54e541d9e04d6da5 237756 
ow-shell-dbgsym_3.1p4-1_amd64.deb
 d020c5b8eb4566dbd3b6b0083e6423520ef25eec 27446 ow-shell_3.1p4-1_amd64.deb
 0f7906eed854ac4a3ff89c3943d9cae576da0af4 27914 ow-tools_3.1p4-1_all.deb
 7200545fe8ea2cc6e7c32a53a1e9e526de9c59de 16110 owfs-common_3.1p4-1_all.deb
 dd35ba8e37d7b1dd4f18367e8cc7042a12a91e89 8394 owfs-dbg_3.1p4-1_amd64.deb
 2f3af70578b3dce3422172b703838821fbcc8add 196748 owfs-doc_3.1p4-1_all.deb
 284f7f62d65a2864a3db3758b38534758e770637 39410 
owfs-fuse-dbgsym_3.1p4-1_amd64.deb
 b0f272dcbf3f384206c8f1e1a0be7ad43e26d90a 21100 owfs-fuse_3.1p4-1_amd64.deb
 5cbc13d53aceb9491a6aa4c050b4cff501da77fa 8420 owfs_3.1p4-1_all.deb
 8cab4a7b2e042c4b00c84ef8b9ce7f3409f89327 118160 owftpd-dbgsym_3.1p4-1_amd64.deb
 1ab838aa488fb1fd511dbe50ad381044e0dce3a4 46640 owftpd_3.1p4-1_amd64.deb
 6f5e9e02ee1e2d235c03a49706f2e250dcaaf779 74446 owhttpd-dbgsym_3.1p4-1_amd64.deb
 f073bb9930a333a6035ca3c6e6b7b0b2eb1ef656 30138 owhttpd_3.1p4-1_amd64.deb
 c701ca8385aba114a573e352d69e4d81210454fc 78592 
owserver-dbgsym_3.1p4-1_amd64.deb
 6b764f4a7de624a3b6969d7e8cc40866bbfe1adb 30538 owserver_3.1p4-1_amd64.deb
 80d692fe2c8a5e0be3ba8f05a397054f44601d29 45126 
python-ow-dbgsym_3.1p4-1_amd64.deb
 39d806139b284986c3ea369ec04b356576cf9378 33686 python-ow_3.1p4-1_amd64.deb
 e40aaefbbe2cf2f4f83bf84bd2c344e8c65a28c5 15724 python-ownet_3.1p4-1_al

Accepted freeipmi 1.4.11-1.1 (amd64 source) into unstable

2016-09-13 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Sep 2016 09:55:48 +0200
Source: freeipmi
Binary: freeipmi-common freeipmi-tools freeipmi-bmc-watchdog 
freeipmi-ipmidetect freeipmi-ipmiseld libfreeipmi16 libfreeipmi-dev 
libipmidetect0 libipmidetect-dev libipmimonitoring5a libipmimonitoring-dev 
libipmiconsole2 libipmiconsole-dev freeipmi
Architecture: amd64 source
Version: 1.4.11-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian FreeIPMI Maintainers 
<pkg-freeipmi-de...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 829085
Description: 
 freeipmi-bmc-watchdog - GNU implementation of the IPMI protocol - BMC watchdog
 freeipmi-common - GNU implementation of the IPMI protocol - common files
 freeipmi   - GNU implementation of the IPMI protocol
 freeipmi-ipmidetect - GNU IPMI - IPMI node detection tool
 freeipmi-ipmiseld - GNU IPMI - IPMI node detection tool
 freeipmi-tools - GNU implementation of the IPMI protocol - tools
 libfreeipmi16 - GNU IPMI - libraries
 libfreeipmi-dev - GNU IPMI - development package
 libipmiconsole2 - GNU IPMI - Serial-over-Lan library
 libipmiconsole-dev - GNU IPMI - ipmiconsole development package
 libipmidetect0 - GNU IPMI - IPMI node detection library
 libipmidetect-dev - GNU IPMI - ipmidetect development package
 libipmimonitoring5a - GNU IPMI - Sensor monitoring library
 libipmimonitoring-dev - GNU IPMI - ipmimonitoring development package
Changes:
 freeipmi (1.4.11-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix "not binNMU safe" (Closes: #829085) by making freeipmi-common
 arch:any instead of arch:all. A better fix can be found later if required.
Checksums-Sha1: 
 2e4164aad1b1020735acf81bc28c9278b98a4f0a 2833 freeipmi_1.4.11-1.1.dsc
 ee2b6e2110427c4949298b706cdd902f4d52697c 3203918 freeipmi_1.4.11.orig.tar.gz
 b0fdb232b4f8b32f2cd215344d01c69a2641a0fb 23328 
freeipmi_1.4.11-1.1.debian.tar.xz
 76edd95acf2c7a2793f3f49d719a0c919843ac19 110412 
freeipmi-bmc-watchdog-dbgsym_1.4.11-1.1_amd64.deb
 173cb1c7049d6d07f0aa7e1a581f8d4cf356436d 44594 
freeipmi-bmc-watchdog_1.4.11-1.1_amd64.deb
 b96b785f3aed001da3cd787ad6c43df36ee17c9e 340388 
freeipmi-common_1.4.11-1.1_amd64.deb
 b9de32480220749e3d79656e190b32176888fc39 124134 
freeipmi-ipmidetect-dbgsym_1.4.11-1.1_amd64.deb
 ef0c9a91335401b56f6e017235483c0624bc379a 37644 
freeipmi-ipmidetect_1.4.11-1.1_amd64.deb
 3f0a036d78957dcb19530d0f3ab63e5c00bdd50f 233188 
freeipmi-ipmiseld-dbgsym_1.4.11-1.1_amd64.deb
 a743347dc81c4fa4fe046b4c560f89b6f0db0aef 78500 
freeipmi-ipmiseld_1.4.11-1.1_amd64.deb
 a38d0c6c9c39cd006228a2c0d0acd3a001a8b1e9 3258826 
freeipmi-tools-dbgsym_1.4.11-1.1_amd64.deb
 10599242c2f5ef2951ab00b5015596aef309506c 598672 
freeipmi-tools_1.4.11-1.1_amd64.deb
 538400b4a22a2a1a4ecb0325467daca6878a347f 1158 freeipmi_1.4.11-1.1_amd64.deb
 f769cbf342dcd28a1a8435e99669111bda420ab5 924670 
libfreeipmi-dev_1.4.11-1.1_amd64.deb
 f5e57358dbf396abc6fc22e60912603199fdf8b5 840654 
libfreeipmi16-dbgsym_1.4.11-1.1_amd64.deb
 63904523086d2211af98385d9840a459d6d368cb 829708 
libfreeipmi16_1.4.11-1.1_amd64.deb
 6ae9bde63db8a974df14717c4be967407ac49dd9 101312 
libipmiconsole-dev_1.4.11-1.1_amd64.deb
 5aca4b4e72791f7dc0b168ddc9017195c29ea0c6 363094 
libipmiconsole2-dbgsym_1.4.11-1.1_amd64.deb
 45b5338419afa07a2e6f76d7322fe6361b03f927 85858 
libipmiconsole2_1.4.11-1.1_amd64.deb
 34982cd6a1404456c13d5c92294dbb5255134e77 31228 
libipmidetect-dev_1.4.11-1.1_amd64.deb
 b21012efc6cc9600a0d05b7c5d4938eda647cc4c 68918 
libipmidetect0-dbgsym_1.4.11-1.1_amd64.deb
 65824affecc89183df49b4e348c394e84e2a4da9 25584 
libipmidetect0_1.4.11-1.1_amd64.deb
 0e39403b531647aed3f100c8768051f78f8eef8b 61022 
libipmimonitoring-dev_1.4.11-1.1_amd64.deb
 071bb8a8b2e9a2a6e4a233b2f83de70567580285 170472 
libipmimonitoring5a-dbgsym_1.4.11-1.1_amd64.deb
 c1aab9757aea723b4b3ed59ecce1908cb94d06ac 43368 
libipmimonitoring5a_1.4.11-1.1_amd64.deb
Checksums-Sha256: 
 c7a428da85dbac7cb621c922da97508fbac6b57fa0df4eb3e0686be725399216 2833 
freeipmi_1.4.11-1.1.dsc
 7460ce6c6fd8dfc0672db36ddcba85cdf8935c052f33d1eb637dfe20d7856f2e 3203918 
freeipmi_1.4.11.orig.tar.gz
 bbd9dce79fee0716f96495f87f59e9d61c6f56a6b4f5f7616d9646d36b6294b8 23328 
freeipmi_1.4.11-1.1.debian.tar.xz
 2e36f5bd44bab267dbf8370e328cadbb8e12a503e99d3a71bf1eaf94bfbef55f 110412 
freeipmi-bmc-watchdog-dbgsym_1.4.11-1.1_amd64.deb
 a963fdba04b5acf39eef6b4eb202665c8b96ad4516c74fb988bc3adc2c0452a7 44594 
freeipmi-bmc-watchdog_1.4.11-1.1_amd64.deb
 acd36d101d6841fbeef8828cde5bee64a6afa7fd47fc98d58f05e3dadfc040e1 340388 
freeipmi-common_1.4.11-1.1_amd64.deb
 86f6b9843fe28b87fdc98ab9b3ca45ca8c98a7efe85a6c7ee2d9290a1e8f0a4a 124134 
freeipmi-ipmidetect-dbgsym_1.4.11-1.1_amd64.deb
 4c57436722e6de1b361089e7f9c38cb57f7acd362feaa270fcb72e73f98ff603 37644 
freeipmi-ipmidetect_1.4.11-1.1_amd64.deb
 b7ea51e48e47475e98cbc6e8e055f42be2557aeb820d7ab712d8ef2c5eadb852 233188 
freeipmi-ipmiseld-dbgsy

Accepted khronos-opencl-headers 2.1-1 (all source) into unstable, unstable

2016-09-09 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 09 Sep 2016 00:05:33 +0200
Source: khronos-opencl-headers
Binary: opencl-c-headers opencl-headers
Architecture: all source
Version: 2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenCL Maintainers <pkg-opencl-de...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 opencl-c-headers - OpenCL (Open Computing Language) C header files
 opencl-headers - OpenCL (Open Computing Language) header files
Changes:
 khronos-opencl-headers (2.1-1) unstable; urgency=medium
 .
   * New upstream release (without tarball nor git tag :-( )
 + OpenCL 2.1 support
 + no C++ headers anymore, moved to another separate project
Checksums-Sha1: 
 ad7a571945a0ea531f32fc5d3d22d2a11191e233 2162 khronos-opencl-headers_2.1-1.dsc
 796ca19372777c95a91d2d74dc1825e02cd153d7 19896 
khronos-opencl-headers_2.1.orig.tar.xz
 2d62537fca49720b42e560c2ed9d97ea150298a2 6124 
khronos-opencl-headers_2.1-1.debian.tar.xz
 b642c0c00040fbd41d92e4475d8a1af95830a5c6 24484 opencl-c-headers_2.1-1_all.deb
 cee8b87064ced153c9ad02fb48e3653456315887 4886 opencl-headers_2.1-1_all.deb
Checksums-Sha256: 
 6ad93a414102df16ddc3666122a78f8f622cf66edc3c3e19c0facbe5d7ef90f7 2162 
khronos-opencl-headers_2.1-1.dsc
 4f0d0a156ed8d757071486d52eb37de843c599dc4ad2d76ccd9faaaf1f07fabb 19896 
khronos-opencl-headers_2.1.orig.tar.xz
 aea68c68b27427a85da25f884bcf90d320ca758fdc688e5cc99b21e8ba1b55a9 6124 
khronos-opencl-headers_2.1-1.debian.tar.xz
 4b9dd12c0cad4edfefda91e24779cacd4054dc21d51d1ebd3352d727f21ddd34 24484 
opencl-c-headers_2.1-1_all.deb
 f21bf277ef3deb95a9211529e410d577649ebad3459f7ff540f0fb3718655e02 4886 
opencl-headers_2.1-1_all.deb
Files: 
 47594f8864c4fcf405cab036508be773 2162 libdevel extra 
khronos-opencl-headers_2.1-1.dsc
 c7eb9f7a494817e8ffbc81a70b04ef2f 19896 libdevel extra 
khronos-opencl-headers_2.1.orig.tar.xz
 bbad786c16d9ee40e06540ef38e776b5 6124 libdevel extra 
khronos-opencl-headers_2.1-1.debian.tar.xz
 fe508abe35abe60e33ba801f571c0d55 24484 libdevel extra 
opencl-c-headers_2.1-1_all.deb
 9f118da6bc815219da66fdda2a6f9b60 4886 libdevel extra 
opencl-headers_2.1-1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJX0euMAAoJEJZH3mN+x7dR/JgP/R8GJJP721T7VPYhELrTAraP
PuPBhzBxHES110TSjHlr+xown36eOWDrfgpk0By2WTC+gqlEREvGrPM81ZXLZdax
ebN6KZnNC077fv9yKvm2SeFFZvqn4z3B5Hvcvt7SHQj+z5PlQGxpH+Xn4DI/s15Y
4fPoJTwPu3m9fTBfVl/c2WpqVx0nZVRaih+y07EnCDz7ERl2FugQJjwfUBjwLaek
JObE+kkVDtO1PXc3I8tdPiEwKYqhZfGtMfjKlKpT9+rvrwTdw+0A2vxpmXVEPSTI
yLn/7Im3NocZUBYyJ9/MgdTV11e+qnC6d11AEuPvbtGp+bW7+N1+iZnwRRL/Pc7+
9depJiW/mYTvbhOYld53hSxV+F2zAKHK85wrzvIEWbAjbKN1eqq0jdnBlXWmiW+a
ufVsDCUrrPXsy+zqwOemMftuDGEEgsk+GGhkVduJbvSGciB57jS/gI+4a96cwghI
YTmTmlZHxYdyaVSjIxgxqiRq9DB3RZZHIfySWBS9zM6BF1pdWE1IUxhJ01KJv8zR
pe6/FCl4U9hLKVzU8M7JQEXxwis5AGAs7eM9nJ+Zb21awlsN0cAHJ6I1MimZG4yd
uBnUx9pnAr2py7TYMjWJ8tpo4hhGrlA8EV5PKdNGbmMcxbcj4Nef576dUEZFTkxy
03Xpomchwf+14pzcHSbS
=M9c2
-END PGP SIGNATURE-



Accepted ocl-icd 2.2.9-2 (amd64 source) into unstable

2016-09-08 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 09 Sep 2016 01:12:17 +0200
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev ocl-icd-dbg
Architecture: amd64 source
Version: 2.2.9-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dbg - Debug symbols for the generic OpenCL ICD Loader
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.9-2) unstable; urgency=medium
 .
   * Now that C++ OpenCL headers are split, do not force their installation.
 ocl-icd-opencl-dev depends on "opencl-c-headers | opencl-headers" instead
 of only the later.
   * enable bindnow linker flags as suggested by lintian
Checksums-Sha1: 
 ea13d1f9ed337267efab746701cc6fbb2fa69ee8 2117 ocl-icd_2.2.9-2.dsc
 4be98b2d3d6af9a5fc491bde3bb9bf648f106547 11032 ocl-icd_2.2.9-2.debian.tar.xz
 7dfea39a6f8dea0cc71f30214b58c072d5bd 48006 ocl-icd-dbg_2.2.9-2_amd64.deb
 4f8315cff1c4eb5ba5b416c6f3c54b3025f1ef6f 16904 ocl-icd-dev_2.2.9-2_amd64.deb
 3cbb9e0246f8464726a2b419c5a106fc826873e5 36004 
ocl-icd-libopencl1_2.2.9-2_amd64.deb
 7832e65f7928e0cdfe0ccf919d71349430592229 9590 
ocl-icd-opencl-dev_2.2.9-2_amd64.deb
Checksums-Sha256: 
 ce6feb0b388bb98174250724ec5e5f9758af2f66d12d403b7a8c32f42b62e6fc 2117 
ocl-icd_2.2.9-2.dsc
 bcb3981ac692453ce5e94e788328a05177c0c2c1f7c25341e2a7812bbc77697e 11032 
ocl-icd_2.2.9-2.debian.tar.xz
 e48df4cb586180c6866cd2052be40da7c38da9543767920522b2cd7641b7aebb 48006 
ocl-icd-dbg_2.2.9-2_amd64.deb
 b5d0dc13aa19cd4c38b4190ce5f1e7fe97939057c9249adac285a55153898097 16904 
ocl-icd-dev_2.2.9-2_amd64.deb
 41a8d16c94262e539b87d16123c1736477c8249eb640c5ce16ae1f7674580817 36004 
ocl-icd-libopencl1_2.2.9-2_amd64.deb
 624ef3ce4e9525e0a1838f0c30bb794748484d085174f9d2cf027c29f44420b1 9590 
ocl-icd-opencl-dev_2.2.9-2_amd64.deb
Files: 
 cb7d0166f597d071752252601e738fe9 2117 libs extra ocl-icd_2.2.9-2.dsc
 de7238e5401665a6d8e34249e2fbdc0a 11032 libs extra ocl-icd_2.2.9-2.debian.tar.xz
 e67c98c91c30b1855fc767e1b40c28eb 48006 debug extra 
ocl-icd-dbg_2.2.9-2_amd64.deb
 b01c020c868c5cec5b029012a30b0b01 16904 libdevel extra 
ocl-icd-dev_2.2.9-2_amd64.deb
 11343db43e3d04bcb6a613b3b91aaca4 36004 libs extra 
ocl-icd-libopencl1_2.2.9-2_amd64.deb
 9a920e17dc860b6c37960cdf83afd195 9590 libdevel extra 
ocl-icd-opencl-dev_2.2.9-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJX0fOHAAoJEJZH3mN+x7dR/MEP/iQ1/6FD55Hg+y9llN49/XDU
vTouXWQj1kFpCG4Yi3nChAdRqBQx1Il7Am5812qgc+A7Uc36dt0maJDoaxK5Fshc
B1Cqb/9cDXBfcMgkYZ4cT2cSkhaRH6b5EqQlf/VCGLNm+aAzKYjUDMYTbd/FzQR9
fe6Xx5cyUAcaBTrMO2+KUQRYbkcjt9pPGKsbfBpJlIvoCW4u3Tx2ERGjNsbMEhqD
WM5p3kaw1Fk0DmBCRHaX63FmZ4gYMM33hZ1y5N9XG1SIl42tcOHA6re43uHXHl6Y
/KDUzWhzbCW33AcH8jTDznFPi+V7cgjO2e+4q/lnHfPjaLr0wEvpD4itZ65L3riv
71z221resOn8XdQQm9kEMnIrxoUoxfOb1ucvsZrvRNvKZHfV9YUJmILMO85q6hfO
2OdEwSjZ2jk7dpd3af2A3NLhCNsV7mF8mMW5h9+NYvS38vNSIy0X97ly7h1Ee9qa
ciIHl+y14V95xGItZN3XBwuYuEN4iEOc/hx4lZ4G+OMJrigUbVYzhV5jlmIW6rVD
sRr4XruKIuDO+kJDTVyA86bEdkDbfg3F5DKE9qw9djlLTRhNRoMbBzG7vUnlzW4v
qw74vbo8IXEeAqHxihyyyTOx0S3XDvmnBl+tQqJduYiR/hV17KKG0KdQfLqe0W74
2K0b8jhQnsWVIlEkTt0i
=H8TT
-END PGP SIGNATURE-



Bug#837112: ITP: khronos-opencl-clhpp -- C++ headers for OpenCL development

2016-09-08 Thread Vincent Danjean
Package: wnpp
Severity: wishlist
Owner: Vincent Danjean <vdanj...@debian.org>

* Package name: khronos-opencl-clhpp
  Version : 2.0.10
  Upstream Author : The Khronos Group Inc.
* URL : https://github.com/KhronosGroup/OpenCL-CLHPP/releases
* License : adapted MIT
  Programming Lang: C++
  Description : C++ headers for OpenCL development

 OpenCL (Open Computing Language) is a multi-vendor open standard for
 general-purpose parallel programming of heterogeneous systems that include
 CPUs, GPUs and other processors.
 .
 This package provides the C++ development header files for the OpenCL API
 as published by The Khronos Group Inc. The corresponding specification and
 documentation can be found on the Khronos website.


These C++ headers were included into our khronos-opencl-headers.
Upstream split them in another independant source ball, hence this ITP.
Also see #829747 for more informations



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

2016-08-01 Thread Vincent Danjean
  Hi,

Le 28/07/2016 à 08:40, Pirate Praveen a écrit :
> At this point, I'm dropping work on gitlab for debian and moving to less
> controversial alternative pagure.

  Are you (more or less) orphaning the gitlab Debian package, or are you
dropping your efforts to make Debian accepts an official gitlab service?

  I was very excited to be able to install and update a gitlab installation
with apt-get. I really thank you for this big work. I know it will be
lots of work to continue the packaging of future version, so I hope
someones (with you?) will continue this packaging effort.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted picard-tools 2.5.0-gradle+dfsg-1 (all source) into unstable

2016-07-07 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 07 Jul 2016 10:21:33 +0200
Source: picard-tools
Binary: picard-tools libpicard-java libpicard-java-doc
Architecture: all source
Version: 2.5.0-gradle+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libpicard-java-doc - Documentation for the java picard library
 libpicard-java - Java library to manipulate SAM and BAM files
 picard-tools - Command line tools to manipulate SAM and BAM files
Changes:
 picard-tools (2.5.0-gradle+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
   * Switch to gradle build system
Checksums-Sha1: 
 cbdfcec1bd8b021e166611c1f8c03bcd93431baf 2511 
picard-tools_2.5.0-gradle+dfsg-1.dsc
 d13fdc77d1fa0a7a44515c6cf0402b6694855795 1948700 
picard-tools_2.5.0-gradle+dfsg.orig.tar.xz
 da7953a87aac02eeb97150cd2814c67b343c65de 9616 
picard-tools_2.5.0-gradle+dfsg-1.debian.tar.xz
 162c3d37adeecd6ff72864aff8c2ab30ce5ee716 377942 
libpicard-java-doc_2.5.0-gradle+dfsg-1_all.deb
 200759d3ec92edffe94c341fe1fe85c9c88e664c 1117612 
libpicard-java_2.5.0-gradle+dfsg-1_all.deb
 6ad450e22807f298d272cce97e205e46246cb7ff 7298 
picard-tools_2.5.0-gradle+dfsg-1_all.deb
Checksums-Sha256: 
 660dbbdd8891641d1dd451ef1065eabd502e638cf2d35f94d7f185152a1ee85f 2511 
picard-tools_2.5.0-gradle+dfsg-1.dsc
 e0ff9639fd0abd6de66cf9a57ad9a2ee79c324fbd0a27dd27c783dfe15f9b45d 1948700 
picard-tools_2.5.0-gradle+dfsg.orig.tar.xz
 2b2be4ba3c4413d560030739a3d63157b461c6403d103f286908556e08423a91 9616 
picard-tools_2.5.0-gradle+dfsg-1.debian.tar.xz
 9179c9ba9a99fd7cdfa9ee6fe24c087a4b48d9e0bd946031812aeb6f43dcfb34 377942 
libpicard-java-doc_2.5.0-gradle+dfsg-1_all.deb
 cea8fc489747e9d55d5c8998653730b91db484c448d85fd32858ee79f663e8a6 1117612 
libpicard-java_2.5.0-gradle+dfsg-1_all.deb
 2e3f97cc2c825e47d8cd143288f053fbed4fdd836be5d7ccd9f6913cced80304 7298 
picard-tools_2.5.0-gradle+dfsg-1_all.deb
Files: 
 2c5e556476bf6a6c492b216109d802ca 2511 science optional 
picard-tools_2.5.0-gradle+dfsg-1.dsc
 a5ea07e40512359d4170500f288b5f45 1948700 science optional 
picard-tools_2.5.0-gradle+dfsg.orig.tar.xz
 ec8d9eae11881f416975caa359883d4c 9616 science optional 
picard-tools_2.5.0-gradle+dfsg-1.debian.tar.xz
 4776a59387a978a303b481f5c1b1e14b 377942 doc optional 
libpicard-java-doc_2.5.0-gradle+dfsg-1_all.deb
 a7d473f8648b71a34eb31bd2bb7d24d9 1117612 java optional 
libpicard-java_2.5.0-gradle+dfsg-1_all.deb
 a0acefe21af6df61d2c175cc6f599189 7298 science optional 
picard-tools_2.5.0-gradle+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBV34lmJZH3mN+x7dRAQiwLQ/+I5erQw3Y1DUJbRuzdYIsfS643cALxeHs
+qcBSlLDfU1nt2Nv34HVA5rugkn3TK7Rq2/IRR0hw3jXpnd1s0hrHEEP8pcL1Qjt
mEcgbhyqiE8ufPGnqKDob4aAxDHUbpUau23yAo5XNVR2Wtcutd9ZovDAxFzr6Za6
IZtjTDcYdHiqdMvgmPtePCH/Q40GTM5KdQO+Jl/Pir27VbJdANsoD+wJaWLFja9M
wc5I2KYZ7YD22GKgs3FDHLeHBjx6xxfiBtVI6WGho4x5C40/H+Asty1svmH1krtn
5NQOFJGQ20KDCshcwE45XwuvM/NSZzRx2uzAQwa7m7S9tVKY9P2HhM4IUX6emikB
qFWhobWAZJNN0eUyziZDnFjf6xWSQMXEb651WuKYpIZC0i7B6v5HDw3hwhGNTZJb
PJLTHI5qSuZ7ivgVG8IaNd9w+gwc0neUQ7qfu6gY1QMKJ83YJTnLIgiaIyXHjQqP
ASYKKk487aqqWC2A89c52PcCGnXigwNWkt2TQpeWmuWfpQ1hkV915t4E4QN0PX/t
Fn0+5iYCW64c3CRFyKOZzI6YcV/ys4Y0B+1Mjp00LFn412XAv0KHSsWyuF9k6pEr
knn4de9tr8AacwG36k6luoGioXHmjUWtkELyoN+gmqpIXZX+ZUFHEDPpI5zOE6f1
FZo/chJ92tk=
=0aaF
-END PGP SIGNATURE-



Accepted htsjdk 2.5.0+dfsg.2-1 (all source) into unstable

2016-07-07 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 07 Jul 2016 00:12:44 +0200
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: all source
Version: 2.5.0+dfsg.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
Changes:
 htsjdk (2.5.0+dfsg.2-1) unstable; urgency=medium
 .
   [ Andreas Tille ]
   * New upstream version
   * Take over change from debian/jessie-backports branch to successfully obtain
 JAVA_HOME
   * Bump Standards-Version to 3.9.8
   * Simplified watch file
 .
   [ Vincent Danjean ]
   * Skip tests checking the use of the local zip implementation
   * Adaptation to the new gradle build system
   * Rework debian/copyright (new source layout)
   * Add a maven2 pom file for htsjdk
Checksums-Sha1: 
 ccd74b86fc230c7ad24238c162a5057b4e89b606 2357 htsjdk_2.5.0+dfsg.2-1.dsc
 ea153997c0399597946be29768c6a024f0bff169 6326456 
htsjdk_2.5.0+dfsg.2.orig.tar.xz
 c89755ae61f5fb29ad64101254a4da48867d349c 17628 
htsjdk_2.5.0+dfsg.2-1.debian.tar.xz
 fa827209fd4de016c5b74d8f6aee6b22afc18146 638474 
libhtsjdk-java-doc_2.5.0+dfsg.2-1_all.deb
 bff6234344bdc2b242d03054e7b4247e30b8159a 1423094 
libhtsjdk-java_2.5.0+dfsg.2-1_all.deb
Checksums-Sha256: 
 11448a3a6258c177336e0df097d8767f4cb7e954c97d7ba7ec6ae0ecb498 2357 
htsjdk_2.5.0+dfsg.2-1.dsc
 904c7bf9c25aee25ebb88a1a3670e04b610a5b779de69bf758715f6e440d289c 6326456 
htsjdk_2.5.0+dfsg.2.orig.tar.xz
 cdaf1375c467bcd348f7d1030b33cf3a6bbe0e64ce729864c64c8028958b825e 17628 
htsjdk_2.5.0+dfsg.2-1.debian.tar.xz
 50cb3a4f550d486461aca18d613eb0ed820ffb56fa0edcf41e1e6b098658660f 638474 
libhtsjdk-java-doc_2.5.0+dfsg.2-1_all.deb
 28afb547d9bcb4c6881539916a8af29edad0600ef3539b34997cab7074dae5a1 1423094 
libhtsjdk-java_2.5.0+dfsg.2-1_all.deb
Files: 
 ca61bdbe5f5360acb73a214fee23f8e4 2357 science optional 
htsjdk_2.5.0+dfsg.2-1.dsc
 ecccde3389790755920e39339852a530 6326456 science optional 
htsjdk_2.5.0+dfsg.2.orig.tar.xz
 91e1f07a20411d8a8f0e1eabf1a484c7 17628 science optional 
htsjdk_2.5.0+dfsg.2-1.debian.tar.xz
 bcb3e87ac402d3ecb56b8740ad2a1ad3 638474 doc optional 
libhtsjdk-java-doc_2.5.0+dfsg.2-1_all.deb
 d7bac30f46abb613c8bc6b65e61349fe 1423094 java optional 
libhtsjdk-java_2.5.0+dfsg.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBV34dNpZH3mN+x7dRAQgYvg/9FBuiP43146r97XdL2lNb4XOTLndchBu+
Clh/4c0mB1nXHbUsQ8EsBSYFxN3lbHiJ5nZjm+M0GZkM+iVC0DKXs8ahI1vg11ex
JVdFxNw4VAZzVJ8SmbxjjWlI0/DQr/RjW7/O0cvMUhEr1UO9eIomkzNoDq8Dmn5l
vvpeMKFjnpLoy1gAQTVQRd5eql1XEJWqy3PclA2NnCH07o6CTnUq+f1J06DqXAht
AkdkxFLMvQtYo1nQJykx/5ZyVQnxkiLslt4OAo88KjbJh79riZEkCNQvSfXcx4XL
KPrKmUbfmBsLbjbvhYXP7gYsWGVkkYKxChAfA6Fxkp2HrTltnpR3zhc9Z408+89l
7T/sIVpKCMx6UA4FuAb7KSw5MM9zNC9DB6mM22dEXDJCzWZu/QxRQJSuYto9HmeP
ArbOFb0oCVt/Es8mtOCBr8rkt7n7W/uV66qHP3baHMgcZVhvzp3RReBtyZGHspI7
YmoB6RzoZd8qXuY3Umva4oA73rajFLS7l9iwn2Jsh6CAfqCwxMAMEAP0k+4TVfwt
u0ZhAIMmyv7YbgdEZox59gJ67pDd9dCHyvlmsJVhZltO5BesQ86SGEBFzhY3VRn3
LaTOKkJjcGveWKvmN6yODHfdyA5tDtnmYu6HRzi8c3ARgVLgGgqmuj/txHwurnU8
DiwM8jPdGmg=
=5vhR
-END PGP SIGNATURE-



Accepted ngs-sdk 1.2.4-2 (amd64 source) into unstable

2016-07-06 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 06 Jul 2016 21:57:29 +0200
Source: ngs-sdk
Binary: libngs-sdk1 libngs-sdk-dev libngs-java python-ngs python3-ngs
Architecture: amd64 source
Version: 1.2.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libngs-java - Next Generation Sequencing language Bindings (Java bindings)
 libngs-sdk1 - Next Generation Sequencing language Bindings
 libngs-sdk-dev - Next Generation Sequencing language Bindings (development)
 python3-ngs - Next Generation Sequencing language Bindings (Python3 bindings)
 python-ngs - Next Generation Sequencing language Bindings (Python bindings)
Changes:
 ngs-sdk (1.2.4-2) unstable; urgency=medium
 .
   * Add a maven2 pom file for libjava-ngs
Checksums-Sha1: 
 99cfbf2ef575686eb1801b999c12e509d83bc87a 2311 ngs-sdk_1.2.4-2.dsc
 6e6c2cfe0fa09c72eb63a10f8bd7b8222dbe01d6 11348 ngs-sdk_1.2.4-2.debian.tar.xz
 872200f5ef28d054278a272a24184487a905b182 69948 libngs-java_1.2.4-2_amd64.deb
 0d1ccd7b677ddbf614b621dd5b06d798b0bb34ac 94212 libngs-sdk-dev_1.2.4-2_amd64.deb
 fe2fef77d4738fc6d77617a9b1b27d213c39ce97 9474 
libngs-sdk1-dbgsym_1.2.4-2_amd64.deb
 5f2c74e01ce366acc5a73025f7ec3fb7a5a0fee3 52534 libngs-sdk1_1.2.4-2_amd64.deb
 0173819593f6435a0d920ac64debe7fdfb3d0e2e 16924 python-ngs_1.2.4-2_amd64.deb
 681d571e341743f995e0151ba0056005cc1928de 17010 python3-ngs_1.2.4-2_amd64.deb
Checksums-Sha256: 
 c2d7dba21e3713c279c7b34231fba9a302fcaa7a499beb30ac3f9b3030ba7639 2311 
ngs-sdk_1.2.4-2.dsc
 caf0424ba19781510aa54a0a7375053f5bb03910870e570a54946098a2254cd5 11348 
ngs-sdk_1.2.4-2.debian.tar.xz
 5b21f6077bca1b8ae9abfcc9efa0daaf998e62ccf61f4a78f98347ab3e22da5c 69948 
libngs-java_1.2.4-2_amd64.deb
 299a4dbd5d064aec3550e62b286d0628cefaf87c30f6ea31c257d8d02238b8f7 94212 
libngs-sdk-dev_1.2.4-2_amd64.deb
 3bd7e2c3631080f25c30620b86d1297044664d742122434757686116e8be50e7 9474 
libngs-sdk1-dbgsym_1.2.4-2_amd64.deb
 0c136b66ac2b17d5741f66dce6d51acb372c24dd60005c7692f18861b15bef09 52534 
libngs-sdk1_1.2.4-2_amd64.deb
 f5e8a670230bc18b9bd8e17be9e90ae6f2364dab8ed9fe9e94ca7123a7f5fbd4 16924 
python-ngs_1.2.4-2_amd64.deb
 66f0174a89cc9fbfd29956e9da2f55ccd3442eb449e0acfd2844ddcfa1fe0e2f 17010 
python3-ngs_1.2.4-2_amd64.deb
Files: 
 1344ebcced76adf69153c318b845dcb7 2311 science optional ngs-sdk_1.2.4-2.dsc
 dcc59771583cc75c7a90b012c0cdf766 11348 science optional 
ngs-sdk_1.2.4-2.debian.tar.xz
 265d775632e6cc5e2eeea0ff1f63dc76 69948 java optional 
libngs-java_1.2.4-2_amd64.deb
 8e4559a447724ef87b997f5eebeb1fec 94212 libdevel optional 
libngs-sdk-dev_1.2.4-2_amd64.deb
 d691ddf843b2f6ed0e3d6cfaef30b310 9474 debug extra 
libngs-sdk1-dbgsym_1.2.4-2_amd64.deb
 c11de66acf87f8cf813852f9dbb60a9e 52534 libs optional 
libngs-sdk1_1.2.4-2_amd64.deb
 9c04b037a2306bebf6796a2fd63be6a5 16924 python optional 
python-ngs_1.2.4-2_amd64.deb
 0cdef8d5ee128af4df3ef850e5e63caf 17010 python optional 
python3-ngs_1.2.4-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBV31yNpZH3mN+x7dRAQjhVw/+L/G3N7hNAVlkd7Ksbw7gbxvLawkc248r
v4jNdbIHAE+LuWzS7itt5qlYtaHwNyYe/o15Af2gMHeRNWRG0fZcGyYz+XciJfAj
HDmtP4QrX62y9tkMfXkFxyOMt/IcxH9+G5INQwFpwtNITQZ7/3IRwa17DgPNMjbu
xjVtsuHvJj6HIA9Hu01gH4DhVtQ/L593CTClX+IlnkUnQhSy8G+PKq+i1uQVlL2M
+sQOqPb9aAUVaa/39lxv1Zx6NCVQ69TLI48EVwzMVw0Kdb+LhX8LFRXTxIy7MKeH
lAidAgLYt3SBER+dNsy0RxZEsvmioRU0vOvmdOcDsWNf/Apbo8UuKeqoMK98+N8h
wiFlFpExNotZenjadCCOIU6Ja1fiExh1ezA7MRslGLrvqLb9/kfizBVNmtk+m8e6
3N7wUlREW72qj945L9gkmZsRfcBxJ1cMDYdTSfyVD4Ni3K0kuGC0uTLw3qe/HVQX
JbqlH7aLDvXVAFNiJ2unORpkTJ8xKxwGeOLOyk5gF3Ebjf7cjnOEJPR/cRWDx7cu
zOuaV7SGqjT5OGcWjG6Sk5l8I271dgtqChojzzoRvYNBp9rymzzqb4eYbk7+xKI4
RCwEpmqHgHrraoUOjqLNbrgpj0n3fH8WGRqZTor0gLHLcohWXk6MulmLHFebxfjd
MP3OD2VyuKs=
=H1Zf
-END PGP SIGNATURE-



Re: Bad news to CUDA applications (was: Re: GCC 6 & binutils for the Debian stretch release)

2016-07-01 Thread Vincent Danjean
Le 01/07/2016 à 08:51, lumin a écrit :
> 
> Releated bug on ArchLinux:
> https://bugs.archlinux.org/task/49272?project=5=12602
> 
> There are some hacks but none of them seems to be "an actual solution
> to packaging".

Personally, I would create a gcc/g++ wrapper in order to capture
the exact options passed by nvcc and to record the input file(s).
  Then, I would try to see how things can be fixed manually (ie
find options to add to the real gcc call to compile successfully).
  And, if nvidia does not update nvcc (and if the previous step
was successful), I would create a wrapper around nvcc that force
to call a gcc-wrapper (perhaps just redefining PATH would be enough)
that would add fix-flags to a real gcc call.

  Regards,
Vincent

> On Fri, 2016-07-01 at 06:07 +, lumin wrote:
>> Hi all,
>> (please keep me in CC list)
>>
>> I'm pointing out a BIG problem introduced by stretch's GCC-6-only plan.
>>
>> In brief CUDA 8.0~RC fails to work with GCC-6, this conclusion
>> comes from my local Caffe build log as attached. 
>> That is to say, after GCC-6 transition *ALL* packages depending
>> on cuda will get removed from stretch due to FTBFS.
>>
>> I don't expect Nvidia to release CUDA 8.5 before the stretch
>> freeze date (Q1 2017), i.e. even a freeze-exception against
>> cuda might not save this situation. So all maintainers maintaining
>> CUDA application packages have to face this harsh condition.
>> Do you have any solution to this problem?
>>
>> Besides, I cc'ed 2 nvidia guys with a hope that they can provide
>> some helpful information.
> 
> 


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted owfs 3.1p1-6 (all amd64 source) into unstable

2016-05-21 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 16 May 2016 20:51:44 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-6
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-6) unstable; urgency=medium
 .
   * Fix lintian-found (minor) bugs
Checksums-Sha1: 
 88c6d6769c50563c611d064dc12b3063bace9e82 2981 owfs_3.1p1-6.dsc
 de72ed42b1b78b754ee3364a312fa87447086578 26188 owfs_3.1p1-6.debian.tar.xz
 bb1b8ef01aa28972fa14aca0346e5da625579841 1099588 
libow-3.1-1-dbgsym_3.1p1-6_amd64.deb
 5abf6883915a87f9cb53919664f8021324da5c05 300762 libow-3.1-1_3.1p1-6_amd64.deb
 b4c9a0415a0c88371dde98d0ada9cc80bbf7c771 16088 libow-dev_3.1p1-6_amd64.deb
 000d39d05b622fc11d21af78d8665fdf0f8e3d83 41416 
libow-perl-dbgsym_3.1p1-6_amd64.deb
 ceca8e07717fe396be79cde81cd62917db042b21 19212 libow-perl_3.1p1-6_amd64.deb
 639f87e46e77b243d4b46b3e6d8ad8a8704483fb 19944 
libow-tcl-dbgsym_3.1p1-6_amd64.deb
 e7eb05592d42fe81ff34fb993b82c3f8342e0c62 19394 libow-tcl_3.1p1-6_amd64.deb
 cacafc93b22dcfb5943a1788e88e3a72f3c732d6 14194 
libowcapi-3.1-1-dbgsym_3.1p1-6_amd64.deb
 b7a9c49eafe186f3385485b9ed1fdd529360d380 11032 
libowcapi-3.1-1_3.1p1-6_amd64.deb
 f11ae82a3c167cdf97af25bc645568b6cfa95b58 45488 
libownet-3.1-1-dbgsym_3.1p1-6_amd64.deb
 5283d505c1cda4b1ebc84bf5e4d01607ee3fef88 24386 libownet-3.1-1_3.1p1-6_amd64.deb
 58a897a3e1a1ade90c5b03b21941f7c2c19a5ef0 15050 libownet-dev_3.1p1-6_amd64.deb
 742e451542476f1fc103c1457ec1fc873d8ff3ef 28578 libownet-perl_3.1p1-6_all.deb
 2a7628a4784bab52786eb6dc31cbe2237371635d 16838 libownet-php_3.1p1-6_all.deb
 00058b8b446bae953bbc6b17bd0fbc56f4acc001 123252 
ow-shell-dbgsym_3.1p1-6_amd64.deb
 f1c7cc2a809b1f739fc1381348f6b08699fc023a 27672 ow-shell_3.1p1-6_amd64.deb
 ed4612aa1d4e697eef2349c55ad5dc62b622be1e 27750 ow-tools_3.1p1-6_all.deb
 4280755fc419f608286261d3c451c113f0d1c76b 16168 owfs-common_3.1p1-6_all.deb
 ecdfbdb323da7ed20467a15ab26df4eb3b910775 8200 owfs-dbg_3.1p1-6_amd64.deb
 a463312481f81b3f3849957c26484b19b4a384e4 194820 owfs-doc_3.1p1-6_all.deb
 6c4ab7799c89bcd301de896843f6eba3a2962689 27020 
owfs-fuse-dbgsym_3.1p1-6_amd64.deb
 dfec366ee8d0ff0fbc246aa7c8a60c447c275ac3 20116 owfs-fuse_3.1p1-6_amd64.deb
 fc0456d3dd88494ce8a7598ad8bef7c6a0cf233b 8236 owfs_3.1p1-6_all.deb
 56278404a34e69ab297792f8b05890ba17ade32c 81034 owftpd-dbgsym_3.1p1-6_amd64.deb
 a88bf49359bc39816632a0055b1448cc8e7b7a00 43488 owftpd_3.1p1-6_amd64.deb
 0101f9f9ce745f3fc938dfe1eedd79a34bd59d44 54704 owhttpd-dbgsym_3.1p1-6_amd64.deb
 e93960f895e3e20230dcccfd0ca3c5b7d5f54864 29236 owhttpd_3.1p1-6_amd64.deb
 e905380cf7cd9087fb38a021395bf72eec27ad4d 46122 
owserver-dbgsym_3.1p1-6_amd64.deb
 c0946978521f2d1b2919e32bec86054e85c1ac71 29234 owserver_3.1p1-6_amd64.deb
 819bb449a9bd48984501f8a243387e0f4b9556d6 31000 
python-ow-dbgsym_3.1p1-6_amd64.deb
 4579245ef398b861c6cda82a4e3bbfe255ab3130 33536 python-ow_3.1p1-6_amd64.deb
 6591522bdd70e7f21312224de9340df677858228 15540 python-ownet_3.1p1-6_all.deb
Checksums-Sha256: 
 feb0bb911a702394c6111b0ff51ef2d50f5d793d452cee3610b1ce6ed2651042 2981 
owfs_3.1p1-6.dsc
 120fdf4b3f01b3f901f6953cd52186543a4f97efd0bbacafb4619852e3b57921 26188 
owfs_3.1p1-6.debian.tar.xz
 8853252622d1e626f81dea354c57b1721f53611756522608935c0c15ba1c2de1 1099588 
libow-3.1-1-dbgsym_3.1p1-6_amd64.deb
 7a770759968cc989674bd04e29edde41e4aaffc420380efc35e77057660923bb 300762 
libow-3.1-1_3.1p1-6_amd64.deb
 f57c518fec2281f5ffdc1de0ab96a21817780e318b083d7d4b16bb41920d0e6d 16088 
libow-dev_3.1p1

Accepted owfs 3.1p1-5 (all amd64 source) into unstable

2016-05-16 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 16 May 2016 08:53:29 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-5
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-5) unstable; urgency=medium
 .
   * really fix php dependencies (Thanks Logan Rosen)
Checksums-Sha1: 
 39c1e86060df111da5429506cfffb5ebe8c9f041 2981 owfs_3.1p1-5.dsc
 8bb66d8f91e8b87cef18b4bf9db9e76d8f8ceb1a 23088 owfs_3.1p1-5.debian.tar.xz
 94f58efec93c8bd1d77decb3c4cc4a987a1ecaf9 1099066 
libow-3.1-1-dbgsym_3.1p1-5_amd64.deb
 c0d98637d1ce6d0bf668bcd15bd64ed1e0d024e0 301956 libow-3.1-1_3.1p1-5_amd64.deb
 d1e111373d2129f1acb738e73bd54143852b47d4 16058 libow-dev_3.1p1-5_amd64.deb
 d1690ca441a8a79cafb628bc647d2279b2737225 41446 
libow-perl-dbgsym_3.1p1-5_amd64.deb
 bded582c107e7ca133557c29b5cd5284dcba97dd 19488 libow-perl_3.1p1-5_amd64.deb
 260d7cb841c7bcc09b08f4a11d742f301ed9731b 19950 
libow-tcl-dbgsym_3.1p1-5_amd64.deb
 e5e95352a087ff999ef6cc7ffd32fef0d3f08beb 19626 libow-tcl_3.1p1-5_amd64.deb
 8081032651eca4faf6c6268731155296a8ec3c74 14244 
libowcapi-3.1-1-dbgsym_3.1p1-5_amd64.deb
 d9240837e3778fb133ac19d200eb58449c273766 11122 
libowcapi-3.1-1_3.1p1-5_amd64.deb
 84a9f5aa148087ca9c102fe54e7001e0e64479c7 45544 
libownet-3.1-1-dbgsym_3.1p1-5_amd64.deb
 2db4a93e638493fbfabc99ab047ea07a8663d992 24684 libownet-3.1-1_3.1p1-5_amd64.deb
 83e849314727f9a120a90c124fd4b98986cc940a 15034 libownet-dev_3.1p1-5_amd64.deb
 04cceb8a11f5077a6b1f7e81ed0e23b023aebe6b 28550 libownet-perl_3.1p1-5_all.deb
 09c7924daaac7526e764909b5a195a3bbda26ff5 16818 libownet-php_3.1p1-5_all.deb
 08358c4cc17dcdaaa27ac4d4433c4bb5c757e494 123334 
ow-shell-dbgsym_3.1p1-5_amd64.deb
 dde8ec78925548f6a6ff707cde3fff04075da886 27004 ow-shell_3.1p1-5_amd64.deb
 9567e41e806709177fffc811797e4d11d75374a2 27704 ow-tools_3.1p1-5_all.deb
 4dff03303ab444c1063effbc2d7fc4e226cf4b04 16148 owfs-common_3.1p1-5_all.deb
 d36d7782a02e15b4ba7c78c06df08d47494d7e94 8178 owfs-dbg_3.1p1-5_amd64.deb
 01aa8295422f3a4e322385471d05c441297981ad 194940 owfs-doc_3.1p1-5_all.deb
 f9fd75687b9229d06a333cca145c871a6d6cd4f0 27042 
owfs-fuse-dbgsym_3.1p1-5_amd64.deb
 1c4e361dafe4c95a5528db40a8d077360ff60048 20122 owfs-fuse_3.1p1-5_amd64.deb
 e16ee67015ee5fc2d89a2406d9f34cc16588a579 8208 owfs_3.1p1-5_all.deb
 626adbdc720f8a88cf646bb005b45baacef6c54c 81026 owftpd-dbgsym_3.1p1-5_amd64.deb
 451554f99f6d26e2c0738e01141895446de860a2 41672 owftpd_3.1p1-5_amd64.deb
 d1db644eb4e8a1eb15124e90c91ed2bbdab27afd 55032 owhttpd-dbgsym_3.1p1-5_amd64.deb
 f6139f3dafdf3eca176469b93d0f95e27149bc06 29142 owhttpd_3.1p1-5_amd64.deb
 79b0e007808a72973b88e2f99d156b7b32fb5665 46268 
owserver-dbgsym_3.1p1-5_amd64.deb
 3443d915f1d62a8de62d629206678ad379f648af 28940 owserver_3.1p1-5_amd64.deb
 79d28c7ae6bf762214fc9e46e23afa3f47c79cfd 30786 
python-ow-dbgsym_3.1p1-5_amd64.deb
 39e5946ec91469de88ca4a44200bf8be4249edc8 33280 python-ow_3.1p1-5_amd64.deb
 dbfacefdf2eda4f9e155c20cbb02d268c834aa7d 15512 python-ownet_3.1p1-5_all.deb
Checksums-Sha256: 
 e67604d9753844ed7b6383d45356df6107f947b3d14666c7d91e9e39de3c1e4d 2981 
owfs_3.1p1-5.dsc
 07b6418340987d839068d1cc77ed6becac5a9169de5aa248a73987a9dbca2afc 23088 
owfs_3.1p1-5.debian.tar.xz
 5301230f4f0eb43115580799527a12150830302c741a784dc8498b8b24083865 1099066 
libow-3.1-1-dbgsym_3.1p1-5_amd64.deb
 cff53f5237e8adc341d056b80ca7880b0b917dffb58a5d28a788b2b89c5ff1e9 301956 
libow-3.1-1_3.1p1-5_amd64.deb
 9d80eb8a7e95b40c97fe3744aaae35ce018a887cb4b93a206a66135c7953b402 16058 
lib

Accepted owfs 3.1p1-4 (all amd64 source) into unstable

2016-05-07 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 07 May 2016 10:20:12 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libownet-php 
libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-4
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 821523 821691
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-4) unstable; urgency=medium
 .
   * Remove php bindings. Swig do not support php7 (yet) and Debian not
 no support php5 (any more) (Closes: #821523, #821691)
Checksums-Sha1: 
 c7074429ddf6f94f61997af55e2ae9e725bc0e72 2981 owfs_3.1p1-4.dsc
 4945a327fab8ee3587459a15324fd78eda6a16bf 23048 owfs_3.1p1-4.debian.tar.xz
 389d74f528afa6dcf2ee912d963c2053419baedb 1099174 
libow-3.1-1-dbgsym_3.1p1-4_amd64.deb
 d8fd37050967d602feb3a9e8af2a2bb06df912de 302496 libow-3.1-1_3.1p1-4_amd64.deb
 8594e3116bee9dff70d3d3932d1cdc287032a079 16028 libow-dev_3.1p1-4_amd64.deb
 c6d0d716d8dcd8efffaf185332e6949351d8ecc3 41444 
libow-perl-dbgsym_3.1p1-4_amd64.deb
 8e7890b9846c8141b95387d6a524ab919f168451 19442 libow-perl_3.1p1-4_amd64.deb
 b1bfbd287f03d3604a2542eb36bfa05a03a10b10 19966 
libow-tcl-dbgsym_3.1p1-4_amd64.deb
 7913c5f98cdc4e4814bb01e2884e8751a3edb272 19594 libow-tcl_3.1p1-4_amd64.deb
 f7eee9d6f2c1217ece72450f2ebb36cf3d0037b8 14228 
libowcapi-3.1-1-dbgsym_3.1p1-4_amd64.deb
 b8a4e429e6ef55734ceb9a840ec2d6ae762b5948 11090 
libowcapi-3.1-1_3.1p1-4_amd64.deb
 c7caea37a31b53fd86d8b309fb4558b48eb76396 45554 
libownet-3.1-1-dbgsym_3.1p1-4_amd64.deb
 0cbe3f657918decc885d3ef8b46c305bb72a787e 24666 libownet-3.1-1_3.1p1-4_amd64.deb
 c270567252569fe38883d780001e6d71915aa5ef 15002 libownet-dev_3.1p1-4_amd64.deb
 65fbfbfc10e9dc7157bf44dc3ccde8c09082d1cd 28526 libownet-perl_3.1p1-4_all.deb
 541f7970dbeee450b3a784a16aedfd0cc9d34a0e 16790 libownet-php_3.1p1-4_all.deb
 8ab76b4321371286829d6e4011ba158f886caf98 120006 
ow-shell-dbgsym_3.1p1-4_amd64.deb
 43f40797b12c72873232fc37209c7f4afd0e90bc 27012 ow-shell_3.1p1-4_amd64.deb
 95cf53df4e2d24c9c2639c6a846dd2afeb998ce8 27672 ow-tools_3.1p1-4_all.deb
 f6e2f00913ed2a5189d41d8b998f5ea105961d42 16118 owfs-common_3.1p1-4_all.deb
 ccf5d5e49e88de5436e4840202b5fa4ecbb4c643 8146 owfs-dbg_3.1p1-4_amd64.deb
 8a145a0c7e68fddd93ff47f9f7eaa4722db55e8a 194878 owfs-doc_3.1p1-4_all.deb
 507040e84a569527db73b84cc1e71cd905ff826f 27000 
owfs-fuse-dbgsym_3.1p1-4_amd64.deb
 145ef8a144cc9cd9a02c8d8fd3b90cce62135fd7 20092 owfs-fuse_3.1p1-4_amd64.deb
 c907178208b3754476210b5d2d4aea1dc9d7cfa6 8174 owfs_3.1p1-4_all.deb
 ef6a43f365927358f1ca54c9654cbee7e8392b50 81054 owftpd-dbgsym_3.1p1-4_amd64.deb
 8efa30ef4458fb63ec8ed2de91b3a23a04c7f2e6 41620 owftpd_3.1p1-4_amd64.deb
 9fcc3d6f341153fb6433886a13e3a491d63ebb35 54992 owhttpd-dbgsym_3.1p1-4_amd64.deb
 8a0c5198720547b6d9a3a65bd020537fa218fbcc 29106 owhttpd_3.1p1-4_amd64.deb
 619a55ae8beca041052ad78345286cc510fe5eea 46254 
owserver-dbgsym_3.1p1-4_amd64.deb
 198474e09c72eaf24ba2bc47efaf01a5bff2e6b2 28910 owserver_3.1p1-4_amd64.deb
 2bc96263d726697a6e58f5a0112074c77cc1c0cf 30760 
python-ow-dbgsym_3.1p1-4_amd64.deb
 bd9cf3eb6000b0c31e497cc34f81477cff94dfd6 33216 python-ow_3.1p1-4_amd64.deb
 15515199407c6944666d8ccf5fd8c0d99362afa3 15486 python-ownet_3.1p1-4_all.deb
Checksums-Sha256: 
 3acd422a21783391c3c50224a0d1caf90dee02afe342b1166086a14558edf8b6 2981 
owfs_3.1p1-4.dsc
 6e67ba929ab84f450e13ecf27bfefaf5eef0018d8f6f92471f050e12f1d3d610 23048 
owfs_3.1p1-4.debian.tar.xz
 46818b187bcd0846425431abd8e7b3152d719223327458e8b36f76893a9645d1 1099174 
libow-3.1-1-dbgsym_3.1p1-4_amd64.deb
 8a29e777998280529b6f42c096870dec4e9dce9c203141c496397a724f086bab 302496 
libow-3.1-1_3

Accepted freshplayerplugin 0.3.5-1 (amd64 source) into unstable

2016-05-03 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 03 May 2016 09:47:48 +0200
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash 
browser-plugin-freshplayer-libpdf browser-plugin-freshplayer-nacl
Architecture: amd64 source
Version: 0.3.5-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 browser-plugin-freshplayer-libpdf - PPAPI-host NPAPI-plugin adapter for 
libpdf.so from Chrome
 browser-plugin-freshplayer-nacl - PPAPI-host NPAPI-plugin adapter for Native 
Client from Chrome
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.5-1) unstable; urgency=medium
 .
   * New upstream release
Checksums-Sha1: 
 602842f205cb8e3ce93c459772dddb5875d520ea 2590 freshplayerplugin_0.3.5-1.dsc
 9f76b38802697576856f880a0672257cc0a9544f 781003 
freshplayerplugin_0.3.5.orig.tar.gz
 59d77c94d1d68c74adc0f5527c80420aecd742ee 9520 
freshplayerplugin_0.3.5-1.debian.tar.xz
 32f18401509073ec95d80a8f653a92cb80ab 3713982 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.5-1_amd64.deb
 f264069961977fcb17d1212f7ef6b728d0890359 327804 
browser-plugin-freshplayer-libpdf_0.3.5-1_amd64.deb
 f8ea2b5c0e9a03a4c7cdbb2c697904bca544ccac 3692412 
browser-plugin-freshplayer-nacl-dbgsym_0.3.5-1_amd64.deb
 661c6bf893a697646cbf566d1f1ae5ad3821f25b 325346 
browser-plugin-freshplayer-nacl_0.3.5-1_amd64.deb
 9e333c7376844e4c789678a83de6e268568821c2 3691920 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.5-1_amd64.deb
 d768a36c40e8be39f3c5f3185630118de5ef5c61 355050 
browser-plugin-freshplayer-pepperflash_0.3.5-1_amd64.deb
Checksums-Sha256: 
 248c112d8a13b790ff132f8b19859afd739088c8e54d4d6e9c747f2789fdfd9c 2590 
freshplayerplugin_0.3.5-1.dsc
 b08f7c6690de13b1e358fef4cab41cb303b9e80b3504678e94c9646f44dd7104 781003 
freshplayerplugin_0.3.5.orig.tar.gz
 f792f8f87c76ecd08ec5f55499779a29f16b0d4d4af68d713b0dc903749ea895 9520 
freshplayerplugin_0.3.5-1.debian.tar.xz
 8e80c059a38d680ebd39c50db9b61e078760ca9c5a10e7e575dac7bfeb48cf76 3713982 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.5-1_amd64.deb
 ed32948f4618ee39568bdc5f3e9ce7ef551973c3d228cf8f3d7e0c1f3b18c051 327804 
browser-plugin-freshplayer-libpdf_0.3.5-1_amd64.deb
 7a75893f79c04b518913d954df63352257d72ed97f3c312d066499d7c9c59b0f 3692412 
browser-plugin-freshplayer-nacl-dbgsym_0.3.5-1_amd64.deb
 cc3774b7bc3c63c3eb68155ef8ffe5823135b48ec336571cfbbcfde8d6e8b9c4 325346 
browser-plugin-freshplayer-nacl_0.3.5-1_amd64.deb
 8f00ee358521215fb691c482bf09466e0505f7401f28b260f57f3e339d2c43be 3691920 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.5-1_amd64.deb
 a1e59a9d367fb5a8ad725c0a92febbd0231904c678b84e259a941a6cbdceda61 355050 
browser-plugin-freshplayer-pepperflash_0.3.5-1_amd64.deb
Files: 
 5f16873d14187c69a3cf3b33234601eb 2590 contrib/web optional 
freshplayerplugin_0.3.5-1.dsc
 a1dfa71caba60c13c54ff5c743ef50bc 781003 contrib/web optional 
freshplayerplugin_0.3.5.orig.tar.gz
 5ffefb6305c7500d6483222ad7760904 9520 contrib/web optional 
freshplayerplugin_0.3.5-1.debian.tar.xz
 c712b94d98afeeb14c1165d32a3fbf0e 3713982 contrib/debug extra 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.5-1_amd64.deb
 19e10c0c65be93c8ec0fefbd418ff9a2 327804 contrib/web optional 
browser-plugin-freshplayer-libpdf_0.3.5-1_amd64.deb
 cecb70408f2c8236b09824de55ec1504 3692412 contrib/debug extra 
browser-plugin-freshplayer-nacl-dbgsym_0.3.5-1_amd64.deb
 330c024f6ec103ce775e685f6571ddc4 325346 contrib/web optional 
browser-plugin-freshplayer-nacl_0.3.5-1_amd64.deb
 bff3db24297dc63ee131d2a7d052c474 3691920 contrib/debug extra 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.5-1_amd64.deb
 32a0667f55372e8d0bb93063058e5589 355050 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.5-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVyheCJZH3mN+x7dRAQjY/w/9HC9BwBSTt438pQYzkn8JpfcNT4ilS7zj
mGK7NunOVH86RgIZKa+qDCv0QzN18xu3cJc/AR/H44VPCoS0PGQgUimvpptcKWs5
QLzISLtnhfjt/9thke65ReAxmK0XQkJR3OH4wMTCJuGHlBYnyv9rLNllI+Ttmbrs
dFWuGsT1IFtQqJh6QvteKE8ijwOpbOSXU44dnMBtpfe+K9vYN1E5bVWmLAJBf44Z
iWkWIFWROMJ4E/dfI7phPFI6PjiVgYWgfPaBMH8ztPPaoXhM2JppAb5Ni4d4cl5g
H8CZ5E0OD7Z+WO+b0W7sTsfKXWmhr6lMV3xmmm4LzjMG2BMydhMqX8DmLDEn
SeWPfrztzka198DeN3GqMC12KXRDHxo4G4dM35o6WDIoDCRFp2TAF7bDbSdu5UfD
GINXMvEtR8wn5nRgdKT1Vvz0MNq0MMf85pc6lyxVq88q0tGYiyiU4lnzw0mHrrlK
2SMJzt300dLPyy5VM408E1ualqqiBXAehOgI5w/SJcpE3nOJy0QW3UHnNa1aTLqm
crY78JGwomeTL3j2plyHaffdMnf6IP5xJ5OKOusgI/Ma+BVwjUoh+49+qJTuudqk
udoKlf86VCcpLPTcuIggU5L5qjB9Mw1/lb98KfkujUss8116pSkbWVo4zLA+LfSp
B7L+dnAtUAo=
=K29A
-END PGP SIGNATURE-



Re: Packaging of static libraries

2016-04-19 Thread Vincent Danjean
Le 19/04/2016 19:57, Bas Wijnen a écrit :
> You seem to suggest that we should compile for
> maximum performance, at the cost of security, because some people want that.

  No. Reread what I wrote.

  I think security is important but this is only one thing between many.
  I'm convinced that we could do a way more secure system by enabling
selinux in enforce mode, by running most of service in chroot, virtual
machines, containers, by recompile them with tools that check all
memory accesses, ...
  But I'm also sure that all of this is not done (for now, by default
in Debian) because other 'things' would suffer too much (performances,
usability, ...) whereas this is technically possible.
  So, any new 'security feature' should be evaluated (as always until
now) with respect to the other aspects.

The initial argument was:
> We in Debian are in a good position to defend our users from the
> fallout from this problem.  We could change our default compiler
> options to favour safety, and provide more traditional semantics.

  The safety argument was presented as one that dominate all the
others. I do *not* deny that the safety is a very strong argument.
I just say that other aspects must *also* be evaluated and balanced.
And an small increase in safety is not always the best thing for the
Debian project if it leads to severe performance/usability/... issues.

  Regards,
    Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: Packaging of static libraries

2016-04-14 Thread Vincent Danjean
Le 13/04/2016 20:02, Bas Wijnen a écrit :
> On Wed, Apr 13, 2016 at 05:17:54PM +0200, Marco d'Itri wrote:
>> On Apr 13, Ian Jackson <ijack...@chiark.greenend.org.uk> wrote:
>>> We in Debian are in a good position to defend our users from the
>>> fallout from this problem.  We could change our default compiler
>>> options to favour safety, and provide more traditional semantics.
>> Which would not solve any problem in this case, because then the HPC 
>> users will just not use Debian or use custom optimized builds.
> 
> If users have such specialized needs, I think it is not only reasonable that
> they build their own versions of their libraries; I expect them to prefer 
> that.
> So we should make that as easy as possible.  I can imagine that Gentoo also
> seems attractive to them, and it may be a good (or even better) solution.  But
> as Debian, I think the best we can do to help them is to make it easy to build
> our packages from source with custom build flags.  I'm guessing that we're
> probably talking less than 100 people in the world, maybe less than 10, that
> need this.  It makes no sense to put a package in the archive just for them.

  I do not understand where your numbers come from. I do not know the
number of people that want optimized libraries for HPC, but I know
myself more than 10 just around me.
  I also know lots of HPC clusters installed with Debian. If Debian
choose to favor safety wrt to performance (instead of trying to find
a good compromise as currently), it will probably loose some users.
  And no, admins (and most users) do not prefer to recompile software
instead of using the installed one (some users do not have enough
computer science skills to do it and some admins are already
overloaded and will not want to manage a derivative distribution)

> And changing the default compiler settings to fit their needs makes even less
> sense.

However, it already occurred : we compile by default with -O2, not
with the compiler default (no -O options). Until now, the Debian
project seems to agree that this is a good tradeoff between
optimization and "code correction".

  Regards,
Vincent

> Thanks,
> Bas
> 

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted owfs 3.1p1-3 (all amd64 source) into unstable

2016-04-08 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 08 Apr 2016 23:59:03 +0200
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php5 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc 
owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-3
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 815046
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php5 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-3) unstable; urgency=medium
 .
   * Applying provided patch to fix crash when fuse options are provided
 (Closes: #815046) (thanks Matthew Gabeler-Lee)
Checksums-Sha1: 
 f25838014ed55f6b3fae0b9f6b2f28d3bea92dce 3030 owfs_3.1p1-3.dsc
 b04d13a83aab2dca668acb72e93982b26aa0fcaf 22880 owfs_3.1p1-3.debian.tar.xz
 7161cc583260524efcc4d50399fd5d65fff6492d 1099128 
libow-3.1-1-dbgsym_3.1p1-3_amd64.deb
 6e172ebb620dd32c1ec04ff2405366ef7fca41cb 302310 libow-3.1-1_3.1p1-3_amd64.deb
 242c1a8dd2ff4e200fee9a297aa4d98d0c7c30ff 15952 libow-dev_3.1p1-3_amd64.deb
 b3c4cec1740ad650fe7c4e39757e05be09b5d615 41464 
libow-perl-dbgsym_3.1p1-3_amd64.deb
 6bfe06dceb09ce155a13ea3e3f5790c901bf5fd4 19320 libow-perl_3.1p1-3_amd64.deb
 78e99a0abaf869412f49f03a16e33213aeb4378a 24600 
libow-php5-dbgsym_3.1p1-3_amd64.deb
 74600d23fae58baadac575050eb675dfec55ae50 13290 libow-php5_3.1p1-3_amd64.deb
 dd252b49603dacac84a472fbb3cfa003970b2277 19976 
libow-tcl-dbgsym_3.1p1-3_amd64.deb
 47485ef5eb869c9d2eefa43614dd9886e8aa2b3b 19516 libow-tcl_3.1p1-3_amd64.deb
 313eb4f78cdf8e2254b46c896f827a32713eeb48 14228 
libowcapi-3.1-1-dbgsym_3.1p1-3_amd64.deb
 ef6243e2db27bbb187890d6c45216515f44c2f4d 11002 
libowcapi-3.1-1_3.1p1-3_amd64.deb
 d0c242c5878b49f865725a99671156ae6537fabd 45582 
libownet-3.1-1-dbgsym_3.1p1-3_amd64.deb
 7e3423b0d2595dd3121181eae7e620d241d06781 24536 libownet-3.1-1_3.1p1-3_amd64.deb
 d2d19f376bc564e3ef84361b5539a1648830abe0 14890 libownet-dev_3.1p1-3_amd64.deb
 06f34da40b668dac2be17f92a65780ef6981e64a 28444 libownet-perl_3.1p1-3_all.deb
 6faa450796a0b4dfe2afc3b6b694b5976fe0986d 16834 libownet-php_3.1p1-3_all.deb
 d7f836f3cd43cb53ae87db0846b52b80b461bf58 120922 
ow-shell-dbgsym_3.1p1-3_amd64.deb
 1b26a2f65f7f62d6dfc813881c18786a4670a9e5 26962 ow-shell_3.1p1-3_amd64.deb
 68d8174386f007da311c7c4ae7225d7a45ca3315 27568 ow-tools_3.1p1-3_all.deb
 77a96ece5fbe4be6da144958ae02bc6f1f4253c4 16058 owfs-common_3.1p1-3_all.deb
 5b43fa573a496b01a8ed2f1c4f364c06ff0394b2 8072 owfs-dbg_3.1p1-3_amd64.deb
 978d8049b849d7e636a29aace880dc2c32fde086 194890 owfs-doc_3.1p1-3_all.deb
 a4a10e67e752527c1b1ab82bcd796fe6418a723c 27006 
owfs-fuse-dbgsym_3.1p1-3_amd64.deb
 dc41deaf53d1a657d91c42ff4a9cf5bebb0831bb 20016 owfs-fuse_3.1p1-3_amd64.deb
 01727476f299c90dead2af977c00cd6ceb1a868a 8096 owfs_3.1p1-3_all.deb
 c9909c297b4b17f83fa4bf0fefff4b876b64246b 81042 owftpd-dbgsym_3.1p1-3_amd64.deb
 6df5c7f1d2b707408fb116a8ba605161a2ba7617 41590 owftpd_3.1p1-3_amd64.deb
 f6569c1170b28d300483702f7e4b1fa452180048 55014 owhttpd-dbgsym_3.1p1-3_amd64.deb
 05711b05a56c6e0c3bcbc85c872d7197f2149b6a 29050 owhttpd_3.1p1-3_amd64.deb
 492a8334a8e3066d09b22d02e14fe743ac00cc29 46236 
owserver-dbgsym_3.1p1-3_amd64.deb
 4b1e8b06efcfbafb1f74222320c91884020ce6e3 28836 owserver_3.1p1-3_amd64.deb
 bdf16da3b671d9c091f239b800eb09017937c820 30770 
python-ow-dbgsym_3.1p1-3_amd64.deb
 0d58c8ce1232b8d8def2a3e0724ce10db68cb09c 33234 python-ow_3.1p1-3_amd64.deb
 5d2017ee5c1299ff380d336d5a15d4ca01f22b61 15382 python-ownet_3.1p1-3_all.deb
Checksums-Sha256: 
 c3cd24d28d94e28a16e4d4d60820847b867a8911120b41e43793d0b5de45f21b 3030 
owfs_3.1p1-3.dsc
 4d50483d346077321e4a266b69c143d7eb7ebcf89c55febf2a6ba1aa3eaa39d1 22880 
owfs_3.1p1-3.d

Accepted htsjdk 2.1.1+dfsg.1-1 (source all) into unstable

2016-04-05 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Mar 2016 22:13:50 +0100
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: source all
Version: 2.1.1+dfsg.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description:
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
Changes:
 htsjdk (2.1.1+dfsg.1-1) unstable; urgency=medium
 .
   [ Andreas Tille ]
   * Make sure repackaged tarball is compressed with xz
 .
   [ Vincent Danjean ]
   * New upstream version
   * Bump Standard-Version to 3.9.7
   * Switch back to default-jdk now that it is >= 1.8
Checksums-Sha1:
 475ab8480112ce0f60d2972f91069275a990ab15 2328 htsjdk_2.1.1+dfsg.1-1.dsc
 50a814565210806266b199a48f301943fbdce683 8404357 
htsjdk_2.1.1+dfsg.1.orig.tar.gz
 3c53bcb6b204aac12d51206707f2d56d3955708c 12760 
htsjdk_2.1.1+dfsg.1-1.debian.tar.xz
 b828d64fc27aaf2572177fb85f4b04bec380b62c 831192 
libhtsjdk-java-doc_2.1.1+dfsg.1-1_all.deb
 518c5c7d777809def0447132baf388c012bb2ca5 741258 
libhtsjdk-java_2.1.1+dfsg.1-1_all.deb
Checksums-Sha256:
 a5fd32cff763d2080a444cefce8702f1449edf74cbfdfebce27d359079c1bf9b 2328 
htsjdk_2.1.1+dfsg.1-1.dsc
 04bbe7c8ae10f73392d9ebc9fe5c582c023d0edb97fcb353a9cd830842e4afe8 8404357 
htsjdk_2.1.1+dfsg.1.orig.tar.gz
 eda0e2ec0601af48835c1e5125f8bac8503907a047b744ffe94fa288d162bb84 12760 
htsjdk_2.1.1+dfsg.1-1.debian.tar.xz
 87fa58cb8e2da68651dab373c7d2cf82e887801a5d9844170fb345354b769502 831192 
libhtsjdk-java-doc_2.1.1+dfsg.1-1_all.deb
 67ea3514ded6ceda66275843084f28a282f711a3fbdbcff94b47444c4ba8b9c9 741258 
libhtsjdk-java_2.1.1+dfsg.1-1_all.deb
Files:
 74eb0ef920b231a20f77eca5f7f2e95b 2328 science optional 
htsjdk_2.1.1+dfsg.1-1.dsc
 a1c634f5aa1b7923af087b9a494a459f 8404357 science optional 
htsjdk_2.1.1+dfsg.1.orig.tar.gz
 eab4b14d3733ea5dbb026db876fb026e 12760 science optional 
htsjdk_2.1.1+dfsg.1-1.debian.tar.xz
 26097b230cfc5bae5ddf101a57d2b65d 831192 doc optional 
libhtsjdk-java-doc_2.1.1+dfsg.1-1_all.deb
 b064ac81f1503f5fbf9283faf6756ae3 741258 java optional 
libhtsjdk-java_2.1.1+dfsg.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXA11oAAoJEFeKBJTRxkbRNkYP/0TyLSDxz6/VSnAYJ/ShXMin
68JjXlKJpjYJu9goBCU6mGqMcYJBFptuEMY6UO5e64JvpQtW4XwvbADDfMwjU2n6
vtE8Mt8dd28p2eA490XtkuaY4gaMV92U0UOjc1GQkLnalBCwXpwSWSRITkRbbvLt
d4OKNNdyTAK+g3Pg/V9xuLNLePogJIbEWVQlIh7zEPMfEcfddWXw7IN3f+uP1+7C
3qjPb7J6oHNati+BSy2xz9OncerCgPm9zhJNnftlIGqrlbdf6S2beHjPuybP+FaQ
7nY7CmxzLhL8pIGmPXXJ5N3WBux3/bdNpoaDScvNieHDFGsFhakSn8Di8JnbsSge
nggU3Hm8oS+R6Ytn89SbX6T+UHtWkWbwLOrGNJ04NFxxO2BJ5tDFzhjK1+6LDoAY
c/fb3Y/Tcm3TrKXb3+/bHcYK5WFrU1uiBsVliugIERTU77sm/7Uk+MN1z3HUCN74
iYplFE2WHCzLb+Q1AdWZKbmblamhZ+FJxmfOHu3ZIWdQ79zzw0eo2omHcdQ2n5Aq
R+PjBNqTfFWPAxklBKhNJU8pTxOOo46PcYsxlCckWrBpe0UsXgCHvhCY5msCD+UM
RXOvuisG9rITSpLXdKrJ27s/FagIzx7F+NX+ny1tQYU/UYqMFLjB6LfU1LvCRx+T
+T2ayIE1JvhBiPKy3svc
=HMmq
-END PGP SIGNATURE-



Accepted oar 2.5.7-2 (all amd64 source) into unstable

2016-04-04 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 04 Apr 2016 22:47:00 +0200
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.7-2
Distribution: unstable
Urgency: high
Maintainer: Pierre Neyron <pierre.ney...@free.fr>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.7-2) unstable; urgency=high
 .
   * enabling hardening flags
   * urgency still set to high as 2.5.7-1 is not yet in testing
Checksums-Sha1: 
 6674c2f625e87fa83bf675abe5b8827a4acb867b 2387 oar_2.5.7-2.dsc
 c160097d21cc483c6405a8d76a91e0a2823c7b66 10724 oar_2.5.7-2.debian.tar.xz
 3a21a61fb3357dd8dd70aa87fc6b86d82f1453be 76288 liboar-perl_2.5.7-2_amd64.deb
 93c4d090dc69b0c8e0e80538068b0f5e5e313ce3 12254 
oar-common-dbgsym_2.5.7-2_amd64.deb
 cac0adc0dfd65a31cb7c55e8d266fa9d439ee95c 64490 oar-common_2.5.7-2_amd64.deb
 28658c1e3a2dd95514c7756f619d5e74b2f5fced 2826426 oar-doc_2.5.7-2_all.deb
 3d03a0ef06dfebb0f9669fe2afdc28be3e75e946 0 oar-node_2.5.7-2_amd64.deb
 7f69fdfd7122822b0607d30276fabf55c3b20542 8010 
oar-restful-api-dbgsym_2.5.7-2_amd64.deb
 0f7265a468cf0e41306d0ba7f98e6741d9dd568b 55058 
oar-restful-api_2.5.7-2_amd64.deb
 0530668ed72a0b5c3fe8923d386072844fbc8b9b 26208 
oar-server-dbgsym_2.5.7-2_amd64.deb
 0d949d24f87b2cfeeaab6a934bff9c4d6071b17d 21040 
oar-server-mysql_2.5.7-2_amd64.deb
 d9d404131ef1e26afe21ca525a28d5644efe0931 21038 
oar-server-pgsql_2.5.7-2_amd64.deb
 d106c5a3eb4e78777f3c84c6e9dabd47e0529a68 150802 oar-server_2.5.7-2_amd64.deb
 d461b66331db13b0949d4906215eee52ef0ae570 17080 
oar-user-dbgsym_2.5.7-2_amd64.deb
 de06c47efde14590901a04b51262bbbc5ed0b1cb 21014 oar-user-mysql_2.5.7-2_amd64.deb
 a9c8983a21131251f8bcdb934f006c765ea296ea 21014 oar-user-pgsql_2.5.7-2_amd64.deb
 b74a5bfc51e10480b3671af34339b52c409ee613 68702 oar-user_2.5.7-2_amd64.deb
 21722c786652a090282748184aa680d078826762 55516 oar-web-status_2.5.7-2_all.deb
Checksums-Sha256: 
 92f0bbea4c3441e6d2318b3779aabdaeed491669b6276ffca34c6cb9fe19 2387 
oar_2.5.7-2.dsc
 a2d99e55f211f1490863743dcd74eeab7b62c461dccac85a5eebd57ec9694e9d 10724 
oar_2.5.7-2.debian.tar.xz
 ba322c8a0d5c5e436a14198baa19e13dc6d7c314744efbaa6abe3688d878571d 76288 
liboar-perl_2.5.7-2_amd64.deb
 92df9c27c0afbe35d6dc5ac2c5cf7ce68278bc672ec6e760dee252f982c72fc7 12254 
oar-common-dbgsym_2.5.7-2_amd64.deb
 567528fed5fab23e8caaba3624fc11832e9c6fa786f59309e288e60eec1e7d96 64490 
oar-common_2.5.7-2_amd64.deb
 6407e4009786bebfa5ec05019c33ad96526e6663fa34038fc1d31517307fd16e 2826426 
oar-doc_2.5.7-2_all.deb
 75e6fe1be9445ccacbe299c12cc2e76fa7f5b9a83a09a2f32b7a27a25bd1b9ec 0 
oar-node_2.5.7-2_amd64.deb
 4e1b9c17ac2794181f2a8c2d37c2678a9b61becf9e7c935809707504f95d5142 8010 
oar-restful-api-dbgsym_2.5.7-2_amd64.deb
 235e30a66f090bfc6e9fd2211b08c9f07117ec764a589ae3d3c5e8a213ca20b1 55058 
oar-restful-api_2.5.7-2_amd64.deb
 7368a6b9c9abada6acabd22920e490f4ab3a60e0647db614cafa1fbd318413ae 26208 
oar-server-dbgsym_2.5.7-2_amd64.deb
 a17664f5a76c0b67e5d65450eb8d5221f07971f8f0b4d9437e670cb767fc5b10 21040 
oar-server-mysql_2.5.7-2_amd64.deb
 91caa9c0ec82e54541251e68d47fe3957afc5d7d71aaa3179d714c53a77a8e70 21038 
oar-server-pgsql_2.5.7-2_amd64.deb
 3af9a0b2997ea50316657b73b13c11fe0db82fe3d2958b5e7876423e83249ebd 150802 
oar-server_2.5.7-2_amd64.deb
 f1c74dfae6cce8ff3ed1fbff354a05ffd30f66b66f06debc2d313d6b97de68b7 17080 
oar-user-dbgsym_2.5.7-2_amd64.deb
 623e0575e2e6467111cfeff75086f79826cdb800138940bac420e1041eed4657 21014 
oar-user-mysql_2.5.7-2_amd64.deb
 60dcbf56ce04a580db82fe95b23183c780da548cf494376724a3e24bc100b8ae 21014 
oar-user-pgsql_2.5.7-2_amd64.deb
 010a52518a3a65fff3be246691c8ea5607791341f3efcb94795b2f2560413a4b 68702 
oar-user_2.5.7-2_amd64.deb
 6afa2d56842d372ff7f149b2cad3b2ca268baa2bf2f7264dd8c5e320bf98875a 55516 
oar-web-status_2.5.7-2_all.deb
Files: 
 4363c6330ec6a6cf94ed5a5646a2f213 2387 utils extra oar_2.5.7-2.dsc
 c436cc0b5ce4db64450f0a3e220459e3 10724 utils extra oar_2.5.7-2.debian.tar.xz
 3d3cf8b2b4f97a193f61478b12bfec0b 76288 perl extra liboar-perl_2.5.7-2_amd64.deb
 43b94a45a80d9e73fc1ac1e39aae7b99 12254 debug extra 
oar-common-dbgsym_2.5.7-2_amd64.deb
 602774a10bee3fd6668b

Accepted ocl-icd 2.2.9-1 (amd64 source) into unstable

2016-03-03 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Mar 2016 10:39:45 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev ocl-icd-dbg
Architecture: amd64 source
Version: 2.2.9-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dbg - Debug symbols for the generic OpenCL ICD Loader
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.9-1) unstable; urgency=medium
 .
   * New upstream release
 + Report the correct supported OpenCL version when asked
 + Add support for OPENCL_VENDOR_PATH envvar
   * Apply 'cme fix dpkg', ie update Standard-Versions and Vcs-Git.
Checksums-Sha1: 
 a29aedf1c27ae8b614b1e4ac7b0ecd2cbe6244c4 2127 ocl-icd_2.2.9-1.dsc
 3b6a54287377b30675ff35a0286d208877000d59 453477 ocl-icd_2.2.9.orig.tar.gz
 034f758e027360f19cdf2c0dfdd16f475ef7b5df 10904 ocl-icd_2.2.9-1.debian.tar.xz
 d0af978d3b777b486727417563463063f07bc67e 47620 ocl-icd-dbg_2.2.9-1_amd64.deb
 180452d2d336404bf3e8f422d2756503b94abdfa 16698 ocl-icd-dev_2.2.9-1_amd64.deb
 ca09038a4adf3ad3a359c7dbe876e42cdd402f96 36084 
ocl-icd-libopencl1_2.2.9-1_amd64.deb
 ed90c001e47e162e903f635bbd960a99984f1c08 9462 
ocl-icd-opencl-dev_2.2.9-1_amd64.deb
Checksums-Sha256: 
 fe2afb282b129070c564287c3a036ad9ebaa87d3f5442131ce83a6d1d907ccb8 2127 
ocl-icd_2.2.9-1.dsc
 0c8ac13e2c5b737c34de49f9aca6cad3c4d33dd0bbb149b01238d76e798feae5 453477 
ocl-icd_2.2.9.orig.tar.gz
 4e1324ddd99b80cd3fb5079c71fe9c3bdf90b30be6d4cea537a66b78d213a819 10904 
ocl-icd_2.2.9-1.debian.tar.xz
 e3a25ec698b970b338091381e75e550877cccd7523f17b32dafccb5eee99958b 47620 
ocl-icd-dbg_2.2.9-1_amd64.deb
 b3645e7d9fbeb5857197954b8a6738abb81b7bc28d85e500f19bada9ead5b211 16698 
ocl-icd-dev_2.2.9-1_amd64.deb
 8a6ad5d0d34b7a278b2a684d1597e85278a17c4000149a1b95c9e43dd55e 36084 
ocl-icd-libopencl1_2.2.9-1_amd64.deb
 7974e493c2ac32d20fe9c52190f18b4ded4dd728801eae1dfca297a0bb94e457 9462 
ocl-icd-opencl-dev_2.2.9-1_amd64.deb
Files: 
 08238c914362895e74c583930baed92d 2127 libs extra ocl-icd_2.2.9-1.dsc
 7dab1a9531ea79c19a414a9ee229504e 453477 libs extra ocl-icd_2.2.9.orig.tar.gz
 9f9597c8a50198c1bf1f3e73b9d6cee1 10904 libs extra ocl-icd_2.2.9-1.debian.tar.xz
 aab9902a66269a12c8d63d61ec4cc4b3 47620 debug extra 
ocl-icd-dbg_2.2.9-1_amd64.deb
 aa95b87a95309e23403bd080b2d1fede 16698 libdevel extra 
ocl-icd-dev_2.2.9-1_amd64.deb
 131e3ab4720bb9f51bb6887df36ee5ac 36084 libs extra 
ocl-icd-libopencl1_2.2.9-1_amd64.deb
 9f06c487f10359f805c257eb043c72c4 9462 libdevel extra 
ocl-icd-opencl-dev_2.2.9-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVtgJeZZH3mN+x7dRAQiZ7Q//YQ+w/bCXF6IYZETeNs5RunzwN1/IGbgV
CO6WmZh116h6dGGiadPtpOGgKYl43PPllX6Gl//dgHmsdUDw7oaQZwi+36LyP4Bg
9TUqwQS9KJANJN4h+d4v7MvJ4JHqfxvcjFocm7xO95nW+DqhajlGhYaTdQvsRzgu
/h84u98CestqZz9xk169r8ztL1tQ3B8PJv8eNKUkTF7d1oCo46nX/IElasnBzPvc
SBs/sigqQQWvyR5sXEcMFPG48Rw1GWGht7C2IhiaLSeFVGIVqKfCVw+oVO3KE9HN
ARNLLJNZAopczyQJZlrQHf2FcXC7YfbZpao4aNJfx15elQvDOkYaEqjDlOciF5AB
OH+CBUy58Gq9j3073maVFcq85a4XqxHzMK2Urm/H05NkWSGVCi9kIi5gzV4K5n0D
cjV5452/QWjj8RNGEx7JJVXKHFhW/2ZIYv0H/oTcpP5dNzO8DwP/kXpyEDMSdDNx
sudHZc/XstrkuZCda1dk1LMwTa1rO5hTghOCG4t/1YAEcUaPTWv/lfvc8xDydsWb
F/v9CPA6xQDDkOh49M63pO5vGPbHR4EBFd8kpTcdpXFwOaqsPJKu/6BWqFyYt4hN
wqihecwzBp7knSuupT4SAehVmF7wQQYkQTHSfhNPF52bNaIeWLfD7H/KkoYHBzRV
jKtSN4FBOi8=
=WDt0
-END PGP SIGNATURE-



Bug#815980: tracker.debian.org: All packages have uscan issues

2016-02-26 Thread Vincent Danjean
Package: tracker.debian.org
Severity: normal

  Hi,

  In the PTS, all packages I currently look at display the following
"action needed" item:
* Problems while searching for a new upstream version

  When looking at the details, it seems to be a connectivity problem
(and I checked for a few packages that the watch file is correct).


  I report the bug against the tracker.debian.org pseudo-package because
the problem is shown here. But I CC debian-devel as I'm convinced that the root
issue comes from elsewhere (the PTS is just displaying one information source).
I hope someone will be able to find the root issue and reassing this bug
accordingly.

  Regards,
Vincent

-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'squeeze-lts'), (500, 
'oldstable-updates'), (500, 'oldoldstable'), (500, 'unstable'), (500, 
'testing'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armel, mipsel

Kernel: Linux 4.4.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Re: Adding SONAME to a shared object in KLEE

2016-02-25 Thread Vincent Danjean
Le 24/02/2016 08:30, Marko Dimjašević a écrit :
> Which brings us back to the original question - how to add the SONAME
> attribute to the library?

Did you try what have been said in this thread?

If yes, what did you do *exactly*?
Else, why not?

  Regards,
Vincent





Accepted libdata-table-perl 1.72-1 (all source) into unstable, unstable

2016-02-22 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 21 Feb 2016 14:24:15 +0100
Source: libdata-table-perl
Binary: libdata-table-perl
Architecture: all source
Version: 1.72-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 815424
Description: 
 libdata-table-perl - manipulate data tables in perl (as in R)
Changes:
 libdata-table-perl (1.72-1) unstable; urgency=low
 .
   * Initial Release (Closes: #815424)
Checksums-Sha1: 
 6a09a54ea738ffa0872a5a1073781a954459c367 2074 libdata-table-perl_1.72-1.dsc
 1094c114efd083ff8641559201a1fa49bee8147c 68806 
libdata-table-perl_1.72.orig.tar.gz
 a4a0a85b0645b47187d629bc30e4034e207b2d31 1732 
libdata-table-perl_1.72-1.debian.tar.xz
 0423e047b40a61eb87e661502bcff43d3628d656 60828 
libdata-table-perl_1.72-1_all.deb
Checksums-Sha256: 
 3281afa31c760e9d0be3f0f7688e4f33e62de222875fdaabe780f02fc0b77438 2074 
libdata-table-perl_1.72-1.dsc
 3cde103d38cad5b0df27209c797a3f62e547a9e79b5193d9abd16761747d4a25 68806 
libdata-table-perl_1.72.orig.tar.gz
 a6dbc7152ec2bb74fbde75f92ad7ba9b027d363b94bb13d2665f76520e896c82 1732 
libdata-table-perl_1.72-1.debian.tar.xz
 b690e893290de96334a3b7118ed192ff02e81d64da454f225ab0a8db426a82c1 60828 
libdata-table-perl_1.72-1_all.deb
Files: 
 44a5ef734cd3ebf8007e3668cfdc1f8d 2074 perl optional 
libdata-table-perl_1.72-1.dsc
 561bb6e777330f55eadeef91a46ed534 68806 perl optional 
libdata-table-perl_1.72.orig.tar.gz
 4283368a723a05ba110066ae69dd4f46 1732 perl optional 
libdata-table-perl_1.72-1.debian.tar.xz
 250f57f9598e4335bde528d72ca62986 60828 perl optional 
libdata-table-perl_1.72-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVsnErpZH3mN+x7dRAQgFuw/+I24csakiR96JcAze9DLJ6vJtgiNjD6mG
z13u65QeUOzyxj56uXbDRuhigwqhd0cbcwyJjEretscPOp01XVZL5TCBHdbaICjN
0zr7wgIwM6+4eS1MdzynemsZUSNNI9nyQxC8SOWc3HnSmnFSZpH/knfY2xsjkg3N
gaiF+I3oiK5cY6/KmppHh3vdBKlsSvcVITOaLjVIgB5ZZ2krHjADSPT8HsUOJ8Uh
C9JEywew/pssvPEVrQWyalZSUMJl0la8dMDkhirYYV4kWIdeOKje3CLVeBYGzHij
znPueRpvm4QtYoQ7K3mAq0G3hRWB9i1vANL4cDvgJdMPVM84fQny5zP6m554R2UA
u+H5OC3jTmKvzx6BthUwxim8DW4iC7efeDel7+XNa//n07y5g+bRnoOG9rQW0ooG
j4yoDT9jLe4dZ2OXUz0/plV8q2itFMRsz8P5zDKL0fZVEgl0q3T3A4tSJC6+KtrI
ulz/LREjX9Zgqb4Hvd657WUgIOw2zAePDo7GmSmtrO8q19wfs9ngKnJ5zaDj8b1U
JH3m8wFdGhC+cqDcDHFO5q/+M7Xv9VXvaywRnT/mzRFGrQcJ7yZZ/6J5xXJ5YCeQ
CpvZzd0YjCWYeU6ttvTiepfXXQ3Ikgbym9C1pzgp195wuuzLVtBY0kAdgRD9Nwn8
mkP26v6rroU=
=kwC8
-END PGP SIGNATURE-



Bug#815424: ITP: libdata-table-perl -- manipulate data tables in perl (as in R)

2016-02-21 Thread Vincent Danjean
Package: wnpp
Severity: wishlist
Owner: Vincent Danjean <vdanj...@debian.org>

* Package name: libdata-table-perl
  Version : 1.72
  Upstream Author : Yingyao Zhou & Guangzhou Zou
* URL : https://metacpan.org/release/Data-Table
* License : Perl (Artistic or GPL-1+)
  Programming Lang: Perl
  Description : manipulate data tables in perl (as in R)

 This perl package uses perl5 objects to make it easy for manipulating
 spreadsheet data among disk files, database, and Web publishing.
 .
 A table object contains a header and a two-dimensional array of scalars. Four
 class methods Data::fromFile, Data::Table::fromCSV, Data::Table::fromTSV, and
 Data::Table::fromSQL allow users to create a table object from a CSV/TSV file
 or a database SQL selection in a snap.
 .
 Table methods provide basic access, add, delete row(s) or column(s)
 operations, as well as more advanced sub-table extraction, table sorting,
 record matching via keywords or patterns, table merging, and web publishing.
 Data::Table class also provides a straightforward interface to other popular
 Perl modules such as DBI and GD::Graph.



Re: Adding SONAME to a shared object in KLEE

2016-02-19 Thread Vincent Danjean
  Hi,

Le 18/02/2016 22:58, Filippo Rusconi a écrit :
> [ longish mail, bear with me ]

Thank you for this long explaination. I just think there is a typo:

[...]
> How would we do that ? We need to tell the linker how to create the
> library file:
> 
> compilation flags to build your libkleeRuntest shared object lib:
> 
> -shared -fPIC -Wl,-soname,libkleeRuntest.so.1.1 -o libkleeRuntest.so.1.1

The argument of the linker option -soname should be the soname and not
the real name:
  -shared -fPIC -Wl,-soname,libkleeRuntest.so.1 -o libkleeRuntest.so.1.1

as this is reflected by your output:
[...]
> readelf -d libkleeRuntest.so.1.1
[...]
>   0x000e (SONAME) Library soname: 
> [libkleeRuntest.so.1]
  

no libkleeRuntest.so.1.1 but the correct libkleeRuntest.so.1 soname

>   0x000c (INIT)   0x4e68

  And a few remarks:
* if the upstream build system want to *link* with this library (after
  creating it), it will need to either use the real name or (better) to
  create the required link (the libNAME.so link)
* if the upstream build system want to *run* this library (for
  example as part of a test suite), it will need to create the other
  link (the libNAME.so.SOVERSION link) and to play with
  LD_LIBRARY_PATH (or use LD_PRELOAD)
It is were build frameworks such as autotools/libtools helps the
developer...

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted oar 2.5.6-2 (all amd64 source) into unstable

2016-02-18 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 18 Feb 2016 09:45:32 +0100
Source: oar
Binary: liboar-perl oar-common oar-server oar-server-mysql oar-server-pgsql 
oar-node oar-user oar-user-mysql oar-user-pgsql oar-web-status oar-doc 
oar-restful-api
Architecture: all amd64 source
Version: 2.5.6-2
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron <pierre.ney...@free.fr>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 liboar-perl - OAR batch scheduler common library package
 oar-common - OAR batch scheduler common package
 oar-doc- OAR batch scheduler documentation package
 oar-node   - OAR batch scheduler node package
 oar-restful-api - OAR web services
 oar-server-mysql - OAR batch scheduler MySQL server backend package
 oar-server - OAR batch scheduler server package
 oar-server-pgsql - OAR batch scheduler PostgreSQL server backend package
 oar-user-mysql - OAR batch scheduler MySQL user backend package
 oar-user   - OAR batch scheduler user package
 oar-user-pgsql - OAR batch scheduler PostgreSQL user backend package
 oar-web-status - OAR batch scheduler visualization tool package
Changes:
 oar (2.5.6-2) unstable; urgency=medium
 .
   * correctly rebuild amd64 packages (due to a error, uploaded binary
 packages for 2.5.6-1 was a work in progress)
Checksums-Sha1: 
 a399a8d353dbd6607bf2dd6d181f1fdc1a0562bc 2387 oar_2.5.6-2.dsc
 273906b285d7b6861b6fa4459c5560ac5c70578b 10468 oar_2.5.6-2.debian.tar.xz
 881f4fda66f393bf16728600bc98e362d86931ca 75760 liboar-perl_2.5.6-2_amd64.deb
 294031ca5ab3b9c57c3f0fee45276bfbc7332640 12234 
oar-common-dbgsym_2.5.6-2_amd64.deb
 417804f48ebc3de915f02bc60563f4631bef57ff 63748 oar-common_2.5.6-2_amd64.deb
 edfaa611757d69ae33d9c52043ca8e5c202292c0 2825084 oar-doc_2.5.6-2_all.deb
 8ee7668ecdd46c399e3231210d20d1502ef16346 32814 oar-node_2.5.6-2_amd64.deb
 6cee50657b93fa24ecfc74ba4f7fb2d50d352b4a 8012 
oar-restful-api-dbgsym_2.5.6-2_amd64.deb
 4670e7166944d1c93d809f5cb033ddab2c3cafaf 54364 
oar-restful-api_2.5.6-2_amd64.deb
 d8ddc7da5ef1befcb40028958ed35fe2094181b0 26794 
oar-server-dbgsym_2.5.6-2_amd64.deb
 8f4e59793e6bd36e3cd1c643f8c318d7100231be 20540 
oar-server-mysql_2.5.6-2_amd64.deb
 e7a94d022f077c592e5dbf665be91890f8f2a172 20554 
oar-server-pgsql_2.5.6-2_amd64.deb
 12dd78bf7c9611451e9471d14441e384ef9fefa0 150334 oar-server_2.5.6-2_amd64.deb
 11660cdb5f3fd9048a13f9cc90d5ed48645bff09 15444 
oar-user-dbgsym_2.5.6-2_amd64.deb
 3c97dfde9f88259b9fee4101a824c69a94600b2e 20520 oar-user-mysql_2.5.6-2_amd64.deb
 92a6a3f9f4a3e1a604a87a6ace3e9de8fd2bab61 20522 oar-user-pgsql_2.5.6-2_amd64.deb
 482103bc1105290619e609c9aa40bf19907d1c17 68050 oar-user_2.5.6-2_amd64.deb
 25d762b5f6119f7a81779fa258cbb45426bf65b5 54992 oar-web-status_2.5.6-2_all.deb
Checksums-Sha256: 
 890c1f685772449ec2e74b307472fcc217ca9f0f648468afa17f356e60c3a6e9 2387 
oar_2.5.6-2.dsc
 e8256a4f47239778c6d15ec3bf34e4b79f170449f9852574d4f7f1b148991d41 10468 
oar_2.5.6-2.debian.tar.xz
 602f91d1c27a8422bf582041235926516faa564879562cc7de8da54c91e15025 75760 
liboar-perl_2.5.6-2_amd64.deb
 e4cc37ac50be968ffc9fc83b3ef46403574d51ccb54273949838b4237947093f 12234 
oar-common-dbgsym_2.5.6-2_amd64.deb
 74815189a5c856eba3843269c5fe877e6d2a521c965bbf6eef1760d0f7e114c4 63748 
oar-common_2.5.6-2_amd64.deb
 15b3c5ac66858559dd34f7dbd37721ee1dd96317fc25ea7f541623c066cc3014 2825084 
oar-doc_2.5.6-2_all.deb
 e8304c8a4cb765a04360f37bc4dee584b1c0c10545811e67ab8e2c01a6255a9a 32814 
oar-node_2.5.6-2_amd64.deb
 a45410948dd5a1f73dd6497ce11192f85f9d2afb98cb2a93447f3f8aec69b45b 8012 
oar-restful-api-dbgsym_2.5.6-2_amd64.deb
 43aec1ce4fc9a3270afdabe21f186e20f0d6f9b5192798839e75c63de2834dff 54364 
oar-restful-api_2.5.6-2_amd64.deb
 a4dd8c7f7b4ab2d3edaaf629520aa8e09eeadbf18d28f04e67b07a9be3c94785 26794 
oar-server-dbgsym_2.5.6-2_amd64.deb
 7f3b15de37904dfe4886d6b9096f61764aeb6c89ce6678a4088650bcabdb 20540 
oar-server-mysql_2.5.6-2_amd64.deb
 e99bc3ec2627689ba6ebb78418773704100a7f3012b1efdb171c3497b007fac5 20554 
oar-server-pgsql_2.5.6-2_amd64.deb
 30abe4067ee36beff60683ac87bfd0a4f37d2f2896cb305d2fca194d18194e0f 150334 
oar-server_2.5.6-2_amd64.deb
 24bf912c9c93252b09814b6497cc385a684169896de9157275091fdc4088199b 15444 
oar-user-dbgsym_2.5.6-2_amd64.deb
 8e37ee79cb95ba3e4964db86166e8fa95aff5d271df249ddb933751ea48466cc 20520 
oar-user-mysql_2.5.6-2_amd64.deb
 394e958070c9a22e574b56274f1967982a920e59f841a42d82c90722cfb04d8d 20522 
oar-user-pgsql_2.5.6-2_amd64.deb
 2052134f66ab870b6c1d3a7f28c1910d123e651a0a250b7dc01a262647a8a661 68050 
oar-user_2.5.6-2_amd64.deb
 b246722778f45e6fcf09c300bffd8fc17acb03cd1579898ab61673bc5e9569ab 54992 
oar-web-status_2.5.6-2_all.deb
Files: 
 25408e379a65605843f4ed391b3408b2 2387 utils extra oar_2.5.6-2.dsc
 ec4ad3a56e69a9db551286aafa3c5c83 10468 utils extra oar_2.5.6-2.debian.tar.xz
 088c3bf02ba6c2cc40a727f3e5a520cd 75760 perl extra liboar-perl_2.5.6-2_amd64.deb
 077f1c9ff777a8f85b9c4165ef91e67f 12234 debug extra 
oar-common-dbgsym_2.5.6

Accepted freshplayerplugin 0.3.4-3 (amd64 source) into unstable

2016-02-15 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 15 Feb 2016 17:33:28 +0100
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash 
browser-plugin-freshplayer-libpdf browser-plugin-freshplayer-nacl
Architecture: amd64 source
Version: 0.3.4-3
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 814652
Description: 
 browser-plugin-freshplayer-libpdf - PPAPI-host NPAPI-plugin adapter for 
libpdf.so from Chrome
 browser-plugin-freshplayer-nacl - PPAPI-host NPAPI-plugin adapter for Native 
Client from Chrome
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.4-3) unstable; urgency=medium
 .
   * really add the /usr/lib/mozilla/plugins directory (Closes: #814652)
Checksums-Sha1: 
 c87d38fa3305fd6d88b714c0b1e7a2938e686aa8 2590 freshplayerplugin_0.3.4-3.dsc
 673e43c0b07b993557d122c80b61e58746f71382 9164 
freshplayerplugin_0.3.4-3.debian.tar.xz
 908b8a188894206159502b49811df92dedd35542 3832064 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-3_amd64.deb
 d3907da5cf260185ce954cc4bb75f9ab9249c66d 330466 
browser-plugin-freshplayer-libpdf_0.3.4-3_amd64.deb
 f1089648e5a7114f0a700fae9e7212e6910e496e 3808598 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-3_amd64.deb
 8ca61c9778494b8322e0b9da2f18201fb97d2297 326948 
browser-plugin-freshplayer-nacl_0.3.4-3_amd64.deb
 3850c05fd8adea7f2e0ef13e1ced787074ed9e11 3809818 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-3_amd64.deb
 066d176aa490c0ea86d01ef6d258368493006e26 356748 
browser-plugin-freshplayer-pepperflash_0.3.4-3_amd64.deb
Checksums-Sha256: 
 fa623fb954f9ca2d3a76c0ff72579c34635c7d5812b9313b7c50c969d3919425 2590 
freshplayerplugin_0.3.4-3.dsc
 dc3061df4d167957cb15fba5768e0984c02058f29bc6f2a2cf0a15ed74eddb18 9164 
freshplayerplugin_0.3.4-3.debian.tar.xz
 7c60b5889c532d93b9b2a49051841bff00eab14d78c404a68038ace29cd8b90a 3832064 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-3_amd64.deb
 27a3a3d46d3c3a4e627b8a045c799d84a69f1c857291bb1aa2a784f36922a9e2 330466 
browser-plugin-freshplayer-libpdf_0.3.4-3_amd64.deb
 bd3e69320b3be6e8052be6fbcf3cb50e21b78b1c6c8e6a8a2ad93d1240c01e39 3808598 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-3_amd64.deb
 026c229e7ca8eccb3e3aa79d86a09f8d57696bee4d17437a4721efbee6fb8482 326948 
browser-plugin-freshplayer-nacl_0.3.4-3_amd64.deb
 45906548781a71d8f90b9aeb10adc099bdec4198eb9e8ee041f26c9a48d70e70 3809818 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-3_amd64.deb
 5f50778b90f9f418fea3f450e7e4beaa881dc967c3c4483663dbefc4aa7beaa1 356748 
browser-plugin-freshplayer-pepperflash_0.3.4-3_amd64.deb
Files: 
 e8641b6f4589a9eda3b97882ff0fa586 2590 contrib/web optional 
freshplayerplugin_0.3.4-3.dsc
 6ca2c0d25ae4d60f1ee5b01b1b61fc2b 9164 contrib/web optional 
freshplayerplugin_0.3.4-3.debian.tar.xz
 d7128af90fb255ae1483ca862709a844 3832064 contrib/debug extra 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-3_amd64.deb
 302ab34545cbb48b2b73d91112f6b308 330466 contrib/web optional 
browser-plugin-freshplayer-libpdf_0.3.4-3_amd64.deb
 6f475324f6711c1f92228fab29e95688 3808598 contrib/debug extra 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-3_amd64.deb
 61621f41e401bb47ecb88cbdd323ae2d 326948 contrib/web optional 
browser-plugin-freshplayer-nacl_0.3.4-3_amd64.deb
 8cecc355599e0c56b6477000781efdeb 3809818 contrib/debug extra 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-3_amd64.deb
 83051147dfa71709faca5c2b551f634c 356748 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.4-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVsH/1JZH3mN+x7dRAQiw9Q/8CAOMx06/EH47IeusQ0DgFFq/tyIkHSEr
51FwLFNaToeJwn7U5JKi3lOYZ0mvvdLc3KOQDFTgHwyAiEtCybPNCJ8lAPK7GXhS
AMcgEI8O61LQOwn39bozj6lBK+F9asKvGCQAf8KcE48br3It5RcbbWqL63mHWauq
BLjwAYn979r2Ag9IALrAAqoL+tvI2rlVkkXOO5Pvxknn6jBt0LGRsHFT+Ij8mpfA
4CFVxP7RLKTuEq6g71cAAeKf9Bznq3MvYDrzLNCQBRz3/A0y4OS1TvodlQLSzT3y
YYCJ30QLFjJtu04RIxRfw7zffnT0cwmFZfnM6c/q2wK/Fdw2M5coferE/fBYNt92
6DNP8Wk5a3wvupZ5Gu/Mt3q5ckkjRLJWzmDO0Ms3LT3BokjNiMJbepeq+r5fmM06
R0DcO0YgxKWXdp28P4gt7cBLCwXcdNjzIzhTEOBczhr6lN2s0O2euuE/KOId85nD
LuHOZX0UH90l0GeIhe8CIz8e9Qv3eYIQONeEyAgpIFhq9kbTSgOD/4wxmMYgL0tc
D9PdxS5rW95nVWWjWIydusDPFtcgyhzqJl6hBncZJY++6IFR2qPjwTP/nLyUsuvL
PhhSSGRi3dE8SVwTA0Mlhu16rnm4m855a2BcvhIlSxGMxtmvfKPESVsNPSY72sWE
adaeWyU3Pe0=
=YkEz
-END PGP SIGNATURE-



Accepted freshplayerplugin 0.3.4-2 (amd64 source) into unstable

2016-02-13 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 13 Feb 2016 23:48:15 +0100
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash 
browser-plugin-freshplayer-libpdf browser-plugin-freshplayer-nacl
Architecture: amd64 source
Version: 0.3.4-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 814652
Description: 
 browser-plugin-freshplayer-libpdf - PPAPI-host NPAPI-plugin adapter for 
libpdf.so from Chrome
 browser-plugin-freshplayer-nacl - PPAPI-host NPAPI-plugin adapter for Native 
Client from Chrome
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.4-2) unstable; urgency=medium
 .
   * add the '/usr/lib/mozilla/plugins' (empty) directory in the
 browser-plugin-freshplayer-pepperflash package (Closes: #814652)
Checksums-Sha1: 
 090f3f9352d9f4e967db0d9bc93186c462638219 2590 freshplayerplugin_0.3.4-2.dsc
 364cd311ae5134883b74ba21e2ddbecd39d0fef4 9136 
freshplayerplugin_0.3.4-2.debian.tar.xz
 e548f33da37c6bd88b1514f18e49036f58f80a06 3832436 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-2_amd64.deb
 f3e6ff29e3bc5ecee5309cb087d49636479192cd 330108 
browser-plugin-freshplayer-libpdf_0.3.4-2_amd64.deb
 7911159c178ee19ad0ec2a06513750bb741cefdf 3809898 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-2_amd64.deb
 e2f7745c11abe5a04ade922f2a691fc08e2a517e 328260 
browser-plugin-freshplayer-nacl_0.3.4-2_amd64.deb
 ae864c42e9c02b542abe4b609ffe441ffd7785c3 3811048 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-2_amd64.deb
 c7ea4e69a1d980cd0f1382971c8a3097b59bc152 356950 
browser-plugin-freshplayer-pepperflash_0.3.4-2_amd64.deb
Checksums-Sha256: 
 3a404025ca069dda1e44cd8236e28f293b3aad655004060ff5014c7041d5049a 2590 
freshplayerplugin_0.3.4-2.dsc
 0783c0148403f010566d6f5903695c503d670a747fe1e3a56f399153be912900 9136 
freshplayerplugin_0.3.4-2.debian.tar.xz
 fdc60ff8727ad2bc109e545b66e3a33c857e61eb293b70321a5f5aff0c4e9e26 3832436 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-2_amd64.deb
 713effb8cf654c5f9a8ee268eb77462767d2f37408223afaf3a3e87510342731 330108 
browser-plugin-freshplayer-libpdf_0.3.4-2_amd64.deb
 b259ad3ace23a00249ab4a939d54c14f178f6af4e4958aaf7d37858759e6db27 3809898 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-2_amd64.deb
 11ee8a91896cd3e7b6fac832604ee2ab4fbcf5bb0a41f4441fca2da475024832 328260 
browser-plugin-freshplayer-nacl_0.3.4-2_amd64.deb
 1098253eb35b7f66286c2a8a65b23915d4f1a96c20303c45ab8f21f14c139e5a 3811048 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-2_amd64.deb
 de0e1e0d6fdbe3707e94f51290f5b905dc784ddfd3d9c74f8b0da0116060e623 356950 
browser-plugin-freshplayer-pepperflash_0.3.4-2_amd64.deb
Files: 
 51a13d93643a681efa58052a553b2aa9 2590 contrib/web optional 
freshplayerplugin_0.3.4-2.dsc
 64cc86c19a6a0e235320f63ef17fd20a 9136 contrib/web optional 
freshplayerplugin_0.3.4-2.debian.tar.xz
 b8198065e7ab7e7a7b54f13ddecd076b 3832436 contrib/debug extra 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-2_amd64.deb
 64fcb16bd840245a856fa48b39361e5a 330108 contrib/web optional 
browser-plugin-freshplayer-libpdf_0.3.4-2_amd64.deb
 6391c0ce8dbd867736ee5ee96eb4b988 3809898 contrib/debug extra 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-2_amd64.deb
 592d2280d7bd58e89123db8f8f892499 328260 contrib/web optional 
browser-plugin-freshplayer-nacl_0.3.4-2_amd64.deb
 ae62b6b5cfc66488975c49ce6e47dbef 3811048 contrib/debug extra 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-2_amd64.deb
 4820e79a9f21a4e143a76e8f7958ad53 356950 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.4-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVr/QjJZH3mN+x7dRAQhZJBAAl0+1x+3o6WH3r4G21OEQR6toPoO4+l7Y
ReonwZSSy0d8nN6SXFKlT/SqM93mWLacHXN/Xsgg7eL+MSRrR4Rfq4i4N9KSDYE2
X3vr5KoJswQOpgCdk4uwtKVmIB0uTbt8ZrhJDajX2Rjq3iWPUw0k2f2DGb2LMBzS
JK2Eu4jF3g8xywAapHp9m7WIhZ7syOKm2KEnaEi9wfQKVd4Id8NamIWgnDZo9px4
xKzzJfmWy46TaIiQwKoWomyhqX76dh8fnBzeJ0lyB72v/JmeZYELkA9oVAN3NHUH
sVy1IsD3IYPqtaGOzJDVZNEBEpOzzjKKQqLYVG0ncnt658QHmAVooOCuk9T+b143
I6Jq6F51JW5+xDzouwZrBH5wa53UiUUuHSxIELnVzliiR5Pmtz+0AlSv/N+n8+eq
4tFiCAovdo0VsEHY841jf2Lwqpuf2BRLf7Uq5KN4m9uDJvC/3of3H7qJOG3rFo/H
CCdTkEJaeVQH3Hlw7hTqzeBe6FV4jX1EIZpPTX7e8wiK4dS+8hrsdYJe/WvrJ7MZ
BVtXE5GPnuC6r5lXujFkLD9BU4prRjyX7IF1O0UNLNn+ks85xblvQ8UmlGDCVyMV
nWI+qIeZoeUWZ8ucIkwzMV4L1Zq1rRtn3wtn4frQLD9P8t9zqb6uqmk4BsfzYS9w
+LKjXyDVxt8=
=Q5EK
-END PGP SIGNATURE-



Accepted khronos-opencl-headers 2.0~svn32091-2 (all source) into unstable

2016-02-11 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Feb 2016 11:35:05 +0100
Source: khronos-opencl-headers
Binary: opencl-headers
Architecture: all source
Version: 2.0~svn32091-2
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenCL Maintainers <pkg-opencl-de...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 809263
Description: 
 opencl-headers - OpenCL (Open Computing Language) header files
Changes:
 khronos-opencl-headers (2.0~svn32091-2) unstable; urgency=medium
 .
   * remove EGL includes (backport upstream patch) (Closes: #809263)
Checksums-Sha1: 
 23a3b9d8ab6df79461cc4169a7eaaae524259c18 2171 
khronos-opencl-headers_2.0~svn32091-2.dsc
 2afea0f44c5e1e89016b7678bd07eb54f76958fe 68865 
khronos-opencl-headers_2.0~svn32091.orig.tar.gz
 0e634c2e59ed989cd1dd8b5bd5cc803cc6356dfe 6576 
khronos-opencl-headers_2.0~svn32091-2.debian.tar.xz
 08825ed0167e0a12855bd990ddf885647d06add4 57114 
opencl-headers_2.0~svn32091-2_all.deb
Checksums-Sha256: 
 9b557bfbab40f58962e8897cefc971d1abbedf75818ff1e6f2f42403650b8a05 2171 
khronos-opencl-headers_2.0~svn32091-2.dsc
 00774bd2078f3213bb185451eb083272e5683365a11bbda8bc36c8a82cfbc5d5 68865 
khronos-opencl-headers_2.0~svn32091.orig.tar.gz
 e8f02b2e62121cfbdbeafa4ad54c3f8e2f8af72108464e8d3f27ffaf5ca6d652 6576 
khronos-opencl-headers_2.0~svn32091-2.debian.tar.xz
 b8bd282ad0895324f98aae045a7fe74d593cf25bbde829f5ef5b7bb27d6df53d 57114 
opencl-headers_2.0~svn32091-2_all.deb
Files: 
 b5d61661fa02ba58b5261a46e92f6a3f 2171 libdevel extra 
khronos-opencl-headers_2.0~svn32091-2.dsc
 958a9345aeff32e7ec7a7eab230df590 68865 libdevel extra 
khronos-opencl-headers_2.0~svn32091.orig.tar.gz
 8150ac5ce8dbd8924c27972b7af1a9e6 6576 libdevel extra 
khronos-opencl-headers_2.0~svn32091-2.debian.tar.xz
 552d953c5da58440aced43c69264cc35 57114 libdevel extra 
opencl-headers_2.0~svn32091-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVrxnCpZH3mN+x7dRAQhkrw/9FdWIEb4p44JE7oP3653bAEDdzpmMu547
zpiGvF+2rWySfkXL09W90HS3NYpXW3cqNCJKpky6/IyGWwQxY14KQiZ8iS3i94zP
zBlHIyIAZlyJs+AjZhnxBLoVhT8Pvi8GezZ3gDMton8AccQuIL5cvti8IrAmtaGr
BdnaEl9gm6IlZR2lFLYc8BMuOo81+VpI29snEwIffkgkA0AnNiUfmVPMwx/fsmKH
2p1B3ViZvvEnA9oRTSpy3+x3vZbcSWH2u/e9E3JfL7zxoKsdnnbZHI7AR3MITSWS
kzBA5+C96GX+bD3rI68YZz8k5qeu+7Svw9MBRQkn17Uc1/E13frSgGtOlcCGKqNy
GO3Y2QC194UfNm10VlDUZd6iR5XduFQfKujtqEs9C6biRUlpjehfOdAEZGGsKvPy
AMfDXV4fWZs9JHWRTR9ivzVtlt9eNOEC/CogE/kN7ZCWdnguRz1lXhuTkgWQOs4N
ZPlVNDlhKuCfk45CU+E0IrktmtqTI9J1Y8a8shTqNrzOcyT8bbP9wQVzXVp7SLqR
KFd7q2X2OX9wmBxDuAqUgJ8N6Pwc1y2ZBSEDhND7BZh0+p3YYYda3cUizKoDuC7t
gz3SCVdHFBiqRe2CMoPYl5g9xTy49xRUrtlZqfbtggAYw9Enk0fLpwWgWxEvgglX
w4a+entwTC4=
=dYTx
-END PGP SIGNATURE-



Accepted latex-make 2.2.1-1 (all source) into unstable

2016-02-09 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Feb 2016 10:09:56 +0100
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.1-1) unstable; urgency=medium
 .
   * New upstream release
Checksums-Sha1: 
 1d3ca2d300265c02f23ddce50db06eb6772c4340 2041 latex-make_2.2.1-1.dsc
 f88e61468b9e047d27b2a81a59e29c57632fe735 66284 latex-make_2.2.1.orig.tar.gz
 45deb1ca4ce3b6dff1526746b2f3cbd145814d61 5876 latex-make_2.2.1-1.debian.tar.xz
 e12884f3e3424779ed0389534c48daf2e1d57d41 785822 latex-make_2.2.1-1_all.deb
Checksums-Sha256: 
 09e7c419fd79cc1305baca2c00756da5f56718f7e0d0b45942ba483a88f47031 2041 
latex-make_2.2.1-1.dsc
 6a10297a7a4906c118ede4d640cbc00e8b38d56d250fd3df74455615c2a39d6c 66284 
latex-make_2.2.1.orig.tar.gz
 97c5ffceb59a2c45428bccc457e47265969c9aeb70b5fa40c65ee4085b22bee2 5876 
latex-make_2.2.1-1.debian.tar.xz
 20f2f88437eed2900961c16ab2ed0e09e02abf6a2223f72abacea1f006ff799b 785822 
latex-make_2.2.1-1_all.deb
Files: 
 bed44d514519773c93f38292976dfbed 2041 tex optional latex-make_2.2.1-1.dsc
 c61b4e5781619160182bb4f034a1d32d 66284 tex optional 
latex-make_2.2.1.orig.tar.gz
 1ea341fd160b6befddb8aeb4c3b5cf86 5876 tex optional 
latex-make_2.2.1-1.debian.tar.xz
 1dab01b61fe523f773897de843e1a9a6 785822 tex optional latex-make_2.2.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVrm77JZH3mN+x7dRAQiHHw/+J4axIPaFn2DCcKmKytAuLI7f+Nx0Yi1s
ZAQSFhCjMwVzvTXWw7MrDsrSUIszv5wgi41xX7cTjjYyJXalheKLI5q3CCKfMg4K
oQ8GAAmQr7bPgymLRP9g9dc+1jvG947nz1TyydsIQQT1umi4XZiTAEsSIiJe5jR7
d/UNGJ5Mzfo6oyd5ZSI+m3lvYnBN7z8/34oqOnJu017nHrDXMV/wnuxOlAQ+IOP1
RS8fpJKO4V08K1U4nd6omNx7osjDen0WxZR1oSyQfSRc/xUuxkew4DJjqlJ5rXRS
Ralig3QUD+B7Mg4aayXTA2DwIp1DgH7l1YZlbSln3QVG/6sQbniWtQUMBixI604K
91JbSieo3ThtuPrdkQjUswOGAUIZ9oKFS3aMU6eXwvRYjNmmiAIhRi6RxKRdbM/a
nan9RC5EUSIeK+wslKmeuP+HRsofUYBroDxuASlXCgrnDEjIwVSMOdPu3cSLIfhK
Dz/bHgucGhi708dENO3A/TUtmLVzQ1YZENGdZQ3L6C7sCcJH2sRh7xyg8UgduEdx
mum3i33q/1M1DISoXQv2wnU4ItUFErADX6VICgeM0hVYlxhDImj27VrsLcCEpxSG
EGjrtvLRPN+gZCL9qfoh8FJtqNNSmY/w93+r082HhToetM36HGp0qNwwJaEzbadw
YXXBzMJslJg=
=iZNy
-END PGP SIGNATURE-



Re: How to change config script for multiarch?

2016-02-09 Thread Vincent Danjean
Le 10/02/2016 08:12, NOKUBI Takatsugu a écrit :
> I am a maintainer of chasen package. It contains chasen-config, it
> work as pkg-config like but it's a single script.
> 
> Latest lintain reports:
> E: libchasen-dev: old-style-config-script-multiarch-path 
> usr/bin/chasen-config full text contains architecture specific dir 
> x86_64-linux-gnu
> 
> But I want to keep libchasen-dev as Multi-Arch: same. Would you tell
> me finding the correct way to change the script?

  I do not think there is a generic answer. But, if your script is
simple, perhaps just replacing hardcoded directory names by the output
of "dpkg -qDEB_HOST_MULTIARCH" will be enough.
  This would probably be an debian-specific arch because the script
will then do some assumption about the layout of the software (instead
of relying on the $libdir, ... autoconf variables/substitutions) and
it will use the Debian specific dpkg-architecture tool (your package
will need to depends on dpkg-dev)
  To be Multi-Arch: same, the package must have the same contents in
all architectures.

  Note that this won't solve cross-compilation issues. For this, unless
specific needs, a convertion to pkg-config style is probably the
easiest/rightest (but it is better to do it with upstream). In this
case, the chasen-config might be rewritten with internal calls to
pkg-config to avoid to duplicate the information and still keeping
the old interface.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted latex-make 2.2.2-1 (all source) into unstable

2016-02-09 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Feb 2016 18:32:15 +0100
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.2-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.2-1) unstable; urgency=medium
 .
   * New upstream release
Checksums-Sha1: 
 d2547a2bb418868e49a507d654314eb4fd6b8fc8 2041 latex-make_2.2.2-1.dsc
 32b68cc26a4e854f84617f1951a6caf512f8a1f4 66581 latex-make_2.2.2.orig.tar.gz
 ebae98bb85f518cf6cd0b319d475c9eab3495ffb 5880 latex-make_2.2.2-1.debian.tar.xz
 be5ce358a29367e08d74c37014135063f0a4b643 774602 latex-make_2.2.2-1_all.deb
Checksums-Sha256: 
 18517efbc3210cfbd6bfab0f53708b2db040e97cacf58fdbbd558de73ccbd124 2041 
latex-make_2.2.2-1.dsc
 8122be2409eaff5d0061d6a1ec9500f38bf14a0c3ab7c6b903ebb31697e646d9 66581 
latex-make_2.2.2.orig.tar.gz
 9d9b1e01af2bd882a15489641626299ffe5154c230121f9201547114c1e709a6 5880 
latex-make_2.2.2-1.debian.tar.xz
 2c79d6257aa5725d44000514079d8321f493243dbf29defbc083527839f6933f 774602 
latex-make_2.2.2-1_all.deb
Files: 
 fca92ebae66b71ee733a909be2ae8da4 2041 tex optional latex-make_2.2.2-1.dsc
 184abbe6c017c5c6bf0318c1a0b2b06b 66581 tex optional 
latex-make_2.2.2.orig.tar.gz
 304d598a8bef3a461b40f08e1d9e0f11 5880 tex optional 
latex-make_2.2.2-1.debian.tar.xz
 928e7abf9159371ee387401e802af997 774602 tex optional latex-make_2.2.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVroj6ZZH3mN+x7dRAQh5WRAAh1/MWg6YheljejvVxR57osrR0wQQWsBl
jhcuSJg2llOLPqPppZccMvaahkvQtJgweILJnZoEzoo0ARB9y7QU9eyXI3gCQKcI
7ZkHmMIC2ChOacbyKmUNVB3k4OKfGjV+jcJbNcgAjEKAlahTH2gXmoHZT4d5OnoK
KomNhnph27DR7rqI86K22leLiVhxD6OVBdFhk6oZWgS1SxEyt9jAEsZkVWBIOMHV
mK9cQ9bHvdmaGxes8N5MgnsMLaowFzOfVVukUFcfdhF4Oe/SRjrbdZ5Duke0h709
PFaZHcE3BOV7NYTdbscIW7ANlu+EPQDHvrnFom0rygj/r+68OIu5cbfqnLQDbI1v
0caTPaxUiO+4AZDPZ5+Hy0SMEvhdklHYnqj01GznhV5bnhJ9E38Rqofer6N6zgBP
G/I71CqRFcXlTQty/6H43YF5+LYVkHBTc1XbXuxIbLhqPMhqi95sZ+h72gGP6RcE
3iVWvHo3VdawdOkfFNGefRmh8NHKItHr6DRYch/ixg3eKghNsxnmVnGbwFEBjKrh
+89y8IKTYqXjvQJwZHn20Gdj3ShJI5BZF7vhq/YAfZ+y9MkG+Dy5qDuUL0zRC06I
AIpuhy3csKJ+xnHPRE4MR+O9kmnegbAeuxvZJqeWMuGElbPoNr9QOpSleO31f8ef
vCMFWPOzhQc=
=XarT
-END PGP SIGNATURE-



Accepted latex-make 2.2.0-1 (all source) into unstable

2016-02-08 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Feb 2016 00:23:04 +0100
Source: latex-make
Binary: latex-make
Architecture: all source
Version: 2.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 latex-make - easy compiling of complex (and simple) LaTeX documents
Changes:
 latex-make (2.2.0-1) unstable; urgency=medium
 .
   * New upstream release
 + add the 'LaTeX-Make-local-install' target
   * Rewrite debian/copyright in machine readable format
   * Apply "cme fix dpkg" suggestions
   * Refresh patches and build system
Checksums-Sha1: 
 d3d33f685efef01683ab60ea92219b2e5cdb5bd1 2041 latex-make_2.2.0-1.dsc
 40d2c42ae23eabf4385d1aeaa6169e29403f915f 65655 latex-make_2.2.0.orig.tar.gz
 372393864a8d98fa3503516723672cd409ad36f4 5864 latex-make_2.2.0-1.debian.tar.xz
 e1bb1f0413fd3c8520641e25cd769825be65ee25 785772 latex-make_2.2.0-1_all.deb
Checksums-Sha256: 
 b71586c9a57b7c7cc8c9b6f90427c6f4a6b8430ab2ca44793d9948d072afe9a8 2041 
latex-make_2.2.0-1.dsc
 a0e20fc318ea7473b194b94c3a8ce6fa4c769371a87c07b884c03630d6935971 65655 
latex-make_2.2.0.orig.tar.gz
 fae64452279a3576d6e49b207f40ba7368fd3b39235a7c89f1ef8b215797b7c2 5864 
latex-make_2.2.0-1.debian.tar.xz
 414b2504abd9993817a344cb8315be665c221d5573d280735aeff6b811f28f11 785772 
latex-make_2.2.0-1_all.deb
Files: 
 542174115dedeef11aa8d0b3685d86ca 2041 tex optional latex-make_2.2.0-1.dsc
 99eba55538ee8377e29c18025e485418 65655 tex optional 
latex-make_2.2.0.orig.tar.gz
 5ab9d1b23b967e16981e3181f3fdc38b 5864 tex optional 
latex-make_2.2.0-1.debian.tar.xz
 7aaa5957a1dd8b68939741475ddd70ba 785772 tex optional latex-make_2.2.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVrk0s5ZH3mN+x7dRAQjk8Q/+LEGMKu4JaSUj8OsqvmF+nrW3FcHvUP90
SSFxpA5Emrm9b7YJkVP6Z+hZ1TmeyGzTlvh6R9F44pV6adMXoFECaHfYLdSFy4y0
VscYfu89G23O2aZLN+nad8Z4M90OfTEkAbcP2/GKo9lpeqjXE0PTwEi6TLdBD9sV
vBlBn2SgwteROe9DWPhVqz7xcm75aq9D2a6oWXBULQT6Ho0s/pebAW2v5mViFvBe
Xg1D8HprvDvwvXE//rT3gWsXfJb3b261UmZhszNKU4xsYa/poAHFytKIaYYHcImy
Q0ifErrqfcBYpdxefc66xAuU3UFEF1icSXwuwk9mApewIopI0fDU/scp96Gabno+
S1Ya9o3T3pwdEMoZo5+cRb8lA4zhjWkvIDN5VQ3KL19YzaVyPD4PAwA62BGdL1GM
3FaSOht+Ir6CRYUFqoPcZnDHyWUV5Lh2E8nfsSP3GVZNYm9lxLFn9Ba5V8I/QQmW
FA5ONTevwl+sFUTTw5ZUs+SohGbHA2iK5vrdZv8dsEoTfXsjym6+7Iah3r6oPf8t
/77tmO+UEXsu88bUcX6YhJQ+zk4gVMf94gtimJgP2WiH5FhGuFYF4AibsMTAvtBR
+/ojJW1lBzOIAER6xu+rNbV4WgmiArAo2Rg9erZX7dFFDdfs/O7xC7XdrwwY1wUG
yqadzpTp+2M=
=UQzH
-END PGP SIGNATURE-



Accepted freshplayerplugin 0.3.4-1 (amd64 source) into unstable

2016-02-04 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 04 Feb 2016 21:58:41 +0100
Source: freshplayerplugin
Binary: browser-plugin-freshplayer-pepperflash 
browser-plugin-freshplayer-libpdf browser-plugin-freshplayer-nacl
Architecture: amd64 source
Version: 0.3.4-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 797827 805263 809432
Description: 
 browser-plugin-freshplayer-libpdf - PPAPI-host NPAPI-plugin adapter for 
libpdf.so from Chrome
 browser-plugin-freshplayer-nacl - PPAPI-host NPAPI-plugin adapter for Native 
Client from Chrome
 browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for 
pepperflash
Changes:
 freshplayerplugin (0.3.4-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #805263, #797827)
   * Implement the update-alternatives system for flash-mozilla.so
 like flashplugin-nonfree (Closes: #809432)
Checksums-Sha1: 
 b19c604924269173d80df401fd15947ead14cc11 2590 freshplayerplugin_0.3.4-1.dsc
 765785671a636b14824d633e074ee911205405ac 768318 
freshplayerplugin_0.3.4.orig.tar.gz
 5938b18f8fdd540d720ab99a5fbfc40bdedc38c5 9060 
freshplayerplugin_0.3.4-1.debian.tar.xz
 54b39aa6b138fc9e57933e2edaa35ed3cd6af0b5 3832214 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-1_amd64.deb
 b6f0798a3c312fb10a8d23fbf00c335f2aa1f4ff 330364 
browser-plugin-freshplayer-libpdf_0.3.4-1_amd64.deb
 2433ffee1ce77edd406e0657e120f69ec341631e 3809462 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-1_amd64.deb
 d23757e48b4fac2d12f87b25cd76d2dce6d44284 327628 
browser-plugin-freshplayer-nacl_0.3.4-1_amd64.deb
 51277ad240af571d142a19878a28434f353f1008 3811454 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-1_amd64.deb
 a9d0f5dd6fa24171e78f5a39359efc60a0533419 356824 
browser-plugin-freshplayer-pepperflash_0.3.4-1_amd64.deb
Checksums-Sha256: 
 a11bce035bf2d6d9f95aeb30158d9d4c68fff7bb069d6cdc92a39aa75925ded1 2590 
freshplayerplugin_0.3.4-1.dsc
 6f0009e64c59caa5c674b63eabb709ba8da6c85fc7cd45a1d66392e3a24da9a5 768318 
freshplayerplugin_0.3.4.orig.tar.gz
 ff1cd2a2811cc97c5e1fab8e70ddc03c7ed2e32293b11f59c40a06ea4d6eab07 9060 
freshplayerplugin_0.3.4-1.debian.tar.xz
 784ceed8d3113a4a2193f6ac941caf38b62cc6f9ab84b65ac93d9fd6e63c69d7 3832214 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-1_amd64.deb
 4118b65594c9db8bf567b56a3818153fc499556d1fd9f4599a7a8a59835616a7 330364 
browser-plugin-freshplayer-libpdf_0.3.4-1_amd64.deb
 1556d3c700b2a56e298af820ea5f74cf391b916a1d5aae081cdeb1610e1ca3a8 3809462 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-1_amd64.deb
 5fca6ba2f1d5838980dd059e58cbfbcfbf92cf1f71a1790ff8d05f801d55ef42 327628 
browser-plugin-freshplayer-nacl_0.3.4-1_amd64.deb
 a97d085c72523aac4686fba2a52e94a9967440570741d92dd4af98c1ee4ed749 3811454 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-1_amd64.deb
 10ebe36899bb8bc38f9b21550dcfae6e614272e941f40101d4f671fd8f3ded72 356824 
browser-plugin-freshplayer-pepperflash_0.3.4-1_amd64.deb
Files: 
 1847dcff0c6bfb2e4cc33dc3f1f86cfd 2590 contrib/web optional 
freshplayerplugin_0.3.4-1.dsc
 e5d5df12de8dbb1caf4e349b4e4ae520 768318 contrib/web optional 
freshplayerplugin_0.3.4.orig.tar.gz
 2715db4b44ed30baa9db48fb4fcc8cb0 9060 contrib/web optional 
freshplayerplugin_0.3.4-1.debian.tar.xz
 5b731390f92fd5b3199d7da0ed7ff73b 3832214 contrib/debug extra 
browser-plugin-freshplayer-libpdf-dbgsym_0.3.4-1_amd64.deb
 5ab29a7b8cf8dc8bb4d28da8b16b0102 330364 contrib/web optional 
browser-plugin-freshplayer-libpdf_0.3.4-1_amd64.deb
 9151cd5195a9d02337849cb94d738251 3809462 contrib/debug extra 
browser-plugin-freshplayer-nacl-dbgsym_0.3.4-1_amd64.deb
 5b082c47232c6af32317dcf2734867ec 327628 contrib/web optional 
browser-plugin-freshplayer-nacl_0.3.4-1_amd64.deb
 7cd9ad981005962c77af42a2fa9ef27f 3811454 contrib/debug extra 
browser-plugin-freshplayer-pepperflash-dbgsym_0.3.4-1_amd64.deb
 d782236aedd1e4ec0cf8bdfa3ebf4d7b 356824 contrib/web optional 
browser-plugin-freshplayer-pepperflash_0.3.4-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVrPaq5ZH3mN+x7dRAQhaYw//TpOLautP0vdtNFOvMGxAleONNudyF6DH
T7BRf7ffgsx9qLeRua5OYrg5D/yRgSbZV0FSJWJO1rDVgU5TUGh7q8n1WE4VIXg3
weLMxyCejueWi/Edxqp0Hz4ILpU0y7c7gP9o2rnnIcS6HBSTVF7QpfmaPB5YVDqa
GgsqibU/8Ya5w5nLJ43mXu1cLG8eR0khO7HOtQRHz8VIep4TXr9YEgEgZ2pZC/Wf
5/RRwuoDDAdJQlW+PK4GNnojTlupSR8edcRo5+tWHMj7+hE+CkirEhbuf48LuDVS
g9RKbzdI+L4gqTcGlI5ydLwKILNMMbFgxauPRDyvyBDPosal1U2Cxw/5eTAQ+itY
fwYWeWfZF0CeJmT9ehLVqpCBaP2ZNt/8rItuGYjgOv+gqHAXpz2nlv7n86kLTa6n
RDx8/H9kTJ3scjxLbmyw3YUiY/EKUarXotjICgrnGhADBwp37rBd+WQksojTvPbA
ph+4vlmvvCVJjGsEl1R6aZdRBYRIaR5tAHhOOtQxi3t+iZBF/zp7BMqE6/fTdzHk
o8h5QUKN04bHayoTFBh3XztOekSdOwH4OAwxP02mIlWFYNbHonnKafsnnML11I+j
VDbrPvBsXsDIEM3AutB+kDWgMBqBD6fyI2bWDzIOzh5m34xQFAN9KsZGnsIDfD95
xINKQ7GJ6Oc=
=CYlp
-END PGP SIGNATURE-



Bug#813374: general: Menus and window popup does not work after recent upgrade

2016-02-03 Thread Vincent Danjean
Le 03/02/2016 12:31, Thomas Goirand a écrit :
> Vincent,
> 
> This sounds like issues with your window manager, since you mostly
> complain about issues with window placements and dispositions. Just to
> be sure, you're using XFCE, right?

Yes.
But is the WM involved in (the placement of) application menus ?
If yes, xfce seems indeed a good target.

  Regards,
Vincent

> Cheers,
> 
> Thomas Goirand (zigo)
> 


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Bug#813374: general: Menus and window popup does not work after recent upgrade

2016-02-01 Thread Vincent Danjean
Package: general
Severity: important

  Hi,

  I'm reporting this bug against the 'general' package as I've no clue about
which one should be the good one. From my point of view, this can be:
- the linux kernel
- the xserver-xorg core
- the xserver-xorg-video-intel driver
- the xserver-xorg-video-nouveau driver
- the GTK (or other widget) library
- ... ?

  I hope someone will be able to reassign this bug to the correct package(s).


  I've a laptop with dual video cards: Intel and NVidia.
I mainly use the Intel one (better for battery) but the external DP output is
only wired on the NVidia card. So, when I want to use a large external screen,
I need to run something like:
xrandr --setprovideroutputsource nouveau Intel
xrandr --output DP-1-3 --auto --primary --output eDP1 --auto --right-of DP-1-3
  The first command enable the NVidia card and allows the Intel card to send
data to it (the randering will always be done by the Intel card). The second
one enables my external monitor (DP-1-3) as the primary monitor and the
integrated display of the laptop (eDP1) as a secondary monitor.
  When disconnecting the external monitor, I use:
xrandr --output DP-1-3 --off --output eDP1 --auto --primary
xrandr --setprovideroutputsource nouveau 0x0

  It worked well. I was able to move window between the two monitors.

  But, after the last upgrade (see below the upgraded packages), I suffer
several problems after I enabled the external monitor:
- window from iceweasel and icedove opened with a very small size (unless
  before where they opened at their last size) [but correctly on the primary
  external monitor]
- popup windows from iceweasel and icedove (to ask for password or passphrase
  or to ask to restore or not the session) all opened on the laptop monitor in
  a small size (wheras the mouse was on the primary monitor)
- more problematic (hence this bug report), menus in iceweasel and icedove do
  not draw themselves. The heading is selected but nothing appears below. It is
  also true for menus from their toolbar (ie 'Tags' selector in icedove for
  example)
- for emacs, if the window is at a high where the secondary monitor have
  pixels, the menu is opened on the left of the secondary monitor! Else, the
  menu do not open at all.
- other programs work correctly (at least the 'Applications' menu of XFCE that
  I use as VM, menus from Thunar, menus and windows from GIMP, ...)
- for problematic applications (at least Iceweasel, Icedove and Emacs), moving
  the window onto the other monitor (without closing it) allows menus to be
  correctlt drawn (on the other monitor). When the window is moved again onto
  the primary external monitor, the problematic behavior occurs again.

  So, if someone have an idea of what happens, of where (in which softare) is
the bug, or just want additionnal inputs, just say so. For now, this is really
annoying.

  Regards,
Vincent

In attachement, the result of
$ cat /var/log/dpkg.log | grep upgrade> /tmp/upgraded.txt
(ie 715 upgraded packages)

-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'oldstable-updates'), (500, 
'oldoldstable'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armel, mipsel

Kernel: Linux 4.4.0-trunk-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
2016-02-01 12:36:58 upgrade bsdutils:amd64 1:2.27.1-1 1:2.27.1-3
2016-02-01 12:36:59 upgrade coreutils:amd64 8.24-1 8.25-1
2016-02-01 12:37:03 upgrade debianutils:amd64 4.5.1 4.7
2016-02-01 12:37:05 upgrade dash:amd64 0.5.7-4+b1 0.5.8-2.1
2016-02-01 12:37:07 upgrade cme:all 1.009-1 1.010-1
2016-02-01 12:37:08 upgrade libconfig-model-perl:all 2.075-2 2.078-1
2016-02-01 12:37:09 upgrade libsoftware-license-perl:all 0.103010-4 0.103011-1
2016-02-01 12:37:09 upgrade libc-bin:amd64 2.21-6 2.21-7
2016-02-01 12:37:13 upgrade gcc-5-base:armel 5.3.1-6 5.3.1-7
2016-02-01 12:37:13 upgrade gcc-5-base:i386 5.3.1-6 5.3.1-7
2016-02-01 12:37:14 upgrade gcc-5-base:amd64 5.3.1-6 5.3.1-7
2016-02-01 12:37:14 upgrade gcc-5-base:mipsel 5.3.1-6 5.3.1-7
2016-02-01 12:37:14 upgrade libgcc1:armel 1:5.3.1-6 1:5.3.1-7
2016-02-01 12:37:15 upgrade libgcc1:i386 1:5.3.1-6 1:5.3.1-7
2016-02-01 12:37:15 upgrade libgcc1:amd64 1:5.3.1-6 1:5.3.1-7
2016-02-01 12:37:15 upgrade libgcc1:mipsel 1:5.3.1-6 1:5.3.1-7
2016-02-01 12:37:16 upgrade libquadmath0:amd64 5.3.1-6 5.3.1-7
2016-02-01 12:37:16 upgrade libquadmath0:i386 5.3.1-6 5.3.1-7
2016-02-01 12:37:16 upgrade libgomp1:amd64 5.3.1-6 5.3.1-7
2016-02-01 12:37:17 upgrade libgomp1:i386 5.3.1-6 5.3.1-7
2016-02-01 12:37:17 upgrade libitm1:amd64 5.3.1-6 5.3.1-7
2016-02-01 12:37:17 upgrade libitm1:i386 5.3.1-6 5.3.1-7
2016-02-01 12:37:17 upgrade libatomic1:amd64 5.3.1-6 5.3.1-7
2016-02-01 12:37:18 upgrade 

Accepted owfs 3.1p1-1 (all amd64 source) into unstable, unstable

2016-01-18 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Jan 2016 20:03:41 +0100
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php5 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc 
owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php5 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-1) unstable; urgency=medium
 .
   * New upstream version
 + fix bugs for w1 kernel interface
   * Refresh debian/patches/*
   * Dump soname (as done by upstream for each new release)
Checksums-Sha1: 
 1c4f20a5e5349cec17a97b9f24d145bd5d952a3e 3031 owfs_3.1p1-1.dsc
 80892ca3e72fef2979b8f0a04db15fd24a2cbda6 1400962 owfs_3.1p1.orig.tar.gz
 e9dbfc3f4ce152260c9d1ee180d5619601ba9876 22400 owfs_3.1p1-1.debian.tar.xz
 622cbf82ea3f0529c851dfa0dda8d04a40e81158 1070290 
libow-3.1-1-dbgsym_3.1p1-1_amd64.deb
 3cb9bfb75276ad96f6276433eaec611b324b58f5 299486 libow-3.1-1_3.1p1-1_amd64.deb
 1717fa062495b892f945c5bfd389516b88dc 15828 libow-dev_3.1p1-1_amd64.deb
 083d8184c440cbe8532342e79ea889e94226e94d 41120 
libow-perl-dbgsym_3.1p1-1_amd64.deb
 80f612aa01842bd8cca446c8895206f5fcb7983c 19200 libow-perl_3.1p1-1_amd64.deb
 e28a067490e40bccf720f12adccd37a070c9642b 24466 
libow-php5-dbgsym_3.1p1-1_amd64.deb
 e0a28aa15d67ff22cdcef86882c6cb84be32e7f5 13156 libow-php5_3.1p1-1_amd64.deb
 234bbe3c8293a114d5e22614a1bc7e48fbcc32d0 19650 
libow-tcl-dbgsym_3.1p1-1_amd64.deb
 fdc21efe92bdc2ec24a93fe79115fc09726cbc49 19360 libow-tcl_3.1p1-1_amd64.deb
 598e50f2da4a224d2e7a38c52b5753645fa5dabc 14048 
libowcapi-3.1-1-dbgsym_3.1p1-1_amd64.deb
 5fd4bba809fd7be69e425089f847a4709309272c 10868 
libowcapi-3.1-1_3.1p1-1_amd64.deb
 4a00814ce776d8241ad245fbfbbdf56f6ae77954 45526 
libownet-3.1-1-dbgsym_3.1p1-1_amd64.deb
 fd381f762ca8d8093a591fe49a248a830dbf5227 24388 libownet-3.1-1_3.1p1-1_amd64.deb
 d380b482b4ce760476d99a4c4ce9d7de22d10987 14758 libownet-dev_3.1p1-1_amd64.deb
 21a74d72bae8d6e2a7b1256a4c7dd486ef07aac8 28314 libownet-perl_3.1p1-1_all.deb
 8d3f84b6117d1738b4a88abfc08cef82b5cb423f 16702 libownet-php_3.1p1-1_all.deb
 9ca5b96cdbe0069702c5cf04a8cfaffac7655b18 116414 
ow-shell-dbgsym_3.1p1-1_amd64.deb
 c6a447f5efeedf253e4b1e3fb33efdae974b4cc1 26838 ow-shell_3.1p1-1_amd64.deb
 3a07bfeaf259e32ccbaeb95cfef4cd4b09cdd244 27440 ow-tools_3.1p1-1_all.deb
 a1e83cd4e40f5aec1632ce17d613668b0c4f2120 15918 owfs-common_3.1p1-1_all.deb
 b981dd4b605384d23e4ded565de313bab071fbbb 7942 owfs-dbg_3.1p1-1_amd64.deb
 f2e7dc28aab24e2dd1637587742667805669c1c6 194788 owfs-doc_3.1p1-1_all.deb
 18e21af57ab509732969ac4dca79b503a5341d97 26628 
owfs-fuse-dbgsym_3.1p1-1_amd64.deb
 158e8ba90fb107d8790e2611050bbb63d1eb1375 19914 owfs-fuse_3.1p1-1_amd64.deb
 6e1a16887d842b573a8ac3dfe2834d29317c366e 7964 owfs_3.1p1-1_all.deb
 bff1a8d22a84e622bdc68a25c20444eee0b136b6 80384 owftpd-dbgsym_3.1p1-1_amd64.deb
 5aa2e0266fedacc5000a3a899e168fcbd989c175 41478 owftpd_3.1p1-1_amd64.deb
 39a5b48cacc72cf84b55d718b4d2fa0334c71f63 54330 owhttpd-dbgsym_3.1p1-1_amd64.deb
 2011a5d8b8df5577886fe6a60664479eb4f337e7 28964 owhttpd_3.1p1-1_amd64.deb
 a3d5d55f3c35ab0f7852e0b81bc67f93db504157 45328 
owserver-dbgsym_3.1p1-1_amd64.deb
 17e10926f3b59c8f02138ea1990874037399b659 28706 owserver_3.1p1-1_amd64.deb
 2e1fb362992cb0bf986a79b8340eca6ced632c12 30608 
python-ow-dbgsym_3.1p1-1_amd64.deb
 4a44c29541fcc06484a9266050c0b60e979f56a5 33084 python-ow_3.1p1-1_amd64.deb
 4734e8a06aa013ec46487eeb1584effcf1683e7c 15238 python-ownet_3.1p1-1_all.deb
Checksums-Sha256: 
 475251c806dd84efe4f120be34be85f816a86b40def70fa02299960d34044c74 3031 
owfs

Accepted owfs 3.1p1-2 (all amd64 source) into unstable

2016-01-18 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Jan 2016 22:42:14 +0100
Source: owfs
Binary: owfs-common owfs libow-3.1-1 libowcapi-3.1-1 libow-dev libownet-3.1-1 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php5 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc 
owfs-dbg
Architecture: all amd64 source
Version: 3.1p1-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libow-3.1-1 - 1-Wire File System full library
 libowcapi-3.1-1 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-1 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php5 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p1-2) unstable; urgency=medium
 .
   * fix kFreeBSD patch (upstream applied patch was not working with kFreeBSD)
   * enable avahi support in the package
Checksums-Sha1: 
 40e94d786fd303869386d39da4d1034bc1987ec0 3052 owfs_3.1p1-2.dsc
 0bbdcf16fa2140c98288d296c68964cd0e1fe313 22628 owfs_3.1p1-2.debian.tar.xz
 bcbaeb9ce8b8892d3fec28f407b97ce26df2cb5b 1098734 
libow-3.1-1-dbgsym_3.1p1-2_amd64.deb
 b191f7295bf97606d382e0e9c9e11a6365ec2f48 302378 libow-3.1-1_3.1p1-2_amd64.deb
 94bc7810e01c960ecc57f09053a7630776098327 15880 libow-dev_3.1p1-2_amd64.deb
 ac9b20449b76638820d06d7e2fa423f928ab3310 41238 
libow-perl-dbgsym_3.1p1-2_amd64.deb
 01005d6709264edfec3cbd409a8b21f8b9924a63 19246 libow-perl_3.1p1-2_amd64.deb
 c6b286577b3301bfec1d65af752c79a698871b6c 24620 
libow-php5-dbgsym_3.1p1-2_amd64.deb
 4848d883c7db409b78bf298cc4ddfbf248b14e5c 13198 libow-php5_3.1p1-2_amd64.deb
 072c879fb2c3b4907dcf2d29f2e9b7fc3d0f894c 19952 
libow-tcl-dbgsym_3.1p1-2_amd64.deb
 15c4cc5d349562282f4683d5775c241da8a67e17 19426 libow-tcl_3.1p1-2_amd64.deb
 849290bd2b16bacca6db731f5586d496de1d778f 14240 
libowcapi-3.1-1-dbgsym_3.1p1-2_amd64.deb
 dfcc21e66d0c50724a901ae576d76f6823eadbff 10932 
libowcapi-3.1-1_3.1p1-2_amd64.deb
 c1420bd8de5515770b17bc757b283a4bd324f764 45498 
libownet-3.1-1-dbgsym_3.1p1-2_amd64.deb
 6e6e42c48a6f62baf8ca4069716880dc1c16fb79 24434 libownet-3.1-1_3.1p1-2_amd64.deb
 63293421b938739e2eb9a2ac57ea56647a8fbb89 14790 libownet-dev_3.1p1-2_amd64.deb
 cbf409496f02b3124e8015b941681eb600c15d7c 28376 libownet-perl_3.1p1-2_all.deb
 1e11dec5a11c3781c6c525e6c5f52e0d2ded3a6e 16756 libownet-php_3.1p1-2_all.deb
 86cdc9444ae2b55262789e30175ceec2d6a671c4 117700 
ow-shell-dbgsym_3.1p1-2_amd64.deb
 7436a5e606c58e634d997082ffd45c2eb7347fc1 26874 ow-shell_3.1p1-2_amd64.deb
 a7c36bcf9c1523f28ac3e3b8f9212da522d9fc2a 27496 ow-tools_3.1p1-2_all.deb
 44560b7c94055f97c2be0d5e67f05b38e133ed71 15974 owfs-common_3.1p1-2_all.deb
 e6ba57449d2fbd158a541b38313c29d9a4506284 7988 owfs-dbg_3.1p1-2_amd64.deb
 21572403c37058c1a44616931a120bea1b23398f 194798 owfs-doc_3.1p1-2_all.deb
 55d3ec90a00b4304e13cbd1f5d95b48256e6d4ed 26990 
owfs-fuse-dbgsym_3.1p1-2_amd64.deb
 e50dfb59a77af7d3fa3df749b778fd10e7ec142c 19934 owfs-fuse_3.1p1-2_amd64.deb
 2503f54030363c3478b7893ef3ef87ea4c16015f 8024 owfs_3.1p1-2_all.deb
 da3897263b1cb961eba9d17d15275aa568da363c 81100 owftpd-dbgsym_3.1p1-2_amd64.deb
 57e25edbd3cdac894e4df46e847e9c55c0c7146a 41522 owftpd_3.1p1-2_amd64.deb
 1200317facc7e28474eedacdf89ecb76e1d62aa2 55018 owhttpd-dbgsym_3.1p1-2_amd64.deb
 c86e0d1ab3dfc1ceca659dcd5511fdaffc1e8879 29004 owhttpd_3.1p1-2_amd64.deb
 4c1fb94923d473d8ec195661fdb930ed034e1e48 46214 
owserver-dbgsym_3.1p1-2_amd64.deb
 b19ee3288b42c4217b983f438bb0d788729f8875 28734 owserver_3.1p1-2_amd64.deb
 8cd6e47586c03e77bbc74275d37cd1ed4957085f 30752 
python-ow-dbgsym_3.1p1-2_amd64.deb
 af7ed9689e7cd6c7d5d453671246c4a5e0cf2044 33144 python-ow_3.1p1-2_amd64.deb
 3bb28ee2a94a3d73af930d2ca377432910971e9b 15292 python-ownet_3.1p1-2_all.deb
Checksums-Sha256: 
 6962da299c44fe661e7e3415a3dbdfee888f35cf940b7f60b0aba406e16c0feb 3052 
owfs_3.1p1-2.dsc
 625ee529ac9420d35726a693d2e9e49078622197502b5152478ffa1e532e993b 22628 
owfs_3.1p1-2.d

Re: APT 1.2 preview uploaded to experimental -- please test

2016-01-13 Thread Vincent Danjean
  Hi,

Le 13/01/2016 00:18, Julian Andres Klode a écrit :
> On Fri, Jan 08, 2016 at 10:13:51PM +0100, Julian Andres Klode wrote:
>> Good moo,
>>
>> I just uploaded APT 1.2~exp1 to experimental. This release includes
>> the following highlights:
>>
>> * Automatic removal of debs after install for apt(8)
>> * LZ4 support
>> * Recompression of indices
>> * Parallel rred
>> * Further 15% performance gain in cache generation
>>
>> It should hit the archive with the next dinstall run.
>>
>> It will be uploaded to unstable in the coming days, we only want to
>> get some testing and fix some other bugs from unstable first.
> 
> There have been no reports of regressions compared to 1.1, so we'll
> probably go ahead with an upload to unstable *this week* (Friday
> maybe).

  Sorry, I found one (regression).
Before "apt-get update" takes about 20s on my system
After "apt-get update" takes more than 5 min on my system...
Details in the bug I just filled (#810898). It is linked to the
use of compressed indices advertized with this release.

  That said, thank you for the big improvments on APT you did.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: Upcoming version of apt-file - using apt-acquire and incompatibilities

2016-01-13 Thread Vincent Danjean
Le 12/01/2016 23:14, Niels Thykier a écrit :
> Please have a look at:
> 
>  * man apt-file
>  * The example config in /usr/share/doc/apt-file/examples
>- Let me know if they work for you or not.

Yes, it works. Many thanks.
I did not know the "#clear" directive but I added one more:
#clear APT::Update::Post-Invoke;
It avoids debtags to be run for more than 5 min... (see #810898)

  Regards,
    Vincent


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Accepted owfs 3.1p0-2 (all amd64 source) into unstable

2016-01-12 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 12 Jan 2016 09:21:20 +0100
Source: owfs
Binary: owfs-common owfs libow-3.1-0 libowcapi-3.1-0 libow-dev libownet-3.1-0 
libownet-dev owserver ow-shell ow-tools owfs-fuse owhttpd owftpd libow-php5 
libownet-php libow-perl libownet-perl python-ow python-ownet libow-tcl owfs-doc 
owfs-dbg
Architecture: all amd64 source
Version: 3.1p0-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 810450
Description: 
 libow-3.1-0 - 1-Wire File System full library
 libowcapi-3.1-0 - 1-Wire File System C library
 libow-dev  - 1-Wire File System (development files)
 libownet-3.1-0 - owserver protocol library
 libownet-dev - owserver protocol library (development files)
 libownet-perl - Perl module for accessing 1-wire networks
 libownet-php - Dallas 1-wire support: PHP OWNet library
 libow-perl - Dallas 1-wire support: Perl5 bindings
 libow-php5 - Dallas 1-wire support: PHP5 bindings
 libow-tcl  - Dallas 1-wire support: Tcl bindings
 owfs-common - common files used by any of the OWFS programs
 owfs   - Dallas 1-wire support
 owfs-dbg   - Debugging symbols for the OWFS packages (transitional package)
 owfs-doc   - Dallas 1-wire support: Documentation for owfs
 owfs-fuse  - 1-Wire filesystem
 owftpd - FTP daemon providing access to 1-Wire networks
 owhttpd- HTTP daemon providing access to 1-Wire networks
 owserver   - Backend server for 1-Wire control
 ow-shell   - shell utilities to talk to an 1-Wire owserver
 ow-tools   - tools to monitor or inspect a ow-server link
 python-ow  - Dallas 1-wire support: Python bindings
 python-ownet - Python module for accessing 1-wire networks
Changes:
 owfs (3.1p0-2) unstable; urgency=medium
 .
   * apply/fix 'cme fix dpkg' notices
   * Switching to libusb 1.0 (Closes: #810450)
   * enable ddeb instead of the manual owfs-dbg debug package
Checksums-Sha1: 
 04b4b1e3096722d21c2ba3d22954731819c8f82e 3031 owfs_3.1p0-2.dsc
 784e5a850f2a9463a8213051fa525d7c8656cfb8 22788 owfs_3.1p0-2.debian.tar.xz
 e3a13096791fe11d359f8d4c675163a60b319dc2 1056928 
libow-3.1-0-dbgsym_3.1p0-2_amd64.deb
 0f01c8b20c7a0922a68bd990bffd25bb02a9574c 295546 libow-3.1-0_3.1p0-2_amd64.deb
 e5044575d74d029cbef9b24289c3b82350c91216 15760 libow-dev_3.1p0-2_amd64.deb
 e41c68b9adcbe693cc49c1ccddb3871585cf0d9e 41146 
libow-perl-dbgsym_3.1p0-2_amd64.deb
 7422aea89f6b0c5e0359ac3738d1b913b23aa629 19138 libow-perl_3.1p0-2_amd64.deb
 25a35df41da2d4c81f6910ad13bfa790210e509f 24534 
libow-php5-dbgsym_3.1p0-2_amd64.deb
 8cf2aa79ef390ffd87701d57c096df1c26b7 13076 libow-php5_3.1p0-2_amd64.deb
 03a1ea799e8e6cfdfc6cf0ea6b328eb0a1a90cba 19556 
libow-tcl-dbgsym_3.1p0-2_amd64.deb
 23d1f0ecc8fed0f3aa1269bdca7d89ea37a2298f 19290 libow-tcl_3.1p0-2_amd64.deb
 9aebb70cdc8c1e651f8d3c12ce0cd4f99bf1395b 13946 
libowcapi-3.1-0-dbgsym_3.1p0-2_amd64.deb
 7b6230d04c6af9c1f618f88d5a43a2bcd60ae3c3 10812 
libowcapi-3.1-0_3.1p0-2_amd64.deb
 6a259e691c256711576b1d8c0e41d2287d088c0e 45492 
libownet-3.1-0-dbgsym_3.1p0-2_amd64.deb
 056ce7d909a6f74e739918c95b3d179deb5c5857 24342 libownet-3.1-0_3.1p0-2_amd64.deb
 4348df8285aa216b9650146b22d206fbecc4922d 14700 libownet-dev_3.1p0-2_amd64.deb
 865fd5c490795aaadac8fddf62f8b10aa044951e 28250 libownet-perl_3.1p0-2_all.deb
 1bc1a209d40070991ef7e92c642b37d3fc73becf 16640 libownet-php_3.1p0-2_all.deb
 7affba94365fea9c40bfd0c66d318d4662ea21c2 122096 
ow-shell-dbgsym_3.1p0-2_amd64.deb
 5466947e4270ea7fa82735efc7fe5d6eb6fec836 26680 ow-shell_3.1p0-2_amd64.deb
 bca34a167f39c75b4abc587751a26a5f12571153 27374 ow-tools_3.1p0-2_all.deb
 7fac38f3478338f49427c912d3b2ea7ab09d8c61 15858 owfs-common_3.1p0-2_all.deb
 67aec780651714614cd31e011d3da39c46c77e9b 7874 owfs-dbg_3.1p0-2_amd64.deb
 f41c4a4ca2de23d27a35abe7b0acf20390223216 194302 owfs-doc_3.1p0-2_all.deb
 7d3da840eec2d8bdb0cafd63a5c5b12073aaef52 26216 
owfs-fuse-dbgsym_3.1p0-2_amd64.deb
 00598cd4c77ef44d37c8946e6022a02041f403f8 19794 owfs-fuse_3.1p0-2_amd64.deb
 9586f6ccbf83c8c757788d382b9aa2e8ce09796a 7900 owfs_3.1p0-2_all.deb
 1af5bf3c3647e681a317f3b6aaebc1c71436ea6d 80248 owftpd-dbgsym_3.1p0-2_amd64.deb
 636b57b01da8493ca50288ce8a43a7899bab2e0f 41374 owftpd_3.1p0-2_amd64.deb
 ecfacbdbaae9aaeedba29456860c1930cf9a4b90 54272 owhttpd-dbgsym_3.1p0-2_amd64.deb
 baa5939090b609ed058896ef97fd8f7d4e4839b6 28914 owhttpd_3.1p0-2_amd64.deb
 a1f443f55d3450976fd1763b7de935091f7d6d71 45302 
owserver-dbgsym_3.1p0-2_amd64.deb
 a1c1b403d0afddb6e5a9390bde56488309694982 28652 owserver_3.1p0-2_amd64.deb
 e9b4611439aea8fff8feee60c5aba059d7955cdd 30698 
python-ow-dbgsym_3.1p0-2_amd64.deb
 0fdd48a843d9ae69eeac5c1213d5fca7efd6d4b4 33048 python-ow_3.1p0-2_amd64.deb
 766c387180ee7d40c815679af604161cfcb57abf 15168 python-ownet_3.1p0-2_all.deb
Checksums-Sha256: 
 cc547bc53e651870c39b2c12aa37bee5e5b77fc686d5ecee167bc8999f5cbbbd 3031 
owfs_3.1p0-2.dsc
 9814d74d21dfd234e4554cc05a393e3c171da49ec83ab469eb30bbe5f4

Accepted picard-tools 1.138+dfsg.1-1 (all source) into unstable, unstable

2015-12-20 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 Sep 2015 11:15:42 +0200
Source: picard-tools
Binary: picard-tools libpicard-java libpicard-java-doc
Architecture: all source
Version: 1.138+dfsg.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 798051
Description: 
 libpicard-java-doc - Documentation for the java picard library
 libpicard-java - Java library to manipulate SAM and BAM files
 picard-tools - Command line tools to manipulate SAM and BAM files
Changes:
 picard-tools (1.138+dfsg.1-1) unstable; urgency=medium
 .
   * New release from new upstream location (github). Closes: #798051
   * Full reorganization of the packaging
Checksums-Sha1: 
 5f6147ffea1de74bd0c3800820fe259be4404141 2414 picard-tools_1.138+dfsg.1-1.dsc
 00f0f2046cb4dad6d3e78040e879d1e6b256bc9a 3226964 
picard-tools_1.138+dfsg.1.orig.tar.gz
 e63beed8a59fa404974511720d4ad17e67c17980 9364 
picard-tools_1.138+dfsg.1-1.debian.tar.xz
 5904f0d1adacdbc5d955e57dbdf26c423febbf25 406872 
libpicard-java-doc_1.138+dfsg.1-1_all.deb
 f9a6d99fdcb9441c0aea91f9331f88e272613fb0 459876 
libpicard-java_1.138+dfsg.1-1_all.deb
 d63d195964cda633f9d571d089550db5df5d3238 5688 
picard-tools_1.138+dfsg.1-1_all.deb
Checksums-Sha256: 
 8ac68cfff1005f9dafe3c91948069be6e8803c5a8479e534b2ae8c5bab891670 2414 
picard-tools_1.138+dfsg.1-1.dsc
 39b39b5bda22eb27ef96c3865e60b2f1719627982158295bdd4a929bf27c0f8d 3226964 
picard-tools_1.138+dfsg.1.orig.tar.gz
 108885d116db02bb3c48a344a3b607edd51722d6119d731e3ed09826103e0c37 9364 
picard-tools_1.138+dfsg.1-1.debian.tar.xz
 07429de6993617dd58011173a19ca62ba0fc002c35f81e65c01603b9dd31 406872 
libpicard-java-doc_1.138+dfsg.1-1_all.deb
 40c1fe760517805d35864d85ed742b80f162949a8c93d9f6c9b4cf5965b7 459876 
libpicard-java_1.138+dfsg.1-1_all.deb
 092dc63ddfc62636c3ab276b2b090937c0668ad89aec95ef123f6dadf440c7c3 5688 
picard-tools_1.138+dfsg.1-1_all.deb
Files: 
 232957a5bcd755fc5603e41d92ebc86e 2414 science optional 
picard-tools_1.138+dfsg.1-1.dsc
 08a9db65ee8ad0592ff4c42e12e8708d 3226964 science optional 
picard-tools_1.138+dfsg.1.orig.tar.gz
 edc01f6c1d4702bfe7639494e708fee2 9364 science optional 
picard-tools_1.138+dfsg.1-1.debian.tar.xz
 2f5d8a0f3acb6f8644137b2ea60e11b1 406872 doc optional 
libpicard-java-doc_1.138+dfsg.1-1_all.deb
 b482baaf86d4d99b4d91ee5e36559411 459876 java optional 
libpicard-java_1.138+dfsg.1-1_all.deb
 a3d47713efb76683c64f4ca21b45525d 5688 science optional 
picard-tools_1.138+dfsg.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVnXJWZZH3mN+x7dRAQhGVA//SeFyVuqGtORr77rmqsAbUK4dFJyx03Qb
W5o1+RR7LT5zFTVNVZsAlhqm7NLA+pg/IjJe3OuA+rsdBcjEs+bLG/H31KR2xjW+
DBAoWJYKNqihx1yDrpxTsAPT7ptPI87gCao24Y9hQoTd1L15qbaqX5TE5GqyrjL4
hfug9uFzRWuoDkLBakbcODspg2vFTltLdQQBKHqimtNEQB9PMIClUC+FkNcUxz8B
QxHvDV3xYVLNSPSSIqMC+8vfKa65k9YkRE+gCMeBB41LMAkIASZ/8PlAjOq5o1C5
C0TEeVP7r9nVNLiOomJSdLStEErmB27Q/cPbuQau7pAgwEZxIyls/UyBUGGFltW+
nd25oDTjfxfI+zcjT5+bgB61PVQ+8C2Ygzvj1oeg5jQ8VSLPuVx2kmwqPbjc4sa6
DKJcppKO9EoUifRAafxuN5MimI1FWhh5TA6A3IRltG5d4KO3uiC85iY4R7H8jek5
wEZA/jX5fSOKm+9ed1lttVloVZyKpieh9bKYOc4Pjed9qX0PU3dh+Ha4PDSFvVWv
ulHj3CKzt4wt2pocRE6mchl9vbjxoW1UC4FtxVgsttkqOxMBYU1hbbdwqYSiexKW
DAu21BjQXJWJxM0JqbS9tVZnowAXuLX9rjl1sF6CW/4rHZkoMLo+ukq+FxTgYscp
Yy4J03HSLYQ=
=HpAx
-END PGP SIGNATURE-



Accepted htsjdk 1.138+dfsg.1-2 (all source) into unstable, unstable

2015-12-19 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 07 Sep 2015 01:31:14 +0200
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: all source
Version: 1.138+dfsg.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
Changes:
 htsjdk (1.138+dfsg.1-2) unstable; urgency=medium
 .
   * Fix version in MANIFEST
Checksums-Sha1: 
 281671bac08eaebc7b65b38b715c7249a08b6c7f 2294 htsjdk_1.138+dfsg.1-2.dsc
 7631abca41f3cb956c025629fa55b3ffa6b12c71 7016 
htsjdk_1.138+dfsg.1-2.debian.tar.xz
 b2cfe8aa738e8c30b84983b43c05c7e28b19ef90 756488 
libhtsjdk-java-doc_1.138+dfsg.1-2_all.deb
 d6805c86e18c0e5d4a0e0c8f739588aa792ddcfd 693298 
libhtsjdk-java_1.138+dfsg.1-2_all.deb
Checksums-Sha256: 
 fdb9947a4d2b2f8c6698f4df8cab082610c3fa3105719d9cd3cd9b2e17a8e1ca 2294 
htsjdk_1.138+dfsg.1-2.dsc
 7fd41fa81a4cc7aa0fa5392d2d05a864686385802178c4e8f6ee05a4dc2ed153 7016 
htsjdk_1.138+dfsg.1-2.debian.tar.xz
 5f4bea9c06409ec3447830a1ba78eadb510fec9d7010dd411c57e03d8b7e6a60 756488 
libhtsjdk-java-doc_1.138+dfsg.1-2_all.deb
 b8d3b93b03f639f7f60bedd53489e43bd4aa7a6ae5e4c5e2abd7f95d88a7f5a4 693298 
libhtsjdk-java_1.138+dfsg.1-2_all.deb
Files: 
 562aa2b4bc89f66023f04c5a239d5a3d 2294 science optional 
htsjdk_1.138+dfsg.1-2.dsc
 6e6ae60dcb1075d82cd647932dd7ffdb 7016 science optional 
htsjdk_1.138+dfsg.1-2.debian.tar.xz
 3377fee91544b85931cd67a61d94e14f 756488 doc optional 
libhtsjdk-java-doc_1.138+dfsg.1-2_all.deb
 3d5dc7a32a16c5b9087d8619430af6fa 693298 java optional 
libhtsjdk-java_1.138+dfsg.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVe1DyJZH3mN+x7dRAQjxAg//ccvbtZOToz/IAUwP2eAycetAWIndnkyN
i7fLxraYil6sCnPtXloyjveTYAiEENgza0BW2TuE29muBtPF6vR4sMLQBPIWOnVi
ZglheyHvPf6BRPy7fmOJWmwCbb2n9frA5j6BfjlN79nOC9IQU16JIG2btKKUXUoO
JYZMJa+k9KOf25iOngWWw2d4xql9UG2NMECBMtNcSkblLQurNkvf9fJM7VGHF6B1
uWUcb72psrsyt4DyQMwvATg7Ociw2ZjACdcitrjiStMUvcvoordzlxjIt/WT5iD2
RYA410gKfCDMgVSzwl5lFa94+y0IzkZYHsEYCMZ8Ntv+HQm1UgogClXRmE8IG/zr
PBPr9RWvf2+I7YLUk4ug7rwppQdJbCpcVwpTnwoQNIqgqlZhJ08gtDNPNWfZTLiZ
lplG4DPqDWd9591iX/TwXS03H/t6pyJP8s4cwf2dActuRH21LaOJQS6CgSGEW5ml
tIlCBtNhj4BA6VYc9AnsupNrRg1VtDwwxBEIyWqdcjlzCp6W8uakert/lQ1GRq0d
BIk0PXsSqlIz+uS/1g9bOVEMMZf+J1U6OsxeB0fAZu5sBLNeV+NrAkVMxXyPL7bV
ye0iFI6lLWuPWlYs4zhOhG6V3ayKZxnkk/nD2Ye2Prlj5PJ7I+ByvadGZxUqlEAP
RpiABCG+sWc=
=44F4
-END PGP SIGNATURE-



Accepted htsjdk 1.138+dfsg.1-4 (all source) into unstable

2015-12-19 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 19 Dec 2015 21:30:58 +0100
Source: htsjdk
Binary: libhtsjdk-java libhtsjdk-java-doc
Architecture: all source
Version: 1.138+dfsg.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 libhtsjdk-java-doc - Documentation for the java HTSJDK library
 libhtsjdk-java - Java API for high-throughput sequencing data (HTS) formats
Changes:
 htsjdk (1.138+dfsg.1-4) unstable; urgency=medium
 .
   * rename (again) the source package, as htsjdk (1.138+dfsg.1-2) passed
 the NEW queue. Both name (htsjdk and libhtsjdk-java) are acceptable,
 so continuing with the one accepted by the FTP team.
Checksums-Sha1: 
 85bcdd517ce0754d7a1a1c53a4c6de8ef5bc6df0 2257 htsjdk_1.138+dfsg.1-4.dsc
 f5376ab19c1c3eb4f8b4b7a9071e289d4553617b 7356 
htsjdk_1.138+dfsg.1-4.debian.tar.xz
 1743312008cf2a157be26de4eef85cc24368794d 749908 
libhtsjdk-java-doc_1.138+dfsg.1-4_all.deb
 507cc075513a2def58c9f55aab3008e624d6a376 693504 
libhtsjdk-java_1.138+dfsg.1-4_all.deb
Checksums-Sha256: 
 eeca5ba58fcdbe2ce1069977518c91c6d33bf4ebff78a94d83437dfb4fd1fd62 2257 
htsjdk_1.138+dfsg.1-4.dsc
 7f5975f0a770fb031f1c1be7a5541e20cc7dddf20ab88e11ebcd15c8438b8bfa 7356 
htsjdk_1.138+dfsg.1-4.debian.tar.xz
 5d401dc038a23632ab93142354c6f5ab604d28dd03dcd06eb94a32c8ceb0d3a3 749908 
libhtsjdk-java-doc_1.138+dfsg.1-4_all.deb
 c546d7270c219c18363baac10ea551d25160e6cb56206db231828ceede7a2cda 693504 
libhtsjdk-java_1.138+dfsg.1-4_all.deb
Files: 
 7952e164b55a1ebab933e82a0a0119d8 2257 science optional 
htsjdk_1.138+dfsg.1-4.dsc
 4406c42ea06a872c4ad99ba9e897c886 7356 science optional 
htsjdk_1.138+dfsg.1-4.debian.tar.xz
 71f3bdd0b3e5726ad18a45ce4530e8dc 749908 doc optional 
libhtsjdk-java-doc_1.138+dfsg.1-4_all.deb
 0e377ee9d9b6adc32b9caefcafe3fa49 693504 java optional 
libhtsjdk-java_1.138+dfsg.1-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVnXG5ZZH3mN+x7dRAQhdqRAAg0WuU3N+1Yp6HFCCvZPXlJXl4J30mUlJ
GpU9RTbsqjTj8dtnKFwH1Cfj5csN9HDgUZ2n13vSp9wNr6LrSotnVX7FBEsMRauw
voEAqCqX1HH9WzQLYKHJd0fZcP2n/OtoawVYZkAYCyaf6rx+AQoHJUZA8meOD3bm
sXh0KYHkb83s0bVkm/x0pp5qeIBqd8+YHZ/sZGL8DqN0Qg2HLEfWgu2khh2g8NZe
DtdVF1a29ULfgLxVuEeBPq/2H1eEbS1V8yZ3uPw+hAH+l+oteJaKkKm/VQEA8ttl
vbymfcDNgbN4AhQPAXxHQ9ggtrOAru75S9F65jrPzCGa+yon+gdXhwZWX1VpjORU
iMUi0wd9+PMh9WrnZjVzfE6jwqIU6Yby+V3ADpSqDhS8pUA1f/fS+t3dCk3ouYHe
1dw5fdjYGQAgox887Ny+HDr6g98+XPDB3svDwn1ydXGwX2l1XiByqURKnItHmz3F
OD6aozMCY5pQ8agSKSYRoHZ0QKnw52Cg9/UIm5Rm//uU5KxjZMTX003ZfOEANDzG
7TVcaffdHnt7RqICYgOB5OcqZjQ4YfPhrPGpqjkT0ROEW4zvQ4iaxvY9xwEA46e6
i6QwsTAYskV3cFLfXfZXNN/Uz/pD7MxCK7okEjwIBEiyMQ72HOfK/J0c+KmvH+6k
z03PFT/o8I0=
=vrob
-END PGP SIGNATURE-



Accepted ocl-icd 2.2.8-1 (amd64 source) into unstable

2015-12-17 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Dec 2015 21:06:06 +0100
Source: ocl-icd
Binary: ocl-icd-libopencl1 ocl-icd-opencl-dev ocl-icd-dev ocl-icd-dbg
Architecture: amd64 source
Version: 2.2.8-1
Distribution: unstable
Urgency: medium
Maintainer: Vincent Danjean <vdanj...@debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Description: 
 ocl-icd-dbg - Debug symbols for the generic OpenCL ICD Loader
 ocl-icd-dev - Development files to build a ICD Loader
 ocl-icd-libopencl1 - Generic OpenCL ICD Loader
 ocl-icd-opencl-dev - OpenCL development files
Changes:
 ocl-icd (2.2.8-1) unstable; urgency=medium
 .
   * New upstream release
 OpenCL 2.1 supported
   * remove upstream applied patch
   * add libopencl-2.1-1 virtual package and fix symbol file
Checksums-Sha1: 
 f9abe6d2e67b96e061e13653c374b5aeea8266f1 2121 ocl-icd_2.2.8-1.dsc
 a8298c88dae238216b7e4a2c3a89261a878b86cd 452374 ocl-icd_2.2.8.orig.tar.gz
 c6ffdc6ab1a02007eb060ba5092fa93fab1a7d67 10828 ocl-icd_2.2.8-1.debian.tar.xz
 1590863df27fe59e7d20f56b7470b515e6158d6c 47424 ocl-icd-dbg_2.2.8-1_amd64.deb
 f446888deb9ec155ae66ce42d9a6308214e58f65 16548 ocl-icd-dev_2.2.8-1_amd64.deb
 4e09481ab6e71cb3e667b99e7130bcad2a65b5a9 35566 
ocl-icd-libopencl1_2.2.8-1_amd64.deb
 74dd013dbe84b6df747c77a76650a039b1988b43 9316 
ocl-icd-opencl-dev_2.2.8-1_amd64.deb
Checksums-Sha256: 
 22d267936cf5f13d4a4710412ab940f5ff1b44f9365c30262ef364789bb6f0cf 2121 
ocl-icd_2.2.8-1.dsc
 25360a62a80558f3128164510b53ee00713a54db45de2faa1b6f4bd28191a184 452374 
ocl-icd_2.2.8.orig.tar.gz
 4b5aea6e57e23c6cb8b0a12794d235a615d063cf816449dd0ecfa7a13261624c 10828 
ocl-icd_2.2.8-1.debian.tar.xz
 22b29acefa115a29d28690ecbe1d2553b5cf6319b50a06383fc5c39541a2bd91 47424 
ocl-icd-dbg_2.2.8-1_amd64.deb
 7fc5e9e6757b910a36450ca7e6706dffaac2bbbdff1475bf12bfb7a5eb97b4fb 16548 
ocl-icd-dev_2.2.8-1_amd64.deb
 b1f79fc7d36240e3bc4f6ad01a6d6677c03722376e83c0607a40a317f8bb47e2 35566 
ocl-icd-libopencl1_2.2.8-1_amd64.deb
 72bf76abe10a4214f6904b047e16fc0b15e075fe8bd5a18ca0f9ce1f3f8f903e 9316 
ocl-icd-opencl-dev_2.2.8-1_amd64.deb
Files: 
 4138de5801fdff89225c436d5cc77399 2121 libs extra ocl-icd_2.2.8-1.dsc
 5e2f68589eae486491482821c0f5879c 452374 libs extra ocl-icd_2.2.8.orig.tar.gz
 f4be65f741762de73f1a485691a1 10828 libs extra ocl-icd_2.2.8-1.debian.tar.xz
 8c0e6f6c75309c2a2add463104ab784d 47424 debug extra 
ocl-icd-dbg_2.2.8-1_amd64.deb
 bb0c185ee50c7b670b8fb3efd9602f7a 16548 libdevel extra 
ocl-icd-dev_2.2.8-1_amd64.deb
 04287781bbafe1e084d883370a17a863 35566 libs extra 
ocl-icd-libopencl1_2.2.8-1_amd64.deb
 5cab9164714fd5c9296dab8d27265105 9316 libdevel extra 
ocl-icd-opencl-dev_2.2.8-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVnNZBpZH3mN+x7dRAQhANg//UfZk78rAxRNeoJQ1rBH/R7UGGm0zaEk7
GSWUpzfIohp9jBkRqIJXuuLU22wS+7rrlZuS3SECJ389+wGjxeH8E6tYeNRJqNL1
2JihDRNeadhtmN64G1d/Did1DGEsQAwiBc2qtI14K+pHglmfYgpzQ3EPlOEUWVGd
U6eduPxTU5WwREofvWfg483FhuQHHCBUJsItbCVNkN1dhZhTgo78N3f6LyF+ETxN
OrCzLGhCN6g4XXFBHN5c5gMOcW4WERyJ88G3HZbpeebaM4Dw89JvyhDaBOG9jdl8
2q4PdH/q00I2xOJnM/qt/DIiYpwBZo9hiAJY2XFj/RH6LWz42al93+tsupZ5lF1w
rXuqYgDADnP6/Wc+Ttfl+P2dID9m5ZNcBKtb8aiMfnc+T8FYL7ptHdMq7WPATQuC
PPqmvO5WitsP04ATLfxgXJgl7BAY73qjE3fGDqn8q/R+czYJLO73cBfY0H/jNT2Q
kbgrXM8GLlK+WbvfLDdYGPz6EsN5/WbNCL9JV4B33OznjHXBpY7TTYLYkaMICkl1
hgSqVPL5GqHgsIdQm0IPoGJgUftfwBJ2XIk6LImLcFu2GE5o3Np+C488pLAF2Sy4
SGpbcJxWsX/iMWRInRQqW/8HP5FKl0mghoAOfRWrZoXcEp9dr4r0n3PDewqUZx06
jcCCtWDSYLk=
=MDLO
-END PGP SIGNATURE-



Accepted altree 1.3.1-4 (all amd64 source) into unstable

2015-12-09 Thread Vincent Danjean
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 09 Dec 2015 22:37:46 +0100
Source: altree
Binary: altree altree-examples
Architecture: all amd64 source
Version: 1.3.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Vincent Danjean <vdanj...@debian.org>
Closes: 807493
Description: 
 altree-examples - example files for ALTree
 altree - program to perform phylogeny-based association and localization a
Changes:
 altree (1.3.1-4) unstable; urgency=medium
 .
   [ Andreas Tille ]
   * cme fix dpkg-control (dropped Replace/Provides/Conflicts of non-existing
 packages alphy, libcutils-perl)
   * xz compression is default and does not need to be enforced
 .
   [ Vincent Danjean ]
   * Fix "Produces empty binary package" by adding debian/altree.install
 (Closes: #807493)
Checksums-Sha1: 
 63a39d360616a68dcf1f83accbdf6742d15c3bb3 2275 altree_1.3.1-4.dsc
 c1e50facdfc5f0be7ac72ea2b59344e64f26ba79 5876 altree_1.3.1-4.debian.tar.xz
 8d4053198a4ab4d157c7397a0670a9065d57c846 330734 altree-examples_1.3.1-4_all.deb
 7bf55a6befa28808a99fd8b1c5f9b88b36689db4 340988 altree_1.3.1-4_amd64.deb
Checksums-Sha256: 
 033c12cd596822901405db0dfbe5e64dcb790e2588c2fd7bdd7366526d838fb1 2275 
altree_1.3.1-4.dsc
 73669aa35baf328ff216a455bbed4cb9735d16e37824efe2fbc9f4a0cfb4a9a4 5876 
altree_1.3.1-4.debian.tar.xz
 09f486640c028191492dab8da8453152dccbbc213011d2a799df1683992839d6 330734 
altree-examples_1.3.1-4_all.deb
 31f9a2a50042334c84fc0bf9858e211e559c7f19297d3ec033227d9f9e0ae78a 340988 
altree_1.3.1-4_amd64.deb
Files: 
 09294e6bb888f5a17b456c846442a1d0 2275 science optional altree_1.3.1-4.dsc
 28667f319ded6871565d4b477f324f12 5876 science optional 
altree_1.3.1-4.debian.tar.xz
 81fe6afd5219ceeda1ebdbe6250a5fed 330734 science optional 
altree-examples_1.3.1-4_all.deb
 a01afccb00040d2aae6727bbc0adc583 340988 science optional 
altree_1.3.1-4_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVmiu1pZH3mN+x7dRAQjPPw/+PvsVMLHEyGvtAXmZlLA40eO5jA9AiDiB
bF1BOs/TN13hU5tUe4WRoXVwoEdLz14P+4kod/QmRn53lTytzKkkpL69aGcRZKXp
sV7bX9F9GnOOhYFPcNjLh4fOR9Yx+w+WpbEgZ8e4RYGic+1welvzt1HLor86ypDs
L7tiYIn5gYzPoY50j7vVZh1XwiG51bi1Qhe6klFj0v2cawD5TryP/9Ljq1gGKPaW
0p+IWaGicesp/0utw9chvVRoTbEYYEQxtTvKW4rlugsIGqp4AKYv4GEh5jPoe8NF
4cVRJKXTh8Br21YwrSx8tyS0N6OFwY6aiXYSHrq+QLy3ZEopzHhwH/+O1a5r+NwV
4nKjusiT0Cejx9m5lnHNDFPXv92HWRfu5iOOvHBz5ZHCGAsD6f0v/SME18pKoW+n
CXy3egI0bkRVST76Gl0mmWSI7TfdfDScchIk75ArsYqpSkmjkkHxYJQU08PbtPRt
Uhw630HCwNN4QDKrH+Tsbcx6fN9fGgmDAizeKA7btyqYXuF2dmXOSJrwTYi5LTqT
XwiwXgT1npmWnJPH7BRa5ZdC4N7vESW2b/ZSxXjJyd0Cg0TzlUOI9AVmzejhXnUg
WuNqSUuuvflVb8v7+M74NisX5pQgyKnCDT7iwjCzGLTIldhi0UOtcPzlt2M6OTSw
GVJUCjSy4As=
=lADX
-END PGP SIGNATURE-



Re: dbconfig-common: near future change in dependency stack

2015-12-08 Thread Vincent Danjean
Le 06/12/2015 20:48, Paul Gevers a écrit :
> I am totally flabbergasted. dbconfig-common goes through a lot of hoops
> just to make sure this is not true. Sure, the *default* questions and
> answers are geared towards local database servers. But by either
> (re-)configuring dbconfig-common to raise the priority level of remote
> questions by default, or by raising the priority level during package
> configuring will get you the questions needed to configure your remote
> database. (Of course we can discuss what the proper priorities are but I
> really hope no DD will think (anymore) that dbconfig-common assumes
> local databases.)

When local configuration does not work or when local databases cannot
be reached or when local database server packages are not installed
the priority of dbconfig-common question about remote database should
be modified so that the user can configure a remote database without
failing the current installation. I know I already talked about that.
I do not remember if this is already implemented or not.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: Upcoming version of apt-file - using apt-acquire and incompatibilities

2015-12-08 Thread Vincent Danjean
Le 06/12/2015 13:01, David Kalnischkies a écrit :
> On Sat, Dec 05, 2015 at 07:58:07AM -0500, The Wanderer wrote:
>> Will it still be possible to update just the apt-file index, separately
>> from updating the main package index? I see no indication in the current
>> apt(8) man page of a way to tell apt to do this.
> 
> You can't update individual indexes at the moment. The question is why
> you would want to as from my point of view that was a pretty annoying
> technical detail that I had to run two (or three [debtags] or more)
> commands to get all the metadata.

  On most of my systems, I use i386 in addition to amd64. On my main
laptop, I even use armel and mipsel as I need cross-compilers for some
teaching exercises. Moreover, to be able to easily install packages
from various suite, I've stable, testing, unstable, sid and experimental
in my sources.list (and a few more such as various security, backport, ...)

  I use "apt-file search" very sporadically. And even when I use it,
most of the time, it is to find a package containing a header file,
so I do not need its database to be up-to-date. So I update it only
when the result from the first run is not good.

  Now, each apt{-get} update will update all Contents-Files for
*all architectures* and *all suites*. I do not want that. It takes
too long for data I do not need. It is especially annoying when I'm
traveling, that I've only a limited (speed and/or size) data link
and that I must upgrade/install a package.
  I will try to find a setup so that "apt-get update" does not
download Contents-Files (should be just commenting out the new
config file if I correctly read this thread) and create a
"apt-file-update" script that will download Contents-Files, perhaps
trying here to restrain the architectures and/or the suite (can be
a bit more tricky but probably only a matter of passing -o options
to apt-get update)
  The current default setup is a no-go for me.

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



Re: dbconfig-common: near future change in dependency stack

2015-12-08 Thread Vincent Danjean
Le 08/12/2015 20:25, Paul Gevers a écrit :
> I assume you don't like the dbconfig-pgsql | dbconfig-mysql |
> dbconfig-no-thanks dependency alternatives? By default the user will
> then get pgsql.

Not if the user has dbconfig-mysql or dbconfig-no-thanks already
installed (probably due to other packages).

Dependency alternatives are rarely a good hint for preference, but if
the system is installing for the first time (as in autobuilder)

  Regards,
Vincent

-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main



  1   2   3   4   5   6   7   8   >