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 3F31A158020 for ; Sat, 24 Dec 2022 12:55:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D100EE08F7; Sat, 24 Dec 2022 12:55:30 +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 B5D72E08F7 for ; Sat, 24 Dec 2022 12:55:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 70A43335DB7 for ; Sat, 24 Dec 2022 12:55:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AECC17F9 for ; Sat, 24 Dec 2022 12:55:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1671886439.5f75c542b0c22207a17baf8f2dd635fdb1db8094.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pps-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/pps-tools/Manifest net-misc/pps-tools/pps-tools-1.0.3.ebuild X-VCS-Directories: net-misc/pps-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5f75c542b0c22207a17baf8f2dd635fdb1db8094 X-VCS-Branch: master Date: Sat, 24 Dec 2022 12:55:26 +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: 4a71f93b-4897-4ee0-acd9-e69b1ddac90e X-Archives-Hash: 61fe6edb2f74eda6bf762e17da3cfc8d commit: 5f75c542b0c22207a17baf8f2dd635fdb1db8094 Author: Sam James gentoo org> AuthorDate: Sat Dec 24 12:53:59 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 24 12:53:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f75c542 net-misc/pps-tools: add 1.0.3 Signed-off-by: Sam James gentoo.org> net-misc/pps-tools/Manifest | 1 + net-misc/pps-tools/pps-tools-1.0.3.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/net-misc/pps-tools/Manifest b/net-misc/pps-tools/Manifest index 0aab6ab8a197..a97efc6454f4 100644 --- a/net-misc/pps-tools/Manifest +++ b/net-misc/pps-tools/Manifest @@ -1 +1,2 @@ DIST pps-tools-1.0.2.tar.gz 12701 BLAKE2B bc60a9ea94bb57bcc2b7870da433ef04fbbc30e5c4d880b719a8e7fcabba0bef2996c086e6993b879f2515cd0c685659bfed5371904401e35120ae1e9dc0891a SHA512 fa86455ece83700d5a1c522082f78ed324927fb9f53d3cf5f615a566a39e54938a41e82b6d4ae23d57c273fb923f96db4ca2d071199795d020952703afa53fcb +DIST pps-tools-1.0.3.tar.gz 12949 BLAKE2B a57be9e7e3c9969a6bfd91bbdd618ab875c9c92cad3a2206653f2719896cf293e87ca941484d60d9af22ae1a64daa10689621504edc652a31b2bf6af8741eb64 SHA512 0906180a95346f315e784c7e28e1b5efc2a70a76b7489337a5fc215d174eac37ba58bdc1bc96fe2a0f9083334ed96b9b09ade2a252652095bab7ced5504deeea diff --git a/net-misc/pps-tools/pps-tools-1.0.3.ebuild b/net-misc/pps-tools/pps-tools-1.0.3.ebuild new file mode 100644 index 000000000000..24021efe31a8 --- /dev/null +++ b/net-misc/pps-tools/pps-tools-1.0.3.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="User-space tools for LinuxPPS" +HOMEPAGE="https://github.com/redlab-i/pps-tools" +SRC_URI="https://github.com/redlab-i/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86" + +src_configure() { + tc-export CC + + default +}