commit: 92466323d74624259caaa7d6b6146f56b5060a24 Author: Filip Kobierski <fkobi <AT> pm <DOT> me> AuthorDate: Mon May 12 10:43:00 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed May 21 21:43:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92466323
net-proxy/piper: bump EAPI also remove "A " from DESCRIPTION Signed-off-by: Filip Kobierski <fkobi <AT> pm.me> Part-of: https://github.com/gentoo/gentoo/pull/42047 Signed-off-by: Sam James <sam <AT> gentoo.org> net-proxy/piper/piper-1.14-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/net-proxy/piper/piper-1.14-r1.ebuild b/net-proxy/piper/piper-1.14-r1.ebuild new file mode 100644 index 000000000000..c1e89505539f --- /dev/null +++ b/net-proxy/piper/piper-1.14-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="Tool for manipulating SOCKS5 servers" +HOMEPAGE="http://www.qwirx.com/" +SRC_URI="http://www.qwirx.com/piper/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +src_compile() { + append-flags -g -Wall + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + dobin piper + dodoc README +}