Compare commits

...

3 Commits
master ... f23

Author SHA1 Message Date
Petr Lautrbach 9d047371eb libsemanage-2.4-5.fc23
- Use fully versioned arch-specific requires
2016-02-28 20:08:18 +01:00
Petr Lautrbach a7c690d87a Use fully versioned arch-specific requires
https://fedoraproject.org/wiki/Packaging:Guidelines#Requiring_Base_Package
2016-02-28 20:07:09 +01:00
Petr Lautrbach c0a03a95a1 make-rhat-patches.sh: use fedora-selinux/selinux.git f23 branch 2015-11-20 12:44:09 +01:00
2 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,7 @@
Summary: SELinux binary policy manipulation library
Name: libsemanage
Version: 2.4
Release: 4%{?dist}
Release: 5%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
Source: https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20150202/libsemanage-%{version}.tar.gz
@ -47,7 +47,7 @@ on binary policies such as customizing policy boolean settings.
%package static
Summary: Static library used to build policy manipulation tools
Group: Development/Libraries
Requires: libsemanage-devel = %{version}-%{release}
Requires: libsemanage-devel%{_isa} = %{version}-%{release}
%description static
The semanage-static package contains the static libraries
@ -56,7 +56,7 @@ needed for developing applications that manipulate binary policies.
%package devel
Summary: Header files and libraries used to build policy manipulation tools
Group: Development/Libraries
Requires: libsemanage = %{version}-%{release} ustr
Requires: %{name}%{?_isa} = %{version}-%{release} ustr
%description devel
The semanage-devel package contains the libraries and header files
@ -65,7 +65,7 @@ needed for developing applications that manipulate binary policies.
%package python
Summary: semanage python bindings for libsemanage
Group: Development/Libraries
Requires: libsemanage = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description python
The libsemanage-python package contains the python bindings for developing
@ -75,7 +75,7 @@ SELinux management applications.
%package python3
Summary: semanage python 3 bindings for libsemanage
Group: Development/Libraries
Requires: libsemanage = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: libselinux-python3
%description python3
@ -191,6 +191,9 @@ rm -rf ${RPM_BUILD_ROOT}
%endif # if with_python3
%changelog
* Sun Feb 28 2016 Petr Lautrbach <plautrba@redhat.com> 2.4-5
- Use fully versioned arch-specific requires
* Fri Sep 04 2015 Petr Lautrbach <plautrba@redhat.com> 2.4-4
- Save homedir_template in the policy store for genhomedircon
https://bugs.gentoo.org/558686

View File

@ -1,7 +1,7 @@
#!/bin/bash
LIBSEMANAGE_VERSION=2.4
BRANCH=master
BRANCH=f23
REBASEDIR=`mktemp -d rebase.XXXXXX`
pushd $REBASEDIR