net-ftp/uftpd: add 2.15

Signed-off-by: Oz N Tiram <oz.tiram@gmail.com>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Oz N Tiram
2021-12-25 15:18:45 +01:00
committed by Florian Schmaus
parent 058153ff50
commit 5b1d9775db
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST uftpd-2.13.tar.xz 101128 BLAKE2B 2a948b993ed827b0bb53433c6dd9b49a7ddeb4d0b0a8e1e0061d417c9082094ab17e6116244af625de5ee2cbec4570eaa15ab0a68db95a959b471caade2b7aa2 SHA512 91152129ce1deb4db8e929aa75ffa88d69fe2d0ee1fd90242d1ecf02ee31a64bd3389d7d6699f9dab957d86389db87ecd9bc16dd37d0f8d0684007b43aa8a05c
DIST uftpd-2.15.tar.xz 102820 BLAKE2B 19f80fb1cfa1194a154950c885cd26bf216014b3abae42d164e2c080dc7bf9c3810409bc989eec2a1ce559f0935415458cbd19abbd52dbf3816538d9463b754e SHA512 eaa867b6fe9b86786c8aec47224bda6aef5120845b67fa786c1663ec0b8437e5a0099fab8753db47feb9ab3a93de2d6519dba9dfb3d6ebefc8c4482113df45c1

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="The no nonsense TFTP/FTP server"
HOMEPAGE="https://github.com/troglobit/uftpd"
SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/libite-1.5
>=dev-libs/libuev-2.2"
DEPEND="
${RDEPEND}
!net-misc/uftp
!net-ftp/atftp
!net-ftp/tftp-hpa[server(+)]
test? (
net-ftp/ftp
net-ftp/tnftp
>=net-ftp/tftp-hpa-5.2-r2[client]
)"
src_test() {
# can't run the tests in parallel since the order matters
emake -j 1 check
}