Adding upstream version 0.27.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ee83909940
commit
dd388b11ed
10 changed files with 37 additions and 34 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2025-03-04 Antonio Diaz Diaz <antonio@gnu.org>
|
||||||
|
|
||||||
|
* Version 0.27.1 released.
|
||||||
|
* common_mutex.h: #include <pthread.h>. (Reported by Michal Górny).
|
||||||
|
|
||||||
2025-02-28 Antonio Diaz Diaz <antonio@gnu.org>
|
2025-02-28 Antonio Diaz Diaz <antonio@gnu.org>
|
||||||
|
|
||||||
* Version 0.27 released.
|
* Version 0.27 released.
|
||||||
|
|
|
@ -39,7 +39,7 @@ arg_parser.o : arg_parser.h
|
||||||
archive_reader.o : tarlz.h lzip_index.h archive_reader.h
|
archive_reader.o : tarlz.h lzip_index.h archive_reader.h
|
||||||
common.o : tarlz.h
|
common.o : tarlz.h
|
||||||
common_decode.o : tarlz.h arg_parser.h decode.h
|
common_decode.o : tarlz.h arg_parser.h decode.h
|
||||||
common_mutex.o : common_mutex.h
|
common_mutex.o : tarlz.h common_mutex.h
|
||||||
compress.o : tarlz.h arg_parser.h
|
compress.o : tarlz.h arg_parser.h
|
||||||
create.o : tarlz.h arg_parser.h create.h
|
create.o : tarlz.h arg_parser.h create.h
|
||||||
create_lz.o : tarlz.h arg_parser.h common_mutex.h create.h
|
create_lz.o : tarlz.h arg_parser.h common_mutex.h create.h
|
||||||
|
@ -49,7 +49,7 @@ decode_lz.o : tarlz.h arg_parser.h lzip_index.h archive_reader.h \
|
||||||
delete.o : tarlz.h arg_parser.h lzip_index.h archive_reader.h
|
delete.o : tarlz.h arg_parser.h lzip_index.h archive_reader.h
|
||||||
delete_lz.o : tarlz.h arg_parser.h lzip_index.h archive_reader.h
|
delete_lz.o : tarlz.h arg_parser.h lzip_index.h archive_reader.h
|
||||||
exclude.o : tarlz.h
|
exclude.o : tarlz.h
|
||||||
extended.o : tarlz.h
|
extended.o : tarlz.h common_mutex.h
|
||||||
lzip_index.o : tarlz.h lzip_index.h
|
lzip_index.o : tarlz.h lzip_index.h
|
||||||
main.o : tarlz.h arg_parser.h
|
main.o : tarlz.h arg_parser.h
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
#define _FILE_OFFSET_BITS 64
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
#include <pthread.h>
|
|
||||||
|
|
||||||
#include "tarlz.h"
|
#include "tarlz.h"
|
||||||
#include "common_mutex.h"
|
#include "common_mutex.h"
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
void xinit_mutex( pthread_mutex_t * const mutex );
|
void xinit_mutex( pthread_mutex_t * const mutex );
|
||||||
void xinit_cond( pthread_cond_t * const cond );
|
void xinit_cond( pthread_cond_t * const cond );
|
||||||
void xdestroy_mutex( pthread_mutex_t * const mutex );
|
void xdestroy_mutex( pthread_mutex_t * const mutex );
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -6,7 +6,7 @@
|
||||||
# to copy, distribute, and modify it.
|
# to copy, distribute, and modify it.
|
||||||
|
|
||||||
pkgname=tarlz
|
pkgname=tarlz
|
||||||
pkgversion=0.27
|
pkgversion=0.27.1
|
||||||
progname=tarlz
|
progname=tarlz
|
||||||
srctrigger=doc/${pkgname}.texi
|
srctrigger=doc/${pkgname}.texi
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include <cerrno>
|
#include <cerrno>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
#include <pthread.h>
|
|
||||||
#include <stdint.h> // for lzlib.h
|
#include <stdint.h> // for lzlib.h
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include <cerrno>
|
#include <cerrno>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
#include <pthread.h>
|
|
||||||
#include <stdint.h> // for lzlib.h
|
#include <stdint.h> // for lzlib.h
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <utime.h>
|
#include <utime.h>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
||||||
.TH TARLZ "1" "March 2025" "tarlz 0.27" "User Commands"
|
.TH TARLZ "1" "March 2025" "tarlz 0.27.1" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
tarlz \- creates tar archives with multimember lzip compression
|
tarlz \- creates tar archives with multimember lzip compression
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -11,7 +11,7 @@ File: tarlz.info, Node: Top, Next: Introduction, Up: (dir)
|
||||||
Tarlz Manual
|
Tarlz Manual
|
||||||
************
|
************
|
||||||
|
|
||||||
This manual is for Tarlz (version 0.27, 28 February 2025).
|
This manual is for Tarlz (version 0.27.1, 4 March 2025).
|
||||||
|
|
||||||
* Menu:
|
* Menu:
|
||||||
|
|
||||||
|
@ -1344,29 +1344,29 @@ Concept index
|
||||||
|
|
||||||
Tag Table:
|
Tag Table:
|
||||||
Node: Top216
|
Node: Top216
|
||||||
Node: Introduction1356
|
Node: Introduction1354
|
||||||
Node: Invoking tarlz4179
|
Node: Invoking tarlz4177
|
||||||
Ref: --data-size13265
|
Ref: --data-size13263
|
||||||
Ref: --bsolid17924
|
Ref: --bsolid17922
|
||||||
Ref: --missing-crc21532
|
Ref: --missing-crc21530
|
||||||
Node: Argument syntax23897
|
Node: Argument syntax23895
|
||||||
Node: Creating backups safely25673
|
Node: Creating backups safely25671
|
||||||
Node: Portable character set28057
|
Node: Portable character set28055
|
||||||
Node: File format28709
|
Node: File format28707
|
||||||
Ref: key_crc3235756
|
Ref: key_crc3235754
|
||||||
Ref: ustar-uid-gid39052
|
Ref: ustar-uid-gid39050
|
||||||
Ref: ustar-mtime39859
|
Ref: ustar-mtime39857
|
||||||
Node: Amendments to pax format41866
|
Node: Amendments to pax format41864
|
||||||
Ref: crc3242574
|
Ref: crc3242572
|
||||||
Ref: flawed-compat43885
|
Ref: flawed-compat43883
|
||||||
Node: Program design47870
|
Node: Program design47868
|
||||||
Node: Multi-threaded decoding51797
|
Node: Multi-threaded decoding51795
|
||||||
Ref: mt-listing54198
|
Ref: mt-listing54196
|
||||||
Ref: mt-extraction55236
|
Ref: mt-extraction55234
|
||||||
Node: Minimum archive sizes56542
|
Node: Minimum archive sizes56540
|
||||||
Node: Examples58671
|
Node: Examples58669
|
||||||
Node: Problems61166
|
Node: Problems61164
|
||||||
Node: Concept index61721
|
Node: Concept index61719
|
||||||
|
|
||||||
End Tag Table
|
End Tag Table
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
@finalout
|
@finalout
|
||||||
@c %**end of header
|
@c %**end of header
|
||||||
|
|
||||||
@set UPDATED 28 February 2025
|
@set UPDATED 4 March 2025
|
||||||
@set VERSION 0.27
|
@set VERSION 0.27.1
|
||||||
|
|
||||||
@dircategory Archiving
|
@dircategory Archiving
|
||||||
@direntry
|
@direntry
|
||||||
|
|
Loading…
Add table
Reference in a new issue