14
0

- Make independent of the actual value of %%{_libexecdir} macro.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urlgrabber?expand=0&rev=43
This commit is contained in:
2021-10-08 13:42:34 +00:00
committed by Git OBS Bridge
parent 66c2379c3b
commit 8f78dfe2c8
2 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Oct 8 12:49:46 UTC 2021 - Matej Cepl <mcepl@suse.com>
- Make independent of the actual value of %%{_libexecdir} macro.
-------------------------------------------------------------------
Wed May 20 07:47:54 UTC 2020 - pgajdos@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-urlgrabber
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,8 +18,6 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define modname urlgrabber
# package expects urlgrabber-ext-down in /usr/libexec
%define _libexecdir /usr/libexec
Name: python-urlgrabber
Version: 4.1.0
Release: 0
@@ -36,7 +34,7 @@ BuildRequires: python-rpm-macros
Requires: python-pycurl
Requires: python-six
Requires(post): update-alternatives
Requires(postun): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
%python_subpackages
@@ -50,6 +48,10 @@ throttling, authentication, proxies and more.
# Remove with next release
sed -i "13d" urlgrabber/__init__.py # Remove wrong license header, fixes bnc#781323
# Fix location of %%{_libexecdir}
sed -i 's!/usr/libexec!%{_libexecdir}!' urlgrabber/grabber.py
sed -i "s!libexec!$(echo %{_libexecdir}|cut -d/ -f 3)!" setup.py
%build
%python_build