Bug#836786: diffoscope: Differences between long lines are missing in HTML format

2017-02-06 Thread Daniel Shahaf
Chris Lamb wrote on Tue, Feb 07, 2017 at 15:58:40 +1300:
> Version: 62
> 
> Emanuel Bronshtein wrote:
> 
> > The packages "python-hypothesis" & "cppformat" & "python-xmp-toolkit" &
> > "python-mne" from unstable/amd64 have long line that contain JavaScript
> > code, the HTML format don't contain the differences between the lines (it
> > cut the line by scissors symbol instead)
> >
> > searchindex.js:
> > 
> > https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-hypothesis.html
> 
> I'm not actually seeing this anymore; I believe it was fixed by Daniel
> Shahaf in version 62. :)

I don't think so: my patch would have still shown the difference with
an "ordering differences only" comment in the output.

Cheers,

Daniel

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#797525: diffoscope: provide a way to ignore all differences in control.tar

2017-02-06 Thread Chris Lamb
Hi Jakub,

> I want to use diffoscope to compare two "Multi-Arch: same" debs of the 
> same version but different architecture, to see differences that will 
> cause co-installation conflicts.

Could you provide (or link to) some example .debs for this? :)

The --fuzzy-threshold option landed in diffoscope 32 (Sep 2015) so it
would be nice to fix this last bit up for you.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#849425: marked as done (diffoscope: test_openssh_pub_key.test_diff fails on jessie after ssh-keygen output format change)

2017-02-06 Thread Debian Bug Tracking System
Your message dated Tue, 07 Feb 2017 16:41:16 +1300
with message-id 
<1486438876.1982280.872643896.25df3...@webmail.messagingengine.com>
and subject line Re: diffoscope: test_openssh_pub_key.test_diff fails on jessie 
after ssh-keygen output format change
has caused the Debian Bug report #849425,
regarding diffoscope: test_openssh_pub_key.test_diff fails on jessie after 
ssh-keygen output format change
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
849425: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=849425
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: diffoscope
Version: git as of 011987f
Severity: minor
Tags: upstream

On jessie, test_openssh_pub_key.test_diff fails like this:

=== FAILURES ===
__ test_diff ___

differences = []

@skip_unless_tools_exist('ssh-keygen')
def test_diff(differences):
expected_diff = open(data('openssh_pub_key_expected_diff')).read()
>   assert differences[0].unified_diff == expected_diff
E   assert '@@ -1 +1 @@\...2.pub (RSA)\n' == '@@ -1 +1 @@\n...Test2 (RSA)\n'
E   @@ -1 +1 @@
E - -1024 0a:57:8d:93:be:8b:5c:47:7a:b6:5c:91:16:87:cd:1e 
/home/brett/repos/diffoscope/tests/data/test_openssh_pub_key1.pub (DSA)
E - +4096 8a:a5:52:0a:3f:af:8d:2d:76:52:72:e1:a8:0a:a2:47 
/home/brett/repos/diffoscope/tests/data/test_openssh_pub_key2.pub (RSA)
E + -1024 SHA256:v/O+0ETvi2H5TGRXky1RhQ1/WFwLlPpxch5E2Mrj6FM Test1 (DSA)
E + +4096 SHA256:9dH1CMkA6DSfPWU7vNwdPKS5/ppN4LMdvHTP60l7aSA Test2 (RSA)

tests/comparators/test_openssh_pub_key.py:47: AssertionError
== 1 failed, 3 passed in 0.14 seconds ==

This happens because, since jessie, ssh-keygen has added the -E option to
specify the fingerprint hash algorithm, and defaulted it to SHA256.  Older
versions used the colon-separated format (md5?).

I was working on a patch for this, but unfortunately the right thing to do
isn't obvious.  Older versions of ssh-keygen, as in jessie, don't support
the -E option at all.  This makes it difficult to ensure diffoscope's
output is consistent regardless of the version of ssh-keygen on the
underlying host.

