* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/files/, sys-cluster/AXL/
@ 2021-04-15 0:51 Alessandro Barbieri
0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2021-04-15 0:51 UTC (permalink / raw
To: gentoo-commits
commit: 442a9697c81a196439d6b2fed6e07ff0897e69ef
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Apr 15 00:47:05 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Apr 15 00:51:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=442a9697
sys-cluster/AXL: new version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.4.0.ebuild | 41 +++++++++++++++++++++++++++
sys-cluster/AXL/Manifest | 1 +
sys-cluster/AXL/files/no-install-readme.patch | 12 ++++++++
sys-cluster/AXL/files/no-static-0.4.0.patch | 16 +++++++++++
4 files changed, 70 insertions(+)
diff --git a/sys-cluster/AXL/AXL-0.4.0.ebuild b/sys-cluster/AXL/AXL-0.4.0.ebuild
new file mode 100644
index 000000000..2ae37caa5
--- /dev/null
+++ b/sys-cluster/AXL/AXL-0.4.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit cmake
+
+DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
+HOMEPAGE="https://github.com/ECP-VeloC/AXL"
+SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+PATCHES=(
+ "${FILESDIR}/no-static-${PV}.patch"
+ "${FILESDIR}/no-install-readme.patch"
+)
+RDEPEND="
+ sys-libs/zlib
+ sys-cluster/KVTree
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-util/cmake-2.8
+"
+
+src_configure() {
+ local mycmakeargs=(
+ #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
+ -DAXL_ASYNC_API=NONE
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ dodoc -r doc/.
+}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
index 785193a0a..392fd1258 100644
--- a/sys-cluster/AXL/Manifest
+++ b/sys-cluster/AXL/Manifest
@@ -1 +1,2 @@
DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
+DIST AXL-0.4.0.tar.gz 47348 BLAKE2B a84b53b2c8d17a33a1ea95a3063210b40d3ca17151d9579f40ac8f70e32fe36bb79f4660efa3dedfbb0cce550cf6f14cdf7861d883b2e7f4c79ed88ab432ee70 SHA512 64d13600da8540b8d40b7de6ec242434fc437bb6b62aa5cebd6a3c5c2d8e2c0cae9311a6af99f19981fbeb0522b7148a28efb3d4e69b727bfc69711cf21a8419
diff --git a/sys-cluster/AXL/files/no-install-readme.patch b/sys-cluster/AXL/files/no-install-readme.patch
new file mode 100644
index 000000000..34fb418a5
--- /dev/null
+++ b/sys-cluster/AXL/files/no-install-readme.patch
@@ -0,0 +1,12 @@
+--- a/CMakeLists.txt 2021-04-15 02:41:40.120725634 +0200
++++ b/CMakeLists.txt 2021-04-15 02:42:14.146330416 +0200
+@@ -125,9 +125,6 @@
+ SET_SOURCE_FILES_PROPERTIES(config.h.in PROPERTIES GENERATED FALSE)
+ SET_SOURCE_FILES_PROPERTIES(${PROJECT_BINARY_DIR}/config.h PROPERTIES GENERATED TRUE)
+
+-# Special Install Files
+-INSTALL(FILES README.md DESTINATION ${CMAKE_INSTALL_DATADIR}/axl)
+-
+ # Package
+ SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Asynchronous Transfer Library")
+ SET(CPACK_PACKAGE_VENDOR "Lawrence Livermore National Laboratory")
diff --git a/sys-cluster/AXL/files/no-static-0.4.0.patch b/sys-cluster/AXL/files/no-static-0.4.0.patch
new file mode 100644
index 000000000..1a2b5ff79
--- /dev/null
+++ b/sys-cluster/AXL/files/no-static-0.4.0.patch
@@ -0,0 +1,16 @@
+--- a/src/CMakeLists.txt 2021-04-15 02:42:47.537923628 +0200
++++ b/src/CMakeLists.txt 2021-04-15 02:43:07.157272036 +0200
+@@ -29,13 +29,3 @@
+ TARGET_LINK_LIBRARIES(axl ${AXL_EXTERNAL_LIBS})
+ SET_TARGET_PROPERTIES(axl PROPERTIES OUTPUT_NAME axl CLEAN_DIRECT_OUTPUT 1)
+ INSTALL(TARGETS axl DESTINATION ${CMAKE_INSTALL_LIBDIR})
+-
+-ADD_LIBRARY(axl-static STATIC $<TARGET_OBJECTS:axl_o>)
+-IF(AXL_LINK_STATIC)
+- SET_TARGET_PROPERTIES(axl-static PROPERTIES LINK_SEARCH_START_STATIC 1)
+- SET_TARGET_PROPERTIES(axl-static PROPERTIES LINK_SEARCH_END_STATIC 1)
+-ENDIF(AXL_LINK_STATIC)
+-TARGET_LINK_LIBRARIES(axl-static ${AXL_EXTERNAL_LIBS})
+-
+-SET_TARGET_PROPERTIES(axl-static PROPERTIES OUTPUT_NAME axl CLEAN_DIRECT_OUTPUT 1)
+-INSTALL(TARGETS axl-static DESTINATION ${CMAKE_INSTALL_LIBDIR})
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/files/, sys-cluster/AXL/
@ 2022-03-31 17:57 Alessandro Barbieri
0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-03-31 17:57 UTC (permalink / raw
To: gentoo-commits
commit: 811c8a6d619809cdeb725eb90c6f918347dd9ce7
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Mar 31 17:56:39 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Mar 31 17:57:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=811c8a6d
sys-cluster/AXL: drop 0.3.0, 0.4.0
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.3.0.ebuild | 43 ----------------------------
sys-cluster/AXL/AXL-0.4.0.ebuild | 44 -----------------------------
sys-cluster/AXL/Manifest | 2 --
sys-cluster/AXL/files/no-static-0.4.0.patch | 16 -----------
4 files changed, 105 deletions(-)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
deleted file mode 100644
index f8b4023e4..000000000
--- a/sys-cluster/AXL/AXL-0.3.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
-HOMEPAGE="https://github.com/ECP-VeloC/AXL"
-SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
- sys-libs/zlib
- sys-cluster/KVTree
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- >=dev-util/cmake-2.8
-"
-
-RESTRICT="test" # https://github.com/ECP-VeloC/AXL/issues/110
-#RESTRICT="!test? ( test )"
-PATCHES=(
- "${FILESDIR}/no-install-readme.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
- -DAXL_ASYNC_API=NONE
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- dodoc -r doc/.
-}
diff --git a/sys-cluster/AXL/AXL-0.4.0.ebuild b/sys-cluster/AXL/AXL-0.4.0.ebuild
deleted file mode 100644
index fd904adbf..000000000
--- a/sys-cluster/AXL/AXL-0.4.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
-HOMEPAGE="https://github.com/ECP-VeloC/AXL"
-SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
- sys-libs/zlib
- sys-cluster/KVTree
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- >=dev-util/cmake-2.8
-"
-
-RESTRICT="test" # https://github.com/ECP-VeloC/AXL/issues/110
-#RESTRICT="!test? ( test )"
-PATCHES=(
- "${FILESDIR}/no-static-${PV}.patch"
- "${FILESDIR}/no-install-readme.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
- -DAXL_ASYNC_API=NONE
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- dodoc -r doc/.
-}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
index 46e1dd2b3..834a1db4c 100644
--- a/sys-cluster/AXL/Manifest
+++ b/sys-cluster/AXL/Manifest
@@ -1,4 +1,2 @@
-DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
-DIST AXL-0.4.0.tar.gz 47348 BLAKE2B a84b53b2c8d17a33a1ea95a3063210b40d3ca17151d9579f40ac8f70e32fe36bb79f4660efa3dedfbb0cce550cf6f14cdf7861d883b2e7f4c79ed88ab432ee70 SHA512 64d13600da8540b8d40b7de6ec242434fc437bb6b62aa5cebd6a3c5c2d8e2c0cae9311a6af99f19981fbeb0522b7148a28efb3d4e69b727bfc69711cf21a8419
DIST AXL-0.5.0.tar.gz 47792 BLAKE2B acc82ac512f2e598bd0f11b9e762b9aad618a50e38b3e3f117232b9c94efa444b39ed8d8923278a18db39ba4db46fc95867a3c9efaa7a38ed9a5280649d8ceae SHA512 81d9bb0c5cd100dee8bc813f7f39ad8c7f18ed6415525845bf6d79ccfe6e84c00d0660e0621ad9458522826068fbbb8cbf4680abc5b23cd4da058ce9f5482a4d
DIST AXL-0.7.0.tar.gz 48339 BLAKE2B 57525b6288617f0f9b2d4fcbe653a2bdc312d81a9b00671d79f625a8ea9b8b79dcfc3122acf2d27fc60c5f1d04b4f90d688fe9e1441fa3f9a44575cac9056318 SHA512 5d57f1dd60dfe8ceb27348a1c0389291a3cac6d909514fdbd6fdf31eeaba974a0b5aca23e7de35fea63585485c841622f4993cf0b3a060aa54af532728fc826d
diff --git a/sys-cluster/AXL/files/no-static-0.4.0.patch b/sys-cluster/AXL/files/no-static-0.4.0.patch
deleted file mode 100644
index 2240be428..000000000
--- a/sys-cluster/AXL/files/no-static-0.4.0.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -29,13 +29,3 @@
- TARGET_LINK_LIBRARIES(axl ${AXL_EXTERNAL_LIBS})
- SET_TARGET_PROPERTIES(axl PROPERTIES OUTPUT_NAME axl CLEAN_DIRECT_OUTPUT 1)
- INSTALL(TARGETS axl DESTINATION ${CMAKE_INSTALL_LIBDIR})
--
--ADD_LIBRARY(axl-static STATIC $<TARGET_OBJECTS:axl_o>)
--IF(AXL_LINK_STATIC)
-- SET_TARGET_PROPERTIES(axl-static PROPERTIES LINK_SEARCH_START_STATIC 1)
-- SET_TARGET_PROPERTIES(axl-static PROPERTIES LINK_SEARCH_END_STATIC 1)
--ENDIF(AXL_LINK_STATIC)
--TARGET_LINK_LIBRARIES(axl-static ${AXL_EXTERNAL_LIBS})
--
--SET_TARGET_PROPERTIES(axl-static PROPERTIES OUTPUT_NAME axl CLEAN_DIRECT_OUTPUT 1)
--INSTALL(TARGETS axl-static DESTINATION ${CMAKE_INSTALL_LIBDIR})
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-03-31 17:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-31 17:57 [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/files/, sys-cluster/AXL/ Alessandro Barbieri
-- strict thread matches above, loose matches on Subject: below --
2021-04-15 0:51 Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox