Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/uftpd/
Date: Mon, 03 Jan 2022 19:02:02
Message-Id: 1641236495.5b1d9775db5ad1db1cece6c55fddd5f01193410e.flow@gentoo
1 commit: 5b1d9775db5ad1db1cece6c55fddd5f01193410e
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Sat Dec 25 14:18:45 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 3 19:01:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b1d9775
7
8 net-ftp/uftpd: add 2.15
9
10 Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
11 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
12
13 net-ftp/uftpd/Manifest | 1 +
14 net-ftp/uftpd/uftpd-2.15.ebuild | 34 ++++++++++++++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/net-ftp/uftpd/Manifest b/net-ftp/uftpd/Manifest
18 index a9060bc4a421..6a68bd72fd8a 100644
19 --- a/net-ftp/uftpd/Manifest
20 +++ b/net-ftp/uftpd/Manifest
21 @@ -1 +1,2 @@
22 DIST uftpd-2.13.tar.xz 101128 BLAKE2B 2a948b993ed827b0bb53433c6dd9b49a7ddeb4d0b0a8e1e0061d417c9082094ab17e6116244af625de5ee2cbec4570eaa15ab0a68db95a959b471caade2b7aa2 SHA512 91152129ce1deb4db8e929aa75ffa88d69fe2d0ee1fd90242d1ecf02ee31a64bd3389d7d6699f9dab957d86389db87ecd9bc16dd37d0f8d0684007b43aa8a05c
23 +DIST uftpd-2.15.tar.xz 102820 BLAKE2B 19f80fb1cfa1194a154950c885cd26bf216014b3abae42d164e2c080dc7bf9c3810409bc989eec2a1ce559f0935415458cbd19abbd52dbf3816538d9463b754e SHA512 eaa867b6fe9b86786c8aec47224bda6aef5120845b67fa786c1663ec0b8437e5a0099fab8753db47feb9ab3a93de2d6519dba9dfb3d6ebefc8c4482113df45c1
24
25 diff --git a/net-ftp/uftpd/uftpd-2.15.ebuild b/net-ftp/uftpd/uftpd-2.15.ebuild
26 new file mode 100644
27 index 000000000000..abc498a16b38
28 --- /dev/null
29 +++ b/net-ftp/uftpd/uftpd-2.15.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="The no nonsense TFTP/FTP server"
37 +HOMEPAGE="https://github.com/troglobit/uftpd"
38 +SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE="test"
44 +RESTRICT="!test? ( test )"
45 +
46 +RDEPEND="
47 + >=dev-libs/libite-1.5
48 + >=dev-libs/libuev-2.2"
49 +
50 +DEPEND="
51 + ${RDEPEND}
52 + !net-misc/uftp
53 + !net-ftp/atftp
54 + !net-ftp/tftp-hpa[server(+)]
55 + test? (
56 + net-ftp/ftp
57 + net-ftp/tnftp
58 + >=net-ftp/tftp-hpa-5.2-r2[client]
59 + )"
60 +
61 +src_test() {
62 + # can't run the tests in parallel since the order matters
63 + emake -j 1 check
64 +}