]> git.pld-linux.org Git - SPECS.git/blob - ksplice.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / ksplice.spec
1 Summary:        Patching a Linux kernel without reboot
2 Name:           ksplice
3 Version:        0.9.9
4 Release:        1
5 License:        GPL v2
6 Group:          Base/Kernel
7 URL:            http://www.ksplice.com/
8 Source0:        http://www.ksplice.com/dist/%{name}-%{version}-src.tar.gz
9 # Source0-md5:  ceb4301c51d9b075731050b57d9ecd80
10 BuildRequires:  autoconf
11 BuildRequires:  binutils-devel
12 BuildRequires:  perl-base
13 BuildRequires:  zlib-devel
14 Requires:       bash >= 2.03
15 Requires:       binutils >= 2.12
16 Requires:       bzip2
17 Requires:       diffutils
18 Requires:       findutils
19 Requires:       gawk
20 Requires:       gcc >= 6:3.4.2
21 Requires:       gzip
22 Requires:       m4
23 Requires:       make >= 3.78
24 Requires:       module-init-tools
25 Requires:       patch >= 2.5.4
26 Requires:       perl
27 Requires:       sh-utils
28 Requires:       tar
29 Requires:       util-linux
30 ExclusiveArch:  %{ix86} %{x8664}
31 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
32
33 %description
34 Ksplice allows system administrators to apply security patches to the
35 Linux kernel without having to reboot. Ksplice takes as input a source
36 code change in unified diff format and the kernel source code to be
37 patched, and it applies the patch to the corresponding running kernel.
38 The running kernel does not need to have been prepared in advance in
39 any way.
40
41 %prep
42 %setup -q
43
44 %build
45 %{__autoconf}
46 %configure
47 %{__make}
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc README
60 %attr(755,root,root) %{_bindir}/ksplice-*
61 %attr(755,root,root) %{_sbindir}/ksplice-*
62 %{_libdir}/ksplice-*
63 %{_datadir}/ksplice
64 %{_mandir}/man8/ksplice-*
This page took 0.23529 seconds and 3 git commands to generate.