summaryrefslogtreecommitdiff
path: root/dev-cpp/msgpack-cxx
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/msgpack-cxx
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-cpp/msgpack-cxx')
-rw-r--r--dev-cpp/msgpack-cxx/Manifest4
-rw-r--r--dev-cpp/msgpack-cxx/files/msgpack-cxx-6.0.0-gcc13.patch49
-rw-r--r--dev-cpp/msgpack-cxx/metadata.xml14
-rw-r--r--dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild59
-rw-r--r--dev-cpp/msgpack-cxx/msgpack-cxx-6.0.0.ebuild63
-rw-r--r--dev-cpp/msgpack-cxx/msgpack-cxx-6.1.0.ebuild59
-rw-r--r--dev-cpp/msgpack-cxx/msgpack-cxx-6.1.1.ebuild59
7 files changed, 0 insertions, 307 deletions
diff --git a/dev-cpp/msgpack-cxx/Manifest b/dev-cpp/msgpack-cxx/Manifest
deleted file mode 100644
index 6e465b95701d..000000000000
--- a/dev-cpp/msgpack-cxx/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST msgpack-cxx-5.0.0.tar.gz 476103 BLAKE2B e631a47e8d39b6ad9c2dd5e782fbbd5044c177e18c619fb52d1293e2c5f2ea7e766e7b26ce6cac36a2ff98217143e12456e0541992afb4f78597ffd3852f2acf SHA512 5ee0237eb1bf05bd4becad32ab145a8f0654f8f0e2e3452331ed3df088cda03ee4cdf1557ba867447e3e18baed924c105c76934f7009dac98b6dc69282c39d0c
-DIST msgpack-cxx-6.0.0.tar.gz 476132 BLAKE2B 89b6505511bd8f6994a2e61661c7a33bd1aa68804c081ec2fcaf074f845caf4338ac362916af9fb0bab7285b0d0508c74b229316fa75ef8083546ac84c4ca95d SHA512 90f89216676af5a656d570fbff5a716d1177fa1941b0a928b2da20e0b6cd6d0ca880b7369e085dbbca944499c05694a73df919042d8cd78498ed4b34b77a0e9d
-DIST msgpack-cxx-6.1.0.tar.gz 478452 BLAKE2B 14c6e28ab02957e6313a01002d05c23e2599f433656c8ea8033eb338c6e8b97d10e00a91e1e67bc3b944c3f9b46ad1ea11fc6905d50554699caeed7bd9cbc8f7 SHA512 935453432b53d2cbecc3e34d4fb17ecd3bbc6eae9087fa3c4445c90750f144ab39ad6461cc9552eec7ed2b222315c5f6e8b30d409eb34a98bebe02e03582fd41
-DIST msgpack-cxx-6.1.1.tar.gz 476459 BLAKE2B 6ec940af9b9e02d892c5f118791015baa6b12baa60c77aaf2ff867e8836f21b4f16c436ce448cdfeb7dc8f8a9356a75f3ac829eba9059ca5d78f42a4393700ff SHA512 6a3df977e7a9c8b50feb7c88cff7a78814d1d41d2f7a657dd37d6cfcfe24f44746f40a6dd46bd5dba7ea59d94b9e40c2baa62c08d9b02168ac93c58cbff3becc
diff --git a/dev-cpp/msgpack-cxx/files/msgpack-cxx-6.0.0-gcc13.patch b/dev-cpp/msgpack-cxx/files/msgpack-cxx-6.0.0-gcc13.patch
deleted file mode 100644
index 3e0b67675e2d..000000000000
--- a/dev-cpp/msgpack-cxx/files/msgpack-cxx-6.0.0-gcc13.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 2dd3dbc85f5c3ab789792844e50f7423bdb1d3f9 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= <arsen@gentoo.org>
-Date: Tue, 18 Apr 2023 15:50:52 +0200
-Subject: [PATCH] test: Add missing rebind to allocators
-
-See https://gcc.gnu.org/gcc-13/porting_to.html
----
-https://github.com/msgpack/msgpack-c/pull/1065
-
- test/msgpack_cpp11.cpp | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/test/msgpack_cpp11.cpp b/test/msgpack_cpp11.cpp
-index 2a856cb8..6b04e5a1 100644
---- a/test/msgpack_cpp11.cpp
-+++ b/test/msgpack_cpp11.cpp
-@@ -252,6 +252,9 @@ struct equal_to : std::equal_to<Key> {
- template <class Key>
- struct set_allocator : std::allocator<Key> {
- using std::allocator<Key>::allocator;
-+
-+ template<class U>
-+ struct rebind { using other = set_allocator<U>; };
- };
-
- // C++ named requirement Allocator implies that the first template type
-@@ -262,6 +265,9 @@ struct set_allocator : std::allocator<Key> {
- template <typename KeyValuePair>
- struct map_allocator_impl : std::allocator<KeyValuePair> {
- using std::allocator<KeyValuePair>::allocator;
-+
-+ template<class U>
-+ struct rebind { using other = map_allocator_impl<U>; };
- };
-
- template <class Key, class T>
-@@ -270,6 +276,9 @@ using map_allocator = map_allocator_impl<std::pair<const Key, T>>;
- template <class T>
- struct allocator : std::allocator<T> {
- using std::allocator<T>::allocator;
-+
-+ template<class U>
-+ struct rebind { using other = allocator<U>; };
- };
-
- } // namespace test
---
-2.40.0
-
diff --git a/dev-cpp/msgpack-cxx/metadata.xml b/dev-cpp/msgpack-cxx/metadata.xml
deleted file mode 100644
index 7d2a4745c20f..000000000000
--- a/dev-cpp/msgpack-cxx/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>vim@gentoo.org</email>
- <name>Gentoo Vim Project</name>
- </maintainer>
- <use>
- <flag name="boost">Enable boost support</flag>
- </use>
- <upstream>
- <remote-id type="github">msgpack/msgpack-c</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild b/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild
deleted file mode 100644
index 2a9ec41d2ccb..000000000000
--- a/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="MessagePack for C++"
-HOMEPAGE="https://msgpack.org/ https://github.com/msgpack/msgpack-c/"
-SRC_URI="https://github.com/msgpack/msgpack-c/releases/download/cpp-${PV}/${P}.tar.gz"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+boost doc examples test"
-
-REQUIRED_USE="test? ( boost )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="boost? ( dev-libs/boost[context] )
- !<dev-libs/msgpack-5.0.0"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-text/doxygen[dot] )
- test? ( virtual/zlib )"
-
-src_configure() {
- local mycmakeargs=(
- -DMSGPACK_BUILD_EXAMPLES=OFF
- -DMSGPACK_CXX17=ON
- -DMSGPACK_BUILD_TESTS="$(usex test)"
- -DMSGPACK_USE_BOOST="$(usex boost)"
- -DMSGPACK_USE_X3_PARSE="$(usex boost)"
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
-
- if use doc; then
- cmake_build doxygen
- fi
-}
-
-src_install() {
- if use doc; then
- local HTML_DOCS=( "${BUILD_DIR}"/doc_cpp/html/. )
- fi
-
- if use examples; then
- docinto examples
- dodoc -r example/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- cmake_src_install
-}
diff --git a/dev-cpp/msgpack-cxx/msgpack-cxx-6.0.0.ebuild b/dev-cpp/msgpack-cxx/msgpack-cxx-6.0.0.ebuild
deleted file mode 100644
index 010a3e7f2563..000000000000
--- a/dev-cpp/msgpack-cxx/msgpack-cxx-6.0.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="MessagePack for C++"
-HOMEPAGE="https://msgpack.org/ https://github.com/msgpack/msgpack-c/"
-SRC_URI="https://github.com/msgpack/msgpack-c/releases/download/cpp-${PV}/${P}.tar.gz"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~x64-macos"
-IUSE="+boost doc examples test"
-
-REQUIRED_USE="test? ( boost )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="boost? ( dev-libs/boost[context] )
- !<dev-libs/msgpack-5.0.0"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-text/doxygen[dot] )
- test? ( virtual/zlib )"
-
-PATCHES=(
- "${FILESDIR}"/"${PN}"-6.0.0-gcc13.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DMSGPACK_BUILD_EXAMPLES=OFF
- -DMSGPACK_CXX17=ON
- -DMSGPACK_BUILD_TESTS="$(usex test)"
- -DMSGPACK_USE_BOOST="$(usex boost)"
- -DMSGPACK_USE_X3_PARSE="$(usex boost)"
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
-
- if use doc; then
- cmake_build doxygen
- fi
-}
-
-src_install() {
- if use doc; then
- local HTML_DOCS=( "${BUILD_DIR}"/doc_cpp/html/. )
- fi
-
- if use examples; then
- docinto examples
- dodoc -r example/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- cmake_src_install
-}
diff --git a/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.0.ebuild b/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.0.ebuild
deleted file mode 100644
index 2a9ec41d2ccb..000000000000
--- a/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="MessagePack for C++"
-HOMEPAGE="https://msgpack.org/ https://github.com/msgpack/msgpack-c/"
-SRC_URI="https://github.com/msgpack/msgpack-c/releases/download/cpp-${PV}/${P}.tar.gz"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+boost doc examples test"
-
-REQUIRED_USE="test? ( boost )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="boost? ( dev-libs/boost[context] )
- !<dev-libs/msgpack-5.0.0"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-text/doxygen[dot] )
- test? ( virtual/zlib )"
-
-src_configure() {
- local mycmakeargs=(
- -DMSGPACK_BUILD_EXAMPLES=OFF
- -DMSGPACK_CXX17=ON
- -DMSGPACK_BUILD_TESTS="$(usex test)"
- -DMSGPACK_USE_BOOST="$(usex boost)"
- -DMSGPACK_USE_X3_PARSE="$(usex boost)"
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
-
- if use doc; then
- cmake_build doxygen
- fi
-}
-
-src_install() {
- if use doc; then
- local HTML_DOCS=( "${BUILD_DIR}"/doc_cpp/html/. )
- fi
-
- if use examples; then
- docinto examples
- dodoc -r example/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- cmake_src_install
-}
diff --git a/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.1.ebuild b/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.1.ebuild
deleted file mode 100644
index 2a9ec41d2ccb..000000000000
--- a/dev-cpp/msgpack-cxx/msgpack-cxx-6.1.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="MessagePack for C++"
-HOMEPAGE="https://msgpack.org/ https://github.com/msgpack/msgpack-c/"
-SRC_URI="https://github.com/msgpack/msgpack-c/releases/download/cpp-${PV}/${P}.tar.gz"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+boost doc examples test"
-
-REQUIRED_USE="test? ( boost )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="boost? ( dev-libs/boost[context] )
- !<dev-libs/msgpack-5.0.0"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-text/doxygen[dot] )
- test? ( virtual/zlib )"
-
-src_configure() {
- local mycmakeargs=(
- -DMSGPACK_BUILD_EXAMPLES=OFF
- -DMSGPACK_CXX17=ON
- -DMSGPACK_BUILD_TESTS="$(usex test)"
- -DMSGPACK_USE_BOOST="$(usex boost)"
- -DMSGPACK_USE_X3_PARSE="$(usex boost)"
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
-
- if use doc; then
- cmake_build doxygen
- fi
-}
-
-src_install() {
- if use doc; then
- local HTML_DOCS=( "${BUILD_DIR}"/doc_cpp/html/. )
- fi
-
- if use examples; then
- docinto examples
- dodoc -r example/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- cmake_src_install
-}