[arch-commits] Commit in kshutdown/repos (6 files)

Alexander Rødseth arodseth at archlinux.org
Tue May 24 20:27:47 UTC 2016


    Date: Tuesday, May 24, 2016 @ 22:27:46
  Author: arodseth
Revision: 176458

archrelease: copy trunk to community-x86_64, community-i686

Added:
  kshutdown/repos/community-i686/PKGBUILD
    (from rev 176457, kshutdown/trunk/PKGBUILD)
  kshutdown/repos/community-x86_64/PKGBUILD
    (from rev 176457, kshutdown/trunk/PKGBUILD)
Deleted:
  kshutdown/repos/community-i686/PKGBUILD
  kshutdown/repos/community-i686/kshutdown.install
  kshutdown/repos/community-x86_64/PKGBUILD
  kshutdown/repos/community-x86_64/kshutdown.install

------------------------------------+
 /PKGBUILD                          |   62 +++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD            |   31 -----------------
 community-i686/kshutdown.install   |   13 -------
 community-x86_64/PKGBUILD          |   31 -----------------
 community-x86_64/kshutdown.install |   13 -------
 5 files changed, 62 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-05-24 20:27:33 UTC (rev 176457)
+++ community-i686/PKGBUILD	2016-05-24 20:27:46 UTC (rev 176458)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=kshutdown
-pkgver=3.2
-pkgrel=4
-pkgdesc='Shutdown Utility for KDE'
-arch=('x86_64' 'i686')
-url='http://kshutdown.sourceforge.net/'
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
-sha256sums=('8be6c2a15bb539919f94ec0caf20f00b144185f996b7663c464fbf7ce8f4a39f')
-
-build() {
-  mkdir build
-  cd build
-  cmake "../$pkgname-$pkgver" \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: kshutdown/repos/community-i686/PKGBUILD (from rev 176457, kshutdown/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-05-24 20:27:46 UTC (rev 176458)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=kshutdown
+pkgver=3.2
+pkgrel=5
+pkgdesc='Shutdown Utility for KDE'
+arch=('x86_64' 'i686')
+url='http://kshutdown.sourceforge.net/'
+license=('GPL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'ninja')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
+sha256sums=('8be6c2a15bb539919f94ec0caf20f00b144185f996b7663c464fbf7ce8f4a39f')
+
+build() {
+  mkdir build
+  cd build
+  cmake "../$pkgname-$pkgver" \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/kshutdown.install
===================================================================
--- community-i686/kshutdown.install	2016-05-24 20:27:33 UTC (rev 176457)
+++ community-i686/kshutdown.install	2016-05-24 20:27:46 UTC (rev 176458)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-05-24 20:27:33 UTC (rev 176457)
+++ community-x86_64/PKGBUILD	2016-05-24 20:27:46 UTC (rev 176458)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=kshutdown
-pkgver=3.2
-pkgrel=4
-pkgdesc='Shutdown Utility for KDE'
-arch=('x86_64' 'i686')
-url='http://kshutdown.sourceforge.net/'
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
-sha256sums=('8be6c2a15bb539919f94ec0caf20f00b144185f996b7663c464fbf7ce8f4a39f')
-
-build() {
-  mkdir build
-  cd build
-  cmake "../$pkgname-$pkgver" \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: kshutdown/repos/community-x86_64/PKGBUILD (from rev 176457, kshutdown/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-05-24 20:27:46 UTC (rev 176458)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=kshutdown
+pkgver=3.2
+pkgrel=5
+pkgdesc='Shutdown Utility for KDE'
+arch=('x86_64' 'i686')
+url='http://kshutdown.sourceforge.net/'
+license=('GPL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'ninja')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.zip")
+sha256sums=('8be6c2a15bb539919f94ec0caf20f00b144185f996b7663c464fbf7ce8f4a39f')
+
+build() {
+  mkdir build
+  cd build
+  cmake "../$pkgname-$pkgver" \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/kshutdown.install
===================================================================
--- community-x86_64/kshutdown.install	2016-05-24 20:27:33 UTC (rev 176457)
+++ community-x86_64/kshutdown.install	2016-05-24 20:27:46 UTC (rev 176458)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list