From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36DB5139085 for ; Sun, 18 Dec 2016 15:33:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91DC821C06A; Sun, 18 Dec 2016 15:33:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 718BC21C06A for ; Sun, 18 Dec 2016 15:33:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 445BE34106E for ; Sun, 18 Dec 2016 15:33:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B0C924BA for ; Sun, 18 Dec 2016 15:33:39 +0000 (UTC) From: "Maxim Koltsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maxim Koltsov" Message-ID: <1481994874.8af5f47d02439a17b9d1453bc9ca83b093a9e4c1.maksbotan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/wgetpaste/wgetpaste-2.28-r1.ebuild X-VCS-Directories: app-text/wgetpaste/ X-VCS-Committer: maksbotan X-VCS-Committer-Name: Maxim Koltsov X-VCS-Revision: 8af5f47d02439a17b9d1453bc9ca83b093a9e4c1 X-VCS-Branch: master Date: Sun, 18 Dec 2016 15:33:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 09129623-2722-4a1a-9d14-817f4d782a82 X-Archives-Hash: 68f59ea9bad397af0dc003d997680c91 commit: 8af5f47d02439a17b9d1453bc9ca83b093a9e4c1 Author: Nicholas Vinson gmail com> AuthorDate: Sat Dec 17 17:09:16 2016 +0000 Commit: Maxim Koltsov gentoo org> CommitDate: Sat Dec 17 17:14:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af5f47d app-text/wgetpaste: Add wget SSL support Many of the paste bins wgetpaste supports require SSL. This includes the current default paste bin. Without wget SSL support, these paste bins are not accessible. This change allows wgetpaste to depend on ssl-enabled wget. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-text/wgetpaste/wgetpaste-2.28-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild b/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild new file mode 100644 index 00000000..6c3eff1 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +DESCRIPTION="Command-line interface to various pastebins" +HOMEPAGE="http://wgetpaste.zlin.dk/" +SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="+ssl" + +DEPEND="" +RDEPEND="net-misc/wget[ssl?]" + +src_prepare() { + sed -i -e "s:/etc:\"${EPREFIX}\"/etc:g" wgetpaste || die + default +} + +src_install() { + dobin ${PN} + insinto /usr/share/zsh/site-functions + doins _wgetpaste +}