Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
926322f611 | ||
|
|
90b2bfbfb0 | ||
|
|
024d9559d4 |
3 changed files with 79 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/yggdrasil-0.3.1.tar.xz
|
||||
/yggdrasil-0.3.2.tar.xz
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
SHA512 (yggdrasil-0.3.2.tar.xz) = adb94e48091a4df00e2de8bddd02cd0964cf1753be85bbdc3b16ed0aef6fb530718393f4868ed2323df70163e455a5bc34e1f33432c72026ba8d5588573cb2e3
|
||||
76
yggdrasil.spec
Normal file
76
yggdrasil.spec
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
%bcond_without check
|
||||
|
||||
# https://github.com/redhatinsights/yggdrasil
|
||||
%global goipath github.com/redhatinsights/yggdrasil
|
||||
Version: 0.3.2
|
||||
%global tag %{version}
|
||||
|
||||
%gometa -f
|
||||
|
||||
%global common_description %{expand:
|
||||
yggdrasil is a system daemon that subscribes to topics on an MQTT broker and
|
||||
routes any data received on the topics to an appropriate child "worker" process,
|
||||
exchanging data with its worker processes through a D-Bus message broker.}
|
||||
|
||||
%global golicenses LICENSE
|
||||
%global godocs CONTRIBUTING.md README.md
|
||||
|
||||
Name: yggdrasil
|
||||
Release: 2%{?dist}
|
||||
Summary: Remote data transmission and processing client
|
||||
|
||||
License: GPL-3.0-only
|
||||
URL: %{gourl}
|
||||
Source: https://github.com/RedHatInsights/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig(dbus-1)
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
BuildRequires: pkgconfig(bash-completion)
|
||||
|
||||
%description %{common_description}
|
||||
|
||||
%gopkg
|
||||
|
||||
%prep
|
||||
%goprep -k
|
||||
%autopatch -p1
|
||||
|
||||
%build
|
||||
%undefine _auto_set_build_flags
|
||||
export %gomodulesmode
|
||||
%{?gobuilddir:export GOPATH="%{gobuilddir}:${GOPATH:+${GOPATH}:}%{?gopath}"}
|
||||
%meson -Dvendor=true "-Dgobuildflags=[%(echo %{expand:%gocompilerflags} | sed -e s/"^"/"'"/ -e s/" "/"', '"/g -e s/"$"/"'"/), '-tags', '"rpm_crashtraceback\ ${BUILDTAGS:-}"', '-a', '-v', '-x']" -Dgoldflags='%{?currentgoldflags} -B 0x%(head -c20 /dev/urandom|od -An -tx1|tr -d " \n") -compressdwarf=false -linkmode=external -extldflags "%{build_ldflags} %{?__golang_extldflags}"'
|
||||
%meson_build
|
||||
|
||||
%global gosupfiles ./ipc/com.redhat.Yggdrasil1.Dispatcher1.xml ./ipc/com.redhat.Yggdrasil1.Worker1.xml
|
||||
%install
|
||||
%meson_install
|
||||
%gopkginstall
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
%gocheck
|
||||
%endif
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc CONTRIBUTING.md README.md
|
||||
%{_bindir}/*
|
||||
%config(noreplace) %{_sysconfdir}/%{name}
|
||||
%{_unitdir}/*
|
||||
%{_userunitdir}/*
|
||||
%{_datadir}/bash-completion/completions/*
|
||||
%{_datadir}/dbus-1/{interfaces,system-services,system.d}/*
|
||||
%{_datadir}/doc/%{name}/*
|
||||
%{_mandir}/man1/*
|
||||
|
||||
%gopkgfiles
|
||||
|
||||
%changelog
|
||||
* Mon Jul 24 2023 Link Dupont <linkdupont@fedoraproject.org> - 0.3.2-1
|
||||
- Update to version 0.3.2
|
||||
|
||||
* Wed Mar 8 2023 Link Dupont <linkdupont@fedoraproject.org> - 0.3.1-2
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue