public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Rick Farina" <zerochaos@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pybind11/
Date: Mon,  1 Jun 2020 20:45:57 +0000 (UTC)	[thread overview]
Message-ID: <1591044184.7cfac948c05bc1cc97272293d637de2be8692344.zerochaos@gentoo> (raw)

commit:     7cfac948c05bc1cc97272293d637de2be8692344
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Fri May 29 15:41:36 2020 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Jun  1 20:43:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfac948

dev-python/pybind11: bump

fix bug #706070

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>

 dev-python/pybind11/Manifest              |  1 +
 dev-python/pybind11/pybind11-2.5.0.ebuild | 79 +++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest
index 5ff276e9ad3..04715a0032b 100644
--- a/dev-python/pybind11/Manifest
+++ b/dev-python/pybind11/Manifest
@@ -1 +1,2 @@
 DIST pybind11-2.4.3.tar.gz 138789 BLAKE2B 6279ddbc4ca4c8a62eeff684cac789a315eef0ce769258c8152f7073f8bbea39e582ed1ea86fae6878f46c675ed998c314bbaa54a40457287833cc555f5d9692 SHA512 97b6ffb38dbda8021e8265c2052df65785d532dbcd94a2b711306f806eab1a9e2aaf31ea466f13eb5784856ac69e0f4c1dc6d742aa70e5a10ce9ce338e5e9d84
+DIST pybind11-2.5.0.tar.gz 573769 BLAKE2B e46d99f873f8266efc577d3e0ab1e8a78784a45c35995bc3486501d627698e0fb10205008e8cb82c84e971f20cd02a6d2f08390f3a3041fff1a21c45f11b197f SHA512 7f3a9c71916749436898d1844ef6b112baf0817a386308b5df8dec2a912ef4b6a932b94965e98f227c49fa77312f131972a6039f23b84a3daf6442a8ab0be7c2

