summaryrefslogtreecommitdiff
path: root/dev-python/graph-tool
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-23 20:04:02 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-23 20:04:02 +0000
commit167d7fd4abfaf9ec8eab3063904e4b30c161dccd (patch)
treee942bf0138719ef46e329ce40963199c91b7b31d /dev-python/graph-tool
parent7a0e8531efb990611394ecb436e5da2b8947ddf6 (diff)
downloadbaldeagleos-repo-167d7fd4abfaf9ec8eab3063904e4b30c161dccd.tar.gz
baldeagleos-repo-167d7fd4abfaf9ec8eab3063904e4b30c161dccd.tar.xz
baldeagleos-repo-167d7fd4abfaf9ec8eab3063904e4b30c161dccd.zip
Adding metadata
Diffstat (limited to 'dev-python/graph-tool')
-rw-r--r--dev-python/graph-tool/Manifest1
-rw-r--r--dev-python/graph-tool/files/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch28
-rw-r--r--dev-python/graph-tool/graph-tool-2.58.ebuild88
-rw-r--r--dev-python/graph-tool/graph-tool-2.71.ebuild4
4 files changed, 0 insertions, 121 deletions
diff --git a/dev-python/graph-tool/Manifest b/dev-python/graph-tool/Manifest
index 83b12a3ed927..3e652f36da91 100644
--- a/dev-python/graph-tool/Manifest
+++ b/dev-python/graph-tool/Manifest
@@ -1,2 +1 @@
-DIST graph-tool-2.58.tar.xz 14949712 BLAKE2B f7edfc112e737aad09317b2a754eefa8fad0135d580766b24ef5eb08d9e748a65a7372d95b9b00ffd891a2fe033f7ca29348b700e145361c48c95fe31a9f1500 SHA512 bfb604073c71b1f4a605008e5bfa6414370bc5c14e1b501e1821c1d363370e2f1f7c6dcedabf67723286cac07def1442c24577308458a75c4fc70aee69bf22ee
DIST graph-tool-2.71.tar.xz 14997876 BLAKE2B c23b4729065ebba43ba3501bca63980a40354e2ff6727ea3b663c60521cdf571ab794eb83f9cfb56909d92e3be90ac5d94c7dcd7f6639cb2c2fb9ee5c675697f SHA512 caedba222e499b81d93d51097c526a8a64dd1f3b91141012c67ffe40532f6168294e430887484522f75709828d280f95cc75bc400a886e71bf73d64efd9b7833
diff --git a/dev-python/graph-tool/files/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch b/dev-python/graph-tool/files/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch
deleted file mode 100644
index bac83a8c0337..000000000000
--- a/dev-python/graph-tool/files/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 005b377fa09c28a5f61f11319f337ceea640f4ab Mon Sep 17 00:00:00 2001
-From: Tiago de Paula Peixoto <tiago@skewed.de>
-Date: Fri, 1 Sep 2023 10:27:28 +0200
-Subject: [PATCH] Fix compilation with boost 1.83 and boost < 1.76 This unites
- upstream commits: 0a837b40 and 5517e370.
-
----
- src/graph/gml.hh | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/graph/gml.hh b/src/graph/gml.hh
-index 7bea0ca3..b4cb84db 100644
---- a/src/graph/gml.hh
-+++ b/src/graph/gml.hh
-@@ -26,6 +26,10 @@
- #include <boost/variant/get.hpp>
- #include <boost/spirit/include/support_istream_iterator.hpp>
-
-+#if BOOST_VERSION >= 107600
-+#include <boost/regex/v5/unicode_iterator.hpp>
-+#endif
-+
- #include <boost/algorithm/string/replace.hpp>
-
- #include <boost/property_map/dynamic_property_map.hpp>
---
-2.41.0
-
diff --git a/dev-python/graph-tool/graph-tool-2.58.ebuild b/dev-python/graph-tool/graph-tool-2.58.ebuild
deleted file mode 100644
index abc555780416..000000000000
--- a/dev-python/graph-tool/graph-tool-2.58.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10,11,12} )
-
-inherit check-reqs python-r1 toolchain-funcs
-
-if [[ ${PV} == *9999 ]]; then
- EGIT_REPO_URI="https://git.skewed.de/count0/graph-tool.git"
- inherit autotools git-r3
-else
- SRC_URI="https://downloads.skewed.de/${PN}/${P}.tar.xz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="An efficient python module for manipulation and statistical analysis of graphs"
-HOMEPAGE="https://graph-tool.skewed.de/"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+cairo openmp"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- dev-libs/boost:=[context,python,${PYTHON_USEDEP}]
- dev-libs/expat
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- sci-mathematics/cgal:=
- dev-python/matplotlib[${PYTHON_USEDEP}]
- cairo? (
- dev-cpp/cairomm:0
- dev-python/pycairo[${PYTHON_USEDEP}]
- x11-libs/cairo[X]
- )"
-DEPEND="${RDEPEND}
- dev-cpp/sparsehash"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch # backport
-)
-
-# bug 453544
-CHECKREQS_DISK_BUILD="6G"
-
-pkg_pretend() {
- [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
- check-reqs_pkg_pretend
-}
-
-pkg_setup() {
- [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_prepare() {
- default
- [[ ${PV} == *9999 ]] && eautoreconf
- python_copy_sources
-}
-
-src_configure() {
- my_configure() {
- econf \
- --disable-static \
- $(use_enable openmp) \
- $(use_enable cairo) \
- --with-boost-python="boost_${EPYTHON/./}"
- }
- python_foreach_impl run_in_build_dir my_configure
-}
-
-src_compile() {
- python_foreach_impl run_in_build_dir emake
-}
-
-src_install() {
- my_python_install() {
- default
- python_optimize
- }
- python_foreach_impl run_in_build_dir my_python_install
-
- find "${ED}" -name '*.la' -delete || die
-}
diff --git a/dev-python/graph-tool/graph-tool-2.71.ebuild b/dev-python/graph-tool/graph-tool-2.71.ebuild
index abc555780416..c1fa67514fa3 100644
--- a/dev-python/graph-tool/graph-tool-2.71.ebuild
+++ b/dev-python/graph-tool/graph-tool-2.71.ebuild
@@ -40,10 +40,6 @@ DEPEND="${RDEPEND}
dev-cpp/sparsehash"
BDEPEND="virtual/pkgconfig"
-PATCHES=(
- "${FILESDIR}"/0001-Fix-compilation-with-boost-1.83-and-boost-1.76.patch # backport
-)
-
# bug 453544
CHECKREQS_DISK_BUILD="6G"