]> git.pld-linux.org Git - packages/hwloc.git/blob - hwloc.spec
- updated to 1.9
[packages/hwloc.git] / hwloc.spec
1 # TODO: CUDA >= 30.20, NVML/nvidia-ml on bcond?
2 # kerrighed >= 2.0 ?
3 # myriexpress ?
4 Summary:        Portable Hardware Locality
5 Summary(pl.UTF-8):      Przenośna lokalizacja sprzętu
6 Name:           hwloc
7 Version:        1.9
8 Release:        1
9 License:        BSD
10 Group:          Applications/System
11 Source0:        http://www.open-mpi.org/software/hwloc/v%{version}/downloads/%{name}-%{version}.tar.bz2
12 # Source0-md5:  1954f690211227cb0a665624aab6aaa6
13 URL:            http://www.open-mpi.org/projects/hwloc/
14 BuildRequires:  OpenCL-devel
15 BuildRequires:  OpenGL-devel
16 BuildRequires:  cairo-devel
17 BuildRequires:  libXNVCtrl-devel
18 BuildRequires:  libibverbs-devel
19 BuildRequires:  libltdl-devel
20 BuildRequires:  libstdc++-devel
21 BuildRequires:  libxml2-devel >= 2.0
22 BuildRequires:  ncurses-devel
23 BuildRequires:  numactl-devel
24 BuildRequires:  pkgconfig >= 1:0.9.0
25 BuildRequires:  xorg-lib-libX11-devel
26 BuildRequires:  xorg-lib-libXext-devel
27 BuildRequires:  xorg-lib-libpciaccess-devel
28 BuildRequires:  xorg-proto-xproto-devel
29 Requires:       %{name}-libs = %{version}-%{release}
30 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
31
32 %description
33 The Portable Hardware Locality (hwloc) software package provides a
34 portable abstraction (across OS, versions, architectures, ...) of the
35 hierarchical topology of modern architectures, including NUMA memory
36 nodes, sockets, shared caches, cores and simultaneous multithreading.
37 It also gathers various system attributes such as cache and memory
38 information. It primarily aims at helping applications with gathering
39 information about modern computing hardware so as to exploit it
40 accordingly and efficiently.
41
42 %description -l pl.UTF-8
43 Pakiet HWLOC (Portable Hardware Locality) zapewnia przenośną (między
44 systemami operacyjnymi, werjami, architekturami...) abstrakcję
45 hierarchicznej topologii współczesnych architektur, w tym węzłów z
46 pamięcią NUMA, gniazd, współdzielonych pamięci podręcznych, rdzeni i
47 wielowątkowości. Gromadzi też różne właściwości systemów, takie jak
48 informacje o pamięci głównej i podręcznej. Głównym celem jest pomoc
49 aplikacjom w gromadzeniu informacji o współczesnym sprzęcie
50 obliczeniowym w celu jego właściwego i wydajnego wykorzystania.
51
52 %package libs
53 Summary:        Portable Hardware Locality (hwloc) library
54 Summary(pl.UTF-8):      Biblioteka przenośnej lokalizacji sprzętu (hwloc)
55 Group:          Libraries
56
57 %description libs
58 Portable Hardware Locality (hwloc) library.
59
60 %description libs -l pl.UTF-8
61 Biblioteka przenośnej lokalizacji sprzętu (hwloc).
62
63 %package devel
64 Summary:        Header files for hwloc library
65 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki hwloc
66 Group:          Development/Libraries
67 Requires:       %{name}-libs = %{version}-%{release}
68 Requires:       OpenCL-devel
69 Requires:       libxml2-devel >= 2.0
70 Requires:       numactl-devel
71 Requires:       xorg-lib-libpciaccess-devel
72
73 %description devel
74 Header files for hwloc library.
75
76 %description devel -l pl.UTF-8
77 Pliki nagłówkowe biblioteki hwloc.
78
79 %prep
80 %setup -q
81
82 %build
83 %configure \
84         --enable-plugins \
85         --disable-silent-rules
86 %{__make}
87
88 %install
89 rm -rf $RPM_BUILD_ROOT
90
91 %{__make} install \
92         DESTDIR=$RPM_BUILD_ROOT
93
94 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libhwloc.la \
95         $RPM_BUILD_ROOT%{_libdir}/%{name}/*.la
96
97 %clean
98 rm -rf $RPM_BUILD_ROOT
99
100 %post   libs -p /sbin/ldconfig
101 %postun libs -p /sbin/ldconfig
102
103 %files
104 %defattr(644,root,root,755)
105 %attr(755,root,root) %{_bindir}/hwloc-*
106 %attr(755,root,root) %{_bindir}/lstopo
107 %attr(755,root,root) %{_bindir}/lstopo-no-graphics
108 %dir %{_libdir}/%{name}
109 %attr(755,root,root) %{_libdir}/%{name}/hwloc_opencl.so
110 %attr(755,root,root) %{_libdir}/%{name}/hwloc_pci.so
111 %attr(755,root,root) %{_libdir}/%{name}/hwloc_xml_libxml.so
112 %{_datadir}/%{name}
113 %{_mandir}/man1/hwloc-*.1*
114 %{_mandir}/man1/lstopo.1*
115 %{_mandir}/man1/lstopo-no-graphics.1*
116 %{_mandir}/man7/hwloc.7*
117
118 %files libs
119 %defattr(644,root,root,755)
120 %doc AUTHORS COPYING NEWS README
121 %attr(755,root,root) %{_libdir}/libhwloc.so.*.*.*
122 %attr(755,root,root) %ghost %{_libdir}/libhwloc.so.5
123
124 %files devel
125 %defattr(644,root,root,755)
126 %doc doc/doxygen-doc/html doc/doxygen-doc/hwloc-a4.pdf
127 %attr(755,root,root) %{_libdir}/libhwloc.so
128 %{_pkgconfigdir}/hwloc.pc
129 %{_includedir}/hwloc
130 %{_includedir}/hwloc.h
131 %{_mandir}/man3/HWLOC_*.3*
132 %{_mandir}/man3/hwloc_*.3*
133 %{_mandir}/man3/hwlocality_*.3*
This page took 2.049578 seconds and 4 git commands to generate.