[arch-commits] Commit in xfce4-whiskermenu-plugin/repos (6 files)

Alexander Rødseth arodseth at archlinux.org
Sat May 28 17:12:29 UTC 2016


    Date: Saturday, May 28, 2016 @ 19:12:29
  Author: arodseth
Revision: 177375

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

Added:
  xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD
    (from rev 177374, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
    (from rev 177374, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD
  xfce4-whiskermenu-plugin/repos/community-i686/xfce4-whiskermenu-plugin.install
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
  xfce4-whiskermenu-plugin/repos/community-x86_64/xfce4-whiskermenu-plugin.install

---------------------------------------------------+
 /PKGBUILD                                         |   68 ++++++++++++++++++++
 community-i686/PKGBUILD                           |   34 ----------
 community-i686/xfce4-whiskermenu-plugin.install   |   13 ---
 community-x86_64/PKGBUILD                         |   34 ----------
 community-x86_64/xfce4-whiskermenu-plugin.install |   13 ---
 5 files changed, 68 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-05-28 17:12:16 UTC (rev 177374)
+++ community-i686/PKGBUILD	2016-05-28 17:12:29 UTC (rev 177375)
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Graeme Gott <graeme at gottcode.org>
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=1.5.3
-pkgrel=1
-pkgdesc='Alternate menu for Xfce4'
-arch=('x86_64' 'i686')
-url="http://gottcode.org/xfce4-whiskermenu-plugin/"
-groups=('xfce4-goodies')
-license=('GPL2')
-depends=('xfce4-panel')
-makedepends=('cmake')
-install="$pkgname.install"
-source=("http://gottcode.org/$pkgname/$pkgname-$pkgver.tar.bz2")
-source=("http://mirror.netcologne.de/xfce/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
-sha256sums=('68a8273395671d5163fd8cd9a73755ef03d4ea74891204498a21582a9c2e925b')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cmake \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" install DESTDIR="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-whiskermenu-plugin/repos/community-i686/PKGBUILD (from rev 177374, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-05-28 17:12:29 UTC (rev 177375)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Graeme Gott <graeme at gottcode.org>
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=1.5.3
+pkgrel=2
+pkgdesc='Alternate menu for Xfce4'
+arch=('x86_64' 'i686')
+url='http://gottcode.org/xfce4-whiskermenu-plugin/'
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('xfce4-panel')
+makedepends=('cmake' 'ninja')
+#source=("http://gottcode.org/$pkgname/$pkgname-$pkgver.tar.bz2")
+source=("http://mirror.netcologne.de/xfce/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
+sha256sums=('68a8273395671d5163fd8cd9a73755ef03d4ea74891204498a21582a9c2e925b')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "$srcdir/$pkgname-$pkgver" \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/xfce4-whiskermenu-plugin.install
===================================================================
--- community-i686/xfce4-whiskermenu-plugin.install	2016-05-28 17:12:16 UTC (rev 177374)
+++ community-i686/xfce4-whiskermenu-plugin.install	2016-05-28 17:12:29 UTC (rev 177375)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-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-28 17:12:16 UTC (rev 177374)
+++ community-x86_64/PKGBUILD	2016-05-28 17:12:29 UTC (rev 177375)
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Graeme Gott <graeme at gottcode.org>
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=1.5.3
-pkgrel=1
-pkgdesc='Alternate menu for Xfce4'
-arch=('x86_64' 'i686')
-url="http://gottcode.org/xfce4-whiskermenu-plugin/"
-groups=('xfce4-goodies')
-license=('GPL2')
-depends=('xfce4-panel')
-makedepends=('cmake')
-install="$pkgname.install"
-source=("http://gottcode.org/$pkgname/$pkgname-$pkgver.tar.bz2")
-source=("http://mirror.netcologne.de/xfce/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
-sha256sums=('68a8273395671d5163fd8cd9a73755ef03d4ea74891204498a21582a9c2e925b')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cmake \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" install DESTDIR="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD (from rev 177374, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-05-28 17:12:29 UTC (rev 177375)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 123401 2014-12-03 12:28:05Z arodseth $
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Graeme Gott <graeme at gottcode.org>
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=1.5.3
+pkgrel=2
+pkgdesc='Alternate menu for Xfce4'
+arch=('x86_64' 'i686')
+url='http://gottcode.org/xfce4-whiskermenu-plugin/'
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('xfce4-panel')
+makedepends=('cmake' 'ninja')
+#source=("http://gottcode.org/$pkgname/$pkgname-$pkgver.tar.bz2")
+source=("http://mirror.netcologne.de/xfce/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
+sha256sums=('68a8273395671d5163fd8cd9a73755ef03d4ea74891204498a21582a9c2e925b')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "$srcdir/$pkgname-$pkgver" \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/xfce4-whiskermenu-plugin.install
===================================================================
--- community-x86_64/xfce4-whiskermenu-plugin.install	2016-05-28 17:12:16 UTC (rev 177374)
+++ community-x86_64/xfce4-whiskermenu-plugin.install	2016-05-28 17:12:29 UTC (rev 177375)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list