public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/
@ 2019-04-22 10:49 Bernd Waibel
  0 siblings, 0 replies; 5+ messages in thread
From: Bernd Waibel @ 2019-04-22 10:49 UTC (permalink / raw
  To: gentoo-commits

commit:     a3a57530854f61379e2c724ba75010a29c54ad35
Author:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Mon Apr 22 09:37:37 2019 +0000
Commit:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
CommitDate: Mon Apr 22 09:37:37 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3a57530

dev-util/pybind11: new package

Bidirectional library for C++11 and Python bindings

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>

 dev-util/pybind11/Manifest              |  1 +
 dev-util/pybind11/metadata.xml          | 12 +++++
 dev-util/pybind11/pybind11-2.2.4.ebuild | 94 +++++++++++++++++++++++++++++++++
 3 files changed, 107 insertions(+)

diff --git a/dev-util/pybind11/Manifest b/dev-util/pybind11/Manifest
new file mode 100644
index 0000000..5a4fe9b
--- /dev/null
+++ b/dev-util/pybind11/Manifest
@@ -0,0 +1 @@
+DIST pybind11-2.2.4.tar.gz 548404 BLAKE2B b56230b5a4c0f392b714ead40d414a8b587396dbeec4089f5b77141cc7c2caf135f17f680b653d2e5be8b60a19a48a716fe8e562f337650fdac76461fb982aee SHA512 6bddf5c885ff92a3e373bcedc6574dfefe8be9ebb6176c6c96d475457466c76bfb982c6df4066cb0fbead4b867f87dbc4fbc1605c80852635016f614330ce041

diff --git a/dev-util/pybind11/metadata.xml b/dev-util/pybind11/metadata.xml
new file mode 100644
index 0000000..e757cfb
--- /dev/null
+++ b/dev-util/pybind11/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+	<email>waebbl@gmail.com</email>
+	<name>Bernd Waibel</name>
+</maintainer>
+<longdescription>
+	Lightweight header-only library that exposes C++ types in Python and
+	vice versa, mainly to create Python bindings of existing C++ code.
+</longdescription>
+</pkgmetadata>

diff --git a/dev-util/pybind11/pybind11-2.2.4.ebuild b/dev-util/pybind11/pybind11-2.2.4.ebuild
new file mode 100644
index 0000000..81fe08d
--- /dev/null
+++ b/dev-util/pybind11/pybind11-2.2.4.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# according to upstream is compatible with 2.7 and 3.x
+# 3.7 not added due to some dependencies not yet supporting it
+PYTHON_COMPAT=( python{2_7,3_{5,6}} )
+
+inherit cmake-utils python-single-r1
+
+DESCRIPTION="Seamless operability between C++11 and Python"
+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 ~x86"
+
+IUSE="doc test"
+
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	${PYTHON_DEP}
+	doc? (
+		dev-python/breathe[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
+	test? (
+		dev-cpp/catch
+		dev-libs/boost[python,${PYTHON_USEDEP}]
+		dev-python/numpy[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		sci-libs/scipy[${PYTHON_USEDEP}]
+	)
+"
+
+RDEPEND="
+	${PYTHON_DEP}
+	dev-cpp/eigen
+	sys-apps/texinfo
+	sys-devel/gettext[cxx]
+	virtual/man
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
+
+pkg_setup() {
+	python-single-r1_pkg_setup
+}
+
+src_configure() {
+	mycmakeargs=(
+		-DPYBIND11_INSTALL=ON
+		-DPYBIND11_TEST=$(usex test)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+
+	# documentation is not covered by cmake, but has it's own makefile
+	# using sphinx
+	if use doc; then
+		pushd "${S}"/docs || die
+		emake info man html
+		popd || die
+	fi
+}
+
+src_test() {
+	cmake-utils_src_test
+	pushd "${BUILD_DIR}" || die
+	emake check
+	popd || die
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	if use doc; then
+		local HTML_DOCS=( "${S}"/docs/.build/html/. )
+		einstalldocs
+
+		# install man and info pages
+		doman "${S}"/docs/.build/man/pybind11.1
+		doinfo "${S}"/docs/.build/texinfo/pybind11.info
+	fi
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/
@ 2019-06-15 17:43 Bernd Waibel
  0 siblings, 0 replies; 5+ messages in thread
From: Bernd Waibel @ 2019-06-15 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     f2a17bd077aa220aa14fd118f38767a946da27f8
Author:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Sat Jun 15 16:48:36 2019 +0000
Commit:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
CommitDate: Sat Jun 15 16:48:36 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2a17bd0

dev-util/pybind11: drop old 2.2.4 version

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>

 dev-util/pybind11/Manifest              |  1 -
 dev-util/pybind11/pybind11-2.2.4.ebuild | 94 ---------------------------------
 2 files changed, 95 deletions(-)

diff --git a/dev-util/pybind11/Manifest b/dev-util/pybind11/Manifest
index e8a8b70..9d4bbe0 100644
--- a/dev-util/pybind11/Manifest
+++ b/dev-util/pybind11/Manifest
@@ -1,2 +1 @@
-DIST pybind11-2.2.4.tar.gz 548404 BLAKE2B b56230b5a4c0f392b714ead40d414a8b587396dbeec4089f5b77141cc7c2caf135f17f680b653d2e5be8b60a19a48a716fe8e562f337650fdac76461fb982aee SHA512 6bddf5c885ff92a3e373bcedc6574dfefe8be9ebb6176c6c96d475457466c76bfb982c6df4066cb0fbead4b867f87dbc4fbc1605c80852635016f614330ce041
 DIST pybind11-2.3.0.tar.gz 564520 BLAKE2B a7c1485aa8f63a00eccd3103cf9f531a080b049be02e6182b30503ae6dd6c55fc517684ed9d92aaec244efd5f77336c68d1ea546833f7f0ae2fd7b090c19a02d SHA512 04542fe9dca2ffdb86c15698a4bbc041446a9f11970092e89a482ae0ff64c932f62fff8f437b98bdaa006c1fccabddd79f0c7e376f27daed2150b1d2f988e8aa

diff --git a/dev-util/pybind11/pybind11-2.2.4.ebuild b/dev-util/pybind11/pybind11-2.2.4.ebuild
deleted file mode 100644
index 81fe08d..0000000
--- a/dev-util/pybind11/pybind11-2.2.4.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# according to upstream is compatible with 2.7 and 3.x
-# 3.7 not added due to some dependencies not yet supporting it
-PYTHON_COMPAT=( python{2_7,3_{5,6}} )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="Seamless operability between C++11 and Python"
-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 ~x86"
-
-IUSE="doc test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	${PYTHON_DEP}
-	doc? (
-		dev-python/breathe[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-	)
-	test? (
-		dev-cpp/catch
-		dev-libs/boost[python,${PYTHON_USEDEP}]
-		dev-python/numpy[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-		sci-libs/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-RDEPEND="
-	${PYTHON_DEP}
-	dev-cpp/eigen
-	sys-apps/texinfo
-	sys-devel/gettext[cxx]
-	virtual/man
-"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
-
-pkg_setup() {
-	python-single-r1_pkg_setup
-}
-
-src_configure() {
-	mycmakeargs=(
-		-DPYBIND11_INSTALL=ON
-		-DPYBIND11_TEST=$(usex test)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-
-	# documentation is not covered by cmake, but has it's own makefile
-	# using sphinx
-	if use doc; then
-		pushd "${S}"/docs || die
-		emake info man html
-		popd || die
-	fi
-}
-
-src_test() {
-	cmake-utils_src_test
-	pushd "${BUILD_DIR}" || die
-	emake check
-	popd || die
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	if use doc; then
-		local HTML_DOCS=( "${S}"/docs/.build/html/. )
-		einstalldocs
-
-		# install man and info pages
-		doman "${S}"/docs/.build/man/pybind11.1
-		doinfo "${S}"/docs/.build/texinfo/pybind11.info
-	fi
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/
@ 2019-06-15 17:43 Bernd Waibel
  0 siblings, 0 replies; 5+ messages in thread
From: Bernd Waibel @ 2019-06-15 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     5aace92c7dbc6a586b1e865e68452e33e0bfc909
Author:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Sat Jun 15 16:46:31 2019 +0000
Commit:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
CommitDate: Sat Jun 15 16:46:31 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5aace92c

dev-util/pybind11: bump to version 2.3.0

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>

 dev-util/pybind11/Manifest              |  1 +
 dev-util/pybind11/pybind11-2.3.0.ebuild | 94 +++++++++++++++++++++++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/dev-util/pybind11/Manifest b/dev-util/pybind11/Manifest
index 5a4fe9b..e8a8b70 100644
--- a/dev-util/pybind11/Manifest
+++ b/dev-util/pybind11/Manifest
@@ -1 +1,2 @@
 DIST pybind11-2.2.4.tar.gz 548404 BLAKE2B b56230b5a4c0f392b714ead40d414a8b587396dbeec4089f5b77141cc7c2caf135f17f680b653d2e5be8b60a19a48a716fe8e562f337650fdac76461fb982aee SHA512 6bddf5c885ff92a3e373bcedc6574dfefe8be9ebb6176c6c96d475457466c76bfb982c6df4066cb0fbead4b867f87dbc4fbc1605c80852635016f614330ce041
+DIST pybind11-2.3.0.tar.gz 564520 BLAKE2B a7c1485aa8f63a00eccd3103cf9f531a080b049be02e6182b30503ae6dd6c55fc517684ed9d92aaec244efd5f77336c68d1ea546833f7f0ae2fd7b090c19a02d SHA512 04542fe9dca2ffdb86c15698a4bbc041446a9f11970092e89a482ae0ff64c932f62fff8f437b98bdaa006c1fccabddd79f0c7e376f27daed2150b1d2f988e8aa

diff --git a/dev-util/pybind11/pybind11-2.3.0.ebuild b/dev-util/pybind11/pybind11-2.3.0.ebuild
new file mode 100644
index 0000000..6a24042
--- /dev/null
+++ b/dev-util/pybind11/pybind11-2.3.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# According to upstream is compatible with 2.7 and 3.x
+# However support for python3_7 needs boost with python3_7
+PYTHON_COMPAT=( python{2_7,3_{5,6}} )
+
+inherit cmake-utils python-single-r1
+
+DESCRIPTION="Seamless operability between C++11 and Python"
+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 ~x86"
+
+IUSE="doc test"
+
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	${PYTHON_DEP}
+	doc? (
+		dev-python/breathe[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
+	test? (
+		dev-cpp/catch:0
+		dev-libs/boost:=[python,${PYTHON_USEDEP}]
+		dev-python/numpy[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		sci-libs/scipy[${PYTHON_USEDEP}]
+	)
+"
+
+RDEPEND="
+	${PYTHON_DEP}
+	dev-cpp/eigen:3
+	sys-apps/texinfo
+	sys-devel/gettext[cxx]
+	virtual/man
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
+
+pkg_setup() {
+	python-single-r1_pkg_setup
+}
+
+src_configure() {
+	mycmakeargs=(
+		-DPYBIND11_INSTALL=ON
+		-DPYBIND11_TEST=$(usex test)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+
+	# documentation is not covered by cmake, but has it's own makefile
+	# using sphinx
+	if use doc; then
+		pushd "${S}"/docs || die
+		emake info man html
+		popd || die
+	fi
+}
+
+src_test() {
+	cmake-utils_src_test
+	pushd "${BUILD_DIR}" || die
+	eninja check
+	popd || die
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	if use doc; then
+		local HTML_DOCS=( "${S}"/docs/.build/html/. )
+		einstalldocs
+
+		# install man and info pages
+		doman "${S}"/docs/.build/man/pybind11.1
+		doinfo "${S}"/docs/.build/texinfo/pybind11.info
+	fi
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/
@ 2019-11-30  6:38 Haelwenn Monnier
  0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2019-11-30  6:38 UTC (permalink / raw
  To: gentoo-commits

commit:     61621d476d644c20fa674ec99e45b487773ab35d
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Nov 30 06:38:48 2019 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sat Nov 30 06:38:48 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61621d47

dev-util/pybind11: fix typo on PYTHON_DEPS

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 dev-util/pybind11/pybind11-2.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/pybind11/pybind11-2.3.0.ebuild b/dev-util/pybind11/pybind11-2.3.0.ebuild
index 6a24042..94f7413 100644
--- a/dev-util/pybind11/pybind11-2.3.0.ebuild
+++ b/dev-util/pybind11/pybind11-2.3.0.ebuild
@@ -22,7 +22,7 @@ IUSE="doc test"
 RESTRICT="!test? ( test )"
 
 DEPEND="
-	${PYTHON_DEP}
+	${PYTHON_DEPS}
 	doc? (
 		dev-python/breathe[${PYTHON_USEDEP}]
 		dev-python/sphinx[${PYTHON_USEDEP}]
@@ -37,7 +37,7 @@ DEPEND="
 "
 
 RDEPEND="
-	${PYTHON_DEP}
+	${PYTHON_DEPS}
 	dev-cpp/eigen:3
 	sys-apps/texinfo
 	sys-devel/gettext[cxx]


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/
@ 2020-01-21 22:15 Bernd Waibel
  0 siblings, 0 replies; 5+ messages in thread
From: Bernd Waibel @ 2020-01-21 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     01535b6ba6a74c18144e88e4109c0024b0642240
Author:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Tue Jan 21 22:14:17 2020 +0000
Commit:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
CommitDate: Tue Jan 21 22:14:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=01535b6b

dev-util/pybind11: drop package

Has been added to portage tree as dev-python/pybind11.

Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>

 dev-util/pybind11/Manifest              |  1 -
 dev-util/pybind11/metadata.xml          | 12 -----
 dev-util/pybind11/pybind11-2.3.0.ebuild | 94 ---------------------------------
 3 files changed, 107 deletions(-)

diff --git a/dev-util/pybind11/Manifest b/dev-util/pybind11/Manifest
deleted file mode 100644
index 9d4bbe0..0000000
--- a/dev-util/pybind11/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pybind11-2.3.0.tar.gz 564520 BLAKE2B a7c1485aa8f63a00eccd3103cf9f531a080b049be02e6182b30503ae6dd6c55fc517684ed9d92aaec244efd5f77336c68d1ea546833f7f0ae2fd7b090c19a02d SHA512 04542fe9dca2ffdb86c15698a4bbc041446a9f11970092e89a482ae0ff64c932f62fff8f437b98bdaa006c1fccabddd79f0c7e376f27daed2150b1d2f988e8aa

diff --git a/dev-util/pybind11/metadata.xml b/dev-util/pybind11/metadata.xml
deleted file mode 100644
index e757cfb..0000000
--- a/dev-util/pybind11/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-	<email>waebbl@gmail.com</email>
-	<name>Bernd Waibel</name>
-</maintainer>
-<longdescription>
-	Lightweight header-only library that exposes C++ types in Python and
-	vice versa, mainly to create Python bindings of existing C++ code.
-</longdescription>
-</pkgmetadata>

diff --git a/dev-util/pybind11/pybind11-2.3.0.ebuild b/dev-util/pybind11/pybind11-2.3.0.ebuild
deleted file mode 100644
index 94f7413..0000000
--- a/dev-util/pybind11/pybind11-2.3.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# According to upstream is compatible with 2.7 and 3.x
-# However support for python3_7 needs boost with python3_7
-PYTHON_COMPAT=( python{2_7,3_{5,6}} )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="Seamless operability between C++11 and Python"
-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 ~x86"
-
-IUSE="doc test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	${PYTHON_DEPS}
-	doc? (
-		dev-python/breathe[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-	)
-	test? (
-		dev-cpp/catch:0
-		dev-libs/boost:=[python,${PYTHON_USEDEP}]
-		dev-python/numpy[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-		sci-libs/scipy[${PYTHON_USEDEP}]
-	)
-"
-
-RDEPEND="
-	${PYTHON_DEPS}
-	dev-cpp/eigen:3
-	sys-apps/texinfo
-	sys-devel/gettext[cxx]
-	virtual/man
-"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=( README.md CONTRIBUTING.md ISSUE_TEMPLATE.md )
-
-pkg_setup() {
-	python-single-r1_pkg_setup
-}
-
-src_configure() {
-	mycmakeargs=(
-		-DPYBIND11_INSTALL=ON
-		-DPYBIND11_TEST=$(usex test)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-
-	# documentation is not covered by cmake, but has it's own makefile
-	# using sphinx
-	if use doc; then
-		pushd "${S}"/docs || die
-		emake info man html
-		popd || die
-	fi
-}
-
-src_test() {
-	cmake-utils_src_test
-	pushd "${BUILD_DIR}" || die
-	eninja check
-	popd || die
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	if use doc; then
-		local HTML_DOCS=( "${S}"/docs/.build/html/. )
-		einstalldocs
-
-		# install man and info pages
-		doman "${S}"/docs/.build/man/pybind11.1
-		doinfo "${S}"/docs/.build/texinfo/pybind11.info
-	fi
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-01-21 22:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-15 17:43 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pybind11/ Bernd Waibel
  -- strict thread matches above, loose matches on Subject: below --
2020-01-21 22:15 Bernd Waibel
2019-11-30  6:38 Haelwenn Monnier
2019-06-15 17:43 Bernd Waibel
2019-04-22 10:49 Bernd Waibel

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