summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 05:22:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 05:22:10 +0000
commit8d887ea76f3f395847d96c8f2e4f5081df5f8775 (patch)
tree503c50780ad349150f914a406e54b16bf4d0fa0c
parent4075b03f6b6c7c517adddd2db19312a4f6fff9e3 (diff)
automatic import of python-compositesopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-composites.spec95
-rw-r--r--sources1
3 files changed, 97 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f3f7257 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/composites-0.5.25.tar.gz
diff --git a/python-composites.spec b/python-composites.spec
new file mode 100644
index 0000000..43b7065
--- /dev/null
+++ b/python-composites.spec
@@ -0,0 +1,95 @@
+%global _empty_manifest_terminate_build 0
+Name: python-composites
+Version: 0.5.25
+Release: 1
+Summary: Methods to calculate properties of laminated composite materials
+License: 3-Clause BSD
+URL: https://github.com/saullocastro/composites
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1a/10/3166b3fce634588410932e00b5fa0dbacdf36af70a16b2bfad37ff78c5d2/composites-0.5.25.tar.gz
+
+
+%description
+High-performance module to calculate properties of laminated composite
+materials. Usually, this module is used to calculate:
+- A, B, D, E plane-stress stiffness matrices for plates
+-- A, B, D, for classical plate theory (CLT, or CLPT)
+-- E for first-order shear deformation theory (FSDT)
+- Material invariants, trace-normalized or not
+- Lamination parameters based on material invariants
+- Stiffness matrices (ABDE) based on lamination parameters
+
+%package -n python3-composites
+Summary: Methods to calculate properties of laminated composite materials
+Provides: python-composites
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-composites
+High-performance module to calculate properties of laminated composite
+materials. Usually, this module is used to calculate:
+- A, B, D, E plane-stress stiffness matrices for plates
+-- A, B, D, for classical plate theory (CLT, or CLPT)
+-- E for first-order shear deformation theory (FSDT)
+- Material invariants, trace-normalized or not
+- Lamination parameters based on material invariants
+- Stiffness matrices (ABDE) based on lamination parameters
+
+%package help
+Summary: Development documents and examples for composites
+Provides: python3-composites-doc
+%description help
+High-performance module to calculate properties of laminated composite
+materials. Usually, this module is used to calculate:
+- A, B, D, E plane-stress stiffness matrices for plates
+-- A, B, D, for classical plate theory (CLT, or CLPT)
+-- E for first-order shear deformation theory (FSDT)
+- Material invariants, trace-normalized or not
+- Lamination parameters based on material invariants
+- Stiffness matrices (ABDE) based on lamination parameters
+
+%prep
+%autosetup -n composites-0.5.25
+
+%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-composites -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.25-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..44e56c5
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+2a0d546289b627744bf6425bc251fb1d composites-0.5.25.tar.gz