summaryrefslogtreecommitdiff
path: root/python-trash-cli.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-18 04:25:12 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-18 04:25:12 +0000
commit40106236081689bbac2d4f92d6d000e6a65f0aeb (patch)
treea5468c971790f4b76a7cf6130dd25f87786b3c09 /python-trash-cli.spec
parent3151b11ac200f60317896ba5e95a55c5b4c4afb7 (diff)
automatic import of python-trash-cli
Diffstat (limited to 'python-trash-cli.spec')
-rw-r--r--python-trash-cli.spec105
1 files changed, 105 insertions, 0 deletions
diff --git a/python-trash-cli.spec b/python-trash-cli.spec
new file mode 100644
index 0000000..f4afb5f
--- /dev/null
+++ b/python-trash-cli.spec
@@ -0,0 +1,105 @@
+%global _empty_manifest_terminate_build 0
+Name: python-trash-cli
+Version: 0.23.2.13.2
+Release: 1
+Summary: Command line interface to FreeDesktop.org Trash.
+License: GPL v2
+URL: https://github.com/andreafrancia/trash-cli
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/42/2c/f9e598025b133d170e35becaef27fdfa86c7279d2715d20b517468c80c76/trash-cli-0.23.2.13.2.tar.gz
+BuildArch: noarch
+
+
+%description
+|Downloads|
+|Donate|_
+`简体中文`_
+trash-cli trashes files recording the original path, deletion date, and
+permissions. It uses the same trashcan used by KDE, GNOME, and XFCE, but you
+can invoke it from the command line (and scripts).
+It provides these commands::
+ trash-put trash files and directories.
+ trash-empty empty the trashcan(s).
+ trash-list list trashed files.
+ trash-restore restore a trashed file.
+ trash-rm remove individual files from the trashcan.
+
+%package -n python3-trash-cli
+Summary: Command line interface to FreeDesktop.org Trash.
+Provides: python-trash-cli
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-trash-cli
+|Downloads|
+|Donate|_
+`简体中文`_
+trash-cli trashes files recording the original path, deletion date, and
+permissions. It uses the same trashcan used by KDE, GNOME, and XFCE, but you
+can invoke it from the command line (and scripts).
+It provides these commands::
+ trash-put trash files and directories.
+ trash-empty empty the trashcan(s).
+ trash-list list trashed files.
+ trash-restore restore a trashed file.
+ trash-rm remove individual files from the trashcan.
+
+%package help
+Summary: Development documents and examples for trash-cli
+Provides: python3-trash-cli-doc
+%description help
+|Downloads|
+|Donate|_
+`简体中文`_
+trash-cli trashes files recording the original path, deletion date, and
+permissions. It uses the same trashcan used by KDE, GNOME, and XFCE, but you
+can invoke it from the command line (and scripts).
+It provides these commands::
+ trash-put trash files and directories.
+ trash-empty empty the trashcan(s).
+ trash-list list trashed files.
+ trash-restore restore a trashed file.
+ trash-rm remove individual files from the trashcan.
+
+%prep
+%autosetup -n trash-cli-0.23.2.13.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-trash-cli -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.23.2.13.2-1
+- Package Spec generated