Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[f41] fix: update OpenTabletDriver to .NET 8 (#1816) #1819

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions anda/system/opentabletdriver/opentabletdriver.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,23 @@
# We aren't using Mono but RPM expected Mono
%global __requires_exclude_from ^/usr/lib/opentabletdriver/.*$
%global __os_install_post %{nil}
%global dotnet_runtime_version 8.0

Name: opentabletdriver
Version: 0.6.4.0
Release: 1%{?dist}
Summary: A cross-platform open source tablet driver
License: LGPLv3
URL: https://github.com/OpenTabletDriver/OpenTabletDriver
Packager: Cappy Ishihara <[email protected]>
%define otddir OpenTabletDriver-%{version}

BuildRequires: dotnet-sdk-6.0 git jq systemd-rpm-macros
BuildRequires: dotnet-sdk-%{dotnet_runtime_version}
BuildRequires: git jq systemd-rpm-macros

Requires: dotnet-runtime-6.0
Requires: dotnet-runtime-%{dotnet_runtime_version}
Requires: libevdev.so.2()(64bit)
Requires: gtk3
Requires: gtk3
Requires: udev
Suggests: libX11
Suggests: libXrandr
Expand All @@ -28,12 +30,16 @@ Suggests: libXrandr
OpenTabletDriver is an open source, cross platform, user mode tablet driver. The goal of OpenTabletDriver is to be cross platform as possible with the highest compatibility in an easily configurable graphical user interface.

%prep
mkdir -p %{otddir}
cd %{otddir}
git clone -b v%version %url .

%build
cd %{otddir}
./eng/linux/package.sh --output bin

%install
cd %{otddir}
export DONT_STRIP=1
PREFIX="%{_prefix}" ./eng/linux/package.sh --package Generic --build false
mkdir -p "%{buildroot}"
Expand Down
4 changes: 3 additions & 1 deletion anda/system/opentabletdriver/update.rhai
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
rpm.version(gh("OpenTabletDriver/OpenTabletDriver"));
# todo: Check latest .NET runtime version from Fedora repos and set macros accordingly

rpm.version(gh("OpenTabletDriver/OpenTabletDriver"));
Loading