[arch-commits] Commit in mkinitcpio/repos/core-any (6 files)

2015-08-28 Thread Eric Bélanger
Date: Saturday, August 29, 2015 @ 05:47:07
  Author: eric
Revision: 244993

archrelease: copy trunk to core-any

Added:
  
mkinitcpio/repos/core-any/0001-avoid-compound-conditional-leading-to-spurious-error.patch
(from rev 244992, 
mkinitcpio/trunk/0001-avoid-compound-conditional-leading-to-spurious-error.patch)
  mkinitcpio/repos/core-any/PKGBUILD
(from rev 244992, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/core-any/mkinitcpio.install
(from rev 244992, mkinitcpio/trunk/mkinitcpio.install)
Deleted:
  
mkinitcpio/repos/core-any/0001-avoid-compound-conditional-leading-to-spurious-error.patch
  mkinitcpio/repos/core-any/PKGBUILD
  mkinitcpio/repos/core-any/mkinitcpio.install

-+
 0001-avoid-compound-conditional-leading-to-spurious-error.patch |   78 
+-
 PKGBUILD|   67 
 mkinitcpio.install  |   30 +--
 3 files changed, 88 insertions(+), 87 deletions(-)

Deleted: 0001-avoid-compound-conditional-leading-to-spurious-error.patch
===
--- 0001-avoid-compound-conditional-leading-to-spurious-error.patch 
2015-08-29 03:41:40 UTC (rev 244992)
+++ 0001-avoid-compound-conditional-leading-to-spurious-error.patch 
2015-08-29 03:47:07 UTC (rev 244993)
@@ -1,39 +0,0 @@
-From ea4c4154205372154457c794513ae46b61ea4e4c Mon Sep 17 00:00:00 2001
-From: Dave Reisner dreis...@archlinux.org
-Date: Mon, 4 Aug 2014 08:31:37 -0400
-Subject: [mkinitcpio] [PATCH] avoid compound conditional leading to spurious
- errors
-
-As seen:
-
-https://bbs.archlinux.org/viewtopic.php?id=185204
-https://bbs.archlinux.org/viewtopic.php?id=185265

- functions | 8 ++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/functions b/functions
-index 20bbffe..362d07b 100644
 a/functions
-+++ b/functions
-@@ -423,11 +423,15 @@ add_full_dir() {
- 
- for f in $1/*; do
- if [[ -L $f ]]; then
--[[ $f = $filter ]]  add_symlink $f $(readlink $f)
-+if [[ $f = $filter ]]; then
-+add_symlink $f $(readlink $f)
-+fi
- elif [[ -d $f ]]; then
- add_full_dir $f
- elif [[ -f $f ]]; then
--[[ $f = $filter ]]  add_file $f
-+if [[ $f = $filter ]]; then
-+add_file $f
-+fi
- fi
- done
- fi
--- 
-2.1.0
-

Copied: 
mkinitcpio/repos/core-any/0001-avoid-compound-conditional-leading-to-spurious-error.patch
 (from rev 244992, 
mkinitcpio/trunk/0001-avoid-compound-conditional-leading-to-spurious-error.patch)
===
--- 0001-avoid-compound-conditional-leading-to-spurious-error.patch 
(rev 0)
+++ 0001-avoid-compound-conditional-leading-to-spurious-error.patch 
2015-08-29 03:47:07 UTC (rev 244993)
@@ -0,0 +1,39 @@
+From ea4c4154205372154457c794513ae46b61ea4e4c Mon Sep 17 00:00:00 2001
+From: Dave Reisner dreis...@archlinux.org
+Date: Mon, 4 Aug 2014 08:31:37 -0400
+Subject: [mkinitcpio] [PATCH] avoid compound conditional leading to spurious
+ errors
+
+As seen:
+
+https://bbs.archlinux.org/viewtopic.php?id=185204
+https://bbs.archlinux.org/viewtopic.php?id=185265
+---
+ functions | 8 ++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/functions b/functions
+index 20bbffe..362d07b 100644
+--- a/functions
 b/functions
+@@ -423,11 +423,15 @@ add_full_dir() {
+ 
+ for f in $1/*; do
+ if [[ -L $f ]]; then
+-[[ $f = $filter ]]  add_symlink $f $(readlink $f)
++if [[ $f = $filter ]]; then
++add_symlink $f $(readlink $f)
++fi
+ elif [[ -d $f ]]; then
+ add_full_dir $f
+ elif [[ -f $f ]]; then
+-[[ $f = $filter ]]  add_file $f
++if [[ $f = $filter ]]; then
++add_file $f
++fi
+ fi
+ done
+ fi
+-- 
+2.1.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-08-29 03:41:40 UTC (rev 244992)
+++ PKGBUILD2015-08-29 03:47:07 UTC (rev 244993)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=mkinitcpio
-pkgver=18
-pkgrel=2
-pkgdesc=Modular initramfs image creation utility
-arch=('any')
-url=https://projects.archlinux.org/mkinitcpio.git/;
-license=('GPL')
-depends=('awk' 'mkinitcpio-busybox=1.19.4-2' 'kmod' 'util-linux=2.23' 
'libarchive'
- 'coreutils' 'bash' 'findutils' 'grep' 'filesystem=2011.10-1' 'gzip' 
'systemd')
-optdepends=('xz: Use lzma or xz compression for the initramfs image'
-'bzip2: 

[arch-commits] Commit in mkinitcpio/repos/core-any (PKGBUILD PKGBUILD)

2012-04-13 Thread Dave Reisner
Date: Friday, April 13, 2012 @ 19:11:31
  Author: dreisner
Revision: 156099

archrelease: copy trunk to core-any

Added:
  mkinitcpio/repos/core-any/PKGBUILD
(from rev 156098, mkinitcpio/trunk/PKGBUILD)
Deleted:
  mkinitcpio/repos/core-any/PKGBUILD

--+
 PKGBUILD |   56 ++--
 1 file changed, 30 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-04-13 23:08:26 UTC (rev 156098)
+++ PKGBUILD2012-04-13 23:11:31 UTC (rev 156099)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=mkinitcpio
-pkgver=0.8.7
-pkgrel=1
-pkgdesc=Modular initramfs image creation utility
-arch=('any')
-url=http://www.archlinux.org/;
-license=('GPL')
-depends=('mkinitcpio-busybox=1.19.4-2' 'kmod=3' 'util-linux=2.21' 
'libarchive' 'coreutils'
- 'bash' 'findutils' 'sed' 'grep' 'filesystem=2011.10-1' 'file' 'gzip')
-optdepends=('xz: Use lzma or xz compression for the initramfs image'
-'bzip2: Use bzip2 compression for the initramfs image'
-'lzop: Use lzo compression for the initramfs image'
-'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
-backup=('etc/mkinitcpio.conf')
-source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('527847507e6183929ecbdbcdda5031eb')
-sha256sums=('2bfa98845a48e87988bd90c5dbc39ddcc8eb1b6dfc30969a60101952c2ef7d91')
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}
-

Copied: mkinitcpio/repos/core-any/PKGBUILD (from rev 156098, 
mkinitcpio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-04-13 23:11:31 UTC (rev 156099)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=mkinitcpio
+pkgver=0.8.7
+pkgrel=2
+pkgdesc=Modular initramfs image creation utility
+arch=('any')
+url=http://www.archlinux.org/;
+license=('GPL')
+depends=('mkinitcpio-busybox=1.19.4-2' 'kmod=3' 'util-linux=2.21' 
'libarchive' 'coreutils'
+ 'bash' 'findutils' 'sed' 'grep' 'filesystem=2011.10-1' 'file' 'gzip')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+backup=('etc/mkinitcpio.conf')
+source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('527847507e6183929ecbdbcdda5031eb')
+sha256sums=('2bfa98845a48e87988bd90c5dbc39ddcc8eb1b6dfc30969a60101952c2ef7d91')
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+
+  # compat symlink
+  install -dm755 $pkgdir/sbin
+  ln -s /usr/bin/mkinitcpio $pkgdir/sbin/mkinitcpio
+}
+



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-07-10 Thread Thomas Bächler
Date: Sunday, July 10, 2011 @ 12:01:24
  Author: thomas
Revision: 131084

db-move: mkinitcpio removed by thomas for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-07-10 Thread Thomas Bächler
Date: Sunday, July 10, 2011 @ 12:01:24
  Author: thomas
Revision: 131085

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-06-17 Thread Thomas Bächler
Date: Friday, June 17, 2011 @ 04:30:45
  Author: thomas
Revision: 127625

db-move: mkinitcpio removed by thomas for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-06-17 Thread Thomas Bächler
Date: Friday, June 17, 2011 @ 04:30:46
  Author: thomas
Revision: 127626

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-06-12 Thread Thomas Bächler
Date: Sunday, June 12, 2011 @ 09:50:43
  Author: thomas
Revision: 127298

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-05-17 Thread Thomas Bächler
Date: Tuesday, May 17, 2011 @ 13:35:58
  Author: thomas
Revision: 124219

db-move: mkinitcpio removed by thomas for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-05-17 Thread Thomas Bächler
Date: Tuesday, May 17, 2011 @ 13:35:59
  Author: thomas
Revision: 124220

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-05-03 Thread Thomas Bächler
Date: Tuesday, May 3, 2011 @ 04:14:16
  Author: thomas
Revision: 122237

db-move: mkinitcpio removed by thomas for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-05-03 Thread Thomas Bächler
Date: Tuesday, May 3, 2011 @ 04:14:18
  Author: thomas
Revision: 122238

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-03-02 Thread Ionut Biru
Date: Wednesday, March 2, 2011 @ 06:56:47
  Author: ibiru
Revision: 111942

db-move: mkinitcpio removed by ibiru for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-03-02 Thread Ionut Biru
Date: Wednesday, March 2, 2011 @ 06:56:50
  Author: ibiru
Revision: 111943

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2011-01-30 Thread Thomas Bächler
Date: Sunday, January 30, 2011 @ 06:17:24
  Author: thomas
Revision: 108148

db-move: mkinitcpio removed by thomas for move to [core] (any)

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2011-01-30 Thread Thomas Bächler
Date: Sunday, January 30, 2011 @ 06:17:24
  Author: thomas
Revision: 108149

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-07-13 Thread Thomas Bächler
Date: Tuesday, July 13, 2010 @ 09:35:31
  Author: thomas
Revision: 85449

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-07-13 Thread Thomas Bächler
Date: Tuesday, July 13, 2010 @ 09:35:33
  Author: thomas
Revision: 85450

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-06-20 Thread Thomas Bächler
Date: Sunday, June 20, 2010 @ 16:23:19
  Author: thomas
Revision: 83156

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-06-20 Thread Thomas Bächler
Date: Sunday, June 20, 2010 @ 16:23:21
  Author: thomas
Revision: 83157

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-05-09 Thread Thomas Bächler
Date: Sunday, May 9, 2010 @ 09:13:36
  Author: thomas
Revision: 79901

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-05-09 Thread Thomas Bächler
Date: Sunday, May 9, 2010 @ 09:13:36
  Author: thomas
Revision: 79902

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-02-22 Thread Thomas Bächler
Date: Monday, February 22, 2010 @ 12:30:45
  Author: thomas
Revision: 69781

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:38:00
  Author: thomas
Revision: 68815

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:38:01
  Author: thomas
Revision: 68816

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 13:34:35
  Author: thomas
Revision: 68878

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 13:34:35
  Author: thomas
Revision: 68879

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-01-26 Thread Thomas Bächler
Date: Tuesday, January 26, 2010 @ 08:00:27
  Author: thomas
Revision: 65273

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-01-13 Thread Thomas Bächler
Date: Wednesday, January 13, 2010 @ 14:55:10
  Author: thomas
Revision: 62913

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-01-13 Thread Thomas Bächler
Date: Wednesday, January 13, 2010 @ 14:55:11
  Author: thomas
Revision: 62914

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/