From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ABD91138334 for ; Wed, 13 Jun 2018 08:26:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77F1BE0823; Wed, 13 Jun 2018 08:26:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CCB1E0823 for ; Wed, 13 Jun 2018 08:26:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6CDF9335C60 for ; Wed, 13 Jun 2018 08:26:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA3AC2C5 for ; Wed, 13 Jun 2018 08:26:44 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1528877852.5cfb77e256ba06778d647feacfb53e12086046c0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/uftpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/uftpd/Manifest net-ftp/uftpd/uftpd-2.5.ebuild X-VCS-Directories: net-ftp/uftpd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5cfb77e256ba06778d647feacfb53e12086046c0 X-VCS-Branch: master Date: Wed, 13 Jun 2018 08:26:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 177ccd65-fb43-46dc-a795-fc12ab8ebd78 X-Archives-Hash: 37fd9322700c978ad2b59b099c6cdcfb commit: 5cfb77e256ba06778d647feacfb53e12086046c0 Author: Oz Tiram gmail com> AuthorDate: Fri Jun 8 20:56:19 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 13 08:17:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfb77e2 net-ftp/uftpd: bump to version 2.5 Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8766 net-ftp/uftpd/Manifest | 1 + net-ftp/uftpd/uftpd-2.5.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/net-ftp/uftpd/Manifest b/net-ftp/uftpd/Manifest index d30638d3ea8..9bd0743a0c4 100644 --- a/net-ftp/uftpd/Manifest +++ b/net-ftp/uftpd/Manifest @@ -1 +1,2 @@ DIST uftpd-2.4.tar.xz 173132 BLAKE2B 5bb1d90a2353e34d1a2346fa09c9843e598827875cc2c09beabf3916e34693dca17bc0d1f00773ce823cb79685204a20fa16d7abc8d4c88085dd1bdafc7e5acc SHA512 1ed9ed4429a3e7a08ac902ebac95610e58164f3528a8fc00a745c0545aae4e13d3bcbf597bcae6ba045b24ee9ba3c39ec0617068920bcc4bbc3f5ef246d4c404 +DIST uftpd-2.5.tar.xz 178652 BLAKE2B 888f6a6be9752d36470de0aa0dd3ec5ffeca335099897fb9a03a0573752257b88d5662f53cfb8c078f2b8efe3dd384b12833def2bea38c5440915b60b3832e78 SHA512 7f7f80f0a291cf57d68570de62c663804af0fa0fa4f0e5e199280c97d0d662881a05d1e0cc908f33e85cc8e07d825813e63271a94a69cd2e6bb974820566ccac diff --git a/net-ftp/uftpd/uftpd-2.5.ebuild b/net-ftp/uftpd/uftpd-2.5.ebuild new file mode 100644 index 00000000000..69e14845f65 --- /dev/null +++ b/net-ftp/uftpd/uftpd-2.5.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# 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 ~x86" +IUSE="" + +DEPEND=" + !net-misc/uftp + !net-ftp/atftp + dev-libs/libite + dev-libs/libuev" + +RDEPEND="${DEPEND}" + +src_install() { + emake DESTDIR="${D}" install doc_DATA=README.md +}