From: "John Helmert III" <ajak@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/mdbtools/
Date: Sat, 24 Jul 2021 06:22:19 +0000 (UTC) [thread overview]
Message-ID: <1627107695.41df5bf9be91ba8ff592c8cb6ec6d4387450b383.ajak@gentoo> (raw)
commit: 41df5bf9be91ba8ff592c8cb6ec6d4387450b383
Author: John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 06:07:45 2021 +0000
Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 06:21:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41df5bf9
app-office/mdbtools: drop 0.7.1-r2, 0.9.1
Bug: https://bugs.gentoo.org/773289
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
app-office/mdbtools/Manifest | 2 -
app-office/mdbtools/mdbtools-0.7.1-r2.ebuild | 58 ---------------------------
app-office/mdbtools/mdbtools-0.9.1.ebuild | 60 ----------------------------
3 files changed, 120 deletions(-)
diff --git a/app-office/mdbtools/Manifest b/app-office/mdbtools/Manifest
index 04300d1a7d9..4f2c2f5555f 100644
--- a/app-office/mdbtools/Manifest
+++ b/app-office/mdbtools/Manifest
@@ -1,4 +1,2 @@
-DIST mdbtools-0.7.1.tar.gz 277257 BLAKE2B 3740c543b1ea2e898a96dc1a560fd83cf079d37f5d02805891c5902b75a417c9efbf421346902766017113d447b088656afbfd0297b26655aa07fce973adc216 SHA512 bbad415c59a3f54c11bcd04971220b1370046c5dfd7300d1f23e597615a1df6af850c6f767e78033676d486d87a11c72dfdb141abbee8378337c3fda9a450b75
-DIST mdbtools-0.9.1.tar.gz 158762 BLAKE2B a730c1ea4efceebb494fc69eac5b94ab23088e0c496684fe027b005492168b6639ec3ebc950e09f643e4a1b50017150caee639255e5e1deb5f9a46c0969077ff SHA512 d8383c20c062a759386e80927337f8ed526914fb53095480dfe791d80fe4cc3e19e83627ca9d34986968b282b16b4c43a6302f76c55d3c2545b6e7b625d47966
DIST mdbtools-0.9.2.tar.gz 214246 BLAKE2B f62ffae2b084e53f7222ab969aa7f57f65735281383f93aeb025cff38b32b9aa22ffffb819532f816cc45a9156f7136bd9de953b17b86817380123451d51170c SHA512 cb2bddca83eb9867b765f6fc57fb289f91ce4e2e09dd953e338c26f6c4bcfe9ddb53368c4eef6d02927e582c2e10312462b82916c2e956fa269f25a765371d8d
DIST mdbtools-0.9.3.tar.gz 214697 BLAKE2B 59aca58d11b9c513c8d5b8401423b04484657543d742e20e058e7b29e8225a2c2c3b6e5a95a61a2214a1323b1c5d80b08a71c9f9bcdbf2f35b079a7b05919841 SHA512 3ceb9e374fd638a01d087a1f5e8fb357b24f0a85a8f9c65743a78ec1d6a981fed299744610382ae525f3781e73e268de5c4bb2e48eff78e48b197e2add23587e
diff --git a/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild b/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
deleted file mode 100644
index f64c8aa4c17..00000000000
--- a/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Set of libraries and utilities for reading Microsoft Access database (MDB) files"
-HOMEPAGE="http://mdbtools.sourceforge.net"
-SRC_URI="https://github.com/brianb/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="odbc"
-
-BDEPEND="
- app-text/txt2man
- sys-devel/flex
- virtual/pkgconfig
- virtual/yacc
-"
-RDEPEND="
- dev-libs/glib:2
- sys-libs/ncurses:0=
- sys-libs/readline:0=
- odbc? ( >=dev-db/unixODBC-2.0 )"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README TODO )
-
-PATCHES=( "${FILESDIR}/${P}-parallel-make.patch" )
-
-src_prepare() {
- default
-
- # bug #697568
- sed -i -e "s:/lib\":/$(get_libdir)\":" configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-gtk-doc
- --disable-gmdb2
- --disable-static
- $(use odbc && echo "--with-unixodbc=${EPREFIX}/usr")
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -delete || die
-}
diff --git a/app-office/mdbtools/mdbtools-0.9.1.ebuild b/app-office/mdbtools/mdbtools-0.9.1.ebuild
deleted file mode 100644
index 9632418d1e4..00000000000
--- a/app-office/mdbtools/mdbtools-0.9.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Set of libraries and utilities for reading Microsoft Access database (MDB) files"
-HOMEPAGE="https://github.com/mdbtools/mdbtools"
-SRC_URI="https://github.com/brianb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/3"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="glib odbc"
-
-BDEPEND="
- app-text/txt2man
- sys-devel/flex
- virtual/pkgconfig
- virtual/yacc
-"
-RDEPEND="
- sys-libs/ncurses:0=
- sys-libs/readline:0=
- odbc? ( >=dev-db/unixODBC-2.0 )
- glib? ( dev-libs/glib:2 )
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS HACKING NEWS README TODO )
-
-src_prepare() {
- default
-
- # bug #770019
- sed -i -e 's/-Werror//' configure.ac || die
-
- # bug #697568
- # TODO: upstream with autotools fix
- sed -i -e "s:/lib\":/$(get_libdir)\":" configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable glib)
- $(use odbc && echo "--with-unixodbc=${EPREFIX}/usr")
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -delete || die
-}
next reply other threads:[~2021-07-24 6:22 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-24 6:22 John Helmert III [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-27 14:03 [gentoo-commits] repo/gentoo:master commit in: app-office/mdbtools/ Sam James
2023-05-18 6:21 Jakov Smolić
2022-04-12 23:15 Jakov Smolić
2021-12-05 18:39 Sam James
2021-12-05 18:31 Sam James
2021-12-05 18:21 Arthur Zamarin
2021-12-05 4:16 Sam James
2021-10-25 6:06 Sam James
2021-10-25 6:06 Sam James
2021-10-25 6:06 Sam James
2021-10-25 6:06 Sam James
2021-10-25 6:06 Sam James
2021-10-24 23:39 Sam James
2021-10-24 23:34 Sam James
2021-08-05 3:52 Sam James
2021-05-10 13:20 Sergei Trofimovich
2021-05-09 6:00 Sam James
2021-05-09 6:00 Sam James
2021-05-09 4:05 Sam James
2021-05-03 16:49 Sam James
2021-02-27 4:12 Sam James
2021-02-11 3:47 Sam James
2021-02-11 3:04 Sam James
2021-02-11 3:04 Sam James
2021-02-11 3:04 Sam James
2021-02-11 3:04 Sam James
2018-04-01 20:21 Jonas Stein
2018-02-11 10:25 Michał Górny
2017-08-30 15:36 Sergey Popov
2016-11-03 14:42 Pacho Ramos
2016-11-03 14:42 Pacho Ramos
2016-11-03 14:42 Pacho Ramos
2016-11-03 14:42 Pacho Ramos
2016-11-03 14:42 Pacho Ramos
2015-10-31 9:36 Ian Delaney
2015-10-27 7:58 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1627107695.41df5bf9be91ba8ff592c8cb6ec6d4387450b383.ajak@gentoo \
--to=ajak@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox