[arch-commits] Commit in tali/repos (8 files)
Jan de Groot
jgc at nymeria.archlinux.org
Mon Sep 16 08:09:39 UTC 2013
Date: Monday, September 16, 2013 @ 10:09:38
Author: jgc
Revision: 194408
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
tali/repos/extra-i686/PKGBUILD
(from rev 194407, tali/trunk/PKGBUILD)
tali/repos/extra-i686/tali.install
(from rev 194407, tali/trunk/tali.install)
tali/repos/extra-x86_64/PKGBUILD
(from rev 194407, tali/trunk/PKGBUILD)
tali/repos/extra-x86_64/tali.install
(from rev 194407, tali/trunk/tali.install)
Deleted:
tali/repos/extra-i686/PKGBUILD
tali/repos/extra-i686/tali.install
tali/repos/extra-x86_64/PKGBUILD
tali/repos/extra-x86_64/tali.install
---------------------------+
/PKGBUILD | 72 ++++++++++++++++++++++++++++++++++++++++++++
/tali.install | 68 +++++++++++++++++++++++++++++++++++++++++
extra-i686/PKGBUILD | 36 ----------------------
extra-i686/tali.install | 34 --------------------
extra-x86_64/PKGBUILD | 36 ----------------------
extra-x86_64/tali.install | 34 --------------------
6 files changed, 140 insertions(+), 140 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-09-16 08:09:32 UTC (rev 194407)
+++ extra-i686/PKGBUILD 2013-09-16 08:09:38 UTC (rev 194408)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 168943 2012-10-16 16:31:44Z heftig $
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=tali
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="Beat the odds in a poker-style dice game"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs' '!libtool')
-install=tali.install
-url="https://live.gnome.org/Tali"
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('77fa3a3804f51e40629799d441b34e9b01a665097be229bd94adb28d3dbc17d5')
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-schemas-compile \
- --with-scores-user=root --with-scores-group=games
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-
- # Remove all scores, we generate them from postinstall
- rm -rf "$pkgdir/var"
-}
Copied: tali/repos/extra-i686/PKGBUILD (from rev 194407, tali/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-16 08:09:38 UTC (rev 194408)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 168943 2012-10-16 16:31:44Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=tali
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="Beat the odds in a poker-style dice game"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs' '!libtool')
+install=tali.install
+url="https://live.gnome.org/Tali"
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('33a7a67a9ba2034cba916a033ee70285a334438a460fccd24373c7edcfc592c8')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-schemas-compile \
+ --with-scores-user=root --with-scores-group=games
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ # Remove all scores, we generate them from postinstall
+ rm -rf "$pkgdir/var"
+}
Deleted: extra-i686/tali.install
===================================================================
--- extra-i686/tali.install 2013-09-16 08:09:32 UTC (rev 194407)
+++ extra-i686/tali.install 2013-09-16 08:09:38 UTC (rev 194408)
@@ -1,34 +0,0 @@
-_scores=(
- gtali.Colors.scores
- gtali.Regular.scores
-)
-
-post_install() {
- glib-compile-schemas usr/share/glib-2.0/schemas
- update-desktop-database -q
- gtk-update-icon-cache -q -f usr/share/icons/hicolor
-
- for score in "${_scores[@]}" ; do
- if [ -e "var/games/$score" ]; then
- continue
- fi
-
- touch "var/games/$score"
- chown root:games "var/games/$score"
- chmod 664 "var/games/$score"
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- glib-compile-schemas usr/share/glib-2.0/schemas
- update-desktop-database -q
- gtk-update-icon-cache -q -f usr/share/icons/hicolor
-
- for score in "${_scores[@]}" ; do
- rm -f "var/games/$score"
- done
-}
Copied: tali/repos/extra-i686/tali.install (from rev 194407, tali/trunk/tali.install)
===================================================================
--- extra-i686/tali.install (rev 0)
+++ extra-i686/tali.install 2013-09-16 08:09:38 UTC (rev 194408)
@@ -0,0 +1,34 @@
+_scores=(
+ gtali.Colors.scores
+ gtali.Regular.scores
+)
+
+post_install() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ gtk-update-icon-cache -q -f usr/share/icons/hicolor
+
+ for score in "${_scores[@]}" ; do
+ if [ -e "var/games/$score" ]; then
+ continue
+ fi
+
+ touch "var/games/$score"
+ chown root:games "var/games/$score"
+ chmod 664 "var/games/$score"
+ done
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ gtk-update-icon-cache -q -f usr/share/icons/hicolor
+
+ for score in "${_scores[@]}" ; do
+ rm -f "var/games/$score"
+ done
+}
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2013-09-16 08:09:32 UTC (rev 194407)
+++ extra-x86_64/PKGBUILD 2013-09-16 08:09:38 UTC (rev 194408)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 168943 2012-10-16 16:31:44Z heftig $
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=tali
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="Beat the odds in a poker-style dice game"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs' '!libtool')
-install=tali.install
-url="https://live.gnome.org/Tali"
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('77fa3a3804f51e40629799d441b34e9b01a665097be229bd94adb28d3dbc17d5')
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-schemas-compile \
- --with-scores-user=root --with-scores-group=games
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-
- # Remove all scores, we generate them from postinstall
- rm -rf "$pkgdir/var"
-}
Copied: tali/repos/extra-x86_64/PKGBUILD (from rev 194407, tali/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2013-09-16 08:09:38 UTC (rev 194408)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 168943 2012-10-16 16:31:44Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=tali
+pkgver=3.8.1
+pkgrel=1
+pkgdesc="Beat the odds in a poker-style dice game"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs' '!libtool')
+install=tali.install
+url="https://live.gnome.org/Tali"
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('33a7a67a9ba2034cba916a033ee70285a334438a460fccd24373c7edcfc592c8')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-schemas-compile \
+ --with-scores-user=root --with-scores-group=games
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ # Remove all scores, we generate them from postinstall
+ rm -rf "$pkgdir/var"
+}
Deleted: extra-x86_64/tali.install
===================================================================
--- extra-x86_64/tali.install 2013-09-16 08:09:32 UTC (rev 194407)
+++ extra-x86_64/tali.install 2013-09-16 08:09:38 UTC (rev 194408)
@@ -1,34 +0,0 @@
-_scores=(
- gtali.Colors.scores
- gtali.Regular.scores
-)
-
-post_install() {
- glib-compile-schemas usr/share/glib-2.0/schemas
- update-desktop-database -q
- gtk-update-icon-cache -q -f usr/share/icons/hicolor
-
- for score in "${_scores[@]}" ; do
- if [ -e "var/games/$score" ]; then
- continue
- fi
-
- touch "var/games/$score"
- chown root:games "var/games/$score"
- chmod 664 "var/games/$score"
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- glib-compile-schemas usr/share/glib-2.0/schemas
- update-desktop-database -q
- gtk-update-icon-cache -q -f usr/share/icons/hicolor
-
- for score in "${_scores[@]}" ; do
- rm -f "var/games/$score"
- done
-}
Copied: tali/repos/extra-x86_64/tali.install (from rev 194407, tali/trunk/tali.install)
===================================================================
--- extra-x86_64/tali.install (rev 0)
+++ extra-x86_64/tali.install 2013-09-16 08:09:38 UTC (rev 194408)
@@ -0,0 +1,34 @@
+_scores=(
+ gtali.Colors.scores
+ gtali.Regular.scores
+)
+
+post_install() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ gtk-update-icon-cache -q -f usr/share/icons/hicolor
+
+ for score in "${_scores[@]}" ; do
+ if [ -e "var/games/$score" ]; then
+ continue
+ fi
+
+ touch "var/games/$score"
+ chown root:games "var/games/$score"
+ chmod 664 "var/games/$score"
+ done
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ gtk-update-icon-cache -q -f usr/share/icons/hicolor
+
+ for score in "${_scores[@]}" ; do
+ rm -f "var/games/$score"
+ done
+}
More information about the arch-commits
mailing list