From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-mail/sendEmail/Manifest | 1 + .../files/1.56-overzealous-verify-mode-check.patch | 11 ++++++++ .../files/1.56-overzealous-version-check.patch | 11 ++++++++ net-mail/sendEmail/metadata.xml | 15 +++++++++++ net-mail/sendEmail/sendEmail-1.56-r1.ebuild | 29 +++++++++++++++++++++ net-mail/sendEmail/sendEmail-1.56-r2.ebuild | 30 ++++++++++++++++++++++ 6 files changed, 97 insertions(+) create mode 100644 net-mail/sendEmail/Manifest create mode 100644 net-mail/sendEmail/files/1.56-overzealous-verify-mode-check.patch create mode 100644 net-mail/sendEmail/files/1.56-overzealous-version-check.patch create mode 100644 net-mail/sendEmail/metadata.xml create mode 100644 net-mail/sendEmail/sendEmail-1.56-r1.ebuild create mode 100644 net-mail/sendEmail/sendEmail-1.56-r2.ebuild (limited to 'net-mail/sendEmail') diff --git a/net-mail/sendEmail/Manifest b/net-mail/sendEmail/Manifest new file mode 100644 index 000000000000..9873671d3db8 --- /dev/null +++ b/net-mail/sendEmail/Manifest @@ -0,0 +1 @@ +DIST sendEmail-v1.56.tar.gz 29740 SHA256 6dd7ef60338e3a26a5e5246f45aa001054e8fc984e48202e4b0698e571451ac0 SHA512 0ee208857d6ffa4b9e0eecea0a94decf6d3935041fad23a084fba195f2016a18f3409086eefa8c35fb5dd01697eb29e4af0607754bf1c52bef727b8b670242fd WHIRLPOOL dba6ee5b5cb50f24fd065d840f01a5860ea1eb1012f95036cb47c579be99899d775b59e8169be127760a79106ed0bda1c2c21720b9c3041d1ee2fbf22d6172dd diff --git a/net-mail/sendEmail/files/1.56-overzealous-verify-mode-check.patch b/net-mail/sendEmail/files/1.56-overzealous-verify-mode-check.patch new file mode 100644 index 000000000000..f5c5c39ee5c7 --- /dev/null +++ b/net-mail/sendEmail/files/1.56-overzealous-verify-mode-check.patch @@ -0,0 +1,11 @@ +--- sendEmail 2013-05-21 16:44:18.000000000 +0100 ++++ sendEmail 2013-06-05 09:26:20.000000000 +0100 +@@ -1903,7 +1903,7 @@ + if ($conf{'tls_server'} == 1 and $conf{'tls_client'} == 1 and $opt{'tls'} =~ /^(yes|auto)$/) { + printmsg("DEBUG => Starting TLS", 2); + if (SMTPchat('STARTTLS')) { quit($conf{'error'}, 1); } +- if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3')) { ++ if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3', SSL_verify_mode => 0x00)) { + quit("ERROR => TLS setup failed: " . IO::Socket::SSL::errstr(), 1); + } + printmsg("DEBUG => TLS: Using cipher: ". $SERVER->get_cipher(), 3); diff --git a/net-mail/sendEmail/files/1.56-overzealous-version-check.patch b/net-mail/sendEmail/files/1.56-overzealous-version-check.patch new file mode 100644 index 000000000000..5cd47b06788d --- /dev/null +++ b/net-mail/sendEmail/files/1.56-overzealous-version-check.patch @@ -0,0 +1,11 @@ +--- a/sendEmail 2013-03-25 08:59:12.000000000 +0000 ++++ b/sendEmail 2013-03-25 08:59:22.000000000 +0000 +@@ -1903,7 +1903,7 @@ + if ($conf{'tls_server'} == 1 and $conf{'tls_client'} == 1 and $opt{'tls'} =~ /^(yes|auto)$/) { + printmsg("DEBUG => Starting TLS", 2); + if (SMTPchat('STARTTLS')) { quit($conf{'error'}, 1); } +- if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3 TLSv1')) { ++ if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3')) { + quit("ERROR => TLS setup failed: " . IO::Socket::SSL::errstr(), 1); + } + printmsg("DEBUG => TLS: Using cipher: ". $SERVER->get_cipher(), 3); diff --git a/net-mail/sendEmail/metadata.xml b/net-mail/sendEmail/metadata.xml new file mode 100644 index 000000000000..bff87badf2f3 --- /dev/null +++ b/net-mail/sendEmail/metadata.xml @@ -0,0 +1,15 @@ + + + + + chainsaw@gentoo.org + + SendEmail is a lightweight, completely command line based, +SMTP email agent. If you have the need to send email from a command prompt +this tool is perfect. It was designed to be used in bash scripts, Perl +programs, and web sites, but it is also quite useful in many other contexts. +SendEmail is written in Perl and is unique in that it requires NO SPECIAL +MODULES. It has a straight forward interface, making it very easy to use. + + + diff --git a/net-mail/sendEmail/sendEmail-1.56-r1.ebuild b/net-mail/sendEmail/sendEmail-1.56-r1.ebuild new file mode 100644 index 000000000000..44cb5a93ece2 --- /dev/null +++ b/net-mail/sendEmail/sendEmail-1.56-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_P="${PN}-v${PV}" + +inherit base + +DESCRIPTION="Command line based, SMTP email agent" +HOMEPAGE="http://caspian.dotconf.net/menu/Software/SendEmail/" +SRC_URI="http://caspian.dotconf.net/menu/Software/SendEmail/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="ssl" + +DEPEND="" +RDEPEND="dev-lang/perl + ssl? ( dev-perl/IO-Socket-SSL )" + +PATCHES=( "${FILESDIR}/${PV}-overzealous-version-check.patch" ) +S="${WORKDIR}/${MY_P}" + +src_install() { + dobin sendEmail || die "failed to install sendEmail script" + dodoc CHANGELOG README TODO +} diff --git a/net-mail/sendEmail/sendEmail-1.56-r2.ebuild b/net-mail/sendEmail/sendEmail-1.56-r2.ebuild new file mode 100644 index 000000000000..f2af001c0f86 --- /dev/null +++ b/net-mail/sendEmail/sendEmail-1.56-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_P="${PN}-v${PV}" + +inherit base + +DESCRIPTION="Command line based, SMTP email agent" +HOMEPAGE="http://caspian.dotconf.net/menu/Software/SendEmail/" +SRC_URI="http://caspian.dotconf.net/menu/Software/SendEmail/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="ssl" + +DEPEND="" +RDEPEND="dev-lang/perl + ssl? ( dev-perl/IO-Socket-SSL )" + +PATCHES=( "${FILESDIR}/${PV}-overzealous-version-check.patch" + "${FILESDIR}/${PV}-overzealous-verify-mode-check.patch" ) +S="${WORKDIR}/${MY_P}" + +src_install() { + dobin sendEmail || die "failed to install sendEmail script" + dodoc CHANGELOG README TODO +} -- cgit v1.2.3-65-gdbad