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 3EF4015800F for ; Tue, 24 Jan 2023 09:42:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E599E07C7; Tue, 24 Jan 2023 09:42:24 +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 555F9E07B3 for ; Tue, 24 Jan 2023 09:42:24 +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 6DFAC340DB9 for ; Tue, 24 Jan 2023 09:42:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09E2A865 for ; Tue, 24 Jan 2023 09:42:22 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1674551745.02384611f1762be27c0406bd5232d2af64bab965.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdbf/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/libdbf/Manifest dev-libs/libdbf/libdbf-0.0.1.ebuild dev-libs/libdbf/metadata.xml X-VCS-Directories: dev-libs/libdbf/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 02384611f1762be27c0406bd5232d2af64bab965 X-VCS-Branch: master Date: Tue, 24 Jan 2023 09:42:22 +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: 45421507-a3b4-44b9-914e-007a61a7ec67 X-Archives-Hash: eb33ef951350af5a9ef0d8dc083e0e08 commit: 02384611f1762be27c0406bd5232d2af64bab965 Author: Joe Kappus wt gd> AuthorDate: Tue Jan 24 09:15:45 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Tue Jan 24 09:15:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02384611 dev-libs/libdbf: new package, add 0.0.1 Signed-off-by: Joe Kappus wt.gd> dev-libs/libdbf/Manifest | 1 + dev-libs/libdbf/libdbf-0.0.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++ dev-libs/libdbf/metadata.xml | 14 +++++++++++++ 3 files changed, 57 insertions(+) diff --git a/dev-libs/libdbf/Manifest b/dev-libs/libdbf/Manifest new file mode 100644 index 000000000..914873a45 --- /dev/null +++ b/dev-libs/libdbf/Manifest @@ -0,0 +1 @@ +DIST libdbf-0.0.1.tgz 66443 BLAKE2B 543aff47c42d19dbe738fa50fe65dd6914a43695851395cf340f53718022e229896c6651f8a5cef8f0a46226efa91563d64ec072dbd1546997c729eca34f67dd SHA512 39df9e958582f224480bdf3b8afd9683427c090e252273004909af0443fddcc149b4dcfd3a09291c9b8786c096ce68cae3310dc692f112f102e51061a68b53f2 diff --git a/dev-libs/libdbf/libdbf-0.0.1.ebuild b/dev-libs/libdbf/libdbf-0.0.1.ebuild new file mode 100644 index 000000000..e28716c30 --- /dev/null +++ b/dev-libs/libdbf/libdbf-0.0.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=8 + +inherit autotools + +MY_COMMIT="d86e1dfb1e70f61b9227817dbccd20955cd8a86a" + +DESCRIPTION="Library to read the content of dBASE III, IV, and 5.0 files" +HOMEPAGE="https://github.com/rollinhand/libdbf" +SRC_URI="https://github.com/rollinhand/libdbf/archive/${MY_COMMIT}.tar.gz -> ${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-perl/XML-Parser + doc? ( app-text/docbook-sgml-utils ) + virtual/pkgconfig" + +S="${WORKDIR}/${PN}-${MY_COMMIT}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + if use doc; then + export DOC_TO_MAN=docbook2man + fi + econf +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" +} diff --git a/dev-libs/libdbf/metadata.xml b/dev-libs/libdbf/metadata.xml new file mode 100644 index 000000000..c77d59f2d --- /dev/null +++ b/dev-libs/libdbf/metadata.xml @@ -0,0 +1,14 @@ + + + + + joe@wt.gd + joecool + + + rollinhand/libdbf + + + Include documentation + +