diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2008-10-20 19:00:19 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2008-10-20 19:00:19 +0000 |
commit | dbaf486b062c53f22ff59822c04907d3ab8e950f (patch) | |
tree | dfd07d73d06d72450031487eb5feabeb3b5df706 /net-misc/aria2 | |
parent | Minor bump for sys-apps/preload to improve init/conf scripts and remove unuse... (diff) | |
download | gentoo-2-dbaf486b062c53f22ff59822c04907d3ab8e950f.tar.gz gentoo-2-dbaf486b062c53f22ff59822c04907d3ab8e950f.tar.bz2 gentoo-2-dbaf486b062c53f22ff59822c04907d3ab8e950f.zip |
Version bump.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27 x86_64)
Diffstat (limited to 'net-misc/aria2')
-rw-r--r-- | net-misc/aria2/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/aria2/aria2-0.16.2.ebuild (renamed from net-misc/aria2/aria2-0.16.0.ebuild) | 3 | ||||
-rw-r--r-- | net-misc/aria2/files/0.16.0-missing_includes.patch | 21 |
3 files changed, 9 insertions, 24 deletions
diff --git a/net-misc/aria2/ChangeLog b/net-misc/aria2/ChangeLog index cba335edc7b6..03a096835549 100644 --- a/net-misc/aria2/ChangeLog +++ b/net-misc/aria2/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/aria2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.34 2008/10/16 09:53:41 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.35 2008/10/20 19:00:19 dev-zero Exp $ + +*aria2-0.16.2 (20 Oct 2008) + + 20 Oct 2008; Tiziano Müller <dev-zero@gentoo.org> + -files/0.16.0-missing_includes.patch, -aria2-0.16.0.ebuild, + +aria2-0.16.2.ebuild: + Version bump. 16 Oct 2008; Raúl Porcel <armin76@gentoo.org> aria2-0.15.3.ebuild: x86 stable wrt #240296 diff --git a/net-misc/aria2/aria2-0.16.0.ebuild b/net-misc/aria2/aria2-0.16.2.ebuild index 5fc525c8be85..9378cfd82fa4 100644 --- a/net-misc/aria2/aria2-0.16.0.ebuild +++ b/net-misc/aria2/aria2-0.16.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-0.16.0.ebuild,v 1.2 2008/10/10 13:24:17 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-0.16.2.ebuild,v 1.1 2008/10/20 19:00:19 dev-zero Exp $ EAPI="2" @@ -36,7 +36,6 @@ RDEPEND="${CDEPEND} S="${WORKDIR}/${MY_P}" src_prepare() { - epatch "${FILESDIR}/${PV}-missing_includes.patch" sed -i -e "s|/tmp|${T}|" test/*.cc || die "sed failed" } diff --git a/net-misc/aria2/files/0.16.0-missing_includes.patch b/net-misc/aria2/files/0.16.0-missing_includes.patch deleted file mode 100644 index 5cfa4a8968f7..000000000000 --- a/net-misc/aria2/files/0.16.0-missing_includes.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Naur aria2c-0.16.0.orig/src/BtRuntime.h aria2c-0.16.0/src/BtRuntime.h ---- aria2c-0.16.0.orig/src/BtRuntime.h 2008-10-10 14:25:15.000000000 +0200 -+++ aria2c-0.16.0/src/BtRuntime.h 2008-10-10 14:41:46.000000000 +0200 -@@ -45,7 +45,7 @@ - uint64_t uploadLengthAtStartup; - uint16_t port; - bool halt; -- unsigned int connections; -+ size_t connections; - bool _ready; - - static const unsigned int MIN_PEERS = 40; -@@ -81,7 +81,7 @@ - this->halt = halt; - } - -- unsigned int getConnections() const { return connections; } -+ size_t getConnections() const { return connections; } - - void increaseConnections() { connections++; } - |