Merge updates from master

This commit is contained in:
Repository mirror & CI
2023-01-24 09:46:49 +00:00
9 changed files with 125 additions and 1 deletions

1
app-misc/dbf/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST dbf-0.9.0.tgz 38031 BLAKE2B 9c8231a83e7ca4710e5b166654da93bb3b5841bfc1ba2f3d772cee40f8415b6dec7182cceedcad9c4641a4be9543c3d426e0428728b3941ea7b359f0cda27ef2 SHA512 0eadd991e4a8d5eb4513df1b3798c085ca21e1a1dfe77e399cc70ff8a605f6044860d9d2e3a36220e92add2f2d68c72f507dd083120752761719ed6a326a4a26

View File

@@ -0,0 +1,50 @@
# Copyright 1999-2023 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=8
inherit autotools
MY_COMMIT="8c1df2e694ca81a2c2ff1d7de150629e69092ea1"
DESCRIPTION="Command line tool to read the content of dBASE III, IV, and 5.0 files"
HOMEPAGE="https://github.com/rollinhand/dbf-core"
SRC_URI="https://github.com/rollinhand/dbf-core/archive/${MY_COMMIT}.tar.gz -> ${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
dev-perl/XML-Parser
dev-libs/libdbf
doc? ( app-text/docbook-sgml-utils )
virtual/pkgconfig"
S="${WORKDIR}/${PN}-core-${MY_COMMIT}"
src_prepare() {
default
if use doc; then
sed -i -e 's|docbook-to-man|docbook2man|g' man/Makefile.am || die
fi
eautoreconf
}
src_configure() {
if use doc; then
export DOC_TO_MAN=docbook2man
fi
econf
emake
if use doc; then
mv man/DBF.SECTION man/dbf.1 || die "Error moving man page"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
}

14
app-misc/dbf/metadata.xml Normal file
View File

@@ -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/dbf-core</remote-id>
</upstream>
<use>
<flag name="doc">build manpages</flag>
</use>
</pkgmetadata>

View File

@@ -1,2 +1,2 @@
DIST fastfetch-1.8.2.tar.gz 495971 BLAKE2B e490323b2a18c2cc6a17569955fde820584a4b1e547ad18162b1cbb6f72c61cf8e891c4d1ed56c89f78ac0bc3d5769603e1dfc61c32bad07985c0df27cdf5e10 SHA512 cad6e1f69fd9192e63a55478ee6abe1f0a72c1d4af645d2b8fc1e56fc90eda80f62b5da7a87744ba1a668e5f0b785aac0e49be90867d3b61c674cf455cf984c0
DIST fastfetch-1.9.0.tar.gz 510212 BLAKE2B 1a716e3bdba946503b9fef810026965b02c2af2803bfb2b8bd6bbf826fdfcd566e11ab15b654e570d5a9526fa4a26be7127902a1204c0ee52c452c7310d1bc36 SHA512 6a8aa8260e3d32d1ac4e7788b89492d8377b1dd5e15a5e08d002d3945bc7360d47a4fe5805117d8386de487ac17020eca0b7fcd8333c194453874bd3517e73e4
DIST fastfetch-1.9.1.tar.gz 510560 BLAKE2B 086f743a0e9ec09a3222d9c9951e26449dde90d00fb297d96611393bf23ab6eb8df255e9519b35904d73faa726ea83f673c5ea977a9f2b7f0689de898b0683ba SHA512 9b449aa3b5072d2f7b7857d7a11e315dbb7d4148e2761487e6682980e53bb3acf3ccd14b57bf9d788288a931f8aa940b699f07b1a09673fee53d70f63b081f83

1
dev-libs/libdbf/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST libdbf-0.0.1.tgz 66443 BLAKE2B 543aff47c42d19dbe738fa50fe65dd6914a43695851395cf340f53718022e229896c6651f8a5cef8f0a46226efa91563d64ec072dbd1546997c729eca34f67dd SHA512 39df9e958582f224480bdf3b8afd9683427c090e252273004909af0443fddcc149b4dcfd3a09291c9b8786c096ce68cae3310dc692f112f102e51061a68b53f2

View File

@@ -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"
}

View File

@@ -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>

View File

@@ -131,6 +131,8 @@ SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RESTRICT="mirror"
QA_FLAGS_IGNORED="usr/bin/just"
src_install() {
local DOCS=( README.md )