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 C3FA81382C5 for ; Sun, 21 Jun 2020 20:08:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E054DE0829; Sun, 21 Jun 2020 20:08:11 +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 B538DE0829 for ; Sun, 21 Jun 2020 20:08:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8B68434FF42 for ; Sun, 21 Jun 2020 20:08:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0D102AE for ; Sun, 21 Jun 2020 20:08:07 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1592770071.a03cfa9c5525075820e806ca3e3f8a5efbb08b60.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/endlessh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/endlessh/endlessh-9999.ebuild X-VCS-Directories: net-misc/endlessh/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: a03cfa9c5525075820e806ca3e3f8a5efbb08b60 X-VCS-Branch: master Date: Sun, 21 Jun 2020 20:08:07 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 272f3b4e-5f06-4d53-8f5e-e602151839d9 X-Archives-Hash: b94a6d533e42fec152981bcb4cd4914b commit: a03cfa9c5525075820e806ca3e3f8a5efbb08b60 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Jun 21 20:03:15 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Jun 21 20:07:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03cfa9c net-misc/endlessh: sync live ebuild Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Georgy Yakovlev gentoo.org> net-misc/endlessh/endlessh-9999.ebuild | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/net-misc/endlessh/endlessh-9999.ebuild b/net-misc/endlessh/endlessh-9999.ebuild index cf5249abf5f..89e86696bb7 100644 --- a/net-misc/endlessh/endlessh-9999.ebuild +++ b/net-misc/endlessh/endlessh-9999.ebuild @@ -13,7 +13,7 @@ if [ ${PV} == "9999" ] ; then EGIT_REPO_URI="https://github.com/skeeto/${PN}.git" else SRC_URI="https://github.com/skeeto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ppc64 x86" fi LICENSE="Unlicense" @@ -24,10 +24,6 @@ DEPEND="" RDEPEND="" BDEPEND="" -PATCHES=( - "${FILESDIR}"/${PN}-1.1-syslog-help.patch -) - src_prepare() { default @@ -35,7 +31,7 @@ src_prepare() { sed -i \ -e 's/^CC/CC?/' \ - -e 's/^CFLAGS =/CFLAGS +=/' \ + -e 's/^CFLAGS =/CFLAGS +=/' \ -e 's/ -Os//' \ -e 's/^LDFLAGS/LDFLAGS?/' \ -e 's/^PREFIX/PREFIX?/' \ @@ -50,14 +46,11 @@ src_install() { einstalldocs - newinitd "${FILESDIR}"/endlessh.initd-r1 endlessh - newconfd "${FILESDIR}"/endlessh.confd-r1 endlessh + newinitd "${FILESDIR}"/endlessh.initd-r2 endlessh + newconfd "${FILESDIR}"/endlessh.confd-r2 endlessh systemd_dounit util/endlessh.service - insinto /etc/logrotate.d - newins "${FILESDIR}/logrotated-r1" endlessh - insinto /usr/share/"${PN}" doins util/{pivot.py,schema.sql} }