[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2020-05-19 Thread Felix Yan via arch-commits
Date: Tuesday, May 19, 2020 @ 10:09:30
  Author: felixonmars
Revision: 386629

upgpkg: kexec-tools 2.0.20-2: reproducibility rebuild

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 10:08:45 UTC (rev 386628)
+++ PKGBUILD2020-05-19 10:09:30 UTC (rev 386629)
@@ -3,7 +3,7 @@
 
 pkgname=kexec-tools
 pkgver=2.0.20
-pkgrel=1
+pkgrel=2
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('x86_64')
 url="https://kernel.org/pub/linux/utils/kernel/kexec/;


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2020-05-19 Thread Evangelos Foutras via arch-commits
Date: Tuesday, May 19, 2020 @ 10:08:45
  Author: foutrelis
Revision: 386628

Add -fcommon workaround for GCC 10

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 10:08:44 UTC (rev 386627)
+++ PKGBUILD2020-05-19 10:08:45 UTC (rev 386628)
@@ -12,9 +12,14 @@
 depends=('zlib' 'xz')
 license=('GPL2')
 
+prepare() {
+  cd $pkgname
+  ./bootstrap
+}
+
 build() {
   cd $pkgname
-  ./bootstrap
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
   ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
   make
 }


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2020-02-22 Thread Antonio Rojas via arch-commits
Date: Saturday, February 22, 2020 @ 10:50:06
  Author: arojas
Revision: 376025

Remove gawk dependency (FS#64997)

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-22 04:43:21 UTC (rev 376024)
+++ PKGBUILD2020-02-22 10:50:06 UTC (rev 376025)
@@ -9,7 +9,7 @@
 url="https://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=("git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git#tag=v${pkgver}")
 makedepends=('git')
-depends=('gawk' 'zlib' 'xz')
+depends=('zlib' 'xz')
 license=('GPL2')
 
 build() {


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2019-10-08 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 8, 2019 @ 20:24:59
  Author: arojas
Revision: 364191

Fix quoting

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-08 20:24:18 UTC (rev 364190)
+++ PKGBUILD2019-10-08 20:24:59 UTC (rev 364191)
@@ -13,7 +13,7 @@
 license=('GPL2')
 
 build() {
-  cd $srcdir/$pkgname
+  cd $pkgname
   ./bootstrap
   ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
   make
@@ -20,9 +20,9 @@
 }
 
 package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir install
-  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -D -m644 kexec/kexec.8 "$pkgdir"/usr/share/man/man8/kexec.8
 }
 
 md5sums=('SKIP')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2019-08-26 Thread Antonio Rojas via arch-commits
Date: Monday, August 26, 2019 @ 11:56:38
  Author: arojas
Revision: 361230

Update to 2.0.20

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-26 11:54:49 UTC (rev 361229)
+++ PKGBUILD2019-08-26 11:56:38 UTC (rev 361230)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.17
+pkgver=2.0.20
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2019-05-06 Thread Antonio Rojas via arch-commits
Date: Monday, May 6, 2019 @ 20:10:04
  Author: arojas
Revision: 352596

https

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-06 20:09:27 UTC (rev 352595)
+++ PKGBUILD2019-05-06 20:10:04 UTC (rev 352596)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('x86_64')
-url="http://kernel.org/pub/linux/utils/kernel/kexec/;
+url="https://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=("git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git#tag=v${pkgver}")
 makedepends=('git')
 depends=('gawk' 'zlib' 'xz')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2018-06-22 Thread Tobias Powalowski via arch-commits
Date: Friday, June 22, 2018 @ 08:39:25
  Author: tpowa
Revision: 327447

upgpkg: kexec-tools 2.0.17-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-22 08:38:04 UTC (rev 327446)
+++ PKGBUILD2018-06-22 08:39:25 UTC (rev 327447)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.15
+pkgver=2.0.17
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2017-09-21 Thread Tobias Powalowski
Date: Thursday, September 21, 2017 @ 20:39:32
  Author: tpowa
Revision: 306079

upgpkg: kexec-tools 2.0.15-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-21 20:29:52 UTC (rev 306078)
+++ PKGBUILD2017-09-21 20:39:32 UTC (rev 306079)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.14
+pkgver=2.0.15
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2017-03-17 Thread Tobias Powalowski
Date: Friday, March 17, 2017 @ 16:04:47
  Author: tpowa
Revision: 291002

upgpkg: kexec-tools 2.0.14-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-17 15:28:45 UTC (rev 291001)
+++ PKGBUILD2017-03-17 16:04:47 UTC (rev 291002)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.13
+pkgver=2.0.14
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2016-11-15 Thread Tobias Powalowski
Date: Tuesday, November 15, 2016 @ 14:38:56
  Author: tpowa
Revision: 280828

upgpkg: kexec-tools 2.0.13-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-15 14:00:14 UTC (rev 280827)
+++ PKGBUILD2016-11-15 14:38:56 UTC (rev 280828)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.12
+pkgver=2.0.13
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2016-06-09 Thread Tobias Powalowski
Date: Thursday, June 9, 2016 @ 19:55:15
  Author: tpowa
Revision: 269226

upgpkg: kexec-tools 2.0.12-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-09 17:54:40 UTC (rev 269225)
+++ PKGBUILD2016-06-09 17:55:15 UTC (rev 269226)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.10
+pkgver=2.0.12
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2015-09-04 Thread Tobias Powalowski
Date: Friday, September 4, 2015 @ 22:00:41
  Author: tpowa
Revision: 245315

upgpkg: kexec-tools 2.0.10-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   18 --
 1 file changed, 8 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 19:51:59 UTC (rev 245314)
+++ PKGBUILD2015-09-04 20:00:41 UTC (rev 245315)
@@ -3,29 +3,27 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.8
+pkgver=2.0.10
 pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')
 url="http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=("https://sources.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
-# upstream tarballs broken with bsdtar!
-
#"http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
-
#"http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.sign;
-)
-# validpgpkeys=('E27CD9A1F5ACC2FF4BFE7285D7CF64696A374FBE')# Simon Horman
+source=("git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git#tag=v${pkgver}")
+makedepends=('git')
 depends=('gawk' 'zlib' 'xz')
 license=('GPL2')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname
+  ./bootstrap
   ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname
   make DESTDIR=$pkgdir install
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
-md5sums=('f6277721247b87b05ecc9a98d3eace1a')
+
+md5sums=('SKIP')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2015-01-13 Thread Tobias Powalowski
Date: Tuesday, January 13, 2015 @ 15:42:18
  Author: tpowa
Revision: 228971

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-13 14:21:48 UTC (rev 228970)
+++ PKGBUILD2015-01-13 14:42:18 UTC (rev 228971)
@@ -3,15 +3,17 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.7
+pkgver=2.0.8
 pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=(ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
+source=(#ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
 # upstream tarballs broken with bsdtar!
-
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
+
http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
+http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.sign;
 )
+validpgpkeys=('E27CD9A1F5ACC2FF4BFE7285D7CF64696A374FBE')# Simon Horman
 depends=('gawk' 'zlib' 'xz')
 license=('GPL2')
 
@@ -26,4 +28,5 @@
   make DESTDIR=$pkgdir install
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
-md5sums=('20903a8ede204e7a62e8f38ac01d292d')
+md5sums=('2c4dec4e857e84ca530478bac0ec114b'
+ 'SKIP')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2015-01-13 Thread Tobias Powalowski
Date: Tuesday, January 13, 2015 @ 17:55:15
  Author: tpowa
Revision: 228976

upgpkg: kexec-tools 2.0.8-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-13 15:48:05 UTC (rev 228975)
+++ PKGBUILD2015-01-13 16:55:15 UTC (rev 228976)
@@ -8,12 +8,12 @@
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=(#ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
+source=(ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
 # upstream tarballs broken with bsdtar!
-
http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
-http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.sign;
+
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
+
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.sign;
 )
-validpgpkeys=('E27CD9A1F5ACC2FF4BFE7285D7CF64696A374FBE')# Simon Horman
+# validpgpkeys=('E27CD9A1F5ACC2FF4BFE7285D7CF64696A374FBE')# Simon Horman
 depends=('gawk' 'zlib' 'xz')
 license=('GPL2')
 
@@ -28,5 +28,4 @@
   make DESTDIR=$pkgdir install
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
-md5sums=('2c4dec4e857e84ca530478bac0ec114b'
- 'SKIP')
+md5sums=('f6277721247b87b05ecc9a98d3eace1a')


[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2014-07-01 Thread Tobias Powalowski
Date: Tuesday, July 1, 2014 @ 09:38:25
  Author: tpowa
Revision: 215948

upgpkg: kexec-tools 2.0.7-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 06:24:38 UTC (rev 215947)
+++ PKGBUILD2014-07-01 07:38:25 UTC (rev 215948)
@@ -3,7 +3,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.6
+pkgver=2.0.7
 pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
@@ -26,5 +26,4 @@
   make DESTDIR=$pkgdir install
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
-md5sums=('9192e5b9fab094b90f481226d1ad5e74')
-md5sums=('2baef0f424fa9994ba2c54cc93ed1233')
+md5sums=('20903a8ede204e7a62e8f38ac01d292d')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2014-05-15 Thread Tobias Powalowski
Date: Thursday, May 15, 2014 @ 09:47:05
  Author: tpowa
Revision: 212794

upgpkg: kexec-tools 2.0.6-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-15 07:22:08 UTC (rev 212793)
+++ PKGBUILD2014-05-15 07:47:05 UTC (rev 212794)
@@ -3,14 +3,14 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.4
-pkgrel=2
+pkgver=2.0.6
+pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=(ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
 # upstream tarballs broken with bsdtar!
-
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2;
+
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.xz;
 )
 depends=('gawk' 'zlib' 'xz')
 license=('GPL2')
@@ -26,4 +26,5 @@
   make DESTDIR=$pkgdir install
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
-md5sums=('4713026758923f5f3968905291b991ee')
+md5sums=('9192e5b9fab094b90f481226d1ad5e74')
+md5sums=('2baef0f424fa9994ba2c54cc93ed1233')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2013-05-29 Thread Tobias Powalowski
Date: Wednesday, May 29, 2013 @ 16:27:38
  Author: tpowa
Revision: 186569

remove backup array

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-29 14:26:17 UTC (rev 186568)
+++ PKGBUILD2013-05-29 14:27:38 UTC (rev 186569)
@@ -13,7 +13,6 @@
 
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2;
 )
 depends=('gawk' 'zlib' 'xz')
-backup=('etc/conf.d/kexec')
 license=('GPL2')
 
 build() {



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2013-05-19 Thread Tobias Powalowski
Date: Sunday, May 19, 2013 @ 11:24:11
  Author: tpowa
Revision: 185798

upgpkg: kexec-tools 2.0.4-2

move /sbin to /usr/bin

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-19 09:19:45 UTC (rev 185797)
+++ PKGBUILD2013-05-19 09:24:11 UTC (rev 185798)
@@ -4,7 +4,7 @@
 
 pkgname=kexec-tools
 pkgver=2.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
@@ -18,16 +18,13 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --without-lzma
+  ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
   make
 }
 
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
-
-  mv $pkgdir/usr/sbin $pkgdir/sbin
-
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
 }
 md5sums=('4713026758923f5f3968905291b991ee')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2013-04-08 Thread Tobias Powalowski
Date: Monday, April 8, 2013 @ 15:03:55
  Author: tpowa
Revision: 182154

upgpkg: kexec-tools 2.0.4-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 11:53:45 UTC (rev 182153)
+++ PKGBUILD2013-04-08 13:03:55 UTC (rev 182154)
@@ -3,15 +3,15 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.3
-pkgrel=2
+pkgver=2.0.4
+pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=(ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2;
+# upstream tarballs broken with bsdtar!
 
#http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2;
-'kexec' 
-'kexec.conf.d')
+)
 depends=('gawk' 'zlib' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
@@ -29,9 +29,5 @@
   mv $pkgdir/usr/sbin $pkgdir/sbin
 
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
-  install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
-  install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
 }
-md5sums=('3d9ff82e8e16165b9e79ded271c08348'
- 'be059a103e5989519d22fca99f860a64'
- '9ca7e31d2c5c66c436a9a2baf20ad9b2')
+md5sums=('4713026758923f5f3968905291b991ee')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2012-11-12 Thread Tobias Powalowski
Date: Monday, November 12, 2012 @ 10:17:43
  Author: tpowa
Revision: 170843

upgpkg: kexec-tools 2.0.3-2

dynamic linking and disable lzma

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-12 15:16:23 UTC (rev 170842)
+++ PKGBUILD2012-11-12 15:17:43 UTC (rev 170843)
@@ -4,7 +4,7 @@
 
 pkgname=kexec-tools
 pkgver=2.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
@@ -18,7 +18,7 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr --without-lzma
   make
 }
 



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2012-04-05 Thread Dave Reisner
Date: Thursday, April 5, 2012 @ 09:08:30
  Author: dreisner
