Compare commits
12 Commits
slfo-1.2
...
port-to-qt
Author | SHA256 | Date | |
---|---|---|---|
95c580b3e3 | |||
5267758c51 | |||
20b773b2bc | |||
7dabd86819 | |||
314d8074f9 | |||
e022cf9cf3 | |||
a947ca7173 | |||
56d5d94fe2 | |||
0f3c64f78d | |||
25c26bf338 | |||
8fd5818ce4 | |||
74ec3fe50d |
2
_service
2
_service
@@ -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.1</param>
|
<param name="revision">refs/tags/v0.5.0</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)
Normal file
BIN
libcamera-0.5.0.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
libcamera-0.5.1.tar.xz
(Stored with Git LFS)
BIN
libcamera-0.5.1.tar.xz
(Stored with Git LFS)
Binary file not shown.
@@ -1,21 +1,7 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
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>
|
Thu May 29 16:21:24 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
- Remove Qt5 BuildRequires which aren't really needed nor used.
|
- 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>
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
%define extname %nil
|
%define extname %nil
|
||||||
%endif
|
%endif
|
||||||
Name: libcamera%extname
|
Name: libcamera%extname
|
||||||
Version: 0.5.1
|
Version: 0.5.0
|
||||||
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,7 +33,6 @@ 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
|
||||||
|
@@ -1,21 +0,0 @@
|
|||||||
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@'])
|
|
Reference in New Issue
Block a user