-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: v4l2-relayd and ipu6-camera-bins builds (#2953)
* Delete: v4l2-relayd/update.rhai This project hasn't had an update in ages and GitLab makes fetching commits a pain. I can figure something else out but it is not urgent. Signed-off-by: Gil <[email protected]> * Fix: Put the version back Signed-off-by: Gil <[email protected]> * Fix (v4l2-relayd): Drop upstreamed patch * Fix (ipu6-camera-bins): Completly redo spec * Fix: Try this for update.rhai? Signed-off-by: Gil <[email protected]> * Update v4l2-relayd.spec Signed-off-by: Gil <[email protected]> --------- Signed-off-by: Gil <[email protected]>
- Loading branch information
Gil
authored
Jan 15, 2025
1 parent
9ef5fe6
commit 269ddeb
Showing
5 changed files
with
25 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
project pkg { | ||
arches = ["x86_64"] | ||
rpm { | ||
spec = "ipu6-camera-bins.spec" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
rpm.version(gitlab("24306684")); | ||
rpm.global("commit", gitlab_commit("gitlab.com", "24306684", "main")); | ||
if rpm.changed() { | ||
rpm.global("commit_date", date()); | ||
rpm.release(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
%global commit 2e4d5c9ba53bfe8cfe16ea91932c8e5ecb090a87 | ||
%global commitdate 20220126 | ||
%global commit 35a06d89747ff31fbaabf744b7dae585bfa86723 | ||
%global commit_date 20220126 | ||
%global shortcommit %(c=%{commit}; echo ${c:0:7}) | ||
|
||
Name: v4l2-relayd | ||
Summary: Utils for relaying the video stream between two video devices | ||
Version: | ||
Version: %{commit_date}.%{shortcommit} | ||
Release: 1%?dist | ||
License: GPL-2.0-only | ||
Source0: https://gitlab.com/vicamo/v4l2-relayd//-/archive/%{commit}/%{name}-%{shortcommit}.tar.gz | ||
Source1: v4l2-relayd.preset | ||
### RPM Fusion | [v4l2-relayd] Set output stream to I420 | ||
## https://lists.rpmfusion.org/archives/list/[email protected]/thread/VUMAJABDYISF3UVOSESSFYQBAMQK7VKY/ | ||
Patch0: 0000-set-new-offset.patch | ||
BuildRequires: systemd-rpm-macros | ||
BuildRequires: gcc | ||
BuildRequires: g++ | ||
|