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

2020-02-20 Thread Jan Steffens via arch-commits
Date: Friday, February 21, 2020 @ 00:30:22
  Author: heftig
Revision: 375979

archrelease: copy trunk to testing-x86_64

Added:
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/CVE-2019-16275.patch
(from rev 375978, wpa_supplicant/trunk/CVE-2019-16275.patch)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 375978, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 375978, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/roam-properties.patch
(from rev 375978, wpa_supplicant/trunk/roam-properties.patch)
  wpa_supplicant/repos/testing-x86_64/systemd.patch
(from rev 375978, wpa_supplicant/trunk/systemd.patch)
  wpa_supplicant/repos/testing-x86_64/tls.patch
(from rev 375978, wpa_supplicant/trunk/tls.patch)
  wpa_supplicant/repos/testing-x86_64/wpa_supplicant.install
(from rev 375978, wpa_supplicant/trunk/wpa_supplicant.install)

+
 CVE-2019-16275.patch   |   73 ++
 PKGBUILD   |   78 +
 config |   81 +++
 roam-properties.patch  |   88 +++
 systemd.patch  |   29 +++
 tls.patch  |   26 +
 wpa_supplicant.install |7 +++
 7 files changed, 382 insertions(+)

Copied: wpa_supplicant/repos/testing-x86_64/CVE-2019-16275.patch (from rev 
375978, wpa_supplicant/trunk/CVE-2019-16275.patch)
===
--- testing-x86_64/CVE-2019-16275.patch (rev 0)
+++ testing-x86_64/CVE-2019-16275.patch 2020-02-21 00:30:22 UTC (rev 375979)
@@ -0,0 +1,73 @@
+From 8c07fa9eda13e835f3f968b2e1c9a8be3a851ff9 Mon Sep 17 00:00:00 2001
+From: Jouni Malinen 
+Date: Thu, 29 Aug 2019 11:52:04 +0300
+Subject: [PATCH] AP: Silently ignore management frame from unexpected source
+ address
+
+Do not process any received Management frames with unexpected/invalid SA
+so that we do not add any state for unexpected STA addresses or end up
+sending out frames to unexpected destination. This prevents unexpected
+sequences where an unprotected frame might end up causing the AP to send
+out a response to another device and that other device processing the
+unexpected response.
+
+In particular, this prevents some potential denial of service cases
+where the unexpected response frame from the AP might result in a
+connected station dropping its association.
+
+Signed-off-by: Jouni Malinen 
+---
+ src/ap/drv_callbacks.c | 13 +
+ src/ap/ieee802_11.c| 12 
+ 2 files changed, 25 insertions(+)
+
+diff --git a/src/ap/drv_callbacks.c b/src/ap/drv_callbacks.c
+index 31587685fe3b..34ca379edc3d 100644
+--- a/src/ap/drv_callbacks.c
 b/src/ap/drv_callbacks.c
+@@ -131,6 +131,19 @@ int hostapd_notif_assoc(struct hostapd_data *hapd, const 
u8 *addr,
+  "hostapd_notif_assoc: Skip event with no address");
+   return -1;
+   }
++
++  if (is_multicast_ether_addr(addr) ||
++  is_zero_ether_addr(addr) ||
++  os_memcmp(addr, hapd->own_addr, ETH_ALEN) == 0) {
++  /* Do not process any frames with unexpected/invalid SA so that
++   * we do not add any state for unexpected STA addresses or end
++   * up sending out frames to unexpected destination. */
++  wpa_printf(MSG_DEBUG, "%s: Invalid SA=" MACSTR
++ " in received indication - ignore this indication 
silently",
++ __func__, MAC2STR(addr));
++  return 0;
++  }
++
+   random_add_randomness(addr, ETH_ALEN);
+ 
+   hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
+diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
+index c85a28db44b7..e7065372e158 100644
+--- a/src/ap/ieee802_11.c
 b/src/ap/ieee802_11.c
