1
0
forked from jengelh/libcamera

4 Commits

Author SHA256 Message Date
Bernhard M. Wiedemann
a1e8288163 Add reproducible.patch to skip module signing (boo#1217690) 2025-07-09 13:36:20 +02:00
daa9768622 libcamera 0.5.1 2025-06-06 00:00:58 +02:00
2b9ac9eaca Trim excess EOL whitespace 2025-05-29 19:52:00 +02:00
95c580b3e3 Remove Qt5 BuildRequires which aren't really needed nor used 2025-05-29 18:26:50 +02:00
6 changed files with 46 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
<service name="tar_scm" mode="manual"> <service name="tar_scm" mode="manual">
<param name="scm">git</param> <param name="scm">git</param>
<param name="url">https://git.libcamera.org/libcamera/libcamera.git</param> <param name="url">https://git.libcamera.org/libcamera/libcamera.git</param>
<param name="revision">refs/tags/v0.5.0</param> <param name="revision">refs/tags/v0.5.1</param>
<param name="versionformat">@PARENT_TAG@</param> <param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v([0-9\.]*)</param> <param name="versionrewrite-pattern">v([0-9\.]*)</param>
</service> </service>

BIN
libcamera-0.5.0.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
libcamera-0.5.1.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
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> Tue Apr 8 13:52:10 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>

View File

@@ -24,7 +24,7 @@
%define extname %nil %define extname %nil
%endif %endif
Name: libcamera%extname Name: libcamera%extname
Version: 0.5.0 Version: 0.5.1
Release: 0 Release: 0
Summary: A complex camera support library in C++ Summary: A complex camera support library in C++
License: CC-BY-SA-4.0 AND GPL-2.0-or-later AND LGPL-2.1-or-later License: CC-BY-SA-4.0 AND GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -33,15 +33,13 @@ URL: https://libcamera.org/
#Git-Web: https://git.libcamera.org/libcamera/libcamera.git/ #Git-Web: https://git.libcamera.org/libcamera/libcamera.git/
Source: libcamera-%version.tar.xz Source: libcamera-%version.tar.xz
Source1: baselibs.conf Source1: baselibs.conf
Patch0: reproducible.patch
BuildRequires: boost-devel BuildRequires: boost-devel
BuildRequires: c++_compiler BuildRequires: c++_compiler
%if 0%{?suse_version} <= 1500 %if 0%{?suse_version} <= 1500
BuildRequires: gcc11 BuildRequires: gcc11
BuildRequires: gcc11-c++ BuildRequires: gcc11-c++
%endif %endif
BuildRequires: libQt5Core-devel
BuildRequires: libQt5Gui-devel
BuildRequires: libQt5Widgets-devel
BuildRequires: meson >= 0.56 BuildRequires: meson >= 0.56
BuildRequires: pkg-config BuildRequires: pkg-config
BuildRequires: python3-Jinja2 BuildRequires: python3-Jinja2

21
reproducible.patch Normal file
View File

@@ -0,0 +1,21 @@
Date: 2024-09-21
Author: Bernhard M. Wiedemann <bwiedemann suse de>
Skip module signing for https://bugzilla.opensuse.org/show_bug.cgi?id=1217690
reproducible builds, until we can get a better upstream solution
such as
https://lists.libcamera.org/pipermail/libcamera-devel/2024-January/040244.html
diff --git a/src/meson.build b/src/meson.build
index 8eb8f05..41e556d 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -16,7 +16,7 @@ summary({
# Module Signing
openssl = find_program('openssl', required : false)
-if openssl.found()
+if false
ipa_priv_key = custom_target('ipa-priv-key',
output : ['ipa-priv-key.pem'],
command : [gen_ipa_priv_key, '@OUTPUT@'])