[arch-commits] Commit in gnome-flashback/repos/community-x86_64 (5 files)

Balló György bgyorgy at archlinux.org
Wed May 27 15:24:53 UTC 2020


    Date: Wednesday, May 27, 2020 @ 15:24:53
  Author: bgyorgy
Revision: 635930

archrelease: copy trunk to community-x86_64

Added:
  gnome-flashback/repos/community-x86_64/PKGBUILD
    (from rev 635929, gnome-flashback/trunk/PKGBUILD)
  gnome-flashback/repos/community-x86_64/gnome-flashback.pam
    (from rev 635929, gnome-flashback/trunk/gnome-flashback.pam)
Deleted:
  gnome-flashback/repos/community-x86_64/PKGBUILD
  gnome-flashback/repos/community-x86_64/gettext.diff
  gnome-flashback/repos/community-x86_64/gnome-flashback.pam

---------------------+
 PKGBUILD            |  114 ++++++++++++++++++++++++--------------------------
 gettext.diff        |   12 -----
 gnome-flashback.pam |   12 ++---
 3 files changed, 61 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-05-27 15:24:49 UTC (rev 635929)
+++ PKGBUILD	2020-05-27 15:24:53 UTC (rev 635930)
@@ -1,59 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=gnome-flashback
-pkgver=3.35.2+25+g2553c69
-pkgrel=1
-pkgdesc="GNOME Flashback session"
-arch=('x86_64')
-url="https://wiki.gnome.org/Projects/GnomeFlashback"
-license=('GPL')
-depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 'gnome-settings-daemon' 'gnome-themes-extra' 'libibus' 'metacity')
-makedepends=('autoconf-archive' 'git' 'intltool' 'python')
-optdepends=('gnome-backgrounds: Default background'
-            'gnome-control-center: System settings'
-            'network-manager-applet: Network management')
-_commit=2553c69eb477a5222c76ee1f0cbb8d7889c53611  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-flashback.git#commit=$_commit"
-        "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git"
-        gettext.diff
-        gnome-flashback.pam)
-sha256sums=('SKIP'
-            'SKIP'
-            'e947f51efca2efcae36755406f1b9a191981fc09a819fe148bc41451a08341d4'
-            '7148b3b1773fa312d6cd14798338cc70cffb6df7504ff1787687edd0363138d2')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../gettext.diff  # Unbreak build with gettext 0.20
-
-  git submodule init
-  git submodule set-url gvc/gvc "$srcdir/libgnome-volume-control"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
-              --disable-schemas-compile --enable-compile-warnings=minimum --enable-gtk-doc
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  # Install pam file for the screensaver
-  install -Dm644 ../gnome-flashback.pam "$pkgdir/etc/pam.d/gnome-flashback"
-}

Copied: gnome-flashback/repos/community-x86_64/PKGBUILD (from rev 635929, gnome-flashback/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-05-27 15:24:53 UTC (rev 635930)
@@ -0,0 +1,55 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=gnome-flashback
+pkgver=3.36.3
+pkgrel=1
+pkgdesc="GNOME Flashback session"
+arch=('x86_64')
+url="https://wiki.gnome.org/Projects/GnomeFlashback"
+license=('GPL')
+depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 'gnome-settings-daemon' 'gnome-themes-extra' 'libibus' 'metacity')
+makedepends=('autoconf-archive' 'git' 'intltool' 'python')
+optdepends=('gnome-backgrounds: Default background'
+            'gnome-control-center: System settings'
+            'network-manager-applet: Network management')
+_commit=5036ec999d9f9ad8772e863e4cee2b679beb569f  # tags/3.36.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-flashback.git#commit=$_commit"
+        "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git"
+        gnome-flashback.pam)
+sha256sums=('SKIP'
+            'SKIP'
+            '7148b3b1773fa312d6cd14798338cc70cffb6df7504ff1787687edd0363138d2')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  git submodule set-url gvc/gvc "$srcdir/libgnome-volume-control"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \
+              --disable-schemas-compile --enable-compile-warnings=minimum --enable-gtk-doc
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  # Install pam file for the screensaver
+  install -Dm644 ../gnome-flashback.pam "$pkgdir/etc/pam.d/gnome-flashback"
+}

Deleted: gettext.diff
===================================================================
--- gettext.diff	2020-05-27 15:24:49 UTC (rev 635929)
+++ gettext.diff	2020-05-27 15:24:53 UTC (rev 635930)
@@ -1,12 +0,0 @@
-diff --git i/configure.ac w/configure.ac
-index 5dbd86d..0e586c1 100644
---- i/configure.ac
-+++ w/configure.ac
-@@ -71,6 +71,7 @@ dnl **************************************************************************
- 
- AM_GNU_GETTEXT([external])
- AM_GNU_GETTEXT_VERSION([0.19.4])
-+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.4])
- 
- GETTEXT_PACKAGE=gnome-flashback
- AC_SUBST([GETTEXT_PACKAGE])

Deleted: gnome-flashback.pam
===================================================================
--- gnome-flashback.pam	2020-05-27 15:24:49 UTC (rev 635929)
+++ gnome-flashback.pam	2020-05-27 15:24:53 UTC (rev 635930)
@@ -1,6 +0,0 @@
-#%PAM-1.0
-auth       include	system-auth
-auth       optional     pam_gnome_keyring.so
-account    include	system-auth
-password   include	system-auth
-session    include	system-auth

Copied: gnome-flashback/repos/community-x86_64/gnome-flashback.pam (from rev 635929, gnome-flashback/trunk/gnome-flashback.pam)
===================================================================
--- gnome-flashback.pam	                        (rev 0)
+++ gnome-flashback.pam	2020-05-27 15:24:53 UTC (rev 635930)
@@ -0,0 +1,6 @@
+#%PAM-1.0
+auth       include	system-auth
+auth       optional     pam_gnome_keyring.so
+account    include	system-auth
+password   include	system-auth
+session    include	system-auth



More information about the arch-commits mailing list