Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
debian-packages
Tar
Commits
c246a0ef
Commit
c246a0ef
authored
6 years ago
by
Bdale Garbee
Browse files
Options
Downloads
Plain Diff
Merge branch 'kilobyte/tar-dfsg-debian' into dfsg-debian
parents
fc6569ff
415cac4c
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
debian/patches/zstd.patch
+16
-16
16 additions, 16 deletions
debian/patches/zstd.patch
with
16 additions
and
16 deletions
debian/patches/zstd.patch
+
16
−
16
View file @
c246a0ef
...
@@ -2,8 +2,8 @@ Description: zstd support
...
@@ -2,8 +2,8 @@ Description: zstd support
Accept .tar.zst and .tzst, including magic sniffing.
Accept .tar.zst and .tzst, including magic sniffing.
Forwarded: accepted upstream
Forwarded: accepted upstream
--- tar-1.
29b
.orig/configure.ac
--- tar-1.
30+dfsg
.orig/configure.ac
+++ tar-1.
29b
/configure.ac
+++ tar-1.
30+dfsg
/configure.ac
@@ -250,6 +250,7 @@
TAR_COMPR_PROGRAM(lzip)
@@ -250,6 +250,7 @@
TAR_COMPR_PROGRAM(lzip)
TAR_COMPR_PROGRAM(lzma)
TAR_COMPR_PROGRAM(lzma)
TAR_COMPR_PROGRAM(lzop)
TAR_COMPR_PROGRAM(lzop)
...
@@ -12,9 +12,9 @@ Forwarded: accepted upstream
...
@@ -12,9 +12,9 @@ Forwarded: accepted upstream
AC_MSG_CHECKING(for default archive format)
AC_MSG_CHECKING(for default archive format)
--- tar-1.
29b
.orig/doc/tar.1
--- tar-1.
30+dfsg
.orig/doc/tar.1
+++ tar-1.
29b
/doc/tar.1
+++ tar-1.
30+dfsg
/doc/tar.1
@@ -8
25
,6 +8
25
,10 @@
Filter the archive through
@@ -8
31
,6 +8
31
,10 @@
Filter the archive through
\fB\-Z\fR, \fB\-\-compress\fR, \fB\-\-uncompress\fR
\fB\-Z\fR, \fB\-\-compress\fR, \fB\-\-uncompress\fR
Filter the archive through
Filter the archive through
.BR compress (1).
.BR compress (1).
...
@@ -25,9 +25,9 @@ Forwarded: accepted upstream
...
@@ -25,9 +25,9 @@ Forwarded: accepted upstream
.SS Local file selection
.SS Local file selection
.TP
.TP
\fB\-\-add\-file\fR=\fIFILE\fR
\fB\-\-add\-file\fR=\fIFILE\fR
--- tar-1.
29b
.orig/src/buffer.c
--- tar-1.
30+dfsg
.orig/src/buffer.c
+++ tar-1.
29b
/src/buffer.c
+++ tar-1.
30+dfsg
/src/buffer.c
@@ -2
70
,7 +2
70
,8 @@
enum compress_type {
@@ -2
81
,7 +2
81
,8 @@
enum compress_type {
ct_lzip,
ct_lzip,
ct_lzma,
ct_lzma,
ct_lzop,
ct_lzop,
...
@@ -37,7 +37,7 @@ Forwarded: accepted upstream
...
@@ -37,7 +37,7 @@ Forwarded: accepted upstream
};
};
static enum compress_type archive_compression_type = ct_none;
static enum compress_type archive_compression_type = ct_none;
@@ -
299
,6 +3
00
,7 @@
static struct zip_magic const magic[] =
@@ -
310
,6 +3
11
,7 @@
static struct zip_magic const magic[] =
{ ct_lzma, 6, "\xFFLZMA" },
{ ct_lzma, 6, "\xFFLZMA" },
{ ct_lzop, 4, "\211LZO" },
{ ct_lzop, 4, "\211LZO" },
{ ct_xz, 6, "\xFD" "7zXZ" },
{ ct_xz, 6, "\xFD" "7zXZ" },
...
@@ -45,7 +45,7 @@ Forwarded: accepted upstream
...
@@ -45,7 +45,7 @@ Forwarded: accepted upstream
};
};
#define NMAGIC (sizeof(magic)/sizeof(magic[0]))
#define NMAGIC (sizeof(magic)/sizeof(magic[0]))
@@ -3
14
,6 +3
16
,7 @@
static struct zip_program zip_program[]
@@ -3
25
,6 +3
27
,7 @@
static struct zip_program zip_program[]
{ ct_lzma, XZ_PROGRAM, "-J" },
{ ct_lzma, XZ_PROGRAM, "-J" },
{ ct_lzop, LZOP_PROGRAM, "--lzop" },
{ ct_lzop, LZOP_PROGRAM, "--lzop" },
{ ct_xz, XZ_PROGRAM, "-J" },
{ ct_xz, XZ_PROGRAM, "-J" },
...
@@ -53,9 +53,9 @@ Forwarded: accepted upstream
...
@@ -53,9 +53,9 @@ Forwarded: accepted upstream
{ ct_none }
{ ct_none }
};
};
--- tar-1.
29b
.orig/src/suffix.c
--- tar-1.
30+dfsg
.orig/src/suffix.c
+++ tar-1.
29b
/src/suffix.c
+++ tar-1.
30+dfsg
/src/suffix.c
@@ -4
5
,6 +4
5
,7 @@
static struct compression_suffix compres
@@ -4
6
,6 +4
6
,7 @@
static struct compression_suffix compres
{ S(lzo, LZOP) },
{ S(lzo, LZOP) },
{ S(xz, XZ) },
{ S(xz, XZ) },
{ S(txz, XZ) }, /* Slackware */
{ S(txz, XZ) }, /* Slackware */
...
@@ -63,8 +63,8 @@ Forwarded: accepted upstream
...
@@ -63,8 +63,8 @@ Forwarded: accepted upstream
{ NULL }
{ NULL }
#undef S
#undef S
#undef __CAT2__
#undef __CAT2__
--- tar-1.
29b
.orig/src/tar.c
--- tar-1.
30+dfsg
.orig/src/tar.c
+++ tar-1.
29b
/src/tar.c
+++ tar-1.
30+dfsg
/src/tar.c
@@ -348,7 +348,8 @@
enum
@@ -348,7 +348,8 @@
enum
WARNING_OPTION,
WARNING_OPTION,
XATTR_OPTION,
XATTR_OPTION,
...
@@ -94,7 +94,7 @@ Forwarded: accepted upstream
...
@@ -94,7 +94,7 @@ Forwarded: accepted upstream
case ARGP_KEY_HELP_EXTRA:
case ARGP_KEY_HELP_EXTRA:
{
{
const char *tstr;
const char *tstr;
@@ -167
3
,6 +167
9
,10 @@
parse_opt (int key, char *arg, struct ar
@@ -167
0
,6 +167
6
,10 @@
parse_opt (int key, char *arg, struct ar
set_use_compress_program_option (COMPRESS_PROGRAM, args->loc);
set_use_compress_program_option (COMPRESS_PROGRAM, args->loc);
break;
break;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment