dev-php/PEAR-Net_SMTP: add 1.12.2

Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
Michael Orlitzky
2026-02-28 20:27:45 -05:00
parent d60330b9b3
commit 714100131b
2 changed files with 34 additions and 0 deletions
+1
View File
@@ -1 +1,2 @@
DIST Net_SMTP-1.12.1.tgz 17679 BLAKE2B 93b5ee1bec4deeaac1736e0230814c4c9a51d6594436d54187fefb3c14923ec6b2f8c70be1279dfd4ae300baecb87c4038da000e8bd7a13d8b96d5abe0ed4240 SHA512 5c2ed90157aac3ed140ebaa6ded8781e32d738de60ea6061f1e961effd133bedb4e9887cc3bf06bc78b133c6f9cd95c97a85a18a08a860ddeb28cfbfc62862c6
DIST Net_SMTP-1.12.2.tgz 17784 BLAKE2B a585051c13ab94c742ea955ac07bc7f2569638549c4b7bdf6c922560cf187d9c6e866ee2acdae219c173a2eccd521d73c848c309e619dac114afc071e3d4232c SHA512 af638b603831e038ee3e6b7dcf76f6aa7fdffe489db02a7e8585d71249099b2045060975df69b6487538ea7f335e2421d143d9f73661586ea40a338885d1a2f5
@@ -0,0 +1,33 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit php-pear-r2
MY_PN="${PN/PEAR-/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A PHP implementation of the SMTP protocol"
HOMEPAGE="https://pear.php.net/package/Net_SMTP"
S="${WORKDIR}/${MY_P}"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="examples sasl test"
RDEPEND="dev-lang/php:*
dev-php/PEAR-Net_Socket
dev-php/PEAR-PEAR
sasl? ( dev-php/PEAR-Auth_SASL )"
BDEPEND="test? ( ${RDEPEND} )"
RESTRICT="!test? ( test )"
src_install() {
use examples && HTML_DOCS=( examples )
php-pear-r2_src_install
}
src_test() {
pear run-tests tests || die
}