diff options
| author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-07 13:14:41 +0000 | 
|---|---|---|
| committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-07 13:14:41 +0000 | 
| commit | 7d147541268f22e38ec23c9a01316a74cb1e34f0 (patch) | |
| tree | c4830600380eb3e6556b7e9c51496d62fad3a9d3 | |
| parent | ff62f3d5d8c2684f4e21c845078f8966b67084f8 (diff) | |
automatic import of python-aiosecretsdump
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-aiosecretsdump.spec | 84 | ||||
| -rw-r--r-- | sources | 1 | 
3 files changed, 86 insertions, 0 deletions
@@ -0,0 +1 @@ +/aiosecretsdump-0.0.2.tar.gz diff --git a/python-aiosecretsdump.spec b/python-aiosecretsdump.spec new file mode 100644 index 0000000..d191566 --- /dev/null +++ b/python-aiosecretsdump.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name:		python-aiosecretsdump +Version:	0.0.2 +Release:	1 +Summary:	Secretsdump for aiosmb +License:	MIT License +URL:		https://github.com/skelsec/aiosecretsdump +Source0:	https://mirrors.nju.edu.cn/pypi/web/packages/6a/a2/62c04eb28868efae52f330e611bf3d84d9c40dcf941e738b9e8fe3f51c85/aiosecretsdump-0.0.2.tar.gz +BuildArch:	noarch + +Requires:	python3-aiosmb +Requires:	python3-pypykatz +Requires:	python3-tqdm + +%description +Secretsdump for aiosmb + + + + +%package -n python3-aiosecretsdump +Summary:	Secretsdump for aiosmb +Provides:	python-aiosecretsdump +BuildRequires:	python3-devel +BuildRequires:	python3-setuptools +BuildRequires:	python3-pip +%description -n python3-aiosecretsdump +Secretsdump for aiosmb + + + + +%package help +Summary:	Development documents and examples for aiosecretsdump +Provides:	python3-aiosecretsdump-doc +%description help +Secretsdump for aiosmb + + + + +%prep +%autosetup -n aiosecretsdump-0.0.2 + +%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-aiosecretsdump -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Mar 07 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.2-1 +- Package Spec generated @@ -0,0 +1 @@ +c58d998a6bd3ceeefd569a90ede11031  aiosecretsdump-0.0.2.tar.gz  | 
