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

2019-10-28 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, October 29, 2019 @ 00:46:47
  Author: grazzolini
Revision: 365987

archrelease: copy trunk to testing-x86_64

Added:
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/0001-Link-against-libcrypto-not-all-of-openssl.patch
(from rev 365986, 
kmod/trunk/0001-Link-against-libcrypto-not-all-of-openssl.patch)
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 365986, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 365986, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/depmod.hook
(from rev 365986, kmod/trunk/depmod.hook)
  kmod/repos/testing-x86_64/depmod.script
(from rev 365986, kmod/trunk/depmod.script)

--+
 0001-Link-against-libcrypto-not-all-of-openssl.patch |   75 ++
 PKGBUILD |   87 +
 depmod-search.conf   |5 
 depmod.hook  |   13 ++
 depmod.script|9 +
 5 files changed, 189 insertions(+)

Copied: 
kmod/repos/testing-x86_64/0001-Link-against-libcrypto-not-all-of-openssl.patch 
(from rev 365986, 
kmod/trunk/0001-Link-against-libcrypto-not-all-of-openssl.patch)
===
--- testing-x86_64/0001-Link-against-libcrypto-not-all-of-openssl.patch 
(rev 0)
+++ testing-x86_64/0001-Link-against-libcrypto-not-all-of-openssl.patch 
2019-10-29 00:46:47 UTC (rev 365987)
@@ -0,0 +1,75 @@
+From 924b16f1b2001bf31e0688c9273e40e8f2f665c5 Mon Sep 17 00:00:00 2001
+From: Dave Reisner 
+Date: Wed, 13 Feb 2019 10:24:51 -0500
+Subject: [PATCH] Link against libcrypto, not all of openssl
+
+In the previous build setup, libkmod.so would link to not just
+libcrypto.so, but also libssl.so:
+
+$ readelf -d /lib/libkmod.so | grep NEEDED
+ 0x0001 (NEEDED) Shared library: [liblzma.so.5]
+ 0x0001 (NEEDED) Shared library: [libz.so.1]
+ 0x0001 (NEEDED) Shared library: [libssl.so.1.1]
+ 0x0001 (NEEDED) Shared library: [libcrypto.so.1.1]
+ 0x0001 (NEEDED) Shared library: [libc.so.6]
+
+We don't need any symbols from libssl, though. This patch ensures that
+we pass 'libcrypto' to pkgconfig rather than 'openssl', getting only the
+library that we need:
+
+$ readelf -d tools/kmod | grep NEEDED
+ 0x0001 (NEEDED) Shared library: [liblzma.so.5]
+ 0x0001 (NEEDED) Shared library: [libz.so.1]
+ 0x0001 (NEEDED) Shared library: [libcrypto.so.1.1]
+ 0x0001 (NEEDED) Shared library: [libc.so.6]
+---
+ Makefile.am  | 6 +++---
+ configure.ac | 4 ++--
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index ddb25f0..758f4f0 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -35,8 +35,8 @@ SED_PROCESS = \
+   -e 's,@liblzma_LIBS\@,${liblzma_LIBS},g' \
+   -e 's,@zlib_CFLAGS\@,${zlib_CFLAGS},g' \
+   -e 's,@zlib_LIBS\@,${zlib_LIBS},g' \
+-  -e 's,@openssl_CFLAGS\@,${openssl_CFLAGS},g' \
+-  -e 's,@openssl_LIBS\@,${openssl_LIBS},g' \
++  -e 's,@libcrypto_CFLAGS\@,${libcrypto_CFLAGS},g' \
++  -e 's,@libcrypto_LIBS\@,${libcrypto_LIBS},g' \
+   < $< > $@ || rm $@
+ 
+ %.pc: %.pc.in Makefile
+@@ -89,7 +89,7 @@ libkmod_libkmod_la_DEPENDENCIES = \
+   ${top_srcdir}/libkmod/libkmod.sym
+ libkmod_libkmod_la_LIBADD = \
+   shared/libshared.la \
+-  ${liblzma_LIBS} ${zlib_LIBS} ${openssl_LIBS}
++  ${liblzma_LIBS} ${zlib_LIBS} ${libcrypto_LIBS}
+ 
+ noinst_LTLIBRARIES += libkmod/libkmod-internal.la
+ libkmod_libkmod_internal_la_SOURCES = $(libkmod_libkmod_la_SOURCES)
+diff --git a/configure.ac b/configure.ac
+index ee72283..dffe278 100644
+--- a/configure.ac
 b/configure.ac
