Re: Bug#827555: ITP: circle -- Show byte statistics as an ascii circle graph

2016-06-18 Thread Roberto S. Galende
Ok, I'm gonna fix all issues with this and related RFS #827487.
As the name will change to 'bytes-circle', should I issue another bug here
and in RFS, or do I continue with this? I'm not sure how to proceed now
with the change of name...
Thanks


Bug#827609: ITP: python-fisx -- Quantitative X-Ray Fluorescence Analysis Support Library

2016-06-18 Thread picca
Package: wnpp
Severity: wishlist
Owner: picca 

* Package name: python-fisx
  Version : 1.0.7
  Upstream Author : V. Armando Solé 
* URL : https://github.com/vasole/fisx
* License : Expat
  Programming Lang: C++, Python,
  Description : Quantitative X-Ray Fluorescence Analysis Support Library

 This software library implements formulas to calculate, given an
 experimental setup, the expected x-ray fluorescence intensities. The
 library accounts for secondary and tertiary excitation, K, L and M
 shell emission lines and de-excitation cascade effects. The basic
 implementation is written in C++ and a Python binding is provided.


This package is a new dependecy of pymca.

I will maintain it under python-modules team.



Re: Problem with Google APT repo

2016-06-18 Thread Alex Muntada
David Kalnischkies:

> So, the error shouldn't say hashsum mismatch, but something more like
> "too weak hash" – but error is error either way, so you may want to talk
> to the repository maintainers (there are more than just this repository
> with such an issue) and I should write a patch to produce a better
> message as we were talking in the APT team about it for a while now…

FWIW, there's a new 4096R key for Google repos available here:
https://www.google.com/linuxrepositories/

Cheers,
Alex



Re: travis-ci build error qq

2016-06-18 Thread Wouter Verhelst
Hi Mateus,

For future reference, please note that the debian-devel mailinglist is
not about developing on or for Debian, it is about developing Debian
itself.

On Sun, Jun 12, 2016 at 11:58:27AM -0300, Mateus Bellomo wrote:
> Hello,
> 
> I'm trying to commit to a project but it is failing in the travis-ci build 
> [1].
> 
> I would like to know how to correctly add the jessie repository in
> travis-ci and why does it sometimes give that error when you use the
> http.debian.net URL.

Travis uses Ubuntu, not Debian. You can't always easily mix and match
repositories from both distributions; while it sometimes may work, this
is not a supported configuration.

If you need a package for travis that's in Debian but not in Ubuntu, you
can usually get around the issue by creating a Ubuntu PPA.

If you need more information about this subject, please talk to travis'
support, or to Ubuntu's support channels, as we can't help you.

Regards,

-- 
< ron> I mean, the main *practical* problem with C++, is there's like a dozen
   people in the world who think they really understand all of its rules,
   and pretty much all of them are just lying to themselves too.
 -- #debian-devel, OFTC, 2016-02-12



Re: Bug#827555: ITP: circle -- Show byte statistics as an ascii circle graph

2016-06-18 Thread Roberto S. Galende
Package: wnpp
Severity: wishlist
Owner: "Roberto S. Galende" 

  Package name: bytes-circle
  Version : 2.2-2
  Upstream Author : "Roberto S. Galende" 
  URL :
https://circulosmeos.wordpress.com/2015/10/10/statistics-circle-for-analysing-byte-entropy-in-files/
  License : GPL 3
  Programming Lang: C
  Description : Show byte statistics as an ascii circle graph

bytes-circle is a program that shows statistics about bytes contained
in a file as an ascii circle graph of deviations from mean in sigma
increments.

By default, byte 0 is at the center of the circle and next bytes until 256
are situated counterclockwise around the center.

bytes-circle expects a colour terminal, though other options are available.

The ascii art produced uses this char array to represent increment
values of sigma from the statistic's mean:
   . , - ~ + * o O # @

This ranges from zero (.) on the left, to 9*sigma (@) on the right.
If value is zero or over the mean the char is printed green.
If it is below the mean, it's printed red. A (blue) '=' char
represents a byte value that doesn't appear in the file.

