axel/axel.spec
Sebastian Wagner 37ebfc01b4 - update to version 2.17.3:
- Builds now use canonical host triplet instead of `uname -s`
 - Fixed build on Darwin / Mac OS X
 - Fixed download loops caused by last byte pointer being off by one
 - Fixed linking issues (i18n and posix threads)
 - Updated build instructions
 - Code cleanup
 - Added autoconf-archive to building instructions
- update to version 2.17.2:
 - Fixed HTTP request-ranges to be zero-based
 - Fixed typo "too may" -> "too many"
 - Replaced malloc + memset calls with calloc
 - Sanitize progress bar buffer len passed to memset
- update to version 2.17.1:
 - Fixed comparison error in axel_divide
 - Make sure maxconns is at least 1
- update to version 2.17:
 - Fixed composition of URLs in redirections
 - Fixed request range calculation
 - Updated all translations
 - Updated build documentation
 - Major code cleanup
  -  Cleanup of alternate progress output
  -  Removed global string buffers
  -  Fixed min and max macros
  -  Moved User-Agent header to conf->add_header
  -  Use integers for speed ratio and delay calculation
 - Added support for parsing IPv6 literal hostname
 - Fixed filename extraction from URL
 - Fixed request-target message to proxy

OBS-URL: https://build.opensuse.org/package/show/network:utilities/axel?expand=0&rev=17
2019-06-09 19:23:25 +00:00

55 lines
1.6 KiB
RPMSpec

#
# spec file for package axel
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{!?license: %global license %doc}
Name: axel
Version: 2.17.3
Release: 0
Summary: Lightweight Download Accelerator
License: GPL-2.0-or-later
Group: Productivity/Networking/Other
Url: https://github.com/axel-download-accelerator/axel
Source: https://github.com/axel-download-accelerator/axel/releases/download/v%{version}/%{name}-%{version}.tar.xz
BuildRequires: pkgconfig(openssl)
%description
Axel tries to accelerate HTTP/FTP downloading process by using multiple
connections for one file. It can use multiple mirrors for a download. Axel has
no dependencies and is lightweight, so it might be useful as a wget clone on
byte-critical systems.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
%make_install
%find_lang axel
%files -f axel.lang
%doc ChangeLog NEWS README AUTHORS
%license COPYING
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{ext_man}
%changelog