%global _empty_manifest_terminate_build 0 Name: python-keymaker Version: 1.1.0 Release: 1 Summary: Lightweight SSH key management on AWS EC2 License: Apache Software License URL: https://github.com/kislyuk/keymaker Source0: https://mirrors.nju.edu.cn/pypi/web/packages/57/ff/1acfa9a2a0b68744407131892a4906c8fa8128f8c956dd19b9f101ebc15f/keymaker-1.1.0.tar.gz BuildArch: noarch Requires: python3-boto3 Requires: python3-argcomplete %description Keymaker is **the missing link between SSH and IAM accounts on Amazon AWS**. It's a stateless synchronization engine that securely manages the process of SSH public key sharing and verification, user and group synchronization, and home directory sharing (via optional `EFS `_ integration). You, the AWS account administrator, define or import user and group identities in IAM, and instances in your account dynamically retrieve and use those identities to authenticate your users. Keymaker is the modern, minimalistic alternative to **LDAP** or **Active Directory** authentication. %package -n python3-keymaker Summary: Lightweight SSH key management on AWS EC2 Provides: python-keymaker BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-keymaker Keymaker is **the missing link between SSH and IAM accounts on Amazon AWS**. It's a stateless synchronization engine that securely manages the process of SSH public key sharing and verification, user and group synchronization, and home directory sharing (via optional `EFS `_ integration). You, the AWS account administrator, define or import user and group identities in IAM, and instances in your account dynamically retrieve and use those identities to authenticate your users. Keymaker is the modern, minimalistic alternative to **LDAP** or **Active Directory** authentication. %package help Summary: Development documents and examples for keymaker Provides: python3-keymaker-doc %description help Keymaker is **the missing link between SSH and IAM accounts on Amazon AWS**. It's a stateless synchronization engine that securely manages the process of SSH public key sharing and verification, user and group synchronization, and home directory sharing (via optional `EFS `_ integration). You, the AWS account administrator, define or import user and group identities in IAM, and instances in your account dynamically retrieve and use those identities to authenticate your users. Keymaker is the modern, minimalistic alternative to **LDAP** or **Active Directory** authentication. %prep %autosetup -n keymaker-1.1.0 %build %py3_build %install %py3_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/lib64 ]; then find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/bin ]; then find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/sbin ]; then find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-keymaker -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Sun Apr 23 2023 Python_Bot - 1.1.0-1 - Package Spec generated