Compare commits
22 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e462d1068 | ||
|
|
8bc487138a | ||
|
|
eab976ed49 | ||
|
|
34d69acd17 | ||
|
|
ae9a3e12b1 | ||
|
|
41f31a2eb2 | ||
|
|
2d7bcb9fcc | ||
|
|
6566a14113 | ||
|
|
a5ef8e4570 | ||
|
|
120a58d953 | ||
|
|
746312a33a | ||
|
|
63aa420558 | ||
|
|
38ee4b19a3 | ||
|
|
8fe7927d97 | ||
|
|
0ccac1a162 | ||
|
|
0a8661c83c | ||
|
|
f4da75748d | ||
|
|
8a39a5aa05 | ||
|
|
f09b3d32e5 | ||
|
|
66d85bbc03 | ||
|
|
2d21657a74 | ||
|
|
946e29c76e |
5 changed files with 1 additions and 159 deletions
|
|
@ -1,8 +0,0 @@
|
||||||
amtu-0.1.tar.gz
|
|
||||||
amtu-1.0.tar.gz
|
|
||||||
amtu-1.0.1.tar.gz
|
|
||||||
amtu-1.0.2.tar.gz
|
|
||||||
amtu-1.0.3.tar.gz
|
|
||||||
amtu-1.0.4.tar.gz
|
|
||||||
amtu-1.0.5-1.tar.gz
|
|
||||||
amtu-1.0.6.tar.gz
|
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
||||||
# Makefile for source rpm: amtu
|
|
||||||
# $Id: Makefile,v 1.1 2004/09/09 02:56:56 cvsdist Exp $
|
|
||||||
NAME := amtu
|
|
||||||
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),)
|
|
||||||
# attempt 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)
|
|
||||||
129
amtu.spec
129
amtu.spec
|
|
@ -1,129 +0,0 @@
|
||||||
Summary: Abstract Machine Test Utility (AMTU)
|
|
||||||
Name: amtu
|
|
||||||
Version: 1.0.6
|
|
||||||
Release: 3%{?dist}
|
|
||||||
License: CPL
|
|
||||||
Group: System Environment/Base
|
|
||||||
URL: http://sourceforge.net/projects/amtueal/
|
|
||||||
Source0: %{name}-%{version}.tar.gz
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildRequires: audit-libs-devel >= 1.1.2
|
|
||||||
BuildRequires: automake
|
|
||||||
Requires: audit >= 1.1.2
|
|
||||||
|
|
||||||
# Red Hat AMTU SPEC file
|
|
||||||
|
|
||||||
%description
|
|
||||||
Abstract Machine Test Utility (AMTU) is an administrative utility to check
|
|
||||||
whether the underlying protection mechanism of the hardware are still being
|
|
||||||
enforced. This is a requirement of the Controlled Access Protection Profile
|
|
||||||
FPT_AMT.1, see
|
|
||||||
http://www.radium.ncsc.mil/tpep/library/protection_profiles/CAPP-1.d.pdf
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Determine appropriate compiler
|
|
||||||
CC="gcc"
|
|
||||||
%ifarch ppc64 ppc64iseries ppc64pseries
|
|
||||||
CC="/usr/bin/ppc64-redhat-linux-gcc"
|
|
||||||
%endif
|
|
||||||
# Determine appropriate compiler flags
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe"
|
|
||||||
%ifarch x86_64
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe -m64"
|
|
||||||
%endif
|
|
||||||
export CC CFLAGS
|
|
||||||
# next 3 items is to quieten autoreconf
|
|
||||||
touch ChangeLog
|
|
||||||
touch NEWS
|
|
||||||
touch AUTHORS
|
|
||||||
autoreconf -fv --install
|
|
||||||
%configure
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
||||||
install -m 0750 src/amtu $RPM_BUILD_ROOT/%{_bindir}
|
|
||||||
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man8/
|
|
||||||
install -m 644 doc/amtu.8 $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc doc/AMTUHowTo.txt COPYING
|
|
||||||
%attr(0750,root,root) %{_bindir}/amtu
|
|
||||||
%attr(0644,root,root) %{_mandir}/man8/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0.6-3
|
|
||||||
- fix license tag
|
|
||||||
|
|
||||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.6-2
|
|
||||||
- Autorebuild for GCC 4.3
|
|
||||||
|
|
||||||
* Sat Dec 08 2007 Steve Grubb <sgrubb@redhat.com> 1.0.6-1
|
|
||||||
- new upstream version
|
|
||||||
|
|
||||||
* Thu Mar 08 2007 Steve Grubb <sgrubb@redhat.com> 1.0.5-1
|
|
||||||
- new upstream version
|
|
||||||
|
|
||||||
* Fri Feb 16 2007 Steve Grubb <sgrubb@redhat.com> 1.0.4-6
|
|
||||||
- change buildroot
|
|
||||||
|
|
||||||
* Thu Feb 8 2007 Steve Grubb <sgrubb@redhat.com> 1.0.4-5
|
|
||||||
- specfile updates
|
|
||||||
|
|
||||||
* Tue Jan 9 2007 Steve Grubb <sgrubb@redhat.com> 1.0.4-4
|
|
||||||
- patch fixing network and disk tests
|
|
||||||
|
|
||||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-3.1
|
|
||||||
- rebuild
|
|
||||||
|
|
||||||
* Mon Jun 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-3
|
|
||||||
- Fix missing BR on automake
|
|
||||||
|
|
||||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-2.2
|
|
||||||
- bump again for double-long bug on ppc(64)
|
|
||||||
|
|
||||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-2.1
|
|
||||||
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
||||||
|
|
||||||
* Tue Jan 3 2006 Jesse Keating <jkeating@redhat.com> 1.0.4-2
|
|
||||||
- rebuilt
|
|
||||||
|
|
||||||
* Fri Dec 9 2005 Steve Grubb <sgrubb@redhat.com> 1.0.4-1
|
|
||||||
- New upstream version updated for new audit messages
|
|
||||||
* Mon Dec 5 2005 Steve Grubb <sgrubb@redhat.com> 1.0.2-2
|
|
||||||
- Fix "clean" section of spec file (bz 172942)
|
|
||||||
- Add memsep-random patch (bz 174767)
|
|
||||||
* Thu Jul 14 2005 Steve Grubb <sgrubb@redhat.com> 1.0.2-1
|
|
||||||
- New upstream version.
|
|
||||||
* Tue Jul 12 2005 Steve Grubb <sgrubb@redhat.com> 1.0.1-1
|
|
||||||
- New version fixes bug where audit system was disable at end of test.
|
|
||||||
* Wed Jun 8 2005 Steve Grubb <sgrubb@redhat.com> 1.0-2
|
|
||||||
- add a few more include "config.h"
|
|
||||||
* Fri May 27 2005 Steve Grubb <sgrubb@redhat.com> 1.0-1
|
|
||||||
- New upstream version from IBM
|
|
||||||
- Drop memsep patch
|
|
||||||
- Rework specfile
|
|
||||||
* Thu Sep 2 2004 root <ccb@redhat.com> 0.1-7RHEL
|
|
||||||
- integrate memsep patch from Matt Anderson at HP
|
|
||||||
* Mon Aug 16 2004 root <ccb@redhat.com> 0.1-6RHEL
|
|
||||||
- Integrate ia64 patches from HP's Matt Anderson, enabling use on ia64
|
|
||||||
* Tue Jun 29 2004 root <ccb@redhat.com> 0.1-4RHEL
|
|
||||||
- fix /usr/bin/amtu modes for real this time
|
|
||||||
* Tue Jun 29 2004 root <ccb@redhat.com> 0.1-4RHEL
|
|
||||||
- set execute bits on /usr/bin/amtu
|
|
||||||
* Fri May 28 2004 ccb <ccb@redhat.com> 0.1-3RHEL
|
|
||||||
- fixed owners and permissions in "files"
|
|
||||||
* Wed May 26 2004 ccb <ccb@redhat.com> 0.1-2RHEL
|
|
||||||
- move docs to a version-qualified directory name
|
|
||||||
* Sat May 1 2004 root <chavezt@cs679156-153.austin.rr.com>
|
|
||||||
- Initial build.
|
|
||||||
|
|
||||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
AMTU was needed for Common Criteria testing. No PP has needed it in about 5 years. Upstream for the package is also dead.
|
||||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
||||||
9c65ae295bb875bb4aa8786e17a2f1e7 amtu-1.0.6.tar.gz
|
|
||||||
Reference in a new issue