+@@ -110,12 +110,12 @@ AC_ARG_WITH([openssl],
+   AS_HELP_STRING([--with-openssl], [handle PKCS7 signatures 
@<:@default=disabled@:>@]),
+   [], [with_openssl=no])
+ AS_IF([test "x$with_openssl" != "xno"], [
+-  PKG_CHECK_MODULES([openssl], [openssl >= 1.1.0])
++  PKG_CHECK_MODULES([libcrypto], [libcrypto >= 1.1.0])
+   AC_DEFINE([ENABLE_OPENSSL], [1], [Enable openssl for modinfo.])
+ ], [
+   AC_MSG_NOTICE([openssl support not requested])
+ ])
+-CC_FEATURE_APPEND([with_features], [with_openssl], [OPENSSL])
++CC_FEATURE_APPEND([with_features], [with_openssl], [LIBCRYPTO])
+ 
+ AC_ARG_WITH([bashcompletiondir],
+   AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions 
directory]),
+-- 
+2.20.1
+

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 365986, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-29 00:46:47 UTC 

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

2017-02-24 Thread Christian Hesse
Date: Friday, February 24, 2017 @ 14:07:49
  Author: eworm
Revision: 289484

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 289483, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 289483, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 289483, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 289483, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/depmod-search.conf   |5 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/depmod-search.conf |5 ++
 4 files changed, 152 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 289483, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-02-24 14:07:49 UTC (rev 289484)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=24
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers' 'libelf')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('08297dfb6f2b3f625f928ca3278528af'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order to run. We depend on linux-headers, but
+  # this is really only to try and make sure that *some* useable tree of kernel
+  # headers exist. The first useable tree we find is good enough, as these
+  # modules will never be loaded by tests.
+
+  local kdirs=(/usr/lib/modules/*/build/Makefile)
+  if [[ ! -f ${kdirs[0]} ]]; then
+printf '==> Unable to find kernel headers to build modules for tests\n' >&2
+return 1
+  fi
+
+  local kver kdir=${kdirs[0]%/Makefile}
+  IFS=/ read _ _ _ kver _ <<<"$kdir"
+
+  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 289483, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2017-02-24 14:07:49 UTC (rev 289484)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 289483, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-02-24 14:07:49 UTC (rev 289484)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=24
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers' 'libelf')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('08297dfb6f2b3f625f928ca3278528af'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some ker

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

2016-07-20 Thread Dave Reisner
Date: Wednesday, July 20, 2016 @ 15:30:45
  Author: dreisner
Revision: 272074

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 272073, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 272073, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 272073, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 272073, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/depmod-search.conf   |5 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/depmod-search.conf |5 ++
 4 files changed, 152 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 272073, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-20 15:30:45 UTC (rev 272074)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=23
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers' 'libelf')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('3cf469f40ec2ed51f56ba45ea03793e7'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order to run. We depend on linux-headers, but
+  # this is really only to try and make sure that *some* useable tree of kernel
+  # headers exist. The first useable tree we find is good enough, as these
+  # modules will never be loaded by tests.
+
+  local kdirs=(/usr/lib/modules/*/build/Makefile)
+  if [[ ! -f ${kdirs[0]} ]]; then
+printf '==> Unable to find kernel headers to build modules for tests\n' >&2
+return 1
+  fi
+
+  local kver kdir=${kdirs[0]%/Makefile}
+  IFS=/ read _ _ _ kver _ <<<"$kdir"
+
+  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 272073, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2016-07-20 15:30:45 UTC (rev 272074)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 272073, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-20 15:30:45 UTC (rev 272074)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=23
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers' 'libelf')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('3cf469f40ec2ed51f56ba45ea03793e7'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some k

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

2015-11-19 Thread Dave Reisner
Date: Thursday, November 19, 2015 @ 16:18:26
  Author: dreisner
