Welcome to mirror list, hosted at ThFree Co, Russian Federation.

python35-mapsme-modules.spec « specs « pyhelpers - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26920e151810e6463b8109f60883b3e44acfda43 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
%global __arch_install_post     QA_SKIP_RPATHS=1 /usr/lib/rpm/check-rpaths   /usr/lib/rpm/check-buildroot
%define py_version 3.5.1
%define py_release 1.portal
%define py_prefix /usr/local/python35

%global __python %{py_prefix}/bin/python3.5
%define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib())")
%define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib(1))")
%define pybindir %(%{__python} -c "import sys; print '%s/bin' % sys.exec_prefix")
#%{expand: %%define pyver %(%{__python} -c 'import sys;print(sys.version[0:5])')}

%define __os_install_post \
    /usr/lib/rpm/redhat/brp-compress \
    %{!?__debug_package:/usr/lib/rpm/redhat/brp-strip %{__strip}} \
    /usr/lib/rpm/redhat/brp-strip-static-archive %{__strip} \
    /usr/lib/rpm/redhat/brp-strip-comment-note %{__strip} %{__objdump} \
    /usr/lib/rpm/brp-python-bytecompile %{__python} \
    /usr/lib/rpm/redhat/brp-python-hardlink \
    %{!?__jar_repack:/usr/lib/rpm/redhat/brp-java-repack-jars} \
%{nil}

%define project %(echo $PROJECT)
%define version %(echo $VERSION)
%define release %(echo $RELEASE)
%define tag py-modules-%{version}

Name:           python35-mapsme-modules
Version:        %{version}
Release:        %{release}.portal%{dist}
Summary:	Python maps.me modules
License:	Apache Public License 2.0
Vendor:         Mail.Ru Group

Group:          Development/Languages/Python
URL:		https://github.com/mapsme/omim
Source:		omim-py-modules-%{version}.tar.gz

BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-buildroot
Prefix:         %{_prefix}

BuildRequires:  python35 >= %{py_version}
# BuildRequires:  python35-setuptools
BuildRequires:  cmake3
BuildRequires:  boost_prefix-devel >= 1.54.0-3
BuildRequires:  redhat-rpm-config
Requires:       python35 >= %{py_version}
Requires:	python35-%{project} = %{version}-%{release}

%description
Python maps.me modules metapackage. Installs all included modules

%package -n python35-%{project}
Summary:  %{project} python module from maps.me localads
Group:          Development/Languages/Python

%description -n python35-%{project}
Separate %{project} module for python35 from maps.me localads

%prep

%{__rm} -rf %{_builddir}/%{name}-%{version}
if [ -e %{S:0} ]; then
        %{__tar} xzf %{S:0}
        %{__chmod} -Rf a+rX,u+w,g-w,o-w %{_builddir}/%{name}-%{version}
else
        git clone --depth=1 https://github.com/mapsme/omim.git %{_builddir}/%{name}-%{version}/omim
        pushd %{_builddir}/%{name}-%{version}/omim
	git fetch origin tag %{tag} --depth=1
        git checkout %{tag}
	git submodule update --init --checkout
	# pack source to save it in src rpm
        popd
        %{__tar} czf %{S:0} %{name}-%{version}
fi
%setup -D -T

%build
. /opt/rh/devtoolset-3/enable
cd omim
echo git@github.com:mapsme/omim-private.git | ./configure.sh
cd ..
%{__mkdir_p} build && cd build
# TODO(mgergio, yershov): Why should we stills specify PYTHON_LIBRARY and
# PYTHON_INCLUDE_DIR manually?
%{__cmake3} -DPYTHON_LIBRARY=/usr/local/python35/lib/libpython3.so -DPYTHON_INCLUDE_DIR=/usr/local/python35/include/python3.5m/ -DPYTHON_VERSION=3.5 -DBOOST_INCLUDEDIR=/usr/local/boost_1.54.0/include/ -DPYBINDINGS=ON -DSKIP_DESKTOP=ON ../omim
%{__make} %{?_smp_mflags} %{project}

%install
%{__install} -m 755 -D %{_builddir}/%{name}-%{version}/build/%{project}.so %{buildroot}/%{python_sitelib}/%{project}.so

%clean
rm -rf %{buildroot}

%files -n python35-%{project}
%defattr(-,root,root)
%{python_sitelib}/%{project}.so

%changelog
* Thu Aug 03 2017 Sergey Yershov <yershov@corp.mail.ru> 0.2a-1
- Adopted to build any of available bingings

* Wed Apr 26 2017 Magidovich Sergey <s.magidovich@corp.mail.ru> - 0.1b-1
- Initiated build