commit:     ffd369f2e8879f47e4e884b17aec440823400d29
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 15 15:49:29 2017 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Nov 15 15:49:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=ffd369f2

net-misc/wget: migrated to gx86 (again)

 net-misc/wget/Manifest                             |   1 -
 .../wget-1.17.1-gnulib-cygwin-sys_select.patch     |  22 -----
 net-misc/wget/metadata.xml                         |  15 ---
 net-misc/wget/wget-1.18.ebuild                     | 104 ---------------------
 4 files changed, 142 deletions(-)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
deleted file mode 100644
index 209346ea7c..0000000000
--- a/net-misc/wget/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wget-1.18.tar.xz 1922376 SHA256 
b5b55b75726c04c06fe253daec9329a6f1a3c0c1878e3ea76ebfebc139ea9cc1 SHA512 
a3f6fe2f44a8d797659d55cffaf81eb82b770c96222a0ee29bc4931b13846f8d8b9a07806f2197723c873a1248922d59cca5a81869661d9c6c3107447c184338
 WHIRLPOOL 
a9e467f8bd17909485329103c17a27da345421257ce82fdf77ff2e00bdae50b13570506a1887300868e99b608c71598596ee260d86879aaeddad14cbb5ec634d

diff --git a/net-misc/wget/files/wget-1.17.1-gnulib-cygwin-sys_select.patch 
b/net-misc/wget/files/wget-1.17.1-gnulib-cygwin-sys_select.patch
deleted file mode 100644
index 0755136179..0000000000
--- a/net-misc/wget/files/wget-1.17.1-gnulib-cygwin-sys_select.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00065.html
-
---- gnulib/lib/sys_select.in.h.orig    2014-08-03 15:31:22.000000000 +0200
-+++ gnulib/lib/sys_select.in.h 2016-05-19 12:57:51.243064700 +0200
-@@ -81,7 +81,7 @@
-    Also, Mac OS X, AIX, HP-UX, IRIX, Solaris, Interix declare select()
-    in <sys/time.h>.
-    But avoid namespace pollution on glibc systems.  */
--# ifndef __GLIBC__
-+# if !(defined __GLIBC__ || defined __NEWLIB__)
- #  include <sys/time.h>
- # endif
- 
-@@ -102,7 +102,7 @@
-    But avoid namespace pollution on glibc systems.
-    Do this after the include_next (for the sake of OpenBSD 5.0) but before
-    the split double-inclusion guard (for the sake of Solaris).  */
--#if !(defined __GLIBC__ && !defined __UCLIBC__)
-+#if !((defined __GLIBC__ || defined __NEWLIB__) && !defined __UCLIBC__)
- # include <signal.h>
- #endif
- 

diff --git a/net-misc/wget/metadata.xml b/net-misc/wget/metadata.xml
deleted file mode 100644
index 85b6f1cfa8..0000000000
--- a/net-misc/wget/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
- <maintainer type="project">
- <email>[email protected]</email>
- <name>Gentoo Base System</name>
- </maintainer>
-<use>
- <flag name="ntlm">Enable support for NTLM (Windows-based) authorization</flag>
- <flag name="uuid">Generate UUIDs for the WARC (Web ARChive file format) using 
libuuid; otherwise use a simple RNG (random number generator)</flag>
-</use>
-<upstream>
- <remote-id type="cpe">cpe:/a:gnu:wget</remote-id>
-</upstream>
-</pkgmetadata>

diff --git a/net-misc/wget/wget-1.18.ebuild b/net-misc/wget/wget-1.18.ebuild
deleted file mode 100644
index 7535427622..0000000000
--- a/net-misc/wget/wget-1.18.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_4 )
-
-inherit flag-o-matic python-any-r1 toolchain-funcs eutils
-
-DESCRIPTION="Network utility to retrieve files from the WWW"
-HOMEPAGE="https://www.gnu.org/software/wget/";
-SRC_URI="mirror://gnu/wget/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
-IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
-REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
-
-LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
-       pcre? ( dev-libs/libpcre[static-libs(+)] )
-       ssl? (
-               gnutls? ( net-libs/gnutls:0=[static-libs(+)] )
-               !gnutls? (
-                       !libressl? ( dev-libs/openssl:0=[static-libs(+)] )
-                       libressl? ( dev-libs/libressl[static-libs(+)] )
-               )
-       )
-       uuid? ( sys-apps/util-linux[static-libs(+)] )
-       zlib? ( sys-libs/zlib[static-libs(+)] )"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
-DEPEND="${RDEPEND}
-       app-arch/xz-utils
-       virtual/pkgconfig
-       static? ( ${LIB_DEPEND} )
-       test? (
-               ${PYTHON_DEPS}
-               dev-lang/perl
-               dev-perl/HTTP-Daemon
-               dev-perl/HTTP-Message
-               dev-perl/IO-Socket-SSL
-       )
-       nls? ( sys-devel/gettext )"
-
-DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
-
-pkg_setup() {
-       use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-1.17.1-gnulib-cygwin-sys_select.patch
-       # revert some hack that breaks linking, bug #585924
-       if [[ ${CHOST} == *-darwin* ]] \
-       || [[ ${CHOST} == *-solaris* ]] \
-       || [[ ${CHOST} == *-uclibc* ]] \
-       || [[ ${CHOST} == *-cygwin* ]] \
-       ; then
-               sed -i \
-                       -e 's/^  LIBICONV=$/:/' \
-                       configure || die
-       fi
-}
-
-src_configure() {
-       # fix compilation on Solaris, we need filio.h for FIONBIO as used in
-       # the included gnutls -- force ioctl.h to include this header
-       [[ ${CHOST} == *-solaris* ]] && append-cppflags -DBSD_COMP=1
-
-       if use static ; then
-               append-ldflags -static
-               tc-export PKG_CONFIG
-               PKG_CONFIG+=" --static"
-       fi
-       econf \
-               --disable-assert \
-               --disable-rpath \
-               $(use_with ssl ssl $(usex gnutls gnutls openssl)) \
-               $(use_enable ssl opie) \
-               $(use_enable ssl digest) \
-               $(use_enable idn iri) \
-               $(use_enable ipv6) \
-               $(use_enable nls) \
-               $(use_enable ntlm) \
-               $(use_enable pcre) \
-               $(use_enable debug) \
-               $(use_with uuid libuuid) \
-               $(use_with zlib)
-}
-
-src_test() {
-       emake check
-}
-
-src_install() {
-       default
-
-       sed -i \
-               -e "s:/usr/local/etc:${EPREFIX}/etc:g" \
-               "${ED}"/etc/wgetrc \
-               "${ED}"/usr/share/man/man1/wget.1 \
-               "${ED}"/usr/share/info/wget.info
-}

Reply via email to