Merge pull request #41 from dmacvicar/master
[platform/upstream/libsolv.git] / package / libsolv.spec.in
1 #
2 # spec file for package libsolv
3 #
4 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
5 #
6 # All modifications and additions to the file contributed by third parties
7 # remain the property of their copyright owners, unless otherwise agreed
8 # upon. The license for this file, and modifications and additions to the
9 # file, is the same license as for the pristine package itself (unless the
10 # license for the pristine package is not an Open Source License, in which
11 # case the license is the MIT License). An "Open Source License" is a
12 # license that conforms to the Open Source Definition (Version 1.9)
13 # published by the Open Source Initiative.
14
15 # Please submit bugfixes or comments via http://bugs.opensuse.org/
16 #
17
18 Name:           libsolv
19 Version:        @VERSION@
20 Release:        0
21 Url:            git://gitorious.org/opensuse/libsolv.git
22 Source:         libsolv-%{version}.tar.bz2
23 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
24
25 %bcond_without enable_static
26 %bcond_without disable_shared
27 %bcond_without perl_binding
28 %bcond_without python_binding
29 %bcond_without ruby_binding
30 %bcond_with zypp
31
32 %if 0%{?mandriva_version}
33 # force this version on mandriva
34 BuildRequires:  libneon0.26-devel
35 %endif
36 %if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
37 BuildRequires:  db4-devel
38 %endif
39 %if 0%{?suse_version}
40 %if 0%{?suse_version} < 1030
41 BuildRequires:  expat
42 %else
43 BuildRequires:  libexpat-devel
44 %endif
45 %if 0%{?suse_version} < 1100
46 BuildRequires:  graphviz
47 %endif
48 %if 0%{?suse_version} > 1020
49 BuildRequires:  fdupes
50 %endif
51 %else
52 BuildRequires:  expat-devel
53 %endif
54 BuildRequires:  cmake
55 BuildRequires:  gcc-c++
56 BuildRequires:  rpm-devel
57 BuildRequires:  zlib-devel
58
59 %if %{with perl_binding}
60 BuildRequires:  perl
61 %if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
62 BuildRequires:  perl-devel
63 %endif
64 BuildRequires:  swig
65 %endif
66 %if %{with ruby_binding}
67 %global ruby_vendorarch %(ruby  -r rbconfig -e "puts Config::CONFIG['vendorarchdir'].nil? ? Config::CONFIG['sitearchdir'] : Config::CONFIG['vendorarchdir']")
68 BuildRequires:  ruby
69 BuildRequires:  ruby-devel
70 BuildRequires:  swig
71 %endif
72 %if %{with python_binding}
73 %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True);")
74 BuildRequires:  python-devel
75 BuildRequires:  swig
76 %endif
77
78 Summary:        A new approach to package dependency solving
79 License:        BSD-3-Clause
80 Group:          Development/Libraries/C and C++
81
82 %description
83 A new approach to package dependency solving
84
85 %if !%{with disable_shared}
86 %package -n libsolv@LIBSOLV_SOVERSION@
87 Summary:        A new approach to package dependency solving
88 Group:          Development/Libraries/C and C++
89
90 %description -n libsolv@LIBSOLV_SOVERSION@
91 A new approach to package dependency solving
92
93 %endif
94 %package devel
95 Summary:        A new approach to package dependency solving
96 Group:          Development/Libraries/C and C++
97 Requires:       libsolv-tools = %version
98 %if !%{with disable_shared}
99 Requires:       libsolv@LIBSOLV_SOVERSION@ = %version
100 %endif
101 Requires:       rpm-devel
102 Conflicts:      libsatsolver-devel
103
104 %description devel
105 Development files for libsolv, a new approach to package dependency solving
106
107 %package tools
108 Summary:        A new approach to package dependency solving
109 Group:          Development/Libraries/C and C++
110 Obsoletes:      satsolver-tools < 0.18
111 Provides:       satsolver-tools = 0.18
112 Conflicts:      satsolver-tools-obsolete
113 Requires:       gzip bzip2 coreutils findutils
114
115 %description tools
116 A new approach to package dependency solving.
117
118 %package demo
119 Summary:        Applications demoing the libsolv library
120 Group:          System/Management
121 Requires:       curl
122 %if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
123 Requires:       gnupg2
124 %endif
125 %if 0%{?suse_version}
126 Requires:       gpg2
127 %endif
128 Conflicts:      libsatsolver-demo
129
130 %description demo
131 Applications demoing the libsolv library.
132
133 %package -n ruby-solv
134 Summary:        Ruby bindings for the libsolv library
135 Group:          Development/Languages/Ruby
136
137 %description -n ruby-solv
138 Ruby bindings for sat solver.
139
140 %package -n python-solv
141 %if 0%{?py_requires:1} && %{with python_binding}
142 %py_requires
143 %endif
144 Summary:        Python bindings for the libsolv library
145 Group:          Development/Languages/Python
146
147 %description -n python-solv
148 Python bindings for sat solver.
149
150 %package -n perl-solv
151 Requires:       perl = %{perl_version}
152 Summary:        Perl bindings for the libsolv library
153 Group:          Development/Languages/Perl
154
155 %description -n perl-solv
156 Perl bindings for sat solver.
157
158 %prep
159 %setup -n libsolv-%{version}
160
161 %build
162 export CFLAGS="$RPM_OPT_FLAGS"
163 export CXXFLAGS="$CFLAGS"
164
165 CMAKE_FLAGS=
166 %if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
167 CMAKE_FLAGS="-DFEDORA=1"
168 %endif
169 %if 0%{?suse_version}
170 CMAKE_FLAGS="-DSUSE=1 -DENABLE_APPDATA=1"
171 %endif
172
173 cmake   $CMAKE_FLAGS \
174         -DCMAKE_INSTALL_PREFIX=%{_prefix} \
175         -DLIB=%{_lib} \
176         -DCMAKE_VERBOSE_MAKEFILE=TRUE \
177         -DCMAKE_BUILD_TYPE=RelWithDebInfo \
178         %{?with_enable_static:-DENABLE_STATIC=1} \
179         %{?with_disable_shared:-DDISABLE_SHARED=1} \
180         %{?with_perl_binding:-DENABLE_PERL=1} \
181         %{?with_python_binding:-DENABLE_PYTHON=1} \
182         %{?with_ruby_binding:-DENABLE_RUBY=1} \
183         %{?with_zypp:-DENABLE_SUSEREPO=1 -DENABLE_HELIXREPO=1} \
184         -DUSE_VENDORDIRS=1 \
185         -DCMAKE_SKIP_RPATH=1
186 make %{?jobs:-j %jobs}
187
188 %install
189 make DESTDIR=$RPM_BUILD_ROOT install
190 %if %{with python_binding}
191 %if 0%{?suse_version}
192 pushd $RPM_BUILD_ROOT/%{python_sitearch}
193 python %py_libdir/py_compile.py *.py
194 python -O %py_libdir/py_compile.py *.py
195 popd
196 %endif
197 %endif
198 %if %{with disable_shared}
199 # we want to leave the .a file untouched
200 export NO_BRP_STRIP_DEBUG=true
201 %endif
202
203 %clean
204 rm -rf "$RPM_BUILD_ROOT"
205
206 %if !%{with disable_shared}
207 %post -n libsolv@LIBSOLV_SOVERSION@ -p /sbin/ldconfig
208
209 %postun -n libsolv@LIBSOLV_SOVERSION@ -p /sbin/ldconfig
210
211 %files -n libsolv@LIBSOLV_SOVERSION@
212 %defattr(-,root,root)
213 %doc LICENSE*
214 %{_libdir}/libsolv.so.*
215 %{_libdir}/libsolvext.so.*
216 %endif
217
218 %files tools
219 %defattr(-,root,root)
220 %if 0%{?suse_version}
221 %exclude %{_bindir}/helix2solv
222 %endif
223 %exclude %{_bindir}/solv
224 %{_bindir}/*
225
226 %files devel
227 %defattr(-,root,root)
228 %if %{with enable_static}
229 %{_libdir}/libsolv.a
230 %{_libdir}/libsolvext.a
231 %endif
232 %if !%{with disable_shared}
233 %{_libdir}/libsolv.so
234 %{_libdir}/libsolvext.so
235 %endif
236 %{_includedir}/solv
237 %if 0%{?suse_version}
238 %{_bindir}/helix2solv
239 %endif
240 %{_datadir}/cmake/Modules/*
241 %{_mandir}/man?/*
242
243 %files demo
244 %defattr(-,root,root)
245 %{_bindir}/solv
246
247 %if %{with perl_binding}
248 %files -n perl-solv
249 %defattr(-,root,root)
250 %{perl_vendorarch}/*
251 %endif
252
253 %if %{with ruby_binding}
254 %files -n ruby-solv
255 %defattr(-,root,root)
256 %{ruby_vendorarch}/*
257 %endif
258
259 %if %{with python_binding}
260 %files -n python-solv
261 %defattr(-,root,root)
262 %{python_sitearch}/*
263 %endif
264
265 %changelog