summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-08-06 02:23:51 +0000
committerCoprDistGit <infra@openeuler.org>2024-08-06 02:23:51 +0000
commit717342c521dce18b66df619f41898b6c062480dd (patch)
treee8ccdc150ea40d1790d7089562fb268c169dda8d
parent326b7a91e9f4e7771a66df17c9b206d46db4c212 (diff)
automatic import of libecapopeneuler24.03_LTS
-rw-r--r--.gitignore1
-rw-r--r--autoconf.h51
-rw-r--r--libecap.spec156
-rw-r--r--sources1
4 files changed, 209 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..20834a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libecap-1.0.1.tar.gz
diff --git a/autoconf.h b/autoconf.h
new file mode 100644
index 0000000..aa5de1c
--- /dev/null
+++ b/autoconf.h
@@ -0,0 +1,51 @@
+/*
+ * This autoconf.h is a wrapper include file for the original libecap/common/autoconf.h,
+ * which has been renamed to autoconf-<arch>.h. There are conflicts for the
+ * original autoconf.h on multilib systems, which result from arch-specific
+ * configuration options. Please do not use the arch-specific file directly.
+ */
+
+/*
+ * This wrapped is addpated from SDL's one:
+ * http://pkgs.fedoraproject.org/cgit/SDL.git/tree/SDL_config.h
+ */
+
+#ifdef libecap_autoconf_wrapper_h
+#error "libecap_autoconf_wrapper_h should not be defined!"
+#endif
+#define libecap_autoconf_wrapper_h
+
+#if defined(__i386__)
+#include "libecap/common/autoconf-i386.h"
+#elif defined(__ia64__)
+#include "libecap/common/autoconf-ia64.h"
+#elif defined(__powerpc64__)
+#include <endian.h>
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+#include "libecap/common/autoconf-ppc64.h"
+#else
+#include "libecap/common/autoconf-ppc64le.h"
+#endif
+#elif defined(__powerpc__)
+#include "libecap/common/autoconf-ppc.h"
+#elif defined(__s390x__)
+#include "libecap/common/autoconf-s390x.h"
+#elif defined(__s390__)
+#include "libecap/common/autoconf-s390.h"
+#elif defined(__x86_64__)
+#include "libecap/common/autoconf-x86_64.h"
+#elif defined(__arm__)
+#include "libecap/common/autoconf-arm.h"
+#elif defined(__alpha__)
+#include "libecap/common/autoconf-alpha.h"
+#elif defined(__sparc__) && defined (__arch64__)
+#include "libecap/common/autoconf-sparc64.h"
+#elif defined(__sparc__)
+#include "libecap/common/autoconf-sparc.h"
+#elif defined(__aarch64__)
+#include "libecap/common/autoconf-aarch64.h"
+#else
+#error "The libecap-devel package is not usable with the architecture."
+#endif
+
+#undef libecap_autoconf_wrapper_h
diff --git a/libecap.spec b/libecap.spec
new file mode 100644
index 0000000..e914ec4
--- /dev/null
+++ b/libecap.spec
@@ -0,0 +1,156 @@
+Name: libecap
+Version: 1.0.1
+Release: 10%{?dist}
+Summary: Squid interface for embedded adaptation modules
+License: BSD
+URL: http://www.e-cap.org/
+Source0: http://www.measurement-factory.com/tmp/ecap/%{name}-%{version}.tar.gz
+Source1: autoconf.h
+
+BuildRequires: gcc
+BuildRequires: gcc-c++
+BuildRequires: make
+
+%description
+eCAP is a software interface that allows a network application, such as an
+HTTP proxy or an ICAP server, to outsource content analysis and adaptation to
+a loadable module. For each applicable protocol message being processed, an
+eCAP-enabled host application supplies the message details to the adaptation
+module and gets back an adapted message, a "not interested" response, or a
+"block this message now!" instruction. These exchanges often include message
+bodies.
+
+The adaptation module can also exchange meta-information with the host
+application to supply additional details such as configuration options, a
+reason behind the decision to ignore a message, or a detected virus name.
+
+If you are familiar with the ICAP protocol (RFC 3507), then you may think of
+eCAP as an "embedded ICAP", where network interactions with an ICAP server are
+replaced with function calls to an adaptation module.
+
+%package devel
+Summary: Libraries and header files for the libecap library
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+This package provides the libraries, include files, and other
+resources needed for developing libecap applications.
+
+%prep
+%autosetup
+
+%build
+%configure
+%make_build
+
+%install
+%make_install
+rm -f %{buildroot}%{_libdir}/libecap.a
+rm -f %{buildroot}%{_libdir}/libecap.la
+
+# Rename libecap/common/autoconf.h to libecap/common/autoconf-<arch>.h to avoid file conflicts on
+# multilib systems and install autoconf.h wrapper
+mv %{buildroot}%{_includedir}/%{name}/common/autoconf.h %{buildroot}%{_includedir}/%{name}/common/autoconf-%{_arch}.h
+install -pm644 %{SOURCE1} %{buildroot}%{_includedir}/%{name}/common/autoconf.h
+
+%ldconfig_scriptlets
+
+%files
+%doc LICENSE CREDITS NOTICE README
+%{_libdir}/libecap.so.*
+
+%files devel
+%{_libdir}/libecap.so
+%{_libdir}/pkgconfig/libecap.pc
+%{_includedir}/libecap
+
+%changelog
+* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.1-10
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+ Related: rhbz#1991688
+
+* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.1-9
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Mon Aug 21 2017 Luboš Uhliarik <luhliari@redhat.com> - 1.0.1-1
+- new version 1.0.1
+- autoconf.h moved from lookaside to dist-git
+
+* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
+* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0.0-2
+- Rebuilt for GCC 5 C++11 ABI change
+
+* Fri Mar 13 2015 Pavel Šimerda <psimerda@redhat.com> - 1.0.0-1
+- new version 1.0.0
+
+* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Tue May 13 2014 Jaromir Capik <jcapik@redhat.com> - 0.2.0-8
+- Introducing suppport for ppc64le in autoconf.h (#1075180)
+
+* Mon Sep 16 2013 Michal Luscon <mluscon@redhat.com> - 0.2.0-7
+- Fixed: #831404 - multilib conflicts due to platform dependent autoconf.h
+
+* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Mon Dec 12 2011 Chris Spike <spike@fedoraproject.org> 0.2.0-2
+- Added pkgconfig file to -devel
+
+* Mon Jul 11 2011 Chris Spike <spike@fedoraproject.org> 0.2.0-1
+- Updated to 0.2.0
+
+* Tue May 10 2011 Chris Spike <spike@fedoraproject.org> 0.0.3-2
+- Added LICENSE to doc
+- Fixed release tag (missing dist)
+
+* Wed Apr 27 2011 Chris Spike <spike@fedoraproject.org> 0.0.3-1
+- Initial version of the package
diff --git a/sources b/sources
new file mode 100644
index 0000000..ee459bf
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+ba3b9025264e6c23e6413666fff9fdab libecap-1.0.1.tar.gz