-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpython-StructArray_autonc.spec
More file actions
55 lines (42 loc) · 1.67 KB
/
python-StructArray_autonc.spec
File metadata and controls
55 lines (42 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Created by pyp2rpm-3.2.3
%global pypi_name StructArray
Name: python-%{pypi_name}
Version: 0.1
Release: 1%{?dist}
Summary: Fast operations on arrays of structured data
License: MIT
URL: http://matthewmarshall.org/projects/structarray/
Source0: %{pypi_source}
BuildRequires: python2-devel
BuildRequires: python2dist(setuptools)
%description
StructArray StructArray allows you to perform fast arithmetic operations on
arrays of structured (or unstructured) data.This library is useful for
performing the same operation on every item in an I've included an example
showing a simple particle engine. It animates 10,000 particles without much
trouble.*This is the "release early" part of the "release early, release often"
equation. It's...
%package -n python2-%{pypi_name}
Summary: %{summary}
%{?python_provide:%python_provide python2-%{pypi_name}}
%description -n python2-%{pypi_name}
StructArray StructArray allows you to perform fast arithmetic operations on
arrays of structured (or unstructured) data.This library is useful for
performing the same operation on every item in an I've included an example
showing a simple particle engine. It animates 10,000 particles without much
trouble.*This is the "release early" part of the "release early, release often"
equation. It's...
%prep
%autosetup -n %{pypi_name}-%{version}
%build
%py2_build
%install
%py2_install
%check
%{__python2} setup.py test
%files -n python2-%{pypi_name}
%{python2_sitearch}/%{pypi_name}
%{python2_sitearch}/%{pypi_name}-%{version}-py%{python2_version}.egg-info
%changelog
* Wed Dec 06 2017 Michal Cyprian <mcyprian@redhat.com> - 0.1-1
- Initial package.