8
0

Accepting request 780957 from devel:languages:perl:autoupdate

- updated to 1.7
   see /usr/share/doc/packages/perl-Convert-UUlib/Changes
  1.7  
  	- new function: GetFileList.
  	- experimental perlmulticore support (see manpage).
          - Initialize is now a NOP and CleanUp automatically initializes again.
          - updated example decoder and documentation a bit.
  	- include ecb.h to deal with compiler builtins and endianness.
  	- some further µ-optimisations in hot code, especially for yEnc.
          - replace crc32 function by slice-by-16 version by Stephan Brumme,
            which should speed up yEnc en-/decoding.
          - yEnc: do not calculate two crcs per part, instead, combine
            the part crcs together to form the file crc.
          - yEnc: allow pcrc= in addition to pcrc32= for yenc trailers, as
            some draft mentions both and it is actually in active use.
          - yEnc: ignore crc32= on multiparts, except on the last part,
            which avoids spurious corruption warnings.
          - be more precise in documenting code licenses in COPYING.
          - convert constant creation to the method I normally use.
          - use common::sense.

OBS-URL: https://build.opensuse.org/request/show/780957
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Convert-UUlib?expand=0&rev=34
This commit is contained in:
2020-03-03 09:25:13 +00:00
committed by Git OBS Bridge
parent fe35340541
commit 4bac489eec
4 changed files with 31 additions and 4 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Sun Mar 1 03:09:16 UTC 2020 - <timueller+perl@suse.de>
- updated to 1.7
see /usr/share/doc/packages/perl-Convert-UUlib/Changes
1.7 Sat Feb 29 22:07:54 CET 2020
- new function: GetFileList.
- experimental perlmulticore support (see manpage).
- Initialize is now a NOP and CleanUp automatically initializes again.
- updated example decoder and documentation a bit.
- include ecb.h to deal with compiler builtins and endianness.
- some further µ-optimisations in hot code, especially for yEnc.
- replace crc32 function by slice-by-16 version by Stephan Brumme,
which should speed up yEnc en-/decoding.
- yEnc: do not calculate two crcs per part, instead, combine
the part crcs together to form the file crc.
- yEnc: allow pcrc= in addition to pcrc32= for yenc trailers, as
some draft mentions both and it is actually in active use.
- yEnc: ignore crc32= on multiparts, except on the last part,
which avoids spurious corruption warnings.
- be more precise in documenting code licenses in COPYING.
- convert constant creation to the method I normally use.
- use common::sense.
-------------------------------------------------------------------
Tue Feb 18 03:07:17 UTC 2020 - <timueller+perl@suse.de>