public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/conan/
Date: Thu, 13 Jun 2024 14:44:05 +0000 (UTC)	[thread overview]
Message-ID: <1718289366.067f5fe3491614b9507959eb1ae2a89034ec8506.arthurzam@gentoo> (raw)

commit:     067f5fe3491614b9507959eb1ae2a89034ec8506
Author:     Denis Pronin <dannftk <AT> yandex <DOT> ru>
AuthorDate: Mon Jun 10 10:49:31 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 14:36:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=067f5fe3

dev-util/conan: add 2.4.1

Closes: https://bugs.gentoo.org/934035
Signed-off-by: Denis Pronin <dannftk <AT> yandex.ru>
Closes: https://github.com/gentoo/gentoo/pull/37117
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/conan/Manifest           |  1 +
 dev-util/conan/conan-2.4.1.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-util/conan/Manifest b/dev-util/conan/Manifest
index cfafd9ff22f8..194ca02bdeba 100644
--- a/dev-util/conan/Manifest
+++ b/dev-util/conan/Manifest
@@ -1,2 +1,3 @@
 DIST conan-2.0.16.gh.tar.gz 1000880 BLAKE2B 0ebc7df66e97a8f29ade9d1ffbde5b0f6ed4ac5dd98bab29e9a88d1ae9c864237a396b5c0588f3efb1186f6f22fa1fd0205215b3459fb87fa012febc49ad786a SHA512 bb8d5c1b2df085bc2e1645dd8b14be167b7ed01a47485bbe39994a150ca905de6a194927cb3cecd81d4d7bab613d13ca3779d9aabddf1a2df731bd62ec5bbe39
 DIST conan-2.3.1.gh.tar.gz 1078426 BLAKE2B a3a92342a2cfabc9dd4c22d1665d092dd2a33be8fdd4c3e7243557b845fda8910d713bc34b59d1e4c2b2ead957ef0ff8ad0d23fa80804c9d842b5f9c944323c1 SHA512 405d9979bc79b684509aa756c2aa50decd1b9194e5c7b847b6a9755daed9941c7b9615cf518aedf920eeea0de6dfc194e36b90c2919060a3f276f53692a3fe5c
+DIST conan-2.4.1.gh.tar.gz 1092566 BLAKE2B 7b97f9a274075bf3e9396eba9e3dc4d155c171685fb204c885877ad10dba3f751cab5a28e220d3df3b803aa8f80d080c63c37801ada4b1691724bb8988f34c97 SHA512 b51d491be8202eb7fd60e5d2aef63bd9f43311da73f36edd615210222c32160f35af81ec47351e7762b6583a6d3f6230020130866e0450320d87047439de2767

