* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libdbf/
@ 2023-01-24 16:12 Joe Kappus
0 siblings, 0 replies; 3+ messages in thread
From: Joe Kappus @ 2023-01-24 16:12 UTC (permalink / raw
To: gentoo-commits
commit: c15120eac0e1e94488df744e5a2fee8e9ca24bc4
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Tue Jan 24 16:11:20 2023 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Tue Jan 24 16:11:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c15120ea
dev-libs/libdbf: remove .la file
Closes: https://bugs.gentoo.org/891943
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
dev-libs/libdbf/libdbf-0.0.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-libs/libdbf/libdbf-0.0.1.ebuild b/dev-libs/libdbf/libdbf-0.0.1.ebuild
index e28716c30..d39049494 100644
--- a/dev-libs/libdbf/libdbf-0.0.1.ebuild
+++ b/dev-libs/libdbf/libdbf-0.0.1.ebuild
@@ -39,4 +39,5 @@ src_configure() {
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libdbf/
@ 2024-01-14 9:34 Joe Kappus
0 siblings, 0 replies; 3+ messages in thread
From: Joe Kappus @ 2024-01-14 9:34 UTC (permalink / raw
To: gentoo-commits
commit: 58f77ce2c435fa081570efd07bcc76a0b2b86d35
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Sun Jan 14 09:33:00 2024 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Sun Jan 14 09:34:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58f77ce2
dev-libs/libdbf: add dev-util/intltool to BDEPEND
I guess including autotools doesn't add it, this
shuts up tinderbox.
Closes: https://bugs.gentoo.org/921738
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
dev-libs/libdbf/libdbf-0.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/libdbf/libdbf-0.0.1.ebuild b/dev-libs/libdbf/libdbf-0.0.1.ebuild
index d390494946..256053ed37 100644
--- a/dev-libs/libdbf/libdbf-0.0.1.ebuild
+++ b/dev-libs/libdbf/libdbf-0.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Foundation
+# Copyright 1999-2024 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -17,11 +17,11 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
-RDEPEND=""
DEPEND="${RDEPEND}
dev-perl/XML-Parser
doc? ( app-text/docbook-sgml-utils )
virtual/pkgconfig"
+BDEPEND="dev-util/intltool"
S="${WORKDIR}/${PN}-${MY_COMMIT}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libdbf/
@ 2023-01-24 9:17 Joe Kappus
0 siblings, 0 replies; 3+ messages in thread
From: Joe Kappus @ 2023-01-24 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 02384611f1762be27c0406bd5232d2af64bab965
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Tue Jan 24 09:15:45 2023 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
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 <joe <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <email>joe@wt.gd</email>
+ <name>joecool</name>
+</maintainer>
+<upstream>
+ <remote-id type="github">rollinhand/libdbf</remote-id>
+</upstream>
+<use>
+ <flag name="doc">Include documentation</flag>
+</use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-01-14 9:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-24 16:12 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libdbf/ Joe Kappus
-- strict thread matches above, loose matches on Subject: below --
2024-01-14 9:34 Joe Kappus
2023-01-24 9:17 Joe Kappus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox