Browse Source

libolm remove python subpackage

Signed-off-by: tuibuilder_pel7x64builder0 <tuibuilder@powerel.org>
master
tuibuilder_pel7x64builder0 3 years ago
parent
commit
c007880448
  1. 61
      SPECS/libolm.spec

61
SPECS/libolm.spec

@ -1,105 +1,62 @@
%undefine __cmake_in_source_build
%global appname olm %global appname olm


Name: libolm Name: libolm
Version: 3.1.4 Version: 3.2.1
Release: 1%{?dist} Release: 1%{?dist}

Summary: Double Ratchet cryptographic library Summary: Double Ratchet cryptographic library
License: ASL 2.0 License: ASL 2.0
URL: https://gitlab.matrix.org/matrix-org/%{appname} URL: https://gitlab.matrix.org/matrix-org/%{appname}
Source0: https://gitlab.matrix.org/matrix-org/%{appname}/-/archive/%{version}/%{appname}-%{version}.tar.bz2 Source0: https://gitlab.matrix.org/matrix-org/%{appname}/-/archive/%{version}/%{appname}-%{version}.tar.bz2

BuildRequires: ninja-build BuildRequires: ninja-build
BuildRequires: gcc-c++ BuildRequires: gcc-c++
BuildRequires: cmake BuildRequires: cmake
BuildRequires: gcc BuildRequires: gcc


BuildRequires: python3-devel
BuildRequires: python3-cffi
BuildRequires: python3-future


%description %description
An implementation of the Double Ratchet cryptographic ratchet in C++. An implementation of the Double Ratchet cryptographic ratchet in C++.



%package devel %package devel
Summary: Development files for %{name} Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}

%package python3
Summary: Python 3 bindings for %{name}
%{?python_provide:%python_provide python3-%{appname}}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}

%description devel %description devel
%{summary}. %{summary}.


%description python3
%{summary}.


%prep %prep
%autosetup -n %{appname}-%{version} -p1 %autosetup -n %{appname}-%{version} -p1
mkdir -p %{_target_platform} mkdir -p %{_target_platform}
sed -e "s@/build@/%{_target_platform}@g" -i python/olm_build.py


%build %build
pushd %{_target_platform} pushd %{_target_platform}
%cmake3 -G Ninja \ %cmake3 \
-G Ninja \
-DCMAKE_INSTALL_PREFIX="%{_prefix}" \
-DCMAKE_INSTALL_LIBDIR="%{_libdir}" \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DOLM_TESTS=ON \ -DOLM_TESTS=ON \
.. ..
popd popd
%ninja_build -C %{_target_platform} %ninja_build -C %{_target_platform}


pushd python
%py3_build
popd

%check
pushd %{_target_platform}/tests
ctest --output-on-failure
popd


%install %install
%ninja_install -C %{_target_platform} %ninja_install -C %{_target_platform}


pushd python
%py3_install
popd


%files %files
%license LICENSE %license LICENSE
%doc *.md *.rst docs/*.md %doc *.md *.rst docs/*.md
%{_libdir}/%{name}.so.3* %{_libdir}/%{name}.so.3*



%files devel %files devel
%{_includedir}/%{appname} %{_includedir}/%{appname}
%{_libdir}/%{name}.so %{_libdir}/%{name}.so
%{_libdir}/cmake/Olm %{_libdir}/cmake/Olm


%files python3
%{python3_sitearch}/%{appname}
%{python3_sitearch}/_%{name}.abi3.so
%{python3_sitearch}/python_%{appname}-*.egg-info


%changelog %changelog
* Mon Nov 04 2019 Vitaly Zaitsev <vitaly@easycoding.org> - 3.1.4-1
- Updated to version 3.1.4.
- Added Python 3 bindings.

* Tue Aug 06 2019 Vitaly Zaitsev <vitaly@easycoding.org> - 3.1.3-1
- Updated to version 3.1.3.

* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild

* Sat Jan 05 2019 Vitaly Zaitsev <vitaly@easycoding.org> - 3.0.0-1
- Updated to version 3.0.0.

* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

* Sun Jun 10 2018 Vitaly Zaitsev <vitaly@easycoding.org> - 2.2.2-1
- Initial SPEC release.

Loading…
Cancel
Save