forked from pool/libcamera
Compare commits
16 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| af7394cfb0 | |||
| 997e45e15b | |||
| 8522a16c1c | |||
|
|
7fe7abf315 | ||
| 14571d5b05 | |||
|
|
ca5be9b733 | ||
| ac91451ffd | |||
|
|
438b5a171a | ||
| 4f6c5e2da1 | |||
|
|
4ff39f274a | ||
| 7c02d86ca2 | |||
|
|
05b49f0f45 | ||
|
|
a4b589adb9 | ||
| 75be3c1cf9 | |||
|
|
beaac4d76d | ||
|
|
833a3ed9a6 |
@@ -1,4 +1,4 @@
|
||||
mtime: 1735007815
|
||||
commit: a947ca7173a6ae6711aeb28eaf5a3787c95cbc43505bd881b4d2e9eb043e339c
|
||||
mtime: 1766700076
|
||||
commit: 7ee0ddd193599fd8706b797262e7353b7c7340d28763347112c62bfce796666c
|
||||
url: https://src.opensuse.org/jengelh/libcamera
|
||||
revision: master
|
||||
|
||||
2
_service
2
_service
@@ -2,7 +2,7 @@
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://git.libcamera.org/libcamera/libcamera.git</param>
|
||||
<param name="revision">refs/tags/v0.4.0</param>
|
||||
<param name="revision">refs/tags/v0.6.0</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v([0-9\.]*)</param>
|
||||
</service>
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
libcamera0_4
|
||||
libcamera-base0_4
|
||||
libcamera0_6
|
||||
libcamera-base0_6
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:abf22897c3ddcb44fcf9ec02fb83f8de7f8eeb6369fc7a9874d8366f487f6fdd
|
||||
oid sha256:954c9a262c590389789cad4c1bffbfcfbd8f59888cba374cb37fb6e68aaef144
|
||||
size 256
|
||||
|
||||
BIN
libcamera-0.4.0.tar.xz
LFS
BIN
libcamera-0.4.0.tar.xz
LFS
Binary file not shown.
BIN
libcamera-0.6.0.tar.xz
LFS
Normal file
BIN
libcamera-0.6.0.tar.xz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,151 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 22 17:57:30 UTC 2025 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
|
||||
|
||||
- Various cleanups:
|
||||
* Drop unused boost build dependency
|
||||
* Replace reproducible.patch with equivalent "signed_ipa" build
|
||||
condition, only require openssl/gnutls if enabled.
|
||||
* Rename subpackage containing IPA modules and support-files
|
||||
from "tools" to "ipa".
|
||||
* Use automatic selection of IPA modules/pipelines so that
|
||||
ARM SoC specific ISPs are disabled on x86_64, and that
|
||||
RPi and mali-c55 are now enabled on aarch64.
|
||||
* Add libpisp build dependency for ARM targets
|
||||
* Split cam/qcam package, to reduce runtime dependencies
|
||||
notably on small SoCs (only SDL or Qt6 required)
|
||||
* Drop dysfunctional SLE/Leap 15.x conditionals
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 14:24:09 UTC 2025 - Antonio Teixeira <antonio.teixeira@suse.com>
|
||||
|
||||
- Update to release 0.6.0
|
||||
* Improved the public facing API.
|
||||
* New global configuration file system which will replace or
|
||||
extend the current use of environment variables to configure
|
||||
runtime behaviours.
|
||||
* The core V4L2 classes can now support the V4L2 Request API which
|
||||
in turn has brought in huge developments for the i.MX8MP Dewarper
|
||||
support allowing full resize, scale, rotate and crop capabilities
|
||||
on top of also performing lens dewarping.
|
||||
* SoftISP: IPU7 has been added as a supported configuration to
|
||||
the pipeline.
|
||||
* New tuning files have been added for Raspberry Pi platforms,
|
||||
improving support for the Sony IMX335, IMX415, IMX462, and ST
|
||||
VD55G1 image sensors, and Decompand support has been added for
|
||||
the Raspberry Pi 5.
|
||||
* Various improvements have been made for thread handling,
|
||||
improving synchronisation and event dispatch, as well as fixing
|
||||
the serialisation operations for isolated IPA modules.
|
||||
* In the applications components, there are fixes to cam adding
|
||||
more output formats and qcam now behaves more consistently when
|
||||
no camera is selected. The Python bindings have received fixes
|
||||
for paths from meson, and the FrameBuffer::planes wrapper.
|
||||
* doc: theme refresh and clearer separation between the internal
|
||||
and public API, and fixes to the contributing guidelines.
|
||||
* For a full list of changes, please see:
|
||||
https://gitlab.freedesktop.org/camera/libcamera/-/releases/v0.6.0
|
||||
- Update meson build requirement to 1.0.1 according to the upstream
|
||||
changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 9 12:42:46 UTC 2025 - pgajdos@suse.com
|
||||
|
||||
- Update to release 0.5.2
|
||||
* This release substantial development on gstreamer.
|
||||
* In core we can see development that cleans up ProcessManager
|
||||
in a drive to reduce singleton patterns throughout libcamera.
|
||||
* Pipelines are now able to limit the number of requests queued
|
||||
into the pipeline handler which helps prevent issues when
|
||||
applications desire to use a larger request queue.
|
||||
* It's now possible to check if controls exist with new macros
|
||||
defined for every control to help codebases compile against
|
||||
multiple versions.
|
||||
- see https://gitlab.freedesktop.org/camera/libcamera/-/releases/v0.5.2
|
||||
for details
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 9 11:32:16 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.de>
|
||||
|
||||
- Add reproducible.patch to skip module signing (boo#1217690)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 5 21:57:29 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 0.5.1
|
||||
* Improvements have been made to the Raspberry Pi Camera Tuning
|
||||
Tools, and the geometry, matrix and vector class helpers have
|
||||
been expanded for greater reuse throughout the project.
|
||||
* The software ISP has a new Saturation control.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 16:21:24 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
- Remove Qt5 BuildRequires which aren't really needed nor used.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 8 13:52:10 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
- Also bump the soname in baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 8 06:57:18 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
- Update to release 0.5.0
|
||||
* The abi-compliance-checker reports there are both ABI and API
|
||||
changes in this release.
|
||||
* Substantially less than the previous release, and ultimately
|
||||
quite minor but unfortunately there nonetheless and so the
|
||||
SONAME is updated to 0.5 accordingly. I do not anticipate
|
||||
anything there that cannot be solved for applications without
|
||||
just a recompile.
|
||||
* This release brings in 201 commits with a huge list of fixes
|
||||
and code clean up which I'm very happy to see, including
|
||||
interesting fixes to the AGC and AWB handling in libipa.
|
||||
* In regards to new features, libcamera-0.5 has aptly now got
|
||||
the core Raspberry Pi 5 support merged!. There are still
|
||||
patches that are currently maintained by Raspberry Pi for
|
||||
additional features, and while the transition to upstream API's
|
||||
continue, but I think we're all happy to see this support
|
||||
getting in directly, and Raspberry Pi continue to lead the way
|
||||
in upstream camera development. I look forward to the kernel
|
||||
API's for streams being fully utilised by the PiSP platform for
|
||||
upstream camera metadata handling. This upcoming work is also
|
||||
supported by the CameraSensor factory and CameraSensorRaw
|
||||
support that is now also merged in this release.
|
||||
* Further more in the platform support, the software_isp
|
||||
continues to be developed and is now able to measure colour
|
||||
temperature, which will bring in improvements for AWB, and a
|
||||
CCM can be applied while peforming debayering (at a CPU cost)
|
||||
which will allow us to finally apply color tuning for sensors
|
||||
on devices that need to fall back to the software ISP.
|
||||
* New sensor support seems fairly short in this release, with the
|
||||
IMX415 being the prominent addition.
|
||||
* In libipa, and algorithm developments, along with many fixes
|
||||
and improvements there is a substantial new feature that the
|
||||
Baysian AWB algorithm from Raspberry Pi can now also be used on
|
||||
all libipa supported IPA modules, and has shown good impovements
|
||||
for the RkISP1 supported devices.
|
||||
* There is minimal changes to the application support side, but
|
||||
it is notable that now the Y444 format has been mapped to be
|
||||
usable by the gstreamer src element. lc-compliance has seen
|
||||
some progress which I hope will bring this to being a more
|
||||
central part of the test infrastructure.
|
||||
* For a full list of changes, please see:
|
||||
https://git.libcamera.org/libcamera/libcamera.git/commit/?id=058f589ae36170935e537910f2c303b1c3ea03b3
|
||||
- Drop patch which is already included by upstream:
|
||||
* libcamera-fix-for-gcc15.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 20 12:19:00 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Make build recipe POSIX sh compatible
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 20 10:48:50 UTC 2025 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||
|
||||
- Add trivial patch to fix build with gcc15:
|
||||
* libcamera-fix-for-gcc15.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 23 21:51:19 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libcamera
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,50 +16,51 @@
|
||||
#
|
||||
|
||||
|
||||
%define lname libcamera0_4
|
||||
%define lname_base libcamera-base0_4
|
||||
%define lname libcamera0_6
|
||||
%define lname_base libcamera-base0_6
|
||||
%if "@BUILD_FLAVOR@" != ""
|
||||
%define extname -@BUILD_FLAVOR@
|
||||
%else
|
||||
%define extname %nil
|
||||
%endif
|
||||
|
||||
# Signing breaks reproducible builds, see
|
||||
# https://gitlab.freedesktop.org/camera/libcamera/-/issues/233
|
||||
%bcond_with signed_ipa
|
||||
|
||||
Name: libcamera%extname
|
||||
Version: 0.4.0
|
||||
Version: 0.6.0
|
||||
Release: 0
|
||||
Summary: A complex camera support library in C++
|
||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later AND CC-BY-SA-4.0
|
||||
License: CC-BY-SA-4.0 AND GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||
Group: Development/Libraries/C and C++
|
||||
URL: https://libcamera.org/
|
||||
#Git-Web: https://git.libcamera.org/libcamera/libcamera.git/
|
||||
|
||||
Source: libcamera-%version.tar.xz
|
||||
Source1: baselibs.conf
|
||||
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: c++_compiler
|
||||
%if 0%{?suse_version} <= 1500
|
||||
BuildRequires: gcc11
|
||||
BuildRequires: gcc11-c++
|
||||
%endif
|
||||
BuildRequires: libQt5Core-devel
|
||||
BuildRequires: libQt5Gui-devel
|
||||
BuildRequires: libQt5Widgets-devel
|
||||
BuildRequires: meson >= 0.56
|
||||
BuildRequires: meson >= 1.0.1
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python3-Jinja2
|
||||
BuildRequires: python3-PyYAML
|
||||
BuildRequires: python3-ply
|
||||
BuildRequires: xz
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(gnutls)
|
||||
BuildRequires: pkgconfig(gstreamer-video-1.0)
|
||||
BuildRequires: pkgconfig(libevent_pthreads)
|
||||
BuildRequires: pkgconfig(libtiff-4)
|
||||
BuildRequires: pkgconfig(libudev)
|
||||
BuildRequires: pkgconfig(openssl)
|
||||
BuildRequires: pkgconfig(python3)
|
||||
BuildRequires: pkgconfig(pybind11)
|
||||
BuildRequires: pkgconfig(python3)
|
||||
BuildRequires: pkgconfig(yaml-0.1)
|
||||
%if %{with signed_ipa}
|
||||
# OpenSSL used for signing, gnutls for runtime verification
|
||||
BuildRequires: openssl
|
||||
BuildRequires: pkgconfig(gnutls)
|
||||
%endif
|
||||
%ifarch aarch64 %arm
|
||||
BuildRequires: pkgconfig(libpisp)
|
||||
%endif
|
||||
%if "@BUILD_FLAVOR@" != ""
|
||||
BuildRequires: pkgconfig(Qt6Core)
|
||||
BuildRequires: pkgconfig(Qt6Gui)
|
||||
@@ -112,24 +113,43 @@ libcamera is an experimental camera user-space API.
|
||||
|
||||
This subpackage contains the header files.
|
||||
|
||||
%package tools
|
||||
Summary: Command-line utilities from libcamera
|
||||
Group: Development/Tools/Other
|
||||
%package ipa
|
||||
Summary: Plugins for hardware specific image processing blocks
|
||||
Group: System/Libraries
|
||||
# Previously named libcamera-tools, although it provides none
|
||||
Provides: libcamera-tools = %version-%release
|
||||
Obsoletes: libcamera-tools < %version-%release
|
||||
|
||||
%description tools
|
||||
%description ipa
|
||||
libcamera is an experimental camera user-space API.
|
||||
|
||||
This package provides plugins for interfacing with various ISP
|
||||
(Image Signal Processor) hardware blocks, as well as
|
||||
calibration data for some camera sensors.
|
||||
|
||||
%package -n libcamera-cam
|
||||
Summary: Command-line interfaces for libcamera
|
||||
Group: Development/Tools/Other
|
||||
# Heavy runtime deps (SDL, Qt6)
|
||||
# Heavy runtime deps (SDL)
|
||||
|
||||
%description -n libcamera-cam
|
||||
libcamera is an experimental camera user-space API.
|
||||
|
||||
"cam" is a command-line utility to interact with cameras. The initial state is
|
||||
limited and only supports listing cameras in the system and selecting a camera
|
||||
to interact with.
|
||||
"cam" is a command-line utility to interact with cameras. It allows
|
||||
to query and set image stream properties, and to capture the stream
|
||||
to a file or show a live view.
|
||||
|
||||
%package -n libcamera-qcam
|
||||
Summary: Qt interfaces for libcamera
|
||||
Group: Development/Tools/Other
|
||||
# Heavy runtime deps (Qt6)
|
||||
|
||||
%description -n libcamera-qcam
|
||||
libcamera is an experimental camera user-space API.
|
||||
|
||||
"qcam" is a Qt interface to interact with cameras. It allows to
|
||||
query and set image stream properties, and to capture the stream
|
||||
to a file or show a live view.
|
||||
|
||||
%package -n gstreamer-plugins-libcamera
|
||||
Summary: GStreamer plugins from libcamera
|
||||
@@ -150,31 +170,27 @@ Python bindings for libcamera.
|
||||
%autosetup -p1 -n libcamera-%version
|
||||
|
||||
%build
|
||||
%if 0%{?suse_version} <= 1500
|
||||
export CC=gcc-11
|
||||
export CXX=g++-11
|
||||
%endif
|
||||
%meson \
|
||||
-Ddocumentation=disabled \
|
||||
-Ddocumentation=disabled \
|
||||
%if "@BUILD_FLAVOR@" != ""
|
||||
-Dqcam=enabled \
|
||||
-Dqcam=enabled \
|
||||
%else
|
||||
-Dqcam=disabled \
|
||||
-Dqcam=disabled \
|
||||
%endif
|
||||
-Dv4l2=false -Dtracing=disabled \
|
||||
-Dpipelines=ipu3,rkisp1,simple,uvcvideo,vimc \
|
||||
-Dlc-compliance=disabled
|
||||
-Dv4l2=false -Dtracing=disabled \
|
||||
-Dpipelines=auto,vimc \
|
||||
-Dlc-compliance=disabled
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
pushd "%buildroot"
|
||||
cd "%buildroot"
|
||||
%if "@BUILD_FLAVOR@" != ""
|
||||
find . ! -type d ! -path ./usr/bin/cam ! -path ./usr/bin/qcam -print -delete
|
||||
%else
|
||||
# Delete limited variant without SDL
|
||||
rm -v usr/bin/cam
|
||||
%endif
|
||||
popd
|
||||
|
||||
%ldconfig_scriptlets -n %lname
|
||||
%ldconfig_scriptlets -n %lname_base
|
||||
@@ -193,7 +209,7 @@ popd
|
||||
%_libdir/libcamera.so
|
||||
%_libdir/pkgconfig/*.pc
|
||||
|
||||
%files tools
|
||||
%files ipa
|
||||
%_libexecdir/libcamera/
|
||||
%_libdir/libcamera/
|
||||
%_datadir/libcamera/
|
||||
@@ -208,6 +224,8 @@ popd
|
||||
|
||||
%files -n libcamera-cam
|
||||
%_bindir/cam
|
||||
|
||||
%files -n libcamera-qcam
|
||||
%_bindir/qcam
|
||||
|
||||
%endif
|
||||
|
||||
Reference in New Issue
Block a user