History log of /haiku/src/bin/package/command_recompress.cpp (Results 1 – 9 of 9)
Revision Date Author Comments
# 268f99dd 22-Dec-2021 Niels Sascha Reedijk <niels.reedijk@gmail.com>

Merge branch 'master' into dev/netservices


# fd276f19 26-Oct-2021 Augustin Cavalier <waddlesplash@gmail.com>

package command: -z now takes an argument to specify the compression method.

The upcoming change to use zstd by default will make the -z no-argument
variant obsolete, so instead we need to support p

package command: -z now takes an argument to specify the compression method.

The upcoming change to use zstd by default will make the -z no-argument
variant obsolete, so instead we need to support passing "zstd" or "zlib"
to actually indicate the compression method we want to use.

show more ...


# fd7438ac 26-Oct-2021 Augustin Cavalier <waddlesplash@gmail.com>

package command: Remove duplicate code in recompress.


# 81375d4f 11-Jul-2018 Jérôme Duval <jerome.duval@gmail.com>

Package Kit: add Zstd compression.

Change-Id: Idbdb7cf1bde659046a88ea69a76e3b5fc4cd7013
Reviewed-on: https://review.haiku-os.org/323
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 03b36acb 13-Jul-2014 Ingo Weinhold <ingo_weinhold@gmx.de>

package recompress: Small cleanup


# e1e6c124 13-Jul-2014 Ingo Weinhold <ingo_weinhold@gmx.de>

BPackageWriter::Recompress(): Change param to BPositionIO*

Besides that this is a nicer interface, it allows us to get a the HPKG
header as a side effect of initializing the reader, thus preventing

BPackageWriter::Recompress(): Change param to BPositionIO*

Besides that this is a nicer interface, it allows us to get a the HPKG
header as a side effect of initializing the reader, thus preventing
seeking backward in the file. This makes "package recompress - <file>"
work.

show more ...


# 3cc6297e 12-Jul-2014 Ingo Weinhold <ingo_weinhold@gmx.de>

package recompress: Add stdin/stdout support

stdin doesn't work quite yet. We'll need to convince the BPackageReader
to skip parsing the TOC and package attributes sections.


# f9ecc54e 12-Jul-2014 Ingo Weinhold <ingo_weinhold@gmx.de>

package: Explicitly use B_HPKG_COMPRESSION_NONE


# a629567a 08-Jul-2014 Ingo Weinhold <ingo_weinhold@gmx.de>

package: Add command recompress

The streaming feature for -0 is missing yet.