The program can be useful for statistically analyze the content of
files in a glimpse: text files are shown as a green centered crown,
compressed and encrypted files should be shown as equally distributed
variations with a very low CV (sigma/mean), and other types of files
can be classified between these two categories depending on their
ascii vs binary content, which can be useful to quickly determine how
information is stored inside them (redis db, mmedia files, etc).
Developers and data analysts could benefit from 'bytes-circle'.

2016-06-18 14:29 GMT+02:00 Roberto S. Galende :

> Ok, I'm gonna fix all issues with this and related RFS #827487.
> As the name will change to 'bytes-circle', should I issue another bug here
> and in RFS, or do I continue with this? I'm not sure how to proceed now
> with the change of name...
> Thanks
>


Re: Command line frontend for services that require single sign-on

2016-06-18 Thread Enrico Zini
On Thu, Jun 16, 2016 at 06:04:27PM -0400, Paul Tagliamonte wrote:

> Anyway, I'd just like folks to know this is super exciting, and having a
> sane PKI system that lets DDs client-auth to services is *huge*, and we
> should totally be building up awesome infra around this stuff. Maybe
> even send OpenPGP signed CSRs to an automated CA to issue new client
> certs?
> 
> WHO ELSE IS STOKED? I AM!
> 
> Can't wait to build around this amazing work, Enrico!

Yay! I think this is exciting, too.

I've now added a modular command line parser, a curl wrapper:

  $ ./debsso curl -D - https://nm.debian.org/api/whoami
  HTTP/1.1 200 OK
  Date: Sat, 18 Jun 2016 19:56:36 GMT
  Server: Apache
  Vary: Cookie,Accept-Language
  Content-Language: en-gb
  Set-Cookie: …
  Set-Cookie: …
  Strict-Transport-Security: max-age=15552000
  X-Clacks-Overhead: GNU Terry Pratchett
  Transfer-Encoding: chunked
  Content-Type: application/json
  
  {
   "username": "enr...@debian.org", 
   "status": "dd_u", 
   "uid": "enrico", 
   "mn": "", 
   "sn": "Zini", 
   "fpr": "1793D6AB75663E6BF104953A634F4BD1E7AD5568", 
   "status_changed": "1003968000", 
   "email": "enr...@master.debian.org", 
   "cn": "Enrico"
  }

And a "whoami" command as an example for using requests:

  $ ./debsso whoami
  {
   "username": "enr...@debian.org", 
   "status": "dd_u", 
   "uid": "enrico", 
   "mn": "", 
   "sn": "Zini", 
   "fpr": "1793D6AB75663E6BF104953A634F4BD1E7AD5568", 
   "status_changed": "1003968000", 
   "email": "enr...@master.debian.org", 
   "cn": "Enrico"
  }

It is now ready for actually useful stuff to be added, and from my side
it will probably be something to make DAM review of new processes easier
as I do DAM review of new processes.

I look forward to having other features come in from other people who
need them.


Enrico

-- 
GPG key: 4096R/634F4BD1E7AD5568 2009-05-08 Enrico Zini 


signature.asc
Description: PGP signature


Re: Bug#827555: ITP: circle -- Show byte statistics as an ascii circle graph

2016-06-18 Thread Javier Barroso
Hello,


El sáb., 18 jun. 2016 21:12, Roberto S. Galende 
escribió:

