contrib/fedora: Use pre-processing macros in spec file
...they seem to be supported by COPR now and make things simpler. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
bb8a7b8a2a
commit
fb59cfc909
3 changed files with 38 additions and 6 deletions
|
@ -12,12 +12,14 @@
|
||||||
# Author: Stefano Brivio <sbrivio@redhat.com>
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
||||||
|
|
||||||
Name: passt
|
Name: passt
|
||||||
Version: 0.git.202206071425.67103ea
|
Version: {{{ git_version }}}
|
||||||
Release: 0
|
Release: 0%{?dist}
|
||||||
Summary: User-mode networking daemons for virtual machines and namespaces
|
Summary: User-mode networking daemons for virtual machines and namespaces
|
||||||
License: AGPLv3+ and BSD
|
License: AGPLv3+ and BSD
|
||||||
|
Group: System Environment/Daemons
|
||||||
URL: https://passt.top/
|
URL: https://passt.top/
|
||||||
Source: https://passt.top/passt/snapshot/passt-67103ea556da00106da900f20aac286511171ea2.tar.xz
|
VCS: git://passt.top/passt
|
||||||
|
Source: https://passt.top/passt/snapshot/passt-HEAD.tar.xz
|
||||||
|
|
||||||
BuildRequires: gcc, make, checkpolicy, selinux-policy-devel
|
BuildRequires: gcc, make, checkpolicy, selinux-policy-devel
|
||||||
|
|
||||||
|
@ -42,7 +44,7 @@ Requires(preun): policycoreutils, %{name}
|
||||||
This package adds SELinux enforcement to passt(1) and pasta(1).
|
This package adds SELinux enforcement to passt(1) and pasta(1).
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -n passt-HEAD
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
|
@ -91,5 +93,4 @@ semodule -r pasta 2>/dev/null || :
|
||||||
%{_datadir}/selinux/packages/%{name}/pasta.pp
|
%{_datadir}/selinux/packages/%{name}/pasta.pp
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jun 07 2022 Stefano Brivio <sbrivio@redhat.com> 0.git.202206071425.67103ea
|
{{{ git_dir_changelog }}}
|
||||||
- Pro forma: example
|
|
||||||
|
|
15
contrib/fedora/rpkg.conf
Normal file
15
contrib/fedora/rpkg.conf
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
#
|
||||||
|
# PASST - Plug A Simple Socket Transport
|
||||||
|
# for qemu/UNIX domain socket mode
|
||||||
|
#
|
||||||
|
# PASTA - Pack A Subtle Tap Abstraction
|
||||||
|
# for network namespace/tap device mode
|
||||||
|
#
|
||||||
|
# contrib/fedora/rpkg.conf - Configuration file for rpkg (for COPR builds)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 Red Hat GmbH
|
||||||
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
||||||
|
|
||||||
|
[rpkg]
|
||||||
|
user_macros = "${git_props:root}/contrib/fedora/rpkg.macros"
|
16
contrib/fedora/rpkg.macros
Normal file
16
contrib/fedora/rpkg.macros
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
#
|
||||||
|
# PASST - Plug A Simple Socket Transport
|
||||||
|
# for qemu/UNIX domain socket mode
|
||||||
|
#
|
||||||
|
# PASTA - Pack A Subtle Tap Abstraction
|
||||||
|
# for network namespace/tap device mode
|
||||||
|
#
|
||||||
|
# contrib/fedora/rpkg.macros - rpkg macros (for COPR builds)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 Red Hat GmbH
|
||||||
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
||||||
|
|
||||||
|
function git_version {
|
||||||
|
printf "0.git.%s.%s" "$(date -u -I | tr - _)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
Loading…
Reference in a new issue