summaryrefslogtreecommitdiff
path: root/python-bcompiler.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-bcompiler.spec')
-rw-r--r--python-bcompiler.spec87
1 files changed, 87 insertions, 0 deletions
diff --git a/python-bcompiler.spec b/python-bcompiler.spec
new file mode 100644
index 0000000..92b3be4
--- /dev/null
+++ b/python-bcompiler.spec
@@ -0,0 +1,87 @@
+%global _empty_manifest_terminate_build 0
+Name: python-bcompiler
+Version: 1.3.23
+Release: 1
+Summary: Program to migrate data for DfT BICC reporting process.
+License: MIT
+URL: https://bitbucket.org/mrlemon/bcompiler
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/44/36/6819ddfb42997718066be9bd0b99ba851d0a342d6ddffd90fabb52b0e30c/bcompiler-1.3.23.tar.gz
+BuildArch: noarch
+
+Requires: python3-openpyxl
+Requires: python3-dateutil
+Requires: python3-colorlog
+
+%description
+* Ensure Python 3.6.2 or later is installed on your system.
+* Ensure git is installed on your system.
+* ``pip install bcompiler``
+* ``bcompiler-init``
+* ``bcompiler --help``
+
+%package -n python3-bcompiler
+Summary: Program to migrate data for DfT BICC reporting process.
+Provides: python-bcompiler
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-bcompiler
+* Ensure Python 3.6.2 or later is installed on your system.
+* Ensure git is installed on your system.
+* ``pip install bcompiler``
+* ``bcompiler-init``
+* ``bcompiler --help``
+
+%package help
+Summary: Development documents and examples for bcompiler
+Provides: python3-bcompiler-doc
+%description help
+* Ensure Python 3.6.2 or later is installed on your system.
+* Ensure git is installed on your system.
+* ``pip install bcompiler``
+* ``bcompiler-init``
+* ``bcompiler --help``
+
+%prep
+%autosetup -n bcompiler-1.3.23
+
+%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-bcompiler -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.23-1
+- Package Spec generated