summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.7.01.7.0Julian Andres Klode2018-10-071-1/+1
|
* Release 1.7.0~rc21.7.0_rc2Julian Andres Klode2018-09-201-1/+1
|
* Release 1.7.0~rc1 to unstable1.7.0_rc1Julian Andres Klode2018-09-181-1/+1
|
* Release 1.7.0~alpha31.7.0_alpha3Julian Andres Klode2018-08-201-1/+1
|
* Release 1.7.0~alpha21.7.0_alpha2Julian Andres Klode2018-07-091-1/+1
|
* Release 1.7.0~alpha11.7.0_alpha1Julian Andres Klode2018-06-251-1/+1
|
* Avoid implicitly promotion of float to doubleDavid Kalnischkies2018-05-051-0/+1
| | | | | Reported-By: gcc -Wdouble-promotion Gbp-Dch: Ignore
* Release 1.7.0~alpha0 to experimental1.7.0_alpha0Julian Andres Klode2018-04-181-1/+1
|
* Make libzstd optional in CMakeLists.txt, to aid cross-buildingJulian Andres Klode2018-04-181-1/+1
| | | | | This makes cross-building a bit easier, and also porting to other platforms.
* Release 1.6~rc11.6_rc1Julian Andres Klode2018-04-151-1/+1
|
* apt-pkg: Add support for zstdJulian Andres Klode2018-03-121-0/+6
| | | | | | | zstd is a compression algorithm developed by facebook. At level 19, it is about 6% worse in size than xz -6, but decompression is multiple times faster, saving about 40% install time, especially with eatmydata on cloud instances.
* Release 1.6~beta11.6_beta1Julian Andres Klode2018-02-261-1/+1
|
* Release 1.6~alpha71.6_alpha7Julian Andres Klode2018-01-181-1/+1
|
* Release 1.6~alpha61.6_alpha6Julian Andres Klode2018-01-031-1/+1
|
* Release 1.6~alpha51.6_alpha5Julian Andres Klode2017-11-121-1/+1
|
* Release 1.6~alpha4Julian Andres Klode2017-11-051-1/+1
|
* Release 1.6~alpha31.6_alpha3Julian Andres Klode2017-10-281-1/+1
|
* Release 1.6~alpha21.6_alpha2Julian Andres Klode2017-10-261-1/+1
|
* Release 1.6~alpha11.6_alpha1Julian Andres Klode2017-10-231-1/+1
|
* Sandbox methods with seccomp-BPF; except cdrom, gpgv, rshJulian Andres Klode2017-10-221-0/+5
| | | | | | | | | | | | This reduces the number of syscalls to about 140 from about 350 or so, significantly reducing security risks. Also change prepare-release to ignore the architecture lists in the build dependencies when generating the build-depends package for travis. We might want to clean up things a bit more and/or move it somewhere else.
* Drop curl method and apt-transport-https packageJulian Andres Klode2017-09-241-16/+0
| | | | | This automatically removes any old apt-transport-https, as apt now Breaks it unversioned.
* Release 1.51.5Julian Andres Klode2017-09-241-1/+1
|
* Release 1.5~rc41.5_rc4Julian Andres Klode2017-09-131-1/+1
|
* Release 1.5~rc31.5_rc3Julian Andres Klode2017-09-101-1/+1
|
* CMake: Mark BZip2, LZMA, and LZ4 as requiredJulian Andres Klode2017-09-101-3/+3
| | | | | | We do not actually test without these libraries, and it likely would not build without them due to them being NOTFOUND and CMake exiting with an error, so let's just mark them as required.
* Release 1.5~rc21.5_rc2Julian Andres Klode2017-09-091-1/+1
|
* Directly link against libudev on Linux systemsJulian Andres Klode2017-09-091-0/+5
| | | | | | | | | | | | | | | | | | | We previously dlopen()ed it, but it seems painful to do that without any real gain, except for possibly not having libudev in the address space and not having code #ifdefed for Linux. The latter means that we are a bit more likely to break stuff for non-Linux systems now if we play with udev, but at least we don't end up with it silently breaking because of a libudev ABI break. The existing function pointers in the struct were renamed and kept for compat purposes. Fixes Debian/apt#48 Also adjust prepare-release to strip [linux-any] from build-depends for travis.
* Release 1.5~rc11.5_rc1Julian Andres Klode2017-08-241-1/+1
|
* Release 1.5~beta21.5_beta2Julian Andres Klode2017-08-171-1/+1
|
* Use C++11 threading support instead of pthreadJulian Andres Klode2017-07-201-5/+1
| | | | This makes the code easier to read.
* Release 1.5~beta11.5_beta1Julian Andres Klode2017-07-031-1/+1
|
* Upload 1.5~alpha4 to experimental1.5_alpha4Julian Andres Klode2017-06-301-1/+1
|
* CMake: Do not allow FORCE_CURL=ON with WITH_CURL=OFFJulian Andres Klode2017-06-301-1/+4
| | | | | | | This makes no sense. We need both entries in the cache, as we check FORCE_CURL in the test suite. Gbp-Dch: ignore
* Switch to 'http' as the default https methodJulian Andres Klode2017-06-301-0/+1
| | | | | The old curl based method is still available as 'curl', 'curl+http', and 'curl+https'.
* Upload 1.5~alpha3 to experimental1.5_alpha3Julian Andres Klode2017-06-301-1/+1
|
* Upload 1.5~alpha2 to experimental1.5_alpha2Julian Andres Klode2017-06-291-1/+1
|
* Upload 1.5~alpha1 to experimental1.5_alpha1Julian Andres Klode2017-06-281-1/+1
|
* Allow building without curlJulian Andres Klode2017-06-281-3/+9
| | | | | This makes testing easier and prepares us for the transition.
* methods: Add HTTPS support to http method, using GnuTLSJulian Andres Klode2017-06-281-0/+4
| | | | | | | | | | | | | | The http method will eventually replace the curl-based https method, but for now, this is an opt-in experiment that can be enabled by setting Dir::Bin::Methods::https to "http". Known issues: - We do not support HTTPS proxies yet - We do not support proxying HTTPS connections yet (CONNECT) - IssuerCert and SslForceVersion are unsupported Gbp-Dch: Full
* Release 1.4.61.4.6Julian Andres Klode2017-06-011-1/+1
|
* Release 1.4.51.4.5Julian Andres Klode2017-05-311-1/+1
|
* Release 1.4.41.4.4Julian Andres Klode2017-05-161-1/+1
|
* Release 1.4.31.4.3Julian Andres Klode2017-05-111-1/+1
|
* Release 1.4.21.4.2Julian Andres Klode2017-05-041-1/+1
|
* Release 1.4.11.4.1Julian Andres Klode2017-04-241-1/+1
|
* Release the April Fools' release1.4Julian Andres Klode2017-04-011-1/+1
|
* Release 1.4~rc21.4_rc2Julian Andres Klode2017-02-221-1/+1
|
* CMake: Install statvfs.h to include/sys, not just include/Julian Andres Klode2017-02-121-1/+1
| | | | | We are including sys/statvfs.h, not statvfs.h, so make sure our dummy in the correct spot.
* Release 1.4~rc11.4_rc1Julian Andres Klode2017-02-061-1/+1
|
* Release 1.4~beta41.4_beta4Julian Andres Klode2017-01-171-1/+1
| | | | | | | We are basically frozen now, but (a) this wildcard thing is a bit "explosive" to call this RC and (b) you never know if you might need to add a new tiny feature and freeze can be long...