[aespipe] Initial import (#471805).

Jirka Hladky jhladky at fedoraproject.org
Tue Aug 31 12:09:31 UTC 2010


commit d03cfdc5993a18b9a0c924542637401ae281ecde
Author: jhladky <jhladky at dub.englab.brq.redhat.com>
Date:   Tue Aug 31 14:09:29 2010 +0200

    Initial import (#471805).

 .gitignore   |    1 +
 aespipe.spec |   85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources      |    1 +
 3 files changed, 87 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..4e6914f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/aespipe-v2.4b.tar.bz2
diff --git a/aespipe.spec b/aespipe.spec
new file mode 100644
index 0000000..cd6f066
--- /dev/null
+++ b/aespipe.spec
@@ -0,0 +1,85 @@
+Summary:        AES-based encryption tool for tar/cpio and loop-aes images
+Name:           aespipe
+Version:        2.4b
+Release:        3%{?dist}
+License:        GPLv2+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Group:          Applications/System
+URL:            http://loop-aes.sourceforge.net/
+Source:         http://loop-aes.sourceforge.net/aespipe/aespipe-v%{version}.tar.bz2
+BuildRequires:  gpg
+Requires:       gpg
+
+%description
+aespipe is an encryption tool that reads from standard input and
+writes to standard output. It uses the AES (Rijndael) cipher.
+
+It can be used as an encryption filter, to create and restore
+encrypted tar/cpio backup archives and to read/write and convert
+loop-AES compatible encrypted images.
+
+aespipe can be used for non-destructive in-place encryption of
+existing disk partitions for use with the loop-AES encrypted loop-back
+kernel module.
+
+%prep
+%setup -q -n %{name}-v%{version}
+
+%build
+%configure
+
+%global make_target %{nil}
+%ifarch x86_64
+%global make_target amd64
+%endif
+%ifarch %{ix86}
+%global make_target x86
+%endif
+%{__make} %{?_smp_mflags} %{make_target}
+
+%check
+%{__make} tests
+
+%install
+%{__rm} -rf %{buildroot}
+%{__mkdir} -p %{buildroot}%{_defaultdocdir}/%{name}-%{version}/examples
+%{__cp} -p ChangeLog README %{buildroot}%{_defaultdocdir}/%{name}-%{version}
+%{__install} -Dp -m0644 bz2aespipe %{buildroot}%{_defaultdocdir}/%{name}-%{version}/examples
+%{__install} -Dp -m0644 aespipe.1 %{buildroot}%{_mandir}/man1/aespipe.1
+%{__install} -Dp -m0755 aespipe %{buildroot}%{_bindir}/aespipe
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, -)
+%dir %{_defaultdocdir}/%{name}-%{version}
+%{_defaultdocdir}/%{name}-%{version}/*
+%{_mandir}/man1/*
+%{_bindir}/aespipe
+
+%changelog
+* Sat Aug 28 2010 Jirka Hladky <jhladky at redhat.com> - 2.4b-3
+  - Replaced global with define, see https://fedoraproject.org/wiki/Packaging/Guidelines#.25global_preferred_over_.25define
+* Wed Aug 25 2010 Jirka Hladky <jhladky at redhat.com> - 2.4b-2
+  - version 2.4b
+  - cleaned up SPEC file
+  - using MACROS everywhere
+  - moved bz2aespipe into examples
+* Fri Jan 22 2010 Dean Mander <knolderpoor at gmail.com> - 2.3e-4
+  - added Requires:gpg
+* Wed Dec 10 2008 Dean Mander <knolderpoor at gmail.com> - 2.3e-3
+  - add make_target (to build on ppc)
+  - add BuildRequires:gpg
+  - add make tests
+* Mon Nov 17 2008 Dean Mander <knolderpoor at gmail.com> - 2.3e-2
+  - remove unneeded aclocal and autoconfig commands
+  - corrected license to GPLv2+
+
+* Tue Nov 11 2008 Dean Mander <knolderpoor at gmail.com> - 2.3e-1
+  - bump to version 2.3e
+  - set licence to GPL+ 
+  - align to fedora standards
+
+* Mon Nov 03 2008 Dag Wieers <dag at wieers.com> - 2.3d-1 - +/
+- Initial package. (using DAR)
diff --git a/sources b/sources
index e69de29..e6613ef 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9854ed1dfdc38838e784a79000ce82e7  aespipe-v2.4b.tar.bz2


More information about the scm-commits mailing list