x11/budgie-desktop: Unbreak build after Vala upgrade

PR:		285289
Approved by:	Olivier Duchateau <duchateau.olivier@gmail.com> (maintainer)
This commit is contained in:
Jesús Daniel Colmenares Oviedo 2025-03-24 07:41:54 +03:00 committed by Gleb Popov
parent ad471b0c4f
commit 9ce897ff1b
5 changed files with 41 additions and 1 deletions

View file

@ -1,6 +1,6 @@
PORTNAME= budgie-desktop PORTNAME= budgie-desktop
DISTVERSION= 10.8.2 DISTVERSION= 10.8.2
PORTREVISION= 3 PORTREVISION= 4
DISTVERSIONPREFIX= v DISTVERSIONPREFIX= v
CATEGORIES= x11 budgie CATEGORIES= x11 budgie
MASTER_SITES= BUDGIE MASTER_SITES= BUDGIE

View file

@ -0,0 +1,10 @@
--- src/lib/animation.vala.orig 2025-03-22 02:16:00 UTC
+++ src/lib/animation.vala
@@ -27,7 +27,6 @@ namespace Budgie {
* Utility to struct to enable easier animations
* Inspired by Clutter.
*/
- [Compact]
public class Animation : GLib.Object {
public int64 start_time; /**<Start time (microseconds) of animation */
public int64 length; /**<Length of animation in microseconds */

View file

@ -0,0 +1,10 @@
--- src/panel/applets/icon-tasklist/animation.vala.orig 2025-03-22 02:28:21 UTC
+++ src/panel/applets/icon-tasklist/animation.vala
@@ -27,7 +27,6 @@ namespace BudgieTaskList {
* Utility to struct to enable easier animations
* Inspired by Clutter.
*/
- [Compact]
public class Animation : GLib.Object {
public int64 start_time; /**<Start time (microseconds) of animation */
public int64 length; /**<Length of animation in microseconds */

View file

@ -0,0 +1,10 @@
--- src/panel/manager.vala.orig 2025-03-22 02:20:18 UTC
+++ src/panel/manager.vala
@@ -23,7 +23,6 @@ namespace Budgie {
/**
* Available slots
*/
- [Compact]
class Screen : GLib.Object {
public PanelPosition slots;
public Gdk.Rectangle area;

View file

@ -0,0 +1,10 @@
--- src/panel/settings/themes.vala.orig 2025-03-22 02:24:35 UTC
+++ src/panel/settings/themes.vala
@@ -15,7 +15,6 @@ public enum ThemeType {
CURSOR_THEME
}
-[Compact]
class ThemeInfo : GLib.Object {
private ThemeType theme_type;
private List<string> paths;