[arch-commits] Commit in pkgfile/repos (8 files)

Dave Reisner dreisner at nymeria.archlinux.org
Tue May 13 01:21:59 UTC 2014


    Date: Tuesday, May 13, 2014 @ 03:21:58
  Author: dreisner
Revision: 212330

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

Added:
  pkgfile/repos/extra-i686/PKGBUILD
    (from rev 212329, pkgfile/trunk/PKGBUILD)
  pkgfile/repos/extra-i686/pkgfile.install
    (from rev 212329, pkgfile/trunk/pkgfile.install)
  pkgfile/repos/extra-x86_64/PKGBUILD
    (from rev 212329, pkgfile/trunk/PKGBUILD)
  pkgfile/repos/extra-x86_64/pkgfile.install
    (from rev 212329, pkgfile/trunk/pkgfile.install)
Deleted:
  pkgfile/repos/extra-i686/PKGBUILD
  pkgfile/repos/extra-i686/pkgfile.install
  pkgfile/repos/extra-x86_64/PKGBUILD
  pkgfile/repos/extra-x86_64/pkgfile.install

------------------------------+
 /PKGBUILD                    |   70 +++++++++++++++++++++++++++++++++++++++++
 /pkgfile.install             |   36 +++++++++++++++++++++
 extra-i686/PKGBUILD          |   34 -------------------
 extra-i686/pkgfile.install   |   18 ----------
 extra-x86_64/PKGBUILD        |   34 -------------------
 extra-x86_64/pkgfile.install |   18 ----------
 6 files changed, 106 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2014-05-13 01:21:36 UTC (rev 212329)
