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 AAB2E1382C5 for ; Mon, 12 Feb 2018 00:09:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9C19E0DE9; Mon, 12 Feb 2018 00:09:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 994AFE0DE9 for ; Mon, 12 Feb 2018 00:09:12 +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 D6095335C3C for ; Mon, 12 Feb 2018 00:09:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90ED61DF for ; Mon, 12 Feb 2018 00:09:10 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1518394148.ca34771d3176f17c2189b657fb0e46f2b7f8f13d.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/ii/Manifest net-irc/ii/ii-1.8.ebuild X-VCS-Directories: net-irc/ii/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: ca34771d3176f17c2189b657fb0e46f2b7f8f13d X-VCS-Branch: master Date: Mon, 12 Feb 2018 00:09:10 +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: f8c2ba1f-dcee-41f3-a238-32fb34a4b961 X-Archives-Hash: 09333efc2c97cbf7b7ad5622ea0d3da5 commit: ca34771d3176f17c2189b657fb0e46f2b7f8f13d Author: Jeroen Roovers gentoo org> AuthorDate: Mon Feb 12 00:08:54 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Feb 12 00:09:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca34771d net-irc/ii: Version 1.8. Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-irc/ii/Manifest | 1 + net-irc/ii/ii-1.8.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/net-irc/ii/Manifest b/net-irc/ii/Manifest index caa8727424b..b3af42cfc78 100644 --- a/net-irc/ii/Manifest +++ b/net-irc/ii/Manifest @@ -1 +1,2 @@ DIST ii-1.7.tar.gz 10174 BLAKE2B 93af2dc182d77dbfca65cbee6c40aedabe9166be7abcb03c87e80e74273dea1e4dd875d86cf0e1dd04b4a10bfcd825ea9a8c109badb72cc877a484bdaea705d9 SHA512 1fa744bc9b4291b5c6c56e023d982aad59001137db6c7682284a2d63e649a32d558adbb85ae3407e312ae5436852b4278c2c522d4ef03f47cf54ea3a1f13ca90 +DIST ii-1.8.tar.gz 12326 BLAKE2B 7ae90d788aaec0a359ce46370f27c0ce62c6f77e8cda61d9d168d0ebd7de927a478b42a591631f2c193f3816b2a1b39cf79607326b073bcbeefe4291e0fb95f6 SHA512 2b41a0611ac76612c9333e8490709ee22d17506f0c5d7e680a0d8f3f8b511bd5b279555cf609c1543aba71948819369a3c306b1168086890aa49c145b7860e17 diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild new file mode 100644 index 00000000000..0a4bb49da75 --- /dev/null +++ b/net-irc/ii/ii-1.8.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="A minimalist FIFO and filesystem-based IRC client" +HOMEPAGE="https://tools.suckless.org/ii/" +SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" + +src_prepare() { + default + + sed -i \ + -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \ + -e '/^CC/d' \ + -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \ + config.mk || die + sed -i \ + -e 's|@${CC}|$(CC)|g' \ + Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin ii + dodoc CHANGES FAQ README + doman *.1 +}