Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • archlinux/packaging/packages/decibels
1 result
Show changes
Commits on Source (3)
pkgbase = decibels pkgbase = decibels
pkgdesc = Audio player for GNOME pkgdesc = Audio player for GNOME
pkgver = 46.0 pkgver = 48.0
pkgrel = 3 pkgrel = 1
url = https://apps.gnome.org/Decibels/ url = https://apps.gnome.org/Decibels/
arch = any arch = any
groups = gnome
license = GPL-3.0-or-later license = GPL-3.0-or-later
makedepends = appstream makedepends = appstream
makedepends = blueprint-compiler makedepends = blueprint-compiler
...@@ -25,11 +26,9 @@ pkgbase = decibels ...@@ -25,11 +26,9 @@ pkgbase = decibels
optdepends = gst-libav: Extra media codecs optdepends = gst-libav: Extra media codecs
optdepends = gst-plugins-bad: Extra media codecs optdepends = gst-plugins-bad: Extra media codecs
optdepends = gst-plugins-ugly: Extra media codecs optdepends = gst-plugins-ugly: Extra media codecs
source = git+https://gitlab.gnome.org/GNOME/Incubator/decibels.git#tag=46.0 source = git+https://gitlab.gnome.org/GNOME/decibels.git#tag=48.0
source = git+https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git source = git+https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git
source = decibels-window-icon.patch b2sums = 3aa9f33e439a37f237d6c7321bdfd499063ebe0ce400d467f656a6aa6a3765e1492990588fadaf5360232e490285cea317489f346425432cf8de478cf5c7a8be
b2sums = f254bc63f38fa6f1ec43ba4ab24725e5550ad82db7a9a8db64c185e95dcb2b6a962ebded9e822892fbc86e9c3bf5ae581ba52d46ea790e9ee1a3952c628808ba
b2sums = SKIP b2sums = SKIP
b2sums = a88e09698d10498d2ece45dee2ea27cbdb6e0b6ab238a34b048e4eb76b8ba6ca5bfe9f2ab712a0473cd46c656a186c54e22bd2eec590de73e7aeddcca60228e5
pkgname = decibels pkgname = decibels
[decibels] [decibels]
source = "git" source = "git"
git = "https://gitlab.gnome.org/GNOME/Incubator/decibels.git" git = "https://gitlab.gnome.org/GNOME/decibels.git"
include_regex = '\d+(\.\d+)*'
from_pattern = '\.([a-z])'
to_pattern = '\1'
# Maintainer: Balló György <ballogyor+arch at gmail dot com> # Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=decibels pkgname=decibels
pkgver=46.0 pkgver=48.0
pkgrel=3 pkgrel=1
pkgdesc='Audio player for GNOME' pkgdesc='Audio player for GNOME'
arch=(any) arch=(any)
url='https://apps.gnome.org/Decibels/' url='https://apps.gnome.org/Decibels/'
...@@ -33,26 +33,20 @@ optdepends=( ...@@ -33,26 +33,20 @@ optdepends=(
'gst-plugins-bad: Extra media codecs' 'gst-plugins-bad: Extra media codecs'
'gst-plugins-ugly: Extra media codecs' 'gst-plugins-ugly: Extra media codecs'
) )
groups=(gnome)
source=( source=(
"git+https://gitlab.gnome.org/GNOME/Incubator/decibels.git#tag=$pkgver" "git+https://gitlab.gnome.org/GNOME/decibels.git#tag=${pkgver/[a-z]/.&}"
git+https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git "git+https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git"
decibels-window-icon.patch
)
b2sums=(
f254bc63f38fa6f1ec43ba4ab24725e5550ad82db7a9a8db64c185e95dcb2b6a962ebded9e822892fbc86e9c3bf5ae581ba52d46ea790e9ee1a3952c628808ba
SKIP
a88e09698d10498d2ece45dee2ea27cbdb6e0b6ab238a34b048e4eb76b8ba6ca5bfe9f2ab712a0473cd46c656a186c54e22bd2eec590de73e7aeddcca60228e5
) )
b2sums=('3aa9f33e439a37f237d6c7321bdfd499063ebe0ce400d467f656a6aa6a3765e1492990588fadaf5360232e490285cea317489f346425432cf8de478cf5c7a8be'
'SKIP')
prepare() { prepare() {
cd $pkgname cd $pkgname
git submodule init git submodule init
git submodule set-url gi-types "$srcdir/gi-typescript-definitions" git submodule set-url gi-types "$srcdir/gi-typescript-definitions"
git -c protocol.file.allow=always submodule update git -c protocol.file.allow=always -c protocol.allow=never submodule update
# https://gitlab.gnome.org/GNOME/Incubator/decibels/-/merge_requests/123
git apply -3 ../decibels-window-icon.patch
} }
build() { build() {
......
From 7e9685bdb39187510f3899fcec6acd4a0caf2820 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor@gmail.com>
Date: Fri, 20 Sep 2024 11:07:30 +0000
Subject: [PATCH] application: Set icon for the window
This is commonly used by desktop environments on Xorg.
---
src/application.ts | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/application.ts b/src/application.ts
index c6533f2..02d27f8 100644
--- a/src/application.ts
+++ b/src/application.ts
@@ -21,6 +21,8 @@ export class Application extends Adw.Application {
flags: Gio.ApplicationFlags.HANDLES_OPEN,
});
+ Gtk.Window.set_default_icon_name(pkg.name);
+
const quit_action = new Gio.SimpleAction({ name: "quit" });
quit_action.connect("activate", () => {
this.quit();
--
GitLab