New package, now at version 47.0

OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/showtime?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2024-09-27 11:17:05 +00:00 committed by Git OBS Bridge
commit 405c04b355
7 changed files with 130 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

14
_service Normal file
View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://gitlab.gnome.org/GNOME/Incubator/showtime.git</param>
<param name="revision">47.0</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">(.*)\+0</param>
<param name="versionrewrite-replacement">\1</param>
</service>
<service name="set_version" mode="manual" />
<service name="tar" mode="buildtime"/>
</services>

3
showtime-47.0.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09f4ac7da355d2a6616270abe97292fa2da7b68b36b2fb87c7f7ecf77fafd523
size 2600460

4
showtime.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sat Jul 13 17:18:40 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
- Inital packaging for openSUSE.

4
showtime.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: showtime
version: 47.0
mtime: 1726653287
commit: 5ca2d22f049c4349404dc9e0afcc909c91b2d7f3

81
showtime.spec Normal file
View File

@ -0,0 +1,81 @@
#
# spec file for package showtime
#
# Copyright (c) 2024 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define appid org.gnome.Showtime
Name: showtime
Version: 47.0
Release: 0
Summary: Video player
License: GPL-3.0-or-later
URL: https://gitlab.gnome.org/GNOME/Incubator/showtime
Source: %{name}-%{version}.tar
BuildRequires: blueprint-compiler
BuildRequires: desktop-file-utils
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gobject-introspection-1.0)
BuildRequires: pkgconfig(gtk4) >= 4.14.0
BuildRequires: pkgconfig(libadwaita-1) >= 1.6.beta
Requires: gstreamer-plugins-rs
BuildArch: noarch
%description
Watch without distraction.
Play your favorite movies and video files without hassle. Showtime
features simple playback controls that fade out of your way when
you're watching, fullscreen, adjustable playback speed, multiple
language and subtitle tracks, and screenshots everything you need
for a straightforward viewing experience.
%lang_package
%prep
%autosetup -p1
%build
%meson
%meson_build
%install
%meson_install
%find_lang %{name}
%check
%meson_test
%files
%license COPYING
%doc README.md
%{_bindir}/%{name}
%dir %{python3_sitelib}/%{name}
%{python3_sitelib}/%{name}/*
%{_datadir}/applications/%{appid}.desktop
%{_datadir}/glib-2.0/schemas/%{appid}.gschema.xml
%{_datadir}/icons/hicolor/scalable/apps/%{appid}.svg
%{_datadir}/icons/hicolor/symbolic/apps/%{appid}-symbolic.svg
%{_datadir}/metainfo/%{appid}.metainfo.xml
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/%{name}.gresource
%files lang -f %{name}.lang
%changelog