From a63d1ddc8c6a1de77dcf5d539ccf1cee890e6fd4 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 06:51:55 +0000 Subject: automatic import of python-keymaker --- .gitignore | 1 + python-keymaker.spec | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 91 insertions(+) create mode 100644 python-keymaker.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..5f1cfd4 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/keymaker-1.1.0.tar.gz diff --git a/python-keymaker.spec b/python-keymaker.spec new file mode 100644 index 0000000..fc1a475 --- /dev/null +++ b/python-keymaker.spec @@ -0,0 +1,89 @@ +%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 +* Tue Apr 11 2023 Python_Bot - 1.1.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..6cd8a3c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +0a3ec08f4768eaa1d3a0ac71cd703fe0 keymaker-1.1.0.tar.gz -- cgit v1.2.3