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 C18B1158094 for ; Fri, 30 Sep 2022 02:12:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6099E0E15; Fri, 30 Sep 2022 02:12:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id CBBC0E0E15 for ; Fri, 30 Sep 2022 02:12:32 +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 33CFC3411D8 for ; Fri, 30 Sep 2022 02:12:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 887E4D4 for ; Fri, 30 Sep 2022 02:12:29 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1664399306.afe2fd9312c2cc78392eeb7e7623bb0a11160a8d.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-util/odb/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/odb/Manifest dev-util/odb/odb-2.5.0_beta21_p1.ebuild X-VCS-Directories: dev-util/odb/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: afe2fd9312c2cc78392eeb7e7623bb0a11160a8d X-VCS-Branch: master Date: Fri, 30 Sep 2022 02:12:29 +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: 93623af8-a621-40e4-aa05-cae5296fc01e X-Archives-Hash: 9c1381c535b1dca5de0f8851567e4bfe commit: afe2fd9312c2cc78392eeb7e7623bb0a11160a8d Author: Andrii Pravorskyi meta ua> AuthorDate: Wed Sep 28 21:08:26 2022 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Wed Sep 28 21:08:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=afe2fd93 dev-util/odb: new package, add 2.5.0_beta21_p1 Signed-off-by: Andrii Pravorskyi meta.ua> dev-util/odb/Manifest | 1 + dev-util/odb/odb-2.5.0_beta21_p1.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-util/odb/Manifest b/dev-util/odb/Manifest new file mode 100644 index 000000000..5ff705eff --- /dev/null +++ b/dev-util/odb/Manifest @@ -0,0 +1 @@ +DIST odb-2.5.0-b.21+1.tar.gz 714030 BLAKE2B a2930cff43cb56e7ab42adddbeb5fc11d32f662cb9cda3d2e3199092de9f73b1bb0691da3aa7b010230d93ea56dce437c3d507a4cb311a25b4596f564f2ea8d6 SHA512 9d4d132d7c32e30e2be05da7210f19c45bcb214b592dd5bda45c6b1488044e56f61c16de65451646d0b1acffe65ba8b50c791fe0982887952e95ce97814bbef8 diff --git a/dev-util/odb/odb-2.5.0_beta21_p1.ebuild b/dev-util/odb/odb-2.5.0_beta21_p1.ebuild new file mode 100644 index 000000000..90a95eb7e --- /dev/null +++ b/dev-util/odb/odb-2.5.0_beta21_p1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)+$(ver_cut 7)" + +inherit build2 + +SRC_URI="https://pkg.cppget.org/1/beta/${PN}/${MY_P}.tar.gz" +KEYWORDS='~amd64 ~x86' +DESCRIPTION='ODB compiler and the ODB system documentation' +HOMEPAGE='https://www.codesynthesis.com/products/odb/' +LICENSE='GPL-3' + +SLOT='0' +IUSE='test' +RESTRICT='!test? ( test )' + +RDEPEND='=dev-cpp/libcutl-1.11.0*' + +BDEPEND=" + =dev-cpp/libstudxml-1.1.0* + ${RDEPEND} +" + +S="${WORKDIR}/${MY_P}"