mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 09:32:37 +01:00
Compare commits
2 Commits
3324dd434a
...
7f35ef5d18
| Author | SHA1 | Date | |
|---|---|---|---|
|
7f35ef5d18
|
|||
|
c72422e88a
|
2
media-libs/libcamera/Manifest
Normal file
2
media-libs/libcamera/Manifest
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
DIST libcamera-0.3.2_p20241219.tar.bz2 1313867 BLAKE2B 119075d37464e236bb1cfb94f9703b3f912e3df533e5bee55a0b169bbb3fb371fd0fbd95db39728fc51c5f4e99ad68723bf6c59db76200052e44740364f16202 SHA512 f54c140ea63b0c29b6d6a81b6b308dd7a22cebe908527607309b28f579f9e1b476e185956f1f5ebbaf0f229ad91d0f6fcf6bb78606517cb85d3a805be1fcb373
|
||||||
|
DIST libcamera-v0.3.2.tar.bz2 1257110 BLAKE2B 5f825c76abf1030c88756036f8510dcc553db34c013ebd8a38b3c7837579edf678bde564380af8c43f8d5b032523b96980d7bc4e7882dca29a9542d44130525c SHA512 7f2af3e8e18be215506a9302a5c882da34dd1b40ff1effe90438f8bb53c7b73a9e8ccb1d2fcc3ab551e0dfce72582a49d8db8da19de7128a20b36ff60c3bba75
|
||||||
82
media-libs/libcamera/libcamera-0.3.2.ebuild
Normal file
82
media-libs/libcamera/libcamera-0.3.2.ebuild
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
# Copyright 2024 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{9..13} )
|
||||||
|
|
||||||
|
inherit meson python-single-r1
|
||||||
|
|
||||||
|
DESCRIPTION="An open source camera stack and framework for Linux, Android, and ChromeOS"
|
||||||
|
HOMEPAGE="https://libcamera.org/"
|
||||||
|
SRC_URI="https://gitlab.freedesktop.org/camera/libcamera/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
|
||||||
|
S="${WORKDIR}/${PN}-v${PV}"
|
||||||
|
|
||||||
|
LICENSE="LGPL-2.1+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
IUSE="+app debug doc gstreamer python qt6 test udev"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
$(python_gen_cond_dep '
|
||||||
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||||
|
')
|
||||||
|
app? (
|
||||||
|
dev-libs/libevent
|
||||||
|
media-libs/libsdl2
|
||||||
|
media-libs/libjpeg-turbo
|
||||||
|
x11-libs/libdrm
|
||||||
|
)
|
||||||
|
doc? (
|
||||||
|
app-text/doxygen
|
||||||
|
dev-python/sphinx
|
||||||
|
dev-texlive/texlive-latexextra
|
||||||
|
media-gfx/graphviz
|
||||||
|
)
|
||||||
|
gstreamer? ( media-libs/gst-plugins-base )
|
||||||
|
qt6? (
|
||||||
|
dev-qt/qtbase[gui,opengl,widgets]
|
||||||
|
media-libs/tiff
|
||||||
|
)
|
||||||
|
udev? ( virtual/libudev )
|
||||||
|
"
|
||||||
|
BDEPEND="dev-libs/openssl"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
"
|
||||||
|
|
||||||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||||
|
RESTRICT="!test? ( test )"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
if use python; then
|
||||||
|
sed -i -e "/destdir =/s#destdir =.*#destdir = '"$(python_get_sitedir)"/libcamera'#g" \
|
||||||
|
src/py/libcamera/meson.build || die
|
||||||
|
fi
|
||||||
|
|
||||||
|
default
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
local emesonargs=(
|
||||||
|
-Dandroid=disabled
|
||||||
|
$(meson_feature app cam)
|
||||||
|
$(meson_feature doc documentation)
|
||||||
|
$(meson_feature gstreamer)
|
||||||
|
$(meson_feature python pycamera)
|
||||||
|
$(meson_feature qt6 qcam)
|
||||||
|
$(meson_feature udev)
|
||||||
|
$(meson_use test)
|
||||||
|
-Dbuildtype=$(usex debug debug plain)
|
||||||
|
-Dv4l2=true
|
||||||
|
)
|
||||||
|
meson_src_configure
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_src_install
|
||||||
|
python_optimize "${D}/$(python_get_sitedir)/libcamera"
|
||||||
|
}
|
||||||
87
media-libs/libcamera/libcamera-0.3.2_p20241219.ebuild
Normal file
87
media-libs/libcamera/libcamera-0.3.2_p20241219.ebuild
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
# Copyright 2024 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{9..13} )
|
||||||
|
|
||||||
|
inherit meson python-single-r1
|
||||||
|
|
||||||
|
COMMIT_ID="e37830925130afd541449ed22df0bc952c19a94a"
|
||||||
|
|
||||||
|
DESCRIPTION="An open source camera stack and framework for Linux, Android, and ChromeOS"
|
||||||
|
HOMEPAGE="https://libcamera.org/"
|
||||||
|
SRC_URI="
|
||||||
|
https://gitlab.freedesktop.org/camera/libcamera/-/archive/${COMMIT_ID}.tar.bz2
|
||||||
|
-> ${P}.tar.bz2
|
||||||
|
"
|
||||||
|
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||||
|
|
||||||
|
LICENSE="LGPL-2.1+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
IUSE="+app debug doc gstreamer python qt6 test udev"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
$(python_gen_cond_dep '
|
||||||
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||||
|
')
|
||||||
|
app? (
|
||||||
|
dev-libs/libevent
|
||||||
|
media-libs/libsdl2
|
||||||
|
media-libs/libjpeg-turbo
|
||||||
|
x11-libs/libdrm
|
||||||
|
)
|
||||||
|
doc? (
|
||||||
|
app-text/doxygen
|
||||||
|
dev-python/sphinx
|
||||||
|
dev-texlive/texlive-latexextra
|
||||||
|
media-gfx/graphviz
|
||||||
|
)
|
||||||
|
gstreamer? ( media-libs/gst-plugins-base )
|
||||||
|
qt6? (
|
||||||
|
dev-qt/qtbase[gui,opengl,widgets]
|
||||||
|
media-libs/tiff
|
||||||
|
)
|
||||||
|
udev? ( virtual/libudev )
|
||||||
|
"
|
||||||
|
BDEPEND="dev-libs/openssl"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
"
|
||||||
|
|
||||||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||||
|
RESTRICT="!test? ( test )"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
if use python; then
|
||||||
|
sed -i -e "/destdir =/s#destdir =.*#destdir = '"$(python_get_sitedir)"/libcamera'#g" \
|
||||||
|
src/py/libcamera/meson.build || die
|
||||||
|
fi
|
||||||
|
|
||||||
|
default
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
local emesonargs=(
|
||||||
|
-Dandroid=disabled
|
||||||
|
$(meson_feature app cam)
|
||||||
|
$(meson_feature doc documentation)
|
||||||
|
$(meson_feature gstreamer)
|
||||||
|
$(meson_feature python pycamera)
|
||||||
|
$(meson_feature qt6 qcam)
|
||||||
|
$(meson_feature udev)
|
||||||
|
$(meson_use test)
|
||||||
|
-Dbuildtype=$(usex debug debug plain)
|
||||||
|
-Dv4l2=true
|
||||||
|
)
|
||||||
|
meson_src_configure
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_src_install
|
||||||
|
python_optimize "${D}/$(python_get_sitedir)/libcamera"
|
||||||
|
}
|
||||||
14
media-libs/libcamera/metadata.xml
Normal file
14
media-libs/libcamera/metadata.xml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>david.guglielmi@gmail.com</email>
|
||||||
|
<name>David GUGLIELMI</name>
|
||||||
|
</maintainer>
|
||||||
|
<use>
|
||||||
|
<flag name="app">Build cam cli utility</flag>
|
||||||
|
</use>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="freedesktop-gitlab">camera/libcamera</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
|
||||||
DEPEND=>=dev-libs/glib-2.76:2 >=gui-libs/gtk-4.12.2:4 >=gui-libs/libadwaita-1.4:1 >=gui-libs/pqmarble-2 >=gui-libs/vte-0.74.2:2.91-gtk4[vala] dev-libs/json-glib >=dev-libs/libpcre2-10.43:0= >=dev-libs/libxml2-2.9.12 >=gnome-base/librsvg-2.54.0 dev-libs/libgee media-libs/graphene[introspection]
|
|
||||||
DESCRIPTION=An elegant and customizable terminal for GNOME
|
|
||||||
EAPI=8
|
|
||||||
HOMEPAGE=https://gitlab.gnome.org/raggesilver/blackbox
|
|
||||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
|
||||||
INHERIT=gnome2-utils meson vala xdg
|
|
||||||
KEYWORDS=~amd64
|
|
||||||
LICENSE=GPL-3
|
|
||||||
RDEPEND=>=dev-libs/glib-2.76:2 >=gui-libs/gtk-4.12.2:4 >=gui-libs/libadwaita-1.4:1 >=gui-libs/pqmarble-2 >=gui-libs/vte-0.74.2:2.91-gtk4[vala] dev-libs/json-glib >=dev-libs/libpcre2-10.43:0= >=dev-libs/libxml2-2.9.12 >=gnome-base/librsvg-2.54.0 dev-libs/libgee media-libs/graphene[introspection]
|
|
||||||
SLOT=0
|
|
||||||
SRC_URI=https://gitlab.gnome.org/raggesilver/blackbox/-/archive/v0.14.0/blackbox-v0.14.0.tar.bz2
|
|
||||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 vala e477903dbe0105930c51f170a592dc16 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
|
||||||
_md5_=f4f58cc211e5d99f8384821f7124f133
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
|
||||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
|
||||||
DEPEND=>=dev-libs/glib-2.76:2 >=gui-libs/gtk-4.12.2:4 >=gui-libs/libadwaita-1.4:1 >=gui-libs/pqmarble-2 >=gui-libs/vte-0.74.2:2.91-gtk4[vala] dev-libs/json-glib >=dev-libs/libpcre2-10.43:0= >=dev-libs/libxml2-2.9.12 >=gnome-base/librsvg-2.54.0 dev-libs/libgee media-libs/graphene[introspection]
|
|
||||||
DESCRIPTION=An elegant and customizable terminal for GNOME
|
|
||||||
EAPI=8
|
|
||||||
HOMEPAGE=https://gitlab.gnome.org/raggesilver/blackbox
|
|
||||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
|
||||||
INHERIT=gnome2-utils meson vala xdg
|
|
||||||
KEYWORDS=~amd64
|
|
||||||
LICENSE=GPL-3
|
|
||||||
RDEPEND=>=dev-libs/glib-2.76:2 >=gui-libs/gtk-4.12.2:4 >=gui-libs/libadwaita-1.4:1 >=gui-libs/pqmarble-2 >=gui-libs/vte-0.74.2:2.91-gtk4[vala] dev-libs/json-glib >=dev-libs/libpcre2-10.43:0= >=dev-libs/libxml2-2.9.12 >=gnome-base/librsvg-2.54.0 dev-libs/libgee media-libs/graphene[introspection]
|
|
||||||
SLOT=0
|
|
||||||
SRC_URI=https://gitlab.gnome.org/raggesilver/blackbox/-/archive/53be9986dea776eb4c2804d4e342cbd3a3cf06fc/blackbox-53be9986de.tar.bz2 -> blackbox-0.14.1_pre20240716.tar.bz2
|
|
||||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 vala e477903dbe0105930c51f170a592dc16 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
|
||||||
_md5_=d137e558436315b664e1183764fdb49e
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
BDEPEND=>=gui-libs/gtk-4.12.0:4 >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
|
||||||
DEFINED_PHASES=compile configure install prepare test
|
|
||||||
DEPEND=>=gui-libs/gtk-4.12.0:4
|
|
||||||
DESCRIPTION=PQMarble is a utility library for GNOME apps
|
|
||||||
EAPI=8
|
|
||||||
HOMEPAGE=https://gitlab.gnome.org/raggesilver/marble
|
|
||||||
INHERIT=meson vala
|
|
||||||
KEYWORDS=~amd64 ~x86
|
|
||||||
LICENSE=GPL-3+
|
|
||||||
RDEPEND=>=gui-libs/gtk-4.12.0:4
|
|
||||||
SLOT=0
|
|
||||||
SRC_URI=https://gitlab.gnome.org/raggesilver/marble/-/archive/f240b2ec7d5cdacb8fdcc553703420dc5101ffdb/marble-f240b2ec7d.tar.bz2 -> pqmarble-2.0_pre20230311.tar.bz2
|
|
||||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 vala e477903dbe0105930c51f170a592dc16
|
|
||||||
_md5_=468f55f3af1b27f0e91ddb8e774d768b
|
|
||||||
17
metadata/md5-cache/media-libs/libcamera-0.3.2
Normal file
17
metadata/md5-cache/media-libs/libcamera-0.3.2
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
BDEPEND=dev-libs/openssl >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||||
|
DEFINED_PHASES=compile configure install prepare setup test
|
||||||
|
DEPEND=python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) app? ( dev-libs/libevent media-libs/libsdl2 media-libs/libjpeg-turbo x11-libs/libdrm ) doc? ( app-text/doxygen dev-python/sphinx dev-texlive/texlive-latexextra media-gfx/graphviz ) gstreamer? ( media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) udev? ( virtual/libudev )
|
||||||
|
DESCRIPTION=An open source camera stack and framework for Linux, Android, and ChromeOS
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://libcamera.org/
|
||||||
|
INHERIT=meson python-single-r1
|
||||||
|
IUSE=+app debug doc gstreamer python qt6 test udev python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=LGPL-2.1+
|
||||||
|
RDEPEND=python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) app? ( dev-libs/libevent media-libs/libsdl2 media-libs/libjpeg-turbo x11-libs/libdrm ) doc? ( app-text/doxygen dev-python/sphinx dev-texlive/texlive-latexextra media-gfx/graphviz ) gstreamer? ( media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) udev? ( virtual/libudev ) python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||||
|
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.3.2/libcamera-v0.3.2.tar.bz2
|
||||||
|
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||||
|
_md5_=ac7745c79c33b97bb9a4073e96837a5f
|
||||||
17
metadata/md5-cache/media-libs/libcamera-0.3.2_p20241219
Normal file
17
metadata/md5-cache/media-libs/libcamera-0.3.2_p20241219
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
BDEPEND=dev-libs/openssl >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||||
|
DEFINED_PHASES=compile configure install prepare setup test
|
||||||
|
DEPEND=python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) app? ( dev-libs/libevent media-libs/libsdl2 media-libs/libjpeg-turbo x11-libs/libdrm ) doc? ( app-text/doxygen dev-python/sphinx dev-texlive/texlive-latexextra media-gfx/graphviz ) gstreamer? ( media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) udev? ( virtual/libudev )
|
||||||
|
DESCRIPTION=An open source camera stack and framework for Linux, Android, and ChromeOS
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://libcamera.org/
|
||||||
|
INHERIT=meson python-single-r1
|
||||||
|
IUSE=+app debug doc gstreamer python qt6 test udev python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=LGPL-2.1+
|
||||||
|
RDEPEND=python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) app? ( dev-libs/libevent media-libs/libsdl2 media-libs/libjpeg-turbo x11-libs/libdrm ) doc? ( app-text/doxygen dev-python/sphinx dev-texlive/texlive-latexextra media-gfx/graphviz ) gstreamer? ( media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) udev? ( virtual/libudev ) python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||||
|
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/e37830925130afd541449ed22df0bc952c19a94a.tar.bz2 -> libcamera-0.3.2_p20241219.tar.bz2
|
||||||
|
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||||
|
_md5_=63f0b074f86aeb82aff75bc023d52a11
|
||||||
Reference in New Issue
Block a user