> Package: wnpp
> Severity: wishlist
> Owner: "Roberto S. Galende" 
>
>   Package name: bytes-circle
>   Version : 2.2-2
>
>   Upstream Author : "Roberto S. Galende" 
>   URL :
> https://circulosmeos.wordpress.com/2015/10/10/statistics-circle-for-analysing-byte-entropy-in-files/
>
>   License : GPL 3
>   Programming Lang: C
>   Description : Show byte statistics as an ascii circle graph
>
> bytes-circle is a program that shows statistics about bytes contained
> in a file as an ascii circle graph of deviations from mean in sigma
> increments.
>
>
> By default, byte 0 is at the center of the circle and next bytes until 256
> are situated counterclockwise around the center.
>
> bytes-circle expects a colour terminal, though other options are available.
>
>
> The ascii art produced uses this char array to represent increment
> values of sigma from the statistic's mean:
>. , - ~ + * o O # @
>
> This ranges from zero (.) on the left, to 9*sigma (@) on the right.
> If value is zero or over the mean the char is printed green.
> If it is below the mean, it's printed red. A (blue) '=' char
> represents a byte value that doesn't appear in the file.
>
> The program can be useful for statistically analyze the content of
> files in a glimpse: text files are shown as a green centered crown,
> compressed and encrypted files should be shown as equally distributed
> variations with a very low CV (sigma/mean), and other types of files
> can be classified between these two categories depending on their
> ascii vs binary content, which can be useful to quickly determine how
> information is stored inside them (redis db, mmedia files, etc).
> Developers and data analysts could benefit from 'bytes-circle'.
>
> 2016-06-18 14:29 GMT+02:00 Roberto S. Galende  >:
>
>> Ok, I'm gonna fix all issues with this and related RFS #827487.
>> As the name will change to 'bytes-circle', should I issue another bug
>> here and in RFS, or do I continue with this? I'm not sure how to proceed
>> now with the change of name...
>> Thanks
>>
> You can retitle the bug, see:

https://wiki.debian.org/HowtoUseBTS#Tweaking_bug_reports:_control.40bugs.debian.org


Bug#827625: ITP: libperl-osnames-perl -- Perl module to list possible $^O ($OSNAME) values with description

2016-06-18 Thread Nick Morrott
Package: wnpp
Owner: Nick Morrott 
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org, debian-p...@lists.debian.org

* Package name: libperl-osnames-perl
  Version : 0.11
  Upstream Author : perlancar 
* URL : https://metacpan.org/release/Perl-osnames
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module to list possible $^O ($OSNAME) values with 
description

Perl::osnames provides possible values of $^O, along with a description for
each. It also provides helper functions, such as whether an operating system
is POSIX-compatible or Unix-like.

The package will be maintained under the umbrella of the Debian Perl Group.



Bug#827638: ITP: sniffles -- structural variation caller using third-generation sequencing

2016-06-18 Thread Afif Elghraoui
Package: wnpp
Severity: wishlist
Owner: Afif Elghraoui 

* Package name: sniffles
  Version : 0.0.1
  Upstream Author : Fritz Sedlazeck 
* URL : https://github.com/fritzsedlazeck/Sniffles
* License : MIT
  Programming Lang: C++
  Description : structural variation caller using third-generation 
sequencing

 Sniffles is a structural variation caller using third-generation sequencing
 platforms such as those from Pacific Biosciences or Oxford Nanopore.
 It detects all types of SVs using evidence from split-read alignments,
 high-mismatch regions, and coverage analysis.


Packaging will be maintained by the Debian Med team.



Re: Misc Developer News (#41)

2016-06-18 Thread Hideki Yamane
Hi,

On Mon, 6 Jun 2016 17:03:38 +0200
Julien Cristau  wrote:
> `init` no longer required
> -
(snip)
>  For unstable as of 2016-06-05 this change reduced the size of binary
>  packages to install from 33MB to 29MB for the `minbase` variant.

 I've created chroot with --variant=minbase option but it eats 175MB.

$ sudo debootstrap --variant=minbase sid /srv/chroot/sid 
http://ftp.jp.debian.org/debian/
$ sudo du -sh /srv/chroot/sid/
175M/srv/chroot/sid/

 Do I miss something?


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane



Re: Misc Developer News (#41)

2016-06-18 Thread Sven Joachim
On 2016-06-19 12:18 +0900, Hideki Yamane wrote:

> On Mon, 6 Jun 2016 17:03:38 +0200
> Julien Cristau  wrote:
>> `init` no longer required
>> -
> (snip)
>>  For unstable as of 2016-06-05 this change reduced the size of binary
>>  packages to install from 33MB to 29MB for the `minbase` variant.
>
>  I've created chroot with --variant=minbase option but it eats 175MB.
>
> $ sudo debootstrap --variant=minbase sid /srv/chroot/sid 
> http://ftp.jp.debian.org/debian/
> $ sudo du -sh /srv/chroot/sid/
> 175M  /srv/chroot/sid/
>
>  Do I miss something?

The 29MB is the size of the packages which debootstrap downloaded. Run 
du -sh /srv/chroot/sid/var/cache/apt/archives.

Cheers,
   Sven