Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
Fedora Release Engineering
57b868b94f dist-git conversion 2010-07-29 12:19:59 +00:00
Bill Nottingham
afd51f19c3 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:38:24 +00:00
Daniel Kopeček
73cf3a40e0 release++ 2009-01-26 10:46:23 +00:00
Daniel Kopeček
7e9614cad7 removed showvars.dsc 2009-01-26 10:41:39 +00:00
Daniel Kopeček
da4698daab - removed showvars.sh
- added dist macro to Release:
2009-01-23 13:33:21 +00:00
Daniel Kopeček
b6f73d090e bugfix release 2008-12-01 23:16:56 +00:00
Daniel Kopeček
85a1acecfd new bugfix release, see changelog 2008-11-24 10:27:48 +00:00
Jesse Keating
a9a54fe7c4 Initialize branch F-10 for sectool 2008-11-07 05:08:56 +00:00
6 changed files with 1813 additions and 36 deletions

View file

@ -1 +0,0 @@
sectool-0.9.1.tar.bz2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
sectool-0.9.2.tar.bz2

View file

@ -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

File diff suppressed because it is too large Load diff

View file

@ -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)

View file

@ -1 +1 @@
1bf9e281318b77044c96eb68028157ce sectool-0.9.1.tar.bz2 6d145a49ffbd0ce1876099208ec59bda sectool-0.9.2.tar.bz2