+@@ -4626,6 +4626,18 @@ int ieee802_11_mgmt(struct hostapd_data *hapd, const u8 
*buf, size_t len,
+   fc = le_to_host16(mgmt->frame_control);
+   stype = WLAN_FC_GET_STYPE(fc);
+ 
++  if (is_multicast_ether_addr(mgmt->sa) ||
++  is_zero_ether_addr(mgmt->sa) ||
++  os_memcmp(mgmt->sa, hapd->own_addr, ETH_ALEN) == 0) {
++  /* Do not process any frames with unexpected/invalid SA so that
++   * we do not add any state for unexpected STA addresses or end
++   * up sending out frames to unexpected destination. */
++  wpa_printf(MSG_DEBUG, "MGMT: Invalid SA=" MACSTR
++ " in received frame - ignore this frame silently",
++ MAC2STR(mgmt->sa));
++  return 0;
++  }
++
+   if (stype == WLAN_FC_STYPE_BEACON) {
+   handle_beacon(hapd, mgmt, len, fi);
+   return 1;
+-- 
+2.20.1
+

Copied: 

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

2017-03-04 Thread Jan de Groot
Date: Saturday, March 4, 2017 @ 22:10:47
  Author: jgc
Revision: 28

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

Added:
  wpa_supplicant/repos/staging-i686/
  wpa_supplicant/repos/staging-i686/PKGBUILD
(from rev 289998, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-i686/config
(from rev 289998, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-i686/wpa_supplicant.install
(from rev 289998, wpa_supplicant/trunk/wpa_supplicant.install)
  wpa_supplicant/repos/staging-x86_64/
  wpa_supplicant/repos/staging-x86_64/PKGBUILD
(from rev 289998, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-x86_64/config
(from rev 289998, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-x86_64/wpa_supplicant.install
(from rev 289998, wpa_supplicant/trunk/wpa_supplicant.install)

---+
 staging-i686/PKGBUILD |   61 +++
 staging-i686/config   |  517 
 staging-i686/wpa_supplicant.install   |7 
 staging-x86_64/PKGBUILD   |   61 +++
 staging-x86_64/config |  517 
 staging-x86_64/wpa_supplicant.install |7 
 6 files changed, 1170 insertions(+)

Copied: wpa_supplicant/repos/staging-i686/PKGBUILD (from rev 289998, 
wpa_supplicant/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-04 22:10:47 UTC (rev 28)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Thomas Bächler 
+
+pkgname=wpa_supplicant
+pkgver=2.6
+pkgrel=5
+epoch=1
+pkgdesc="A utility providing key negotiation for WPA wireless networks"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'libdbus' 'readline' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+install=wpa_supplicant.install
+source=(https://w1.fi/releases/${pkgname}-${pkgver}.tar.gz{,.asc}
+config)
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
+'SKIP'
+'e7724868cda101f94962dd247c859cab581bc51080ae967b9e6409502d5193d4')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+  cp "$srcdir/config" ./.config
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+
+  # The Makefile does not pick up our CPPFLAGS
+  export CFLAGS="$CPPFLAGS $CFLAGS"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin
+  make LIBDIR=/usr/lib BINDIR=/usr/bin eapol_test
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="$pkgdir" install
+  install -Dm755 eapol_test "$pkgdir/usr/bin/eapol_test"
+
+  install -d -m755 "$pkgdir/etc/wpa_supplicant"
+  install -Dm644 wpa_supplicant.conf \
+"$pkgdir/usr/share/doc/wpa_supplicant/wpa_supplicant.conf"
+
+  install -d -m755 "$pkgdir/usr/share/man/man"{5,8}
+  install -m644 doc/docbook/*.5 "$pkgdir/usr/share/man/man5/"
+  install -m644 doc/docbook/*.8 "$pkgdir/usr/share/man/man8/"
+  rm -f "$pkgdir/usr/share/man/man8/wpa_"{priv,gui}.8
+
+  install -d -m755 "$pkgdir/usr/share/dbus-1/system-services"
+  install -m644 \
+dbus/fi.{epitest.hostap.WPASupplicant,w1.wpa_supplicant1}.service \
+"$pkgdir/usr/share/dbus-1/system-services/"
+
+  install -Dm644 dbus/dbus-wpa_supplicant.conf \
+"$pkgdir/etc/dbus-1/system.d/wpa_supplicant.conf"
+
+  install -d -m755 "$pkgdir/usr/lib/systemd/system"
+  install -m644 systemd/*.service "$pkgdir/usr/lib/systemd/system/"
+}

Copied: wpa_supplicant/repos/staging-i686/config (from rev 289998, 
wpa_supplicant/trunk/config)
===
--- staging-i686/config (rev 0)
+++ staging-i686/config 2017-03-04 22:10:47 UTC (rev 28)
@@ -0,0 +1,517 @@
+# Example wpa_supplicant build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cases, these lines should use += in order not
+# to override previous values of the variables.
+
+
+# Uncomment following two lines and fix the paths if you have installed OpenSSL
+# or GnuTLS in non-default location
+#CFLAGS += -I/usr/local/openssl/include
+#LIBS += -L/usr/local/openssl/lib
+
+# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
+# the kerberos files are not in the default include path. Following line can be
+# 

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

2016-12-09 Thread Bartłomiej Piotrowski
Date: Friday, December 9, 2016 @ 21:43:24
  Author: bpiotrowski
Revision: 282983

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 282982, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 282982, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/wpa_supplicant.install
(from rev 282982, wpa_supplicant/trunk/wpa_supplicant.install)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 282982, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 282982, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/wpa_supplicant.install
(from rev 282982, wpa_supplicant/trunk/wpa_supplicant.install)

---+
 testing-i686/PKGBUILD |   61 +++
 testing-i686/config   |  517 
 testing-i686/wpa_supplicant.install   |7 
 testing-x86_64/PKGBUILD   |   61 +++
 testing-x86_64/config |  517 
 testing-x86_64/wpa_supplicant.install |7 
 6 files changed, 1170 insertions(+)

Copied: wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 282982, 
wpa_supplicant/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-09 21:43:24 UTC (rev 282983)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Thomas Bächler 
+
+pkgname=wpa_supplicant
+pkgver=2.6
+pkgrel=3
+epoch=1
+pkgdesc="A utility providing key negotiation for WPA wireless networks"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'libdbus' 'readline' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+install=wpa_supplicant.install
+source=(https://w1.fi/releases/${pkgname}-${pkgver}.tar.gz{,.asc}
+config)
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
+'SKIP'
+'e7724868cda101f94962dd247c859cab581bc51080ae967b9e6409502d5193d4')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+  cp "$srcdir/config" ./.config
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+
+  # The Makefile does not pick up our CPPFLAGS
+  export CFLAGS="$CPPFLAGS $CFLAGS"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin
+  make LIBDIR=/usr/lib BINDIR=/usr/bin eapol_test
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="$pkgdir" install
+  install -Dm755 eapol_test "$pkgdir/usr/bin/eapol_test"
+
+  install -d -m755 "$pkgdir/etc/wpa_supplicant"
+  install -Dm644 wpa_supplicant.conf \
+"$pkgdir/usr/share/doc/wpa_supplicant/wpa_supplicant.conf"
+
+  install -d -m755 "$pkgdir/usr/share/man/man"{5,8}
+  install -m644 doc/docbook/*.5 "$pkgdir/usr/share/man/man5/"
+  install -m644 doc/docbook/*.8 "$pkgdir/usr/share/man/man8/"
+  rm -f "$pkgdir/usr/share/man/man8/wpa_"{priv,gui}.8
+
+  install -d -m755 "$pkgdir/usr/share/dbus-1/system-services"
+  install -m644 \
+dbus/fi.{epitest.hostap.WPASupplicant,w1.wpa_supplicant1}.service \
+"$pkgdir/usr/share/dbus-1/system-services/"
+
+  install -Dm644 dbus/dbus-wpa_supplicant.conf \
+"$pkgdir/etc/dbus-1/system.d/wpa_supplicant.conf"
+
+  install -d -m755 "$pkgdir/usr/lib/systemd/system"
+  install -m644 systemd/*.service "$pkgdir/usr/lib/systemd/system/"
+}

Copied: wpa_supplicant/repos/testing-i686/config (from rev 282982, 
wpa_supplicant/trunk/config)
===
--- testing-i686/config (rev 0)
+++ testing-i686/config 2016-12-09 21:43:24 UTC (rev 282983)
@@ -0,0 +1,517 @@
+# Example wpa_supplicant build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cases, these lines should use += in order not
+# to override previous values of the variables.
+
+
+# Uncomment following two lines and fix the paths if you have installed OpenSSL
+# or GnuTLS in non-default location
+#CFLAGS += -I/usr/local/openssl/include
+#LIBS += -L/usr/local/openssl/lib
+
+# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
+# the kerberos files are not in the default include path. Following line 

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

2016-11-13 Thread Jan Steffens
Date: Monday, November 14, 2016 @ 07:52:47
  Author: heftig
Revision: 280719

db-move: moved wpa_supplicant from [testing] to [core] (i686, x86_64)

Added:
  wpa_supplicant/repos/core-i686/
  wpa_supplicant/repos/core-i686/PKGBUILD
(from rev 280718, wpa_supplicant/repos/testing-i686/PKGBUILD)
  wpa_supplicant/repos/core-i686/config
(from rev 280718, wpa_supplicant/repos/testing-i686/config)
  wpa_supplicant/repos/core-x86_64/
  wpa_supplicant/repos/core-x86_64/PKGBUILD
(from rev 280718, wpa_supplicant/repos/testing-x86_64/PKGBUILD)
  wpa_supplicant/repos/core-x86_64/config
(from rev 280718, wpa_supplicant/repos/testing-x86_64/config)
Deleted:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-x86_64/

--+
 core-i686/PKGBUILD   |   55 +
 core-i686/config |  514 +
 core-x86_64/PKGBUILD |   55 +
 core-x86_64/config   |  514 +
 4 files changed, 1138 insertions(+)

Copied: wpa_supplicant/repos/core-i686/PKGBUILD (from rev 280718, 
wpa_supplicant/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-11-14 07:52:47 UTC (rev 280719)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wpa_supplicant
+pkgver=2.6
+pkgrel=2
+epoch=1
+pkgdesc="A utility providing key negotiation for WPA wireless networks"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'libdbus' 'readline' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+backup=('etc/wpa_supplicant/wpa_supplicant.conf')
+source=(https://w1.fi/releases/${pkgname}-${pkgver}.tar.gz{,.asc}
+config)
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
+'SKIP'
+'5163609e133851dfbbee5982954fab22e45bf2c9093e43eb466d8a2c39f8a012')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  cp "${srcdir}/config" ./.config
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+
+  # The Makefile does not pick up our CPPFLAGS
+  export CFLAGS="$CPPFLAGS $CFLAGS"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/etc/wpa_supplicant"
+  install -m644 wpa_supplicant.conf 
"${pkgdir}/etc/wpa_supplicant/wpa_supplicant.conf"
+
+  install -d -m755 "${pkgdir}/usr/share/man/man"{5,8}
+  install -m644 doc/docbook/*.5 "${pkgdir}/usr/share/man/man5/"
+  install -m644 doc/docbook/*.8 "${pkgdir}/usr/share/man/man8/"
+  rm -f "${pkgdir}/usr/share/man/man8/wpa_"{priv,gui}.8
+
+  install -d -m755 "${pkgdir}/usr/share/dbus-1/system-services"
+  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
"${pkgdir}/usr/share/dbus-1/system-services/"
+
+  install -d -m755 "${pkgdir}/etc/dbus-1/system.d"
+  install -m644 dbus/dbus-wpa_supplicant.conf 
"${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf"
+
+  install -d -m755 "${pkgdir}/usr/lib/systemd/system"
+  install -m644 systemd/*.service "${pkgdir}/usr/lib/systemd/system/"
+}

Copied: wpa_supplicant/repos/core-i686/config (from rev 280718, 
wpa_supplicant/repos/testing-i686/config)
===
--- core-i686/config(rev 0)
+++ core-i686/config2016-11-14 07:52:47 UTC (rev 280719)
@@ -0,0 +1,514 @@
+# Example wpa_supplicant build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cases, these lines should use += in order not
+# to override previous values of the variables.
+
+
+# Uncomment following two lines and fix the paths if you have installed OpenSSL
+# or GnuTLS in non-default location
+#CFLAGS += -I/usr/local/openssl/include
+#LIBS += -L/usr/local/openssl/lib
+
+# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
+# the kerberos files are not in the default include path. Following line can be
+# used to fix build issues on such systems (krb5.h not found).
+#CFLAGS += -I/usr/include/kerberos
+
+# Driver interface for generic Linux wireless extensions
+# Note: WEXT is deprecated in the current Linux kernel version and no new
+# functionality is added to it. nl80211-based interface is the new
+# replacement for WEXT and 

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

2016-11-13 Thread Jan Steffens
Date: Monday, November 14, 2016 @ 07:52:18
  Author: heftig
Revision: 280710

db-move: moved wpa_supplicant from [core] to [testing] (i686, x86_64)

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 280709, wpa_supplicant/repos/core-i686/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 280709, wpa_supplicant/repos/core-i686/config)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 280709, wpa_supplicant/repos/core-x86_64/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 280709, wpa_supplicant/repos/core-x86_64/config)
Deleted:
  wpa_supplicant/repos/core-i686/
  wpa_supplicant/repos/core-x86_64/

-+
 testing-i686/PKGBUILD   |   55 
 testing-i686/config |  514 ++
 testing-x86_64/PKGBUILD |   55 
 testing-x86_64/config   |  514 ++
 4 files changed, 1138 insertions(+)

Copied: wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 280709, 
wpa_supplicant/repos/core-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-14 07:52:18 UTC (rev 280710)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wpa_supplicant
+pkgver=2.6
+pkgrel=2
+epoch=1
+pkgdesc="A utility providing key negotiation for WPA wireless networks"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'libdbus' 'readline' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+backup=('etc/wpa_supplicant/wpa_supplicant.conf')
+source=(https://w1.fi/releases/${pkgname}-${pkgver}.tar.gz{,.asc}
+config)
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
+'SKIP'
+'5163609e133851dfbbee5982954fab22e45bf2c9093e43eb466d8a2c39f8a012')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  cp "${srcdir}/config" ./.config
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+
+  # The Makefile does not pick up our CPPFLAGS
+  export CFLAGS="$CPPFLAGS $CFLAGS"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/etc/wpa_supplicant"
+  install -m644 wpa_supplicant.conf 
"${pkgdir}/etc/wpa_supplicant/wpa_supplicant.conf"
+
+  install -d -m755 "${pkgdir}/usr/share/man/man"{5,8}
+  install -m644 doc/docbook/*.5 "${pkgdir}/usr/share/man/man5/"
+  install -m644 doc/docbook/*.8 "${pkgdir}/usr/share/man/man8/"
+  rm -f "${pkgdir}/usr/share/man/man8/wpa_"{priv,gui}.8
+
+  install -d -m755 "${pkgdir}/usr/share/dbus-1/system-services"
+  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
"${pkgdir}/usr/share/dbus-1/system-services/"
+
+  install -d -m755 "${pkgdir}/etc/dbus-1/system.d"
+  install -m644 dbus/dbus-wpa_supplicant.conf 
"${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf"
+
+  install -d -m755 "${pkgdir}/usr/lib/systemd/system"
+  install -m644 systemd/*.service "${pkgdir}/usr/lib/systemd/system/"
+}

Copied: wpa_supplicant/repos/testing-i686/config (from rev 280709, 
wpa_supplicant/repos/core-i686/config)
===
--- testing-i686/config (rev 0)
+++ testing-i686/config 2016-11-14 07:52:18 UTC (rev 280710)
@@ -0,0 +1,514 @@
+# Example wpa_supplicant build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cases, these lines should use += in order not
+# to override previous values of the variables.
+
+
+# Uncomment following two lines and fix the paths if you have installed OpenSSL
+# or GnuTLS in non-default location
+#CFLAGS += -I/usr/local/openssl/include
+#LIBS += -L/usr/local/openssl/lib
+
+# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
+# the kerberos files are not in the default include path. Following line can be
+# used to fix build issues on such systems (krb5.h not found).
+#CFLAGS += -I/usr/include/kerberos
+
+# Driver interface for generic Linux wireless extensions
+# Note: WEXT is deprecated in the current Linux kernel version and no new
+# functionality is added to it. nl80211-based interface is the new
+# 

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

2016-11-06 Thread Bartłomiej Piotrowski
Date: Sunday, November 6, 2016 @ 13:57:23
  Author: bpiotrowski
Revision: 279918

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

Added:
  wpa_supplicant/repos/core-i686/PKGBUILD
(from rev 279917, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/core-i686/config
(from rev 279917, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/core-x86_64/PKGBUILD
(from rev 279917, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/core-x86_64/config
(from rev 279917, wpa_supplicant/trunk/config)
Deleted:
  wpa_supplicant/repos/core-i686/PKGBUILD
  wpa_supplicant/repos/core-i686/config
  wpa_supplicant/repos/core-x86_64/PKGBUILD
  wpa_supplicant/repos/core-x86_64/config

--+
 /PKGBUILD|  110 +
 /config  | 1028 +
 core-i686/PKGBUILD   |   53 --
 core-i686/config |  514 
 core-x86_64/PKGBUILD |   53 --
 core-x86_64/config   |  514 
 6 files changed, 1138 insertions(+), 1134 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-11-06 13:57:18 UTC (rev 279917)
+++ core-i686/PKGBUILD  2016-11-06 13:57:23 UTC (rev 279918)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=wpa_supplicant
-pkgver=2.6
-pkgrel=1
-epoch=1
-pkgdesc="A utility providing key negotiation for WPA wireless networks"
-url="http://hostap.epitest.fi/wpa_supplicant;
-arch=('i686' 'x86_64')
-depends=('openssl' 'libdbus' 'readline' 'libnl')
-optdepends=('wpa_supplicant_gui: wpa_gui program')
-license=('GPL')
-backup=('etc/wpa_supplicant/wpa_supplicant.conf')
-source=("http://w1.fi/releases/${pkgname}-${pkgver}.tar.gz;
-config)
-sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
-'5163609e133851dfbbee5982954fab22e45bf2c9093e43eb466d8a2c39f8a012')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
-  cp "${srcdir}/config" ./.config
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
-
-  # The Makefile does not pick up our CPPFLAGS
-  export CFLAGS="$CPPFLAGS $CFLAGS"
-  make LIBDIR=/usr/lib BINDIR=/usr/bin
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
-  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="${pkgdir}" install
-
-  install -d -m755 "${pkgdir}/etc/wpa_supplicant"
-  install -m644 wpa_supplicant.conf 
"${pkgdir}/etc/wpa_supplicant/wpa_supplicant.conf"
-
-  install -d -m755 "${pkgdir}/usr/share/man/man"{5,8}
-  install -m644 doc/docbook/*.5 "${pkgdir}/usr/share/man/man5/"
-  install -m644 doc/docbook/*.8 "${pkgdir}/usr/share/man/man8/"
-  rm -f "${pkgdir}/usr/share/man/man8/wpa_"{priv,gui}.8
-
-  install -d -m755 "${pkgdir}/usr/share/dbus-1/system-services"
-  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
"${pkgdir}/usr/share/dbus-1/system-services/"
-
-  install -d -m755 "${pkgdir}/etc/dbus-1/system.d"
-  install -m644 dbus/dbus-wpa_supplicant.conf 
"${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf"
-
-  install -d -m755 "${pkgdir}/usr/lib/systemd/system"
-  install -m644 systemd/*.service "${pkgdir}/usr/lib/systemd/system/"
-}

Copied: wpa_supplicant/repos/core-i686/PKGBUILD (from rev 279917, 
wpa_supplicant/trunk/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-11-06 13:57:23 UTC (rev 279918)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wpa_supplicant
+pkgver=2.6
+pkgrel=1
+epoch=1
+pkgdesc="A utility providing key negotiation for WPA wireless networks"
+url="http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'libdbus' 'readline' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+backup=('etc/wpa_supplicant/wpa_supplicant.conf')
+source=(https://w1.fi/releases/${pkgname}-${pkgver}.tar.gz{,.asc}
+config)
+validpgpkeys=('EC4AA0A991A5F2464582D52D2B6EF432EFC895FA') # Jouni Malinen
+sha256sums=('b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450'
+'SKIP'
+'5163609e133851dfbbee5982954fab22e45bf2c9093e43eb466d8a2c39f8a012')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  cp "${srcdir}/config" ./.config
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+
+  # The Makefile does not pick up our CPPFLAGS
+  export CFLAGS="$CPPFLAGS $CFLAGS"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  make LIBDIR=/usr/lib BINDIR=/usr/bin DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/etc/wpa_supplicant"
+  install -m644 wpa_supplicant.conf 
"${pkgdir}/etc/wpa_supplicant/wpa_supplicant.conf"
+
+  install -d -m755 "${pkgdir}/usr/share/man/man"{5,8}
+  install -m644 

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

2016-03-02 Thread Florian Pritz
Date: Wednesday, March 2, 2016 @ 19:28:14
  Author: bluewind
Revision: 260539

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

Added:
  wpa_supplicant/repos/staging-i686/
  
wpa_supplicant/repos/staging-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 260538, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/staging-i686/PKGBUILD
(from rev 260538, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-i686/config
(from rev 260538, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-x86_64/
  
wpa_supplicant/repos/staging-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 260538, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/staging-x86_64/PKGBUILD
(from rev 260538, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-x86_64/config
(from rev 260538, wpa_supplicant/trunk/config)

--+
 
staging-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
   |   13 
 staging-i686/PKGBUILD  
  |   59 +
 staging-i686/config
  |  514 ++
 
staging-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
 |   13 
 staging-x86_64/PKGBUILD
  |   59 +
 staging-x86_64/config  
  |  514 ++
 6 files changed, 1172 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 260538:260539 to see the changes.


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

2015-12-27 Thread Evangelos Foutras
Date: Sunday, December 27, 2015 @ 14:33:29
  Author: foutrelis
Revision: 257300

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

Added:
  wpa_supplicant/repos/testing-i686/
  
wpa_supplicant/repos/testing-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 257299, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 257299, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 257299, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/
  
wpa_supplicant/repos/testing-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
(from rev 257299, 
wpa_supplicant/trunk/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 257299, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 257299, wpa_supplicant/trunk/config)

--+
 
testing-i686/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
   |   13 
 testing-i686/PKGBUILD  
  |   59 +
 testing-i686/config
  |  514 ++
 
testing-x86_64/0001-wpa_supplicant-Do-not-wait-for-monitor-on-P2P-Device-interface.patch
 |   13 
 testing-x86_64/PKGBUILD
  |   59 +
 testing-x86_64/config  
  |  514 ++
 6 files changed, 1172 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 257299:257300 to see the changes.


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

2015-04-29 Thread Evangelos Foutras
Date: Wednesday, April 29, 2015 @ 16:08:27
  Author: foutrelis
Revision: 238260

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

Added:
  wpa_supplicant/repos/testing-i686/
  
wpa_supplicant/repos/testing-i686/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch
(from rev 238259, 
wpa_supplicant/trunk/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch)
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 238259, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 238259, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/
  
wpa_supplicant/repos/testing-x86_64/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch
(from rev 238259, 
wpa_supplicant/trunk/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 238259, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 238259, wpa_supplicant/trunk/config)

+
 testing-i686/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch   
|   42 
 testing-i686/PKGBUILD  
|   58 +
 testing-i686/config
|  505 ++
 testing-x86_64/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch 
|   42 
 testing-x86_64/PKGBUILD
|   58 +
 testing-x86_64/config  
|  505 ++
 6 files changed, 1210 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 238259:238260 to see the changes.


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

2015-04-23 Thread Evangelos Foutras
Date: Friday, April 24, 2015 @ 04:51:44
  Author: foutrelis
Revision: 237979

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

Added:
  wpa_supplicant/repos/testing-i686/
  
wpa_supplicant/repos/testing-i686/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch
(from rev 237978, 
wpa_supplicant/trunk/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch)
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 237978, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 237978, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/
  
wpa_supplicant/repos/testing-x86_64/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch
(from rev 237978, 
wpa_supplicant/trunk/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 237978, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 237978, wpa_supplicant/trunk/config)

+
 testing-i686/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch   
|   42 
 testing-i686/PKGBUILD  
|   57 +
 testing-i686/config
|  505 ++
 testing-x86_64/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch 
|   42 
 testing-x86_64/PKGBUILD
|   57 +
 testing-x86_64/config  
|  505 ++
 6 files changed, 1208 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 237978:237979 to see the changes.


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

2014-07-04 Thread Jan Steffens
Date: Friday, July 4, 2014 @ 22:17:48
  Author: heftig
Revision: 216510

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

Added:
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 216509, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 216509, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 216509, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 216509, wpa_supplicant/trunk/config)
Deleted:
  wpa_supplicant/repos/testing-i686/PKGBUILD
  wpa_supplicant/repos/testing-i686/config
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
  wpa_supplicant/repos/testing-x86_64/config

-+
 /PKGBUILD   |  104 
 /config | 1010 ++
 testing-i686/PKGBUILD   |   52 --
 testing-i686/config |  508 ---
 testing-x86_64/PKGBUILD |   52 --
 testing-x86_64/config   |  508 ---
 6 files changed, 1114 insertions(+), 1120 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 216509:216510 to see the changes.


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

2013-05-30 Thread Tom Gundersen
Date: Thursday, May 30, 2013 @ 19:43:26
  Author: tomegun
Revision: 186720

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

Added:
  wpa_supplicant/repos/staging-i686/
  wpa_supplicant/repos/staging-i686/PKGBUILD
(from rev 186719, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-i686/config
(from rev 186719, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 186719, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/staging-x86_64/
  wpa_supplicant/repos/staging-x86_64/PKGBUILD
(from rev 186719, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-x86_64/config
(from rev 186719, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 186719, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 staging-i686/PKGBUILD|   54 +
 staging-i686/config  |  533 +
 staging-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 staging-x86_64/PKGBUILD  |   54 +
 staging-x86_64/config|  533 +
 staging-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1198 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 186719:186720 to see the changes.


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

2013-03-07 Thread Evangelos Foutras
Date: Thursday, March 7, 2013 @ 13:16:50
  Author: foutrelis
Revision: 179584

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

Added:
  wpa_supplicant/repos/staging-i686/
  wpa_supplicant/repos/staging-i686/PKGBUILD
(from rev 179583, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-i686/config
(from rev 179583, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 179583, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/staging-x86_64/
  wpa_supplicant/repos/staging-x86_64/PKGBUILD
(from rev 179583, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/staging-x86_64/config
(from rev 179583, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/staging-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 179583, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 staging-i686/PKGBUILD|   50 +
 staging-i686/config  |  533 +
 staging-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 staging-x86_64/PKGBUILD  |   50 +
 staging-x86_64/config|  533 +
 staging-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1190 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 179583:179584 to see the changes.


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

2013-02-09 Thread Thomas Bächler
Date: Saturday, February 9, 2013 @ 20:41:54
  Author: thomas
Revision: 177841

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 177840, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 177840, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 177840, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 177840, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 177840, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 177840, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 testing-i686/PKGBUILD|   50 +
 testing-i686/config  |  533 +
 testing-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 testing-x86_64/PKGBUILD  |   50 +
 testing-x86_64/config|  533 +
 testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1190 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 177840:177841 to see the changes.


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

2013-01-21 Thread Thomas Bächler
Date: Monday, January 21, 2013 @ 21:29:49
  Author: thomas
Revision: 175791

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 175790, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 175790, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 175790, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 175790, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 175790, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 175790, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 testing-i686/PKGBUILD|   50 +
 testing-i686/config  |  533 +
 testing-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 testing-x86_64/PKGBUILD  |   50 +
 testing-x86_64/config|  533 +
 testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1190 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 175790:175791 to see the changes.


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

2012-10-13 Thread Thomas Bächler
Date: Saturday, October 13, 2012 @ 16:56:07
  Author: thomas
Revision: 168658

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 168657, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 168657, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 168657, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 168657, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 168657, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 168657, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 testing-i686/PKGBUILD|   55 +
 testing-i686/config  |  482 +
 testing-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 testing-x86_64/PKGBUILD  |   55 +
 testing-x86_64/config|  482 +
 testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1098 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 168657:168658 to see the changes.


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

2012-06-25 Thread Jan Steffens
Date: Monday, June 25, 2012 @ 06:10:22
  Author: heftig
Revision: 162331

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 162330, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 162330, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 162330, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 162330, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 162330, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 162330, 
wpa_supplicant/trunk/hostap_allow-linking-with-libnl-3.2.patch)

--+
 testing-i686/PKGBUILD|   56 +
 testing-i686/config  |  468 +
 testing-i686/hostap_allow-linking-with-libnl-3.2.patch   |   12 
 testing-x86_64/PKGBUILD  |   56 +
 testing-x86_64/config|  468 +
 testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch |   12 
 6 files changed, 1072 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 162330:162331 to see the changes.


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

2012-02-23 Thread Allan McRae
Date: Thursday, February 23, 2012 @ 08:54:11
  Author: allan
Revision: 150895

db-move: moved wpa_supplicant from [testing] to [core] (i686)

Added:
  wpa_supplicant/repos/core-i686/PKGBUILD
(from rev 150886, wpa_supplicant/repos/testing-i686/PKGBUILD)
  wpa_supplicant/repos/core-i686/config
(from rev 150886, wpa_supplicant/repos/testing-i686/config)
  wpa_supplicant/repos/core-i686/dbus.patch
(from rev 150886, wpa_supplicant/repos/testing-i686/dbus.patch)
  wpa_supplicant/repos/core-i686/hostap_allow-linking-with-libnl-3.2.patch
(from rev 150886, 
wpa_supplicant/repos/testing-i686/hostap_allow-linking-with-libnl-3.2.patch)
Deleted:
  wpa_supplicant/repos/core-i686/PKGBUILD
  wpa_supplicant/repos/core-i686/config
  wpa_supplicant/repos/core-i686/dbus.patch
  wpa_supplicant/repos/testing-i686/

---+
 PKGBUILD  |   94 +--
 config|  810 ++--
 dbus.patch|  122 ++--
 hostap_allow-linking-with-libnl-3.2.patch |   42 +
 4 files changed, 558 insertions(+), 510 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-02-23 13:54:08 UTC (rev 150894)
+++ core-i686/PKGBUILD  2012-02-23 13:54:11 UTC (rev 150895)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=wpa_supplicant
-pkgver=0.7.3
-pkgrel=4
-pkgdesc=A utility providing key negotiation for WPA wireless networks
-url=http://hostap.epitest.fi/wpa_supplicant;
-arch=('i686' 'x86_64')
-depends=('openssl' 'dbus-core=1.2.4' 'readline=6.0' 'libnl')
-optdepends=('wpa_supplicant_gui: wpa_gui program')
-license=('GPL')
-groups=('base')
-backup=('etc/wpa_supplicant.conf')
-source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz
-config dbus.patch)
-sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443'
-'6a0837f18e5ff179ccd6954f7952dfc2e6aa69f353194ee4cb29c1ed2ef68c5d'
-'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
-  # Required by NetworkManager 0.8.995
-  patch -Np2 -i $srcdir/dbus.patch
-  cp ${srcdir}/config ./.config
-  sed -i 's@/usr/local@$(PREFIX)@g' Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
-  make PREFIX=/usr DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/etc
-  install -m644 wpa_supplicant.conf ${pkgdir}/etc/wpa_supplicant.conf
-  install -d -m755 ${pkgdir}/usr/share/man/man{5,8}
-  install -m644 doc/docbook/*.5 ${pkgdir}/usr/share/man/man5/
-  install -m644 doc/docbook/*.8 ${pkgdir}/usr/share/man/man8/
-  rm -f ${pkgdir}/usr/share/man/man8/wpa_{priv,gui}.8
-
-  install -m755 -d ${pkgdir}/usr/share/dbus-1/system-services
-  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
${pkgdir}/usr/share/dbus-1/system-services/
-  sed -e 's/sbin/usr\/sbin/' -i 
${pkgdir}/usr/share/dbus-1/system-services/*.service
-  install -m755 -d ${pkgdir}/etc/dbus-1/system.d
-  install -m644 dbus/dbus-wpa_supplicant.conf 
${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf
-}

Copied: wpa_supplicant/repos/core-i686/PKGBUILD (from rev 150886, 
wpa_supplicant/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-02-23 13:54:11 UTC (rev 150895)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=wpa_supplicant
+pkgver=0.7.3
+pkgrel=5
+pkgdesc=A utility providing key negotiation for WPA wireless networks
+url=http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'dbus-core=1.2.4' 'readline=6.0' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+groups=('base')
+backup=('etc/wpa_supplicant.conf')
+source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz
+config dbus.patch hostap_allow-linking-with-libnl-3.2.patch)
+sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443'
+'d00f306e53c22cc0d7352a0d4ed701fd77b9ff20e3a2422d81ac1fddcc11dff4'
+'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a'
+'ac805bf6e5aaec733dfc2c333417e519239cd58663a6e1cb34a54fd0f2bcc3c5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i $srcdir/hostap_allow-linking-with-libnl-3.2.patch
+
+  cd ${pkgname}
+  # Required by NetworkManager 0.8.995
+  patch -Np2 -i $srcdir/dbus.patch
+  cp ${srcdir}/config ./.config
+  sed -i 's@/usr/local@$(PREFIX)@g' Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/etc
+  install -m644 wpa_supplicant.conf 

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

2012-02-23 Thread Allan McRae
Date: Thursday, February 23, 2012 @ 08:54:14
  Author: allan
Revision: 150896

db-move: moved wpa_supplicant from [testing] to [core] (x86_64)

Added:
  wpa_supplicant/repos/core-x86_64/PKGBUILD
(from rev 150886, wpa_supplicant/repos/testing-x86_64/PKGBUILD)
  wpa_supplicant/repos/core-x86_64/config
(from rev 150886, wpa_supplicant/repos/testing-x86_64/config)
  wpa_supplicant/repos/core-x86_64/dbus.patch
(from rev 150886, wpa_supplicant/repos/testing-x86_64/dbus.patch)
  wpa_supplicant/repos/core-x86_64/hostap_allow-linking-with-libnl-3.2.patch
(from rev 150886, 
wpa_supplicant/repos/testing-x86_64/hostap_allow-linking-with-libnl-3.2.patch)
Deleted:
  wpa_supplicant/repos/core-x86_64/PKGBUILD
  wpa_supplicant/repos/core-x86_64/config
  wpa_supplicant/repos/core-x86_64/dbus.patch
  wpa_supplicant/repos/testing-x86_64/

---+
 PKGBUILD  |   94 +--
 config|  810 ++--
 dbus.patch|  122 ++--
 hostap_allow-linking-with-libnl-3.2.patch |   42 +
 4 files changed, 558 insertions(+), 510 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-02-23 13:54:11 UTC (rev 150895)
+++ core-x86_64/PKGBUILD2012-02-23 13:54:14 UTC (rev 150896)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=wpa_supplicant
-pkgver=0.7.3
-pkgrel=4
-pkgdesc=A utility providing key negotiation for WPA wireless networks
-url=http://hostap.epitest.fi/wpa_supplicant;
-arch=('i686' 'x86_64')
-depends=('openssl' 'dbus-core=1.2.4' 'readline=6.0' 'libnl')
-optdepends=('wpa_supplicant_gui: wpa_gui program')
-license=('GPL')
-groups=('base')
-backup=('etc/wpa_supplicant.conf')
-source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz
-config dbus.patch)
-sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443'
-'6a0837f18e5ff179ccd6954f7952dfc2e6aa69f353194ee4cb29c1ed2ef68c5d'
-'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
-  # Required by NetworkManager 0.8.995
-  patch -Np2 -i $srcdir/dbus.patch
-  cp ${srcdir}/config ./.config
-  sed -i 's@/usr/local@$(PREFIX)@g' Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
-  make PREFIX=/usr DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/etc
-  install -m644 wpa_supplicant.conf ${pkgdir}/etc/wpa_supplicant.conf
-  install -d -m755 ${pkgdir}/usr/share/man/man{5,8}
-  install -m644 doc/docbook/*.5 ${pkgdir}/usr/share/man/man5/
-  install -m644 doc/docbook/*.8 ${pkgdir}/usr/share/man/man8/
-  rm -f ${pkgdir}/usr/share/man/man8/wpa_{priv,gui}.8
-
-  install -m755 -d ${pkgdir}/usr/share/dbus-1/system-services
-  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
${pkgdir}/usr/share/dbus-1/system-services/
-  sed -e 's/sbin/usr\/sbin/' -i 
${pkgdir}/usr/share/dbus-1/system-services/*.service
-  install -m755 -d ${pkgdir}/etc/dbus-1/system.d
-  install -m644 dbus/dbus-wpa_supplicant.conf 
${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf
-}

Copied: wpa_supplicant/repos/core-x86_64/PKGBUILD (from rev 150886, 
wpa_supplicant/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-02-23 13:54:14 UTC (rev 150896)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=wpa_supplicant
+pkgver=0.7.3
+pkgrel=5
+pkgdesc=A utility providing key negotiation for WPA wireless networks
+url=http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'dbus-core=1.2.4' 'readline=6.0' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+groups=('base')
+backup=('etc/wpa_supplicant.conf')
+source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz
+config dbus.patch hostap_allow-linking-with-libnl-3.2.patch)
+sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443'
+'d00f306e53c22cc0d7352a0d4ed701fd77b9ff20e3a2422d81ac1fddcc11dff4'
+'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a'
+'ac805bf6e5aaec733dfc2c333417e519239cd58663a6e1cb34a54fd0f2bcc3c5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i $srcdir/hostap_allow-linking-with-libnl-3.2.patch
+
+  cd ${pkgname}
+  # Required by NetworkManager 0.8.995
+  patch -Np2 -i $srcdir/dbus.patch
+  cp ${srcdir}/config ./.config
+  sed -i 's@/usr/local@$(PREFIX)@g' Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+  install -m755 

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

2011-11-04 Thread Thomas Bächler
Date: Friday, November 4, 2011 @ 20:39:35
  Author: thomas
Revision: 142085

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

Added:
  wpa_supplicant/repos/testing-i686/
  wpa_supplicant/repos/testing-i686/PKGBUILD
(from rev 142084, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-i686/config
(from rev 142084, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-i686/dbus.patch
(from rev 142084, wpa_supplicant/trunk/dbus.patch)
  wpa_supplicant/repos/testing-x86_64/
  wpa_supplicant/repos/testing-x86_64/PKGBUILD
(from rev 142084, wpa_supplicant/trunk/PKGBUILD)
  wpa_supplicant/repos/testing-x86_64/config
(from rev 142084, wpa_supplicant/trunk/config)
  wpa_supplicant/repos/testing-x86_64/dbus.patch
(from rev 142084, wpa_supplicant/trunk/dbus.patch)

---+
 testing-i686/PKGBUILD |   45 
 testing-i686/config   |  404 
 testing-i686/dbus.patch   |   61 ++
 testing-x86_64/PKGBUILD   |   45 
 testing-x86_64/config |  404 
 testing-x86_64/dbus.patch |   61 ++
 6 files changed, 1020 insertions(+)

Copied: wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 142084, 
wpa_supplicant/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-05 00:39:35 UTC (rev 142085)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=wpa_supplicant
+pkgver=0.7.3
+pkgrel=4
+pkgdesc=A utility providing key negotiation for WPA wireless networks
+url=http://hostap.epitest.fi/wpa_supplicant;
+arch=('i686' 'x86_64')
+depends=('openssl' 'dbus-core=1.2.4' 'readline=6.0' 'libnl')
+optdepends=('wpa_supplicant_gui: wpa_gui program')
+license=('GPL')
+groups=('base')
+backup=('etc/wpa_supplicant.conf')
+source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz
+config dbus.patch)
+sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443'
+'6a0837f18e5ff179ccd6954f7952dfc2e6aa69f353194ee4cb29c1ed2ef68c5d'
+'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
+  # Required by NetworkManager 0.8.995
+  patch -Np2 -i $srcdir/dbus.patch
+  cp ${srcdir}/config ./.config
+  sed -i 's@/usr/local@$(PREFIX)@g' Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/etc
+  install -m644 wpa_supplicant.conf ${pkgdir}/etc/wpa_supplicant.conf
+  install -d -m755 ${pkgdir}/usr/share/man/man{5,8}
+  install -m644 doc/docbook/*.5 ${pkgdir}/usr/share/man/man5/
+  install -m644 doc/docbook/*.8 ${pkgdir}/usr/share/man/man8/
+  rm -f ${pkgdir}/usr/share/man/man8/wpa_{priv,gui}.8
+
+  install -m755 -d ${pkgdir}/usr/share/dbus-1/system-services
+  install -m644 
dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} 
${pkgdir}/usr/share/dbus-1/system-services/
+  sed -e 's/sbin/usr\/sbin/' -i 
${pkgdir}/usr/share/dbus-1/system-services/*.service
+  install -m755 -d ${pkgdir}/etc/dbus-1/system.d
+  install -m644 dbus/dbus-wpa_supplicant.conf 
${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf
+}

Copied: wpa_supplicant/repos/testing-i686/config (from rev 142084, 
wpa_supplicant/trunk/config)
===
--- testing-i686/config (rev 0)
+++ testing-i686/config 2011-11-05 00:39:35 UTC (rev 142085)
@@ -0,0 +1,404 @@
+# Example wpa_supplicant build time configuration
+#
+# This file lists the configuration options that are used when building the
+# hostapd binary. All lines starting with # are ignored. Configuration option
+# lines must be commented out complete, if they are not to be included, i.e.,
+# just setting VARIABLE=n is not disabling that variable.
+#
+# This file is included in Makefile, so variables like CFLAGS and LIBS can also
+# be modified from here. In most cases, these lines should use += in order not
+# to override previous values of the variables.
+
+
+# Uncomment following two lines and fix the paths if you have installed OpenSSL
+# or GnuTLS in non-default location
+#CFLAGS += -I/usr/local/openssl/include
+#LIBS += -L/usr/local/openssl/lib
+
+# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
+# the kerberos files are not in the default include path. Following line can be
+# used to fix build issues on such systems (krb5.h not found).
+#CFLAGS += -I/usr/include/kerberos
+
+# Example configuration for various cross-compilation platforms
+
+ sveasoft (e.g., for Linksys WRT54G) ##
+#CC=mipsel-uclibc-gcc
+#CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
+#CFLAGS += -Os
+#CPPFLAGS