diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:51:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:17 +0000 |
commit | 150646bd87ccd30ccb7a7f4feb2b0b274c4de032 (patch) | |
tree | c9d602d4d97a3ff5c35c2107fb3455f38d7dbfae /dev-libs/libofx | |
parent | dev-libs/librep: drop 0.92.7-r1 (diff) | |
download | gentoo-150646bd87ccd30ccb7a7f4feb2b0b274c4de032.tar.gz gentoo-150646bd87ccd30ccb7a7f4feb2b0b274c4de032.tar.bz2 gentoo-150646bd87ccd30ccb7a7f4feb2b0b274c4de032.zip |
dev-libs/libofx: drop 0.10.3
Bug: https://bugs.gentoo.org/886709
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libofx')
-rw-r--r-- | dev-libs/libofx/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libofx/libofx-0.10.3.ebuild | 65 |
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-libs/libofx/Manifest b/dev-libs/libofx/Manifest index 8ea1d71257a7..dbab1540b824 100644 --- a/dev-libs/libofx/Manifest +++ b/dev-libs/libofx/Manifest @@ -1,2 +1 @@ -DIST libofx-0.10.3.tar.gz 225132 BLAKE2B 29dff4cb79a4a535bf255c787e184d103ecdbe975bb4bb223b675bbacaff9f8a228ae0a3dffe7710c2707496ac65c4f48ce993243b8353172c53cb02067d9267 SHA512 6c024628a6a11d9542c669a438223331a033eb820b1a2c3001c60d1ab3fad45ccdec64f9b54dd206fe0058ead8e14e751eb7a3bd88e8f9e1013b0bdd5b6c5242 DIST libofx-0.10.9.tar.gz 1478209 BLAKE2B fc7f7f2dae723fbfd44bd2c4550fead3b2ec12725fb89f385fe8d454e2b9c9985ae408e24c25c0db5cde891c7ad1d36acc3cae59c49d41501db60711989a1955 SHA512 89425912fa8c800ede9d7177ccd5cb3ea2a2301b42aa6580ddb105406fe68c770e2c461eefdea5bc7e883967c90e3519a219bf0b56d12c7de1030d0964d50cac diff --git a/dev-libs/libofx/libofx-0.10.3.ebuild b/dev-libs/libofx/libofx-0.10.3.ebuild deleted file mode 100644 index 543e1ad45550..000000000000 --- a/dev-libs/libofx/libofx-0.10.3.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -DESCRIPTION="Library to support the Open Financial eXchange XML format" -HOMEPAGE="https://github.com/libofx/libofx" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/10" -KEYWORDS="amd64 ~arm64 ppc ppc64 ~riscv x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -BDEPEND=" - dev-util/gengetopt - sys-apps/help2man - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( app-crypt/gnupg ) -" -RDEPEND=" - >app-text/opensp-1.5 - app-text/openjade - >=dev-cpp/libxmlpp-2.40.1:2.6 - >=net-misc/curl-7.9.7 - virtual/libiconv -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - # Not included in the tarball - sed -i -e '/INSTALL/d' Makefile.am || die - - # bug #566456 - append-cxxflags -std=c++14 - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable doc html-docs) \ - --disable-static -} - -src_compile() { - emake -j1 - - if use doc ; then - emake doc - fi -} - -src_install() { - default - - find "${ED}" -name '*.la' -type f -delete || die - find "${ED}" -name '*.a' -type f -delete || die -} |