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 EF7041581C1 for ; Tue, 9 Jul 2024 09:46:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D35202BC05F; Tue, 9 Jul 2024 09:46:47 +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 B82202BC05F for ; Tue, 9 Jul 2024 09:46:47 +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 DBE2B33BE26 for ; Tue, 9 Jul 2024 09:46:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 520671DFE for ; Tue, 9 Jul 2024 09:46:45 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1720517058.f737208bc145be5ca879a6a0dc8c8e256e909e21.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-doc/stdman/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-doc/stdman/Manifest app-doc/stdman/stdman-2024.07.05.ebuild X-VCS-Directories: app-doc/stdman/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: f737208bc145be5ca879a6a0dc8c8e256e909e21 X-VCS-Branch: master Date: Tue, 9 Jul 2024 09:46:45 +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: 7036fff5-053f-42f8-ad5b-0977c98f7794 X-Archives-Hash: c6ee39ef26e8c7642a5bb4d5855bdf60 commit: f737208bc145be5ca879a6a0dc8c8e256e909e21 Author: David Roman gmail com> AuthorDate: Tue Jul 9 09:24:04 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Jul 9 09:24:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f737208b app-doc/stdman: add 2024.07.05 Signed-off-by: David Roman gmail.com> app-doc/stdman/Manifest | 1 + app-doc/stdman/stdman-2024.07.05.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-doc/stdman/Manifest b/app-doc/stdman/Manifest index 4f69c57e7..3719cc00b 100644 --- a/app-doc/stdman/Manifest +++ b/app-doc/stdman/Manifest @@ -1 +1,2 @@ DIST stdman-2022.07.30.tar.gz 4191007 BLAKE2B 1e1425a9acec2fab0b3e30cfd90b0e4656dce7a2faf71f4f36de3a5c311058e5bc365d6805f941caa900daf7df8ed97d16899e3fc291f2391002cd8c358e322d SHA512 1a51ed99bf459be7bd0ebd65b601eaab2d3961773a6532ab048c962331373b724678528edc48000c165588cd6c3c37b3e90e96896980b390db325b7f3896e5a6 +DIST stdman-2024.07.05.tar.gz 4773622 BLAKE2B c6928decbe3ac3f3159717c0c5df31ddb5d04f8f147f84a880899843ecad64451b58e8887e08ad13ca6442618f23ece064e1d750fc9150f745839f066937a55e SHA512 10c84a66ff53c0a8961b20b0e5e3f42e27063ba9fa36b4fcd2315e68d081107f9cf3dac2aad0e148459ca96e60aa40daa2742422f5cdd8094aa6cec0f131493a diff --git a/app-doc/stdman/stdman-2024.07.05.ebuild b/app-doc/stdman/stdman-2024.07.05.ebuild new file mode 100644 index 000000000..632817fe3 --- /dev/null +++ b/app-doc/stdman/stdman-2024.07.05.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Formatted C++ stdlib man pages (cppreference)" +HOMEPAGE="https://github.com/jeaye/stdman https://cppreference.com" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jeaye/stdman.git" +else + KEYWORDS="~amd64" + SRC_URI="https://github.com/jeaye/stdman/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="CC-BY-SA-3.0 FDL-1.3 MIT" +SLOT="0" + +src_prepare() { + default + # Avoid compressing files + sed -i '/gzip/d' do_install || die +} + +src_compile() { + : +} 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 E76E61581C1 for ; Tue, 9 Jul 2024 09:24:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41B692BC04F; Tue, 9 Jul 2024 09:24:27 +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 1D3CA2BC04F for ; Tue, 9 Jul 2024 09:24:26 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DB3C335C7E for ; Tue, 9 Jul 2024 09:24:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42F4A1DCE for ; Tue, 9 Jul 2024 09:24:24 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1720517058.f737208bc145be5ca879a6a0dc8c8e256e909e21.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-doc/stdman/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-doc/stdman/Manifest app-doc/stdman/stdman-2024.07.05.ebuild X-VCS-Directories: app-doc/stdman/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: f737208bc145be5ca879a6a0dc8c8e256e909e21 X-VCS-Branch: dev Date: Tue, 9 Jul 2024 09:24:24 +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: 1c70184f-af27-41a0-930d-49b5330ff007 X-Archives-Hash: 06de68e0ffd4d82f93f838210a33d0eb Message-ID: <20240709092424.Aq40posAHDRF3Ys8OWfvsrRSMWTTf0VzLAuMR4xoia4@z> commit: f737208bc145be5ca879a6a0dc8c8e256e909e21 Author: David Roman gmail com> AuthorDate: Tue Jul 9 09:24:04 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Jul 9 09:24:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f737208b app-doc/stdman: add 2024.07.05 Signed-off-by: David Roman gmail.com> app-doc/stdman/Manifest | 1 + app-doc/stdman/stdman-2024.07.05.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-doc/stdman/Manifest b/app-doc/stdman/Manifest index 4f69c57e7..3719cc00b 100644 --- a/app-doc/stdman/Manifest +++ b/app-doc/stdman/Manifest @@ -1 +1,2 @@ DIST stdman-2022.07.30.tar.gz 4191007 BLAKE2B 1e1425a9acec2fab0b3e30cfd90b0e4656dce7a2faf71f4f36de3a5c311058e5bc365d6805f941caa900daf7df8ed97d16899e3fc291f2391002cd8c358e322d SHA512 1a51ed99bf459be7bd0ebd65b601eaab2d3961773a6532ab048c962331373b724678528edc48000c165588cd6c3c37b3e90e96896980b390db325b7f3896e5a6 +DIST stdman-2024.07.05.tar.gz 4773622 BLAKE2B c6928decbe3ac3f3159717c0c5df31ddb5d04f8f147f84a880899843ecad64451b58e8887e08ad13ca6442618f23ece064e1d750fc9150f745839f066937a55e SHA512 10c84a66ff53c0a8961b20b0e5e3f42e27063ba9fa36b4fcd2315e68d081107f9cf3dac2aad0e148459ca96e60aa40daa2742422f5cdd8094aa6cec0f131493a diff --git a/app-doc/stdman/stdman-2024.07.05.ebuild b/app-doc/stdman/stdman-2024.07.05.ebuild new file mode 100644 index 000000000..632817fe3 --- /dev/null +++ b/app-doc/stdman/stdman-2024.07.05.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Formatted C++ stdlib man pages (cppreference)" +HOMEPAGE="https://github.com/jeaye/stdman https://cppreference.com" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jeaye/stdman.git" +else + KEYWORDS="~amd64" + SRC_URI="https://github.com/jeaye/stdman/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="CC-BY-SA-3.0 FDL-1.3 MIT" +SLOT="0" + +src_prepare() { + default + # Avoid compressing files + sed -i '/gzip/d' do_install || die +} + +src_compile() { + : +}