diff --git a/dev-python/pybind11/pybind11-2.5.0.ebuild b/dev-python/pybind11/pybind11-2.5.0.ebuild
new file mode 100644
index 00000000000..9f4ad379f84
--- /dev/null
+++ b/dev-python/pybind11/pybind11-2.5.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit cmake distutils-r1
+
+DESCRIPTION="AST-based Python refactoring library"
+HOMEPAGE="https://pybind11.readthedocs.io/en/stable/"
+SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="doc"
+
+DEPEND="
+	${PYTHON_DEPS}
+	doc? (
+		dev-python/breathe[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	${PYTHON_DEPS}
+	dev-cpp/eigen:3
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
+
+pkg_setup() {
+	use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python3_6' )
+}
+
+python_prepare_all() {
+	export PYBIND11_USE_CMAKE=1
+	cmake_src_prepare
+	distutils-r1_python_prepare_all
+}
+
+python_configure_all() {
+	local mycmakeargs=(
+		-DPYBIND11_INSTALL=ON
+		-DPYBIND11_TEST=OFF
+	)
+
+	cmake_src_configure
+}
+
+python_compile_all() {
+	# No compilation has to be done by cmake
+
+	# documentation is not covered by cmake, but has it's own makefile
+	# using sphinx
+	if use doc; then
+		python_setup 'python3_6'
+		pushd "${S}"/docs || die
+		emake info man html
+		popd || die
+	fi
+}
+
+python_install_all() {
+	cmake_src_install
+	if use doc; then
+		python_setup
+		local HTML_DOCS=( "${S}"/docs/.build/html/. )
+
+		# install man and info pages
+		doman "${S}"/docs/.build/man/pybind11.1
+		doinfo "${S}"/docs/.build/texinfo/pybind11.info
+	fi
+
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2020-06-01 20:46 UTC|newest]

Thread overview: 149+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-01 20:45 Rick Farina [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-14  6:03 [gentoo-commits] repo/gentoo:master commit in: dev-python/pybind11/ Michał Górny
2024-08-23 16:44 Michał Górny
2024-08-16 16:21 Michał Górny
2024-08-14  6:05 Michał Górny
2024-06-27 19:09 Michał Górny
2024-06-27  2:53 Michał Górny
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28 22:28 Ionen Wolkens
2024-05-28  4:27 Michał Górny
2024-04-03 17:44 Michał Górny
2024-03-28 10:56 Michał Górny
2024-03-28  5:55 Michał Górny
2023-08-20 18:07 Arthur Zamarin
2023-08-20 18:02 Arthur Zamarin
2023-08-20  5:43 Sam James
2023-08-19 18:56 Arthur Zamarin
2023-08-19 18:07 Arthur Zamarin
2023-08-19 17:53 Arthur Zamarin
2023-08-19 17:53 Arthur Zamarin
2023-08-19 17:53 Arthur Zamarin
2023-07-18  6:03 Michał Górny
2023-05-05 14:07 Michał Górny
2023-05-05 10:41 Arthur Zamarin
2023-04-23 21:36 Sam James
2023-04-22 11:52 Sam James
2023-04-22 11:39 Sam James
2023-04-22 10:34 Arthur Zamarin
2023-04-22 10:34 Arthur Zamarin
2023-04-22  9:25 Arthur Zamarin
2023-04-22  9:05 Arthur Zamarin
2023-03-03 19:16 Michał Górny
2023-03-03 17:57 Arthur Zamarin
2023-03-03 17:57 Arthur Zamarin
2023-03-03 17:48 Arthur Zamarin
2023-02-19 19:46 Michał Górny
2023-02-08 20:17 Andreas Sturmlechner
2023-02-03 13:34 Sam James
2023-02-03 13:10 Arthur Zamarin
2023-02-03 13:02 Arthur Zamarin
2023-02-03 12:33 Sam James
2023-02-03 12:09 Arthur Zamarin
2023-01-14 10:00 Arthur Zamarin
2023-01-13 18:26 Arthur Zamarin
2023-01-13 18:26 Arthur Zamarin
2023-01-04 14:15 Michał Górny
2022-12-21  7:51 Michał Górny
2022-12-21  7:51 Michał Górny
2022-12-02  6:32 Arthur Zamarin
2022-11-01  5:19 Michał Górny
2022-08-18  7:01 Agostino Sarubbo
2022-08-17 21:13 Sam James
2022-08-17 19:10 Arthur Zamarin
2022-08-17 19:08 Arthur Zamarin
2022-08-17 19:08 Arthur Zamarin
2022-08-17 18:47 Sam James
2022-07-16  8:02 Michał Górny
2022-06-17  4:54 Michał Górny
2022-06-16 23:05 Jakov Smolić
2022-06-16 10:39 Jakov Smolić
2022-06-16  9:50 Jakov Smolić
2022-06-16  9:50 Jakov Smolić
2022-06-16  9:37 Jakov Smolić
2022-06-16  9:37 Jakov Smolić
2022-05-16 16:05 Michał Górny
2022-05-05  5:29 Arthur Zamarin
2022-05-05  5:29 Arthur Zamarin
2022-05-04 14:40 Sam James
2022-05-04 14:40 Sam James
2022-05-01 12:20 Jakov Smolić
2022-04-18 18:22 Arthur Zamarin
2022-04-16  8:22 Arthur Zamarin
2022-04-10  2:35 Matt Turner
2022-04-09 19:40 Arthur Zamarin
2022-04-09 19:27 Arthur Zamarin
2022-04-09 19:26 Arthur Zamarin
2022-04-01  6:40 Yixun Lan
2022-03-31 11:33 Michał Górny
2022-03-26 18:14 Arthur Zamarin
2022-03-26 17:52 Arthur Zamarin
2022-03-21  9:18 Jakov Smolić
2022-03-21  7:50 Agostino Sarubbo
2022-03-21  7:47 Agostino Sarubbo
2022-03-20 18:34 Sam James
2022-03-20 18:34 Sam James
2022-02-02  6:45 Michał Górny
2022-02-02  0:08 Sam James
2022-01-30 22:29 Sam James
2022-01-30  8:03 Agostino Sarubbo
2022-01-29 10:04 Jakov Smolić
2022-01-29 10:04 Jakov Smolić
2022-01-29  7:19 Arthur Zamarin
2021-12-29  8:30 Michał Górny
2021-11-14  3:23 Sam James
2021-11-06 19:59 Arthur Zamarin
2021-11-06 19:56 Sam James
2021-11-05 18:02 Sam James
2021-11-05 18:02 Sam James
2021-11-05 17:38 Sam James
2021-11-05 17:38 Sam James
2021-11-05  2:18 Sam James
2021-11-05  2:16 Sam James
2021-11-05  2:12 Sam James
2021-10-27 22:44 Patrick McLean
2021-10-24 21:14 Sam James
2021-10-05  8:27 Michał Górny
2021-10-02 23:17 Sam James
2021-08-26 15:31 Michał Górny
2021-08-26  4:41 Agostino Sarubbo
2021-08-26  3:00 Sam James
2021-08-26  3:00 Sam James
2021-08-05  7:29 Michał Górny
2021-08-04  6:13 Michał Górny
2021-07-17  7:03 Michał Górny
2021-07-02 10:12 Marek Szuba
2021-06-08  7:41 Sam James
2021-05-17 14:50 Marek Szuba
2021-03-25 18:15 Agostino Sarubbo
2021-03-25 16:19 Agostino Sarubbo
2021-03-25 14:23 Sam James
2021-03-25 14:23 Sam James
2021-02-25 13:24 Michał Górny
2021-02-25 11:19 Sam James
2021-02-19  8:50 Michał Górny
2021-02-19  8:50 Michał Górny
2021-02-19  4:16 Sam James
2021-02-19  4:14 Sam James
2021-01-27  8:55 Michał Górny
2020-12-17  3:58 Sam James
2020-11-26 23:04 Sergei Trofimovich
2020-11-25 23:09 Thomas Deutschmann
2020-11-12  9:16 Michał Górny
2020-10-21 18:53 Michał Górny
2020-09-13  8:44 Sergei Trofimovich
2020-08-11 11:00 Agostino Sarubbo
2020-06-05 13:13 Michał Górny
2020-06-05 13:13 Michał Górny
2020-06-05 13:13 Michał Górny
2020-06-05 13:13 Michał Górny
2020-06-03 19:20 Rick Farina
2020-05-10 15:26 Mikle Kolyada
2020-05-10 15:26 Mikle Kolyada
2020-03-07 15:11 Michał Górny
2019-12-26  2:42 Jason Zaman

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=1591044184.7cfac948c05bc1cc97272293d637de2be8692344.zerochaos@gentoo \
    --to=zerochaos@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