public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/mbuffer/
Date: Tue, 27 Mar 2018 09:31:15 +0000 (UTC)	[thread overview]
Message-ID: <1522142985.d1a4d8f62280c4a7429efdd5ae678bef3b66fda2.polynomial-c@gentoo> (raw)

commit:     d1a4d8f62280c4a7429efdd5ae678bef3b66fda2
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 27 09:29:45 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Mar 27 09:29:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1a4d8f6

sys-block/mbuffer: Bump to version 20180318

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-block/mbuffer/Manifest                |  1 +
 sys-block/mbuffer/mbuffer-20180318.ebuild | 58 +++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/sys-block/mbuffer/Manifest b/sys-block/mbuffer/Manifest
index fd16c652241..655a930f5a7 100644
--- a/sys-block/mbuffer/Manifest
+++ b/sys-block/mbuffer/Manifest
@@ -3,3 +3,4 @@ DIST mbuffer-20160228.tgz 123108 BLAKE2B a19997f66a9a9247775bda94e0254938f286c0d
 DIST mbuffer-20170515.tgz 125736 BLAKE2B 5524b1e63637180661d432dcf124b5579f17d4da3ff0bedba41d1a94d147df9478e209eaa3fd409092a0f82c37bee10910791b8b6344ab509211cc7fc2f03a8a SHA512 991cb33b09e48f1177b7a05e5ab2c189aa2cb0f03e220d7e46996b3a3e3ba1e3f3ad4a68b8750ed73dc765c5874029715bba1d2f5a80a9601cd0a39e1f9fd447
 DIST mbuffer-20170921.tgz 136192 BLAKE2B 2ec9858aae970340cf5b9d2f305039d351df6efbe51ee3a28d1de407da508a82fceb7c41f1dc89c1a58d7b26430151e8103023a1574cdad84bee1f7b78770402 SHA512 f4b897e7649893cb02f9b3b806e956acf60692cd549f9cfe6cf164c703f369f0af251bfdabfbcdd76dacf5a4c3871ed7b98fbd6b5fcb97d184b7c317082bfaee
 DIST mbuffer-20171011.tgz 136630 BLAKE2B ba69435684b8c844701a51c5a77d0f5ecbf8bef3ca9b9739a63309524b14d0cbbeba422cee1c5d69f1029a42c18d089cea0bcc46dbeba7f51767df3a815f7de7 SHA512 398d7545388a94b4f8961193192cd5e1139b84f31c7699c2b7f66b84a40488a2e70c88a2a70578bd95375e11efc87978a5f6fec805dbbc5f1fea460b3a9c68c4
+DIST mbuffer-20180318.tgz 137259 BLAKE2B bec1f6acc68c3c9cf617dd7a752644628d088541c20816737ea1533eb0e9c92b76ef2dd037912501c29056994443e3ad66b1e7f4456e0f40687b32e4c6a12cf1 SHA512 ac71876aa0bea3acce8ea00c3848783b752991a0e60ebc4245277fd435c2c9e08c79cc5f47c996e590e711ca1bd652ded075c24ca820efe845f578b106c43594

diff --git a/sys-block/mbuffer/mbuffer-20180318.ebuild b/sys-block/mbuffer/mbuffer-20180318.ebuild
new file mode 100644
index 00000000000..b98af0bb4ca
--- /dev/null
+++ b/sys-block/mbuffer/mbuffer-20180318.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="M(easuring)buffer is a replacement for buffer with additional functionality"
+HOMEPAGE="http://www.maier-komor.de/mbuffer.html"
+SRC_URI="http://www.maier-komor.de/software/mbuffer/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug ssl test"
+
+RDEPEND="ssl? ( dev-libs/openssl:0= )"
+DEPEND="${RDEPEND}
+	test? ( dev-libs/openssl:0 )"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-20171011-resolv-multi-order-issue.patch"
+	"${FILESDIR}/${PN}-20171011-sysconfdir.patch"
+)
+
+src_prepare() {
+	ln -s "${DISTDIR}"/${P}.tgz test.tar #258881
+
+	# Enforce MAKEOPTS=-j1 because src_test() spawns multiple listener
+	# using same port and src_install may have problems (with /etc folder)
+	export MAKEOPTS=-j1
+
+	default
+}
+
+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
+
+	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
+}


             reply	other threads:[~2018-03-27  9:31 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-27  9:31 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-02  4:51 [gentoo-commits] repo/gentoo:master commit in: sys-block/mbuffer/ Sam James
2025-09-07 14:56 Arthur Zamarin
2025-09-06 17:39 Arthur Zamarin
2025-09-06 16:45 Michał Górny
2025-09-06 16:06 Arthur Zamarin
2025-09-03  3:34 Sam James
2025-05-01  3:43 Sam James
2025-05-01  3:43 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
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=1522142985.d1a4d8f62280c4a7429efdd5ae678bef3b66fda2.polynomial-c@gentoo \
    --to=polynomial-c@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