diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:54:59 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:54:59 +0000 |
| commit | 1fd78683270561f606b97f174747ef3858c47a79 (patch) | |
| tree | f8a6309c6635b337dcdef3d83d2dc3eb7e41c865 | |
| parent | e1ee58639e67cf2e1d18a3b5027c9bcd3d31684c (diff) | |
automatic import of python-cassandra-medusa
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-cassandra-medusa.spec | 101 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 103 insertions, 0 deletions
@@ -0,0 +1 @@ +/cassandra-medusa-0.14.0.tar.gz diff --git a/python-cassandra-medusa.spec b/python-cassandra-medusa.spec new file mode 100644 index 0000000..123a48f --- /dev/null +++ b/python-cassandra-medusa.spec @@ -0,0 +1,101 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cassandra-medusa +Version: 0.14.0 +Release: 1 +Summary: Apache Cassandra backup and restore tool +License: Apache +URL: https://github.com/thelastpickle/cassandra-medusa +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ff/ae/69b7e2508e882a7fd9cc60dc531e5ede0934d6cefcaae1fc936c72ab1e49/cassandra-medusa-0.14.0.tar.gz +BuildArch: noarch + +Requires: python3-dateutil +Requires: python3-Click +Requires: python3-click-aliases +Requires: python3-PyYAML +Requires: python3-cassandra-driver +Requires: python3-psutil +Requires: python3-ffwd +Requires: python3-apache-libcloud +Requires: python3-lockfile +Requires: python3-pyOpenSSL +Requires: python3-cryptography +Requires: python3-pycryptodome +Requires: python3-retrying +Requires: python3-parallel-ssh +Requires: python3-ssh2-python +Requires: python3-ssh-python +Requires: python3-requests +Requires: python3-protobuf +Requires: python3-grpcio +Requires: python3-grpcio-health-checking +Requires: python3-grpcio-tools +Requires: python3-gevent +Requires: python3-greenlet +Requires: python3-fasteners +Requires: python3-datadog +Requires: python3-botocore +Requires: python3-dnspython +Requires: python3-azure-cli +Requires: python3-awscli + +%description +Medusa is an Apache Cassandra backup system. + +%package -n python3-cassandra-medusa +Summary: Apache Cassandra backup and restore tool +Provides: python-cassandra-medusa +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cassandra-medusa +Medusa is an Apache Cassandra backup system. + +%package help +Summary: Development documents and examples for cassandra-medusa +Provides: python3-cassandra-medusa-doc +%description help +Medusa is an Apache Cassandra backup system. + +%prep +%autosetup -n cassandra-medusa-0.14.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-cassandra-medusa -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.14.0-1 +- Package Spec generated @@ -0,0 +1 @@ +34c1871700f92f73f7998d7284fb30f1 cassandra-medusa-0.14.0.tar.gz |
