Compare commits
13 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
617acc16d3 | ||
|
|
003355983a | ||
|
|
de7c272b9c | ||
|
|
a47e15ba5e | ||
|
|
a4508bf694 | ||
|
|
df289a5607 | ||
|
|
11b0477f3b | ||
|
|
7c4e58c6a3 | ||
|
|
31a162da1d | ||
|
|
7a3be59b29 | ||
|
|
865b25d2df | ||
|
|
9de06a3e46 | ||
|
|
1f40b904cf |
4 changed files with 58 additions and 7 deletions
40
.packit.yaml
Normal file
40
.packit.yaml
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# Minimal Packit Configuration for GNOME Packages
|
||||
# Copy this to your dist-git repository as .packit.yaml
|
||||
#
|
||||
# Prerequisites:
|
||||
# - Package is monitored by release-monitoring.org
|
||||
# - Monitoring status set to "Monitoring" in dist-git
|
||||
|
||||
jobs:
|
||||
# Automated updates for stable branches
|
||||
- job: pull_from_upstream
|
||||
trigger: release
|
||||
dist_git_branches:
|
||||
- fedora-stable
|
||||
|
||||
# ========================================================================
|
||||
# VERSIONING: Choose ONE option based on your package's versioning scheme
|
||||
# ========================================================================
|
||||
|
||||
# OPTION A: Major version only - allows minor and patch updates
|
||||
# For 2-digit: 50.0 -> 50.1 ✅, 50.x -> 51.0 ❌
|
||||
# For 3-digit: 1.2.3 -> 1.3.0 ✅, 1.x.x -> 2.0.0 ❌
|
||||
# Use for: GNOME apps/libs with 2-digit versions, or libraries following semver
|
||||
version_update_mask: '^\d+\.'
|
||||
|
||||
# OPTION B: Major.minor version - patch updates only
|
||||
# Examples: 1.2.3 -> 1.2.4 ✅, 1.2.x -> 1.3.0 ❌
|
||||
# Use for: Libraries with ABI concerns, even/odd development scheme
|
||||
# version_update_mask: '^\d+\.\d+\.'
|
||||
|
||||
# Build in Koji after merge
|
||||
- job: koji_build
|
||||
trigger: commit
|
||||
dist_git_branches:
|
||||
- fedora-stable
|
||||
|
||||
# Submit Bodhi update
|
||||
- job: bodhi_update
|
||||
trigger: commit
|
||||
dist_git_branches:
|
||||
- fedora-stable
|
||||
13
monitoring.toml
Normal file
13
monitoring.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Enable/disable monitoring
|
||||
monitoring = true
|
||||
# Enable/disable filling bugzilla ticket for new release
|
||||
# When disabled it will also disable scratch builds
|
||||
bugzilla = false
|
||||
# Enable/disable reporting only stable versions
|
||||
# Stable versions are recognized based on release-monitoring.org project settings
|
||||
stable_only = true
|
||||
# Enable/disable reporting all new versions instead of the latest one
|
||||
# Enabling this will disable scratch builds
|
||||
all_versions = true
|
||||
# Enable/disable scratch build for newly opened version
|
||||
scratch_build = false
|
||||
|
|
@ -4,18 +4,16 @@
|
|||
%global blueprint_compiler_version 0.18
|
||||
|
||||
Name: showtime
|
||||
Version: 49.1
|
||||
Version: 50.0
|
||||
|
||||
Release: %autorelease
|
||||
Summary: Modern video player built using GTK4
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://apps.gnome.org/Showtime/
|
||||
Source0: https://download.gnome.org/sources/%{name}/%{gnome_major_version}/%{name}-%{gnome_tarball_version}.tar.xz
|
||||
|
||||
%global tarball_version %%(echo %{version} | tr '~' '.')
|
||||
%global major_version %(cut -d "." -f 1 <<<%{tarball_version})
|
||||
|
||||
Source0: https://download.gnome.org/sources/%{name}/%{major_version}/%{name}-%{tarball_version}.tar.xz
|
||||
%gnome_check_version
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
|
|
@ -52,7 +50,7 @@ language and subtitle tracks, and screenshots — everything you
|
|||
need for a straightforward viewing experience.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}-%{tarball_version}
|
||||
%autosetup -p1 -n %{name}-%{gnome_tarball_version}
|
||||
|
||||
%build
|
||||
%meson
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (showtime-49.1.tar.xz) = 3af938b6ee8a966bb877692acc8a13c699d17db3b48a2985553806c9523c07910b52b48499b9b2e1c59877e817c5450af35a75c290a9efc80400b83d85a735b7
|
||||
SHA512 (showtime-50.0.tar.xz) = d532bc97d33aff9fb691349d28214fa58d5e2f20a991653e175da6035e3c662b10ee2076916cd55c3a4c51dafaaea9a85202ed27a70e46e8f66551801cabf652
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue