2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-04-11 01:51:06 by Jason Bacon | Files touched by this commit (1) |
Log message:
devel/py-xopen: Release to pkgsrc-users@
xopen is used only by cutadapt, which has been replaced by
fastq-trim in my toolbox
|
2024-02-10 14:04:23 by Jason Bacon | Files touched by this commit (4) |
Log message:
devel/py-xopen: Update to 1.9.0nb1
Add zstandard support
Simple matter of installing py-zstandard as a runtime dependency
|
2024-01-31 12:53:35 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-xopen: updated to 1.9.0
v1.9.0
* The python-isal compression backend is now only used for compression
levels 1 and 2. Contrary to other backends, python-isal level 0 gave
compressed rather than uncompressed data in gzip format. Level 3 on
python-isal did not provide better compression than level 2.
* PipedCompressionReader/Writer now derive from the `io.IOBase
<https://docs.python.org/3/library/io.html#io.IOBase>`_ abstract class.
* The gzip default compression level is now 1 when no value is provided
by the calling function. The default used to be determined by the backend.
* xopen now uses zlib-ng when available and applicable.
* Piped ``igzip`` is no longer used as a (de)compression backend as
python-isal's threaded mode is a better choice in all use cases.
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-10-21 19:51:45 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-xopen: updated to 1.8.0
v1.8.0 (2023-11-03)
xopen now defers to the isal.igzip_threaded module rather than piping to \
external programs in applicable cases. This makes reading and writing to gzip \
files using threads more efficient.
Support for Python 3.7 is dropped and support for Python 3.12 is added.
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2022-11-08 12:36:20 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-xopen: updated to 1.7.0
1.7.0:
Unknown changes
|
2022-08-11 08:29:32 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-xopen: updated to 1.6.0
v1.6.0 (2022-08-10)
When writing gzip files, the timestamp and name of the original file is omitted \
(equivalent to using gzip --no-name (or -n) on the command line). This allows \
files to be written in a reproducible manner.
|
2022-07-14 15:36:38 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-xopen: updated to 1.5.0
v1.5.0 (2022-03-23)
* Dropped Python 3.6 support
* Added support for piping into and from an external xz process. Contributed by \
@fanninpm.
* Support setting the xz compression level. Contributed by @tsibley.
v1.4.0 (2022-01-14)
Add seek() and tell() to the PipedCompressionReader classes (for Windows \
compatibility)
v1.3.0 (2022-01-10)
xopen is now available on Windows (in addition to Linux and macOS).
For greater compatibility with the built-in open() function, xopen() has gained \
the parameters encoding, errors and newlines with the same meaning as in open(). \
Unlike built-in open(), though, encoding is UTF-8 by default.
A parameter format has been added that allows to force the compression file format.
|