Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Commit b436ea6

Browse files
kpcyrdsvntogit
authored andcommitted
upgpkg: gnome-pie 0.7.2-2 - fix ftbfs + repro builds
git-svn-id: file:///srv/repos/svn-community/svn@977739 9fca08f4-af9d-4005-b8df-a31f2cc04f65
1 parent cf68b32 commit b436ea6

2 files changed

Lines changed: 24 additions & 3 deletions

File tree

trunk/PKGBUILD

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,23 @@
33
pkgname=gnome-pie
44
_pkgname=Gnome-Pie
55
pkgver=0.7.2
6-
pkgrel=1
6+
pkgrel=2
77
pkgdesc="Circular application launcher for GNOME"
88
arch=('x86_64')
99
url="https://simmesimme.github.io/gnome-pie.html"
1010
license=('MIT')
1111
depends=('libarchive' 'libgee' 'libwnck3' 'gnome-menus')
1212
makedepends=('cmake' 'vala')
13-
source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
14-
sha256sums=('b15e6402dbdddf3a3751c919927176bdf78fca174544a971d3db569d4e9162cf')
13+
source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz
14+
# https://github.com/Schneegans/Gnome-Pie/issues/177
15+
abstract-class-not-public.patch)
16+
sha256sums=('b15e6402dbdddf3a3751c919927176bdf78fca174544a971d3db569d4e9162cf'
17+
'7350224e0f6f081abdab1b6886d6e0c2fb8caab692b4246eacb7ee0fe673a558')
18+
19+
prepare() {
20+
cd $_pkgname-$pkgver
21+
patch -Np1 -i ../abstract-class-not-public.patch
22+
}
1523

1624
build() {
1725
cd $_pkgname-$pkgver
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/src/actions/action.vala b/src/actions/action.vala
2+
index ee13b39..bf64b06 100644
3+
--- a/src/actions/action.vala
4+
+++ b/src/actions/action.vala
5+
@@ -69,7 +69,7 @@ public abstract class Action : GLib.Object {
6+
/// C'tor, initializes all members.
7+
/////////////////////////////////////////////////////////////////////
8+
9+
- public Action(string name, string icon, bool is_quickaction) {
10+
+ Action(string name, string icon, bool is_quickaction) {
11+
GLib.Object(name : name, icon : icon, is_quickaction : is_quickaction);
12+
}
13+

0 commit comments

Comments
 (0)