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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BE8E8158090 for ; Fri, 4 Oct 2024 10:18:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BA60E29F6; Fri, 4 Oct 2024 10:18:13 +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 F41AFE29F6 for ; Fri, 4 Oct 2024 10:18:12 +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 18BFD342FE1 for ; Fri, 4 Oct 2024 10:18:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A879911DF for ; Fri, 4 Oct 2024 10:18:10 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1728037054.b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/gpds/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/gpds/Manifest dev-libs/gpds/gpds-1.9.0.ebuild X-VCS-Directories: dev-libs/gpds/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4 X-VCS-Branch: dev Date: Fri, 4 Oct 2024 10:18:10 +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: 77a17f6a-14b3-45f7-b17b-a0d0f2e400b8 X-Archives-Hash: ca92836f075ecac96690fd62f4ed2adf commit: b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4 Author: Huang Rui gmail com> AuthorDate: Fri Oct 4 10:17:34 2024 +0000 Commit: Rui Huang gmail com> CommitDate: Fri Oct 4 10:17:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3bb4ed7 dev-libs/gpds: add 1.9.0 Signed-off-by: Huang Rui gmail.com> dev-libs/gpds/Manifest | 1 + dev-libs/gpds/gpds-1.9.0.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-libs/gpds/Manifest b/dev-libs/gpds/Manifest index ed9a6882f..13dd7fc74 100644 --- a/dev-libs/gpds/Manifest +++ b/dev-libs/gpds/Manifest @@ -1 +1,2 @@ DIST gpds-1.8.4.tar.gz 875582 BLAKE2B f4ddb017e381708f6b0de2d32fe8802cd6e79000b9d238351564b71aac2bf7045954a7244dcc06f12ed1d43aeb046d56bbfe45bc64155d42d3d025b9e48cdf2d SHA512 dcf586dbb79335667a679038d366d1314aeb46357b1d1a5907b8a492cc31560a95371ec967be0ea388ca9744d864e1740031f9f6273450bc2361bb74e76df355 +DIST gpds-1.9.0.tar.gz 876422 BLAKE2B f2d60588e5e4bf305670db2342b2537ddb607a8f578fef095900f91c686008a1e2f0fbe80b6c9b45600d7314dc992bea7a9c4bbb146450df76b0f39540808f0c SHA512 8f77e329559a2ee89b9a540e13ab94bf45eb3ce928aebe2f57494e3415df919983befec126471f92b40e5345e54bf64263d2e1e00a34e9bfa25fe3521857dccc diff --git a/dev-libs/gpds/gpds-1.9.0.ebuild b/dev-libs/gpds/gpds-1.9.0.ebuild new file mode 100644 index 000000000..da398d0df --- /dev/null +++ b/dev-libs/gpds/gpds-1.9.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A general purpose data serializer" +HOMEPAGE="https://gpds.simulton.com" + +if [[ "${PV}" == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/simulton/${PN}.git" +else + SRC_URI="https://github.com/simulton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" + S="${WORKDIR}/${PN}-${PV}" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="examples static-libs test" +RESTRICT="!test? ( test )" +DEPEND="${RDEPEND}" + +DOCS=( license.txt readme.md ) + +src_configure() { + local mycmakeargs=( + -DGPDS_BUILD_STATIC=$(usex static-libs) + -DGPDS_BUILD_SHARED=ON + -DGPDS_BUILD_TESTS=$(usex test) + -DGPDS_BUILD_EXAMPLES=$(usex examples) + ) + + cmake_src_configure +} + +src_install() { + cmake_src_install +} 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 E161E15808B for ; Fri, 4 Oct 2024 10:24:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0931E2A09; Fri, 4 Oct 2024 10:24:48 +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 D64E4E2A09 for ; Fri, 4 Oct 2024 10:24:48 +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 9371E343065 for ; Fri, 4 Oct 2024 10:24:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E83A627FE for ; Fri, 4 Oct 2024 10:24:44 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1728037054.b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/gpds/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/gpds/Manifest dev-libs/gpds/gpds-1.9.0.ebuild X-VCS-Directories: dev-libs/gpds/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4 X-VCS-Branch: master Date: Fri, 4 Oct 2024 10:24:44 +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: 48651eca-3069-44fd-a486-0a7dbece0930 X-Archives-Hash: 0c4059f191d43c0990c5cd6b6fbef5e0 Message-ID: <20241004102444.lH77N_SKF7N-Ysv_3Q28ZMaPtoz1ZcNfln4ZBgtBawg@z> commit: b3bb4ed7d5aada3e65d97e20e8bf7fe52d8abde4 Author: Huang Rui gmail com> AuthorDate: Fri Oct 4 10:17:34 2024 +0000 Commit: Rui Huang gmail com> CommitDate: Fri Oct 4 10:17:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3bb4ed7 dev-libs/gpds: add 1.9.0 Signed-off-by: Huang Rui gmail.com> dev-libs/gpds/Manifest | 1 + dev-libs/gpds/gpds-1.9.0.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-libs/gpds/Manifest b/dev-libs/gpds/Manifest index ed9a6882f..13dd7fc74 100644 --- a/dev-libs/gpds/Manifest +++ b/dev-libs/gpds/Manifest @@ -1 +1,2 @@ DIST gpds-1.8.4.tar.gz 875582 BLAKE2B f4ddb017e381708f6b0de2d32fe8802cd6e79000b9d238351564b71aac2bf7045954a7244dcc06f12ed1d43aeb046d56bbfe45bc64155d42d3d025b9e48cdf2d SHA512 dcf586dbb79335667a679038d366d1314aeb46357b1d1a5907b8a492cc31560a95371ec967be0ea388ca9744d864e1740031f9f6273450bc2361bb74e76df355 +DIST gpds-1.9.0.tar.gz 876422 BLAKE2B f2d60588e5e4bf305670db2342b2537ddb607a8f578fef095900f91c686008a1e2f0fbe80b6c9b45600d7314dc992bea7a9c4bbb146450df76b0f39540808f0c SHA512 8f77e329559a2ee89b9a540e13ab94bf45eb3ce928aebe2f57494e3415df919983befec126471f92b40e5345e54bf64263d2e1e00a34e9bfa25fe3521857dccc diff --git a/dev-libs/gpds/gpds-1.9.0.ebuild b/dev-libs/gpds/gpds-1.9.0.ebuild new file mode 100644 index 000000000..da398d0df --- /dev/null +++ b/dev-libs/gpds/gpds-1.9.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A general purpose data serializer" +HOMEPAGE="https://gpds.simulton.com" + +if [[ "${PV}" == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/simulton/${PN}.git" +else + SRC_URI="https://github.com/simulton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" + S="${WORKDIR}/${PN}-${PV}" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="examples static-libs test" +RESTRICT="!test? ( test )" +DEPEND="${RDEPEND}" + +DOCS=( license.txt readme.md ) + +src_configure() { + local mycmakeargs=( + -DGPDS_BUILD_STATIC=$(usex static-libs) + -DGPDS_BUILD_SHARED=ON + -DGPDS_BUILD_TESTS=$(usex test) + -DGPDS_BUILD_EXAMPLES=$(usex examples) + ) + + cmake_src_configure +} + +src_install() { + cmake_src_install +}