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 5CAC1138334 for ; Fri, 18 Jan 2019 18:25:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 697F2E0BBB; Fri, 18 Jan 2019 18:25:56 +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 47B57E0BBB for ; Fri, 18 Jan 2019 18:25:55 +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 94FAB335D00 for ; Fri, 18 Jan 2019 18:25:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 913EC50B for ; Fri, 18 Jan 2019 18:25:51 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1547835848.94b80183925247ff0583c971b827b739c62e8317.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/detachtty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/detachtty/Manifest app-misc/detachtty/detachtty-11.0.0.ebuild X-VCS-Directories: app-misc/detachtty/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 94b80183925247ff0583c971b827b739c62e8317 X-VCS-Branch: master Date: Fri, 18 Jan 2019 18:25:51 +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: 387ccfc0-09d9-4515-a204-e61725d5ef89 X-Archives-Hash: ec724e0a52d51840a0f2b6b3afaf43e2 commit: 94b80183925247ff0583c971b827b739c62e8317 Author: William Hubbs sony com> AuthorDate: Fri Jan 18 18:22:39 2019 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Jan 18 18:24:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b80183 app-misc/detachtty: 11.0.0 version bump This was approved by monsieurp. Closes: https://bugs.gentoo.org/675700 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.56, Repoman-2.3.12 Signed-off-by: William Hubbs gentoo.org> app-misc/detachtty/Manifest | 1 + app-misc/detachtty/detachtty-11.0.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/app-misc/detachtty/Manifest b/app-misc/detachtty/Manifest index c7e55e917f3..7bac2284e2d 100644 --- a/app-misc/detachtty/Manifest +++ b/app-misc/detachtty/Manifest @@ -1 +1,2 @@ +DIST detachtty-11.0.0.tar.gz 23189 BLAKE2B 734489fe35acb5bfb381b8fee1b91d60f15ec795f2ba58f5855544d913957f7da4174c15583dc4090e397c5f562e78a23c1534a741a9812980f4a9cd2d2e291e SHA512 608d68ebe9b8fae55b4295b9c50d8e9065226dbb78818535af79bd2e70cc4a831820b6c673414289548b1063843b5dc80c8b7d2371dd716a16eceb20cd064a10 DIST detachtty_9.tar.gz 13081 BLAKE2B 28bb6a946d04717bc60ac7f65b791a8bb59a5ce1a2f7d7fabb63776538ade3fe046e874007effe7dd6ba7ebac8d739e16b0b0e2372ce4154385164d7939b498c SHA512 8ae7edc1a1c7727eb4d32a1a4327932e374ac838b441f34aee99cfe83e922f1d70383ab0aab2299808f28fea6229f5c122a7624b7ff992ab92b9c3f53483d035 diff --git a/app-misc/detachtty/detachtty-11.0.0.ebuild b/app-misc/detachtty/detachtty-11.0.0.ebuild new file mode 100644 index 00000000000..570e3b528b6 --- /dev/null +++ b/app-misc/detachtty/detachtty-11.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Attach/detach from interactive processes across the network" +HOMEPAGE="https://github.com/cosmos72/detachtty" +SRC_URI="https://github.com/cosmos72/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + dobin attachtty detachtty + doman "${PN}.1" + dosym detachtty.1 /usr/share/man/man1/attachtty.1 + einstalldocs +}