[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/files/

2023-01-31 Thread Conrad Kostecki
commit: 1892c3d4615b35c5ca02206002ecacb6f1799d26
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jan 30 19:10:33 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Feb  1 01:13:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1892c3d4

dev-cpp/muParser: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29346
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../muParser/files/muParser-2.3-export-cmake.patch | 405 -
 1 file changed, 405 deletions(-)

diff --git a/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch 
b/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch
deleted file mode 100644
index 79254626db6a..
--- a/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch
+++ /dev/null
@@ -1,405 +0,0 @@
-From a9e6626c9b2e250eb9161c767d2fb2e5a07315e2 Mon Sep 17 00:00:00 2001
-From: Francis Giraldeau 
-Date: Wed, 8 Jul 2020 14:59:27 -0400
-Subject: [PATCH] Export muparser cmake targets
-
-Export muparser targets, such that client projects can
-import it using find_package(). This mechanism for both the build tree
-and the install tree. The provided example3 shows how to import muparser
-targets.
-
-Signed-off-by: Francis Giraldeau 
-Signed-off-by: Alexey Shvetsov 

- CMakeLists.txt  |  39 ++-
- CMakeLists.txt.orig | 173 
- muparserConfig.cmake.in |   6 ++
- samples/example3/CMakeLists.txt |  12 +++
- samples/example3/README.md  |   2 +
- samples/example3/build.sh   |  23 +
- samples/example3/example3.cpp   |  49 +
- 7 files changed, 301 insertions(+), 3 deletions(-)
- create mode 100644 CMakeLists.txt.orig
- create mode 100644 muparserConfig.cmake.in
- create mode 100644 samples/example3/CMakeLists.txt
- create mode 100644 samples/example3/README.md
- create mode 100755 samples/example3/build.sh
- create mode 100644 samples/example3/example3.cpp
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index cfdce99..aecc67d 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -55,6 +55,11 @@ add_library(muparser
- src/muParserTest.cpp
- src/muParserTokenReader.cpp
- )
-+# use the headers in the build-tree or the installed ones
-+target_include_directories(muparser PUBLIC
-+$
-+$
-+)
- 
- # this compiles the "DLL" interface (C API)
- target_compile_definitions(muparser PRIVATE MUPARSER_DLL)
-@@ -77,9 +82,6 @@ set_target_properties(muparser PROPERTIES
- SOVERSION ${MUPARSER_VERSION_MAJOR}
- )
- 
--# Install the export set for use with the install-tree
--export(TARGETS muparser FILE "${CMAKE_BINARY_DIR}/muparser-targets.cmake")
--
- if(ENABLE_SAMPLES)
-   add_executable(example1 samples/example1/example1.cpp)
-   target_link_libraries(example1 muparser)
-@@ -91,8 +93,10 @@ endif()
- # The GNUInstallDirs defines ${CMAKE_INSTALL_DATAROOTDIR}
- # See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html
- include (GNUInstallDirs)
-+set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/muparser)
- 
- install(TARGETS muparser
-+EXPORT muparser-export
- LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT RuntimeLibraries
- ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Development
- RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT RuntimeLibraries
-@@ -116,6 +120,35 @@ install(FILES
- COMPONENT Development
- )
- 
-+# Export the target under the build-tree (no need to install)
-+export(EXPORT muparser-export
-+FILE "${CMAKE_BINARY_DIR}/muparser-targets.cmake"
-+NAMESPACE muparser::
-+)
-+
-+# Export the installed target (typically for packaging)
-+include(CMakePackageConfigHelpers)
-+write_basic_package_version_file(
-+"${CMAKE_CURRENT_BINARY_DIR}/muparserConfigVersion.cmake"
-+VERSION ${MUPARSER_VERSION}
-+COMPATIBILITY AnyNewerVersion
-+)
-+configure_file(muparserConfig.cmake.in
-+"${CMAKE_CURRENT_BINARY_DIR}/muparserConfig.cmake"
-+COPYONLY
-+)
-+install(EXPORT muparser-export
-+FILE muparser-targets.cmake
-+NAMESPACE muparser::
-+DESTINATION ${INSTALL_CONFIGDIR}
-+)
-+install(FILES
-+${CMAKE_CURRENT_BINARY_DIR}/muparserConfig.cmake
-+${CMAKE_CURRENT_BINARY_DIR}/muparserConfigVersion.cmake
-+DESTINATION ${INSTALL_CONFIGDIR}
-+COMPONENT Development
-+)
-+
- # Define variables for the pkg-config file
- set(PACKAGE_NAME muparser)
- configure_file(
-diff --git a/CMakeLists.txt.orig b/CMakeLists.txt.orig
-new file mode 100644
-index 000..b496584
 /dev/null
-+++ b/CMakeLists.txt.orig
-@@ -0,0 +1,173 @@
-+# CMake based on work from @xantares
-+cmake_minimum_required (VERSION 3.1.0)
-+set(CMAKE_CXX_STANDARD 11)
-+set(CMAKE_CXX_STANDARD_REQUIRED ON)
-+
-+# By default, build in Release mode. Must appear before project() command
-+if (NOT DEFINED CMAKE_BUILD_TYPE)
-+  set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type")
-+endif ()

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Sam James
commit: a23b0a6e29bde99cf414d14a4e50f349892ec763
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 23 06:22:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 23 06:22:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23b0a6e

dev-cpp/muParser: Stabilize 2.3.4-r1 x86, #891801

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
index 8c41fb6efaeb..896a68e294bb 100644
--- a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Sam James
commit: 15eb81861dd67a67b8f1ef9870bf26c814e4343e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 23 03:17:05 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 23 03:17:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15eb8186

dev-cpp/muParser: Stabilize 2.3.4-r1 arm64, #891801

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
index 4d8f3796535b..8c41fb6efaeb 100644
--- a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Sam James
commit: 04c14d4996aad385c8c341885952e2c06806ffbd
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 23 03:12:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 23 03:12:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c14d49

dev-cpp/muParser: Stabilize 2.3.4-r1 amd64, #891801

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
index 910218afa123..4d8f3796535b 100644
--- a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Matthias Maier
commit: 1fee59e8f357d681721edd0ce4e7b9896ee7ab83
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon Jan 23 02:19:02 2023 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Mon Jan 23 02:19:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fee59e8

dev-cpp/muParser: add missing openmp check

Closes: https://bugs.gentoo.org/875257
Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3-r2.ebuild | 10 +-
 dev-cpp/muParser/muParser-2.3.4-r1.ebuild | 10 +-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3-r2.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r2.ebuild
index cab8c4f6caf3..cc9e5ae7de10 100644
--- a/dev-cpp/muParser/muParser-2.3.3-r2.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake
+inherit cmake toolchain-funcs
 
 # The upstream tag is v2.3.3-1 instead of v2.3.3
 suffix="-1"
@@ -21,6 +21,14 @@ RESTRICT="!test? ( test )"
 
 S="${S}${suffix}"
 
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
 src_configure() {
local mycmakeargs=(
-DENABLE_OPENMP=$(usex openmp)

diff --git a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
index 363cf05aaf0d..910218afa123 100644
--- a/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake
+inherit cmake toolchain-funcs
 
 DESCRIPTION="Library for parsing mathematical expressions"
 HOMEPAGE="https://beltoforion.de/en/muparser/;
@@ -16,6 +16,14 @@ KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 
~amd64-linux ~x86-li
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
 src_configure() {
local mycmakeargs=(
-DENABLE_OPENMP=$(usex openmp)



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Matthias Maier
commit: f191cdee2c217ad2a0af7f37459c438614650472
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon Jan 23 02:06:16 2023 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Mon Jan 23 02:06:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f191cdee

dev-cpp/muParser: Remove USE=wchar

Unfortunately, this innocent looking USE flag incurs a silent ABI change
that let's all its reverse dependencies fail. A number of the reverse
dependencies of muParser already set muParser[-wchar] explicitly and the
rest is probably also not compiling.

Thus, remove the use flag.

If someone wants to have wchar_t support in muParser then a proper
solution would be to slot the package and install both ABI variants
simultaneously.

Closes: https://bugs.gentoo.org/880133
Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/metadata.xml  | 3 ---
 .../muParser/{muParser-2.3.3-r1.ebuild => muParser-2.3.3-r2.ebuild}| 3 +--
 dev-cpp/muParser/{muParser-2.3.4.ebuild => muParser-2.3.4-r1.ebuild}   | 3 +--
 3 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/dev-cpp/muParser/metadata.xml b/dev-cpp/muParser/metadata.xml
index 05a26448f3c7..c81547b2e58d 100644
--- a/dev-cpp/muParser/metadata.xml
+++ b/dev-cpp/muParser/metadata.xml
@@ -14,7 +14,4 @@
muparser
beltoforion/muparser

-   
-   Add support for wide character 
(wchar_t)
-   
 

diff --git a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r2.ebuild
similarity index 91%
rename from dev-cpp/muParser/muParser-2.3.3-r1.ebuild
rename to dev-cpp/muParser/muParser-2.3.3-r2.ebuild
index 669ac8313f52..cab8c4f6caf3 100644
--- a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3-r2.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}"/muparser-${PV}
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
-IUSE="doc openmp test wchar"
+IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 
 S="${S}${suffix}"
@@ -24,7 +24,6 @@ S="${S}${suffix}"
 src_configure() {
local mycmakeargs=(
-DENABLE_OPENMP=$(usex openmp)
-   -DENABLE_WIDE_CHAR=$(usex wchar)
)
cmake_src_configure
 }

diff --git a/dev-cpp/muParser/muParser-2.3.4.ebuild 
b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
similarity index 90%
rename from dev-cpp/muParser/muParser-2.3.4.ebuild
rename to dev-cpp/muParser/muParser-2.3.4-r1.ebuild
index d085086ce7f7..363cf05aaf0d 100644
--- a/dev-cpp/muParser/muParser-2.3.4.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.4-r1.ebuild
@@ -13,13 +13,12 @@ S="${WORKDIR}"/muparser-${PV}
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
-IUSE="doc openmp test wchar"
+IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 
 src_configure() {
local mycmakeargs=(
-DENABLE_OPENMP=$(usex openmp)
-   -DENABLE_WIDE_CHAR=$(usex wchar)
)
cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2023-01-22 Thread Matthias Maier
commit: ee92e6133582185275d45dfa207f32a055db9732
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon Jan 23 02:04:15 2023 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Mon Jan 23 02:04:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee92e613

dev-cpp/muParser: drop 2.3.2-r1, 2.3.3

Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/Manifest |  1 -
 dev-cpp/muParser/muParser-2.3.2-r1.ebuild | 35 -
 dev-cpp/muParser/muParser-2.3.3.ebuild| 37 ---
 3 files changed, 73 deletions(-)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 71a9a28a4c96..0a5facbe3090 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,3 +1,2 @@
-DIST muParser-2.3.2.tar.gz 103979 BLAKE2B 
f892b4d440a1b7326be27aa0a2b703ccafc02de5e881ef4780e8907688cf7905284f3e5f5855ad2596683f1dad309d287ebae527d917ebf5e0dad045551df7de
 SHA512 
8ef5c8b3834da3995a782b7364a4eb4197fb706bee4cadabe5511d2a9cf2912c3db6de422a91eff7f9690f8c9c355b9900335e940749d5c243cb732ac1992aef
 DIST muParser-2.3.3.tar.gz 112100 BLAKE2B 
79a0a29781596f114aeea9756a5a2141eed19857c08d0a32093353eb049f8b179af577cbd07747d2b8093e448714397b47f36c68e54bbce22386f5ec06365bda
 SHA512 
f7e01c83f6ffe71e240653c47fdb8f3152d7fdf61b5997a3c717dec50d0175065c4fc4241ec95fb35b60b968c5c965a820009163ebe84f0fa57d64b3a23226b4
 DIST muParser-2.3.4.tar.gz 112693 BLAKE2B 
860c24d45140ad4339efcd5f5c221454c051565a1362907fd01499cfda0ef3c304333507c4d9c43644dac63e5fb4963fef6e3a2e565febf1a80807e0a0242c87
 SHA512 
5226fd666eaf3ff7e661bbf72e60114d0ceed10491ffa4ed2dd34cd669c6c21c037eff0388402d6b9d60b0a5a27b03ca35153e0c048328abc75dfd1eaf38ceca

diff --git a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
deleted file mode 100644
index 9023bc7bc987..
--- a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="https://beltoforion.de/en/muparser/;
-SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/muparser-${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
-IUSE="doc openmp test"
-RESTRICT="!test? ( test )"
-
-PATCHES=( "${FILESDIR}/muParser-2.3-export-cmake.patch" )
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_OPENMP=$(usex openmp)
-   )
-   cmake_src_configure
-}
-
-src_test() {
-   cmake_src_compile test
-}
-
-src_install() {
-   cmake_src_install
-   dodoc Changes.txt
-}

diff --git a/dev-cpp/muParser/muParser-2.3.3.ebuild 
b/dev-cpp/muParser/muParser-2.3.3.ebuild
deleted file mode 100644
index fc2e66b58f60..
--- a/dev-cpp/muParser/muParser-2.3.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-# The upstream tag is v2.3.3-1 instead of v2.3.3
-suffix="-1"
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="https://beltoforion.de/en/muparser/;
-SRC_URI="https://github.com/beltoforion/muparser/archive/refs/tags/v${PV}${suffix}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}"/muparser-${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
-IUSE="doc openmp test"
-RESTRICT="!test? ( test )"
-
-S="${S}${suffix}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_OPENMP=$(usex openmp)
-   )
-   cmake_src_configure
-}
-
-src_test() {
-   cmake_src_compile test
-}
-
-src_install() {
-   cmake_src_install
-}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-12-20 Thread Alexey Shvetsov
commit: 71112de50094452f8454ace5619db6e471a56398
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Tue Dec 20 18:38:37 2022 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Tue Dec 20 18:38:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71112de5

dev-cpp/muParser: add 2.3.4

Signed-off-by: Alexey Shvetsov  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 +
 dev-cpp/muParser/muParser-2.3.4.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 2a400643c4b5..71a9a28a4c96 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,2 +1,3 @@
 DIST muParser-2.3.2.tar.gz 103979 BLAKE2B 
f892b4d440a1b7326be27aa0a2b703ccafc02de5e881ef4780e8907688cf7905284f3e5f5855ad2596683f1dad309d287ebae527d917ebf5e0dad045551df7de
 SHA512 
8ef5c8b3834da3995a782b7364a4eb4197fb706bee4cadabe5511d2a9cf2912c3db6de422a91eff7f9690f8c9c355b9900335e940749d5c243cb732ac1992aef
 DIST muParser-2.3.3.tar.gz 112100 BLAKE2B 
79a0a29781596f114aeea9756a5a2141eed19857c08d0a32093353eb049f8b179af577cbd07747d2b8093e448714397b47f36c68e54bbce22386f5ec06365bda
 SHA512 
f7e01c83f6ffe71e240653c47fdb8f3152d7fdf61b5997a3c717dec50d0175065c4fc4241ec95fb35b60b968c5c965a820009163ebe84f0fa57d64b3a23226b4
+DIST muParser-2.3.4.tar.gz 112693 BLAKE2B 
860c24d45140ad4339efcd5f5c221454c051565a1362907fd01499cfda0ef3c304333507c4d9c43644dac63e5fb4963fef6e3a2e565febf1a80807e0a0242c87
 SHA512 
5226fd666eaf3ff7e661bbf72e60114d0ceed10491ffa4ed2dd34cd669c6c21c037eff0388402d6b9d60b0a5a27b03ca35153e0c048328abc75dfd1eaf38ceca

diff --git a/dev-cpp/muParser/muParser-2.3.4.ebuild 
b/dev-cpp/muParser/muParser-2.3.4.ebuild
new file mode 100644
index ..4dd7dfcdf406
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.3.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="https://beltoforion.de/en/muparser/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}"/muparser-${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+IUSE="doc openmp test wchar"
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DENABLE_OPENMP=$(usex openmp)
+   -DENABLE_WIDE_CHAR=$(usex wchar)
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   cmake_src_compile test
+}
+
+src_install() {
+   cmake_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-12-17 Thread Arthur Zamarin
commit: 2d0386ba446628f87bd32b69a60de6951ba0e98d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 17 19:25:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 17 19:25:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0386ba

dev-cpp/muParser: Stabilize 2.3.3-r1 arm64, #886365

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
index a9313ea9eef4..b5702ad96464 100644
--- a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test wchar"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-12-16 Thread Sam James
commit: e9052917b5b058e684d0bccb1bf544071c29e47b
Author: Sam James  gentoo  org>
AuthorDate: Fri Dec 16 21:49:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 16 21:49:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9052917

dev-cpp/muParser: Stabilize 2.3.3-r1 x86, #886365

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
index 8d77282a7f9a..a9313ea9eef4 100644
--- a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test wchar"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-12-16 Thread Arthur Zamarin
commit: bc94a4c399c0c6ec6cb83fe21c935cfec4ba41fe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 16 20:32:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 16 20:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc94a4c3

dev-cpp/muParser: Stabilize 2.3.3-r1 amd64, #886365

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
index 56484900d164..8d77282a7f9a 100644
--- a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test wchar"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-09-30 Thread Christoph Junghans
commit: 8bfd53ae46426bf9eb15cc0a6415d03252c3f4ff
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 30 20:27:36 2022 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 30 20:28:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bfd53ae

muParser: wchar support

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Christoph Junghans  gentoo.org>

 dev-cpp/muParser/metadata.xml |  3 +++
 dev-cpp/muParser/muParser-2.3.3-r1.ebuild | 41 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-cpp/muParser/metadata.xml b/dev-cpp/muParser/metadata.xml
index c81547b2e58d..05a26448f3c7 100644
--- a/dev-cpp/muParser/metadata.xml
+++ b/dev-cpp/muParser/metadata.xml
@@ -14,4 +14,7 @@
muparser
beltoforion/muparser

+   
+   Add support for wide character 
(wchar_t)
+   
 

diff --git a/dev-cpp/muParser/muParser-2.3.3-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
new file mode 100644
index ..56484900d164
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.3.3-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+# The upstream tag is v2.3.3-1 instead of v2.3.3
+suffix="-1"
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="https://beltoforion.de/en/muparser/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/refs/tags/v${PV}${suffix}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}"/muparser-${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+IUSE="doc openmp test wchar"
+RESTRICT="!test? ( test )"
+
+S="${S}${suffix}"
+
+PATCHES=(
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DENABLE_OPENMP=$(usex openmp)
+   -DENABLE_WIDE_CHAR=$(usex wchar)
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   cmake_src_compile test
+}
+
+src_install() {
+   cmake_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-07-26 Thread Sam James
commit: d44ae5965a2e4a00edf9bedd64b4e567466ae79a
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 07:04:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 07:04:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d44ae596

dev-cpp/muParser: Stabilize 2.3.3 arm64, #858218

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3.ebuild 
b/dev-cpp/muParser/muParser-2.3.3.ebuild
index afedc8c4029f..ab201cd8c983 100644
--- a/dev-cpp/muParser/muParser-2.3.3.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-07-22 Thread Sam James
commit: f4ff67dd2015dc740ccef851ef428d5ff397a1ba
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul 22 17:53:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul 22 17:53:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ff67dd

dev-cpp/muParser: Stabilize 2.3.3 amd64, #858218

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3.ebuild 
b/dev-cpp/muParser/muParser-2.3.3.ebuild
index f47b794fc1e4..afedc8c4029f 100644
--- a/dev-cpp/muParser/muParser-2.3.3.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-07-19 Thread Sam James
commit: 19cd91f4c08ad15872a3fc012b7a83801292c1f1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 20 05:36:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 20 05:36:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19cd91f4

dev-cpp/muParser: Stabilize 2.3.3 x86, #858218

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.3.ebuild 
b/dev-cpp/muParser/muParser-2.3.3.ebuild
index 54b7acfabeb2..f47b794fc1e4 100644
--- a/dev-cpp/muParser/muParser-2.3.3.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.3.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-05-17 Thread Matthias Maier
commit: e44535a15d89b0130afabce75cb378b1109f1bfe
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed May 18 03:43:55 2022 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed May 18 03:44:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44535a1

dev-cpp/muParser: add 2.3.3

Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 +
 dev-cpp/muParser/muParser-2.3.3.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 01cb9ff97db2..40f4a377d887 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,2 +1,3 @@
 DIST muParser-2.2.6.1.tar.gz 755653 BLAKE2B 
b3b6b8da57c0e8a0bda74038689d444ba8da00d6cce80030d8b35693209f0293874e4822c4941974be21fd4b7c09ba7df2c9cef861bc10b890aae4f641040faf
 SHA512 
01bfc8cc48158c8413ae5e1da2ddbac1c9f0b9075470b1ab75853587d641dd195ebea268e1060a340098fd8015bc5f77d8e9cde5f81cffeade2f157c5f295496
 DIST muParser-2.3.2.tar.gz 103979 BLAKE2B 
f892b4d440a1b7326be27aa0a2b703ccafc02de5e881ef4780e8907688cf7905284f3e5f5855ad2596683f1dad309d287ebae527d917ebf5e0dad045551df7de
 SHA512 
8ef5c8b3834da3995a782b7364a4eb4197fb706bee4cadabe5511d2a9cf2912c3db6de422a91eff7f9690f8c9c355b9900335e940749d5c243cb732ac1992aef
+DIST muParser-2.3.3.tar.gz 112100 BLAKE2B 
79a0a29781596f114aeea9756a5a2141eed19857c08d0a32093353eb049f8b179af577cbd07747d2b8093e448714397b47f36c68e54bbce22386f5ec06365bda
 SHA512 
f7e01c83f6ffe71e240653c47fdb8f3152d7fdf61b5997a3c717dec50d0175065c4fc4241ec95fb35b60b968c5c965a820009163ebe84f0fa57d64b3a23226b4

diff --git a/dev-cpp/muParser/muParser-2.3.3.ebuild 
b/dev-cpp/muParser/muParser-2.3.3.ebuild
new file mode 100644
index ..6ff856ad49c8
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.3.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+# The upstream tag is v2.3.3-1 instead of v2.3.3
+suffix="-1"
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="https://beltoforion.de/en/muparser/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/refs/tags/v${PV}${suffix}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}"/muparser-${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+IUSE="doc openmp test"
+RESTRICT="!test? ( test )"
+
+S="${S}${suffix}"
+
+PATCHES=(
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DENABLE_OPENMP=$(usex openmp)
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   cmake_src_compile test
+}
+
+src_install() {
+   cmake_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/, dev-cpp/muParser/files/

2022-05-17 Thread Matthias Maier
commit: 42efd3e7cb580da09b8c44c32b74c7cf69879629
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed May 18 03:44:19 2022 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed May 18 03:44:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42efd3e7

dev-cpp/muParser: drop 2.2.6.1

Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 -
 .../files/muParser-1.32-parallel-build.patch   | 15 
 dev-cpp/muParser/muParser-2.2.6.1.ebuild   | 45 --
 3 files changed, 61 deletions(-)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 40f4a377d887..2a400643c4b5 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,3 +1,2 @@
-DIST muParser-2.2.6.1.tar.gz 755653 BLAKE2B 
b3b6b8da57c0e8a0bda74038689d444ba8da00d6cce80030d8b35693209f0293874e4822c4941974be21fd4b7c09ba7df2c9cef861bc10b890aae4f641040faf
 SHA512 
01bfc8cc48158c8413ae5e1da2ddbac1c9f0b9075470b1ab75853587d641dd195ebea268e1060a340098fd8015bc5f77d8e9cde5f81cffeade2f157c5f295496
 DIST muParser-2.3.2.tar.gz 103979 BLAKE2B 
f892b4d440a1b7326be27aa0a2b703ccafc02de5e881ef4780e8907688cf7905284f3e5f5855ad2596683f1dad309d287ebae527d917ebf5e0dad045551df7de
 SHA512 
8ef5c8b3834da3995a782b7364a4eb4197fb706bee4cadabe5511d2a9cf2912c3db6de422a91eff7f9690f8c9c355b9900335e940749d5c243cb732ac1992aef
 DIST muParser-2.3.3.tar.gz 112100 BLAKE2B 
79a0a29781596f114aeea9756a5a2141eed19857c08d0a32093353eb049f8b179af577cbd07747d2b8093e448714397b47f36c68e54bbce22386f5ec06365bda
 SHA512 
f7e01c83f6ffe71e240653c47fdb8f3152d7fdf61b5997a3c717dec50d0175065c4fc4241ec95fb35b60b968c5c965a820009163ebe84f0fa57d64b3a23226b4

diff --git a/dev-cpp/muParser/files/muParser-1.32-parallel-build.patch 
b/dev-cpp/muParser/files/muParser-1.32-parallel-build.patch
deleted file mode 100644
index 1681c6e68034..
--- a/dev-cpp/muParser/files/muParser-1.32-parallel-build.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Fixing parallel build issue
-
-http://bugs.gentoo.org/show_bug.cgi?id=310037
-
 muparser_v132/Makefile.in
-+++ muparser_v132/Makefile.in
-@@ -291,7 +291,7 @@
- @COND_SHARED_1@   rm -f $(DESTDIR)$(prefix)/$$f; \
- @COND_SHARED_1@   done
- 
--@COND_SAMPLES_1@$(top_builddir)/samples/example1/example1$(EXEEXT): 
$(EXAMPLE1_OBJECTS) $(__muParser_lib___depname)
-+@COND_SAMPLES_1@$(top_builddir)/samples/example1/example1$(EXEEXT): 
$(EXAMPLE1_OBJECTS) $(__muParser_lib___depname) lib
- @COND_SAMPLES_1@  $(CXX) -o $@ $(EXAMPLE1_OBJECTS) -L$(top_builddir)/lib  
 -L$(srcdir)/lib $(LDFLAGS)  -lmuparser$(DEBUG_BUILD_POSTFIX) $(LIBS)
- @COND_SAMPLES_1@  
- @COND_SAMPLES_1@  $(__example1___mac_setfilecmd)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
deleted file mode 100644
index d8bd2f678d9a..
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="https://beltoforion.de/en/muparser/;
-SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}"/muparser-${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.32-parallel-build.patch
-)
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e 's:-O2::g' \
-   configure || die
-}
-
-src_configure() {
-   econf $(use_enable test samples)
-}
-
-src_test() {
-   cat > test.sh <<- EOFTEST
-   LD_LIBRARY_PATH="${S}/lib" samples/example1/example1 <<- EOF
-   quit
-   EOF
-   EOFTEST
-   sh ./test.sh || die "test failed"
-}
-
-src_install() {
-   default
-   dodoc Changes.txt
-}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2022-04-15 Thread Arthur Zamarin
commit: fc827208da89a3cdbec34da70022562471ca4af3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 15 13:14:21 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 15 13:14:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc827208

dev-cpp/muParser: Stabilize 2.3.2-r1 arm64, #831448

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-cpp/muParser/muParser-2.3.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
index 612fd5ad566a..a7adf4aa3980 100644
--- a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-11-24 Thread Sam James
commit: 0f3ee86ffbeac5e94e103f43115c69ed18289f89
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 24 16:45:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 24 16:45:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3ee86f

dev-cpp/muParser: Stabilize 2.3.2-r1 amd64, #826882

Signed-off-by: Sam James  gentoo.org>

 dev-cpp/muParser/muParser-2.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
index 1d1a1c262fdb..612fd5ad566a 100644
--- a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-11-23 Thread Agostino Sarubbo
commit: 9eacf5811deff8aff3f90a72299beee03fa93939
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 24 07:57:27 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 24 07:57:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eacf581

dev-cpp/muParser: x86 stable wrt bug #826882

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-cpp/muParser/muParser-2.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
index 5becc8fae2cc..1d1a1c262fdb 100644
--- a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="doc openmp test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-11-23 Thread Matthias Maier
commit: e1da624cf4ec618a14b6ec6007ae5ae7aabfc9e0
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Nov 23 14:51:40 2021 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Nov 23 14:51:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1da624c

dev-cpp/muParser: update homepage

Closes: https://bugs.gentoo.org/794004
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/muParser-2.2.6.1.ebuild  | 2 +-
 dev-cpp/muParser/muParser-2.3.2-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index 9dd3c1139202..d8bd2f678d9a 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="http://muparser.beltoforion.de/;
+HOMEPAGE="https://beltoforion.de/en/muparser/;
 SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 S="${WORKDIR}"/muparser-${PV}
 

diff --git a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild 
b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
index 010002a56d2e..5becc8fae2cc 100644
--- a/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
+++ b/dev-cpp/muParser/muParser-2.3.2-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit cmake
 
 DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="http://muparser.beltoforion.de/;
+HOMEPAGE="https://beltoforion.de/en/muparser/;
 SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 S="${WORKDIR}"/muparser-${PV}
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/, dev-cpp/muParser/files/

2021-11-07 Thread Alexey Shvetsov
commit: 95c35c5f43f6c712154ea3cb35e735dea39eeddd
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Sun Nov  7 19:58:46 2021 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Sun Nov  7 19:59:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c35c5f

dev-cpp/muParser: Fix cmake export target

Closes: https://bugs.gentoo.org/821718

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Shvetsov  gentoo.org>

 .../muParser/files/muParser-2.3-export-cmake.patch | 405 +
 ...arser-2.3.2.ebuild => muParser-2.3.2-r1.ebuild} |   2 +
 2 files changed, 407 insertions(+)

diff --git a/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch 
b/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch
new file mode 100644
index 000..79254626db6
--- /dev/null
+++ b/dev-cpp/muParser/files/muParser-2.3-export-cmake.patch
@@ -0,0 +1,405 @@
+From a9e6626c9b2e250eb9161c767d2fb2e5a07315e2 Mon Sep 17 00:00:00 2001
+From: Francis Giraldeau 
+Date: Wed, 8 Jul 2020 14:59:27 -0400
+Subject: [PATCH] Export muparser cmake targets
+
+Export muparser targets, such that client projects can
+import it using find_package(). This mechanism for both the build tree
+and the install tree. The provided example3 shows how to import muparser
+targets.
+
+Signed-off-by: Francis Giraldeau 
+Signed-off-by: Alexey Shvetsov 
+---
+ CMakeLists.txt  |  39 ++-
+ CMakeLists.txt.orig | 173 
+ muparserConfig.cmake.in |   6 ++
+ samples/example3/CMakeLists.txt |  12 +++
+ samples/example3/README.md  |   2 +
+ samples/example3/build.sh   |  23 +
+ samples/example3/example3.cpp   |  49 +
+ 7 files changed, 301 insertions(+), 3 deletions(-)
+ create mode 100644 CMakeLists.txt.orig
+ create mode 100644 muparserConfig.cmake.in
+ create mode 100644 samples/example3/CMakeLists.txt
+ create mode 100644 samples/example3/README.md
+ create mode 100755 samples/example3/build.sh
+ create mode 100644 samples/example3/example3.cpp
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index cfdce99..aecc67d 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -55,6 +55,11 @@ add_library(muparser
+ src/muParserTest.cpp
+ src/muParserTokenReader.cpp
+ )
++# use the headers in the build-tree or the installed ones
++target_include_directories(muparser PUBLIC
++$
++$
++)
+ 
+ # this compiles the "DLL" interface (C API)
+ target_compile_definitions(muparser PRIVATE MUPARSER_DLL)
+@@ -77,9 +82,6 @@ set_target_properties(muparser PROPERTIES
+ SOVERSION ${MUPARSER_VERSION_MAJOR}
+ )
+ 
+-# Install the export set for use with the install-tree
+-export(TARGETS muparser FILE "${CMAKE_BINARY_DIR}/muparser-targets.cmake")
+-
+ if(ENABLE_SAMPLES)
+   add_executable(example1 samples/example1/example1.cpp)
+   target_link_libraries(example1 muparser)
+@@ -91,8 +93,10 @@ endif()
+ # The GNUInstallDirs defines ${CMAKE_INSTALL_DATAROOTDIR}
+ # See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html
+ include (GNUInstallDirs)
++set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/muparser)
+ 
+ install(TARGETS muparser
++EXPORT muparser-export
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT RuntimeLibraries
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Development
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT RuntimeLibraries
+@@ -116,6 +120,35 @@ install(FILES
+ COMPONENT Development
+ )
+ 
++# Export the target under the build-tree (no need to install)
++export(EXPORT muparser-export
++FILE "${CMAKE_BINARY_DIR}/muparser-targets.cmake"
++NAMESPACE muparser::
++)
++
++# Export the installed target (typically for packaging)
++include(CMakePackageConfigHelpers)
++write_basic_package_version_file(
++"${CMAKE_CURRENT_BINARY_DIR}/muparserConfigVersion.cmake"
++VERSION ${MUPARSER_VERSION}
++COMPATIBILITY AnyNewerVersion
++)
++configure_file(muparserConfig.cmake.in
++"${CMAKE_CURRENT_BINARY_DIR}/muparserConfig.cmake"
++COPYONLY
++)
++install(EXPORT muparser-export
++FILE muparser-targets.cmake
++NAMESPACE muparser::
++DESTINATION ${INSTALL_CONFIGDIR}
++)
++install(FILES
++${CMAKE_CURRENT_BINARY_DIR}/muparserConfig.cmake
++${CMAKE_CURRENT_BINARY_DIR}/muparserConfigVersion.cmake
++DESTINATION ${INSTALL_CONFIGDIR}
++COMPONENT Development
++)
++
+ # Define variables for the pkg-config file
+ set(PACKAGE_NAME muparser)
+ configure_file(
+diff --git a/CMakeLists.txt.orig b/CMakeLists.txt.orig
+new file mode 100644
+index 000..b496584
+--- /dev/null
 b/CMakeLists.txt.orig
+@@ -0,0 +1,173 @@
++# CMake based on work from @xantares
++cmake_minimum_required (VERSION 3.1.0)
++set(CMAKE_CXX_STANDARD 11)
++set(CMAKE_CXX_STANDARD_REQUIRED ON)
++
++# By default, build in Release mode. Must appear before project() command
++if (NOT DEFINED CMAKE_BUILD_TYPE)
++  set (CMAKE_BUILD_TYPE Release CACHE STRING 

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-11-04 Thread Alexey Shvetsov
commit: 34875ce1e70d7ae2675563299dffa9746450b7dc
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Thu Nov  4 20:51:02 2021 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Thu Nov  4 20:52:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34875ce1

dev-cpp/muParser: Version bump to 2.3.2

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Shvetsov  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 +
 dev-cpp/muParser/muParser-2.3.2.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 95b8c055fdc..01cb9ff97db 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1 +1,2 @@
 DIST muParser-2.2.6.1.tar.gz 755653 BLAKE2B 
b3b6b8da57c0e8a0bda74038689d444ba8da00d6cce80030d8b35693209f0293874e4822c4941974be21fd4b7c09ba7df2c9cef861bc10b890aae4f641040faf
 SHA512 
01bfc8cc48158c8413ae5e1da2ddbac1c9f0b9075470b1ab75853587d641dd195ebea268e1060a340098fd8015bc5f77d8e9cde5f81cffeade2f157c5f295496
+DIST muParser-2.3.2.tar.gz 103979 BLAKE2B 
f892b4d440a1b7326be27aa0a2b703ccafc02de5e881ef4780e8907688cf7905284f3e5f5855ad2596683f1dad309d287ebae527d917ebf5e0dad045551df7de
 SHA512 
8ef5c8b3834da3995a782b7364a4eb4197fb706bee4cadabe5511d2a9cf2912c3db6de422a91eff7f9690f8c9c355b9900335e940749d5c243cb732ac1992aef

diff --git a/dev-cpp/muParser/muParser-2.3.2.ebuild 
b/dev-cpp/muParser/muParser-2.3.2.ebuild
new file mode 100644
index 000..8e282638dbf
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.3.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="http://muparser.beltoforion.de/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}"/muparser-${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+IUSE="doc openmp test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+   mycmakeargs=(
+   -DENABLE_OPENMP=$(usex openmp)
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   cmake_src_compile test
+}
+
+src_install() {
+   cmake_src_install
+   dodoc Changes.txt
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-07-26 Thread Yixun Lan
commit: 8f9da58f95c1be4216ad367dc26f2e6e772307e2
Author: Alex Fan  yahoo  com>
AuthorDate: Sun Jul 25 07:44:58 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jul 26 07:36:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9da58f

dev-cpp/muParser: keyword 2.2.6.1 for ~riscv

Signed-off-by: Alex Fan  yahoo.com>
Signed-off-by: Yixun Lan  gentoo.org>

 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index 15e8213cc66..9dd3c113920 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}"/muparser-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2021-01-06 Thread Fabian Groffen
commit: f20e15bb41cd7e71658612833cc67d8fe81d3ebd
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jan  6 18:38:12 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jan  6 18:38:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f20e15bb

dev-cpp/muParser: drop x86-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index 6e70ecf5770..9f4fe65c723 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2020-09-27 Thread Aaron Bauman
commit: 89eeaf8e96a2e638fdb0e5d10185bae55bdc5d99
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Sep 28 00:50:57 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Sep 28 00:50:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89eeaf8e

dev-cpp/muParser: drop old EAPI=5

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 -
 dev-cpp/muParser/muParser-2.2.5.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index 36dde2ca7f6..95b8c055fdc 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,2 +1 @@
-DIST muParser-2.2.5.tar.gz 761315 BLAKE2B 
ddb7a226cecd164929a2f45ca0c2a5d20f37cd6bba2fca919c9e534017fa087523311bade8a7be4a5a011ecd5dec0a2496ff08354d2010341bccf2e2a8276c1d
 SHA512 
d89380ebdc0ce91d0ea38fe43419ab6ed06c47d352b9ee20e1edcce48337b464366153493e0241c373ba2880a8b419fb9541e56cda0d14915daf9b98136ee682
 DIST muParser-2.2.6.1.tar.gz 755653 BLAKE2B 
b3b6b8da57c0e8a0bda74038689d444ba8da00d6cce80030d8b35693209f0293874e4822c4941974be21fd4b7c09ba7df2c9cef861bc10b890aae4f641040faf
 SHA512 
01bfc8cc48158c8413ae5e1da2ddbac1c9f0b9075470b1ab75853587d641dd195ebea268e1060a340098fd8015bc5f77d8e9cde5f81cffeade2f157c5f295496

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
deleted file mode 100644
index 6e70ecf5770..000
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="http://muparser.beltoforion.de/;
-SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-S=${WORKDIR}/muparser-${PV}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.32-parallel-build.patch
-   sed -i \
-   -e 's:-O2::g' \
-   configure || die
-}
-
-src_configure() {
-   econf $(use_enable test samples)
-}
-
-src_test() {
-   cat > test.sh <<- EOFTEST
-   LD_LIBRARY_PATH="${S}/lib" samples/example1/example1 <<- EOF
-   quit
-   EOF
-   EOFTEST
-   sh ./test.sh || die "test failed"
-}
-
-src_install() {
-   default
-   dodoc Changes.txt
-}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2019-07-02 Thread Agostino Sarubbo
commit: 3fcf00a717fbb536e0abfd0fedbc0aeaf8a137ce
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:55:07 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:55:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fcf00a7

dev-cpp/muParser: x86 stable wrt bug #689010

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index 222df098835..a19668ce09b 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2019-07-02 Thread Agostino Sarubbo
commit: 0242e9baf5c604880325a7d2203591561d168920
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:33:08 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:33:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0242e9ba

dev-cpp/muParser: amd64 stable wrt bug #689010

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index a5025c1f8c2..222df098835 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2018-11-04 Thread Matthias Maier
commit: e06a5fa582a0076e83a7a41584903971f6c5f6e5
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Nov  4 17:09:32 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Nov  4 19:25:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e06a5fa5

dev-cpp/muParser: version bump to 2.2.6.1

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/Manifest|  1 +
 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index fee33e025c3..36dde2ca7f6 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1 +1,2 @@
 DIST muParser-2.2.5.tar.gz 761315 BLAKE2B 
ddb7a226cecd164929a2f45ca0c2a5d20f37cd6bba2fca919c9e534017fa087523311bade8a7be4a5a011ecd5dec0a2496ff08354d2010341bccf2e2a8276c1d
 SHA512 
d89380ebdc0ce91d0ea38fe43419ab6ed06c47d352b9ee20e1edcce48337b464366153493e0241c373ba2880a8b419fb9541e56cda0d14915daf9b98136ee682
+DIST muParser-2.2.6.1.tar.gz 755653 BLAKE2B 
b3b6b8da57c0e8a0bda74038689d444ba8da00d6cce80030d8b35693209f0293874e4822c4941974be21fd4b7c09ba7df2c9cef861bc10b890aae4f641040faf
 SHA512 
01bfc8cc48158c8413ae5e1da2ddbac1c9f0b9075470b1ab75853587d641dd195ebea268e1060a340098fd8015bc5f77d8e9cde5f81cffeade2f157c5f295496

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
new file mode 100644
index 000..a5025c1f8c2
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="http://muparser.beltoforion.de/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+IUSE="doc test"
+
+S=${WORKDIR}/muparser-${PV}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-1.32-parallel-build.patch
+   sed -i \
+   -e 's:-O2::g' \
+   configure || die
+}
+
+src_configure() {
+   econf $(use_enable test samples)
+}
+
+src_test() {
+   cat > test.sh <<- EOFTEST
+   LD_LIBRARY_PATH="${S}/lib" samples/example1/example1 <<- EOF
+   quit
+   EOF
+   EOFTEST
+   sh ./test.sh || die "test failed"
+}
+
+src_install() {
+   default
+   dodoc Changes.txt
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2018-11-04 Thread Matthias Maier
commit: dc74e7f7898ea09f4a963b481e6c6c888ab559fd
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Nov  4 17:04:25 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Nov  4 19:25:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc74e7f7

dev-cpp/muParser: drop old

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthias Maier  gentoo.org>

 dev-cpp/muParser/Manifest  |  1 -
 dev-cpp/muParser/muParser-2.2.3.ebuild | 49 --
 2 files changed, 50 deletions(-)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index a8b6f678885..fee33e025c3 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,2 +1 @@
 DIST muParser-2.2.5.tar.gz 761315 BLAKE2B 
ddb7a226cecd164929a2f45ca0c2a5d20f37cd6bba2fca919c9e534017fa087523311bade8a7be4a5a011ecd5dec0a2496ff08354d2010341bccf2e2a8276c1d
 SHA512 
d89380ebdc0ce91d0ea38fe43419ab6ed06c47d352b9ee20e1edcce48337b464366153493e0241c373ba2880a8b419fb9541e56cda0d14915daf9b98136ee682
-DIST muparser_v2_2_3.zip 1481359 BLAKE2B 
fcd9326619d28f0ea9e22cd6d85f8e620a18ad38561ceb026f024d80594d7d13a4772b3087df87d94ec3a1d3a80ce38a56f3dadc86b1011d9eafe7949d27be13
 SHA512 
86d140c07161757e2f0de516a4c2922ce5b135d06b01466bc15ad90833bd3e9f99b9b9c528617262597a7a5a6b09bff5ae8ced5d51c413ea611059e0bdb22e6d

diff --git a/dev-cpp/muParser/muParser-2.2.3.ebuild 
b/dev-cpp/muParser/muParser-2.2.3.ebuild
deleted file mode 100644
index 4078fabd35a..000
--- a/dev-cpp/muParser/muParser-2.2.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-MYPN=${PN/P/p}
-MYP=${MYPN}_v${PV//./_}
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="http://muparser.beltoforion.de/;
-SRC_URI="mirror://sourceforge/${MYPN}/${MYP}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="app-arch/unzip"
-
-S="${WORKDIR}/${MYP}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.32-parallel-build.patch
-   sed -i \
-   -e 's:-O2::g' \
-   configure || die
-}
-
-src_configure() {
-   econf $(use_enable test samples)
-}
-
-src_test() {
-   cat > test.sh <<- EOFTEST
-   LD_LIBRARY_PATH=${S}/lib samples/example1/example1 <<- EOF
-   quit
-   EOF
-   EOFTEST
-   sh ./test.sh || die "test failed"
-}
-
-src_install() {
-   default
-   dodoc Changes.txt
-   use doc && dohtml -r docs/html/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2017-06-27 Thread Alexis Ballier
commit: 20b8adedc0a1bd3c911d3f83319ae955e6371920
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jun 27 17:55:46 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jun 27 17:56:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b8aded

dev-cpp/muParser: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-cpp/muParser/muParser-2.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
index 830abea368d..3dffdc7b474 100644
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2017-06-04 Thread Agostino Sarubbo
commit: fd748a83d6835559c14315a5a1acc6d7083fe84e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jun  4 10:40:17 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jun  4 10:42:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd748a83

dev-cpp/muParser: x86 stable wrt bug #620514

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-cpp/muParser/muParser-2.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
index f4ede7345d0..830abea368d 100644
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2017-06-04 Thread Agostino Sarubbo
commit: 05641009bf56258b9a7a3bb8403fbb73215d0a57
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jun  4 10:31:14 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jun  4 10:31:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05641009

dev-cpp/muParser: amd64 stable wrt bug #620514

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-cpp/muParser/muParser-2.2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
index fd03ab26a69..f4ede7345d0 100644
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2016-10-15 Thread Manuel Rüger
commit: b03db7bd216524fa7f0a4985fc529f9a291dd8f4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 15 21:30:12 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 15 21:30:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03db7bd

dev-cpp/muParser: Add ~arm keyword

Tested by stikonas

Package-Manager: portage-2.3.2

 dev-cpp/muParser/muParser-2.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
index eb93d49..63f263e 100644
--- a/dev-cpp/muParser/muParser-2.2.5.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2016-10-10 Thread Manuel Rüger
commit: 122712fa3c2465a5a35699bb939cd34032f0740b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Oct 10 23:11:39 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Oct 10 23:11:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=122712fa

dev-cpp/muParser: Version bump to 2.2.5

Package-Manager: portage-2.3.1

 dev-cpp/muParser/Manifest  |  1 +
 dev-cpp/muParser/muParser-2.2.5.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index cb7dc48..2c36d6f 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1 +1,2 @@
+DIST muParser-2.2.5.tar.gz 761315 SHA256 
0666ef55da72c3e356ca85b6a0084d56b05dd740c3c21d26d372085aa2c6e708 SHA512 
d89380ebdc0ce91d0ea38fe43419ab6ed06c47d352b9ee20e1edcce48337b464366153493e0241c373ba2880a8b419fb9541e56cda0d14915daf9b98136ee682
 WHIRLPOOL 
86b8d4c13982b4748abbc379b6a2e4d421fc5d734b36daa8ed9525d451404996f0099404464908f144c5be3319db2cbbc92d697a5c56326bc303cc48a4f9520b
 DIST muparser_v2_2_3.zip 1481359 SHA256 
dfe831b69392ab0b1eb59d3601b7b1575554a85057cf2f234f64f930c4148902 SHA512 
86d140c07161757e2f0de516a4c2922ce5b135d06b01466bc15ad90833bd3e9f99b9b9c528617262597a7a5a6b09bff5ae8ced5d51c413ea611059e0bdb22e6d
 WHIRLPOOL 
3a53d04382feec889c4a54fe2edf762d9cf8629f4ec0543cfde12b6848e3594391a778c54747d6b4cf7608fcc0ac557f71132741935716704b160601057ff312

diff --git a/dev-cpp/muParser/muParser-2.2.5.ebuild 
b/dev-cpp/muParser/muParser-2.2.5.ebuild
new file mode 100644
index ..eb93d49
--- /dev/null
+++ b/dev-cpp/muParser/muParser-2.2.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="Library for parsing mathematical expressions"
+HOMEPAGE="http://muparser.beltoforion.de/;
+SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+IUSE="doc test"
+
+S=${WORKDIR}/muparser-${PV}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-1.32-parallel-build.patch
+   sed -i \
+   -e 's:-O2::g' \
+   configure || die
+}
+
+src_configure() {
+   econf $(use_enable test samples)
+}
+
+src_test() {
+   cat > test.sh <<- EOFTEST
+   LD_LIBRARY_PATH="${S}/lib" samples/example1/example1 <<- EOF
+   quit
+   EOF
+   EOFTEST
+   sh ./test.sh || die "test failed"
+}
+
+src_install() {
+   default
+   dodoc Changes.txt
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/files/, dev-cpp/muParser/

2016-02-14 Thread Justin Lecher
commit: 97fc786723741ff1b936306e940c08fd77b0d2dc
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb 14 17:16:14 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb 14 17:54:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97fc7867

dev-cpp/muParser: Drop old

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-cpp/muParser/Manifest|  1 -
 dev-cpp/muParser/files/muParser-1.32-build.patch | 13 --
 dev-cpp/muParser/muParser-2.2.2.ebuild   | 53 
 3 files changed, 67 deletions(-)

diff --git a/dev-cpp/muParser/Manifest b/dev-cpp/muParser/Manifest
index f94ac2b..cb7dc48 100644
--- a/dev-cpp/muParser/Manifest
+++ b/dev-cpp/muParser/Manifest
@@ -1,2 +1 @@
-DIST muparser_v2_2_2.zip 1508675 SHA256 
a9c3d50c1092279d2be0d4ba275ff222979da83eb960cbef6b8af1f5bfdccc5e SHA512 
e4abe1ba108e928340054834e8efd101b6d0feef672df6ec04cdf27862bc4fea7c3443f0e02dc6dd8cb813e66157879ca1ce1755cecae7d81ac89eccaec29b1d
 WHIRLPOOL 
50d33276f7db353fc0595d095a62b696a1c8d93f813034e2f6ba9ea1a9fa26d836b6637581b3164277d5e10dbc00be87015bb5e4ce8cf52237ccd37cf21dddaf
 DIST muparser_v2_2_3.zip 1481359 SHA256 
dfe831b69392ab0b1eb59d3601b7b1575554a85057cf2f234f64f930c4148902 SHA512 
86d140c07161757e2f0de516a4c2922ce5b135d06b01466bc15ad90833bd3e9f99b9b9c528617262597a7a5a6b09bff5ae8ced5d51c413ea611059e0bdb22e6d
 WHIRLPOOL 
3a53d04382feec889c4a54fe2edf762d9cf8629f4ec0543cfde12b6848e3594391a778c54747d6b4cf7608fcc0ac557f71132741935716704b160601057ff312

diff --git a/dev-cpp/muParser/files/muParser-1.32-build.patch 
b/dev-cpp/muParser/files/muParser-1.32-build.patch
deleted file mode 100644
index 84875e0..000
--- a/dev-cpp/muParser/files/muParser-1.32-build.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 configure  2008-06-09 22:51:39.0 +0100
-+++ configure  2009-03-09 16:12:02.335504093 +
-@@ -1927,10 +1927,6 @@
- NONENONEs,x,x, &&
-   program_prefix=${target_alias}-
- 
--CFLAGS=
--CXXFLAGS=
--CPPFLAGS=
--
- for ac_prog in gawk mawk nawk awk
- do
-   # Extract the first word of "$ac_prog", so it can be a program name with 
args.

diff --git a/dev-cpp/muParser/muParser-2.2.2.ebuild 
b/dev-cpp/muParser/muParser-2.2.2.ebuild
deleted file mode 100644
index 271a981..000
--- a/dev-cpp/muParser/muParser-2.2.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils
-
-MY_PN=${PN/P/p}
-MY_P=${MY_PN}_v${PV/./}
-
-DESCRIPTION="Library for parsing mathematical expressions"
-HOMEPAGE="http://muparser.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN/P/p}/${PN/P/p}/Version%20${PV}/${PN/P/p}_v${PV//./_}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="app-arch/unzip"
-
-S="${WORKDIR}"/${PN/P/p}_v${PV//./_}
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-1.32-build.patch \
-   "${FILESDIR}"/${PN}-1.32-parallel-build.patch
-   sed -i \
-   -e 's:-O2::g' \
-   configure || die
-}
-
-src_configure() {
-   chmod +x configure || die
-   econf $(use_enable test samples)
-}
-
-src_test() {
-   cat > test.sh <<- EOFTEST
-   LD_LIBRARY_PATH=${S}/lib samples/example1/example1 <<- EOF
-   quit
-   EOF
-   EOFTEST
-   sh ./test.sh || die "test failed"
-}
-
-src_install() {
-   default
-   dodoc Changes.txt
-   use doc && dohtml -r docs/html/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/muParser/

2016-01-15 Thread Agostino Sarubbo
commit: 61d3781b4a11c01299e78354eb4a228d8db14ab0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jan 15 09:02:35 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jan 15 09:02:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61d3781b

dev-cpp/muParser: amd64 stable wrt bug #571226

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-cpp/muParser/muParser-2.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/muParser/muParser-2.2.3.ebuild 
b/dev-cpp/muParser/muParser-2.2.3.ebuild
index 435c089..73449d5 100644
--- a/dev-cpp/muParser/muParser-2.2.3.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${MYPN}/${MYP}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="doc test"
 
 RDEPEND=""