Import rpm: c8s

This commit is contained in:
James Antill 2023-02-27 14:09:20 -05:00
parent 7ffc1a397a
commit acfe9965b5
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
SOURCES/librevenge-0.0.4.tar.xz
/librevenge-0.0.4.tar.xz

View File

@ -2,7 +2,7 @@
Name: librevenge
Version: 0.0.4
Release: 12%{?dist}
Release: 13%{?dist}
Summary: A base library for writing document import filters
# src/lib/RVNGOLEStream.{h,cpp} are BSD
@ -50,7 +50,11 @@ debugging applications that use %{name}.
%autosetup -p1
%build
%if 0%{?flatpak:1}
%configure --disable-silent-rules --disable-static --disable-werror --enable-pretty-printers --with-gdb-data-dir=/app/share/gdb
%else
%configure --disable-silent-rules --disable-static --disable-werror --enable-pretty-printers
%endif
sed -i \
-e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
-e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' \
@ -98,6 +102,9 @@ make %{?_smp_mflags} check
%{_datadir}/%{name}/python
%changelog
* Thu Jun 04 2020 Jan Horak <jhorak@redhat.com> - 0.0.4-13
- Fixing build for flatpak (rhbz#1840793)
* Fri Jan 17 2020 Sergio Durigan Junior <sergiodj@redhat.com> - 0.0.4-12
- Resolves: rhbz#1786466 Do not use %%{?_isa} for GDB dependency. Recommend
GDB, instead of requiring it.