From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/mbuffer/
Date: Thu, 01 May 2025 03:43:16 +0000 (UTC) [thread overview]
Message-ID: <1746070906.6be1cc8c4761a8112170a1c084c9d0cacc1970ae.sam@gentoo> (raw)
commit: 6be1cc8c4761a8112170a1c084c9d0cacc1970ae
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 1 03:16:56 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 1 03:41:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6be1cc8c
sys-block/mbuffer: drop 20240107
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/mbuffer/Manifest | 1 -
sys-block/mbuffer/mbuffer-20240107.ebuild | 70 -------------------------------
2 files changed, 71 deletions(-)
diff --git a/sys-block/mbuffer/Manifest b/sys-block/mbuffer/Manifest
index f38fc1d232bb..e7ce458faacd 100644
--- a/sys-block/mbuffer/Manifest
+++ b/sys-block/mbuffer/Manifest
@@ -1,4 +1,3 @@
-DIST mbuffer-20240107.tgz 151573 BLAKE2B 9fb8d1ead6424e676f6ec0dd591cdd48b53a5b1b4a980e23101ae1e52a0f2a0d07048208f8ae6c45aee66f963b7ed9720b47b16b04495bcba97489a87d8c8d8f SHA512 14773c1193ed5e4a0dfda4ef6bd6ccb0cf104f8c4ae1d22747e52e8247aeb1db64656700f9cf317b13140fb649db889831233f0b8fef0a8463d28713b5882977
DIST mbuffer-20240707.tgz 151887 BLAKE2B ae03f9a581ef37d7502d60df35ab7026987ca1e4cdd09b7bd0a2e90fa6f3b75aead9a6add7907f18c582ba40b110f24c9430a1e145772996641196de88a1470e SHA512 603877e86df666807c77e6147268d15242acbbc9787fbc9962af97367694a25d95eda1c66197975b858739ce4683e3c36cd1b442f65daae304f25056096319c6
DIST mbuffer-20241007.tgz 152029 BLAKE2B d26c0d87abacc8826bf2e6f414fe9264da7b3196c62a9853a8ffb6b118df353977c38ea5b1bf79e71fadcae6585b90b1f21152f742c7fafee08ae4294acceb60 SHA512 cb8f9e962510030f8e1500dcd21a556b73144c445bc12ece3915df201fa5e8849c183546c7ce700e06d1c734c0fdf36e31046ac984e232b64f9b019b54e1ddd2
DIST mbuffer-20250429.tgz 152402 BLAKE2B 702f028ff310370ceeb6894e0456e68452afec9e353b83bfa875d2f8171af8d008736384382e42a447c9572e7c55d924761d5043be84010589a597870238220b SHA512 9cbf233335b8f7fe4d607f93afdb1797293377f580def420a3b2285b1e777ef33fff7fd7ebbe67fd35dca48127e887de9f833c2d019075f51fcef2e479a8ff00
diff --git a/sys-block/mbuffer/mbuffer-20240107.ebuild b/sys-block/mbuffer/mbuffer-20240107.ebuild
deleted file mode 100644
index 9c6aaa7d7fa0..000000000000
--- a/sys-block/mbuffer/mbuffer-20240107.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="M(easuring)buffer is a replacement for buffer with additional functionality"
-HOMEPAGE="https://www.maier-komor.de/mbuffer.html"
-SRC_URI="https://www.maier-komor.de/software/mbuffer/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~riscv ~sparc x86"
-IUSE="debug ssl test"
-REQUIRED_USE="test? ( ssl )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- ssl? (
- dev-libs/openssl
- )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-20180410-sysconfdir.patch"
- "${FILESDIR}/${PN}-20200929-find-OBJDUMP.patch"
- "${FILESDIR}/${PN}-20231216-autoconf-warning.patch"
- "${FILESDIR}/${PN}-20240107-O0-for-libc-name-find.patch"
-)
-
-src_prepare() {
- default
-
- ln -s "${DISTDIR}"/${P}.tgz test.tar # bug #258881
-
- mv configure.in configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable ssl md5)
- $(use_enable debug)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- if has usersandbox ${FEATURES} || has network-sandbox ${FEATURES}; then
- ewarn "Some tests may fail with FEATURES=usersandbox or"
- ewarn "FEATURES=network-sandbox; Skipping tests because"
- ewarn "test suite would hang forever in such environments!"
- return 0;
- fi
-
- # Enforce MAKEOPTS=-j1 because src_test() spawns multiple listener
- # using same port and src_install may have problems (with /etc folder)
- local -x MAKEOPTS=-j1
-
- default
-}
-
-pkg_postinst() {
- if ! has_version "app-arch/mt-st"; then
- elog ""
- elog "If you want autoloader support you need to install \"app-arch/mt-st\" in addition!"
- fi
-}
next reply other threads:[~2025-05-01 3:43 UTC|newest]
Thread overview: 94+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-01 3:43 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-01 3:43 [gentoo-commits] repo/gentoo:master commit in: sys-block/mbuffer/ Sam James
2025-02-08 1:08 Jakov Smolić
2025-01-18 17:38 Sam James
2025-01-12 14:22 Sam James
2025-01-12 14:10 Sam James
2025-01-12 13:42 Sam James
2024-08-29 5:35 Jakov Smolić
2024-08-29 5:23 Jakov Smolić
2024-07-15 1:57 Sam James
2024-03-02 16:39 Arthur Zamarin
2024-02-18 13:31 Sam James
2024-02-18 13:31 Sam James
2024-02-03 6:56 Sam James
2024-02-02 17:51 Arthur Zamarin
2024-02-02 13:34 Arthur Zamarin
2024-02-02 5:29 Sam James
2024-01-23 5:43 Sam James
2024-01-18 0:28 Sam James
2024-01-17 6:34 Sam James
2024-01-17 5:57 Sam James
2024-01-17 5:50 Sam James
2024-01-14 3:40 Sam James
2023-12-03 3:37 Sam James
2023-11-18 2:29 Sam James
2023-04-23 22:24 Sam James
2023-04-23 20:42 Sam James
2023-04-23 20:05 Sam James
2023-04-23 20:01 Sam James
2023-04-23 20:00 Sam James
2023-03-13 22:11 Sam James
2022-12-26 8:35 Sam James
2022-11-25 6:02 Sam James
2022-11-25 5:33 Sam James
2022-11-25 5:21 Sam James
2022-11-25 5:16 Sam James
2022-11-25 5:16 Sam James
2022-08-11 13:58 Yixun Lan
2022-06-21 17:40 Matt Turner
2022-06-21 9:41 David Seifert
2022-06-02 3:14 Sam James
2022-06-02 3:12 Sam James
2022-06-02 3:12 Sam James
2022-06-02 3:05 Sam James
2022-06-02 3:05 Sam James
2022-04-17 17:06 Sam James
2021-10-20 23:48 Thomas Deutschmann
2021-10-15 14:33 Thomas Deutschmann
2021-09-04 17:35 David Seifert
2021-09-01 14:17 Thomas Deutschmann
2021-08-12 15:31 Sam James
2021-08-11 0:02 Sam James
2021-08-10 15:36 Agostino Sarubbo
2021-08-09 0:38 Sam James
2021-05-02 16:12 Mikle Kolyada
2021-03-30 0:21 Thomas Deutschmann
2021-02-16 12:30 Sam James
2021-02-15 10:48 Sam James
2021-02-12 13:48 Sam James
2021-02-12 9:57 Sam James
2021-02-10 22:21 Thomas Deutschmann
2020-08-16 11:04 Stefan Strogin
2020-08-11 15:05 Thomas Deutschmann
2020-08-11 14:23 Agostino Sarubbo
2020-08-11 7:21 Sergei Trofimovich
2020-08-10 13:52 Agostino Sarubbo
2020-08-07 18:51 Sam James
2020-06-29 6:22 Agostino Sarubbo
2020-05-19 9:49 Thomas Deutschmann
2020-05-19 9:49 Thomas Deutschmann
2020-05-08 20:58 Mart Raudsepp
2019-11-29 8:59 Agostino Sarubbo
2019-11-28 10:55 Agostino Sarubbo
2019-11-27 13:30 Thomas Deutschmann
2019-11-27 9:19 Thomas Deutschmann
2019-11-27 8:52 Thomas Deutschmann
2019-09-13 18:35 Mikle Kolyada
2019-09-13 18:35 Mikle Kolyada
2019-07-30 23:02 Thomas Deutschmann
2019-02-22 14:08 Thomas Deutschmann
2018-12-23 12:35 Mikle Kolyada
2018-12-23 12:29 Mikle Kolyada
2018-12-20 1:30 Thomas Deutschmann
2018-12-19 22:48 Sergei Trofimovich
2018-12-03 0:08 Thomas Deutschmann
2018-07-06 1:04 Thomas Deutschmann
2018-05-20 0:19 Thomas Deutschmann
2018-04-14 19:08 Aaron Bauman
2018-04-05 23:19 Thomas Deutschmann
2018-03-27 9:31 Lars Wendler
2017-11-07 10:57 Thomas Deutschmann
2016-04-16 13:28 Manuel Rüger
2016-04-13 18:23 Robin H. Johnson
2015-09-06 12:41 Agostino Sarubbo
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=1746070906.6be1cc8c4761a8112170a1c084c9d0cacc1970ae.sam@gentoo \
--to=sam@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