From c41c8d6f81eff6fa16016e4f3e1e861abbfdd45e Mon Sep 17 00:00:00 2001 From: Ales Nezbeda Date: Tue, 29 Apr 2025 11:00:13 +0200 Subject: [PATCH] Enable gating Clean unused patch Resolves: RHEL-81599 --- gating.yaml | 8 ++++++++ proj_pkgconfig.patch | 22 ---------------------- 2 files changed, 8 insertions(+), 22 deletions(-) create mode 100644 gating.yaml delete mode 100644 proj_pkgconfig.patch diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..417867b --- /dev/null +++ b/gating.yaml @@ -0,0 +1,8 @@ +--- !Policy +product_versions: + - rhel-10 + - rhel-9 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.installability.functional} + diff --git a/proj_pkgconfig.patch b/proj_pkgconfig.patch deleted file mode 100644 index 6164d5f..0000000 --- a/proj_pkgconfig.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -rupN proj-7.2.0/CMakeLists.txt proj-7.2.0-new/CMakeLists.txt ---- proj-7.2.0/CMakeLists.txt 2020-10-28 12:22:26.000000000 +0100 -+++ proj-7.2.0-new/CMakeLists.txt 2020-11-05 07:27:39.486134481 +0100 -@@ -277,3 +277,18 @@ add_subdirectory(cmake) - if(BUILD_TESTING) - add_subdirectory(test) - endif() -+ -+################################################################################ -+# pkgconfig file -+################################################################################ -+SET(prefix ${CMAKE_INSTALL_PREFIX}) -+SET(exec_prefix ${CMAKE_INSTALL_PREFIX}) -+SET(libdir ${CMAKE_INSTALL_PREFIX}/${LIBDIR}) -+SET(includedir ${CMAKE_INSTALL_PREFIX}/${INCLUDEDIR}) -+SET(datarootdir ${CMAKE_INSTALL_PREFIX}/${DATADIR}) -+SET(VERSION ${PROJ_VERSION}) -+SET(SQLITE3_LIBS ${SQLITE3_LIBRARY}) -+SET(TIFF_LIBS ${TIFF_LIBRARY}) -+SET(CURL_LIBS ${CURL_LIBRARY}) -+CONFIGURE_FILE(proj.pc.in proj.pc @ONLY) -+INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/proj.pc DESTINATION ${LIBDIR}/pkgconfig)