diff --git a/dev-util/conan/conan-2.4.1.ebuild b/dev-util/conan/conan-2.4.1.ebuild
new file mode 100644
index 000000000000..81aeecdcf691
--- /dev/null
+++ b/dev-util/conan/conan-2.4.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Distributed C/C++ package manager"
+HOMEPAGE="https://conan.io/"
+SRC_URI="https://github.com/conan-io/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+	>=dev-python/bottle-0.12.8[${PYTHON_USEDEP}]
+	>=dev-python/colorama-0.4.3[${PYTHON_USEDEP}]
+	>=dev-python/distro-1.4.0[${PYTHON_USEDEP}]
+	>=dev-python/fasteners-0.15.0[${PYTHON_USEDEP}]
+	>=dev-python/jinja-3.0[${PYTHON_USEDEP}]
+	>=dev-python/patch-ng-1.17.4[${PYTHON_USEDEP}]
+	>=dev-python/pluginbase-0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-2.4[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
+	>=dev-python/pyyaml-6.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.25[${PYTHON_USEDEP}]
+	>=dev-python/urllib3-1.26.6[${PYTHON_USEDEP}]
+"
+
+# Try to fix it if you're brave enough
+# Conan requires noumerous external toolchain dependencies with restricted
+# versions and cannot be managable outside of a pure CI environment.
+RESTRICT="test"
+
+src_prepare() {
+	default
+	# Fix strict dependencies
+	sed -i \
+		-e 's:,[[:space:]]\?<=\?[[:space:]]\?[[:digit:]|.]*::g' \
+		-e 's:==:>=:g' \
+		conans/requirements{,_server}.txt || die
+}


             reply	other threads:[~2024-06-13 14:44 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-13 14:44 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-13  7:20 [gentoo-commits] repo/gentoo:master commit in: dev-util/conan/ Joonas Niilola
2024-09-05  4:08 Eli Schwartz
2024-08-28  6:39 Joonas Niilola
2024-07-05  2:59 Eli Schwartz
2024-05-23 14:25 Joonas Niilola
2024-01-07  0:20 Conrad Kostecki
2024-01-07  0:20 Conrad Kostecki
2023-04-23 15:48 Conrad Kostecki
2023-03-08 14:13 Joonas Niilola
2023-02-25 17:25 Joonas Niilola
2022-11-22 13:26 Joonas Niilola
2022-11-22 13:26 Joonas Niilola
2022-11-11 18:13 Joonas Niilola
2022-11-11 18:13 Joonas Niilola
2022-05-20  8:40 Joonas Niilola
2022-05-20  8:40 Joonas Niilola
2022-04-23  6:25 Joonas Niilola
2022-04-23  6:25 Joonas Niilola
2022-02-06 19:47 Ionen Wolkens
2022-02-06 19:47 Ionen Wolkens
2021-11-12 13:04 Joonas Niilola
2021-06-14 22:11 Sam James
2021-06-14 22:11 Sam James
2021-06-01 14:05 Sam James
2021-05-31 20:53 Michał Górny
2020-09-15 14:11 Joonas Niilola
2020-08-15  9:30 Joonas Niilola
2020-08-15  9:30 Joonas Niilola
2020-07-16 14:39 Joonas Niilola
2020-04-23  7:41 Joonas Niilola
2020-03-25 13:46 Joonas Niilola
2020-03-25 13:46 Joonas Niilola
2020-01-27  6:32 Joonas Niilola
2020-01-27  6:32 Joonas Niilola
2020-01-24  6:54 Joonas Niilola
2020-01-24  6:54 Joonas Niilola
2020-01-24  6:54 Joonas Niilola
2019-11-14  6:26 Joonas Niilola
2019-11-14  6:26 Joonas Niilola
2019-11-14  6:26 Joonas Niilola
2019-11-14  6:26 Joonas Niilola
2019-08-21 16:03 Joonas Niilola
2019-08-21 16:03 Joonas Niilola
2019-08-13  5:05 Joonas Niilola
2019-08-13  4:29 Joonas Niilola
2019-05-01  9:11 David Seifert
2018-05-01 15:52 Mikle Kolyada
2018-04-05 15:21 Aaron Bauman
2018-02-27 22:59 Patrice Clement
2018-02-27 22:59 Patrice Clement
2018-01-02 22:14 Michał Górny
2018-01-02 22:14 Michał Górny
2017-12-15  8:23 Patrice Clement
2017-07-24 19:33 Sebastien Fabbro
2017-07-14 17:32 Sebastien Fabbro
2017-06-28 18:21 Sebastien Fabbro
2017-03-08 18:04 Sebastien Fabbro
2017-02-16 16:54 Sebastien Fabbro
2017-02-16 16:54 Sebastien Fabbro
2016-12-20 18:17 Sebastien Fabbro
2016-12-20 18:17 Sebastien Fabbro
2016-12-12  2:30 Sebastien Fabbro
2016-12-12  2:30 Sebastien Fabbro
2016-10-29  0:52 Sebastien Fabbro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1718289366.067f5fe3491614b9507959eb1ae2a89034ec8506.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox