summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 07:14:50 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 07:14:50 +0000
commitbe1cbc9183ee75c73a6a8bf80d0a94ea47a6f5f5 (patch)
treecac6c0d2accfe373c0fbf0f55e556c3e0d216fa8
parent37e8876799a8565939eeec0fdff95869f3a00857 (diff)
automatic import of python-j2cli-3
-rw-r--r--.gitignore1
-rw-r--r--python-j2cli-3.spec87
-rw-r--r--sources1
3 files changed, 89 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..336516d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/j2cli_3-0.0.1.tar.gz
diff --git a/python-j2cli-3.spec b/python-j2cli-3.spec
new file mode 100644
index 0000000..3c711f0
--- /dev/null
+++ b/python-j2cli-3.spec
@@ -0,0 +1,87 @@
+%global _empty_manifest_terminate_build 0
+Name: python-j2cli-3
+Version: 0.0.1
+Release: 1
+Summary: Command-line interface to Jinja2 for templating in shell scripts.
+License: BSD
+URL: https://github.com/leumas95/j2cli_3
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/34/43/48e3517472891ef0f1bfbb443ddef844516e9da74f877332a80b06c1c61b/j2cli_3-0.0.1.tar.gz
+BuildArch: noarch
+
+
+%description
+Command-line interface to [Jinja2](http://jinja.pocoo.org/docs/) for templating in shell scripts.
+Features:
+* Jinja2 templating
+* Allows to use environment variables! Hello [Docker](http://www.docker.com/) :)
+* INI, YAML, JSON data sources supported
+Based on [kolypto/j2cli](https://github.com/kolypto/j2cli)
+
+%package -n python3-j2cli-3
+Summary: Command-line interface to Jinja2 for templating in shell scripts.
+Provides: python-j2cli-3
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-j2cli-3
+Command-line interface to [Jinja2](http://jinja.pocoo.org/docs/) for templating in shell scripts.
+Features:
+* Jinja2 templating
+* Allows to use environment variables! Hello [Docker](http://www.docker.com/) :)
+* INI, YAML, JSON data sources supported
+Based on [kolypto/j2cli](https://github.com/kolypto/j2cli)
+
+%package help
+Summary: Development documents and examples for j2cli-3
+Provides: python3-j2cli-3-doc
+%description help
+Command-line interface to [Jinja2](http://jinja.pocoo.org/docs/) for templating in shell scripts.
+Features:
+* Jinja2 templating
+* Allows to use environment variables! Hello [Docker](http://www.docker.com/) :)
+* INI, YAML, JSON data sources supported
+Based on [kolypto/j2cli](https://github.com/kolypto/j2cli)
+
+%prep
+%autosetup -n j2cli-3-0.0.1
+
+%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-j2cli-3 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..50fa515
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+35d82dbf59a9da0a54e223fce08d1af5 j2cli_3-0.0.1.tar.gz