summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 07:14:43 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 07:14:43 +0000
commit1ec3bbf587754b4a8e1781cdb9e044601a5af463 (patch)
tree99a9df5ef44c1bce5c3be03e3f6f5be31c7c02ed
parentb4fae5d849081cf0ec03a65702c30f3208bd27ff (diff)
automatic import of python-zgitignoreopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-zgitignore.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8162c85 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/zgitignore-1.0.0.tar.gz
diff --git a/python-zgitignore.spec b/python-zgitignore.spec
new file mode 100644
index 0000000..3f5e0a1
--- /dev/null
+++ b/python-zgitignore.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-zgitignore
+Version: 1.0.0
+Release: 1
+Summary: Check if a file is ignored by a .zgitignore file, compatible with .gitignore syntax
+License: MIT
+URL: https://github.com/zb3/zgitignore
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/93/f4/1b5402504a63973a42ac224179f0ef5c1169f3c59f4b725ac23339970158/zgitignore-1.0.0.tar.gz
+BuildArch: noarch
+
+
+%description
+zgitignore is a small library to check if a file has been excluded by a ``.zgitignore`` file (those are compatible with ``.gitignore`` / ``.dockerignore`` files).
+
+%package -n python3-zgitignore
+Summary: Check if a file is ignored by a .zgitignore file, compatible with .gitignore syntax
+Provides: python-zgitignore
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-zgitignore
+zgitignore is a small library to check if a file has been excluded by a ``.zgitignore`` file (those are compatible with ``.gitignore`` / ``.dockerignore`` files).
+
+%package help
+Summary: Development documents and examples for zgitignore
+Provides: python3-zgitignore-doc
+%description help
+zgitignore is a small library to check if a file has been excluded by a ``.zgitignore`` file (those are compatible with ``.gitignore`` / ``.dockerignore`` files).
+
+%prep
+%autosetup -n zgitignore-1.0.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-zgitignore -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..18687cf
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+71a96f08d55b3900e5792cf7484ad5d8 zgitignore-1.0.0.tar.gz