diff options
author | seb <seb@pkgsrc.org> | 2017-07-10 21:33:15 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2017-07-10 21:33:15 +0000 |
commit | 59999ac3fb8d4aed05b6519b592ab037b6625768 (patch) | |
tree | 6ab37a94dbf304051acf63be7054f99b9e857a47 | |
parent | 9abf48f833baf0e12f78501d8e61164579485108 (diff) | |
download | pkgsrc-59999ac3fb8d4aed05b6519b592ab037b6625768.tar.gz |
Update aria2 to 1.32.0. Changes since the last upstream packaged version 1.31.0:
aria2 1.32.0
============
Release Note
------------
This release fixes several minor bugs, and spelling mistakes.
Changes
-------
* Clarify --max-concurrent-downloads option
GH-833
* Fix compile error with toolchain which lacks IPV6_TCLASS
GH-895
* Log directed URI in notice log level
GH-884
* Fix typo
Patch from Tse Kit Yam
GH-879, GH-899
* Spelling fixes
Patch from klemens
GH-870
* Remove unused Android parts
These parts where unused after merging
https://github.com/aria2/aria2/pull/736
Patch from Fredrik Fornwall
GH-868
* Save control file early
GH-859
* Update links in Dockerfile.raspberrypi
Some links used in Dockerfile.raspberrypi are not accessible
anymore, because they were pointing to old versions of some source
packages and new versions were released. This commit fixes this by
changing the links to point to the newest versions.
Patch from Michał Leśniewski
GH-860
* Propagate disk full error on pre-allocation to last error code
GH-856
-rw-r--r-- | net/aria2/Makefile | 11 | ||||
-rw-r--r-- | net/aria2/distinfo | 10 | ||||
-rw-r--r-- | net/aria2/options.mk | 4 |
3 files changed, 12 insertions, 13 deletions
diff --git a/net/aria2/Makefile b/net/aria2/Makefile index abee941b2b6..f691890a311 100644 --- a/net/aria2/Makefile +++ b/net/aria2/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.69 2017/04/22 21:03:47 adam Exp $ +# $NetBSD: Makefile,v 1.70 2017/07/10 21:33:15 seb Exp $ -DISTNAME= aria2-1.31.0 -PKGREVISION= 1 +DISTNAME= aria2-1.32.0 +#PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=aria2/} EXTRACT_SUFX= .tar.xz @@ -14,8 +14,8 @@ LICENSE= gnu-gpl-v2 GITHUB_PROJECT= aria2 GITHUB_RELEASE= release-${PKGVERSION_NOREV} -# Minimum requirement is 4.6.4 -GCC_REQD+= 4.6 +# Minimum requirement is 4.8.3 +GCC_REQD+= 4.8 USE_LANGUAGES= c c++ USE_LIBTOOL= yes @@ -29,7 +29,6 @@ CONFIGURE_ARGS+= --with-libexpat CONFIGURE_ARGS+= --without-libxml2 CONFIGURE_ARGS.SunOS+= --disable-epoll -GCC_REQD+= 3.4 TEST_TARGET= check USE_FEATURES= getopt_long snprintf diff --git a/net/aria2/distinfo b/net/aria2/distinfo index f0190590b77..d217054f165 100644 --- a/net/aria2/distinfo +++ b/net/aria2/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.40 2017/02/25 21:39:19 leot Exp $ +$NetBSD: distinfo,v 1.41 2017/07/10 21:33:15 seb Exp $ -SHA1 (aria2-1.31.0.tar.xz) = c649d9e07266c8fb9dfcbd9d8f3e8c8987b6df44 -RMD160 (aria2-1.31.0.tar.xz) = 86da4e38dcdc78848567c904503b743dcf35aaaf -SHA512 (aria2-1.31.0.tar.xz) = a0a1312522324dc0bc24cf1a5cceaef49d40445668ed0bd98dc3cdd5e2edb428552e97504c8c072f5d1180d6bbd252de01d290ef5c94d1803b8ade330bc2710f -Size (aria2-1.31.0.tar.xz) = 1501388 bytes +SHA1 (aria2-1.32.0.tar.xz) = 91afc96d5ac8b5fb96ff221fba1fe6109b6f8b17 +RMD160 (aria2-1.32.0.tar.xz) = e27a64665fccb580b48b4c3b50801c6fd9c71b82 +SHA512 (aria2-1.32.0.tar.xz) = 7c14c395fab3024191145b5c965c6c89211cd36ce405cafeef350aa6df9850bee9de65e756eab7d0bdeccb9409b829ea21552b9aac0166f50dcc17501b3dca8b +Size (aria2-1.32.0.tar.xz) = 1502192 bytes diff --git a/net/aria2/options.mk b/net/aria2/options.mk index 3bfcc2edaaf..5170c3c91d8 100644 --- a/net/aria2/options.mk +++ b/net/aria2/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.16 2015/04/14 15:50:38 ryoon Exp $ +# $NetBSD: options.mk,v 1.17 2017/07/10 21:33:15 seb Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.aria2 @@ -37,7 +37,7 @@ USE_TOOLS+= pkg-config ### .if !empty(PKG_OPTIONS:Msqlite) CONFIGURE_ARGS+= --with-sqlite3 -CONFIGURE_ARGS+= --with-sqlite3-prefix=${BUILDLINK_PREFIX.sqlite} +CONFIGURE_ARGS+= --with-sqlite3-prefix=${BUILDLINK_PREFIX.sqlite3} . include "../../databases/sqlite3/buildlink3.mk" USE_TOOLS+= pkg-config .else |