SHA256
1
0
forked from pool/mpv

Accepting request 725219 from home:namtrac:branches:multimedia:apps

- Reintroduce _mpv_ver since subpackages have different versions
  and need to depend on _mpv_ver when appropriate.

OBS-URL: https://build.opensuse.org/request/show/725219
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/mpv?expand=0&rev=154
This commit is contained in:
Tomáš Chvátal 2019-08-22 08:24:32 +00:00 committed by Git OBS Bridge
parent 4df2da85bb
commit bf53608393
2 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Aug 22 06:58:51 UTC 2019 - Ismail Dönmez <idonmez@suse.com>
- Reintroduce _mpv_ver since subpackages have different versions
and need to depend on _mpv_ver when appropriate.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Aug 20 11:11:42 UTC 2019 - Ismail Dönmez <idonmez@suse.com> Tue Aug 20 11:11:42 UTC 2019 - Ismail Dönmez <idonmez@suse.com>

View File

@ -21,15 +21,16 @@
%define _waf_ver 2.0.9 %define _waf_ver 2.0.9
%define _mbc_ver 3.3.17 %define _mbc_ver 3.3.17
%define _mpv_ver 0.30.0+git.1566288741.80552ab28e
%define lname libmpv1 %define lname libmpv1
Name: mpv Name: mpv
Version: 0.30.0+git.1566288741.80552ab28e Version: %{_mpv_ver}
Release: 0 Release: 0
Summary: Advanced general-purpose multimedia player Summary: Advanced general-purpose multimedia player
License: GPL-2.0-or-later License: GPL-2.0-or-later
Group: Productivity/Multimedia/Video/Players Group: Productivity/Multimedia/Video/Players
Url: http://mpv.io/ Url: http://mpv.io/
Source: %{name}-%{version}.tar.xz Source: %{name}-%{_mpv_ver}.tar.xz
Source1: https://waf.io/waf-%{_waf_ver} Source1: https://waf.io/waf-%{_waf_ver}
Source2: %{name}.changes Source2: %{name}.changes
# mpv-bash-completion is licensed with GPL-3.0+ # mpv-bash-completion is licensed with GPL-3.0+
@ -141,7 +142,7 @@ Release: 0
Summary: Bash Completion for %{name} Summary: Bash Completion for %{name}
License: GPL-3.0-or-later License: GPL-3.0-or-later
Group: Productivity/Multimedia/Video/Players Group: Productivity/Multimedia/Video/Players
Requires: %{name} = %{version} Requires: %{name} = %{_mpv_ver}
Requires: bash-completion Requires: bash-completion
Recommends: xrandr Recommends: xrandr
Supplements: packageand(mpv:bash) Supplements: packageand(mpv:bash)
@ -164,7 +165,7 @@ A Bash completion script for the mpv video player. It features
Summary: ZSH Completion for %{name} Summary: ZSH Completion for %{name}
License: GPL-2.0-or-later License: GPL-2.0-or-later
Group: Productivity/Multimedia/Video/Players Group: Productivity/Multimedia/Video/Players
Requires: %{name} = %{version} Requires: %{name} = %{_mpv_ver}
Supplements: packageand(mpv:zsh) Supplements: packageand(mpv:zsh)
BuildArch: noarch BuildArch: noarch
@ -175,7 +176,7 @@ ZSH command line completion support for %{name}.
Summary: A library to link together with mpv player Summary: A library to link together with mpv player
License: GPL-2.0-or-later License: GPL-2.0-or-later
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: %{lname} = %{version} Requires: %{lname} = %{_mpv_ver}
%description devel %description devel
mpv is a movie player based on MPlayer and mplayer2. It supports a wide variety mpv is a movie player based on MPlayer and mplayer2. It supports a wide variety
@ -206,7 +207,7 @@ chmod a+x waf
# I hate UNKNOWN so lets put decent info there. # I hate UNKNOWN so lets put decent info there.
MODIFIED="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{SOURCE2}")" MODIFIED="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{SOURCE2}")"
DATE="$(date -d "$MODIFIED" "+%%b %%e %%Y")" DATE="$(date -d "$MODIFIED" "+%%b %%e %%Y")"
sed -i "s|UNKNOWN|$DATE|g;s|VERSION|\"%{version}\"|g" common/version.c sed -i "s|UNKNOWN|$DATE|g;s|VERSION|\"%{_mpv_ver}\"|g" common/version.c
%build %build
# SDL: disable as it is pointless to have on Linux, it is Windows/OS X fallback. # SDL: disable as it is pointless to have on Linux, it is Windows/OS X fallback.