From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1174904-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4EC151382C5 for <garchives@archives.gentoo.org>; Thu, 28 May 2020 17:09:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 729B2E0809; Thu, 28 May 2020 17:09:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47F4DE0809 for <gentoo-commits@lists.gentoo.org>; Thu, 28 May 2020 17:09:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7283534F05B for <gentoo-commits@lists.gentoo.org>; Thu, 28 May 2020 17:09:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9CBC26F for <gentoo-commits@lists.gentoo.org>; Thu, 28 May 2020 17:09:42 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1590685741.145fbf100e4f0e9d75f24b08f403dcc43137d2f8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mdds/files/, dev-util/mdds/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/mdds/files/mdds-1.6.0-bashism.patch dev-util/mdds/mdds-1.6.0.ebuild X-VCS-Directories: dev-util/mdds/ dev-util/mdds/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 145fbf100e4f0e9d75f24b08f403dcc43137d2f8 X-VCS-Branch: master Date: Thu, 28 May 2020 17:09:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3453add3-6afc-406d-a44a-8c6d3b648ee6 X-Archives-Hash: 0a40d11a276817659d55ff14956cf63a commit: 145fbf100e4f0e9d75f24b08f403dcc43137d2f8 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Thu May 28 16:42:00 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu May 28 17:09:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=145fbf10 dev-util/mdds: Fix bashisms in configure.ac Reported-by: Matt Whitlock <gentoo <AT> mattwhitlock.name> Closes: https://bugs.gentoo.org/723094 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> dev-util/mdds/files/mdds-1.6.0-bashism.patch | 75 ++++++++++++++++++++++++++++ dev-util/mdds/mdds-1.6.0.ebuild | 5 +- 2 files changed, 79 insertions(+), 1 deletion(-) diff --git a/dev-util/mdds/files/mdds-1.6.0-bashism.patch b/dev-util/mdds/files/mdds-1.6.0-bashism.patch new file mode 100644 index 00000000000..4fa155c653f --- /dev/null +++ b/dev-util/mdds/files/mdds-1.6.0-bashism.patch @@ -0,0 +1,75 @@ +From 65da7c25f4d8204b1379a0afb46d82dc1b263ab0 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner <asturm@gentoo.org> +Date: Thu, 28 May 2020 18:36:07 +0200 +Subject: [PATCH] Fix bashisms in configure.ac + +--- + configure.ac | 14 +++++++------- + 1 file changed, 7 insertions(+), 7 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 00ab937..2282165 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -32,7 +32,7 @@ AC_ARG_ENABLE(debug-stdcxx, + ] + ,debug_stdcxx=yes) + +-AS_IF([test x"$debug_stdcxx" == "xyes"], [ ++AS_IF([test x"$debug_stdcxx" = "xyes"], [ + CXXFLAGS="$CXXFLAGS -D_GLIBCXX_DEBUG" + ]) + +@@ -42,7 +42,7 @@ AC_ARG_ENABLE(release-tests, + ] + ,release_tests=yes) + +-AS_IF([test x"$release_tests" == "xyes"], [ ++AS_IF([test x"$release_tests" = "xyes"], [ + CXXFLAGS="$CXXFLAGS -DNDEBUG -O2" + ]) + +@@ -56,11 +56,11 @@ AC_ARG_ENABLE(loop-unrolling, + [enable_loop_unrolling="$enableval"],[enable_loop_unrolling=yes] + ) + +-AS_IF([test x"$enable_loop_unrolling" == "xno"], [ ++AS_IF([test x"$enable_loop_unrolling" = "xno"], [ + CXXFLAGS="$CXXFLAGS -DMDDS_LOOP_UNROLLING=0" + ]) + +-AS_IF([test x"$enable_gcov" == "xyes"], [ ++AS_IF([test x"$enable_gcov" = "xyes"], [ + CXXFLAGS="$CXXFLAGS --coverage -O0" + ]) + +@@ -69,7 +69,7 @@ AC_ARG_ENABLE(openmp, + [enable_openmp="$enableval"],[enable_openmp=yes] + ) + +-AS_IF([test x"$enable_openmp" == "xyes"], [ ++AS_IF([test x"$enable_openmp" = "xyes"], [ + CXXFLAGS="$CXXFLAGS -fopenmp" + LDFLAGS="$LDFLAGS -fopenmp" + ]) +@@ -79,7 +79,7 @@ AC_ARG_ENABLE(sanitizer-coverage, + [enable_sanitizer_coverage="$enableval"],[enable_sanitizer_coverage=no] + ) + +-AS_IF([test x"$enable_sanitizer_coverage" == "xyes"], [ ++AS_IF([test x"$enable_sanitizer_coverage" = "xyes"], [ + CXXFLAGS="$CXXFLAGS -fprofile-instr-generate -fcoverage-mapping -O0" + ]) + +@@ -122,7 +122,7 @@ AC_ARG_ENABLE([werror], + [enable_werror="$enableval"], + [enable_werror=no] + ) +-AS_IF([test x"$enable_werror" == "xyes"], [ ++AS_IF([test x"$enable_werror" = "xyes"], [ + CXXFLAGS="$CXXFLAGS -Werror" + ]) + +-- +2.26.2 + diff --git a/dev-util/mdds/mdds-1.6.0.ebuild b/dev-util/mdds/mdds-1.6.0.ebuild index a8ee00cd56b..9364d50feb9 100644 --- a/dev-util/mdds/mdds-1.6.0.ebuild +++ b/dev-util/mdds/mdds-1.6.0.ebuild @@ -30,7 +30,10 @@ BDEPEND=" DEPEND="dev-libs/boost:=" RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-1.5.0-buildsystem.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-1.5.0-buildsystem.patch" + "${FILESDIR}/${P}-bashism.patch" # bug 723094 +) pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp