Rev |
Age |
Author |
Path |
Log message |
Diff |
Changes |
51 |
1904d 01h |
magnus |
/trunk/debian/ |
Bump Standards-Version to 4.4.0. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
50 |
1904d 01h |
magnus |
/trunk/debian/ |
testsuite.patch: Don't create testsuite/Makefile with autoconf; add
empty clean and distclean targets to it so that cleaning and building
twice works. |
|
/trunk/debian/changelog<br/>/trunk/debian/patches/testsuite.patch
|
49 |
1904d 01h |
magnus |
/trunk/debian/ |
Convert debian/rules to modern dh style and upgrade to compat level
11, enabling Multi-Arch. |
|
/trunk/debian/changelog<br/>/trunk/debian/compat<br/>/trunk/debian/control<br/>/trunk/debian/libtar-dev.install<br/>/trunk/debian/libtar0.install<br/>/trunk/debian/rules
|
48 |
2951d 20h |
magnus |
/trunk/debian/ |
Change Homepage to http://repo.or.cz/w/libtar.git since www.feep.net
is gone. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
47 |
2951d 21h |
magnus |
/trunk/debian/ |
Pass --build and --host to configure as appropriate to enable cross
compilation (Closes: #839883). |
|
/trunk/debian/changelog<br/>/trunk/debian/rules
|
46 |
2951d 21h |
magnus |
/trunk/debian/patches/ |
Actually, it's libtar/Makefile.in we need to patch, even if we don't package the libtar example program. |
|
/trunk/debian/patches/no_strip.patch
|
45 |
2951d 22h |
magnus |
/trunk/debian/ |
no_strip.patch: make install must not strip binaries; it breaks cross
compilation and is against policy with regard to build options. |
|
/trunk/debian/patches/no_strip.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
44 |
3022d 21h |
magnus |
/trunk/debian/ |
Bump Standards-Version to 3.9.8. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
43 |
3022d 21h |
magnus |
/trunk/debian/ |
Drop libtar/Makefile from examples, since it makes the build
unreproducible (saves $SHELL) and isn't enough to compile libtar.c
anyway. |
|
/trunk/debian/changelog<br/>/trunk/debian/libtar-dev.examples
|
41 |
3151d 23h |
magnus |
/trunk/debian/ |
Bump Standards-Version to 3.9.7. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
40 |
3151d 23h |
magnus |
/trunk/debian/ |
Don't bother checking for zlib, which is only used by the example binary (libtar). |
|
/trunk/debian/rules
|
39 |
3152d 00h |
magnus |
/trunk/debian/ |
testsuite.patch: Add a simple test (Closes: #737258). |
|
/trunk/debian/patches/testsuite.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
38 |
3681d 22h |
magnus |
/trunk/debian/ |
oldgnu_prefix.patch: Detect old-style GNU headers correctly (Closes:
#763119). Those appear in incremental archives and use the bytes that
the new-style headers use for the prefix field for other fields.
Thanks to Steinar H. Gunderson. |
|
/trunk/debian/patches/oldgnu_prefix.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
36 |
3843d 23h |
magnus |
/trunk/debian/ |
no_maxpathlen.patch: Half of the part of the patch modifying
compat/dirname.c was missing, causing libtar's dirname to always
return NULL (except in special circumstances). Actually make it work
(Closes: #745352). (The reason that libtar doesn't use libc's
dirname() and basename() on some or most platforms is that the code
doesn't work with destructive versions of these functions). |
|
/trunk/debian/changelog<br/>/trunk/debian/patches/no_maxpathlen.patch
|
33 |
3920d 19h |
magnus |
/trunk/debian/ |
th_get_size-unsigned-int.patch: Make the th_get_size() macro cast the
result from oct_to_int() to unsigned int. This is the right fix for
bug #725938 on 64-bit systems, where a specially crafted tar file
would not cause an integer overflow, but a memory allocation of almost
16 exbibytes, which would certainly fail outright without harm. |
|
/trunk/debian/patches/th_get_size-unsigned-int.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
32 |
3920d 19h |
magnus |
/trunk/debian/patches/ |
Add stdlib.h for malloc() in lib/decode.c |
|
/trunk/debian/patches/CVE-2013-4420.patch<br/>/trunk/debian/patches/no_maxpathlen.patch<br/>/trunk/debian/patches/no_static_buffers.patch
|
31 |
3920d 19h |
magnus |
/trunk/debian/ |
[SECURITY] CVE-2013-4420.patch: When the prefix field is in use, the
safer_name_suffix() function should certainly be applied to the
combination of it and the name field, not just on the name field. |
|
/trunk/debian/changelog<br/>/trunk/debian/patches/CVE-2013-4420.patch
|
30 |
3920d 19h |
magnus |
/trunk/debian/ |
no_maxpathlen.patch: Fix two grave bugs in the patch. First,
th_get_pathname would only allocate as much memory as was needed for
the first filename encountered, causing heap corruption when/if
encountering longer filenames later. Second, two variables were mixed
up in tar_append_tree(). Also, fix a potential memory leak and trim
the patch a bit. |
|
/trunk/debian/changelog<br/>/trunk/debian/patches/no_maxpathlen.patch
|
29 |
3920d 20h |
magnus |
/trunk/debian/ |
Correct patch name in changelog. |
|
/trunk/debian/changelog
|
25 |
3920d 21h |
magnus |
/trunk/debian/ |
Bump Standards-Version to 3.9.5. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
24 |
3920d 21h |
magnus |
/trunk/debian/ |
[SECURITY] CVE-2013-4420.patch: Strip out leading slashes and any
pathname prefix containing ".." components (Closes: #731860). This is
done in th_get_pathname() (as well as to symlink targets when
extracting symlinks), not merely when extracting files, which means
applications calling that function will not see the stored
filename. There is no way to disable this behaviour, but it can be
expected that one will be provided when the issue is solved upstream. |
|
/trunk/debian/patches/CVE-2013-4420.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
23 |
3922d 21h |
magnus |
/trunk/debian/ |
* no_static_buffers.patch: avoid using a static buffer in
th_get_pathname(). Taken from upstream. Needed for no_maxpathlen.patch.
* maxpathlen.patch: Fix FTBFS on Hurd by dynamically allocating path
names (Closes: #657116). Thanks to Svante Signell and Petter
Reinholdtsen. |
|
/trunk/debian/patches/no_maxpathlen.patch<br/>/trunk/debian/patches/no_static_buffers.patch<br/>/trunk/debian/patches/series
/trunk/debian/changelog
|
19 |
4049d 00h |
magnus |
/trunk/debian/ |
Bump Standards-Version to 3.9.4. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
18 |
4049d 00h |
magnus |
/trunk/debian/ |
[SECURITY] New upstream release. Fixes CVE-2013-4397: Integer
overflow (Closes: #725938). |
|
/trunk/debian/changelog
|
16 |
4207d 02h |
magnus |
/trunk/debian/patches/ |
Delete the patch series again. |
|
/trunk/debian/patches/series
|
15 |
4207d 02h |
magnus |
/trunk/debian/ |
New upstream release. |
|
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
13 |
4523d 19h |
magnus |
/trunk/debian/ |
debian/control: Add VCS fields; bump Standards-Version to 3.9.3. |
|
/trunk/debian/changelog<br/>/trunk/debian/control
|
12 |
4523d 19h |
magnus |
/trunk/debian/ |
Use dpkg-buildflags to set CFLAGS et al. |
|
/trunk/debian/changelog<br/>/trunk/debian/control<br/>/trunk/debian/rules
|
11 |
4523d 19h |
magnus |
/trunk/debian/ |
Updated debian/copyright. |
|
/trunk/debian/changelog<br/>/trunk/debian/copyright
|
10 |
4523d 19h |
magnus |
/trunk/debian/ |
Updated debian/watch to look for tags and corresponding snapshot
tarballs at above URL. |
|
/trunk/debian/changelog<br/>/trunk/debian/watch
|
9 |
4671d 20h |
magnus |
/trunk/debian/ |
debian/rules: Add build-indep and build-arch targets. |
|
/trunk/debian/changelog<br/>/trunk/debian/rules
|
8 |
4671d 20h |
magnus |
/trunk/debian/ |
* New upstream: Chris Frey has stepped up with the consent of the
original author, Mark Roth, and published an "official unofficial" git
repo at http://repo.or.cz/w/libtar.git, which I will use for the time
being.
* All patches have been incorporated or (in the case of
autoreconf.patch) made obsolete upstream. |
|
/trunk/debian/patches/autoreconf.patch<br/>/trunk/debian/patches/bad_ptrtoint.patch<br/>/trunk/debian/patches/libtool.patch<br/>/trunk/debian/patches/man_hyphen_minus.patch<br/>/trunk/debian/patches/memleak.patch<br/>/trunk/debian/patches/memleak2.patch
/trunk/debian/changelog<br/>/trunk/debian/patches/series
|
7 |
4671d 21h |
magnus |
/trunk/debian/ |
binary-indep doesn't need any prereqs. |
|
/trunk/debian/rules
|
6 |
4671d 22h |
magnus |
/trunk/debian/ |
[svn-inject] Applying Debian modifications (1.2.11-8) to trunk |
|
/trunk/debian/libtar0.install<br/>/trunk/debian/patches/man_hyphen_minus.patch
/trunk/debian/libtar.install
/trunk/debian/changelog<br/>/trunk/debian/control<br/>/trunk/debian/patches/libtool.patch<br/>/trunk/debian/patches/series
|
5 |
4671d 22h |
magnus |
/trunk/ |
[svn-inject] Applying Debian modifications (1.2.11-7) to trunk |
|
/trunk/debian/libtar-dev.examples<br/>/trunk/debian/patches<br/>/trunk/debian/patches/autoreconf.patch<br/>/trunk/debian/patches/bad_ptrtoint.patch<br/>/trunk/debian/patches/libtool.patch<br/>/trunk/debian/patches/memleak.patch<br/>/trunk/debian/patches/memleak2.patch<br/>/trunk/debian/patches/series<br/>/trunk/debian/source<br/>/trunk/debian/source/format<br/>/trunk/debian/watch
/trunk/aclocal.m4<br/>/trunk/autoconf<br/>/trunk/config.h.in<br/>/trunk/configure<br/>/trunk/configure.ac<br/>/trunk/debian/libtar-dev.dirs<br/>/trunk/debian/libtar-dev.files<br/>/trunk/debian/libtar.dirs<br/>/trunk/debian/libtar.files<br/>/trunk/lib<br/>/trunk/libtar<br/>/trunk/m4
/trunk/debian/changelog<br/>/trunk/debian/compat<br/>/trunk/debian/control<br/>/trunk/debian/rules
|
4 |
4671d 22h |
magnus |
/trunk/ |
[svn-inject] Applying Debian modifications (1.2.11-6) to trunk |
|
/trunk/aclocal.m4<br/>/trunk/autoconf<br/>/trunk/autoconf/aclocal.m4<br/>/trunk/autoconf/acsite.m4<br/>/trunk/config.h.in<br/>/trunk/configure<br/>/trunk/configure.ac<br/>/trunk/debian/libtar-dev.dirs<br/>/trunk/debian/libtar-dev.files<br/>/trunk/debian/libtar.dirs<br/>/trunk/debian/libtar.files<br/>/trunk/lib<br/>/trunk/lib/Makefile.in<br/>/trunk/lib/extract.c<br/>/trunk/lib/output.c<br/>/trunk/lib/wrapper.c<br/>/trunk/libtar<br/>/trunk/libtar/Makefile.in<br/>/trunk/libtar/libtar.c<br/>/trunk/m4<br/>/trunk/m4/libtool.m4<br/>/trunk/m4/ltoptions.m4<br/>/trunk/m4/ltsugar.m4<br/>/trunk/m4/ltversion.m4<br/>/trunk/m4/lt~obsolete.m4
/trunk/debian/libtar-dev.examples<br/>/trunk/debian/patches<br/>/trunk/debian/source<br/>/trunk/debian/watch
/trunk/debian/changelog<br/>/trunk/debian/compat<br/>/trunk/debian/control<br/>/trunk/debian/rules
|
3 |
4976d 20h |
magnus |
/trunk/debian/ |
[svn-inject] Applying Debian modifications (1.2.11-7) to trunk |
|
/trunk/debian<br/>/trunk/debian/changelog<br/>/trunk/debian/compat<br/>/trunk/debian/control<br/>/trunk/debian/copyright<br/>/trunk/debian/docs<br/>/trunk/debian/libtar-dev.examples<br/>/trunk/debian/libtar-dev.install<br/>/trunk/debian/libtar-dev.manpages<br/>/trunk/debian/libtar.install<br/>/trunk/debian/patches<br/>/trunk/debian/patches/autoreconf.patch<br/>/trunk/debian/patches/bad_ptrtoint.patch<br/>/trunk/debian/patches/libtool.patch<br/>/trunk/debian/patches/memleak.patch<br/>/trunk/debian/patches/memleak2.patch<br/>/trunk/debian/patches/series<br/>/trunk/debian/rules<br/>/trunk/debian/source<br/>/trunk/debian/source/format<br/>/trunk/debian/watch
|