Search Criteria
Package Details: python-iminuit 2.4.0-1
Git Clone URL: | https://aur.archlinux.org/python-iminuit.git (read-only, click to copy) |
---|---|
Package Base: | python-iminuit |
Description: | Python interface for MINUIT, a physics analysis tool for function minimization. |
Upstream URL: | https://iminuit.readthedocs.io |
Licenses: | |
Submitter: | Universebenzene |
Maintainer: | Universebenzene |
Last Packager: | Universebenzene |
Votes: | 5 |
Popularity: | 0.054613 |
First Submitted: | 2019-01-27 06:22 |
Last Updated: | 2021-02-13 08:00 |
Dependencies (14)
- python-numpy (python-numpy-mkl-bin, python-numpy-openblas, python-numpy-git, python-numpy-mkl)
- python>=3.6 (python-dbg)
- python-matplotlib (python-matplotlib-git) (check)
- python-pytest (check)
- python-scipy (python-scipy-mkl, python-scipy-mkl-bin) (check)
- cmake (cmake-git) (make)
- python-numpy (python-numpy-mkl-bin, python-numpy-openblas, python-numpy-git, python-numpy-mkl) (make)
- python-setuptools (make)
- cython (cython-kivy, cython-git) (optional)
- ipython (ipython-git) (optional)
- python-iminuit-doc (optional) – Documentation for python-iminuit
- python-matplotlib (python-matplotlib-git) (optional)
- python-pytest-cov (optional) – For testing and get a coverage report
- python-sphinx (python-sphinx-git, python-sphinx-2) (optional) – For docs building
Required by (9)
- python-gammapy (check)
- python-gammapy (optional)
- python-iminuit-doc (make)
- python-probfit
- python-sncosmo (optional)
- python-sncosmo (check)
- python-sncosmo-doc (make)
- veusz (optional)
- veusz-git (optional)
Latest Comments
BrainDamage commented on 2020-12-09 09:11
check() fails due to trying to cd to a non-existant directory here:
digging in the PKGBUILD, you're defining pyver in the prepare() function, but that gets executed during source fetching, if one executes build using --noextract that'll fail since it's not run.
I'd suggest you to move the variable definition in the global scope and drop the export, so it's always run when makepkg executes; alternatively since it's only used in the check() function, you could just put it there
Universebenzene commented on 2019-01-27 08:18
@op3 Merge succeeded. Thanks for feedback!
op3 commented on 2019-01-26 17:19
Ah, I suspected that this could be a problem. Apparently, it is possible to create a new package with the correct package base, and then a trusted user can merge the old one into the new one. So this is more complicated than I had assumed.
Something else I noticed: The resulting package contains compiled byte code and is therefore not platform independent, so it is better to replace
arch=('any')
witharch=('i686' 'x86_64')
(and possibly other supported platforms).Thanks for maintaining this package!
Universebenzene commented on 2019-01-26 16:47
@op3 Thanks for reminding. So do you have any idea about how to change the pkgbase without deleting the package?
op3 commented on 2019-01-26 16:37
The pkgbase should be
python-iminuit
instead ofpython2-iminuit
.