Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/uftpd/
Date: Wed, 13 Jun 2018 08:26:49
Message-Id: 1528877852.5cfb77e256ba06778d647feacfb53e12086046c0.mgorny@gentoo
1 commit: 5cfb77e256ba06778d647feacfb53e12086046c0
2 Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 8 20:56:19 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 13 08:17:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfb77e2
7
8 net-ftp/uftpd: bump to version 2.5
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/8766
12
13 net-ftp/uftpd/Manifest | 1 +
14 net-ftp/uftpd/uftpd-2.5.ebuild | 25 +++++++++++++++++++++++++
15 2 files changed, 26 insertions(+)
16
17 diff --git a/net-ftp/uftpd/Manifest b/net-ftp/uftpd/Manifest
18 index d30638d3ea8..9bd0743a0c4 100644
19 --- a/net-ftp/uftpd/Manifest
20 +++ b/net-ftp/uftpd/Manifest
21 @@ -1 +1,2 @@
22 DIST uftpd-2.4.tar.xz 173132 BLAKE2B 5bb1d90a2353e34d1a2346fa09c9843e598827875cc2c09beabf3916e34693dca17bc0d1f00773ce823cb79685204a20fa16d7abc8d4c88085dd1bdafc7e5acc SHA512 1ed9ed4429a3e7a08ac902ebac95610e58164f3528a8fc00a745c0545aae4e13d3bcbf597bcae6ba045b24ee9ba3c39ec0617068920bcc4bbc3f5ef246d4c404
23 +DIST uftpd-2.5.tar.xz 178652 BLAKE2B 888f6a6be9752d36470de0aa0dd3ec5ffeca335099897fb9a03a0573752257b88d5662f53cfb8c078f2b8efe3dd384b12833def2bea38c5440915b60b3832e78 SHA512 7f7f80f0a291cf57d68570de62c663804af0fa0fa4f0e5e199280c97d0d662881a05d1e0cc908f33e85cc8e07d825813e63271a94a69cd2e6bb974820566ccac
24
25 diff --git a/net-ftp/uftpd/uftpd-2.5.ebuild b/net-ftp/uftpd/uftpd-2.5.ebuild
26 new file mode 100644
27 index 00000000000..69e14845f65
28 --- /dev/null
29 +++ b/net-ftp/uftpd/uftpd-2.5.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 1999-2018 Gentoo Foundation
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 ~x86"
43 +IUSE=""
44 +
45 +DEPEND="
46 + !net-misc/uftp
47 + !net-ftp/atftp
48 + dev-libs/libite
49 + dev-libs/libuev"
50 +
51 +RDEPEND="${DEPEND}"
52 +
53 +src_install() {
54 + emake DESTDIR="${D}" install doc_DATA=README.md
55 +}