662192d7d7
fix bashism in pre script OBS-URL: https://build.opensuse.org/request/show/260367 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpointer?expand=0&rev=7
70 lines
2.3 KiB
RPMSpec
70 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-jsonpointer
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-jsonpointer
|
|
Version: 1.4
|
|
Release: 0
|
|
Summary: Identify specific nodes in a JSON document (according to draft 08)
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/stefankoegl/python-json-pointer
|
|
Source: http://pypi.python.org/packages/source/j/jsonpointer/jsonpointer-%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%else
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description
|
|
Identify specific nodes in a JSON document (according to draft 08)
|
|
|
|
%prep
|
|
%setup -q -n jsonpointer-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
mv %{buildroot}%{_bindir}/jsonpointer %{buildroot}%{_bindir}/jsonpointer-%{py_ver}
|
|
ln -s %{_bindir}/jsonpointer-%{py_ver} %{buildroot}%{_bindir}/jsonpointer
|
|
|
|
%pre
|
|
[ -h %{_bindir}/jsonpointer ] || rm -f %{_bindir}/jsonpointer
|
|
|
|
%post
|
|
update-alternatives --install \
|
|
%{_bindir}/jsonpointer jsonpointer %{_bindir}/jsonpointer-%{py_ver} 20
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ] ; then
|
|
update-alternatives --remove jsonpointer %{_bindir}/jsonpointer-%{py_ver}
|
|
fi
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%ghost %{_bindir}/jsonpointer
|
|
%{_bindir}/jsonpointer-%{py_ver}
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|