summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-29 13:23:13 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-29 13:23:13 +0000
commit4ec4e9a0a8cff0e960f2529b5fbab1e8a9ca3139 (patch)
treee59aeef6602b75070b2829d5875d7c5defda32cc
parentee77f8e97c41ef9e5c63bf0dc5ccc46bc79ac4cd (diff)
automatic import of python-cfelpyutils
-rw-r--r--.gitignore1
-rw-r--r--python-cfelpyutils.spec383
-rw-r--r--sources1
3 files changed, 385 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..96b8156 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/cfelpyutils-2.0.6.tar.gz
diff --git a/python-cfelpyutils.spec b/python-cfelpyutils.spec
new file mode 100644
index 0000000..60b42f0
--- /dev/null
+++ b/python-cfelpyutils.spec
@@ -0,0 +1,383 @@
+%global _empty_manifest_terminate_build 0
+Name: python-cfelpyutils
+Version: 2.0.6
+Release: 1
+Summary: Utility functions and classes for CFEL software projects
+License: GNU General Public License v3.0
+URL: https://gitlab.desy.de/cfel-sc-public/cfelpyutils
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c0/0d/1b4aa9457cd12d3d982f763ab38b7d9a010eca1bda9977fbab26fa9673cd/cfelpyutils-2.0.6.tar.gz
+BuildArch: noarch
+
+Requires: python3-h5py
+Requires: python3-mypy-extensions
+Requires: python3-numpy
+Requires: python3-pandas
+Requires: python3-typing
+
+%description
+# The CFELPyUtils Library
+
+## Introduction
+
+CFELPyUtils is a utility library written in Python and developed at the Center For Free
+Electron Laser Science (CFEL) in Hamburg. It contains several functions and classes
+that perform various tasks related to the processing of x-ray imaging data. It is used by
+several internal and released CFEL software projects.
+
+### Features
+
+- Read and apply geometry information to x-ray detector data
+- peak finding algorithm (new in v2.0)
+- calibration tool for the AGIPD 1M detector (new in v2.0)
+- module for reading [CrystFEL](https://www.desy.de/~twhite/crystfel/) streams (new in v2.0)
+
+Please see the [migration guide](#migration-guide) below before upgrading from CFELPyUtils 0.x or 1.x.
+
+## Installation
+
+The CFELPyUtils library is available on the [Python Package Index](https://pypi.org/)
+(PyPI). It can be installed using the 'pip' command:
+
+ pip install cfelpyutils
+
+For Python 2, please use the 1.0 version.
+
+ pip install cfelpyutils==1.0.1
+
+The library can also be installed manually by checking out this repository and running:
+
+ python setup.py install
+
+### Migration Guide
+
+The following table lists functions for which the module affiliation has changes in v2.0.
+Please replace all old occurances with the new ones.
+
+| `cfelpyutils-0.x,-1.x` | `cfelpytuils-2` |
+| ---------------------- | --------------- |
+| `geometry_utils.compute_pix_maps()` | `geometry.compute_pix_maps()` |
+| `geometry_utils.compute_visualization_pix_maps()` | `geometry.compute_visualization_pix_maps()` |
+| `geometry_utils.apply_geometry_to_data()` | `geometry.apply_geometry_to_data()` |
+| `crystfel_utils.load_crystfel_geometry()` | `geometry.load_crystfel_geometry()` |
+
+Please note that `geometry.load_crystfel_geometry()` now returns a namedtuple of `geometry.CrystFELGeometry`.
+Previously it returned only a `geometry.TypeDetector`.
+This is not the first element of the tuple.
+
+If your code did this before
+
+```python
+from cfelpyutils.crystfel_utils import load_crystfel_geometry
+geometry = load_crystfel_geometry(path_to_geometry_file)
+```
+
+it needs to be changed to something like
+
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple.detector
+```
+or
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = cfelpyutils.geometry.load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple[0]
+```
+
+## Contributors
+
+The CFELPyUtils library is currently developed in the lab of
+[Henry Chapman](https://cid.cfel.de/) at the Center For Free Electron Laser Science
+in Hamburg.
+
+Many people from different institutions worlwide contribute code, testing and support
+to the project:
+
+* Valerio Mariani
+* Anton Barty
+* Andrew Morgan
+* Thomas A. White
+* Thomas Kluyver
+* Philipp Middendorf
+* Luca Gelisio
+* Florian Lauck
+
+If you have any questions or want to contribute, please [contact us](mailto:sc@cfel.de).
+
+## Documentation
+
+Documentation for the CFELPyUtils is available
+on [GitLab at DESY](https://cfel-sc-public.pages.desy.de/cfelpyutils/) and
+in the [docs/](docs) of the [repository](https://gitlab.desy.de/cfel-sc-public/cfelpyutils).
+
+## Source Code
+
+The source code of the CFELPyUtils library can be found on the DESY GitLab instance:
+https://gitlab.desy.de/cfel-sc-public/cfelpyutils
+
+
+
+
+%package -n python3-cfelpyutils
+Summary: Utility functions and classes for CFEL software projects
+Provides: python-cfelpyutils
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-cfelpyutils
+# The CFELPyUtils Library
+
+## Introduction
+
+CFELPyUtils is a utility library written in Python and developed at the Center For Free
+Electron Laser Science (CFEL) in Hamburg. It contains several functions and classes
+that perform various tasks related to the processing of x-ray imaging data. It is used by
+several internal and released CFEL software projects.
+
+### Features
+
+- Read and apply geometry information to x-ray detector data
+- peak finding algorithm (new in v2.0)
+- calibration tool for the AGIPD 1M detector (new in v2.0)
+- module for reading [CrystFEL](https://www.desy.de/~twhite/crystfel/) streams (new in v2.0)
+
+Please see the [migration guide](#migration-guide) below before upgrading from CFELPyUtils 0.x or 1.x.
+
+## Installation
+
+The CFELPyUtils library is available on the [Python Package Index](https://pypi.org/)
+(PyPI). It can be installed using the 'pip' command:
+
+ pip install cfelpyutils
+
+For Python 2, please use the 1.0 version.
+
+ pip install cfelpyutils==1.0.1
+
+The library can also be installed manually by checking out this repository and running:
+
+ python setup.py install
+
+### Migration Guide
+
+The following table lists functions for which the module affiliation has changes in v2.0.
+Please replace all old occurances with the new ones.
+
+| `cfelpyutils-0.x,-1.x` | `cfelpytuils-2` |
+| ---------------------- | --------------- |
+| `geometry_utils.compute_pix_maps()` | `geometry.compute_pix_maps()` |
+| `geometry_utils.compute_visualization_pix_maps()` | `geometry.compute_visualization_pix_maps()` |
+| `geometry_utils.apply_geometry_to_data()` | `geometry.apply_geometry_to_data()` |
+| `crystfel_utils.load_crystfel_geometry()` | `geometry.load_crystfel_geometry()` |
+
+Please note that `geometry.load_crystfel_geometry()` now returns a namedtuple of `geometry.CrystFELGeometry`.
+Previously it returned only a `geometry.TypeDetector`.
+This is not the first element of the tuple.
+
+If your code did this before
+
+```python
+from cfelpyutils.crystfel_utils import load_crystfel_geometry
+geometry = load_crystfel_geometry(path_to_geometry_file)
+```
+
+it needs to be changed to something like
+
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple.detector
+```
+or
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = cfelpyutils.geometry.load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple[0]
+```
+
+## Contributors
+
+The CFELPyUtils library is currently developed in the lab of
+[Henry Chapman](https://cid.cfel.de/) at the Center For Free Electron Laser Science
+in Hamburg.
+
+Many people from different institutions worlwide contribute code, testing and support
+to the project:
+
+* Valerio Mariani
+* Anton Barty
+* Andrew Morgan
+* Thomas A. White
+* Thomas Kluyver
+* Philipp Middendorf
+* Luca Gelisio
+* Florian Lauck
+
+If you have any questions or want to contribute, please [contact us](mailto:sc@cfel.de).
+
+## Documentation
+
+Documentation for the CFELPyUtils is available
+on [GitLab at DESY](https://cfel-sc-public.pages.desy.de/cfelpyutils/) and
+in the [docs/](docs) of the [repository](https://gitlab.desy.de/cfel-sc-public/cfelpyutils).
+
+## Source Code
+
+The source code of the CFELPyUtils library can be found on the DESY GitLab instance:
+https://gitlab.desy.de/cfel-sc-public/cfelpyutils
+
+
+
+
+%package help
+Summary: Development documents and examples for cfelpyutils
+Provides: python3-cfelpyutils-doc
+%description help
+# The CFELPyUtils Library
+
+## Introduction
+
+CFELPyUtils is a utility library written in Python and developed at the Center For Free
+Electron Laser Science (CFEL) in Hamburg. It contains several functions and classes
+that perform various tasks related to the processing of x-ray imaging data. It is used by
+several internal and released CFEL software projects.
+
+### Features
+
+- Read and apply geometry information to x-ray detector data
+- peak finding algorithm (new in v2.0)
+- calibration tool for the AGIPD 1M detector (new in v2.0)
+- module for reading [CrystFEL](https://www.desy.de/~twhite/crystfel/) streams (new in v2.0)
+
+Please see the [migration guide](#migration-guide) below before upgrading from CFELPyUtils 0.x or 1.x.
+
+## Installation
+
+The CFELPyUtils library is available on the [Python Package Index](https://pypi.org/)
+(PyPI). It can be installed using the 'pip' command:
+
+ pip install cfelpyutils
+
+For Python 2, please use the 1.0 version.
+
+ pip install cfelpyutils==1.0.1
+
+The library can also be installed manually by checking out this repository and running:
+
+ python setup.py install
+
+### Migration Guide
+
+The following table lists functions for which the module affiliation has changes in v2.0.
+Please replace all old occurances with the new ones.
+
+| `cfelpyutils-0.x,-1.x` | `cfelpytuils-2` |
+| ---------------------- | --------------- |
+| `geometry_utils.compute_pix_maps()` | `geometry.compute_pix_maps()` |
+| `geometry_utils.compute_visualization_pix_maps()` | `geometry.compute_visualization_pix_maps()` |
+| `geometry_utils.apply_geometry_to_data()` | `geometry.apply_geometry_to_data()` |
+| `crystfel_utils.load_crystfel_geometry()` | `geometry.load_crystfel_geometry()` |
+
+Please note that `geometry.load_crystfel_geometry()` now returns a namedtuple of `geometry.CrystFELGeometry`.
+Previously it returned only a `geometry.TypeDetector`.
+This is not the first element of the tuple.
+
+If your code did this before
+
+```python
+from cfelpyutils.crystfel_utils import load_crystfel_geometry
+geometry = load_crystfel_geometry(path_to_geometry_file)
+```
+
+it needs to be changed to something like
+
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple.detector
+```
+or
+```python
+from cfelpyutils.geometry import load_crystfel_geometry
+geometry_tuple = cfelpyutils.geometry.load_crystfel_geometry(path_to_geometry_file)
+geometry = geometry_tuple[0]
+```
+
+## Contributors
+
+The CFELPyUtils library is currently developed in the lab of
+[Henry Chapman](https://cid.cfel.de/) at the Center For Free Electron Laser Science
+in Hamburg.
+
+Many people from different institutions worlwide contribute code, testing and support
+to the project:
+
+* Valerio Mariani
+* Anton Barty
+* Andrew Morgan
+* Thomas A. White
+* Thomas Kluyver
+* Philipp Middendorf
+* Luca Gelisio
+* Florian Lauck
+
+If you have any questions or want to contribute, please [contact us](mailto:sc@cfel.de).
+
+## Documentation
+
+Documentation for the CFELPyUtils is available
+on [GitLab at DESY](https://cfel-sc-public.pages.desy.de/cfelpyutils/) and
+in the [docs/](docs) of the [repository](https://gitlab.desy.de/cfel-sc-public/cfelpyutils).
+
+## Source Code
+
+The source code of the CFELPyUtils library can be found on the DESY GitLab instance:
+https://gitlab.desy.de/cfel-sc-public/cfelpyutils
+
+
+
+
+%prep
+%autosetup -n cfelpyutils-2.0.6
+
+%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-cfelpyutils -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.6-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..4b8bfb4
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+c3091e95ff7a0bf64060b94cc8c12244 cfelpyutils-2.0.6.tar.gz