commit f9625b6dad9dd91a40c3aa6e0e6c8f0ff7f745de1afc7f88b8dda5e123ef83f5 Author: OBS User unknown Date: Wed Mar 14 11:23:16 2007 +0000 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/amtu?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/amtu-1.0.4.tar.gz b/amtu-1.0.4.tar.gz new file mode 100644 index 0000000..ab13064 --- /dev/null +++ b/amtu-1.0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fd3559a20537e74ce800b4e7a50fe4f5df44004efa3428583c4df9444875a4 +size 54728 diff --git a/amtu.changes b/amtu.changes new file mode 100644 index 0000000..df6a864 --- /dev/null +++ b/amtu.changes @@ -0,0 +1,30 @@ +------------------------------------------------------------------- +Fri Mar 2 15:26:12 CET 2007 - ro@suse.de + +- fix buildreq + +------------------------------------------------------------------- +Tue Feb 27 01:14:38 CET 2007 - draht@suse.de + +- port from sles9 tree to sle10-sp for SP1, initial package in + CODE10 +- version upgrade to 1.0.4; featuring audit (LAF) support for + compliance with CAPP + +------------------------------------------------------------------- +Mon Sep 6 09:51:31 CEST 2004 - thomas@suse.de + +- added laus, laus-devel to needforbuild + +------------------------------------------------------------------- +Thu Aug 26 10:02:20 CEST 2004 - thomas@suse.de + +- added patch to make memory separation testcase work on + machines with kernel f_pos race fix. it is needed due to + new permissions on /proc/self/maps. + +------------------------------------------------------------------- +Fri Aug 20 10:20:54 CEST 2004 - thomas@suse.de + +- created initial package for EAL4 evaluation of SLES9 + diff --git a/amtu.spec b/amtu.spec new file mode 100644 index 0000000..273fe40 --- /dev/null +++ b/amtu.spec @@ -0,0 +1,95 @@ +# +# spec file for package amtu (Version 1.0.4) +# +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +Name: amtu +URL: http://www-124.ibm.com/developerworks/projects/amtu +License: Other License(s), see package +Group: Productivity/Security +Requires: audit >= 1.2.9 +Autoreqprov: on +Version: 1.0.4 +Release: 1 +Summary: Abstract Machine Test Utility +Source: %{name}-%{version}.tar.gz +#Patch0: %{name}-%{version}-ia64.patch +#Patch1: %{name}-%{version}-memsep.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: audit audit-devel audit-libs + +%description +Abstract Machine Test Utility (AMTU) is an administrative utility to +check whether the underlying protection mechanism of the hardware is +still being enforced. This is a requirement of the Controlled Access +Protection Profile (CAPP) FTP_AMT.1. See +http://www.radium.csc.mil/tpep/library/protection_profiles/CAPP-1.d.pdf +. + + + +Authors: +-------- + IBM + Unknown + +%prep +%setup amtu +#%patch0 -p1 +#%patch1 -p1 + +%build +%{?suse_update_config:%{suse_update_config -f support}} +CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe" + CC=gcc +export CC CFLAGS + #autoheader || true + #autoreconf --install + bash ./bootstrap + ./configure \ + --prefix=/usr \ + --bindir=/usr/sbin \ + --mandir=%{_mandir} + make +%{?suse_update_config:%{suse_update_config -f support}} + +%install +# rm -rf %{_defaultdocdir}/amtu +mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu +make DESTDIR=$RPM_BUILD_ROOT install-strip +install -m 644 doc/AMTUHowTo.txt $RPM_BUILD_ROOT/%{_defaultdocdir}/amtu/AMTUHowTo.txt +install -m 644 doc/amtu.8 $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8 + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%attr(700,root,root)/usr/sbin/amtu +%attr(444,root,root) %{_mandir}/man8/amtu.8* +%attr(755,root,root) %{_defaultdocdir}/amtu +%attr(444,root,root) %{_defaultdocdir}/amtu/AMTUHowTo.txt + +%changelog +* Fri Mar 02 2007 - ro@suse.de +- fix buildreq +* Tue Feb 27 2007 - draht@suse.de +- port from sles9 tree to sle10-sp for SP1, initial package in + CODE10 +- version upgrade to 1.0.4; featuring audit (LAF) support for + compliance with CAPP +* Mon Sep 06 2004 - thomas@suse.de +- added laus, laus-devel to needforbuild +* Thu Aug 26 2004 - thomas@suse.de +- added patch to make memory separation testcase work on + machines with kernel f_pos race fix. it is needed due to + new permissions on /proc/self/maps. +* Fri Aug 20 2004 - thomas@suse.de +- created initial package for EAL4 evaluation of SLES9 diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4