Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57b868b94f | ||
|
|
afd51f19c3 | ||
|
|
73cf3a40e0 | ||
|
|
7e9614cad7 | ||
|
|
da4698daab | ||
|
|
b6f73d090e | ||
|
|
85a1acecfd | ||
|
|
a9a54fe7c4 |
6 changed files with 1813 additions and 36 deletions
|
|
@ -1 +0,0 @@
|
||||||
sectool-0.9.1.tar.bz2
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
sectool-0.9.2.tar.bz2
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
||||||
# Makefile for source rpm: sectool
|
|
||||||
# $Id$
|
|
||||||
NAME := sectool
|
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
|
||||||
|
|
||||||
define find-makefile-common
|
|
||||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
|
||||||
|
|
||||||
ifeq ($(MAKEFILE_COMMON),)
|
|
||||||
# attept a checkout
|
|
||||||
define checkout-makefile-common
|
|
||||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(MAKEFILE_COMMON)
|
|
||||||
1778
sectool-0.9.2-fixing.patch
Normal file
1778
sectool-0.9.2-fixing.patch
Normal file
File diff suppressed because it is too large
Load diff
46
sectool.spec
46
sectool.spec
|
|
@ -1,20 +1,22 @@
|
||||||
Summary: A security audit system and intrusion detection system
|
Summary: A security audit system and intrusion detection system
|
||||||
Name: sectool
|
Name: sectool
|
||||||
Version: 0.9.1
|
Version: 0.9.2
|
||||||
Release: 4
|
Release: 4%{?dist}
|
||||||
URL: https://hosted.fedoraproject.org/sectool/wiki/WikiStart
|
URL: https://hosted.fedoraproject.org/sectool/wiki/WikiStart
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
Source1: sectool.log
|
Source1: sectool.log
|
||||||
Patch1: sectool-0.9.1-cronieReq.patch
|
Patch1: sectool-0.9.1-cronieReq.patch
|
||||||
Patch2: sectool-0.9.1-setVar.patch
|
Patch2: sectool-0.9.2-fixing.patch
|
||||||
Patch3: sectool-0.9.1-getValueFromH.patch
|
#Patch2: sectool-0.9.1-setVar.patch
|
||||||
Patch4: sectool-0.9.1-selinux.patch
|
#Patch3: sectool-0.9.1-getValueFromH.patch
|
||||||
Patch5: sectool-0.9.1-zsh.patch
|
#Patch4: sectool-0.9.1-selinux.patch
|
||||||
|
#Patch5: sectool-0.9.1-zsh.patch
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: gettext coreutils which libselinux
|
Requires: gettext coreutils libselinux
|
||||||
Requires: python2 rpm-python libselinux-python
|
Requires: python2 rpm-python libselinux-python glibc-headers
|
||||||
BuildRequires: desktop-file-utils gettext intltool rpm-devel asciidoc libselinux-devel
|
BuildRequires: desktop-file-utils gettext intltool rpm-devel asciidoc
|
||||||
|
BuildRequires: libselinux-devel glibc-headers
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
%package gui
|
%package gui
|
||||||
|
|
@ -38,10 +40,11 @@ sectool-gui provides a GTK-based graphical user interface to sectool.
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1 -b .cronieReq
|
%patch1 -p1 -b .cronieReq
|
||||||
%patch2 -p1 -b .setVar
|
%patch2 -p1 -b .fixing
|
||||||
%patch3 -p1 -b .getValueFromH
|
#%patch2 -p1 -b .setVar
|
||||||
%patch4 -p1 -b .selinux
|
#%patch3 -p1 -b .getValueFromH
|
||||||
%patch5 -p1 -b .zsh
|
#%patch4 -p1 -b .selinux
|
||||||
|
#%patch5 -p1 -b .zsh
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
@ -66,6 +69,10 @@ sed -i 's,__ico_path = \(.*\),__ico_path = "%{_datadir}/pixmaps/sectool/",' $RPM
|
||||||
#this file is just for development
|
#this file is just for development
|
||||||
rm $RPM_BUILD_ROOT/%{_datadir}/sectool/scheduler/selftest.py
|
rm $RPM_BUILD_ROOT/%{_datadir}/sectool/scheduler/selftest.py
|
||||||
|
|
||||||
|
# remove debug stuff
|
||||||
|
rm -f $RPM_BUILD_ROOT/%{_datadir}/sectool/tests/showvars.sh
|
||||||
|
rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/sectool/tests/00_showvars.dsc
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
|
|
@ -106,6 +113,19 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 26 2009 Daniel Kopecek <dkopecek@redhat.com> - 0.9.2-4
|
||||||
|
- removed showvars.dsc
|
||||||
|
|
||||||
|
* Fri Jan 23 2009 Daniel Kopecek <dkopecek@redhat.com> - 0.9.2-3
|
||||||
|
- removed showvars.sh
|
||||||
|
- added dist macro to Release:
|
||||||
|
|
||||||
|
* Tue Dec 02 2008 Daniel Kopecek <dkopecek@redhat.com> - 0.9.2-2
|
||||||
|
- bugfix release
|
||||||
|
|
||||||
|
* Mon Nov 24 2008 Daniel Kopecek <dkopecek@redhat.com> - 0.9.2-1
|
||||||
|
- upgrade, see changelog for changes
|
||||||
|
|
||||||
* Mon Nov 03 2008 Peter Vrabec <pvrabec@redhat.com> - 0.9.1-4
|
* Mon Nov 03 2008 Peter Vrabec <pvrabec@redhat.com> - 0.9.1-4
|
||||||
- checking zsh home files (#469913)
|
- checking zsh home files (#469913)
|
||||||
- fix selinux test failure (#469910)
|
- fix selinux test failure (#469910)
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
1bf9e281318b77044c96eb68028157ce sectool-0.9.1.tar.bz2
|
6d145a49ffbd0ce1876099208ec59bda sectool-0.9.2.tar.bz2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue