From: "Andreas K. Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mpfr/
Date: Sun, 20 Aug 2023 20:39:52 +0000 (UTC) [thread overview]
Message-ID: <1692563981.0ece0fa71c3356a2a5182603060dce281c59130c.dilfridge@gentoo> (raw)
commit: 0ece0fa71c3356a2a5182603060dce281c59130c
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 20 20:39:25 2023 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Aug 20 20:39:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ece0fa7
dev-libs/mpfr: drop 4.2.0_p9
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-libs/mpfr/mpfr-4.2.0_p9.ebuild | 98 --------------------------------------
1 file changed, 98 deletions(-)
diff --git a/dev-libs/mpfr/mpfr-4.2.0_p9.ebuild b/dev-libs/mpfr/mpfr-4.2.0_p9.ebuild
deleted file mode 100644
index 09e59e3b748a..000000000000
--- a/dev-libs/mpfr/mpfr-4.2.0_p9.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/vincentlefevre.asc
-inherit multilib-minimal verify-sig
-
-# Upstream distribute patches before a new release is made
-# See https://www.mpfr.org/mpfr-current/#bugs for the latest version (and patches)
-
-# Check whether any patches touch e.g. manuals!
-# https://archives.gentoo.org/gentoo-releng-autobuilds/message/c2dd39fc4ebc849db6bb0f551739e2ed
-MY_PV=${PV%%_p*}
-MY_PATCH=$(ver_cut 5-)
-MY_PATCHES=()
-MY_P=${PN}-${MY_PV/_/-}
-
-DESCRIPTION="Library for multiple-precision floating-point computations with exact rounding"
-HOMEPAGE="https://www.mpfr.org/ https://gitlab.inria.fr/mpfr"
-SRC_URI="https://www.mpfr.org/${PN}-$(ver_cut 1-3)/${MY_P}.tar.xz"
-SRC_URI+=" verify-sig? ( https://www.mpfr.org/${PN}-$(ver_cut 1-3)/${MY_P}.tar.xz.asc )"
-
-if [[ ${PV} == *_p* ]] ; then
- # If this is a patch release, we have to download each of the patches:
- # -_pN = N patches
- # - patch file names are like: patch01, patch02, ..., patch10, patch12, ..
- #
- # => name the ebuild _pN where N is the number of patches on the 'bugs' page.
- patch_url_base="https://www.mpfr.org/${MY_P}"
- my_patch_index=
-
- for ((my_patch_index=1; my_patch_index <= MY_PATCH ; my_patch_index++)) ; do
- printf -v mangled_patch_ver "patch%02d" "${my_patch_index}"
-
- SRC_URI+=" ${patch_url_base}/${mangled_patch_ver} -> ${MY_P}-${mangled_patch_ver}.patch"
-
- MY_PATCHES+=( "${DISTDIR}"/${MY_P}-${mangled_patch_ver}.patch )
- done
-
- unset patch_url_base my_patch_index mangled_patch_ver
-fi
-
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="LGPL-3+"
-# This is a critical package; if SONAME changes, bump subslot but also add
-# preserve-libs.eclass usage to pkg_*inst! See e.g. the readline ebuild.
-SLOT="0/6" # libmpfr.so version
-if [[ ${PV} != *_rc* ]] ; then
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-fi
-IUSE="static-libs"
-
-RDEPEND=">=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]"
-DEPEND="${RDEPEND}"
-BDEPEND="verify-sig? ( sec-keys/openpgp-keys-vincentlefevre )"
-
-PATCHES=(
- # Apply the upstream patches released out-of-band; generated above
- "${MY_PATCHES[@]}"
-
- # Additional patches
-)
-
-HTML_DOCS=( doc/FAQ.html )
-
-src_unpack() {
- use verify-sig && verify-sig_verify_detached "${DISTDIR}"/${MY_P}.tar.xz{,.asc}
-
- # Avoid src_unpack noise from patches
- unpack ${MY_P}.tar.xz
-}
-
-src_prepare() {
- default
-
- # 4.1.0_p13's patch10 patches a .texi file *and* the corresponding
- # info file. We need to make sure the info file is newer, so the
- # build doesn't try to run makeinfo. Won't be needed on next release.
- #touch "${S}/doc/mpfr.info" || die
-}
-
-multilib_src_configure() {
- # bug #476336#19
- # Make sure mpfr doesn't go probing toolchains it shouldn't
- ECONF_SOURCE="${S}" \
- user_redefine_cc=yes \
- econf $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
- rm "${ED}"/usr/share/doc/${PF}/COPYING* || die
-
- if ! use static-libs ; then
- find "${ED}"/usr -name '*.la' -delete || die
- fi
-}
next reply other threads:[~2023-08-20 20:39 UTC|newest]
Thread overview: 126+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-20 20:39 Andreas K. Hüttel [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-04 12:01 [gentoo-commits] repo/gentoo:master commit in: dev-libs/mpfr/ Sam James
2023-12-01 11:20 Arthur Zamarin
2023-09-28 5:12 Sam James
2023-09-28 4:21 Sam James
2023-09-27 5:44 Sam James
2023-09-27 5:12 Sam James
2023-09-27 4:46 Sam James
2023-09-27 4:46 Sam James
2023-08-22 11:57 Sam James
2023-08-20 20:39 Andreas K. Hüttel
2023-08-19 20:15 Sam James
2023-08-02 16:19 Sam James
2023-08-02 15:11 Sam James
2023-07-30 18:17 Sam James
2023-07-30 18:17 Sam James
2023-07-30 17:57 Arthur Zamarin
2023-07-30 17:57 Arthur Zamarin
2023-07-30 17:57 Arthur Zamarin
2023-07-30 17:57 Arthur Zamarin
2023-07-20 2:34 Sam James
2023-07-20 2:33 Sam James
2023-06-25 15:39 Arthur Zamarin
2023-06-25 7:39 Sam James
2023-06-25 7:12 Sam James
2023-06-25 7:12 Sam James
2023-06-25 7:12 Sam James
2023-06-25 7:12 Sam James
2023-06-25 7:06 Sam James
2023-06-25 7:06 Sam James
2023-06-14 5:24 Sam James
2023-06-02 21:47 Sam James
2023-06-02 2:24 Sam James
2023-05-18 22:53 Sam James
2023-05-12 20:25 Sam James
2023-04-18 2:37 Sam James
2023-03-31 11:46 Arthur Zamarin
2023-03-11 6:52 Viorel Munteanu
2023-01-29 5:07 Sam James
2023-01-27 9:25 Jakov Smolić
2023-01-27 8:21 Sam James
2023-01-27 8:07 Sam James
2023-01-27 8:05 Sam James
2023-01-27 8:05 Sam James
2023-01-13 16:48 Sam James
2023-01-07 9:45 Sam James
2023-01-07 8:17 Sam James
2023-01-07 8:17 Sam James
2023-01-07 8:17 Sam James
2023-01-07 8:16 Sam James
2023-01-07 8:16 Sam James
2023-01-07 8:16 Sam James
2023-01-07 8:16 Sam James
2023-01-07 7:38 Sam James
2023-01-07 7:38 Sam James
2022-12-13 20:39 Sam James
2022-11-17 21:17 Sam James
2022-10-19 19:22 Sam James
2022-09-23 1:56 Sam James
2022-03-16 15:08 Sam James
2022-01-06 19:59 Sam James
2022-01-02 10:54 Jakov Smolić
2022-01-02 0:04 Sam James
2022-01-01 5:34 Sam James
2022-01-01 5:34 Sam James
2022-01-01 5:34 Sam James
2022-01-01 5:34 Sam James
2022-01-01 5:34 Sam James
2021-11-09 6:57 Sam James
2021-10-30 22:41 Sam James
2021-10-29 8:49 Sam James
2021-10-29 8:49 Sam James
2021-10-19 7:51 Sam James
2021-01-06 19:34 Fabian Groffen
2020-12-27 14:21 Fabian Groffen
2020-09-07 20:46 Sergei Trofimovich
2020-08-31 0:42 Sam James
2020-08-11 14:23 Agostino Sarubbo
2020-08-11 14:13 Agostino Sarubbo
2020-08-11 8:37 Sam James
2020-08-10 19:25 Sergei Trofimovich
2020-08-10 11:55 Agostino Sarubbo
2020-08-10 9:25 Agostino Sarubbo
2020-07-10 20:38 Sergei Trofimovich
2020-03-01 20:40 Sergei Trofimovich
2020-02-25 12:46 Mikle Kolyada
2020-02-25 12:46 Mikle Kolyada
2019-11-13 16:09 Agostino Sarubbo
2019-11-12 19:42 Matt Turner
2019-11-12 18:07 Agostino Sarubbo
2019-11-12 10:38 Agostino Sarubbo
2019-11-11 0:26 Matt Turner
2019-11-10 21:56 Sergei Trofimovich
2019-11-09 15:54 Aaron Bauman
2019-11-08 8:35 Mikle Kolyada
2019-11-03 14:49 Agostino Sarubbo
2019-11-03 13:39 Mikle Kolyada
2019-11-03 13:03 Agostino Sarubbo
2019-05-04 18:38 Andreas K. Hüttel
2019-02-01 23:52 Anthony G. Basile
2018-06-24 1:47 Matthias Maier
2018-06-10 16:29 Sergei Trofimovich
2018-04-24 9:20 Anthony G. Basile
2018-02-08 9:12 Anthony G. Basile
2018-01-13 23:22 Mike Frysinger
2017-12-26 19:25 Anthony G. Basile
2017-12-26 16:58 Anthony G. Basile
2017-12-26 9:36 Anthony G. Basile
2017-11-27 7:27 Sergei Trofimovich
2017-11-27 0:20 Thomas Deutschmann
2017-11-26 19:06 Sergei Trofimovich
2017-11-26 1:30 Matt Turner
2017-11-25 20:02 Matt Turner
2017-11-25 12:10 Sergei Trofimovich
2017-09-10 1:52 Anthony G. Basile
2017-01-29 16:19 Fabian Groffen
2016-09-27 11:55 Lars Wendler
2016-03-07 1:16 Mike Frysinger
2015-10-24 16:33 Mike Frysinger
2015-10-24 16:27 Mike Frysinger
2015-10-21 12:48 Tobias Klausmann
2015-10-17 10:59 Markus Meier
2015-10-04 9:32 Agostino Sarubbo
2015-10-04 9:31 Agostino Sarubbo
2015-10-03 18:28 Anthony G. Basile
2015-10-03 18:18 Jeroen Roovers
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=1692563981.0ece0fa71c3356a2a5182603060dce281c59130c.dilfridge@gentoo \
--to=dilfridge@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