Revision: 155720

upgpkg: kexec-tools 2.0.2-5

- remove static linkage, this is no longer relevant with recent improvements
  to mkinitcpio (mounting /usr and the shutdown hook)

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-04-05 13:06:09 UTC (rev 155719)
+++ PKGBUILD2012-04-05 13:08:30 UTC (rev 155720)
@@ -4,7 +4,7 @@
 
 pkgname=kexec-tools
 pkgver=2.0.2
-pkgrel=4
+pkgrel=5
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
@@ -12,8 +12,7 @@
 'kexec-tools-2.0.0-purgatory-makefile.patch'
 'kexec' 
 'kexec.conf.d')
-depends=('gawk')
-makedepends=('zlib' 'xz')
+depends=('gawk' 'zlib' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
 md5sums=('35d05fed1c97008ac34c5bfb929295eb'
@@ -23,7 +22,6 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  export LDFLAGS+= -static
   patch -Np1 -i ../kexec-tools-2.0.0-purgatory-makefile.patch
   ./configure --prefix=/usr
   make



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2011-02-18 Thread Allan McRae
Date: Friday, February 18, 2011 @ 22:39:03
  Author: allan
Revision: 110362

upgpkg: kexec-tools 2.0.2-3
build static for separate /usr partition (FS#22950)

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-18 23:43:03 UTC (rev 110361)
+++ PKGBUILD2011-02-19 03:39:03 UTC (rev 110362)
@@ -4,13 +4,14 @@
 
 pkgname=kexec-tools
 pkgver=2.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=(http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2;
 'kexec' 'kexec.conf.d')
-depends=('zlib' 'gawk' 'xz')
+depends=('gawk')
+makedepends=('zlib' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
 md5sums=('35d05fed1c97008ac34c5bfb929295eb'
@@ -19,6 +20,7 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  export LDFLAGS+= -static
   ./configure --prefix=/usr
   make
 }



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2010-10-25 Thread Pierre Schmitz
Date: Monday, October 25, 2010 @ 11:25:09
  Author: pierre
Revision: 96911

upgpkg: kexec-tools 2.0.2-2
xz 5.0.0 rebuild

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   24 ++--
 1 file changed, 14 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-10-25 15:07:34 UTC (rev 96910)
+++ PKGBUILD2010-10-25 15:25:09 UTC (rev 96911)
@@ -4,28 +4,32 @@
 
 pkgname=kexec-tools
 pkgver=2.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Load another kernel from the currently executing Linux kernel
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=(http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.2.tar.bz2
-kexec kexec.conf.d)
+source=(http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2;
+'kexec' 'kexec.conf.d')
 depends=('zlib' 'gawk' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
+md5sums=('35d05fed1c97008ac34c5bfb929295eb'
+ '15599234f174ddc4d2611f32effec6ab'
+ 'b9ddfb9fbcc7e4e7e7294fe94fa60aeb')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr
-  make 
-  make DESTDIR=$pkgdir install 
-  
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
   mv $pkgdir/usr/sbin $pkgdir/sbin
 
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
   install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
   install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
 }
-md5sums=('35d05fed1c97008ac34c5bfb929295eb'
- '15599234f174ddc4d2611f32effec6ab'
- 'b9ddfb9fbcc7e4e7e7294fe94fa60aeb')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 11:53:08
  Author: tpowa
Revision: 91348

change to new upstrean url

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 15:46:00 UTC (rev 91347)
+++ PKGBUILD2010-09-26 15:53:08 UTC (rev 91348)
@@ -8,7 +8,7 @@
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=(i686 x86_64)
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec/kexec-tools-2.0.2.tar.bz2
+source=(http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.2.tar.bz2
 kexec kexec.conf.d)
 depends=('zlib' 'gawk' 'xz')
 backup=('etc/conf.d/kexec')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2010-08-29 Thread Tobias Powalowski
Date: Sunday, August 29, 2010 @ 04:51:46
  Author: tpowa
Revision: 89072

updated upstream url

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-08-29 08:47:41 UTC (rev 89071)
+++ PKGBUILD2010-08-29 08:51:46 UTC (rev 89072)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=(i686 x86_64)
-url=http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/;
+url=http://kernel.org/pub/linux/utils/kernel/kexec/;
 
source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec/kexec-tools-2.0.2.tar.bz2
 kexec kexec.conf.d)
 depends=('zlib' 'gawk' 'xz')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2010-08-11 Thread Tobias Powalowski
Date: Wednesday, August 11, 2010 @ 11:56:57
  Author: tpowa
Revision: 87267

upgpkg: kexec-tools 2.0.2-1
bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-08-11 15:53:07 UTC (rev 87266)
+++ PKGBUILD2010-08-11 15:56:57 UTC (rev 87267)
@@ -3,22 +3,22 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=(i686 x86_64)
 url=http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/;
-source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-2.0.1.tar.bz2
+source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec/kexec-tools-2.0.2.tar.bz2
 kexec kexec.conf.d)
-depends=('zlib' 'gawk')
+depends=('zlib' 'gawk' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+  make 
+  make DESTDIR=$pkgdir install 
   
   mv $pkgdir/usr/sbin $pkgdir/sbin
 
@@ -26,6 +26,6 @@
   install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
   install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
 }
-md5sums=('67c1a396fdf67b984dad939a59a01571'
+md5sums=('35d05fed1c97008ac34c5bfb929295eb'
  '15599234f174ddc4d2611f32effec6ab'
  'b9ddfb9fbcc7e4e7e7294fe94fa60aeb')



[arch-commits] Commit in kexec-tools/trunk (PKGBUILD)

2009-12-05 Thread Tobias Powalowski
Date: Saturday, December 5, 2009 @ 04:31:22
  Author: tpowa
Revision: 60473

upgpkg: kexec-tools 2.0.1-1
bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-12-05 09:25:21 UTC (rev 60472)
+++ PKGBUILD2009-12-05 09:31:22 UTC (rev 60473)
@@ -3,14 +3,14 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 
 pkgname=kexec-tools
-pkgver=2.0.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=(i686 x86_64)
 url=http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/;
-source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-2.0.0.tar.bz2
+source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-2.0.1.tar.bz2
 kexec kexec.conf.d)
-depends=('zlib' 'awk')
+depends=('zlib' 'gawk')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
 
@@ -26,5 +26,6 @@
   install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
   install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
 }
-md5sums=('d9f2ecd3c3307905f24130a25816e6cc'
+md5sums=('67c1a396fdf67b984dad939a59a01571'
+ '15599234f174ddc4d2611f32effec6ab'
  'b9ddfb9fbcc7e4e7e7294fe94fa60aeb')