Revision: 251248

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 251247, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 251247, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 251247, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 251247, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/depmod-search.conf   |5 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/depmod-search.conf |5 ++
 4 files changed, 152 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 251247, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-19 15:18:26 UTC (rev 251248)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=22
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('4371b847f3fbfaa4e9aa890ad616748f'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order to run. We depend on linux-headers, but
+  # this is really only to try and make sure that *some* useable tree of kernel
+  # headers exist. The first useable tree we find is good enough, as these
+  # modules will never be loaded by tests.
+
+  local kdirs=(/usr/lib/modules/*/build/Makefile)
+  if [[ ! -f ${kdirs[0]} ]]; then
+printf '==> Unable to find kernel headers to build modules for tests\n' >&2
+return 1
+  fi
+
+  local kver kdir=${kdirs[0]%/Makefile}
+  IFS=/ read _ _ _ kver _ <<<"$kdir"
+
+  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 251247, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2015-11-19 15:18:26 UTC (rev 251248)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 251247, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-11-19 15:18:26 UTC (rev 251248)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=22
+pkgrel=1
+pkgdesc="Linux kernel module management tools and library"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('4371b847f3fbfaa4e9aa890ad616748f'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, 

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

2015-06-13 Thread Dave Reisner
Date: Saturday, June 13, 2015 @ 15:55:37
  Author: dreisner
Revision: 240729

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 240728, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 240728, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 240728, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 240728, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/depmod-search.conf   |5 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/depmod-search.conf |5 ++
 4 files changed, 152 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 240728, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-13 13:55:37 UTC (rev 240729)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=21
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('ee246fab2e1cba9fbdcad6a86ec31531'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order to run. We depend on linux-headers, but
+  # this is really only to try and make sure that *some* useable tree of kernel
+  # headers exist. The first useable tree we find is good enough, as these
+  # modules will never be loaded by tests.
+
+  local kdirs=(/usr/lib/modules/*/build/Makefile)
+  if [[ ! -f ${kdirs[0]} ]]; then
+printf '==> Unable to find kernel headers to build modules for tests\n' >&2
+return 1
+  fi
+
+  local kver kdir=${kdirs[0]%/Makefile}
+  IFS=/ read _ _ _ kver _ <<<"$kdir"
+
+  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 240728, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2015-06-13 13:55:37 UTC (rev 240729)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 240728, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-13 13:55:37 UTC (rev 240729)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=21
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('ee246fab2e1cba9fbdcad6a86ec31531'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in ord

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

2015-03-01 Thread Dave Reisner
Date: Sunday, March 1, 2015 @ 19:58:46
  Author: dreisner
Revision: 232391

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 232390, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 232390, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 232390, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 232390, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   71 
 testing-i686/depmod-search.conf   |5 ++
 testing-x86_64/PKGBUILD   |   71 
 testing-x86_64/depmod-search.conf |5 ++
 4 files changed, 152 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 232390, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-01 18:58:46 UTC (rev 232391)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=20
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('d6f4fef718a50bd88080de6a43bc64d8'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order to run. We depend on linux-headers, but
+  # this is really only to try and make sure that *some* useable tree of kernel
+  # headers exist. The first useable tree we find is good enough, as these
+  # modules will never be loaded by tests.
+
+  local kdirs=(/usr/lib/modules/*/build/Makefile)
+  if [[ ! -f ${kdirs[0]} ]]; then
+printf '==> Unable to find kernel headers to build modules for tests\n' >&2
+return 1
+  fi
+
+  local kver kdir=${kdirs[0]%/Makefile}
+  IFS=/ read _ _ _ kver _ <<<"$kdir"
+
+  make -C "$pkgname-$pkgver" check KDIR="$kdir" KVER="$kver"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 232390, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2015-03-01 18:58:46 UTC (rev 232391)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 232390, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-03-01 18:58:46 UTC (rev 232391)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=20
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+checkdepends=('linux-headers')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+validpgpkeys=('EAB33C9690013C733916AC839BA2A5A630CBEA53')  # Lucas DeMarchi
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar."{xz,sign}
+"depmod-search.conf")
+md5sums=('d6f4fef718a50bd88080de6a43bc64d8'
+ 'SKIP'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  # As of kmod v20, the test suite needs to build some kernel modules, and thus
+  # needs headers available in order

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

2014-11-16 Thread Dave Reisner
Date: Sunday, November 16, 2014 @ 16:09:39
  Author: dreisner
Revision: 226316

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 226315, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 226315, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 226315, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 226315, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   53 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 116 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 226315, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-16 15:09:39 UTC (rev 226316)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=19
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('a08643f814aa4efc12211c6e5909f4d9'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 226315, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2014-11-16 15:09:39 UTC (rev 226316)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 226315, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-11-16 15:09:39 UTC (rev 226316)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=19
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib' 'xz')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('a08643f814aa4efc12211c6e5909f4d9'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-xz \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 226315, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2014-11-16 15:09:39 UTC (rev 226316)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in


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

2014-06-14 Thread Dave Reisner
Date: Saturday, June 14, 2014 @ 19:39:56
  Author: dreisner
Revision: 215141

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 215140, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 215140, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 215140, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 215140, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 215140, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-06-14 17:39:56 UTC (rev 215141)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=18
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('82835c7f01983634e06ca72b4ee30cc6'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 215140, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2014-06-14 17:39:56 UTC (rev 215141)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 215140, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-06-14 17:39:56 UTC (rev 215141)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=18
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('82835c7f01983634e06ca72b4ee30cc6'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 215140, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2014-06-14 17:39:56 UTC (rev 215141)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2014-04-07 Thread Dave Reisner
Date: Monday, April 7, 2014 @ 14:40:10
  Author: dreisner
Revision: 209867

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 209866, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 209866, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 209866, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 209866, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 209866, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-07 12:40:10 UTC (rev 209867)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=17
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('bc36d28b12dcb2b664a35411560c5610'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 209866, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2014-04-07 12:40:10 UTC (rev 209867)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 209866, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-07 12:40:10 UTC (rev 209867)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=17
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('bc36d28b12dcb2b664a35411560c5610'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 209866, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2014-04-07 12:40:10 UTC (rev 209867)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2013-12-22 Thread Dave Reisner
Date: Monday, December 23, 2013 @ 00:50:05
  Author: dreisner
Revision: 202634

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 202633, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 202633, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 202633, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 202633, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 202633, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-22 23:50:05 UTC (rev 202634)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=16
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('3006a0287211212501cdfe1211b29f09'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 202633, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2013-12-22 23:50:05 UTC (rev 202634)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 202633, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-22 23:50:05 UTC (rev 202634)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=16
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('strip' 'debug')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('3006a0287211212501cdfe1211b29f09'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 202633, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2013-12-22 23:50:05 UTC (rev 202634)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2013-08-22 Thread Dave Reisner
Date: Thursday, August 22, 2013 @ 16:10:19
  Author: dreisner
Revision: 193529

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 193528, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 193528, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 193528, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 193528, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 193528, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-22 14:10:19 UTC (rev 193529)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=15
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d03372179ed2cfa0c52b6672cf438901'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 193528, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2013-08-22 14:10:19 UTC (rev 193529)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 193528, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-22 14:10:19 UTC (rev 193529)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=15
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d03372179ed2cfa0c52b6672cf438901'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 193528, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2013-08-22 14:10:19 UTC (rev 193529)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2013-07-03 Thread Dave Reisner
Date: Wednesday, July 3, 2013 @ 19:52:31
  Author: dreisner
Revision: 189629

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 189628, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 189628, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 189628, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 189628, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 189628, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-03 17:52:31 UTC (rev 189629)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=14
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('38009d0d6f10678a3ec22ccd29210d13'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 189628, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2013-07-03 17:52:31 UTC (rev 189629)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 189628, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-07-03 17:52:31 UTC (rev 189629)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=14
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('38009d0d6f10678a3ec22ccd29210d13'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 189628, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2013-07-03 17:52:31 UTC (rev 189629)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2013-05-30 Thread Dave Reisner
Date: Thursday, May 30, 2013 @ 14:31:25
  Author: dreisner
Revision: 186667

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

Added:
  kmod/repos/staging-i686/
  kmod/repos/staging-i686/PKGBUILD
(from rev 18, kmod/trunk/PKGBUILD)
  kmod/repos/staging-i686/depmod-search.conf
(from rev 18, kmod/trunk/depmod-search.conf)
  kmod/repos/staging-x86_64/
  kmod/repos/staging-x86_64/PKGBUILD
(from rev 18, kmod/trunk/PKGBUILD)
  kmod/repos/staging-x86_64/depmod-search.conf
(from rev 18, kmod/trunk/depmod-search.conf)

---+
 staging-i686/PKGBUILD |   51 
 staging-i686/depmod-search.conf   |5 +++
 staging-x86_64/PKGBUILD   |   51 
 staging-x86_64/depmod-search.conf |5 +++
 4 files changed, 112 insertions(+)

Copied: kmod/repos/staging-i686/PKGBUILD (from rev 18, kmod/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-05-30 12:31:25 UTC (rev 186667)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=13
+pkgrel=2
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d5aba43b9370cd52f3cb35e82a1aa595'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/staging-i686/depmod-search.conf (from rev 18, 
kmod/trunk/depmod-search.conf)
===
--- staging-i686/depmod-search.conf (rev 0)
+++ staging-i686/depmod-search.conf 2013-05-30 12:31:25 UTC (rev 186667)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/staging-x86_64/PKGBUILD (from rev 18, 
kmod/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-05-30 12:31:25 UTC (rev 186667)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=13
+pkgrel=2
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16' 'libkmod.so')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d5aba43b9370cd52f3cb35e82a1aa595'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d
+
+  for tool in {ins,ls,rm,dep}mod mod{probe,info}; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/staging-x86_64/depmod-search.conf (from rev 18, 
kmod/trunk/depmod-search.conf)
===
--- staging-x86_64/depmod-search.conf   (rev 0)
+++ staging-x86_64/depmod-search.conf   2013-05-30 12:31:25 UTC (rev 186667)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2013-04-10 Thread Dave Reisner
Date: Wednesday, April 10, 2013 @ 15:44:57
  Author: dreisner
Revision: 182421

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 182420, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 182420, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 182420, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 182420, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   55 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   55 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 120 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 182420, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-04-10 13:44:57 UTC (rev 182421)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=13
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d5aba43b9370cd52f3cb35e82a1aa595'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 182420, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2013-04-10 13:44:57 UTC (rev 182421)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 182420, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-04-10 13:44:57 UTC (rev 182421)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=13
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('d5aba43b9370cd52f3cb35e82a1aa595'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 182420, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2013-04-10 13:44:57 UTC (rev 182421)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramod

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

2012-12-04 Thread Dave Reisner
Date: Tuesday, December 4, 2012 @ 22:56:25
  Author: dreisner
Revision: 172762

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 172761, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 172761, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 172761, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 172761, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   55 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   55 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 120 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 172761, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-12-05 03:56:25 UTC (rev 172762)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=12
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('3d63b146c8ee5a04dfbef4be97f8226b'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 172761, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2012-12-05 03:56:25 UTC (rev 172762)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 172761, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-12-05 03:56:25 UTC (rev 172762)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=12
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('3d63b146c8ee5a04dfbef4be97f8226b'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 172761, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2012-12-05 03:56:25 UTC (rev 172762)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramod

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

2012-11-08 Thread Dave Reisner
Date: Thursday, November 8, 2012 @ 08:49:12
  Author: dreisner
Revision: 170543

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 170542, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 170542, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 170542, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 170542, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   56 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   56 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 122 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 170542, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-08 13:49:12 UTC (rev 170543)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=11
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('607e33b0144625c2e5221e5a7df49c7a'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  # testsuite is broken on 32-bit because of an unhandled EEXIST on mkdir_p
+  make -C "$pkgname-$pkgver" check || :
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 170542, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2012-11-08 13:49:12 UTC (rev 170543)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 170542, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-11-08 13:49:12 UTC (rev 170543)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=11
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('607e33b0144625c2e5221e5a7df49c7a'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  # testsuite is broken on 32-bit because of an unhandled EEXIST on mkdir_p
+  make -C "$pkgname-$pkgver" check || :
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 170542, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (

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

2012-09-07 Thread Dave Reisner
Date: Friday, September 7, 2012 @ 09:56:39
  Author: dreisner
Revision: 166390

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 166389, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 166389, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 166389, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 166389, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   56 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   56 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 122 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 166389, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-09-07 13:56:39 UTC (rev 166390)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=10
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('e2a883c4df15a50f78a7a61d5b64089f'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  # testsuite is broken on 32-bit because of an unhandled EEXIST on mkdir_p
+  make -C "$pkgname-$pkgver" check || :
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 166389, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2012-09-07 13:56:39 UTC (rev 166390)
@@ -0,0 +1,5 @@
+#
+# /usr/lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 166389, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-09-07 13:56:39 UTC (rev 166390)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=10
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+makedepends=('gtk-doc')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('e2a883c4df15a50f78a7a61d5b64089f'
+ 'dd62cbf62bd8f212f51ef8c43bec9a77')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--enable-gtk-doc \
+--with-zlib
+
+  make
+}
+
+check() {
+  # testsuite is broken on 32-bit because of an unhandled EEXIST on mkdir_p
+  make -C "$pkgname-$pkgver" check || :
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,usr/lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/usr/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 166389, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (r

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

2012-04-01 Thread Tom Gundersen
Date: Sunday, April 1, 2012 @ 16:12:30
  Author: tomegun
Revision: 155335

db-move: moved kmod from [staging] to [testing] (x86_64)

Added:
  kmod/repos/testing-x86_64/
  
kmod/repos/testing-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch
(from rev 155331, 
kmod/repos/staging-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch)
  
kmod/repos/testing-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
(from rev 155331, 
kmod/repos/staging-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch)
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 155331, kmod/repos/staging-x86_64/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 155331, kmod/repos/staging-x86_64/depmod-search.conf)
Deleted:
  kmod/repos/staging-x86_64/

-+
 0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch  |   50 +
 0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch |   93 
++
 PKGBUILD|   61 ++
 depmod-search.conf  |5 
 4 files changed, 209 insertions(+)

Copied: 
kmod/repos/testing-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch
 (from rev 155331, 
kmod/repos/staging-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch)
===
--- 
testing-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch   
(rev 0)
+++ 
testing-x86_64/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch   
2012-04-01 20:12:30 UTC (rev 155335)
@@ -0,0 +1,50 @@
+From 666ba68a0635048aea0db70cd9ec61aea9b61ed2 Mon Sep 17 00:00:00 2001
+From: Tom Gundersen 
+Date: Sat, 3 Mar 2012 12:37:06 +0100
+Subject: [PATCH 1/2] split usr: read configs from /lib/{depmod.d,modprobe.d}
+
+This allows rootprefix to be set to /usr, even if not all other packages
+have been fixed to read from this dir.
+---
+ libkmod/libkmod.c   |5 +++--
+ tools/kmod-depmod.c |1 +
+ 2 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/libkmod/libkmod.c b/libkmod/libkmod.c
+index 36ca629..12c1112 100644
+--- a/libkmod/libkmod.c
 b/libkmod/libkmod.c
+@@ -62,6 +62,7 @@ static const char *default_config_paths[] = {
+   SYSCONFDIR "/modprobe.d",
+   "/run/modprobe.d",
+   ROOTPREFIX "/lib/modprobe.d",
++  "/lib/modprobe.d",
+   NULL
+ };
+ 
+@@ -223,8 +224,8 @@ static char *get_kernel_release(const char *dirname)
+  * @config_paths: ordered array of paths (directories or files) where
+  *to load from user-defined configuration parameters such as
+  *alias, blacklists, commands (install, remove). If
+- *NULL defaults to /run/modprobe.d, /etc/modprobe.d and
+- *$rootprefix/lib/modprobe.d. Give an empty vector if
++ *NULL defaults to /run/modprobe.d, /etc/modprobe.d,
++ *$rootprefix/lib/modprobe.d and /lib/modprobe.d. Give an 
empty vector if
+  *configuration should not be read. This array must be null
+  *terminated.
+  *
+diff --git a/tools/kmod-depmod.c b/tools/kmod-depmod.c
+index 1871e18..7bb1c5d 100644
+--- a/tools/kmod-depmod.c
 b/tools/kmod-depmod.c
+@@ -58,6 +58,7 @@ static const char *default_cfg_paths[] = {
+   "/run/depmod.d",
+   SYSCONFDIR "/depmod.d",
+   ROOTPREFIX "/lib/depmod.d",
++  "/lib/depmod.d",
+   NULL
+ };
+ 
+-- 
+1.7.9.5
+

Copied: 
kmod/repos/testing-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
 (from rev 155331, 
kmod/repos/staging-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch)
===
--- 
testing-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch  
(rev 0)
+++ 
testing-x86_64/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch  
2012-04-01 20:12:30 UTC (rev 155335)
@@ -0,0 +1,93 @@
+From 53e7e0e42428770578ca0d54d0a9540f498f917f Mon Sep 17 00:00:00 2001
+From: Tom Gundersen 
+Date: Sat, 31 Mar 2012 12:17:39 +0200
+Subject: [PATCH 2/2] config: hardcode the path to modules to be /lib/modules
+
+This means that we can move the configuration paths from /lib
+to /usr/lib without having to touch the kernel and related
+packages.
+
+That can be dealt with separately at a later location, in which case
+all we have to do is revert this patch.
+
+Signed-off-by: Tom Gundersen 
+---
+ libkmod/libkmod.c |2 +-
+ tools/kmod-depmod.c   |2 +-
+ tools/kmod-modinfo.c  |4 ++--
+ tools/kmod-modprobe.c |4 ++--
+ 4 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/libkmod/libkmod.c b/libkmod/libkmod.c
+index 12c1112..11edfa0 100644
+--- a/libkmo

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

2012-04-01 Thread Tom Gundersen
Date: Sunday, April 1, 2012 @ 16:12:28
  Author: tomegun
Revision: 155334

db-move: moved kmod from [staging] to [testing] (i686)

Added:
  kmod/repos/testing-i686/
  
kmod/repos/testing-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch
(from rev 155331, 
kmod/repos/staging-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch)
  
kmod/repos/testing-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
(from rev 155331, 
kmod/repos/staging-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch)
  kmod/repos/testing-i686/PKGBUILD
(from rev 155331, kmod/repos/staging-i686/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 155331, kmod/repos/staging-i686/depmod-search.conf)
Deleted:
  kmod/repos/staging-i686/

-+
 0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch  |   50 +
 0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch |   93 
++
 PKGBUILD|   61 ++
 depmod-search.conf  |5 
 4 files changed, 209 insertions(+)

Copied: 
kmod/repos/testing-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch
 (from rev 155331, 
kmod/repos/staging-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch)
===
--- testing-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch 
(rev 0)
+++ testing-i686/0001-split-usr-read-configs-from-lib-depmod.d-modprobe.d.patch 
2012-04-01 20:12:28 UTC (rev 155334)
@@ -0,0 +1,50 @@
+From 666ba68a0635048aea0db70cd9ec61aea9b61ed2 Mon Sep 17 00:00:00 2001
+From: Tom Gundersen 
+Date: Sat, 3 Mar 2012 12:37:06 +0100
+Subject: [PATCH 1/2] split usr: read configs from /lib/{depmod.d,modprobe.d}
+
+This allows rootprefix to be set to /usr, even if not all other packages
+have been fixed to read from this dir.
+---
+ libkmod/libkmod.c   |5 +++--
+ tools/kmod-depmod.c |1 +
+ 2 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/libkmod/libkmod.c b/libkmod/libkmod.c
+index 36ca629..12c1112 100644
+--- a/libkmod/libkmod.c
 b/libkmod/libkmod.c
+@@ -62,6 +62,7 @@ static const char *default_config_paths[] = {
+   SYSCONFDIR "/modprobe.d",
+   "/run/modprobe.d",
+   ROOTPREFIX "/lib/modprobe.d",
++  "/lib/modprobe.d",
+   NULL
+ };
+ 
+@@ -223,8 +224,8 @@ static char *get_kernel_release(const char *dirname)
+  * @config_paths: ordered array of paths (directories or files) where
+  *to load from user-defined configuration parameters such as
+  *alias, blacklists, commands (install, remove). If
+- *NULL defaults to /run/modprobe.d, /etc/modprobe.d and
+- *$rootprefix/lib/modprobe.d. Give an empty vector if
++ *NULL defaults to /run/modprobe.d, /etc/modprobe.d,
++ *$rootprefix/lib/modprobe.d and /lib/modprobe.d. Give an 
empty vector if
+  *configuration should not be read. This array must be null
+  *terminated.
+  *
+diff --git a/tools/kmod-depmod.c b/tools/kmod-depmod.c
+index 1871e18..7bb1c5d 100644
+--- a/tools/kmod-depmod.c
 b/tools/kmod-depmod.c
+@@ -58,6 +58,7 @@ static const char *default_cfg_paths[] = {
+   "/run/depmod.d",
+   SYSCONFDIR "/depmod.d",
+   ROOTPREFIX "/lib/depmod.d",
++  "/lib/depmod.d",
+   NULL
+ };
+ 
+-- 
+1.7.9.5
+

Copied: 
kmod/repos/testing-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
 (from rev 155331, 
kmod/repos/staging-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch)
===
--- 
testing-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
(rev 0)
+++ 
testing-i686/0002-config-hardcode-the-path-to-modules-to-be-lib-module.patch
2012-04-01 20:12:28 UTC (rev 155334)
@@ -0,0 +1,93 @@
+From 53e7e0e42428770578ca0d54d0a9540f498f917f Mon Sep 17 00:00:00 2001
+From: Tom Gundersen 
+Date: Sat, 31 Mar 2012 12:17:39 +0200
+Subject: [PATCH 2/2] config: hardcode the path to modules to be /lib/modules
+
+This means that we can move the configuration paths from /lib
+to /usr/lib without having to touch the kernel and related
+packages.
+
+That can be dealt with separately at a later location, in which case
+all we have to do is revert this patch.
+
+Signed-off-by: Tom Gundersen 
+---
+ libkmod/libkmod.c |2 +-
+ tools/kmod-depmod.c   |2 +-
+ tools/kmod-modinfo.c  |4 ++--
+ tools/kmod-modprobe.c |4 ++--
+ 4 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/libkmod/libkmod.c b/libkmod/libkmod.c
+index 12c1112..11edfa0 100644
+--- a/libkmod/libkmod.c
 b/libkmod/libkmod.c
+@@ -196,7 

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

2012-03-19 Thread Dave Reisner
Date: Monday, March 19, 2012 @ 08:36:26
  Author: dreisner
Revision: 153751

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 153750, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 153750, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 153750, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 153750, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   53 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 116 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 153750, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-19 12:36:26 UTC (rev 153751)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=7
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('7bd916ae1c8a38e7697fdd8118bc98eb'
+ '09d8af2ba37c5902d904275cb27f1b09')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 153750, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2012-03-19 12:36:26 UTC (rev 153751)
@@ -0,0 +1,5 @@
+#
+# /lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 153750, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-19 12:36:26 UTC (rev 153751)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=7
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('7bd916ae1c8a38e7697fdd8118bc98eb'
+ '09d8af2ba37c5902d904275cb27f1b09')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 153750, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2012-03-19 12:36:26 UTC (rev 153751)
@@ -0,0 +1,5 @@
+#
+# /lib/depmod.d/search.conf
+#
+
+search updates extramodules built-in



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

2012-03-02 Thread Dave Reisner
Date: Saturday, March 3, 2012 @ 00:10:17
  Author: dreisner
Revision: 151797

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

Added:
  kmod/repos/testing-i686/
  kmod/repos/testing-i686/PKGBUILD
(from rev 151796, kmod/trunk/PKGBUILD)
  kmod/repos/testing-i686/depmod-search.conf
(from rev 151796, kmod/trunk/depmod-search.conf)
  kmod/repos/testing-x86_64/
  kmod/repos/testing-x86_64/PKGBUILD
(from rev 151796, kmod/trunk/PKGBUILD)
  kmod/repos/testing-x86_64/depmod-search.conf
(from rev 151796, kmod/trunk/depmod-search.conf)

---+
 testing-i686/PKGBUILD |   53 
 testing-i686/depmod-search.conf   |5 +++
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/depmod-search.conf |5 +++
 4 files changed, 116 insertions(+)

Copied: kmod/repos/testing-i686/PKGBUILD (from rev 151796, kmod/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-03 05:10:17 UTC (rev 151797)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=6
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('bad08102fad212cd34405136d9a7eb94'
+ '4b8cbcbc54b9029c99fd730e257d4436')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-i686/depmod-search.conf (from rev 151796, 
kmod/trunk/depmod-search.conf)
===
--- testing-i686/depmod-search.conf (rev 0)
+++ testing-i686/depmod-search.conf 2012-03-03 05:10:17 UTC (rev 151797)
@@ -0,0 +1,5 @@
+#
+# /etc/depmod.d/depmod.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/testing-x86_64/PKGBUILD (from rev 151796, 
kmod/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-03 05:10:17 UTC (rev 151797)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=6
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary'
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("ftp://ftp.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('bad08102fad212cd34405136d9a7eb94'
+ '4b8cbcbc54b9029c99fd730e257d4436')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--sysconfdir=/etc \
+--with-zlib
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # extra directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d "$pkgdir/sbin"
+
+  # add symlinks to kmod
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/modprobe"
+  ln -s ../usr/bin/kmod "$pkgdir/sbin/depmod"
+
+  for tool in {ins,ls,rm}mod modinfo; do
+ln -s kmod "$pkgdir/usr/bin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/testing-x86_64/depmod-search.conf (from rev 151796, 
kmod/trunk/depmod-search.conf)
===
--- testing-x86_64/depmod-search.conf   (rev 0)
+++ testing-x86_64/depmod-search.conf   2012-03-03 05:10:17 UTC (rev 151797)
@@ -0,0 +1,5 @@
+#
+# /etc/depmod.d/depmod.conf
+#
+
+search updates extramodules built-in



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

2012-02-07 Thread Dave Reisner
Date: Tuesday, February 7, 2012 @ 08:26:20
  Author: dreisner
Revision: 149394

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

Added:
  kmod/repos/staging-i686/
  kmod/repos/staging-i686/PKGBUILD
(from rev 149393, kmod/trunk/PKGBUILD)
  kmod/repos/staging-i686/depmod-search.conf
(from rev 149393, kmod/trunk/depmod-search.conf)
  kmod/repos/staging-x86_64/
  kmod/repos/staging-x86_64/PKGBUILD
(from rev 149393, kmod/trunk/PKGBUILD)
  kmod/repos/staging-x86_64/depmod-search.conf
(from rev 149393, kmod/trunk/depmod-search.conf)

---+
 staging-i686/PKGBUILD |   56 
 staging-i686/depmod-search.conf   |5 +++
 staging-x86_64/PKGBUILD   |   56 
 staging-x86_64/depmod-search.conf |5 +++
 4 files changed, 122 insertions(+)

Copied: kmod/repos/staging-i686/PKGBUILD (from rev 149393, kmod/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-07 13:26:20 UTC (rev 149394)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=5
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url="http://git.profusion.mobi/cgit.cgi/kmod.git";
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool' '!strip')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("http://packages.profusion.mobi/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('b271c2ec54aba1c67bda63c8579d8c15'
+ '4b8cbcbc54b9029c99fd730e257d4436')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  CFLAGS+=' -g -O0' ./configure \
+--sysconfdir=/etc \
+--with-rootprefix= \
+--with-zlib \
+--enable-debug
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # binary directories
+  install -dm755 "$pkgdir"/{,s}bin
+
+  # configuration directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d
+
+  # add symlinks to kmod
+  ln -s /usr/bin/kmod "$pkgdir/bin/lsmod"
+  for tool in {ins,rm,dep}mod mod{info,probe}; do
+ln -s ../usr/bin/kmod "$pkgdir/sbin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/staging-i686/depmod-search.conf (from rev 149393, 
kmod/trunk/depmod-search.conf)
===
--- staging-i686/depmod-search.conf (rev 0)
+++ staging-i686/depmod-search.conf 2012-02-07 13:26:20 UTC (rev 149394)
@@ -0,0 +1,5 @@
+#
+# /etc/depmod.d/depmod.conf
+#
+
+search updates extramodules built-in

Copied: kmod/repos/staging-x86_64/PKGBUILD (from rev 149393, 
kmod/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-07 13:26:20 UTC (rev 149394)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Dave Reisner 
+
+pkgname=kmod
+pkgver=5
+pkgrel=1
+pkgdesc="Linux kernel module handling"
+arch=('i686' 'x86_64')
+url="http://git.profusion.mobi/cgit.cgi/kmod.git";
+license=('GPL2')
+depends=('glibc' 'zlib')
+options=('!libtool' '!strip')
+provides=('module-init-tools=3.16')
+conflicts=('module-init-tools')
+replaces=('module-init-tools')
+source=("http://packages.profusion.mobi/$pkgname/$pkgname-$pkgver.tar.xz";
+"depmod-search.conf")
+md5sums=('b271c2ec54aba1c67bda63c8579d8c15'
+ '4b8cbcbc54b9029c99fd730e257d4436')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  CFLAGS+=' -g -O0' ./configure \
+--sysconfdir=/etc \
+--with-rootprefix= \
+--with-zlib \
+--enable-debug
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # binary directories
+  install -dm755 "$pkgdir"/{,s}bin
+
+  # configuration directories
+  install -dm755 "$pkgdir"/{etc,lib}/{depmod,modprobe}.d
+
+  # add symlinks to kmod
+  ln -s /usr/bin/kmod "$pkgdir/bin/lsmod"
+  for tool in {ins,rm,dep}mod mod{info,probe}; do
+ln -s ../usr/bin/kmod "$pkgdir/sbin/$tool"
+  done
+
+  # install depmod.d file for search/ dir
+  install -Dm644 "$srcdir/depmod-search.conf" 
"$pkgdir/lib/depmod.d/search.conf"
+}
+
+# vim: ft=sh syn=sh et

Copied: kmod/repos/staging-x86_64/depmod-search.conf (from rev 149393, 
kmod/trunk/depmod-search.conf)
===
--- staging-x86_64/depmod-search.conf   (rev 0)
+++ staging-x86_64/depmod-search.conf   2012-02-07 13:26:20 UTC (rev 149394)
@@ -0,0 +1,5 @@
+#
+# /etc/depmod.d/depmod.conf
+#
+
+search updates extramod