diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-misc/aget | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-misc/aget')
-rw-r--r-- | net-misc/aget/Manifest | 1 | ||||
-rw-r--r-- | net-misc/aget/aget-0.4.1-r1.ebuild | 29 | ||||
-rw-r--r-- | net-misc/aget/files/aget-0.4.1-r1.patch | 88 | ||||
-rw-r--r-- | net-misc/aget/metadata.xml | 12 |
4 files changed, 130 insertions, 0 deletions
diff --git a/net-misc/aget/Manifest b/net-misc/aget/Manifest new file mode 100644 index 000000000000..06934808d3f7 --- /dev/null +++ b/net-misc/aget/Manifest @@ -0,0 +1 @@ +DIST aget-0.4.1.tar.gz 12783 RMD160 4a23d722b0e4d6c632c40006aa5e67d5acfd4b88 SHA1 6f7bc1676fd506207a1a168c587165b902d9d609 SHA256 d17393c7f44aab38028ae71f14b572ba1839b6e085fb2092b6ebe68bc931df4d diff --git a/net-misc/aget/aget-0.4.1-r1.ebuild b/net-misc/aget/aget-0.4.1-r1.ebuild new file mode 100644 index 000000000000..c29fea9cad97 --- /dev/null +++ b/net-misc/aget/aget-0.4.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=3 + +inherit eutils toolchain-funcs + +DESCRIPTION="multithreaded HTTP download accelerator" +HOMEPAGE="http://www.enderunix.org/aget/" +SRC_URI="http://www.enderunix.org/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${PF}.patch +} + +src_compile() { + emake CC="$(tc-getCC)" || die +} + +src_install() { + emake DESTDIR="${ED}" install || die + dodoc AUTHORS ChangeLog README* THANKS TODO || die +} diff --git a/net-misc/aget/files/aget-0.4.1-r1.patch b/net-misc/aget/files/aget-0.4.1-r1.patch new file mode 100644 index 000000000000..fe804901528c --- /dev/null +++ b/net-misc/aget/files/aget-0.4.1-r1.patch @@ -0,0 +1,88 @@ + +Subsequent snprintf calls treat the buffer as having size GETREQSIZ, so +drop the subtraction. Fix for http://bugs.gentoo.org/337874 by Kevin Pyle + +--- aget-0.4.1/Aget.c ++++ aget-0.4.1/Aget.c +@@ -86,7 +86,7 @@ + } + + /* Get the starting time, prepare GET format string, and start the threads */ +- fmt = (char *)calloc(GETREQSIZ - 2, sizeof(char)); ++ fmt = (char *)calloc(GETREQSIZ, sizeof(char)); + time(&t_start); + for (i = 0; i < nthreads; i++) { + soffset = calc_offset(req->clength, i, nthreads); +@@ -139,7 +139,7 @@ + + nthreads = h->nthreads; + +- fmt = (char *)calloc(GETREQSIZ - 2, sizeof(char)); ++ fmt = (char *)calloc(GETREQSIZ, sizeof(char)); + + wthread = (struct thread_data *)malloc(nthreads * sizeof(struct thread_data)); + memcpy(req, &h->req, sizeof(struct request)); + +Fix useless memset that set 0 bytes to the value of GETRECVSIZ, rather +than setting GETRECVSIZ bytes to the value of 0. By Kevin Pyle. + +--- aget-0.4.1/Download.c ++++ aget-0.4.1/Download.c +@@ -107,7 +107,7 @@ + pthread_mutex_unlock(&bwritten_mutex); + + while (td->offset < foffset) { +- memset(rbuf, GETRECVSIZ, 0); ++ memset(rbuf, 0, GETRECVSIZ); + dr = recv(sd, rbuf, GETRECVSIZ, 0); + if ((td->offset + dr) > foffset) + dw = pwrite(td->fd, rbuf, foffset - td->offset, td->offset); +--- aget-0.4.1/Head.c 2010-09-20 03:41:27.236019179 +0200 ++++ aget-0.4.1/Head.c 2010-09-20 03:43:00.087098655 +0200 +@@ -1,5 +1,4 @@ + #ifndef SOLARIS +-#define _XOPEN_SOURCE 500 + #endif + + +--- aget-0.4.1/Misc.c ++++ aget-0.4.1/Misc.c +@@ -129,7 +129,7 @@ + fprintf(stderr, "\t\t-h this screen\n"); + fprintf(stderr, "\t\t-v version info\n"); + fprintf(stderr, "\n"); +- fprintf(stderr, "http//www.enderunix.org/aget/\n"); ++ fprintf(stderr, "http://www.enderunix.org/aget/\n"); + } + + /* reverse a given string */ +--- aget-0.4.1/Makefile ++++ aget-0.4.1/Makefile +@@ -2,20 +2,21 @@ + # http://www.enderunix.org/aget/ + + OBJS = main.o Aget.o Misc.o Head.o Signal.o Download.o Resume.o +-CFLAGS = -g -W +-LDFLAGS = -pthread ++CFLAGS += ++LDFLAGS += -pthread + CC = gcc + STRIP = strip + +-all: $(OBJS) +- $(CC) -o aget $(OBJS) $(LDFLAGS) ++all: aget ++aget: $(OBJS) ++ $(LINK.o) $^ $(OUTPUT_OPTION) + + strip: $(all) + $(STRIP) aget + + install: +- cp -f aget /usr/local/bin/aget +- cp -f aget.1 /usr/share/man/man1/ ++ install -m 0755 -D aget $(DESTDIR)/usr/bin/aget ++ install -m 0644 -D aget.1 $(DESTDIR)/usr/share/man/man1/aget.1 + + clean: + rm -f aget *.o core.* *~ diff --git a/net-misc/aget/metadata.xml b/net-misc/aget/metadata.xml new file mode 100644 index 000000000000..d89103058ab7 --- /dev/null +++ b/net-misc/aget/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>xmw@gentoo.org</email> + <name>Michael Weber</name> +</maintainer> +<longdescription>Aget fetches HTTP URLs in a manner similar to wget, but segments the retrieval into multiple parts to increase download speed. It can be many times as fast as wget in some circumstances.</longdescription> +<longdescription lang="ja">Aget 㯠wget 風ã®æ¯èã㧠URL ä¸ãã HTTP +çµç±ã§åãå¯ãã¾ãããç°ãªãç¹ã¨ãã¦ã¯ãã¦ã³ãã¼ãã®ã¹ãã¼ãã¢ããã®ãã対象ãåå²ãã¾ããåå²ãã¦ã +wget ã¨å¤ãããªãå ´åãããã¾ãã</longdescription> +</pkgmetadata> |