From d3bd579653c6e5f8e1c0a36517372a262ade6c8d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 22 Apr 2023 00:03:23 +0100 Subject: gentoo auto-resync : 22:04:2023 - 00:03:23 --- app-text/Manifest.gz | Bin 48585 -> 48587 bytes app-text/lowdown/Manifest | 2 +- app-text/lowdown/lowdown-1.0.1-r1.ebuild | 67 ++++++++++++++++++++++++++++++ app-text/lowdown/lowdown-1.0.1.ebuild | 68 ------------------------------- 4 files changed, 68 insertions(+), 69 deletions(-) create mode 100644 app-text/lowdown/lowdown-1.0.1-r1.ebuild delete mode 100644 app-text/lowdown/lowdown-1.0.1.ebuild (limited to 'app-text') diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 9c3e5134e359..ee919cff4ab7 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/lowdown/Manifest b/app-text/lowdown/Manifest index 58fb4414685f..145e98071ad0 100644 --- a/app-text/lowdown/Manifest +++ b/app-text/lowdown/Manifest @@ -4,5 +4,5 @@ AUX lowdown-1.0.1-linking.patch 1660 BLAKE2B eae0e876e33b91a09b0fcaa1aa829b30109 DIST lowdown-1.0.0.tar.gz 576167 BLAKE2B fec9857ef1110f4767ff6244dcf06fa9c69a56d4b8709217cf05a148757512e2cb8c141b112673f0cffa260d7e2c376b9905bb16092e3f97f97007dcef922bcb SHA512 fe18db1f3d6dbc4fe0ae33ebcdeb1646b20d6fedd265e29d53475f7931b5b60329a653f9af864a39ff4caa0131751fcbffff0d94cb9519401a3479ada29bd7b8 DIST lowdown-1.0.1.tar.gz 583848 BLAKE2B f0794168f496a3ddd418f27ef0b9bd9fc248f67cabad248ebda0d4b2393efeae083b1de991bf7bd27ff9ae7accd2966b0c69f6bdb54e8a7d7ba1998617de0122 SHA512 ed9fb0162705aa34a69867bd532f22743321e68f93ce0d8909290e2215044d90969e513a772288374d1653eb25336d955dfc8b9394a146cdbe88809bed6ef2f2 EBUILD lowdown-1.0.0.ebuild 985 BLAKE2B 4f66f72f76c73d402608b8c2414ede720da7c9b87d738cef0034b2ad00fc9b6d684f8045ac7e0da267842f75c4f50cc79ef9648c7b0d91fd9fb5f2a179bff8ea SHA512 d481879a3d9a9d25c695ac4c65a7b3be2c91478e75383d691e5faa81c3c73e76176b0257224e3785f6a99743b09270759db42408579bc71409fe24a2465aac8a -EBUILD lowdown-1.0.1.ebuild 1281 BLAKE2B 2db28188f8c01363211f0cc638c1e1e92f82f478197ed0e5b5f34a4a8a2d136370419335100e5a148a2b15a2016cabc27010e14ab88af880f31e9f13c47b5acb SHA512 30652282259749860e6a73d37ac68f8a19f94710de02c6832aa7d15ba7c36fa16e7e3c7d9aa25c28c7098dcaadfd7f8dfe3dc3fe04bce217d87f4d15c9ec4274 +EBUILD lowdown-1.0.1-r1.ebuild 1262 BLAKE2B 1a2dfc2962b5b478cd69068f47c04dd2948b6bb87c48997fdd8f285db26d3a1729b53ce7dc9f636845eff48b157beb88247d0ed3a4949c0b26dcbd937c57e688 SHA512 3154602cf21eb2a974f4928fd4453a95fdea6eb7096b3a46035e750b16c9cf470b918a91456ef4326cf929b80c4bd243a305e487e55a3300980f43945027e72f MISC metadata.xml 333 BLAKE2B cfa2021e507b7538cf73840fb9eb8e1f6c157f7090b1156e4bd1cd917547adeea76cc31d619d60b0d189c915ae4748437b8d9a9a96a532276d6deb1d0f2258d9 SHA512 fa991b0162a4eab9c81815b4a523d33a08e7a7716b5a443165f0cc05d906b7dc3d7da388d0e3d3202a7262a7971d771ffb29debf42659c8ed3c3de6ed184d73e diff --git a/app-text/lowdown/lowdown-1.0.1-r1.ebuild b/app-text/lowdown/lowdown-1.0.1-r1.ebuild new file mode 100644 index 000000000000..9d1ea4a9509e --- /dev/null +++ b/app-text/lowdown/lowdown-1.0.1-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs flag-o-matic + +MY_PV="VERSION_${PV//./_}" +DESCRIPTION="Markdown translator producing HTML5, roff documents in the ms and man formats" +HOMEPAGE="https://kristaps.bsd.lv/lowdown/" +SRC_URI="https://github.com/kristapsdz/lowdown/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="ISC" +SLOT="0/2" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND=" + virtual/libcrypt:= +" +RDEPEND=" + ${DEPEND} +" + +# configure tests for a bunch of BSD functions on Linux +QA_CONFIG_IMPL_DECL_SKIP=( + crypt_newhash + crypt_checkpass + warnc + errc + getexecname + getprogname + memset_s + pledge + recallocarray + strlcat + strlcpy + strtonum + TAILQ_FOREACH_SAFE + unveil +) + +PATCHES=( + "${FILESDIR}/lowdown-0.10.0-pkgconfig-libmd.patch" + "${FILESDIR}/lowdown-1.0.1-linking.patch" +) + +src_configure() { + append-flags -fPIC + tc-export CC AR + + ./configure \ + PREFIX="/usr" \ + MANDIR="/usr/share/man" \ + LDFLAGS="${LDFLAGS}" \ + CPPFLAGS="${CPPFLAGS}" \ + LIBDIR="/usr/$(get_libdir)" \ + || die "./configure failed" +} + +src_compile() { + emake $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') +} + +src_test() { + LD_LIBRARY_PATH="${S}" emake regress +} diff --git a/app-text/lowdown/lowdown-1.0.1.ebuild b/app-text/lowdown/lowdown-1.0.1.ebuild deleted file mode 100644 index 177c7a8af1d3..000000000000 --- a/app-text/lowdown/lowdown-1.0.1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs flag-o-matic - -MY_PV="VERSION_${PV//./_}" -DESCRIPTION="Markdown translator producing HTML5, roff documents in the ms and man formats" -HOMEPAGE="https://kristaps.bsd.lv/lowdown/" -SRC_URI="https://github.com/kristapsdz/lowdown/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="ISC" -SLOT="0/2" -KEYWORDS="~amd64 ~arm64 ~x86" - -DEPEND=" - virtual/libcrypt:= -" -RDEPEND=" - ${DEPEND} -" - -# configure tests for a bunch of BSD functions on Linux -QA_CONFIG_IMPL_DECL_SKIP=( - crypt_newhash - crypt_checkpass - warnc - errc - getexecname - getprogname - memset_s - pledge - recallocarray - strlcat - strlcpy - strtonum - TAILQ_FOREACH_SAFE - unveil -) - -PATCHES=( - "${FILESDIR}/lowdown-0.10.0-pkgconfig-libmd.patch" - "${FILESDIR}/lowdown-1.0.1-linking.patch" -) - -src_configure() { - append-flags -fPIC - tc-export CC AR - - ./configure \ - PREFIX="/usr" \ - MANDIR="/usr/share/man" \ - LDFLAGS="${LDFLAGS}" \ - CPPFLAGS="${CPPFLAGS}" \ - LIBDIR="/usr/$(get_libdir)" \ - LDLIBS="-lbsd" \ - || die "./configure failed" -} - -src_compile() { - emake $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') -} - -src_test() { - LD_LIBRARY_PATH="${S}" emake regress -} -- cgit v1.2.3