diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/json11 | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-cpp/json11')
| -rw-r--r-- | dev-cpp/json11/Manifest | 1 | ||||
| -rw-r--r-- | dev-cpp/json11/files/json11-1.0.0-fix-multiarch-install.patch | 14 | ||||
| -rw-r--r-- | dev-cpp/json11/files/json11-1.0.0-include-cstdint.patch | 12 | ||||
| -rw-r--r-- | dev-cpp/json11/files/json11-1.0.0-json11.pc-do-not-state-the-defaults.patch | 22 | ||||
| -rw-r--r-- | dev-cpp/json11/json11-1.0.0-r1.ebuild | 36 | ||||
| -rw-r--r-- | dev-cpp/json11/metadata.xml | 11 |
6 files changed, 0 insertions, 96 deletions
diff --git a/dev-cpp/json11/Manifest b/dev-cpp/json11/Manifest deleted file mode 100644 index f64a0cde5848..000000000000 --- a/dev-cpp/json11/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST json11-1.0.0.tar.gz 13104 BLAKE2B 9f4fef741b40f1d163dd96555a521b6220c47402624baa5446fb94592989a830a0c511162a6af64b76962c8b07b83a324845dc61c1ca91bbb99e2b0511fb962a SHA512 c49aa9ebc75199528a13cd255d9362acb797d73a17fd69fb22673e945b8719a3d70fdf2d886fed342ca13ed1b4ea578534520d87c46c4a418929f9124aee3ec3 diff --git a/dev-cpp/json11/files/json11-1.0.0-fix-multiarch-install.patch b/dev-cpp/json11/files/json11-1.0.0-fix-multiarch-install.patch deleted file mode 100644 index fef15e0e153a..000000000000 --- a/dev-cpp/json11/files/json11-1.0.0-fix-multiarch-install.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -Naur before/CMakeLists.txt after/CMakeLists.txt ---- before/CMakeLists.txt 2019-05-12 16:45:39.995871663 +0200 -+++ after/CMakeLists.txt 2019-05-12 16:44:56.154872666 +0200 -@@ -52,6 +52,7 @@ - target_link_libraries(json11_test json11) - endif() - --install(TARGETS json11 DESTINATION lib/${CMAKE_LIBRARY_ARCHITECTURE}) --install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/json11.hpp" DESTINATION include/${CMAKE_LIBRARY_ARCHITECTURE}) --install(FILES "${CMAKE_CURRENT_BINARY_DIR}/json11.pc" DESTINATION lib/${CMAKE_LIBRARY_ARCHITECTURE}/pkgconfig) -+install(TARGETS json11 DESTINATION ${CMAKE_INSTALL_LIBDIR}) -+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/json11.hpp" DESTINATION include) -+install(FILES "${CMAKE_CURRENT_BINARY_DIR}/json11.pc" DESTINATION -+ ${CMAKE_INSTALL_LIBDIR}/pkgconfig) diff --git a/dev-cpp/json11/files/json11-1.0.0-include-cstdint.patch b/dev-cpp/json11/files/json11-1.0.0-include-cstdint.patch deleted file mode 100644 index 29648cf15825..000000000000 --- a/dev-cpp/json11/files/json11-1.0.0-include-cstdint.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/json11.cpp b/json11.cpp -index 9647846..8266a14 100644 ---- a/json11.cpp -+++ b/json11.cpp -@@ -22,6 +22,7 @@ - #include "json11.hpp" - #include <cassert> - #include <cmath> -+#include <cstdint> - #include <cstdlib> - #include <cstdio> - #include <limits> diff --git a/dev-cpp/json11/files/json11-1.0.0-json11.pc-do-not-state-the-defaults.patch b/dev-cpp/json11/files/json11-1.0.0-json11.pc-do-not-state-the-defaults.patch deleted file mode 100644 index 76b1591d1150..000000000000 --- a/dev-cpp/json11/files/json11-1.0.0-json11.pc-do-not-state-the-defaults.patch +++ /dev/null @@ -1,22 +0,0 @@ -From d98236beaf015f2693589fca1904fb0dd01b2e6d Mon Sep 17 00:00:00 2001 -From: Florian Schmaus <flo@geekplace.eu> -Date: Wed, 1 Mar 2023 10:16:49 +0100 -Subject: [PATCH] json11.pc: do not state the defaults - -This appearantly breaks multi-arch installations. See -https://bugs.gentoo.org/863098 - -Suggested-by: Thomas Scheider <qsx@chaotikum.eu> -Signed-off-by: Florian Schmaus <flow@gentoo.org> ---- a/json11.pc.in -+++ b/json11.pc.in -@@ -5,5 +5,4 @@ includedir=${prefix}/include/@CMAKE_LIBRARY_ARCHITECTURE@ - Name: @PROJECT_NAME@ - Description: json11 is a tiny JSON library for C++11, providing JSON parsing and serialization. - Version: @PROJECT_VERSION@ --Libs: -L${libdir} -ljson11 --Cflags: -I${includedir} -+Libs: -ljson11 --- -2.39.2 - diff --git a/dev-cpp/json11/json11-1.0.0-r1.ebuild b/dev-cpp/json11/json11-1.0.0-r1.ebuild deleted file mode 100644 index bcb8fbbb9bb9..000000000000 --- a/dev-cpp/json11/json11-1.0.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake edo - -DESCRIPTION="A tiny JSON library for C++11" -HOMEPAGE="https://github.com/dropbox/json11" -SRC_URI="https://github.com/dropbox/json11/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}"/${P}-fix-multiarch-install.patch - "${FILESDIR}"/${PN}-1.0.0-json11.pc-do-not-state-the-defaults.patch - "${FILESDIR}"/${PN}-1.0.0-include-cstdint.patch -) - -src_configure() { - local mycmakeargs=( - -DJSON11_BUILD_TESTS=$(usex test) - ) - - cmake_src_configure -} - -src_test() { - cmake_src_test - - edo "${BUILD_DIR}"/json11_test -} diff --git a/dev-cpp/json11/metadata.xml b/dev-cpp/json11/metadata.xml deleted file mode 100644 index 6947f6c749e8..000000000000 --- a/dev-cpp/json11/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <name>Florian Schmaus</name> - <email>flow@gentoo.org</email> - </maintainer> - <upstream> - <remote-id type="github">dropbox/json11</remote-id> - </upstream> -</pkgmetadata> |
