# # spec file for package rokon # # Copyright (c) 2024 Brycen Granville # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://github.com/BrycensRanch/Rokon/issues as I am the developer # License Checking is disabled until I can troubleshoot this: # + go_vendor_license --config go-vendor-tools.toml report expression --verify 'AGPL-3.0-only AND BSD-3-Clause AND CC-BY-SA-4.0 AND ISC AND MIT AND MPL-2.0' # Using detector: askalono # The following modules are missing license files: # - vendor/github.com/brycensranch/go-aptabase/pkg # - vendor/github.com/diamondburned/gotk4/pkg %bcond check 0 # Does not seem to work on OpenSUSE Tumbleweed. Still builds with gcc?? %global toolchain clang # https://github.com/BrycensRanch/Rokon %global goipath github.com/brycensranch/rokon %global forgeurl https://github.com/BrycensRanch/Rokon %global version 1.0.0 %if 0%{?fedora} %gometa -L %endif Name: rokon # Note for Rokon Contributors: Do not touch the version or release. GitHub Actions handles these and bump as necessary. # On OpenSUSE Build Service, the Release is overwritten which is out of my control. Version: %{version} Release: 22%{?dist} Summary: Control your Roku device with your desktop! License: AGPL-3.0-only AND BSD-3-Clause AND CC-BY-SA-4.0 AND ISC AND MIT AND MPL-2.0 URL: https://github.com/BrycensRanch/Rokon Source: https://nightly.link/BrycensRanch/Rokon/workflows/publish/master/rokon-vendored-source.zip BuildRequires: go %if 0%{?fedora} BuildRequires: go-vendor-tools %endif BuildRequires: clang BuildRequires: unzip BuildRequires: gtk4-devel BuildRequires: gobject-introspection-devel Requires: gtk4 %description Rokon is a GTK4 application that control your Roku. Whether that be with your keyboard, mouse, or controller. %prep ls %setup -c ls %generate_buildrequires %if 0%{?fedora} %go_vendor_license_buildrequires -c go-vendor-tools.toml %endif %build # Setup the correct compilation flags for the environment # Not all distributions do this automatically %if 0%{?fedora} # Do nothing, since Fedora 33 the build flags are already set %else %set_build_flags %endif # Since some RPM distributions think they're better than to lower themselves to clang... # Cough cough openSUSE not respecting the toolchain variable go env -w CC=clang go env -w CXX=clang++ # Rokon's Makefile still respects any CFLAGS LDFLAGS CXXFLAGS passed to it. It is compliant. # https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/PK5PEKWE65UC5XQ6LTLSMATVPIISQKQS/ # Do not compress the DWARF debug information, it causes the build to fail! # As of Go 1.11, debug information is compressed by default. We're disabling that. # Fixes RPM build errors: # Empty %files file /builddir/build/BUILD/Rokon-master/debugsourcefiles.list # Previously, this failed on Mageia only. However, after moving to Clang for faster compilation across the board, it has failed on # Fedora Linux as well. Since Fedora Linux is the main target and my development machine, I have decided to disable this due to lack of being able to test it. # Although this is disappointing, this is in line to what the Go macros already do on Fedora Linux. %define _debugsource_template %{nil} %define rpmRelease %{?dist} %make_build \ PACKAGED=true \ BUILDTAGS="rpm_crashtraceback" \ PACKAGEFORMAT=rpm \ EXTRALDFLAGS="-compressdwarf=false -X main.rpmRelease=%{rpmRelease}" \ EXTRAGOFLAGS="-x -mod=vendor -buildmode=pie -trimpath" %install %if 0%{?fedora} %go_vendor_license_install -c go-vendor-tools.toml %endif # Why was this necessary, you ask?!?! Because I kept getting # File not found: /builddir/build/BUILDROOT/rokon-1.0.0-16.suse.tw.x86_64/usr/share/doc/packages/rokon %if 0%{?suse_version} %make_install PREFIX=%{_prefix} \ NODOCUMENTATION=1 %else %make_install PREFIX=%{_prefix} \ DOCDIR=%{_docdir} %endif %check ./rokon --version %if 0%{?fedora} %if %{with check} %go_vendor_license_check -c go-vendor-tools.toml %endif %endif %if 0%{?fedora} %files -f %{go_vendor_license_filelist} %else %files %endif %{_bindir}/%{name} %{_datadir}/applications/io.github.brycensranch.Rokon.desktop %{_datadir}/metainfo/io.github.brycensranch.Rokon.metainfo.xml %{_datadir}/dbus-1/services/io.github.brycensranch.Rokon.service %{_datadir}/icons/hicolor/48x48/apps/io.github.brycensranch.Rokon.png %{_datadir}/icons/hicolor/128x128/apps/io.github.brycensranch.Rokon.png %{_datadir}/icons/hicolor/256x256/apps/io.github.brycensranch.Rokon.png %{_datadir}/icons/hicolor/scalable/apps/io.github.brycensranch.Rokon.svg %if 0%{?fedora} %else %license vendor/modules.txt LICENSE.md %endif # https://en.opensuse.org/openSUSE:Packaging_Conventions_RPM_Macros %if 0%{?suse_version} %else %doc *.md %endif %if 0%{?fedora} %changelog %autochangelog %else %changelog * Thu Oct 31 2024 Brycen G 1.0.0-20 - Build with clang - Include GNOME service file for configuring notifications for Rokon via settings * Tue Sep 3 2024 Brycen G 1.0.0-6 - Removed sysinfo package decreasing binary size and portability and startup time - Added metainfo file for appstream - Added icons to package - Added desktop entry - Added license file to package - Added documentation to package * Mon Sep 2 2024 Brycen G 1.0.0-3 - Initial package %endif