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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A361158091 for ; Thu, 16 Jun 2022 23:07:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9217DE0893; Thu, 16 Jun 2022 23:07:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77C03E0893 for ; Thu, 16 Jun 2022 23:07:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95A093415B2 for ; Thu, 16 Jun 2022 23:07:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 502364F7 for ; Thu, 16 Jun 2022 23:07:51 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1655420867.f5296d73a7179526b8d737014bd8e68ece7e4aba.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/reptyr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/reptyr/Manifest app-misc/reptyr/reptyr-0.9.0.ebuild X-VCS-Directories: app-misc/reptyr/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: f5296d73a7179526b8d737014bd8e68ece7e4aba X-VCS-Branch: master Date: Thu, 16 Jun 2022 23:07: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: 32b97709-2073-4ef2-bc37-4eaa8a3e1599 X-Archives-Hash: dca792722fe77a3361c1c8720e560cd0 commit: f5296d73a7179526b8d737014bd8e68ece7e4aba Author: Lars Wendler gentoo org> AuthorDate: Thu Jun 16 23:07:41 2022 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jun 16 23:07:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5296d73 app-misc/reptyr: Bump to version 0.9.0 Signed-off-by: Lars Wendler gentoo.org> app-misc/reptyr/Manifest | 1 + app-misc/reptyr/reptyr-0.9.0.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/app-misc/reptyr/Manifest b/app-misc/reptyr/Manifest index c89832a0568c..86b6b31f3f6e 100644 --- a/app-misc/reptyr/Manifest +++ b/app-misc/reptyr/Manifest @@ -1 +1,2 @@ DIST reptyr-0.8.0.tar.gz 32239 BLAKE2B eb3d966c06df710ea27a421bceaca0c91e342cb981567eedc9125e5dd2dc937be294dc212ed9b3021d5e5d75e1011fa4a39eaf93c152c24ef7c5098f8edd9018 SHA512 880d899a2b6df3c33909dc70ce0a58f413b2e2eec2e212abc709348345d48294cf2e39f5891ab4b1fa24e69b54effe99c1b8ab03b448bfd7097e20498e7e85dc +DIST reptyr-0.9.0.tar.gz 32589 BLAKE2B 2673128d90f302a5591466314446257b654f727efce24e2c1a68a2f876a7b385905acb5a4648945ce15e90e2419b4aee5a8a88377dd8229f3b130ba5ba858e46 SHA512 a59670449cb597657dbb244228fd4246142190615ce1a6369f11b8c99cb12d8e2bedb4efd7cdc301a4f7c18d29e8799eea8f14d062a8ad7b7c025034cba66ac7 diff --git a/app-misc/reptyr/reptyr-0.9.0.ebuild b/app-misc/reptyr/reptyr-0.9.0.ebuild new file mode 100644 index 000000000000..d36f18cfc3bd --- /dev/null +++ b/app-misc/reptyr/reptyr-0.9.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit bash-completion-r1 toolchain-funcs flag-o-matic vcs-snapshot + +DESCRIPTION="A utility to attach a running program to a new terminal" +HOMEPAGE="https://github.com/nelhage/reptyr" +SRC_URI="https://github.com/nelhage/${PN}/archive/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +RESTRICT="test" + +src_prepare() { + default + # respect CFLAGS + sed -i '/^override/d' Makefile || die +} + +src_compile() { + append-cppflags -D_GNU_SOURCE + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + dodoc ChangeLog NOTES README.md + newbashcomp reptyr{.bash,} +}