public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/evpath/, sys-cluster/evpath/files/
@ 2022-06-07 12:01 Alessandro Barbieri
  0 siblings, 0 replies; only message in thread
From: Alessandro Barbieri @ 2022-06-07 12:01 UTC (permalink / raw
  To: gentoo-commits

commit:     1e02d71868366db167508e99636b7bd18c72d8cc
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun  5 23:59:47 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Jun  7 12:01:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e02d718

sys-cluster/evpath: add 4.5.0_p20220601, drop 4.5.0

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/evpath/Manifest                        |  2 +-
 ...-4.5.0.ebuild => evpath-4.5.0_p20220601.ebuild} |  8 +++--
 .../evpath/files/evpath-4.5.0-find-udt.patch       | 36 ----------------------
 3 files changed, 6 insertions(+), 40 deletions(-)

diff --git a/sys-cluster/evpath/Manifest b/sys-cluster/evpath/Manifest
index 72570f4c9..7c77d8b66 100644
--- a/sys-cluster/evpath/Manifest
+++ b/sys-cluster/evpath/Manifest
@@ -1 +1 @@
-DIST evpath-4.5.0.gh.tar.gz 806308 BLAKE2B b69683c165aba2f15c6839adb6357a93e3588cf7ebe48f60062bab43b7f614102af72803ea650b1f7b979a3fa11734f98621e5e11e4f968c2dc3a2bd1511f14e SHA512 e5c7d2a7beda731db39f99fe0e0f3b6d96b0c9442edf523de51a0369f3aa6fb01cb97c52c6f8752a7a18b855793b7138d9aea7d12120a60a7dc6f9f65eb70190
+DIST evpath-4.5.0_p20220601.gh.tar.gz 880852 BLAKE2B f0d0a493f46b0d113d5b6847227a76c88e0344e4298cd664a00e66306b5e4ea73bd4c44ef8111d59f1cdc241b882617d690abbff2b1eef7b3737ce1d5abebf58 SHA512 1a9c21cfdc151f7139ffa22e55acaa25f07ddad6f013bdc0ac4e4a1354b8630b44e6aef8d8d0c4fede35f93ce7e238bd6717f0a8cba7e538ab31657d97c37962

diff --git a/sys-cluster/evpath/evpath-4.5.0.ebuild b/sys-cluster/evpath/evpath-4.5.0_p20220601.ebuild
similarity index 83%
rename from sys-cluster/evpath/evpath-4.5.0.ebuild
rename to sys-cluster/evpath/evpath-4.5.0_p20220601.ebuild
index dab57e8d6..cf5e26eef 100644
--- a/sys-cluster/evpath/evpath-4.5.0.ebuild
+++ b/sys-cluster/evpath/evpath-4.5.0_p20220601.ebuild
@@ -5,9 +5,12 @@ EAPI=8
 
 inherit cmake
 
+COMMIT="77f54fac21cb4452057b2b9c8d285e9084309dbc"
+
 DESCRIPTION="EVpath is an event transport middleware layer"
 HOMEPAGE="https://github.com/GTkorvo/evpath"
-SRC_URI="https://github.com/GTKorvo/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+SRC_URI="https://github.com/GTKorvo/${PN}/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
 
 LICENSE="BSD"
 SLOT="0"
@@ -22,12 +25,11 @@ RDEPEND="
 	enet? ( net-libs/enet )
 	infiniband? ( sys-block/libfabric )
 	libfabric? ( sys-block/libfabric )
-	udt4? ( net-libs/udt:4 )
+	udt4? ( >net-libs/udt-4.11 )
 "
 DEPEND="${RDEPEND}"
 
 RESTRICT="!test? ( test )"
-PATCHES=( "${FILESDIR}/${P}-find-udt.patch" )
 
 src_configure() {
 	local mycmakeargs=(

diff --git a/sys-cluster/evpath/files/evpath-4.5.0-find-udt.patch b/sys-cluster/evpath/files/evpath-4.5.0-find-udt.patch
deleted file mode 100644
index 768ebe411..000000000
--- a/sys-cluster/evpath/files/evpath-4.5.0-find-udt.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -296,7 +296,8 @@
- if(DEFINED EVPATH_USE_UDT4)
-   option(EVPATH_USE_UDT4 "Build the udt4 transport" "${EVPATH_USE_UDT4}")
-   if(EVPATH_USE_UDT4)
--    find_package(udt4 4.11 REQUIRED)
-+    find_package(PkgConfig REQUIRED)
-+    pkg_check_modules(UDT4 REQUIRED udt)
-   endif()
- else()
-   find_package(udt4 4.11)
-@@ -309,17 +310,18 @@
-   set(RUN_UDT4_TESTS FALSE)   # DON'T TEST.  UDT4 NOT USEFUL
-   if(EVPATH_TRANSPORT_MODULES)
-     add_library(cmudt4 MODULE cmudt4.cpp ip_config.c)
-+    target_include_directories(cmudt4 PRIVATE ${UDT4_INCLUDE_DIRS})
-     set_target_properties(cmudt4 PROPERTIES
-       OUTPUT_NAME ${EVPATH_LIBRARY_PREFIX}cmudt4)
- 
--    target_link_libraries(cmudt4 evpath udt4::udt4)
-+    target_link_libraries(cmudt4 evpath ${UDT4_LIBRARIES})
-     list(APPEND EVPATH_TRANSPORT_TARGETS cmudt4)
-   else()
-     target_sources(EVPath PRIVATE cmudt4.cpp)
--    target_link_libraries(EVPath PRIVATE udt4::udt4)
--    _pkg_get_target_prefix(udt4::udt4 udt4_PREFIX)
--    list(APPEND _pkg_config_pfxs "${udt4_PREFIX}")
--    list(APPEND _pkg_config_private_reqs "udt4 >= ${udt4_VERSION}")
-+    target_link_libraries(EVPath PRIVATE ${UDT4_LIBRARIES})
-+    target_include_directories(EVPath PRIVATE ${UDT4_INCLUDE_DIRS})
-+    list(APPEND _pkg_config_pfxs "${UDT4_PREFIX}")
-+    list(APPEND _pkg_config_private_reqs "udt >= ${UDT4_VERSION}")
-   endif()
- endif()
- 


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-07 12:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-07 12:01 [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/evpath/, sys-cluster/evpath/files/ Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox