Compare commits
No commits in common. "c10s" and "c8" have entirely different histories.
@ -1 +0,0 @@
|
|||||||
1
|
|
22
.gitignore
vendored
22
.gitignore
vendored
@ -1,21 +1 @@
|
|||||||
/lmdb-0.9.11.tar.gz
|
SOURCES/lmdb-LMDB_0.9.24.tar.gz
|
||||||
/lmdb-0.9.13.tar.gz
|
|
||||||
/lmdb-0.9.14.tar.gz
|
|
||||||
/LMDB_0.9.16.tar.gz
|
|
||||||
/LMDB_0.9.17.tar.gz
|
|
||||||
/LMDB_0.9.18.tar.gz
|
|
||||||
/LMDB_0.9.19.tar.gz
|
|
||||||
/LMDB_0.9.20.tar.gz
|
|
||||||
/LMDB_0.9.21.tar.gz
|
|
||||||
/LMDB_0.9.22.tar.gz
|
|
||||||
/LMDB_0.9.23.tar.gz
|
|
||||||
/LMDB_0.9.24.tar.gz
|
|
||||||
/LMDB_0.9.25.tar.gz
|
|
||||||
/LMDB_0.9.26.tar.gz
|
|
||||||
/LMDB_0.9.27.tar.gz
|
|
||||||
/LMDB_0.9.28.tar.gz
|
|
||||||
/LMDB_0.9.29.tar.gz
|
|
||||||
/openldap-LMDB_0.9.29.tar.gz
|
|
||||||
/openldap-LMDB_0.9.30.tar.gz
|
|
||||||
/openldap-LMDB_0.9.31.tar.gz
|
|
||||||
/openldap-LMDB_0.9.32.tar.gz
|
|
||||||
|
1
.lmdb.metadata
Normal file
1
.lmdb.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
76f4bc1827474403a78e5f8eb225233d67144286 SOURCES/lmdb-LMDB_0.9.24.tar.gz
|
37
SOURCES/lmdb-covscan.patch
Normal file
37
SOURCES/lmdb-covscan.patch
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
diff -up ./libraries/liblmdb/midl.c.fix ./libraries/liblmdb/midl.c
|
||||||
|
--- ./libraries/liblmdb/midl.c.fix 2019-06-19 11:10:07.791337785 +0200
|
||||||
|
+++ ./libraries/liblmdb/midl.c 2019-06-19 11:16:04.005166705 +0200
|
||||||
|
@@ -120,9 +120,15 @@ void mdb_midl_free(MDB_IDL ids)
|
||||||
|
void mdb_midl_shrink( MDB_IDL *idp )
|
||||||
|
{
|
||||||
|
MDB_IDL ids = *idp;
|
||||||
|
- if (*(--ids) > MDB_IDL_UM_MAX &&
|
||||||
|
- (ids = realloc(ids, (MDB_IDL_UM_MAX+2) * sizeof(MDB_ID))))
|
||||||
|
+ MDB_IDL res = NULL;
|
||||||
|
+ if (*(--ids) > MDB_IDL_UM_MAX)
|
||||||
|
{
|
||||||
|
+ res = realloc(ids, (MDB_IDL_UM_MAX+2) * sizeof(MDB_ID));
|
||||||
|
+ if (res)
|
||||||
|
+ ids = res;
|
||||||
|
+ else
|
||||||
|
+ return;
|
||||||
|
+
|
||||||
|
*ids++ = MDB_IDL_UM_MAX;
|
||||||
|
*idp = ids;
|
||||||
|
}
|
||||||
|
@@ -131,10 +137,13 @@ void mdb_midl_shrink( MDB_IDL *idp )
|
||||||
|
static int mdb_midl_grow( MDB_IDL *idp, int num )
|
||||||
|
{
|
||||||
|
MDB_IDL idn = *idp-1;
|
||||||
|
+ MDB_IDL res = NULL;
|
||||||
|
/* grow it */
|
||||||
|
- idn = realloc(idn, (*idn + num + 2) * sizeof(MDB_ID));
|
||||||
|
- if (!idn)
|
||||||
|
+ res = realloc(idn, (*idn + num + 2) * sizeof(MDB_ID));
|
||||||
|
+ if (!res)
|
||||||
|
return ENOMEM;
|
||||||
|
+ else
|
||||||
|
+ idn = res;
|
||||||
|
*idn++ += num;
|
||||||
|
*idp = idn;
|
||||||
|
return 0;
|
@ -1,7 +1,6 @@
|
|||||||
diff --git a/libraries/liblmdb/Makefile b/libraries/liblmdb/Makefile
|
diff -up lmdb-LMDB_0.9.19/libraries/liblmdb/Makefile.orig lmdb-LMDB_0.9.19/libraries/liblmdb/Makefile
|
||||||
index 000f1f9..c533342 100644
|
--- lmdb-LMDB_0.9.19/libraries/liblmdb/Makefile.orig 2017-01-04 12:14:24.303344915 +0100
|
||||||
--- a/libraries/liblmdb/Makefile
|
+++ lmdb-LMDB_0.9.19/libraries/liblmdb/Makefile 2017-01-04 12:19:20.190295319 +0100
|
||||||
+++ b/libraries/liblmdb/Makefile
|
|
||||||
@@ -26,6 +26,7 @@ OPT = -O2 -g
|
@@ -26,6 +26,7 @@ OPT = -O2 -g
|
||||||
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
|
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
|
||||||
LDLIBS =
|
LDLIBS =
|
||||||
@ -38,7 +37,7 @@ index 000f1f9..c533342 100644
|
|||||||
|
|
||||||
test: all
|
test: all
|
||||||
rm -rf testdb && mkdir testdb
|
rm -rf testdb && mkdir testdb
|
||||||
@@ -64,21 +65,25 @@ test: all
|
@@ -64,20 +65,24 @@ test: all
|
||||||
liblmdb.a: mdb.o midl.o
|
liblmdb.a: mdb.o midl.o
|
||||||
$(AR) rs $@ mdb.o midl.o
|
$(AR) rs $@ mdb.o midl.o
|
||||||
|
|
||||||
@ -50,7 +49,8 @@ index 000f1f9..c533342 100644
|
|||||||
+liblmdb$(SOEXT).$(SOVERSION): mdb.lo midl.lo
|
+liblmdb$(SOEXT).$(SOVERSION): mdb.lo midl.lo
|
||||||
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
|
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
|
||||||
- $(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS)
|
- $(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS)
|
||||||
-
|
+ $(CC) $(LDFLAGS) -pthread -shared -Wl,-soname,$@ -o $@ mdb.lo midl.lo $(SOLIBS)
|
||||||
|
|
||||||
-mdb_stat: mdb_stat.o liblmdb.a
|
-mdb_stat: mdb_stat.o liblmdb.a
|
||||||
-mdb_copy: mdb_copy.o liblmdb.a
|
-mdb_copy: mdb_copy.o liblmdb.a
|
||||||
-mdb_dump: mdb_dump.o liblmdb.a
|
-mdb_dump: mdb_dump.o liblmdb.a
|
||||||
@ -61,9 +61,6 @@ index 000f1f9..c533342 100644
|
|||||||
-mtest4: mtest4.o liblmdb.a
|
-mtest4: mtest4.o liblmdb.a
|
||||||
-mtest5: mtest5.o liblmdb.a
|
-mtest5: mtest5.o liblmdb.a
|
||||||
-mtest6: mtest6.o liblmdb.a
|
-mtest6: mtest6.o liblmdb.a
|
||||||
-mplay: mplay.o liblmdb.a
|
|
||||||
+ $(CC) $(LDFLAGS) -pthread -shared -Wl,-soname,$@ -o $@ mdb.lo midl.lo $(SOLIBS)
|
|
||||||
+
|
|
||||||
+mdb_stat: mdb_stat.o liblmdb.so
|
+mdb_stat: mdb_stat.o liblmdb.so
|
||||||
+mdb_copy: mdb_copy.o liblmdb.so
|
+mdb_copy: mdb_copy.o liblmdb.so
|
||||||
+mdb_dump: mdb_dump.o liblmdb.so
|
+mdb_dump: mdb_dump.o liblmdb.so
|
||||||
@ -74,7 +71,6 @@ index 000f1f9..c533342 100644
|
|||||||
+mtest4: mtest4.o liblmdb.so
|
+mtest4: mtest4.o liblmdb.so
|
||||||
+mtest5: mtest5.o liblmdb.so
|
+mtest5: mtest5.o liblmdb.so
|
||||||
+mtest6: mtest6.o liblmdb.so
|
+mtest6: mtest6.o liblmdb.so
|
||||||
+mplay: mplay.o liblmdb.so
|
|
||||||
|
|
||||||
mdb.o: mdb.c lmdb.h midl.h
|
mdb.o: mdb.c lmdb.h midl.h
|
||||||
$(CC) $(CFLAGS) $(CPPFLAGS) -c mdb.c
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c mdb.c
|
@ -1,28 +1,27 @@
|
|||||||
|
# The files themselves are in several subdirectories and need to be prefixed wit this.
|
||||||
|
%global archive_path libraries/lib%{name}
|
||||||
|
|
||||||
Name: lmdb
|
Name: lmdb
|
||||||
Version: 0.9.32
|
Version: 0.9.24
|
||||||
Release: %autorelease
|
Release: 2%{?dist}
|
||||||
Summary: Memory-mapped key-value database
|
Summary: Memory-mapped key-value database
|
||||||
License: OLDAP-2.8
|
|
||||||
URL: https://www.symas.com/lmdb
|
|
||||||
|
|
||||||
# Main source is retrieved from OpenLDAP GitLab
|
License: OpenLDAP
|
||||||
%global forgeurl https://git.openldap.org/openldap/openldap
|
URL: http://symas.com/mdb/
|
||||||
%global tag LMDB_%{version}
|
Source0: https://github.com/LMDB/lmdb/archive/LMDB_%{version}.tar.gz#/%{name}-LMDB_%{version}.tar.gz
|
||||||
%global archivename openldap-%{tag}
|
Source1: lmdb.pc.in
|
||||||
%global archiveext tar.gz
|
|
||||||
%global archiveurl %{forgeurl}/-/archive/%{tag}/%{archivename}.%{archiveext}
|
|
||||||
%forgemeta
|
|
||||||
|
|
||||||
Source: %{forgesource}
|
|
||||||
Source: lmdb.pc.in
|
|
||||||
# Patch description in the corresponding file
|
|
||||||
Patch: lmdb-make.patch
|
|
||||||
Patch: lmdb-s390-check.patch
|
|
||||||
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
# Patch description in the corresponding file
|
||||||
|
Patch0: lmdb-make.patch
|
||||||
|
Patch1: lmdb-s390-check.patch
|
||||||
|
Patch2: lmdb-covscan.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
LMDB is an ultra-fast, ultra-compact key-value embedded data
|
LMDB is an ultra-fast, ultra-compact key-value embedded data
|
||||||
store developed by Symas for the OpenLDAP Project. By using memory-mapped files,
|
store developed by Symas for the OpenLDAP Project. By using memory-mapped files,
|
||||||
@ -35,11 +34,11 @@ Summary: Shared libraries for %{name}
|
|||||||
|
|
||||||
%description libs
|
%description libs
|
||||||
The %{name}-libs package contains shared libraries necessary for running
|
The %{name}-libs package contains shared libraries necessary for running
|
||||||
applications that use the %{name} embedded database.
|
applications that use %{name}.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The %{name}-devel package contains libraries and header files for
|
The %{name}-devel package contains libraries and header files for
|
||||||
@ -54,16 +53,14 @@ The %{name}-doc package contains automatically generated documentation for %{nam
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
# forgeautosetup does not pass the -n argument
|
%setup -q -n %{name}-LMDB_%{version}
|
||||||
%autosetup -n %{archivename} -p1
|
%patch0 -p1 -b .make
|
||||||
|
%patch1 -p1 -b .s390-check
|
||||||
# The files themselves are in several subdirectories and need to be prefixed wit this.
|
%patch2 -p1 -b .covscan
|
||||||
%global archive_path libraries/lib%{name}
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
pushd %{archive_path}
|
pushd %{archive_path}
|
||||||
%set_build_flags
|
make LDFLAGS="%{build_ldflags}" XCFLAGS="%{optflags}" %{?_smp_mflags}
|
||||||
%make_build XCFLAGS="%{build_cflags}"
|
|
||||||
# Build doxygen documentation
|
# Build doxygen documentation
|
||||||
doxygen
|
doxygen
|
||||||
# remove unpackaged files
|
# remove unpackaged files
|
||||||
@ -76,7 +73,7 @@ pushd %{archive_path}
|
|||||||
# make install expects existing directory tree
|
# make install expects existing directory tree
|
||||||
mkdir -m 0755 -p %{buildroot}{%{_bindir},%{_includedir}}
|
mkdir -m 0755 -p %{buildroot}{%{_bindir},%{_includedir}}
|
||||||
mkdir -m 0755 -p %{buildroot}{%{_libdir}/pkgconfig,%{_mandir}/man1}
|
mkdir -m 0755 -p %{buildroot}{%{_libdir}/pkgconfig,%{_mandir}/man1}
|
||||||
%make_install prefix=%{_prefix} libdir=%{_libdir} mandir=%{_mandir}
|
make DESTDIR=%{buildroot} prefix=%{_prefix} libdir=%{_libdir} mandir=%{_mandir} install
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Install pkgconfig file
|
# Install pkgconfig file
|
||||||
@ -125,4 +122,28 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
%autochangelog
|
* Wed Nov 02 2022 Radovan Sroka <rsroka@redhat.com> - 0.9.24-2
|
||||||
|
RHEL 8.8.0 ERRATUM
|
||||||
|
- Please put lmdb in RHEL 8 CRB
|
||||||
|
- Rebuild
|
||||||
|
- Resolves: rhbz#1972979
|
||||||
|
|
||||||
|
* Thu May 07 2020 Radovan Sroka <rsroka@redhat.com> - 0.9.24-1
|
||||||
|
- RHEL 8.3.0 ERRATUM
|
||||||
|
- rebase to 0.9.24
|
||||||
|
- Resolves: rhbz#1817421
|
||||||
|
|
||||||
|
* Tue Jun 18 2019 Radovan Sroka <rsroka@redhat.com> - 0.9.23-5
|
||||||
|
- fixed resolves from RPMDIFF
|
||||||
|
- fixed some covscan issues
|
||||||
|
|
||||||
|
* Wed Jun 12 2019 Radovan Sroka <rsroka@redhat.com> - 0.9.23-4
|
||||||
|
- propagate ldflags for makefile
|
||||||
|
- added explicit Requires for -libs
|
||||||
|
|
||||||
|
* Wed May 15 2019 Radovan Sroka <rsroka@redhat.com> - 0.9.23-3
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Mon Apr 29 2019 Radovan Sroka <rsroka@redhat.com> - 0.9.23-2
|
||||||
|
- Initial Package
|
||||||
|
- Resolves: rhbz#1692264
|
141
changelog
141
changelog
@ -1,141 +0,0 @@
|
|||||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.29-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.29-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.29-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.29-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Mar 17 2021 Jan Staněk <jstanek@redhat.com> - 0.9.29-1
|
|
||||||
- Upgrade to version 0.9.29
|
|
||||||
|
|
||||||
* Mon Feb 08 2021 Jan Staněk <jstanek@redhat.com> - 0.9.28-1
|
|
||||||
- Upgrade to version 0.9.28
|
|
||||||
- Specfile refactoring
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.27-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Oct 27 2020 Jan Staněk <jstanek@redhat.com> - 0.9.27-1
|
|
||||||
- Upgrade to version 0.9.27
|
|
||||||
|
|
||||||
* Wed Aug 12 2020 Jan Staněk <jstanek@redhat.com> - 0.9.26-1
|
|
||||||
- Upgrade to version 0.9.26
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.25-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 0.9.25-2
|
|
||||||
- Use make macros
|
|
||||||
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
|
||||||
|
|
||||||
* Tue Jul 07 2020 Jan Staněk <jstanek@redhat.com> - 0.9.25-1
|
|
||||||
- Upgrade to version 0.9.25
|
|
||||||
- Use OpenLDAP git directly in place of GitHub mirror
|
|
||||||
|
|
||||||
* Mon Jun 15 2020 Jan Staněk <jstanek@redhat.com> - 0.9.24-3
|
|
||||||
- Properly %%set_build_flags
|
|
||||||
|
|
||||||
* Thu Apr 02 2020 Björn Esser <besser82@fedoraproject.org> - 0.9.24-2
|
|
||||||
- Fix string quoting for rpm >= 4.16
|
|
||||||
|
|
||||||
* Tue Mar 24 2020 Jan Staněk <jstanek@redhat.com> - 0.9.24-1
|
|
||||||
- Upgrade to version 0.9.24
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Tom Stellard <tstellar@redhat.com> - 0.9.23-5
|
|
||||||
- Use make_build macro
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.23-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.23-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.23-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 09 2019 Tomas Krizek <tomas.krizek@nic.cz> - 0.9.23-1
|
|
||||||
- Updated to 0.9.23
|
|
||||||
|
|
||||||
* Mon Nov 05 2018 Jan Staněk <jstanek@redhat.com> - 0.9.22-4
|
|
||||||
- Import upstream fix for rhbz#1645114
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.22-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Apr 23 2018 Florin Asavoaie <florin.asavoaie@gmail.com> - 0.9.22-2
|
|
||||||
- Fixed Build Dependencies
|
|
||||||
- Made build work on CentOS 7 for EPEL
|
|
||||||
|
|
||||||
* Tue Apr 10 2018 Jan Staněk <jstanek@redhat.com> - 0.9.22-1
|
|
||||||
- Updated to 0.9.22
|
|
||||||
|
|
||||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.21-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.21-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.21-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 02 2017 Jan Stanek <jstanek@redhat.com> - 0.9.21-1
|
|
||||||
- Update to 0.9.21
|
|
||||||
|
|
||||||
* Mon Mar 20 2017 Jan Stanek <jstanek@redhat.com> - 0.9.20-3
|
|
||||||
- Add pkgconfig file to devel subpackage
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.20-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 12 2017 Jan Stanek <jstanek@redhat.com> - 0.9.20-1
|
|
||||||
- Update to 0.9.20
|
|
||||||
|
|
||||||
* Wed Jan 04 2017 Jan Stanek <jstanek@redhat.com> - 0.9.19-1
|
|
||||||
- Update to 0.9.19
|
|
||||||
|
|
||||||
* Wed Feb 10 2016 Jan Stanek <jstanek@redhat.com> - 0.9.18-1
|
|
||||||
- Update to 0.9.18
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.17-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 28 2015 Jan Vcelak <jvcelak@fedoraproject.org> 0.9.17-2
|
|
||||||
- Make liblmdb.so a symbolic link to (not a copy of) the versioned DSO
|
|
||||||
|
|
||||||
* Thu Dec 03 2015 Jan Staněk <jstanek@redhat.com> - 0.9.17-1
|
|
||||||
- Update to 0.9.17
|
|
||||||
|
|
||||||
* Wed Nov 25 2015 Jan Staněk <jstanek@redhat.com> - 0.9.16-2
|
|
||||||
- Return the name 'Symas' into description
|
|
||||||
|
|
||||||
* Fri Aug 14 2015 Jan Staněk <jstanek@redhat.com> - 0.9.16-1
|
|
||||||
- Updated to 0.9.16
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.14-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Dec 11 2014 Jan Staněk <jstanek@redhat.com> - 0.9.14-1
|
|
||||||
- Updated to 0.9.14
|
|
||||||
|
|
||||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.13-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 18 2014 Jan Stanek <jstanek@redhat.com> - 0.9.13-1
|
|
||||||
- Updated to 0.9.13
|
|
||||||
|
|
||||||
* Mon Jul 14 2014 Jan Stanek <jstanek@redhat.com> - 0.9.11-4
|
|
||||||
- Changed install instruction to be compatible with older coreutils (#1119084)
|
|
||||||
|
|
||||||
* Thu Jun 26 2014 Jan Stanek <jstanek@redhat.com> - 0.9.11-3
|
|
||||||
- Added delay in testing which was needed on s390* arches (#1104232)
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.11-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 27 2014 Jan Stanek <jstanek@redhat.com> - 0.9.11-1
|
|
||||||
- Initial Package
|
|
6
ci.fmf
6
ci.fmf
@ -1,6 +0,0 @@
|
|||||||
/e2e_ci:
|
|
||||||
plan:
|
|
||||||
import:
|
|
||||||
url: https://github.com/RedHat-SP-Security/fapolicyd-plans.git
|
|
||||||
name: /generic/e2e_ci
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-10
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
Loading…
Reference in New Issue
Block a user