- prelink-gcc14.patch: fix build with gcc14 - added auto tools for fixing build OBS-URL: https://build.opensuse.org/request/show/1191045 OBS-URL: https://build.opensuse.org/package/show/devel:tools/execstack?expand=0&rev=10
102 lines
3.1 KiB
RPMSpec
102 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package execstack
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# 2014 Wolfgang Rosenauer
|
|
#
|
|
# 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://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: execstack
|
|
Version: 0.5.0
|
|
Release: 0%{?dist}
|
|
Summary: Utility to set/clear/query executable stack bit
|
|
|
|
%global commit 4c79120bcdbde0616f592458ccde7035e92ca3d8
|
|
%global shortcommit 4c79120
|
|
#global shortcommit %%(c=%%{commit}; echo ${c:0:7})
|
|
# do not use dynamic shortcommit, Source0 with git format and autosetup
|
|
# because "osc service localrun source_validator" would report error
|
|
|
|
License: GPL-2.0-or-later
|
|
URL: https://github.com/keszybz/prelink/archive
|
|
Source0: prelink-%{shortcommit}.tar.gz
|
|
#ource0: https://github.com/keszybz/prelink/archive/%%{commit}.tar.gz#/prelink-%%{shortcommit}.tar.gz
|
|
|
|
Patch0: Add-PL_ARCH-for-AArch64.patch
|
|
Patch1: prelink_update_fsf_address.patch
|
|
# bypass where gcc linker do not add the GNU_STACK default header in elf file
|
|
Patch2: prelink_add_no_execstack_for_ppc64.patch
|
|
Patch3: riscv64-support-for-execstack.patch
|
|
Patch4: prelink-gcc14.patch
|
|
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: git
|
|
BuildRequires: libelf-devel
|
|
BuildRequires: libselinux-devel
|
|
BuildRequires: libtool
|
|
BuildRequires: selinux-tools
|
|
Requires: coreutils
|
|
Requires: findutils
|
|
Requires: gawk
|
|
Requires: glibc >= 2.2.4-18
|
|
Requires: grep
|
|
Requires: util-linux
|
|
Conflicts: prelink <= %{version}
|
|
|
|
%description
|
|
This package is built from prelink sources but contains just the
|
|
execstack binary. It can be used to manipulate ELF binaries to run
|
|
with or without executable stack.
|
|
|
|
%prep
|
|
#autosetup -n prelink-%%{commit} -p1 -Sgit
|
|
%setup -q -n prelink-%{commit}
|
|
%patch -P 0 -p1
|
|
%patch -P 1 -p1
|
|
%ifarch ppc64
|
|
%patch -P 2 -p1
|
|
%endif
|
|
%patch -P 3 -p1
|
|
%patch -P 4 -p1
|
|
|
|
%build
|
|
sed -i -e '/^prelink_LDADD/s/$/ -lpthread/' src/Makefile.{am,in}
|
|
autoreconf -i -f
|
|
%configure || cat config.log
|
|
make %{?_smp_mflags} -C gelf
|
|
make %{?_smp_mflags} -C gelfx
|
|
make %{?_smp_mflags} -C gelfx32
|
|
make %{?_smp_mflags} -C src execstack
|
|
|
|
%check
|
|
cp src/execstack test
|
|
src/execstack -q test | grep '^-'
|
|
src/execstack -s test
|
|
src/execstack -q test | grep '^X'
|
|
src/execstack -c test
|
|
src/execstack -q test | grep '^-'
|
|
|
|
%install
|
|
install -D src/execstack %{buildroot}%{_bindir}/execstack
|
|
install -Dm0644 doc/execstack.8 %{buildroot}%{_mandir}/man8/execstack.8
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/execstack
|
|
%{_mandir}/man8/execstack.8.*
|
|
%doc ChangeLog NEWS README TODO THANKS COPYING
|
|
|
|
%changelog
|