We could have the comparator try to specify -E md5, and then fall back to
omitting the -E option if that fails, but that seems a little regressive
since md5 is basically deprecated.

We could have the test sniff for the host's ssh-keygen version, and expect a
different diff based on when it started outputting sha256 fingerprints by
default, but that punts on the consistent output issue.

What do the maintainers think?

-- System Information:
Debian Release: 8.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Version: 68

Brett Smith wrote:

> On jessie, test_openssh_pub_key.test_diff fails

I believe this was fixed by Mattia and was released in version 68.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   ` End Message ---
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Bug#849425: diffoscope: test_openssh_pub_key.test_diff fails on jessie after ssh-keygen output format change

2017-02-06 Thread Chris Lamb
Version: 68

Brett Smith wrote:

> On jessie, test_openssh_pub_key.test_diff fails

I believe this was fixed by Mattia and was released in version 68.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Processed: Re: diffoscope: vim folding for text output

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 833370 wishlist
Bug #833370 [diffoscope] diffoscope: vim folding for text output
Severity set to 'wishlist' from 'minor'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
833370: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833370
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Processed: Re: diffoscope: tracebacks when comparing directories to non-directories

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 835641 + pending
Bug #835641 [diffoscope] diffoscope: tracebacks when comparing directories to 
non-directories
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
835641: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=835641
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#835641: diffoscope: tracebacks when comparing directories to non-directories

2017-02-06 Thread Chris Lamb
tags 835641 + pending
thanks

Fixed in Git:

  https://anonscm.debian.org/git/reproducible/diffoscope.git/commit/?id=db37e55


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#842250: diffoscope: crashes on NetBSD's base.tgz

2017-02-06 Thread Chris Lamb
Chris Lamb wrote:

> tags 842250 + unreproducible
> [...]
> Thanks for that. However, I can't seem to reproduce any crash:
> 
> $ wget 
> https://tests.reproducible-builds.org/netbsd/artifacts/b{1,2}/amd64/binary/sets/base.tgz
>  

Holger, can you still reproduce? If not, I think we should close this
bug :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#836786: marked as done (diffoscope: Differences between long lines are missing in HTML format)

2017-02-06 Thread Debian Bug Tracking System
Your message dated Tue, 07 Feb 2017 15:58:40 +1300
with message-id 
<1486436320.1030324.872614424.09bbb...@webmail.messagingengine.com>
and subject line Re: diffoscope: Differences between long lines are missing in 
HTML format
has caused the Debian Bug report #836786,
regarding diffoscope: Differences between long lines are missing in HTML format
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
836786: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836786
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: diffoscope
Severity: normal

Dear Maintainer,

The packages "python-hypothesis" & "cppformat" & "python-xmp-toolkit" & 
"python-mne" from unstable/amd64 have long line that contain JavaScript code, 
the HTML format don't contain the differences between the lines (it cut the 
line by scissors symbol instead)

searchindex.js:

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-hypothesis.html

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/cppformat.html

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-xmp-toolkit.html

bootstrap.min.js:

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-mne.html


Suggestion for fixes:
1. The above examples are minified JavaScript code, thus it's possible to use 
JavaScript beautifier on JavaScript files (*.js) and then compare the results.
2. Add JavaScript code to the HTML format that will expand the view when 
scissors is clicked (or don't cut the line at all)
--- End Message ---
--- Begin Message ---
Version: 62

Emanuel Bronshtein wrote:

> The packages "python-hypothesis" & "cppformat" & "python-xmp-toolkit" &
> "python-mne" from unstable/amd64 have long line that contain JavaScript
> code, the HTML format don't contain the differences between the lines (it
> cut the line by scissors symbol instead)
>
> searchindex.js:
>   
> https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-hypothesis.html

I'm not actually seeing this anymore; I believe it was fixed by Daniel
Shahaf in version 62. :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   ` End Message ---
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Bug#840482: diffoscope: error at startup: AttributeError: undefined symbol: archive_errno

2017-02-06 Thread Chris Lamb
Mihai - Catalin Stefan wrote:

> > AttributeError: /usr/bin/python3: undefined symbol: archive_errno

Are you still seeing this with recent versions? If so, I wonder if this
is related to conflicts between the pip and package-installed versions
of libarchive-c.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#836786: diffoscope: Differences between long lines are missing in HTML format

2017-02-06 Thread Chris Lamb
Version: 62

Emanuel Bronshtein wrote:

> The packages "python-hypothesis" & "cppformat" & "python-xmp-toolkit" &
> "python-mne" from unstable/amd64 have long line that contain JavaScript
> code, the HTML format don't contain the differences between the lines (it
> cut the line by scissors symbol instead)
>
> searchindex.js:
>   
> https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/python-hypothesis.html

I'm not actually seeing this anymore; I believe it was fixed by Daniel
Shahaf in version 62. :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


ТОТАЛНА РАЗПРОДАЖБА! Големите марки до -56%

2017-02-06 Thread Office Express
Title: Тотална разпродажба!










 Ако не виждате
добре писмото или не работят линковете,
моля натиснете ТУК, за да го отворите в
Интернет.






КОПИРНА ХАРТИЯ виж всички в
промоция ТУК











АРХИВИРАНЕ И СЪХРАНЕНИЕ
виж всички в
промоция ТУК








КАНЦЕЛАРСКИ МАТЕРИАЛИ
виж всички в
промоция ТУК

















ХИГИЕНА виж всички в промоция ТУК

















КАФЕ ПАУЗА виж всички в промоция ТУК








МЕБЕЛИ виж всички в промоция ТУК











СТОЛОВЕ виж всички в промоция ТУК











ТЕХНИКА виж всички в промоция ТУК








ОБЛЕКЛО И ЗАЩИТА виж всички в
промоция ТУК





 





















 Промоцията е валидна до 31.03.2017
година или до изчерпване на
наличностите. Всички цени са без ДДС.
Важи само при плащане в брой или
авансово по банков път. 
Отстъпките са валидни само при покупка
от електронния магазин www.offex.bg.
Доставка според Логистичната карта
на Офис Експрес. Виж тук.   Office Express
извършва безплатна доставка* за поръчки
над 50 лв. без ДДС за Зона 1 и 2 и безплатна
доставка* за поръчки над 100 лв. без ДДС за
Зона 3. Под тези суми - такса доставка 5 лв.
без ДДС.  Office Express не изпълнява поръчки
под 29 лв. без ДДС до адрес.  * С
изключение на извънгабаритни и
неразглобяеми артикули като метални
шкафове, мебели, посетителски столове,
бели дъски и др. За тях се начислява такса
доставка по тарифата на куриера за
съответната зона. Информация за
артикулите от този списък и стойността
на доставка им можете да получите на
телефон: 0 800 1 80 80 и е-майл: sa...@offex.bg. 
Доставката във всички населени места
извън Зона 1, 2 и 3 е за сметка на
получателя.  Виж списък със Зоните на
доставка ТУК.  Посочените цени са без ДДС, с
начислена отстъпка.
Количествата са ограничени!
Office Express не носи отговорност за допуснати
печатни грешки! 












Настоящата оферта е и съдържащите се в
нея търговски предложения за продажба на
стоки и услуги са насочени към
юридически и физически лица - търговци и
целят задоволяване на техните нужди в
ежедневната им търговска и
професионална дейност.  Съгласно
Закона за Електронната Търговия Ви
информираме, че това може да е непоискано
търговско съобщение. Вие може да го
приемете или отхвърлите. Получавате това
писмо, защото присъствате в базата данни
на Office Express.  Ако не желаете да
получавате информация, моля ОТПИШЕТЕ
СЕ ОТ ТУК и ще преустановим
изпращането на търговски съобщения към
Вашата компания.Ако сме Ви
обезпокоили, моля да ни извините!















  



  





  

  





  





  



  







  







  











  





  





  



  





  







  

  



  









  



  



  





  



  

  







  







  



  





  

 





___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Bug#836784: marked as done (diffoscope: Several "Too much input for diff" on debian packages from unstable/amd64)

2017-02-06 Thread Debian Bug Tracking System
Your message dated Tue, 07 Feb 2017 15:47:11 +1300
with message-id 
<1486435631.1027542.87261.1c3ea...@webmail.messagingengine.com>
and subject line Re: diffoscope: Several "Too much input for diff" on debian 
packages from unstable/amd64
has caused the Debian Bug report #836784,
regarding diffoscope: Several "Too much input for diff" on debian packages from 
unstable/amd64
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
836784: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836784
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: diffoscope
Severity: normal

Dear Maintainer,

The packages "esajpip" & "aptly" & "nikwi" from unstable/amd64:
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/esajpip.html
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/aptly.html
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/nikwi.html

return "Too much input for diff" instead of meaningful diff.
--- End Message ---
--- Begin Message ---
Version: 60

Mattia Rizzolo wrote:

> > has this change landed in sid by now?
>
> It is, with commit 83593ea75709ff82bb01cd3c8970636a4f5dd31b in master,
> already released with v60.

Closing bug :)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   ` End Message ---
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Processed: Re: diffoscope: traceback when comparing dangling symlink to directory

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 835641 diffoscope: tracebacks when comparing directories to 
> non-directories
Bug #835641 [diffoscope] diffoscope: traceback when comparing dangling symlink 
to directory
Changed Bug title to 'diffoscope: tracebacks when comparing directories to 
non-directories' from 'diffoscope: traceback when comparing dangling symlink to 
directory'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
835641: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=835641
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#835641: diffoscope: traceback when comparing dangling symlink to directory

2017-02-06 Thread Chris Lamb
retitle 835641 diffoscope: tracebacks when comparing directories to 
non-directories
thanks

This is actually bigger than just dangling symlinks:

$ diffoscope /etc/cron.d/ /etc/fstab --no-progress
cmp: /etc/cron.d/: Is a directory
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/diffoscope/main.py", line 268, in main
sys.exit(run_diffoscope(parsed_args))
  File "/usr/lib/python3/dist-packages/diffoscope/main.py", line 244, in 
run_diffoscope
parsed_args.path1, parsed_args.path2)
  File 
"/usr/lib/python3/dist-packages/diffoscope/comparators/utils/compare.py", line 
61, in compare_root_paths
return compare_files(file1, file2)
  File 
"/usr/lib/python3/dist-packages/diffoscope/comparators/utils/compare.py", line 
76, in compare_files
return file1.compare_bytes(file2, source)
  File "/usr/lib/python3/dist-packages/diffoscope/comparators/utils/file.py", 
line 165, in compare_bytes
return compare_binary_files(self, other, source)
  File 
"/usr/lib/python3/dist-packages/diffoscope/comparators/utils/compare.py", line 
99, in compare_binary_files
source=[file1.name, file2.name], has_internal_linenos=True)
  File "/usr/lib/python3/dist-packages/diffoscope/difference.py", line 120, in 
from_command
difference = Difference.from_feeder(feeder1, feeder2, path1, path2, *args, 
**kwargs)
  File "/usr/lib/python3/dist-packages/diffoscope/difference.py", line 70, in 
from_feeder
unified_diff = diff(feeder1, feeder2)
  File "/usr/lib/python3/dist-packages/diffoscope/diff.py", line 282, in diff
fd_from_feeder(feeder1, end_nl_q1, fifo1)
  File "/usr/lib/python3.5/contextlib.py", line 136, in helper
return _GeneratorContextManager(func, args, kwds)
  File "/usr/lib/python3.5/contextlib.py", line 38, in __init__
self.gen = func(*args, **kwds)
  File "/usr/lib/python3/dist-packages/diffoscope/diff.py", line 238, in 
fd_from_feeder
t.join()
  File "/usr/lib/python3/dist-packages/diffoscope/diff.py", line 227, in join
raise ex
  File "/usr/lib/python3/dist-packages/diffoscope/diff.py", line 213, in run
super().run(*args, **kwargs)
  File "/usr/lib/python3.5/threading.py", line 862, in run
self._target(*self._args, **self._kwargs)
  File "/usr/lib/python3/dist-packages/diffoscope/diff.py", line 197, in feed
end_nl = feeder(f)
  File "/usr/lib/python3/dist-packages/diffoscope/difference.py", line 191, in 
feeder
raise subprocess.CalledProcessError(returncode, command.cmdline(), 
output=command.stderr.getvalue())
subprocess.CalledProcessError: Command '['xxd', '/etc/cron.d/']' returned 
non-zero exit status 2



Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#817193: diffoscope: failing tests: test_gzip.py::test_metadata, test_ipk.py::test_metadata, test_java.py::test_diff

2017-02-06 Thread Chris Lamb
Hi Zbigniew,

> diffoscope: failing tests: test_gzip.py::test_metadata, 
> test_ipk.py::test_metadata, test_java.py::test_diff

Are you still any of these test failures with a recent diffoscope
version? We have made a few locale changes recently so its likely
that at least some of these are fixed.

Please reply with exactly which you are seeing, preferably with an
updated traceback, etc.


Many thanks,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Processed: Re: diffoscope: Support a timeout on the individual commands invoked by diffoscope

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 827222 + wontfix
Bug #827222 [diffoscope] diffoscope: Support a timeout on the individual 
commands invoked by diffoscope
Added tag(s) wontfix.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
827222: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827222
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#827222: diffoscope: Support a timeout on the individual commands invoked by diffoscope

2017-02-06 Thread Chris Lamb
tags 827222 + wontfix
thanks

Hi Ed,

> diffoscope: Support a timeout on the individual commands invoked
> by diffoscope

Firstly, thanks for the report. I can certainly understand that it can
be frustrating when diffoscope times out. :/

However, having an individual timeout on the invoked commands means
that the generated reports will sometimes contain the extra diff data
and sometimes not.

This non-determinism is not a big problem from a pure reproducibility point
of view, but IMHO developer tools should contain as little "magic" as possible
and — above all — should produce entirely consistent output. For example. I can
imagine it being even more frustrating to be grepping for a particular string
in the output for it to sometimes appear and sometimes not depending on CPU
load, wasting precious time and cognitive load.

Thus, I am marking this as wontfix.

(If it helps, I notice that you reported this against diffoscope 54. In the
meantime, we have improved the performance of diffoscope quite considerably
so these timeouts are far less common.)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Processed: Re: diff output in machine-readable format

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 850791 + pending
Bug #850791 [diffoscope] diff output in machine-readable format
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
850791: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=850791
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#850791: diff output in machine-readable format

2017-02-06 Thread Chris Lamb
tags 850791 + pending
thanks

Fixed in Git:

   
https://anonscm.debian.org/git/reproducible/diffoscope.git/commit/?id=c601f2d23450cf54dbe80af68700a449ba0e32a8


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Processed: Re: diffoscope: diff output in xml format

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 850791 diff output in machine-readable format
Bug #850791 [diffoscope] diffoscope: diff output in xml format
Changed Bug title to 'diff output in machine-readable format' from 'diffoscope: 
diff output in xml format'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
850791: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=850791
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Bug#850791: diffoscope: diff output in xml format

2017-02-06 Thread Chris Lamb
retitle 850791 diff output in machine-readable format
thanks

Hi,

> diffoscope: diff output in xml format

Justified or not (!), there is enough of an instant "ew, XML" backlash in
the free software world that another format is probably more suitable.

Renaming bug title to match the underlying intention. 


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


Processed: Re: diffoscope: Improvesupport for Android apps

2017-02-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 849403 diffoscope: Improve support for Android apps
Bug #849403 [src:diffoscope] diffoscope: Improvesupport for Android apps
Changed Bug title to 'diffoscope: Improve support for Android apps' from 
'diffoscope: Improvesupport for Android apps'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
849403: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=849403
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


New armhf node (Pine64+)

2017-02-06 Thread Vagrant Cascadian
Another arm board ready to be configured for the build farm!

p64b-armhf-rb.debian.net:
Pine64+, Allwinner A64 (cortex-a53) quad-core, 2GB ram
ssh port: 2247
ssh fingerprints:
2048 19:26:31:fa:7b:ff:96:ae:14:20:b8:25:36:59:37:df 
/etc/ssh/ssh_host_rsa_key.pub (RSA)
256 74:1d:59:57:c7:3b:c9:ad:a7:09:30:03:a4:95:2f:12 
/etc/ssh/ssh_host_ecdsa_key.pub (ECDSA)
256 a6:41:94:be:eb:3f:b0:f5:c0:84:58:dd:16:a3:fb:ac 
/etc/ssh/ssh_host_ed25519_key.pub (ED25519)

Running a non-Debian kernel, but built from the linux-next tree, so
should be possible to switch to experimental and/or stretch-backports
when the time comes.

This one is interesting in that it's running an arm64 kernel with armhf
userland (like the i386 builders that run amd64 kernels). We may not
have enough of these to do this systematically yet unless we divert some
of the other arm64 builders, though I'll likely get a few more in this
configuration set up "soon" regardless.


Space is getting a little tight, so if this one
performs well, I'll probably want to decomission one of the slower
boards. I've got another Pine64+ that should be ready soon, and *maybe*
an odroid-c2 as well, and likely some additional board donations
coming... maybe I should get a bigger UPS and another network switch to
support another 8 boards...


I think it is only configured with ssh keys for holger, but if someone
else is able to configure it and has the time I can add them as well.


live well,
  vagrant


signature.asc
Description: PGP signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Промени в ЗДДС, ЗКПО, ЗДДФЛ, КТ и КСО- Годишно приключване на 2016

2017-02-06 Thread Изтичащи срокове







TBM Consulting организира за Вас
следните практически семинари:
ГОДИШНО
СЧЕТОВОДНО И ДАНЪЧНО ПРИКЛЮЧВАНЕ НА 2016 г.
ПРОМЕНИТЕ В ЗАКОНА ЗА КОРПОРАТИВНОТО
ПОДОХОДНО ОБЛАГАНЕ (ЗКПО), ЗАКОНА ЗА ДАНЪК ВЪРХУ ДОБАВЕНАТА
СТОЙНОСТ (ЗДДС) И ЗАКОНА ЗА ДАНЪЦИТЕ ВЪРХУ
ДОХОДИТЕ НА ФИЗИЧЕСКИТЕ ЛИЦА
(ЗДДФЛ) ПРЕЗ 2017
г.
15 и 16
февруари 2017 г.
гр. София, хотел РАМАДА
4 /до Гарата/
Лектори: Димитър Войнов- експерт
ЗКПО, Калина Златанова- данъчен
консултант по ДДС и Лорета
Цветкова-  главен експерт по
приходите в ЦУ на НАП  
ПРОГРАМА НА
СЕМИНАРА вижте ТУК:
http://tbm-bg.com/obuchenia/223
ЗАЯВКА ЗА УЧАСТИЕ
попълнете ТУК: http://tbm-bg.com/zapisvane
Такса за участие:
 260 лв. (без ДДС)

НАЙ- НОВИТЕ
ИЗМЕНЕНИЯ И ДОПЪЛНЕНИЯ В ТРУДОВОТО И
ОСИГУРИТЕЛНОТО ЗАКОНОДАТЕЛСТВО В СИЛА
ОТ 1 ЯНУАРИ 2017 г.
17 февруари 2017 г.
гр. София, хотел РАМАДА
4 /до Гарата/
Лектори: Лариса
Тодорова- държавен експерт в Министерство на
труда и социалната политика
(МТСП), Михаил Илиев- експерт в
МТСП и Катя Кашъмова- началник
отдел "Осигурителна Методология" в ЦУ на
НАП
ПРОГРАМА НА
СЕМИНАРА вижте ТУК:
http://tbm-bg.com/obuchenia/222
ЗАЯВКА ЗА УЧАСТИЕ
попълнете ТУК: http://tbm-bg.com/zapisvane
Такса за участие:
 130
лв. (без ДДС) 
ПРАКТИКА НА ВЪЗЛОЖИТЕЛИТЕ И ОРГАНИТЕ
ПО ОБЖАЛВАНЕ ПО ЗАКОНА ЗА ОБЩЕСТВЕНИТЕ
ПОРЪЧКИ И ПРАВИЛНИКА ЗА НЕГОВОТО
ПРИЛАГАНЕ.
15 и 16
февруари 2017 г.
гр. София, хотел РАМАДА
4 /до Гарата/
Лектори: Мариана
Кацарова- юрист, експерт Обществени
поръчки, Цветан
Стоевски - Директор
„Обществени поръчки и концесии“
към Столична община и Пламен
Караджов- юрист, експерт по ЗОП
ПРОГРАМА НА
СЕМИНАРА вижте ТУК:
http://tbm-bg.com/obuchenia/222
ЗАЯВКА ЗА УЧАСТИЕ
попълнете ТУК: http://tbm-bg.com/zapisvane
Такса за участие:
 270 лв. (без ДДС)

 
 ПРЕДСТОЯЩИ
СЕМИНАРИ:
13 февруари 2017 г.-
ГОДИШНО СЧЕТОВОДНО ПРИКЛЮЧВАНЕ
НА БЮДЖЕТНИТЕ ПРЕДПРИЯТИЯ ЗА 2016
г. - с Теодора Бакърджиева- такса 150 лв.
без ДДС
16 март
2017 г.- СЪЩНОСТ И ВИДОВЕ ДОХОДИ,
РЕГУЛИРАНИ ОТ СПОГОДБИТЕ ЗА ИЗБЯГВАНЕ НА
ДВОЙНОТО ДАНЪЧНО ОБЛАГАНЕ (СИДДО).
ОБЛАГАНЕ НА ДОХОДИТЕ НА МЕСТНИ И
ЧУЖДЕСТРАННИ ЛИЦА ПО
СИДДО. - с Десислава
Калудова- такса 150 лв. без
ДДС
 
Моля,
попълнете On-Line
заявка за участие или изпратете
попълнен формуляр на e-mail:
office@tbm-bg.com или тук: www.tbm-bg.com/zapisvane
 
Допълнителна
информация по всички въпроси,
свързани със семинара, можете да
получите на 0889 416 048; 0888
994 255, 0877 994 255 и 0898 994
255
или на e-mail:
office@tbm-bg.com





Екипът на TBM Consulting Ltd  
mobile: +359 889 416 048e-mail: off...@tbm-bg.com web: www.tbm-bg.com
 
 

Съгласно закона за електронна
търговия Чл. 6, ал. 1 Ви уведомяваме, че е
възможно това да е непоискано търговско
съобщение. То е еднократно изпратено
писмо до Вашия e-mail адрес, който е взет от
публичното пространство. Извиняваме
се, ако по някаква причина сме Ви
притеснили с нашето предложение. Ако
не желаете да получавате съобщения от
"TBM Consulting", моля натиснете ОТПИСВАНЕ
за да се откажете да получавате нашите
бюлетини! 




___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds