automatic version update by autodist [release 1.4.5-1mamba;Tue Nov 22 2022]
This commit is contained in:
parent
9746676b4e
commit
c5c58a12ea
@ -1,25 +1,21 @@
|
|||||||
Name: libpwquality
|
Name: libpwquality
|
||||||
Version: 1.4.4
|
Version: 1.4.5
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: A library for password quality checking and generation of random passwords
|
Summary: A library for password quality checking and generation of random passwords
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://fedorahosted.org/libpwquality/
|
URL: https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
|
||||||
Source: https://github.com/libpwquality/libpwquality/releases/download/libpwquality-%{version}/libpwquality-%{version}.tar.bz2
|
Source: https://github.com/libpwquality/libpwquality/releases/download/libpwquality-%{version}/libpwquality-%{version}.tar.bz2
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libaudit-devel
|
|
||||||
BuildRequires: libcap-ng-devel
|
|
||||||
BuildRequires: libcrack-devel
|
BuildRequires: libcrack-devel
|
||||||
BuildRequires: libpam-devel
|
BuildRequires: libpam-devel
|
||||||
BuildRequires: libpython-devel
|
BuildRequires: libpython3-devel
|
||||||
BuildRequires: libpython27-devel
|
|
||||||
BuildRequires: libz-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
Requires: %{name}-tools = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libpwquality is a library for password quality checking and generation of random passwords that pass the checks.
|
libpwquality is a library for password quality checking and generation of random passwords that pass the checks.
|
||||||
@ -28,12 +24,27 @@ libpwquality is a library for password quality checking and generation of random
|
|||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
## note: you can add this requirement if .pc files are provided by this package
|
Requires: pkg-config
|
||||||
#Requires: pkg-config
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains libraries and header files for developing applications that use %{name}.
|
This package contains libraries and header files for developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package tools
|
||||||
|
Group: Applications/Security
|
||||||
|
Summary: Tools provided with %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description tools
|
||||||
|
This package contains the tools provided with %{name}.
|
||||||
|
|
||||||
|
%package -n python-pwquality
|
||||||
|
Group: System/Libraries/Python
|
||||||
|
Summary: Python bindings to %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description -n python-pwquality
|
||||||
|
This package contains the Python bindings to %{name}.
|
||||||
|
|
||||||
%debug_package
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
@ -41,7 +52,9 @@ This package contains libraries and header files for developing applications tha
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--with-securedir=/%{_lib}/security
|
--with-securedir=%{_libdir}/security \
|
||||||
|
--with-python-binary=python3 \
|
||||||
|
--with-python-rev=%{python3_version}
|
||||||
|
|
||||||
%make
|
%make
|
||||||
|
|
||||||
@ -59,32 +72,39 @@ This package contains libraries and header files for developing applications tha
|
|||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_sysconfdir}/security/pwquality.conf
|
|
||||||
%{_bindir}/pwmake
|
|
||||||
%{_bindir}/pwscore
|
|
||||||
%{_libdir}/libpwquality.so.*
|
%{_libdir}/libpwquality.so.*
|
||||||
%{python_sitearch}/pwquality.so
|
%{_libdir}/security/pam_pwquality.a
|
||||||
%{python_sitearch}/pwquality-%{version}-py*.egg-info
|
%{_libdir}/security/pam_pwquality.so
|
||||||
/%{_lib}/security/pam_pwquality.a
|
|
||||||
/%{_lib}/security/pam_pwquality.la
|
|
||||||
/%{_lib}/security/pam_pwquality.so
|
|
||||||
%{_mandir}/man1/pwmake.1*
|
|
||||||
%{_mandir}/man1/pwscore.1*
|
|
||||||
%{_mandir}/man5/pwquality.conf.5*
|
|
||||||
%{_mandir}/man8/pam_pwquality.8*
|
|
||||||
%doc AUTHORS COPYING
|
%doc AUTHORS COPYING
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/pwquality.h
|
%{_includedir}/pwquality.h
|
||||||
%{_libdir}/libpwquality.a
|
%{_libdir}/libpwquality.a
|
||||||
%{_libdir}/libpwquality.la
|
|
||||||
%{_libdir}/libpwquality.so
|
%{_libdir}/libpwquality.so
|
||||||
%{_libdir}/pkgconfig/pwquality.pc
|
%{_libdir}/pkgconfig/pwquality.pc
|
||||||
%{_mandir}/man3/pwquality.3*
|
%{_mandir}/man3/pwquality.3*
|
||||||
%doc ChangeLog NEWS README
|
%doc ChangeLog NEWS README
|
||||||
|
|
||||||
|
%files tools
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/security/pwquality.conf
|
||||||
|
%{_bindir}/pwmake
|
||||||
|
%{_bindir}/pwscore
|
||||||
|
%{_mandir}/man1/pwmake.1*
|
||||||
|
%{_mandir}/man1/pwscore.1*
|
||||||
|
%{_mandir}/man5/pwquality.conf.5*
|
||||||
|
%{_mandir}/man8/pam_pwquality.8*
|
||||||
|
|
||||||
|
%files -n python-pwquality
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%dir %{python3_sitearch}/pwquality-%{version}-py*.egg
|
||||||
|
%{python3_sitearch}/pwquality-%{version}-py*.egg/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 22 2022 Automatic Build System <autodist@mambasoft.it> 1.4.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Wed Oct 21 2020 Automatic Build System <autodist@mambasoft.it> 1.4.4-1mamba
|
* Wed Oct 21 2020 Automatic Build System <autodist@mambasoft.it> 1.4.4-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user