Compare commits
10 Commits
9ae14422d3
...
5cb05ff2b9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5cb05ff2b9 | ||
|
|
dc49c8e735 | ||
|
|
a15174b3ca | ||
|
|
6cb3034eb4 | ||
|
|
fbcf4b9190 | ||
|
|
c332bec1c3 | ||
|
|
a6883f52aa | ||
|
|
c115ec27f2 | ||
|
|
9a28df7247 | ||
|
|
0c5616b3b4 |
Binary file not shown.
BIN
authselect-1.4.3.tar.gz
Normal file
BIN
authselect-1.4.3.tar.gz
Normal file
Binary file not shown.
@ -1,47 +0,0 @@
|
||||
From 9b2b28a314e56f6334b99de9e5345811a6385ca4 Mon Sep 17 00:00:00 2001
|
||||
From: yixiangzhike <yixiangzhike007@163.com>
|
||||
Date: Thu, 13 Jan 2022 10:58:52 +0800
|
||||
Subject: [PATCH] revert "remove authselect compat package"
|
||||
|
||||
---
|
||||
Makefile.am | 15 +--------------
|
||||
1 file changed, 1 insertion(+), 14 deletions(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 9e1ea66..5ceeaca 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -2,6 +2,7 @@ SUBDIRS= \
|
||||
po \
|
||||
profiles \
|
||||
src/common \
|
||||
+ src/compat \
|
||||
src/lib \
|
||||
src/cli \
|
||||
src/tests \
|
||||
@@ -23,22 +24,8 @@ EXTRA_DIST = \
|
||||
scripts/release-version.sh \
|
||||
scripts/po-linguas.sh \
|
||||
scripts/zanata-hooks.sh \
|
||||
- src/compat/authcompat_ConfigSnippet.py \
|
||||
- src/compat/authcompat_EnvironmentFile.py \
|
||||
- src/compat/authcompat_Options.py \
|
||||
- src/compat/authcompat.py.in.in \
|
||||
- src/compat/Makefile.am \
|
||||
- src/compat/Makefile.in \
|
||||
- src/compat/snippets \
|
||||
- src/compat/snippets/authconfig-krb.conf \
|
||||
- src/compat/snippets/authconfig-sssd.conf \
|
||||
$(NULL)
|
||||
|
||||
-CLEANFILES = \
|
||||
- src/compat/authcompat.py.in \
|
||||
- src/compat/Makefile \
|
||||
- $(NULL)
|
||||
-
|
||||
# Create authselect directories
|
||||
authselect_config_dir=@AUTHSELECT_CONFIG_DIR@
|
||||
authselect_vendor_dir=@AUTHSELECT_VENDOR_DIR@
|
||||
--
|
||||
1.8.3.1
|
||||
|
||||
@ -1,19 +1,17 @@
|
||||
Name: authselect
|
||||
Version: 1.2.4
|
||||
Release: 3
|
||||
Version: 1.4.3
|
||||
Release: 1
|
||||
Summary: A tool to select system authentication and identity sources from a list of supported profiles
|
||||
License: GPLv3+
|
||||
URL: https://github.com/authselect/authselect
|
||||
Source0: https://github.com/authselect/authselect/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
Patch0: authselect-revert-remove-authselect-compat-package.patch
|
||||
|
||||
BuildRequires: autoconf gettext-devel automake libtool popt-devel libcmocka-devel
|
||||
BuildRequires: m4 gcc pkgconfig pkgconfig(popt) po4a asciidoc python3-devel
|
||||
BuildRequires: libselinux-devel
|
||||
Requires: grep sed systemd gawk coreutils findutils pam >= 1.3.1
|
||||
Obsoletes: authselect-libs
|
||||
Provides: authselect-libs
|
||||
Obsoletes: authselect-libs < %{version}-%{release}
|
||||
Provides: authselect-libs = %{version}-%{release}
|
||||
|
||||
%description
|
||||
Authselect is designed to be a replacement for authconfig (which is the default tool for this
|
||||
@ -59,7 +57,10 @@ package is used to develop a front-end for the authselect library.
|
||||
|
||||
%build
|
||||
autoreconf -ivf
|
||||
%configure
|
||||
%configure \
|
||||
--with-compat \
|
||||
--with-pythonbin=%{__python3}
|
||||
|
||||
%make_build
|
||||
|
||||
%install
|
||||
@ -79,6 +80,8 @@ autoreconf -ivf
|
||||
%postun -n %{name} -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%dir %{_sysconfdir}/authselect
|
||||
%dir %{_sysconfdir}/authselect/custom
|
||||
%defattr(-,root,root)
|
||||
%license COPYING
|
||||
%{_bindir}/authselect
|
||||
@ -101,13 +104,25 @@ autoreconf -ivf
|
||||
%files help
|
||||
%defattr(-,root,root)
|
||||
%{_datadir}/doc/authselect/*
|
||||
%exclude %{_datadir}/doc/authselect/README.md
|
||||
%{_mandir}/*
|
||||
|
||||
%posttrans compat
|
||||
sed -i -E '/^\w+=$/d' %{_sysconfdir}/security/pwquality.conf.d/10-authconfig-pwquality.conf &> /dev/null
|
||||
exit 0
|
||||
|
||||
%changelog
|
||||
* Mon Dec 18 2023 yixiangzhike <yixiangzhike007@163.com> - 1.4.3-1
|
||||
- update to 1.4.3
|
||||
|
||||
* Tue Jan 17 2023 yixiangzhike <yixiangzhike007@163.com> - 1.4.2-1
|
||||
- update to 1.4.2
|
||||
|
||||
* Mon Aug 15 2022 panxiaohe <panxh.life@foxmail.com> - 1.2.4-6
|
||||
- cli: fix memory handling with new popt library
|
||||
|
||||
* Sun May 15 2022 yixiangzhike <yixiangzhike007@163.com> - 1.2.4-5
|
||||
- provide default directory /etc/authselect
|
||||
|
||||
* Fri Apr 29 2022 yixiangzhike <yixiangzhike007@163.com> - 1.2.4-4
|
||||
- delete duplicate file README.md from authselect-help
|
||||
|
||||
* Mon Mar 21 2022 yixiangzhike <yixiangzhike007@163.com> - 1.2.4-3
|
||||
- fix change date for version 1.2.4-2 in changelog
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user