Accepting request 1108144 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1108144 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gst123?expand=0&rev=2
This commit is contained in:
commit
41599ebd69
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c7b4729773f66cc679e94df76bcc6a95a2222192730f906e527e72624f084a7d
|
|
||||||
size 125468
|
|
3
gst123-0.4.1.tar.bz2
Normal file
3
gst123-0.4.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:891d4f0a39f1341a80d3acc4293f46a5fb563c41f6795935a49425a2219d2e68
|
||||||
|
size 121588
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 30 14:29:13 UTC 2023 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
- Update to version 0.4.1
|
||||||
|
* Avoid depending using .git / git during build (remove
|
||||||
|
ChangeLog).
|
||||||
|
version 0.4.0:
|
||||||
|
* Use gtk3 instead of gtk2.
|
||||||
|
* Change config file location to ~/.config/gst123rc
|
||||||
|
* Decode URIs to print proper media name.
|
||||||
|
* Support "audio/mpegurl" mime type for m3u playlist parser as
|
||||||
|
well.
|
||||||
|
* Various bugfixes.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 4 09:12:34 UTC 2018 - jengelh@inai.de
|
Sun Feb 4 09:12:34 UTC 2018 - jengelh@inai.de
|
||||||
|
|
||||||
|
35
gst123.spec
35
gst123.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gst123
|
# spec file for package gst123
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2023 SUSE LLC
|
||||||
# Copyright (c) 2012-2013 Pascal Bleser <pascal.bleser@opensuse.org>
|
# Copyright (c) 2012-2013 Pascal Bleser <pascal.bleser@opensuse.org>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -13,18 +13,18 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: gst123
|
Name: gst123
|
||||||
Version: 0.3.5
|
Version: 0.4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GStreamer based Command Line Music Player
|
Summary: GStreamer based Command Line Music Player
|
||||||
License: LGPL-2.0+
|
License: LGPL-2.0-or-later
|
||||||
Group: Productivity/Multimedia/Sound/Players
|
Group: Productivity/Multimedia/Sound/Players
|
||||||
URL: http://space.twc.de/~stefan/gst123.php
|
URL: https://space.twc.de/~stefan/gst123.php
|
||||||
Source: http://space.twc.de/~stefan/gst123/%{name}-%{version}.tar.bz2
|
Source: https://github.com/swesterfeld/gst123/releases/download/%{version}/%{name}-%{version}.tar.bz2
|
||||||
Source1: gst123.desktop
|
Source1: gst123.desktop
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
@ -32,12 +32,8 @@ BuildRequires: update-desktop-files
|
|||||||
BuildRequires: pkgconfig(gstreamer-1.0)
|
BuildRequires: pkgconfig(gstreamer-1.0)
|
||||||
BuildRequires: pkgconfig(gstreamer-base-1.0)
|
BuildRequires: pkgconfig(gstreamer-base-1.0)
|
||||||
BuildRequires: pkgconfig(gstreamer-video-1.0)
|
BuildRequires: pkgconfig(gstreamer-video-1.0)
|
||||||
BuildRequires: pkgconfig(gtk+-2.0)
|
BuildRequires: pkgconfig(gtk+-3.0)
|
||||||
%if 0%{?suse_version} >= 1500
|
|
||||||
BuildRequires: pkgconfig(ncurses) >= 5
|
BuildRequires: pkgconfig(ncurses) >= 5
|
||||||
%else
|
|
||||||
BuildRequires: ncurses-devel
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The gst123 program is a command line player akin to ogg123 or mpg123,
|
The gst123 program is a command line player akin to ogg123 or mpg123,
|
||||||
@ -45,11 +41,11 @@ but uses gstreamer for decoding, so supports all the codecs gstreamer
|
|||||||
knows.
|
knows.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
make %{?_smp_mflags} V=1
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -57,18 +53,11 @@ install -D -m0644 "%{SOURCE1}" "%{buildroot}%{_datadir}/applications/%{name}.des
|
|||||||
%suse_update_desktop_file -r "%{name}" AudioVideo Player
|
%suse_update_desktop_file -r "%{name}" AudioVideo Player
|
||||||
%find_lang "%{name}" || echo -n >"%{name}.lang"
|
%find_lang "%{name}" || echo -n >"%{name}.lang"
|
||||||
|
|
||||||
%if 0%{?suse_version} < 1500
|
|
||||||
%post
|
|
||||||
%desktop_database_post
|
|
||||||
|
|
||||||
%postun
|
|
||||||
%desktop_database_postun
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files -f "%{name}.lang"
|
%files -f "%{name}.lang"
|
||||||
%doc AUTHORS COPYING NEWS
|
%license COPYING
|
||||||
|
%doc AUTHORS NEWS
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_mandir}/man1/%{name}.1%{ext_man}
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{name}.desktop
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user