From 42e82780761e75f17a5cc96626558a297782f385 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 10 Jun 2023 15:51:39 +0100 Subject: gentoo auto-resync : 10:06:2023 - 15:51:39 --- dev-cpp/cppgir/Manifest | 6 +++ dev-cpp/cppgir/cppgir-0_p20230606.ebuild | 43 ++++++++++++++++++++++ .../cppgir-0_p20230606-fix-install-paths.patch | 13 +++++++ .../cppgir-0_p20230606-prevent-automagic.patch | 42 +++++++++++++++++++++ .../cppgir-0_p20230606-system-expected-lite.patch | 37 +++++++++++++++++++ dev-cpp/cppgir/metadata.xml | 16 ++++++++ 6 files changed, 157 insertions(+) create mode 100644 dev-cpp/cppgir/Manifest create mode 100644 dev-cpp/cppgir/cppgir-0_p20230606.ebuild create mode 100644 dev-cpp/cppgir/files/cppgir-0_p20230606-fix-install-paths.patch create mode 100644 dev-cpp/cppgir/files/cppgir-0_p20230606-prevent-automagic.patch create mode 100644 dev-cpp/cppgir/files/cppgir-0_p20230606-system-expected-lite.patch create mode 100644 dev-cpp/cppgir/metadata.xml (limited to 'dev-cpp/cppgir') diff --git a/dev-cpp/cppgir/Manifest b/dev-cpp/cppgir/Manifest new file mode 100644 index 000000000000..8e7aa7c30732 --- /dev/null +++ b/dev-cpp/cppgir/Manifest @@ -0,0 +1,6 @@ +AUX cppgir-0_p20230606-fix-install-paths.patch 568 BLAKE2B 28a112093185d321ca7f3da3ff03ca4c61bb8bdce5a52d3264a6eb6c262bccfc5ced9f99def9c67815e175ffdb9f85ba2a31b87fb10b59ca001db457fd48d795 SHA512 8cc170277575230598553efa0a7bc99ad7fe4ae67d2ca78601c477ebdb8acc9adba50491a222e1a9dd66395bfce98f64a0c8bfe5238af1586289ee1ea11b8a31 +AUX cppgir-0_p20230606-prevent-automagic.patch 1428 BLAKE2B 0ecde5f934ad3b5f015ad83b2b995faecfdf5944e9fb30d935817d2ec4357db3ac4dda334d2b407cda5e8a8ce2ee4f59535f8c5c61f12a21fb4ce155a754af61 SHA512 97d52877a14753a1e6ab4b8aceb70e04ba44207cf16cfcbd44235190087677201189b5bd5528db912628dd62c909a7fba5933611014dcd3bf159ea0facf83f24 +AUX cppgir-0_p20230606-system-expected-lite.patch 1397 BLAKE2B 2c6996525fcaba5718aa5959f43838bbc9a3429057722fd6b0c74723c02c1b2e74c0026db9f0334768288d406465f86b75dd9049c912e3567ae6cb53766b8739 SHA512 92b3fb8041f1283c3d8a000c914597b56871f0f69c73738baa9fd2588e55d925f6284646701adc0ca2c1ed9b126615fd34280e4e36f7cbddc7ac3228f7432b54 +DIST cppgir-0_p20230606.tar.bz2 92576 BLAKE2B 47d43405eee8cebb782a3021e8398ce61ced23094424ced9f1bfaf390bfd83b7fa6e6fe5e0689886857cef3c992f9318de99d9e38362c2777a409cf597b55f7a SHA512 832c99379b0203db9b2cfefa530fc8f68411da5b0f121a37ab1b60dfa39e929a0d95971c4161a744dc5b3ddbb92848f1bbce9b265f9d4d5724084c08ab8fd4f4 +EBUILD cppgir-0_p20230606.ebuild 928 BLAKE2B f1fe2d649637308ed20396cb7b97b8a432e952af0e864bc89dabd42250d6737857f026883538524a961d7ea4f5260992d3aeb7feded8838c05713055c7bcac84 SHA512 5c4bbe0b83025d5f7791e1a1073ef017d2f084cc61766d0ba15d0971137357fa4aa66733afacb190b83c5ad7cbce8ebfd409d26b72271d3ce9d484f6750fcea5 +MISC metadata.xml 567 BLAKE2B 0684a8a7347f840ff2d683d32ccf4fd37e0c617be78600dde97ad5f1bf5e897b01fbf40474eeaf3bd14a4efd99642dd7e062b05a61fc2a2f15722996b5422673 SHA512 fcd0bfcbaa4a4d684ab29bdc6ef3d251bc17206d548ce15644efa0a5b6cfc7e072c04c6a7e882307e73eb74347e971389fdb01462be28e5bbd9bb8c0ec8934e9 diff --git a/dev-cpp/cppgir/cppgir-0_p20230606.ebuild b/dev-cpp/cppgir/cppgir-0_p20230606.ebuild new file mode 100644 index 000000000000..14ebc607d6c0 --- /dev/null +++ b/dev-cpp/cppgir/cppgir-0_p20230606.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="GObject-Introspection C++ binding wrapper generator" +HOMEPAGE="https://gitlab.com/mnauw/cppgir" + +MY_PV="960fe054ffaab7cf55722fea6094c56a8ee8f18e" +SRC_URI="https://gitlab.com/mnauw/cppgir/-/archive/${MY_PV}/cppgir-${MY_PV}.tar.bz2 -> ${P}.tar.bz2" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" +RESTRICT="!test? ( test )" + +DEPEND=" + dev-cpp/expected-lite + dev-libs/boost:= + dev-libs/libfmt:= +" +BDEPEND=" + doc? ( app-text/ronn-ng ) +" + +PATCHES=( + "${FILESDIR}/cppgir-0_p20230606-system-expected-lite.patch" + "${FILESDIR}/cppgir-0_p20230606-fix-install-paths.patch" + "${FILESDIR}/cppgir-0_p20230606-prevent-automagic.patch" +) + +src_configure() { + local mycmakeargs=( + -DBUILD_DOC=$(usex doc) + -DBUILD_TESTING=$(usex test) + ) + + cmake_src_configure +} diff --git a/dev-cpp/cppgir/files/cppgir-0_p20230606-fix-install-paths.patch b/dev-cpp/cppgir/files/cppgir-0_p20230606-fix-install-paths.patch new file mode 100644 index 000000000000..c27d1e9f29b0 --- /dev/null +++ b/dev-cpp/cppgir/files/cppgir-0_p20230606-fix-install-paths.patch @@ -0,0 +1,13 @@ +Install cmake targets in correct directory + +--- cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e.orig/CMakeLists.txt ++++ cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e/CMakeLists.txt +@@ -259,7 +259,7 @@ + DESTINATION ${GI_IGNORE_FILE_INSTALL_DIR}) + + # cmake EXPORTS +-set(CONFIG_PACKAGE_LOCATION lib/cmake/${PROJECT_NAME}) ++set(CONFIG_PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) + set(CONFIG_VERSION_NAME ${PROJECT_NAME}-config-version.cmake) + set(CONFIG_TARGETS_NAME ${PROJECT_NAME}-targets.cmake) + set(CONFIG_NAME ${PROJECT_NAME}-config.cmake) diff --git a/dev-cpp/cppgir/files/cppgir-0_p20230606-prevent-automagic.patch b/dev-cpp/cppgir/files/cppgir-0_p20230606-prevent-automagic.patch new file mode 100644 index 000000000000..8bb3ab5c4496 --- /dev/null +++ b/dev-cpp/cppgir/files/cppgir-0_p20230606-prevent-automagic.patch @@ -0,0 +1,42 @@ +Remove checks for libraries that are completely unnecessary + +--- cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e.orig/CMakeLists.txt ++++ cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e/CMakeLists.txt +@@ -79,15 +79,14 @@ + find_package(expected-lite REQUIRED) + target_link_libraries(gi PUBLIC expected-lite) + +-include(FindPkgConfig) +-pkg_check_modules(GOBJECT gobject-2.0) +-pkg_check_modules(GIO gio-2.0 gio-unix-2.0) +-pkg_check_modules(GST gstreamer-1.0) +-pkg_check_modules(GTK gtk+-3.0) ++if (BUILD_TESTING) ++ include(FindPkgConfig REQUIRED) ++ pkg_check_modules(GOBJECT gobject-2.0 REQUIRED) ++endif() + + ## TEST ## + +-if (BUILD_TESTING AND GOBJECT_FOUND) ++if (BUILD_TESTING) + add_executable(gi-test test/main.cpp + test/test_object.c test/test_object.h test/test_boxed.c test/test_boxed.h) + target_include_directories(gi-test PRIVATE "gi" "override") +@@ -113,7 +112,7 @@ + set(EXAMPLE_TARGETS "") + set(EXAMPLE_NS "") + +-if (GOBJECT_FOUND) ++if (FALSE) + add_executable(example-gobject EXCLUDE_FROM_ALL examples/gobject.cpp) + target_compile_options(example-gobject PRIVATE ${GOBJECT_CFLAGS}) + target_link_libraries(example-gobject PRIVATE ${GOBJECT_LDFLAGS}) +@@ -179,7 +178,6 @@ + endif () + + # optional Qt example +-find_package(Qt5Core 5.9) + if (Qt5Core_FOUND AND GIO_FOUND) + set(CMAKE_INCLUDE_CURRENT_DIR ON) + add_executable(example-gio-qt-async EXCLUDE_FROM_ALL examples/gio-qt-async.cpp) diff --git a/dev-cpp/cppgir/files/cppgir-0_p20230606-system-expected-lite.patch b/dev-cpp/cppgir/files/cppgir-0_p20230606-system-expected-lite.patch new file mode 100644 index 000000000000..096ed39dc03b --- /dev/null +++ b/dev-cpp/cppgir/files/cppgir-0_p20230606-system-expected-lite.patch @@ -0,0 +1,37 @@ +Use system-wide copy of expected-lite + +--- cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e.orig/CMakeLists.txt ++++ cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e/CMakeLists.txt +@@ -76,14 +76,8 @@ + "$" + ) + +-set(EXPECTED_LITE_INCLUDE "expected-lite/include") +-if (EXISTS ${CMAKE_CURRENT_LIST_DIR}/${EXPECTED_LITE_INCLUDE}/nonstd/expected.hpp) +- target_include_directories(gi INTERFACE +- "$" +- ) +-else () +- message (FATAL_ERROR "missing submodule expected-lite") +-endif () ++find_package(expected-lite REQUIRED) ++target_link_libraries(gi INTERFACE nonstd::expected-lite) + + include(FindPkgConfig) + pkg_check_modules(GOBJECT gobject-2.0) +@@ -241,8 +235,6 @@ + # headers + install(DIRECTORY gi override + DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR}/${PROJECT_NAME}) +-install(DIRECTORY ${EXPECTED_LITE_INCLUDE}/nonstd +- DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR}/${PROJECT_NAME}/gi) + + # doc + install(FILES README.md docs/cppgir.md +--- cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e.orig/cmake/cppgir-config.cmake ++++ cppgir-960fe054ffaab7cf55722fea6094c56a8ee8f18e/cmake/cppgir-config.cmake +@@ -1 +1,4 @@ ++include(CMakeFindDependencyMacro) ++find_dependency(expected-lite) ++ + include("${CMAKE_CURRENT_LIST_DIR}/cppgir-targets.cmake") diff --git a/dev-cpp/cppgir/metadata.xml b/dev-cpp/cppgir/metadata.xml new file mode 100644 index 000000000000..8337d9d2c2da --- /dev/null +++ b/dev-cpp/cppgir/metadata.xml @@ -0,0 +1,16 @@ + + + + + esteve.varela@gmail.com + Esteve Varela Colominas + + + proxy-maint@gentoo.org + Proxy Maintainers + + + mnauw/cppgir + https://gitlab.com/mnauw/cppgir/-/issues + + -- cgit v1.2.3