summaryrefslogtreecommitdiff
path: root/tests/data/SPECS/hello2-suid.spec
blob: 32bdce1f90627efa4ea20563e0362672f9c07648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Summary: hello2 -- double hello, world rpm
Name: hello2
Version: 1.0
Release: 1
Group: Utilities
License: GPL
Distribution: RPM test suite.
Vendor: Red Hat Software
Packager: Red Hat Software <bugs@redhat.com>
URL: http://www.redhat.com
Source0: hello-1.0.tar.gz
Patch0: hello-1.0-modernize.patch
Excludearch: lsi
Excludeos: cpm
Provides: hi
Conflicts: goodbye
Obsoletes: howdy
Prefix: /usr

%description
Simple rpm demonstration.

%prep
%setup -q -n hello-1.0
%patch0 -p1 -b .modernize

%build
make CFLAGS="-g -O1"
mv hello hello2
make CFLAGS="-g -O2 -D_FORTIFY_SOURCE=2"

%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/local/bin
# Note explicit install hello as suid
install -m 4755 hello $RPM_BUILD_ROOT/usr/local/bin
install -m 755 hello2 $RPM_BUILD_ROOT/usr/local/bin

%clean
rm -rf $RPM_BUILD_ROOT

%pre

%post

%preun

%postun

%files
# Note we don't set any attrs. We expect the suid flag to have been picked up.
/usr/local/bin/hello
/usr/local/bin/hello2
%defattr(-,root,root)
%doc	FAQ
#%readme README
#%license COPYING

%changelog
* Tue Jun 14 2016 Mark Wielaard <mjw@redhat.com>
- Make hello (implicit) suid

* Wed May 18 2016 Mark Wielaard <mjw@redhat.com>
- Add hello2 for dwz testing support.

* Tue Oct 20 1998 Jeff Johnson <jbj@redhat.com>
- create.