+++ extra-i686/PKGBUILD	2014-05-13 01:21:58 UTC (rev 212330)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner <dreisner at archlinux.org>
-
-pkgname=pkgfile
-pkgver=13
-pkgrel=1
-pkgdesc="a pacman .files metadata explorer"
-arch=('i686' 'x86_64')
-url="http://github.com/falconindy/pkgfile"
-license=('MIT')
-depends=('libarchive' 'curl' 'pcre' 'pacman')
-source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-install=pkgfile.install
-md5sums=('7b4e20bf3ec6604cd439d5acd6ca871d'
-         'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure
-  make
-
-  # generate a license file
-  sed '/\*\//q' src/pkgfile.c >LICENSE
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ft=sh syn=sh

Copied: pkgfile/repos/extra-i686/PKGBUILD (from rev 212329, pkgfile/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2014-05-13 01:21:58 UTC (rev 212330)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner <dreisner at archlinux.org>
+
+pkgname=pkgfile
+pkgver=14
+pkgrel=1
+pkgdesc="a pacman .files metadata explorer"
+arch=('i686' 'x86_64')
+url="http://github.com/falconindy/pkgfile"
+license=('MIT')
+depends=('libarchive' 'curl' 'pcre' 'pacman')
+source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+install=pkgfile.install
+md5sums=('aae3642bfe379731c7d9819b41bc1ab9'
+         'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+
+  # generate a license file
+  sed '/\*\//q' src/pkgfile.c >LICENSE
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ft=sh syn=sh

Deleted: extra-i686/pkgfile.install
===================================================================
--- extra-i686/pkgfile.install	2014-05-13 01:21:36 UTC (rev 212329)
+++ extra-i686/pkgfile.install	2014-05-13 01:21:58 UTC (rev 212330)
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-post_install() {
-  printf "==> Run 'pkgfile --update' to initialize the database\n"
-}
-
-post_remove() {
-  # the cache dir might not be removed, notify the user
-  if [ -d var/cache/pkgfile ]; then
-    printf "==> /var/cache/pkgfile has not been removed\n"
-  fi
-}
-
-post_upgrade() {
-  if [ "$(vercmp 5 "$2")" -eq 1 ]; then
-    printf "==> DB format has changed. Please run pkgfile -uu\n"
-  fi
-}

Copied: pkgfile/repos/extra-i686/pkgfile.install (from rev 212329, pkgfile/trunk/pkgfile.install)
===================================================================
--- extra-i686/pkgfile.install	                        (rev 0)
+++ extra-i686/pkgfile.install	2014-05-13 01:21:58 UTC (rev 212330)
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+post_install() {
+  printf "==> Run 'pkgfile --update' to initialize the database\n"
+}
+
+post_remove() {
+  # the cache dir might not be removed, notify the user
+  if [ -d var/cache/pkgfile ]; then
+    printf "==> /var/cache/pkgfile has not been removed\n"
+  fi
+}
+
+post_upgrade() {
+  if [ "$(vercmp 5 "$2")" -eq 1 ]; then
+    printf "==> DB format has changed. Please run pkgfile -uu\n"
+  fi
+}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2014-05-13 01:21:36 UTC (rev 212329)
+++ extra-x86_64/PKGBUILD	2014-05-13 01:21:58 UTC (rev 212330)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner <dreisner at archlinux.org>
-
-pkgname=pkgfile
-pkgver=13
-pkgrel=1
-pkgdesc="a pacman .files metadata explorer"
-arch=('i686' 'x86_64')
-url="http://github.com/falconindy/pkgfile"
-license=('MIT')
-depends=('libarchive' 'curl' 'pcre' 'pacman')
-source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-install=pkgfile.install
-md5sums=('7b4e20bf3ec6604cd439d5acd6ca871d'
-         'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure
-  make
-
-  # generate a license file
-  sed '/\*\//q' src/pkgfile.c >LICENSE
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ft=sh syn=sh

Copied: pkgfile/repos/extra-x86_64/PKGBUILD (from rev 212329, pkgfile/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2014-05-13 01:21:58 UTC (rev 212330)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner <dreisner at archlinux.org>
+
+pkgname=pkgfile
+pkgver=14
+pkgrel=1
+pkgdesc="a pacman .files metadata explorer"
+arch=('i686' 'x86_64')
+url="http://github.com/falconindy/pkgfile"
+license=('MIT')
+depends=('libarchive' 'curl' 'pcre' 'pacman')
+source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+install=pkgfile.install
+md5sums=('aae3642bfe379731c7d9819b41bc1ab9'
+         'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+
+  # generate a license file
+  sed '/\*\//q' src/pkgfile.c >LICENSE
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ft=sh syn=sh

Deleted: extra-x86_64/pkgfile.install
===================================================================
--- extra-x86_64/pkgfile.install	2014-05-13 01:21:36 UTC (rev 212329)
+++ extra-x86_64/pkgfile.install	2014-05-13 01:21:58 UTC (rev 212330)
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-post_install() {
-  printf "==> Run 'pkgfile --update' to initialize the database\n"
-}
-
-post_remove() {
-  # the cache dir might not be removed, notify the user
-  if [ -d var/cache/pkgfile ]; then
-    printf "==> /var/cache/pkgfile has not been removed\n"
-  fi
-}
-
-post_upgrade() {
-  if [ "$(vercmp 5 "$2")" -eq 1 ]; then
-    printf "==> DB format has changed. Please run pkgfile -uu\n"
-  fi
-}

Copied: pkgfile/repos/extra-x86_64/pkgfile.install (from rev 212329, pkgfile/trunk/pkgfile.install)
===================================================================
--- extra-x86_64/pkgfile.install	                        (rev 0)
+++ extra-x86_64/pkgfile.install	2014-05-13 01:21:58 UTC (rev 212330)
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+post_install() {
+  printf "==> Run 'pkgfile --update' to initialize the database\n"
+}
+
+post_remove() {
+  # the cache dir might not be removed, notify the user
+  if [ -d var/cache/pkgfile ]; then
+    printf "==> /var/cache/pkgfile has not been removed\n"
+  fi
+}
+
+post_upgrade() {
+  if [ "$(vercmp 5 "$2")" -eq 1 ]; then
+    printf "==> DB format has changed. Please run pkgfile -uu\n"
+  fi
+}




More information about the arch-commits mailing list