summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/cloog/PKGBUILD8
-rw-r--r--core/dnsutils/PKGBUILD34
-rw-r--r--core/dnsutils/remove-bind.patch25
-rw-r--r--core/dnsutils/tools-only.patch25
-rw-r--r--core/fakeroot/PKGBUILD6
-rw-r--r--core/gcc/PKGBUILD28
-rw-r--r--core/gcc/PKGBUILD.mips64el79
-rw-r--r--core/isl/PKGBUILD10
-rw-r--r--core/libevent/PKGBUILD6
-rw-r--r--core/logrotate/PKGBUILD10
-rw-r--r--core/logrotate/logrotate-3.8.0-noasprintf.patch55
-rw-r--r--core/lvm2/PKGBUILD8
-rw-r--r--core/lzo2/PKGBUILD6
-rw-r--r--core/nfs-utils/PKGBUILD8
-rw-r--r--core/nfs-utils/nfs-common6
-rw-r--r--core/nfs-utils/nfs-server6
-rw-r--r--core/nfsidmap/PKGBUILD7
-rw-r--r--core/pcre/PKGBUILD21
-rw-r--r--core/pcre/r661.diff26
-rw-r--r--core/run-parts/PKGBUILD9
-rw-r--r--core/usbutils/PKGBUILD13
-rw-r--r--core/usbutils/usb.ids-2011.08.17 (renamed from core/usbutils/usb.ids-2011.04.14)299
-rw-r--r--core/vpnc/PKGBUILD35
-rw-r--r--core/vpnc/vpnc.conf17
-rw-r--r--core/vpnc/vpnc.rc35
-rw-r--r--core/wget/PKGBUILD6
26 files changed, 494 insertions, 294 deletions
diff --git a/core/cloog/PKGBUILD b/core/cloog/PKGBUILD
index 608a4eb01..9a3af5e84 100644
--- a/core/cloog/PKGBUILD
+++ b/core/cloog/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 135904 2011-08-20 07:13:54Z allan $
+# $Id: PKGBUILD 136343 2011-08-26 22:10:53Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
pkgname=cloog
-pkgver=0.16.2
-pkgrel=2
+pkgver=0.16.3
+pkgrel=1
pkgdesc="Library that generates loops for scanning polyhedra"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.bastoul.net/cloog/"
@@ -12,7 +12,7 @@ depends=('isl' 'gmp')
conflicts=('cloog-ppl<0.15.10-2')
options=('!libtool')
source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('83877caaa879c7160063138bb18348e7')
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/core/dnsutils/PKGBUILD b/core/dnsutils/PKGBUILD
index b856ed0b5..4a8840900 100644
--- a/core/dnsutils/PKGBUILD
+++ b/core/dnsutils/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 130510 2011-07-07 02:37:46Z bisson $
+# $Id: PKGBUILD 136711 2011-08-31 16:36:37Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: kevin <kevin@archlinux.org>
# Contributor: mario <mario_vazq@hotmail.com>
@@ -8,41 +8,49 @@ pkgname=dnsutils
# Use a period and not a hyphen before the patch level for proper versioning.
pkgver=9.8.0.P4
_pkgver=9.8.0-P4
-pkgrel=1
+pkgrel=2
-pkgdesc='Various DNS utilities - dig host nslookup nsupdate'
-arch=('i686' 'x86_64' 'mips64el')
-url='https://www.isc.org/software/bind'
+pkgdesc='DNS utilities: dig host nslookup'
+url='http://www.isc.org/software/bind/'
license=('custom:ISC')
+arch=('i686' 'x86_64' 'mips64el')
depends=('openssl' 'idnkit')
-replaces=('bind-tools' 'host')
options=('!makeflags')
source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"
- 'tools-only.patch')
+ 'remove-bind.patch')
sha1sums=('969864200c1516a8bea54266de60f316d79182b4'
- 'ac88c89e25c26d73095a3dd85e1ca1070d184ded')
+ 'b465ef6160b004838f04de9978fe1be8422af777')
+
+replaces=('bind-tools' 'host')
build() {
cd "${srcdir}/bind-${_pkgver}"
- patch -p1 -i ../tools-only.patch
+ patch -p1 -i ../remove-bind.patch
export STD_CDEFINES='-DDIG_SIGCHASE'
+ # hack to remove unused bloat from the binaries
+ CFLAGS+=' -fdata-sections -ffunction-sections'
+ LDFLAGS+=' -Wl,--gc-sections'
+
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
- --with-openssl=yes \
- --with-idn=yes \
+ --disable-static \
--disable-linux-caps \
+ --with-openssl \
+ --with-idn \
make
}
package() {
- cd "${srcdir}/bind-${_pkgver}/bin"
+ cd "${srcdir}/bind-${_pkgver}"
+
+ install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ cd bin
make DESTDIR="${pkgdir}" install
- install -Dm644 ../COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
diff --git a/core/dnsutils/remove-bind.patch b/core/dnsutils/remove-bind.patch
new file mode 100644
index 000000000..19d650964
--- /dev/null
+++ b/core/dnsutils/remove-bind.patch
@@ -0,0 +1,25 @@
+diff -aur old/bin/Makefile.in new/bin/Makefile.in
+--- old/bin/Makefile.in 2009-10-05 05:07:08.000000000 -0700
++++ new/bin/Makefile.in 2011-08-28 19:16:17.245495043 -0700
+@@ -19,8 +19,7 @@
+ VPATH = @srcdir@
+ top_srcdir = @top_srcdir@
+
+-SUBDIRS = named rndc dig dnssec tests tools nsupdate \
+- check confgen @PKCS11_TOOLS@
++SUBDIRS = dig
+ TARGETS =
+
+ @BIND9_MAKE_RULES@
+diff -aur old/lib/Makefile.in new/lib/Makefile.in
+--- old/lib/Makefile.in 2007-06-19 16:47:13.000000000 -0700
++++ new/lib/Makefile.in 2011-08-28 19:17:50.828688599 -0700
+@@ -23,7 +23,7 @@
+ # Attempt to disable parallel processing.
+ .NOTPARALLEL:
+ .NO_PARALLEL:
+-SUBDIRS = isc isccc dns isccfg bind9 lwres tests
++SUBDIRS = isc dns isccfg bind9 lwres
+ TARGETS =
+
+ @BIND9_MAKE_RULES@
diff --git a/core/dnsutils/tools-only.patch b/core/dnsutils/tools-only.patch
deleted file mode 100644
index b46b71f60..000000000
--- a/core/dnsutils/tools-only.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -Naur bind-9.7.1-P2.orig/bin/Makefile.in bind-9.7.1-P2/bin/Makefile.in
---- bind-9.7.1-P2.orig/bin/Makefile.in 2009-10-05 08:07:08.000000000 -0400
-+++ bind-9.7.1-P2/bin/Makefile.in 2010-07-22 15:55:00.000000000 -0400
-@@ -19,8 +19,7 @@
- VPATH = @srcdir@
- top_srcdir = @top_srcdir@
-
--SUBDIRS = named rndc dig dnssec tests tools nsupdate \
-- check confgen @PKCS11_TOOLS@
-+SUBDIRS = dig nsupdate
- TARGETS =
-
- @BIND9_MAKE_RULES@
-diff -Naur bind-9.7.1-P2.orig/lib/Makefile.in bind-9.7.1-P2/lib/Makefile.in
---- bind-9.7.1-P2.orig/lib/Makefile.in 2007-06-19 19:47:13.000000000 -0400
-+++ bind-9.7.1-P2/lib/Makefile.in 2010-07-22 15:56:29.000000000 -0400
-@@ -23,7 +23,7 @@
- # Attempt to disable parallel processing.
- .NOTPARALLEL:
- .NO_PARALLEL:
--SUBDIRS = isc isccc dns isccfg bind9 lwres tests
-+SUBDIRS = isc dns isccfg bind9 lwres
- TARGETS =
-
- @BIND9_MAKE_RULES@
diff --git a/core/fakeroot/PKGBUILD b/core/fakeroot/PKGBUILD
index 0b214b75b..6246ebb55 100644
--- a/core/fakeroot/PKGBUILD
+++ b/core/fakeroot/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 128934 2011-06-25 14:19:16Z allan $
+# $Id: PKGBUILD 136827 2011-09-01 21:49:27Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Jochem Kossen <j.kossen@home.nl>
pkgname=fakeroot
-pkgver=1.16
+pkgver=1.18
pkgrel=1
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
arch=('i686' 'x86_64' 'mips64el')
@@ -14,7 +14,7 @@ install=fakeroot.install
depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
options=('!libtool')
source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
-md5sums=('e8470aa7e965bfc74467de0e594e60b6')
+md5sums=('b0e7696460ee54bc378b9c89997f77c2')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/core/gcc/PKGBUILD b/core/gcc/PKGBUILD
index a5ac9be2b..a01df3b5b 100644
--- a/core/gcc/PKGBUILD
+++ b/core/gcc/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 135922 2011-08-20 07:14:22Z allan $
+# $Id: PKGBUILD 136345 2011-08-26 22:10:56Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
@@ -6,9 +6,9 @@
pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
pkgver=4.6.1
-pkgrel=3
-#_snapshot=4.6-20110603
-_libstdcppmanver=20110201 # Note: check source directory name when updating this
+pkgrel=4
+_snapshot=4.6-20110819
+_libstdcppmanver=20110814 # Note: check source directory name when updating this
pkgdesc="The GNU Compiler Collection"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL' 'custom')
@@ -16,13 +16,13 @@ url="http://gcc.gnu.org"
makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
checkdepends=('dejagnu')
options=('!libtool' '!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
- #ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+ ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
gcc_pure64.patch
gcc-hash-style-both.patch)
-md5sums=('c57a9170c677bf795bdc04ed796ca491'
- '1e9fd2eaf0ee47ea64e82c48998f1999'
+md5sums=('b14d22730f9085eab7fd927039e68d28'
+ 'ce920d2550ff7e042b9f091d27764d8f'
'4030ee1c08dd1e843c0225b772360e76'
'4df25b623799b148a0703eaeec8fdf3f')
@@ -63,17 +63,9 @@ build() {
--with-ppl --enable-cloog-backend=isl \
--enable-lto --enable-gold --enable-ld=default \
--enable-plugin --with-plugin-ld=ld.gold \
- --disable-multilib --disable-libstdcxx-pch \
+ --disable-multilib --disable-libssp --disable-libstdcxx-pch \
--enable-checking=release
make
-
- # rebuild libssp without -fstack-protector and -D_FORTIFY_SOURCE=2
- # adjusting Makefile.in prior to build still results in these leaking through (yay libtool...)
- cd $CHOST/libssp
- sed -i -e "s#-fstack-protector#-fno-stack-protector#" \
- -e "s#-D_FORTIFY_SOURCE=2#-U_FORTIFY_SOURCE#" Makefile
- make clean
- make
}
check() {
@@ -97,7 +89,7 @@ package_gcc-libs()
cd gcc-build
make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
- for lib in libmudflap libgomp libssp libstdc++-v3/src; do
+ for lib in libmudflap libgomp libstdc++-v3/src; do
make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
done
make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
diff --git a/core/gcc/PKGBUILD.mips64el b/core/gcc/PKGBUILD.mips64el
index f747db1ac..dc1f81ac0 100644
--- a/core/gcc/PKGBUILD.mips64el
+++ b/core/gcc/PKGBUILD.mips64el
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 54542 2011-08-20 07:14:14Z allan $
+# $Id: PKGBUILD 54869 2011-08-26 22:10:40Z allan $
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: Allan McRae <allan@archlinux.org>
@@ -7,6 +7,7 @@
pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
pkgver=4.6.1
+<<<<<<< HEAD
pkgrel=3
pkgver=4.6.0
pkgrel=7 # hold ver
@@ -14,20 +15,33 @@ pkgrel=7 # hold ver
_libstdcppmanver=20110201 # Note: check source directory name when updating this
pkgdesc="The GNU Compiler Collection"
arch=('i686' 'x86_64' 'mips64el')
+=======
+pkgrel=4
+_snapshot=4.6-20110819
+_libstdcppmanver=20110814 # Note: check source directory name when updating this
+pkgdesc="The GNU Compiler Collection for multilib"
+arch=('x86_64')
+>>>>>>> f651180e6b1ac9508ec0d1d9b94972de776020a9
license=('GPL' 'LGPL' 'FDL' 'custom')
url="http://gcc.gnu.org"
makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
checkdepends=('dejagnu')
options=('!libtool' '!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
- #ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+ ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
gcc_pure64.patch
gcc_mips64el_lib.patch
gcc-hash-style-both.patch)
+<<<<<<< HEAD
md5sums=('c57a9170c677bf795bdc04ed796ca491'
'1e9fd2eaf0ee47ea64e82c48998f1999'
'4030ee1c08dd1e843c0225b772360e76'
+=======
+md5sums=('b14d22730f9085eab7fd927039e68d28'
+ 'ce920d2550ff7e042b9f091d27764d8f'
+ '22cec272f9cc2801d3cd348feaca888b'
+>>>>>>> f651180e6b1ac9508ec0d1d9b94972de776020a9
'4df25b623799b148a0703eaeec8fdf3f')
if [ -n "${_snapshot}" ]; then
@@ -69,24 +83,13 @@ build() {
--with-ppl --enable-cloog-backend=isl \
--enable-lto --enable-gold --enable-ld=default \
--enable-plugin --with-plugin-ld=ld.gold \
+<<<<<<< HEAD
--disable-multilib --disable-libstdcxx-pch \
+=======
+ --enable-multilib --disable-libssp --disable-libstdcxx-pch \
+>>>>>>> f651180e6b1ac9508ec0d1d9b94972de776020a9
--enable-checking=release
make
-
- # rebuild libssp without -fstack-protector and -D_FORTIFY_SOURCE=2
- # adjusting Makefile.in prior to build still results in these leaking through (yay libtool...)
- cd $CHOST/libssp
- sed -i -e "s#-fstack-protector#-fno-stack-protector#" \
- -e "s#-D_FORTIFY_SOURCE=2#-U_FORTIFY_SOURCE#" Makefile
- make clean
- make
-
- # rebuild 32-bit libssp
- cd ../32/libssp
- sed -i -e "s#-fstack-protector#-fno-stack-protector#" \
- -e "s#-D_FORTIFY_SOURCE=2#-U_FORTIFY_SOURCE#" Makefile
- make clean
- make
}
check() {
@@ -110,7 +113,7 @@ package_gcc-libs()
cd gcc-build
make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
- for lib in libmudflap libgomp libssp libstdc++-v3/src; do
+ for lib in libmudflap libgomp libstdc++-v3/src; do
make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
done
make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
@@ -136,9 +139,47 @@ package_gcc-libs()
package_gcc()
{
+<<<<<<< HEAD
pkgdesc="The GNU Compiler Collection - C and C++ frontends"
depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.21.1' 'libmpc' 'cloog' 'ppl')
groups=('base-devel')
+=======
+ pkgdesc="Runtime libraries shipped by GCC (32-bit)"
+ depends=('lib32-glibc>=2.14' "gcc-libs>=$pkgver")
+
+ cd gcc-build
+ make -j1 -C $CHOST/32/libgcc DESTDIR=${pkgdir} install-shared
+ for lib in libmudflap libgomp libstdc++-v3/src; do
+ make -j1 -C $CHOST/32/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+ done
+
+ make -j1 DESTDIR=${pkgdir} install-target-libquadmath
+ make -j1 DESTDIR=${pkgdir} install-target-libgfortran
+ make -j1 DESTDIR=${pkgdir} install-target-libobjc
+
+ # remove unnecessary files installed by install-target-{libquadmath,libgfortran,libobjc}
+ rm ${pkgdir}/usr/lib32/libgfortran.spec
+
+ # remove stuff in gcc-libs-multilib
+ rm -rf ${pkgdir}/usr/lib
+ rm -rf ${pkgdir}/usr/share/info
+
+ # remove static libraries
+ find ${pkgdir} -name *.a -delete
+
+ # Install Runtime Library Exception
+ install -Dm644 ${_basedir}/COPYING.RUNTIME \
+ ${pkgdir}/usr/share/licenses/lib32-gcc-libs/RUNTIME.LIBRARY.EXCEPTION
+}
+
+package_gcc-multilib()
+{
+ pkgdesc="The GNU Compiler Collection - C and C++ frontends for multilib"
+ depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils-multilib>=2.21.1' 'libmpc' 'cloog' 'ppl')
+ groups=('multilib-devel')
+ provides=("gcc=$pkgver-$pkgrel")
+ conflicts=('gcc')
+>>>>>>> f651180e6b1ac9508ec0d1d9b94972de776020a9
install=gcc.install
cd gcc-build
diff --git a/core/isl/PKGBUILD b/core/isl/PKGBUILD
index f1253d7bb..bf6b8b147 100644
--- a/core/isl/PKGBUILD
+++ b/core/isl/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 135908 2011-08-20 07:13:59Z allan $
+# $Id: PKGBUILD 136341 2011-08-26 22:10:51Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
pkgname=isl
-pkgver=0.06
-pkgrel=2
+pkgver=0.07
+pkgrel=1
pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.kotnet.org/~skimo/isl/"
license=('LGPL2.1')
options=('!libtool')
source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -29,5 +29,5 @@ package() {
# this seems a better place for this file...
install -dm755 $pkgdir/usr/share/gdb/auto-load/
- mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
+ mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
}
diff --git a/core/libevent/PKGBUILD b/core/libevent/PKGBUILD
index 1878da5cb..2cbcffa59 100644
--- a/core/libevent/PKGBUILD
+++ b/core/libevent/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 127366 2011-06-13 18:59:12Z eric $
+# $Id: PKGBUILD 136737 2011-08-31 19:39:15Z eric $
# Maintainer:
# Contributor: Judd <jvinet@zeroflux.org>
pkgname=libevent
-pkgver=2.0.12
+pkgver=2.0.13
pkgrel=1
pkgdesc="An event notification library"
arch=('i686' 'x86_64' 'mips64el')
@@ -13,7 +13,7 @@ depends=('openssl')
optdepends=('python2: to use event_rpcgen.py')
options=('!libtool')
source=("http://www.monkey.org/~provos/libevent-$pkgver-stable.tar.gz")
-md5sums=('42986228baf95e325778ed328a93e070')
+md5sums=('af786b4b3f790c9d3279792edf7867fc')
build() {
cd "${srcdir}/${pkgname}-${pkgver}-stable"
diff --git a/core/logrotate/PKGBUILD b/core/logrotate/PKGBUILD
index f7927cb75..38edf21a2 100644
--- a/core/logrotate/PKGBUILD
+++ b/core/logrotate/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 130804 2011-07-08 03:53:21Z eric $
+# $Id: PKGBUILD 136351 2011-08-27 04:08:31Z allan $
# Maintainer: Aaron Griffin <aaron@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
pkgname=logrotate
pkgver=3.8.0
-pkgrel=1
+pkgrel=2
pkgdesc="Rotates system logs automatically"
arch=('i686' 'x86_64' 'mips64el')
url="https://fedorahosted.org/logrotate/"
@@ -13,15 +13,19 @@ groups=('base')
depends=('popt' 'cron' 'gzip')
backup=('etc/logrotate.conf')
source=(https://fedorahosted.org/releases/l/o/logrotate/logrotate-${pkgver}.tar.gz
+ logrotate-3.8.0-noasprintf.patch
logrotate.conf
logrotate.cron.daily)
md5sums=('590f77c13077a4c384dbec7ca9c5f242'
+ '624801859beb9abe7958b6392c854d72'
'462a5f364717461537eb2ae6394ad23e'
'8e23d5d4cc29b1e055b24df87e355cdc')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
-
+
+ patch -Np1 -i "$srcdir"/logrotate-3.8.0-noasprintf.patch
+
sed -i 's|#define DEFAULT_MAIL_COMMAND .*|#define DEFAULT_MAIL_COMMAND "/usr/bin/mail"|'\
config.h
sed -i "s|CFLAGS = -Wall|CFLAGS = -Wall $CFLAGS|" Makefile
diff --git a/core/logrotate/logrotate-3.8.0-noasprintf.patch b/core/logrotate/logrotate-3.8.0-noasprintf.patch
new file mode 100644
index 000000000..b9464e230
--- /dev/null
+++ b/core/logrotate/logrotate-3.8.0-noasprintf.patch
@@ -0,0 +1,55 @@
+diff '--exclude-from=/home/dang/.scripts/diffrc' -up -ruN logrotate-3.8.0.orig/config.c logrotate-3.8.0/config.c
+--- logrotate-3.8.0.orig/config.c 2011-06-21 04:12:02.000000000 -0400
++++ logrotate-3.8.0/config.c 2011-07-12 13:47:36.274319050 -0400
+@@ -41,39 +41,6 @@
+ #endif
+ #endif
+
+-#if !defined(asprintf)
+-#include <stdarg.h>
+-
+-int asprintf(char **string_ptr, const char *format, ...)
+-{
+- va_list arg;
+- char *str;
+- int size;
+- int rv;
+-
+- va_start(arg, format);
+- size = vsnprintf(NULL, 0, format, arg);
+- size++;
+- va_start(arg, format);
+- str = malloc(size);
+- if (str == NULL) {
+- va_end(arg);
+- /*
+- * Strictly speaking, GNU asprintf doesn't do this,
+- * but the caller isn't checking the return value.
+- */
+- fprintf(stderr, "failed to allocate memory\\n");
+- exit(1);
+- }
+- rv = vsnprintf(str, size, format, arg);
+- va_end(arg);
+-
+- *string_ptr = str;
+- return (rv);
+-}
+-
+-#endif
+-
+ enum {
+ STATE_DEFAULT = 2,
+ STATE_SKIP_LINE = 4,
+diff '--exclude-from=/home/dang/.scripts/diffrc' -up -ruN logrotate-3.8.0.orig/logrotate.h logrotate-3.8.0/logrotate.h
+--- logrotate-3.8.0.orig/logrotate.h 2011-06-21 04:12:02.000000000 -0400
++++ logrotate-3.8.0/logrotate.h 2011-07-12 13:47:38.949285608 -0400
+@@ -66,8 +66,5 @@ extern int numLogs;
+ extern int debug;
+
+ int readAllConfigPaths(const char **paths);
+-#if !defined(asprintf)
+-int asprintf(char **string_ptr, const char *format, ...);
+-#endif
+
+ #endif
diff --git a/core/lvm2/PKGBUILD b/core/lvm2/PKGBUILD
index 6c0322698..f736cc8ac 100644
--- a/core/lvm2/PKGBUILD
+++ b/core/lvm2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 135564 2011-08-15 21:08:52Z eric $
+# $Id: PKGBUILD 136115 2011-08-23 03:22:03Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
# Maintainer: Thomas Bächler <thomas@archlinux.org>
pkgbase=lvm2
pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.87
+pkgver=2.02.88
pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url="http://sourceware.org/lvm2/"
@@ -14,11 +14,11 @@ source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz
lvm2_install
lvm2_hook
11-dm-initramfs.rules)
-md5sums=('4c36c7f216edfe65a6193d2adc389ecd'
+md5sums=('321429cd1b1526a29cf6d75018b1e4bb'
'dcb82506d732cc7b10159a89b579dba8'
'8d613b84a175cd85f752a75198e40e15'
'69e40679cd8b3658bfc619e48baae125')
-sha1sums=('4b217d405133bdc6120568253574a49fae2caa4f'
+sha1sums=('05a4fb09cb5e3d680ad1b268c941968853fb1979'
'7f108b2f2056eb050fc898bf5190ecf9145aed8a'
'a0e0513c2efb183006e57e595d93ce18be297928'
'f6a554eea9557c3c236df2943bb6e7e723945c41')
diff --git a/core/lzo2/PKGBUILD b/core/lzo2/PKGBUILD
index 7fe5bc88a..7b56fe632 100644
--- a/core/lzo2/PKGBUILD
+++ b/core/lzo2/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 122309 2011-05-03 18:52:51Z tpowa $
+# $Id: PKGBUILD 136471 2011-08-30 06:25:43Z tpowa $
# Contributor: Low Kian Seong <fastmail_low@speedymail.org>
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=lzo2
-pkgver=2.05
+pkgver=2.06
pkgrel=1
pkgdesc="Portable lossless data compression library"
arch=('i686' 'x86_64' 'mips64el')
@@ -11,7 +11,7 @@ license=('GPL')
depends=('glibc')
source=(http://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
options=(!libtool)
-md5sums=('c67cda5fa191bab761c7cb06fe091e36')
+md5sums=('95380bd4081f85ef08c5209f4107e9f8')
build() {
cd "${srcdir}/lzo-${pkgver}"
diff --git a/core/nfs-utils/PKGBUILD b/core/nfs-utils/PKGBUILD
index 00db67256..e1ea49bcf 100644
--- a/core/nfs-utils/PKGBUILD
+++ b/core/nfs-utils/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 134117 2011-08-01 17:55:07Z tpowa $
+# $Id: PKGBUILD 136623 2011-08-31 07:26:31Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
@@ -7,7 +7,7 @@
pkgname=nfs-utils
pkgver=1.2.4
-pkgrel=2
+pkgrel=3
pkgdesc="Support programs for Network File Systems"
arch=('i686' 'x86_64' 'mips64el')
url='http://nfs.sourceforge.net'
@@ -28,9 +28,9 @@ source=(http://downloads.sourceforge.net/project/nfs/${pkgname}/${pkgver}/${pkgn
kernel-3.0-segfault.patch)
install=nfs-utils.install
md5sums=('938dc0574f3eb9891a8ed4746f806277'
- 'fc508e10cdf5e8ddd80373b1b2bc99a1'
+ 'dd0d65fc6e8f422fa12520813098264b'
'f73f197a16b02c3e248488ec35c4cf43'
- '5ae080f6117cef3140f02bc162bdc755'
+ 'e619f18354ff958ed624d05d08853d8f'
'2bf71def3263325643a09458635520f0'
'ff585faf410a62c4333a027c50b56bae'
'eb4f4027fab6fc1201f1ca04f5954c76'
diff --git a/core/nfs-utils/nfs-common b/core/nfs-utils/nfs-common
index 13742bde3..7b16b4b3c 100644
--- a/core/nfs-utils/nfs-common
+++ b/core/nfs-utils/nfs-common
@@ -2,9 +2,6 @@
daemon_name=nfs-common
-# daemon dependencies
-DAEMON_DEPENDS=('rpcbind')
-
NEED_STATD=
STATD_OPTS=
NEED_IDMAPD=
@@ -124,8 +121,7 @@ get_pid() {
case "$1" in
start)
- ck_depends ${DAEMON_DEPENDS[@]}
-
+ ck_daemon rpcbind && { echo -n "Start rpcbind first." >&2; stat_die; }
rc=0
if [ "$NEED_STATD" = yes ]; then
stat_busy "Starting $STATD_DAEMON_NAME daemon"
diff --git a/core/nfs-utils/nfs-server b/core/nfs-utils/nfs-server
index 9574cbc12..6aa609d8c 100644
--- a/core/nfs-utils/nfs-server
+++ b/core/nfs-utils/nfs-server
@@ -2,9 +2,6 @@
daemon_name=nfs-server
-# daemon dependencies
-DAEMON_DEPENDS=('nfs-common')
-
NFSD_COUNT=
NFSD_OPTS=
NEED_SVCGSSD=
@@ -85,8 +82,7 @@ get_pid() {
case "$1" in
start)
- ck_depends ${DAEMON_DEPENDS[@]}
-
+ ck_daemon nfs-common && { echo -n "Start nfs-common first." >&2; stat_die; }
rc=0
stat_busy "Mounting nfsd filesystem"
do_modprobe nfsd
diff --git a/core/nfsidmap/PKGBUILD b/core/nfsidmap/PKGBUILD
index aa253834f..08a78b077 100644
--- a/core/nfsidmap/PKGBUILD
+++ b/core/nfsidmap/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 111577 2011-02-27 18:55:50Z tpowa $
+# $Id: PKGBUILD 136619 2011-08-31 07:19:40Z tpowa $
# Maintainer:
# Contributor: Judd <jvinet@zeroflux.org>
pkgname=nfsidmap
pkgver=0.24
-pkgrel=2
+pkgrel=3
pkgdesc="Library to help mapping IDs, mainly for NFSv4"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.citi.umich.edu/projects/nfsv4/linux/"
@@ -24,9 +24,6 @@ package() {
cd $srcdir/lib$pkgname-$pkgver
make DESTDIR=$pkgdir install
- # remove idmap manpage provided by nfs-utils!
- rm $pkgdir/usr/share/man/man5/idmapd.conf.5
-
# install license
install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE
}
diff --git a/core/pcre/PKGBUILD b/core/pcre/PKGBUILD
index 0c1f768fc..00b5cc450 100644
--- a/core/pcre/PKGBUILD
+++ b/core/pcre/PKGBUILD
@@ -1,28 +1,39 @@
-# $Id: PKGBUILD 135715 2011-08-18 02:10:20Z allan $
+# $Id: PKGBUILD 136192 2011-08-24 03:36:11Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
pkgname=pcre
pkgver=8.13
-pkgrel=1
+pkgrel=2
pkgdesc="A library that implements Perl 5-style regular expressions"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.pcre.org/"
license=('BSD')
depends=('gcc-libs')
options=('!libtool')
-source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('5e595edbcded141813fa1a10dbce05cb')
-
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2
+ r661.diff)
+md5sums=('5e595edbcded141813fa1a10dbce05cb'
+ '70e2725b46ff6f3f114ce5067fd03405')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
+
+ # http://bugs.exim.org/show_bug.cgi?id=1136
+ patch -Np2 -i "${srcdir}"/r661.diff
+ sed -i '12140d' testdata/testoutput2
+
[ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
./configure --prefix=/usr --enable-utf8 --enable-unicode-properties
make
}
+check() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make check
+}
+
package() {
cd "${srcdir}"/${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
diff --git a/core/pcre/r661.diff b/core/pcre/r661.diff
new file mode 100644
index 000000000..7bed4ce2e
--- /dev/null
+++ b/core/pcre/r661.diff
@@ -0,0 +1,26 @@
+--- code/trunk/pcre_compile.c 2011/08/02 11:00:40 654
++++ code/trunk/pcre_compile.c 2011/08/21 09:00:54 661
+@@ -2295,8 +2295,13 @@
+ A user pointed out that PCRE was rejecting [:a[:digit:]] whereas Perl was not.
+ It seems that the appearance of a nested POSIX class supersedes an apparent
+ external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or
+-a digit. Also, unescaped square brackets may also appear as part of class
+-names. For example, [:a[:abc]b:] gives unknown class "[:abc]b:]"in Perl.
++a digit.
++
++In Perl, unescaped square brackets may also appear as part of class names. For
++example, [:a[:abc]b:] gives unknown POSIX class "[:abc]b:]". However, for
++[:a[:abc]b][b:] it gives unknown POSIX class "[:abc]b][b:]", which does not
++seem right at all. PCRE does not allow closing square brackets in POSIX class
++names.
+
+ Arguments:
+ ptr pointer to the initial [
+@@ -2314,6 +2319,7 @@
+ {
+ if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
+ ptr++;
++ else if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE;
+ else
+ {
+ if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
diff --git a/core/run-parts/PKGBUILD b/core/run-parts/PKGBUILD
index c57b7cdac..e459b8bf5 100644
--- a/core/run-parts/PKGBUILD
+++ b/core/run-parts/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 120288 2011-04-22 06:59:00Z pierre $
+# $Id: PKGBUILD 136455 2011-08-29 16:51:36Z pierre $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgname=run-parts
-pkgver=3.4.4
+pkgver=4.0.2
pkgrel=1
pkgdesc='run scripts or programs in a directory'
arch=('i686' 'x86_64' 'mips64el')
@@ -10,7 +10,7 @@ url='http://packages.qa.debian.org/d/debianutils.html'
license=('GPL')
depends=('glibc')
source=("http://ftp.de.debian.org/debian/pool/main/d/debianutils/debianutils_${pkgver}.tar.gz")
-sha256sums=('f5d6f6116bb2b474399c07f519c3a30bcda5c85994b43195fdf09508031c72fe')
+sha256sums=('c2fca92e93437ea5f0904f12847779d67b13d4b9d6ca85b8213e678a03ed76dc')
build() {
cd $srcdir/debianutils-$pkgver
@@ -22,4 +22,7 @@ package() {
cd $srcdir/debianutils-$pkgver
install -D -m755 run-parts $pkgdir/usr/bin/run-parts
install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
+ for l in po4a/*/run-parts.8; do
+ install -D -m644 ${l} $pkgdir/usr/share/man/${l:5:2}/man8/run-parts.8
+ done
}
diff --git a/core/usbutils/PKGBUILD b/core/usbutils/PKGBUILD
index 124e7189b..3fe65e8c4 100644
--- a/core/usbutils/PKGBUILD
+++ b/core/usbutils/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 130339 2011-07-05 15:17:16Z tpowa $
+# $Id: PKGBUILD 136054 2011-08-22 06:28:37Z tpowa $
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
# Contributor: Curtis Campbell <curtisjamescampbell@hotmail.com>
pkgname=usbutils
-pkgver=003
+pkgver=004
pkgrel=1
-_usb_ids_date=2011.04.14
+_usb_ids_date=2011.08.17
pkgdesc="USB Device Utilities"
arch=(i686 x86_64 'mips64el')
license=('GPL')
@@ -17,6 +17,9 @@ url="http://linux-usb.sourceforge.net/"
source=(http://www.kernel.org/pub/linux/utils/usb/$pkgname/$pkgname-$pkgver.tar.gz
fix-python2.patch
usb.ids-${_usb_ids_date}) # from http://linux-usb.sourceforge.net/usb.ids
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
+ '45766196895b4cc50b53cd56e1bbf3d1'
+ 'f04c301b5363ef618f0ec776deff3117')
build() {
cd $srcdir/$pkgname-$pkgver
@@ -35,6 +38,6 @@ package() {
install -dm755 $pkgdir/usr/lib
mv $pkgdir/usr/share/pkgconfig $pkgdir/usr/lib/
}
-md5sums=('94a1738fe92062cdd6a9642eeaccefc1'
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
'45766196895b4cc50b53cd56e1bbf3d1'
- 'd64f120c208ca742d3a1d05d84e3f531')
+ 'f04c301b5363ef618f0ec776deff3117')
diff --git a/core/usbutils/usb.ids-2011.04.14 b/core/usbutils/usb.ids-2011.08.17
index 02e03ba36..a194ddaec 100644
--- a/core/usbutils/usb.ids-2011.04.14
+++ b/core/usbutils/usb.ids-2011.08.17
@@ -9,8 +9,8 @@
# The latest version can be obtained from
# http://www.linux-usb.org/usb.ids
#
-# Version: 2011.04.14
-# Date: 2011-04-14 20:34:04
+# Version: 2011.08.10
+# Date: 2011-08-10 20:34:03
#
# Vendors, devices and interfaces. Please keep sorted.
@@ -92,6 +92,7 @@
2065 LUFA Test and Measurement Demo Application
2066 LUFA Multiple Report HID Demo
2068 LUFA Virtual Serial/Mass Storage Demo
+ 2069 LUFA Webserver Project
2103 JTAG ICE mkII
2104 AVR ISP mkII
2105 AVRONE!
@@ -118,6 +119,7 @@
7614 AT76c505a Wireless Adapter
7615 AT76C505AMX Wireless Adapter
7617 AT76C505AS Wireless Adapter
+ 7800 Mini Album
ff07 Tux Droid fish dongle
03ec Iwatsu America, Inc.
03ed Mitel Corp.
@@ -183,7 +185,7 @@
0511 OfficeJet K60
0512 DeckJet 450
0517 LaserJet 1000
- 051d integrated module with Bluetooth wireless technology.
+ 051d Wireless (Bluetooth + WLAN) Interface [Integrated Module]
0601 ScanJet 6300c
0604 DeskJet 840c
0605 ScanJet 2200c
@@ -288,6 +290,7 @@
1b02 PhotoSmart A610 series
1b04 DeskJet 3810
1b05 ScanJet 4850C/4890C
+ 1b07 Premium Starter Webcam
1c02 PhotoSmart A710 series
1c17 Color LaserJet 2550l
1d02 PhotoSmart A310 series
@@ -430,6 +433,7 @@
4502 PhotoSmart 945 (PTP mode)
4505 ScanJet G4010
4511 PhotoSmart 2600
+ 4512 E709n [Officejet 6500 Wireless]
4517 EWS UPD
4605 ScanJet G4050
4611 PhotoSmart 2700
@@ -449,6 +453,7 @@
5111 PhotoSmart 3200 series
5211 PhotoSmart 3300 series
5311 OfficeJet 6300
+ 5312 Officejet Pro 8500A
5411 OfficeJet 4300
5511 DeskJet F300 series
5611 PhotoSmart C3180
@@ -542,6 +547,8 @@
8704 DeskJet 5940
8804 DeskJet 6980 series
8904 DeskJet 6940 series
+ 8c07 Digital Stereo Headset
+ 8c11 Deskjet F4500 series
9002 PhotoSmart M437
9102 PhotoSmart M537
9302 PhotoSmart R930 series
@@ -639,6 +646,7 @@
5637 M5637 IDE Controller
5661 M5661 MP3 player
5667 M5667 MP3 player
+ 9665 Gateway Webcam
0403 Future Technology Devices International, Ltd
0000 H4SMK 7 Port Hub
0232 Serial Converter
@@ -648,7 +656,8 @@
6008 Serial Converter
6009 Serial Converter
6010 FT2232C Dual USB-UART/FIFO IC
- 6011 FT4232H
+ 6011 FT4232H Quad HS USB-UART/FIFO IC
+ 6014 FT232H Single HS USB-UART/FIFO IC
8040 4 Port Hub
8070 7 Port Hub
8370 7 Port Hub
@@ -657,6 +666,10 @@
bcd8 Stellaris Development Board
bcd9 Stellaris Evaluation Board
c630 lcd2usb interface
+ c631 i2c-tiny-usb interface
+ c632 xu1541 c64 floppy drive interface
+ c633 TinyCrypt dongle
+ c634 glcd2usb interface
c7d0 RR-CirKits LocoBuffer-USB
c8b8 Alpermann+Velte MTD TCU
c8b9 Alpermann+Velte MTD TCU 1HE
@@ -677,6 +690,7 @@
d9aa Actisense NGT-1 NMEA2000 PC Interface
e0d0 Total Phase Aardvark I2C/SPI Host Adapter
e521 EVER Sinline XL Series UPS
+ e6c8 PYRAMID Computer GmbH LCD
e700 Elster Unicom III Optical Probe
e888 Expert ISDN Control USB
e889 USB-RS232 OptoBridge
@@ -779,9 +793,11 @@
00f7 Smart Display PK-SD10
011d e228 Mobile Phone
0203 HID Audio Controls
+ 021d Aterm WL54SU2 802.11g Wireless Adapter [Atheros AR5523]
0248 Aterm PA-WL54GU
0249 Aterm WL300NU-G
02b4 Aterm WL300NU-AG
+ 02b6 Aterm WL300NU-GS 802.11n Wireless Adapter
55aa Hub
55ab Hub [iMac/iTouch kbd]
8010 Intellibase Hub
@@ -968,18 +984,18 @@
00d8 WLI-U2-SG54HP
00d9 WLI-U2-G54HP
00da WLI-U2-KG54L 802.11bg [ZyDAS ZD1211B]
- 00e8 Buffalo WLI-UC-G300N Wireless LAN Adapter
- 012e Buffalo WLI-UC-AG300N Wireless LAN Adapter
- 0148 Buffalo WLI-UC-G300HP Wireless LAN Adapter
- 0150 Buffalo WLP-UC-AG300 Wireless LAN Adapter
- 0157 Buffalo External Hard Drive HD-PEU2
- 0158 Buffalo WLI-UC-GNHP Wireless LAN Adapter
- 015d Buffalo WLI-UC-GN Wireless LAN Adapter [Ralink RT2870]
- 016f Buffalo WLI-UC-G301N Wireless LAN Adapter
+ 00e8 WLI-UC-G300N Wireless LAN Adapter [Ralink RT2870]
+ 012e WLI-UC-AG300N Wireless LAN Adapter
+ 0148 WLI-UC-G300HP Wireless LAN Adapter
+ 0150 WLP-UC-AG300 Wireless LAN Adapter
+ 0157 External Hard Drive HD-PEU2
+ 0158 WLI-UC-GNHP Wireless LAN Adapter
+ 015d WLI-UC-GN Wireless LAN Adapter [Ralink RT3070]
+ 016f WLI-UC-G301N Wireless LAN Adapter
017f Sony UWA-BR100 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]
- 019e Buffalo WLI-UC-GNP Wireless LAN Adapter
+ 019e WLI-UC-GNP Wireless LAN Adapter
01a1 MiniStation Metro
- 01a2 Buffalo WLI-UC-GNM Wireless LAN Adapter
+ 01a2 WLI-UC-GNM Wireless LAN Adapter
0412 Award Software International
0413 Leadtek Research, Inc.
1310 WinFast TV - NTSC + FM
@@ -1081,6 +1097,7 @@
3060 Sound Blaster Audigy 2 ZS External
3061 SoundBlaster Audigy 2 ZS Video Editor
3090 Sound Blaster Digital Music SX
+ 30d3 Sound Blaster Play!
3f00 E-Mu Xboard 25 MIDI Controller
3f02 E-Mu 0202
3f04 E-Mu 0404
@@ -1125,6 +1142,7 @@
403d Webcam Notebook Ultra
403e Webcam Vista Plus
4041 Webcam Live! Motion
+ 4043 Vibra Plus Webcam
4045 Live! Cam Voice
4049 Live! Cam Voice
4051 Live! Cam Notebook Pro [VF0250]
@@ -1330,6 +1348,7 @@
2504 USB 2.0 Hub
2512 USB 2.0 Hub
2514 USB 2.0 Hub
+ 2517 Hub
2524 USB MultiSwitch Hub
2602 USB 2.0 Hub
2640 USB 2.0 Hub
@@ -1610,7 +1629,7 @@
6001 AU5 ADSL Modem
6060 RNDIS/BeWAN ADSL2+
6070 RNDIS/BeWAN ADSL2+
- 625f Trekstor USB-Stick 12 CS-D 12 GB
+ 625f TUSB6250 ATA Bridge
dbc0 Device Bay Controller
e001 GraphLink
e003 TI-84 Plus Calculator
@@ -1724,6 +1743,7 @@
7055 Slim 2020AF camera
705a Asus USB2.0 Webcam
705c Genius iSlim 1300AF
+ 7079 FaceCam 2025R
0459 Adobe Systems, Inc.
045a SONICblue, Inc.
07da Supra Express 56K modem
@@ -1792,7 +1812,7 @@
0065 Wireless Natural MultiMedia Keyboard (106/109)
006a Wireless Optical Mouse (IntelliPoint)
006d eHome Remote Control Keyboard keys
- 006e MN510 802.11b Adapter
+ 006e MN-510 802.11b Wireless Adapter [Intersil ISL3873B]
006f Smart Display Reference Device
0070 Wireless MultiMedia Keyboard
0071 Wireless MultiMedia Keyboard (106/109)
@@ -1991,6 +2011,7 @@
0710 Zune Media Player
0713 Wireless Presenter Mouse 8000
0719 Xbox 360 Wireless Adapter
+ 071f Mouse/Keyboard 2.4GHz Transceiver V2.0
0721 LifeCam NX-3000 (UVC-compliant)
0723 LifeCam VX-7000 (UVC-compliant)
0734 Wireless Optical Desktop 700
@@ -1998,6 +2019,7 @@
0745 Nano Transceiver v1.0 for Bluetooth
0750 Wired Keyboard 600
075d LifeCam Cinema
+ 0768 Sidewinder X4
076d LifeCam HD-5000
930a ISOUSB.SYS Intel 82930 Isochronous IO Test Board
fff8 Keyboard
@@ -2059,6 +2081,7 @@
4d2e Optical Mobile Mouse (HID)
4d51 0Y357C PMX-MMOCZUL (B) [Dell Laser Mouse]
4d75 Rocketfish RF-FLBTAD Bluetooth Adapter
+ 4de7 webcam
0463 MGE UPS Systems
0001 UPS
ffff UPS
@@ -2110,7 +2133,9 @@
0819 Webcam C210
081b Webcam C310
0820 QuickCam VC
+ 0821 HD Webcam C910
0825 Webcam C270
+ 0828 HD Webcam B990
0830 QuickClip
0840 QuickCam Express
0850 QuickCam Web
@@ -2271,6 +2296,7 @@
c05d Optical Mouse
c061 RX1500 Laser Mouse
c062 LS1 Laser Mouse, corded
+ c063 DELL Laser Mouse
c068 G500 Laser Mouse
c101 UltraX Media Remote
c110 Harmony 885 Remote
@@ -2317,6 +2343,8 @@
c295 Momo Force Steering Wheel
c298 Driving Force Pro
c299 G25 Racing Wheel
+ c29b G27 Racing Wheel
+ c29c Speed Force Wireless Wheel for Wii
c2a0 Wingman Force Feedback Mouse
c2a1 WingMan Force Feedback Mouse
c301 iTouch Keyboard
@@ -2461,6 +2489,7 @@
0402 PS/2 Mouse on Semiconductors CICT Keyboard
0406 15 inch Detachable Monitor
0407 10 inch Mobile Monitor
+ 0408 SG3WA1/74 802.11b WLAN Adapter [Atmel AT76C503A]
0471 Digital Speaker System
0601 OVU1020 IR Dongle (Kbd+Mouse)
0602 ATI Remote Wonder II Input Device
@@ -2545,6 +2574,7 @@
047b Silitek Corp.
0001 Keyboard
0002 Keyboard and Mouse
+ 0011 SK-1688U Keyboard
00f9 SK-1789u Keyboard
0101 BlueTooth Keyboard and Mouse
020b SK-3105 SmartCard Reader
@@ -2665,13 +2695,16 @@
2017 Biometric Smart Card Reader
2018 BioSimKey
2302 Portable Flash Device (PFD)
+ 3744 STLINK Pseudo disk
+ 3748 ST-LINK/V2
4810 ISDN adapter
481d BT Digital Access adapter
- 5000 ST Micro Bluetooth Device
+ 5000 ST Micro/Ergenic ERG BT-002 Bluetooth Adapter
5001 ST Micro Bluetooth Device
5721 Hantek DDS-3X25 Arbitrary Waveform Generator
7270 ST Micro Serial Bridge
7554 56k SoftModem
+ df11 STM Device in DFU Mode
ff10 Swann ST56 Modem
0484 Specialix
0485 Nokia Monitors
@@ -2804,7 +2837,7 @@
002b A3000
002c Lexmark X125
0032 802.11b Adapter [ipaq h5400]
- 0033 802.11b Adapter [orinoco]
+ 0033 Wireless LAN MultiPort W100 [Intersil PRISM 2.5]
0036 Bluetooth Multiport Module
0051 KU-0133 Easy Access Interner Keyboard
0076 Wireless LAN MultiPort W200
@@ -3456,6 +3489,7 @@
f111 CY8CKIT-002 PSoC MiniProg3 Rev A Program and debug kit
f115 PSoC FirstTouch Programmer
04b5 ROHM LSI Systems USA, LLC
+ 3064 Hantek DSO-3064
04b6 Hint Corp.
04b7 Compal Electronics, Inc.
04b8 Seiko Epson Corp.
@@ -3492,7 +3526,7 @@
011e Perfection 1660 Photo
011f Perfection 1670
0120 Perfection 1270 scanner
- 0121 Perfection 2480 Photo
+ 0121 Perfection 2480/2580 Photo [GT-F500]
0122 Perfection 3590 scanner
0126 GT-15000 (ES-7000)
0128 Perfection 4870 (GT-X700)
@@ -3504,6 +3538,8 @@
012f Perfection V350 (GT-F700)
0130 Perfection V500 (GT-X770)
0131 Perfection V300
+ 0136 GT-S80 (ES-D400)
+ 0137 GT-S50 (ES-D200)
0202 Receipt Printer M129C
0401 CP 800 Digital Camera
0402 PhotoPC 850z
@@ -3575,7 +3611,9 @@
083f Stylus DX4450
0849 Stylus SX205
084d Stylus SX115
+ 0851 Stylus SX410
0856 Stylus SX515W
+ 085c Stylus SX125
04b9 Rainbow Technologies, Inc.
0300 SafeNet USB SuperPro/UltraPro
1000 iKey 1000 Token
@@ -3778,15 +3816,18 @@
01c5 FinePix F40fd (PTP)
01c6 FinePix A820 Zoom (PTP)
01d2 FinePix A800 Zoom (PTP)
+ 01d3 FinePix A920 (PTP)
01d4 FinePix F50fd (PTP)
01d5 FinePix F47 (PTP)
01f7 FinePix J250 (PTP)
01fd A160
+ 023e FinePix AX300
04cc ST-Ericsson
1122 Hub
1520 USB 2.0 Hub (Avocent KVM)
1521 USB 2.0 Hub
1a62 GW Instek GSP-830 Spectrum Analyzer (HID)
+ 2323 Ux500 serial debug port
2533 NFC device (PN533)
8116 Camera
04cd Tatung Co. Of America
@@ -3832,10 +3873,13 @@
0a04 AGP LIN Serial Analyzer
8000 In-Circuit Debugger
8001 ICD2 in-circuit debugger
+ 8101 PIC24F Starter Kit
900a PICkit3
c001 PicoLCD 20x4
fbba DiscFerret Magnetic Disc Analyser (bootloader mode)
fbbb DiscFerret Magnetic Disc Analyser (active mode)
+ fc92 Open Bench Logic Sniffer
+ ffef PICoPLC [APStech]
04d9 Holtek Semiconductor, Inc.
0022 Portable Keyboard
048e Optical Mouse
@@ -3843,6 +3887,8 @@
1203 Keyboard
1400 PS/2 keyboard + mouse controller
1503 Shortboard Lefty
+ 1603 Keyboard
+ 2221 Keyboard
04da Panasonic (Matsushita)
0901 LS-120 Camera
0912 SDR-S10
@@ -4017,6 +4063,7 @@
0111 Connect3D Flash Drive
1003 MP3 Player and Recorder
1006 SDC-200Z
+ 1f06 HX-MU064DA portable harddisk
2018 WIS09ABGN LinkStick Wireless LAN Adapter
2035 Digital Photo Frame Mass Storage
2036 Digital Photo Frame Mini Monitor
@@ -4182,6 +4229,7 @@
6888 GT-B3730 Composite LTE device (Commercial)
6889 GT-B3730 Composite LTE device (Commercial)
689a LTE Storage Driver [CMC2xx]
+ 689e GT-S5670 [Galaxy Fit]
7011 SEW-2003U Card
7021 Bluetooth Device
7061 eHome Infrared Receiver
@@ -4486,6 +4534,7 @@
00d3 00052486 / Laser Mouse M1052 [hama]
0171 SPCA1527A/SPCA1528 SD card camera (Mass Storage mode)
0232 Fingerprint
+ 0538 Wireless Optical Mouse 2.4G [Bright]
0561 Flexcam 100
05d8 Wireless keyboard/mouse
0c15 SPIF215A SATA bridge
@@ -4522,6 +4571,7 @@
16e3 n30 Handheld Sync
3202 Liquid
3203 Liquid (Debug mode)
+ 3341 Iconia tablet A500
d001 Divio NW801/DVC-V6+ Digital Camera
0503 Hitachi America, Ltd
0504 Hayes Microcomputer Products
@@ -4559,6 +4609,7 @@
0012 F8T012 Bluetooth Adapter
0013 F8T013 Bluetooth Adapter
0017 B8T017 Bluetooth+EDR 2.1
+ 003a Universal Media Reader
0050 F5D6050 802.11b Wireless Adapter v2000 [Atmel at76c503a]
0081 F8T001v2 Bluetooth
0083 Bluetooth Device
@@ -4587,27 +4638,31 @@
0304 FSU304 USB 2.0 - 4 Ports Hub
0409 F5U409 Serial
0551 F6C550-AVR UPS
+ 0706 2-N-1 USB 2.0 7-Port Hub (Lower half)
0802 Nostromo n40 Gamepad
0803 Nostromo 1745 GamePad
0805 Nostromo N50 GamePad
0815 Nostromo n52 HID SpeedPad Mouse Wheel
0826 ErgoFit Wireless Optical Mouse (HID)
0980 HID UPS Battery
- 1102 Realtek RTL8188CE-VAU 1T1R 802.11n WLAN Adapter
+ 1102 F7D1102 N150/Surf Micro Wireless Adapter v1000 [Realtek RTL8188CE-VAU]
1202 F5U120-PC Parallel Printer Port
1203 F5U120-PC Serial Port
+ 2103 F7D2102 802.11n N300 Micro Wireless Adapter v3000 [Realtek RTL8192CU]
258a F5U258 Host to Host cable
3101 F1DF102U/F1DG102U Flip Hub
3201 F1DF102U/F1DG102U Flip KVM
4050 ZD1211B
5055 F5D5055 Gigabit Network Adapter [AX88xxx]
6051 F5D6051 802.11b Wireless Network Adapter [ZyDAS ZD1201]
+ 615a F7D4101 / F9L1101 802.11abgn Wireless Adapter [Broadcom BCM4323]
7050 F5D7050 Wireless G Adapter v1000/v2000 [Intersil ISL3887]
7051 F5D7051 802.11g Adapter v1000 [Broadcom 4320 USB]
- 705a F5D7050 Wireless G Adapter v3000 [Ralink RT2573]
+ 705a F5D7050 Wireless G Adapter v3000 [Ralink RT2571W]
705b Wireless G Adapter
705c F5D7050 Wireless G Adapter v4000 [Zydas ZD1211B]
705e F5D7050 Wireless G Adapter v5000 [Realtek RTL8187B]
+ 706a 2-N-1 USB 2.0 7-Port Hub (Lower half)
8053 F5D8053 N Wireless USB Adapter v1000/v4000 [Ralink RT2870]
805c F5D8053 N Wireless Adapter v3000 [Ralink RT2870]
805e F5D8053 N Wireless USB Adapter v5000 [Realtek RTL8192U]
@@ -4615,7 +4670,7 @@
815f F5D8053 N Wireless USB Adapter v6000 [Realtek RTL8192SU]
825a F5D8055 N+ Wireless Adapter v1000 [Ralink RT2870]
825b F5D8055 N+ Wireless Adapter v2000 [Ralink RT3070]
- 845a F7D2101deSH [rtl8192su]
+ 845a F7D2101 802.11n Surf & Share Wireless Adapter v1000 [Realtek RTL8192SU]
905b F5D9050 Wireless G+ MIMO Network Adapter v3000 [Ralink RT2573]
905c F5D9050 Wireless G+ MIMO Network Adapter v4000 [Ralink RT2573]
935a F6D4050 N150 Enhanced Wireless Network Adapter v1000 [Ralink RT2870]
@@ -5013,6 +5068,7 @@
2011 UC-2324 4xSerial Ports [mos7840]
2202 CS124U Miniview II KVM Switch
2213 CS682 2-Port USB 2.0 DVI KVM Switch
+ 2404 4-port switch
2600 IDE Bridge
2701 CE700A KVM Extender
4000 DSB-650 10Mbps Ethernet [klsi]
@@ -5071,6 +5127,7 @@
0401 P 3600 A3 Pro
0408 BearPaw 2448 CU Pro
0409 BearPaw 2448 TA Pro
+ 040b ScanExpress A3 USB 1200 PRO
0873 ScanExpress 600 USB
1000 BearPaw 4800 TA Pro
a350 gSmart 350 Camera
@@ -5212,6 +5269,7 @@
4010 LD-USB20
5003 UC-SGT
5004 UC-SGT
+ 6008 Flash Disk
abc1 LD-USB/TX
056f Korea Data Systems Co., Ltd
cd00 CDM-751 CD organizer
@@ -5345,6 +5403,7 @@
84ff AVM Fritz!WLAN USB N (in CD-ROM-mode)
057d Shark Multimedia, Inc.
057e Nintendo Co., Ltd
+ 0305 Broadcom BCM2045A Bluetooth Radio [Nintendo Wii]
0306 Wii Remote Controller RVL-003
057f QuickShot, Ltd
6238 USB StrikePad
@@ -5553,6 +5612,7 @@
3417 NWD271N 802.11n Wireless Adapter [Atheros AR9001U-(2)NG]
3418 NWD211AN 802.11abgn Wireless Adapter [Ralink RT2870]
341a NWD-270N Wireless N-lite USB Adapter
+ 341f NWD2205 802.11n Wireless N Adapter [Realtek RTL8192CU]
0587 America Kotobuki Electronics Industries, Inc.
0588 Sapien Design
0589 Victron
@@ -5695,7 +5755,10 @@
0641 Mobile Hard Drive
1010 Desktop Hard Drive
1019 Desktop Hard Drive
+ 1021 Little Disk
+ 1027 iamaKey V2
102a Rikiki Hard Drive
+ 1049 rikiki Harddrive
a601 HardDrive
a602 CD R/W
05a0 Vetronix Corp.
@@ -5843,6 +5906,7 @@
1299 iPod Touch 3.Gen
129a iPad
129e iPod Touch 4.Gen
+ 129f iPad 2
1300 iPod Shuffle
1301 iPod Shuffle 2.Gen
1302 iPod Shuffle 3.Gen
@@ -5867,7 +5931,9 @@
8502 Built-in iSight
8505 Built-in iSight
8507 Built-in iSight
+ 911c Hub in A1082 [Cinema HD Display 23"]
912f Hub in 30" Cinema Display
+ 921c A1082 [Cinema HD Display 23"]
9221 30" Cinema Display
ffff Bluetooth in DFU mode - Driver
05ad Y.C. Cable U.S.A., Inc.
@@ -6282,6 +6348,7 @@
0712 Delkin Mass Storage Device
0715 USB 2.0 microSD Reader
0716 USB 2.0 Multislot Card Reader/Writer
+ 0717 All-in-1 Card Reader
0718 IDE/SATA Adapter
0723 GL827L SD/MMC/MS Flash Card Reader
0760 USB 2.0 Card Reader/Writer
@@ -6290,7 +6357,7 @@
07a0 Pen Flash
0880 Wasp (SL-6612)
0927 Card Reader
- 1205 Afilias Optical Mouse H3003
+ 1205 Afilias Optical Mouse H3003 / Trust Optical USB MultiColour Mouse MI-2330
a700 Pen Flash
f102 VX7012 TV Box
f103 VX7012 TV Box
@@ -6380,6 +6447,7 @@
060a Worthington Data Solutions, Inc.
060b Solid Year
0001 MacAlly Keyboard
+ 0230 KSK-8003 UX Keyboard
1006 Japanese Keyboard - 260U
2101 Keyboard
2231 KSK-6001 UELX Keyboard
@@ -6452,6 +6520,7 @@
0631 JUJO Electronics Corp.
0633 Cyrix Corp.
0634 Micron Technology, Inc.
+ 0655 Embedded Mass Storage Drive [RealSSD]
0635 Methode Electronics, Inc.
0636 Sierra Imaging, Inc.
0003 Vivicam 35Xx
@@ -6547,15 +6616,15 @@
0662 Kansai Electric Co., Ltd
0663 Topmax Electronic Co., Ltd
0103 CobraPad
-0664 Groovy Technology Corp.
- 0301 GTouch Touch Screen
- 0302 GTouch Touch Screen
- 0303 GTouch Touch Screen
- 0304 GTouch Touch Screen
- 0305 GTouch Touch Screen
- 0306 GTouch Touch Screen
- 0307 GTouch Touch Screen
- 0309 GTouch Touch Screen
+0664 ET&T Technology Co., Ltd.
+ 0301 Groovy Technology Corp. GTouch Touch Screen
+ 0302 Groovy Technology Corp. GTouch Touch Screen
+ 0303 Groovy Technology Corp. GTouch Touch Screen
+ 0304 Groovy Technology Corp. GTouch Touch Screen
+ 0305 Groovy Technology Corp. GTouch Touch Screen
+ 0306 Groovy Technology Corp. GTouch Touch Screen
+ 0307 Groovy Technology Corp. GTouch Touch Screen
+ 0309 Groovy Technology Corp. GTouch Touch Screen
0665 Cypress Semiconductor
5161 USB to Serial
0667 Aiwa Co., Ltd
@@ -6877,8 +6946,8 @@
069d Hughes Network Systems (HNS)
0001 Satellite Receiver Device
0002 Satellite Device
-069e Marx
- 0005 CryptoBox v1.2
+069e Welcat Inc.
+ 0005 Marx CryptoBox v1.2
069f Allied Data Technologies BV
0010 Tornado Speakerphone FaxModem 56.0
0011 Tornado Speakerphone FaxModem 56.0
@@ -7264,8 +7333,9 @@
e000 HWGUSB2-54 WLAN
e010 HWGUSB2-54-LB
e020 HWGUSB2-54V2-AP
- e031 Hercules HWNUm-300 Wireless N mini [Realtek RTL8191S]
+ e031 Hercules HWNUm-300 Wireless N mini [Realtek RTL8191SU]
e032 HWGUm-54 [Hercules Wireless G Ultra Mini Key]
+ e033 Hercules HWNUp-150 802.11n Wireless N Pico [Realtek RTL8188CUS]
06f9 ASYST electronic d.o.o.
06fa HSD S.r.L
06fc Motorola Semiconductor Products Sector
@@ -7772,6 +7842,7 @@
fcd6 Freecom HD Classic
fcf6 DataBar 512 MB
fcf8 Freecom Classic SL Network Drive
+ fcfe Hard Drive 80GB
07af Microtech
0004 SCSI-DB25 SCSI Bridge [shuttle]
0005 SCSI-HD50 SCSI Bridge [shuttle]
@@ -7802,7 +7873,7 @@
5101 SurfBoard SB5101 Cable Modem
5120 SurfBoard SB5120 Cable Modem (RNDIS)
5121 Surfboard 5121 Cable Modem
- 7030 Wireless Adapter WU830G
+ 7030 WU830G 802.11bg Wireless Adapter [Envara WiND512]
07b3 Plustek, Inc.
0001 OpticPro 1212U Scanner
0003 Scanner
@@ -7829,6 +7900,7 @@
0b00 SmartPhoto F50
0c03 OpticPro ST64+ Scanner
0c04 Optic Film 7200i scanner
+ 0c0c PL806
0c26 OpticBook 4600 Scanner
0c2b Mobile Office D428 Scanner
07b4 Olympus Optical Co., Ltd
@@ -7953,6 +8025,7 @@
07c5 APG Cash Drawer
07c6 ShareWave, Inc.
0002 Bodega Wireless Access Point
+ 0003 Bodega Wireless Network Adapter
07c7 Powertech Industrial Co., Ltd
07c8 B.U.G., Inc.
0202 MN128-SOHO PAL
@@ -8084,7 +8157,7 @@
3303 DWA-131 802.11n Wireless N Nano Adapter(rev.A1) [Realtek RTL8192SU]
3a07 WUA-2340 RangeBooster G Adapter(rev.A) [Atheros AR5523]
3a08 WUA-2340 RangeBooster G Adapter(rev.A) (no firmware) [Atheros AR5523]
- 3a09 DWA-160 Xtreme N Dual Band USB Adapter(rev.A2) [Atheros AR9001U-(2)NG]
+ 3a09 DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A2) [Atheros AR9170+AR9104]
3a0d DWA-120 802.11g Wireless 108G Adapter [Atheros AR5523]
3a0f DWA-130 802.11n Wireless N Adapter(rev.D) [Atheros AR9001U-(2)NG]
3a10 DWA-126 802.11n Wireless Adapter [Atheros AR9271]
@@ -8098,14 +8171,14 @@
3c09 DWA-140 RangeBooster N Adapter(rev.B1) [Ralink RT2870]
3c0a DWA-140 RangeBooster N Adapter(rev.B2) [Ralink RT2870]
3c0b DWA-110 Wireless G USB Adapter(rev.B)
- 3c0d DWA-125 Wireless N 150 Adapter(rev.A1) [Ralink RT2870]
+ 3c0d DWA-125 Wireless N 150 Adapter(rev.A1) [Ralink RT3070]
3c0e WUA-2340 RangeBooster G Adapter(rev.B) [Ralink RT2070]
3c0f AirPlus G DWL-G122 Wireless Adapter(rev.E) [Ralink RT2870]
- 3c10 DWA-160 Xtreme N Dual Band USB Adapter(rev.A) [Atheros AR9001U-(2)NG]
+ 3c10 DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A1) [Atheros AR9170+AR9104]
3c11 DWA-160 Xtreme N Dual Band USB Adapter(rev.B) [Ralink RT2870]
3c13 DWA-130 802.11n Wireless N Adapter(rev.B) [Ralink RT2870]
3c15 DWA-140 RangeBooster N Adapter(rev.B3) [Ralink RT2870]
- 3c16 DWA-125 Wireless N 150 Adapter(rev.A2) [Ralink RT2870]
+ 3c16 DWA-125 Wireless N 150 Adapter(rev.A2) [Ralink RT3070]
3e02 DWM-156 3.75G HSUPA Adapter
5100 Remote NDIS Device
a800 DWM-152 3.75G HSUPA Adapter
@@ -8344,14 +8417,15 @@
5f00 WPN111 802.11g Wireless Adapter [Atheros AR5523]
6a00 WG111v2 54 Mbps Wireless [RealTek RTL8187L]
7100 WN121T RangeMax Next Wireless-N [Marvell TopDog]
- 9000 WN111(v1) RangeMax Next Wireless [Marvell TopDog]
- 9001 WN111(v2) RangeMax Next Wireless [Atheros AR9001U-(2)NG]
- 9010 WNDA3100(v1) 802.11n [Atheros AR9001U-(2)NG]
- 9011 WNDA3100(v2) 802.11n [Broadcom BCM4323]
+ 9000 WN111(v1) RangeMax Next Wireless [Marvell 88W8362+88W8060]
+ 9001 WN111(v2) RangeMax Next Wireless [Atheros AR9170+AR9101]
+ 9010 WNDA3100v1 802.11abgn [Atheros AR9170+AR9104]
+ 9011 WNDA3100v2 802.11abgn [Broadcom BCM4323]
9018 WNDA3200 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]
9020 WNA3100(v1) Wireless-N 300 [Broadcom BCM43231]
9030 WNA1100 Wireless-N 150 [Atheros AR9271]
- 9040 WNA1000 Wireless-N 150 [Atheros AR9001U-(2)NG]
+ 9040 WNA1000 Wireless-N 150 [Atheros AR9170+AR9101]
+ 9041 WNA1000M 802.11bgn [Realtek RTL8188CUS]
a001 PA101 10 Mbps HPNA Home Phoneline RJ-1
084d Minton Optic Industry Co., Inc.
0001 Jenoptik JD800i
@@ -8436,6 +8510,8 @@
1012 USB2DECT (FlashLoad)
1013 Eumex 704PC LAN
1014 Eumex 704PC LAN (FlashLoad)
+ 1019 Eumex 504 SE
+ 101a Eumex 504 SE (Flash-Mode)
1021 OpenCom 40
1022 OpenCom 40 (FlashLoad)
1023 OpenCom 45
@@ -8447,7 +8523,10 @@
1032 OpenCom 40 [FlashLoad]
1033 OpenCom 30 plus
1034 OpenCom 30 plus (FlashLoad)
- 1055 Eumex 220 ISDN TA
+ 1041 Eumex 220PC
+ 1042 Eumex 220PC (FlashMode)
+ 1055 Eumex 220 Version 2 ISDN TA
+ 1056 Eumex 220 Version 2 ISDN TA (Flash-Mode)
2000 OpenCom 1000
086e System TALKS, Inc.
1920 SGC-X2UL
@@ -8768,7 +8847,7 @@
0373 Silicon Motion Camera
037a Silicon Motion Camera
037b Silicon Motion Camera
- 1000 Flash Drive
+ 1000 64MB QDI U2 DISK
1132 5-in-1 Card Reader
337b Silicon Motion Camera
3710 Silicon Motion Camera
@@ -8785,6 +8864,7 @@
090f Fujitsu Devices, Inc.
0910 Alation Systems, Inc.
0911 Philips Speech Processing
+ 149a SpeechMike II Pro Plus LFH5276
2512 SpeechMike Pro
0912 Voquette, Inc.
0915 GlobeSpan, Inc.
@@ -8838,6 +8918,8 @@
0922 Dymo-CoStar Corp.
0007 LabelWriter 330
0009 LabelWriter 310
+ 001a LabelWriter 400 Turbo
+ 0020 LabelWriter 450
0923 IC Media Corp.
010f SIIG MobileCam
0924 Xerox
@@ -9026,7 +9108,7 @@
1607 DataTraveler 100
1613 DataTraveler DT101C Flash Drive
1616 Kingston DataTraveler Locker (4GB)
- 1624 DataTraveler G2
+ 1624 DataTraveler G2 4GB Pen Drive
1625 DataTraveler 101 II
162a DataTraveler 112 4GB Pen Drive
1643 DataTraveler G3 4GB
@@ -9064,6 +9146,7 @@
0979 Jeilin Technology Corp., Ltd
0224 JL2005A Toy Camera
0226 JL2005A Toy Camera
+ 0227 JL2005B/C/D Toy Camera
097a Minds At Work LLC
0001 Digital Wallet
097b Knudsen Engineering, Ltd
@@ -9127,6 +9210,7 @@
09c3 ActivCard, Inc.
0007 Reader V2
0008 ZFG-9800-AC SmartCard Reader
+ 0014 ActivIdentity ActivKey SIM USB Token
09c4 ACTiSYS Corp.
0011 ACT-IR2000U IrDA Dongle
09c5 Memory Corp.
@@ -9152,6 +9236,7 @@
022b Wireless Mouse (Battery Free)
024f RF Receiver and G6-20D Wireless Optical Mouse
032b Wireless Mouse (Battery Free)
+ 8090 X-718BK Oscar Optical Gaming Mouse
9090 XL-750BK Laser Mouse
09db Measurement Computing Corp.
0075 MiniLab 1008
@@ -9305,6 +9390,7 @@
5025 Mass Storage Device
0a4b Fujitsu Media Devices, Ltd
0a4c Computex Co., Ltd
+ 15d9 OPTICAL MOUSE
0a4d Evolution Electronics, Ltd
0064 MK-225 Driver
0065 MK-225C Driver
@@ -9576,7 +9662,7 @@
0630 ID TECH Spectrum III Mag-Only Insert Reader (SPT3-355 Series) USB-CDC
0ace ZyDAS
1201 ZD1201 802.11b
- 1211 ZEW 2501 802.11bg Wireless Adapter
+ 1211 ZD1211 802.11g
1215 ZD1211B 802.11g
1221 ZD1221 802.11n
1602 ZyXEL Omni FaxModem 56K
@@ -9647,8 +9733,8 @@
0b00 INGENICO
0b05 ASUSTek Computer, Inc.
1101 Mass Storage (UISDMC4S)
- 1706 WL-167G v1 802.11g Adapter [Ralink RT2500USB]
- 1707 WL-167G v1 802.11g Adapter [Ralink RT2500USB]
+ 1706 WL-167G v1 802.11g Adapter [Ralink RT2571]
+ 1707 WL-167G v1 802.11g Adapter [Ralink RT2571]
1708 Mass Storage Device
170b Mass Storage Device
170c WL-159g 802.11bg
@@ -9660,7 +9746,7 @@
171b A9T wireless 802.11bg
171c 802.11b/g Wireless Network Adapter
171f My Cinema U3000 Mini [DiBcom DiB7700P]
- 1723 WL-167G v2 802.11g Adapter [Ralink RT73]
+ 1723 WL-167G v2 802.11g Adapter [Ralink RT2571W]
1724 RT2573
1726 Laptop OLED Display
172a ASUS 802.11n Network Adapter
@@ -9679,7 +9765,9 @@
1774 Gobi Wireless Modem (QDL mode)
1776 Gobi Wireless Modem
1779 My Cinema U3100 Mini Plus [AF9035A]
- 1784 USB-N13 802.11n Network Adapter [Ralink RT2870]
+ 1784 USB-N13 802.11n Network Adapter [Ralink RT3072]
+ 1786 USB-N10 802.11n Network Adapter [Realtek RTL8192SU]
+ 1791 WL-167G v3 802.11n Adapter [Realtek RTL8188SU]
6101 Cable Modem
620a Remote NDIS Device
b700 Broadcom Bluetooth 2.1
@@ -9698,6 +9786,7 @@
0b10 Pcally
0b11 I Tech Solutions Co., Ltd
0b1e Electronic Warfare Assoc., Inc. (EWA)
+ 8007 Blackhawk USB560-BP JTAG Emulator
0b1f Insyde Software Corp.
0b20 TransDimension, Inc.
0b21 Yokogawa Electric Corp.
@@ -9713,6 +9802,7 @@
0020 ShuttleXpress
0b37 Hitachi ULSI Systems Co., Ltd
0b38 Gear Head
+ 0003 Keyboard
0010 107-Key Keyboard
0b39 Omnidirectional Control Technology, Inc.
0001 Composite USB PS2 Converter
@@ -10058,7 +10148,8 @@
0c99 Desire (debug)
0c9e Incredible
0ca2 Desire HD (debug mode)
- 0ff9 Desire / Desire HD / Hero
+ 0ff8 Desire HD (Tethering Mode)
+ 0ff9 Desire / Desire HD / Hero (Charge Mode)
0ffe Desire HD (modem mode)
0fff Android Fastboot Bootloader
0bb5 Murata Manufacturing Co., Ltd
@@ -10116,6 +10207,7 @@
0116 Mass Storage Device
0117 Mass Storage Device
0118 Mass Storage Device
+ 0138 Card reader
0151 Mass Storage Device (Multicard Reader)
0152 Mass Storage Device
0153 Mass Storage Device
@@ -10134,7 +10226,7 @@
8150 RTL8150 Fast Ethernet Adapter
8151 RTL8151 Adapteon Business Mobile Networks BV
8171 RTL8188SU 802.11n WLAN Adapter
- 8172 RTL8191S WLAN Adapter
+ 8172 RTL8191SU 802.11n WLAN Adapter
8176 RTL8188CUS 802.11n WLAN
8187 RTL8187 Wireless Adapter
8189 RTL8187B Wireless 802.11g 54Mbps Network Adapter
@@ -10181,8 +10273,12 @@
1001 Fujitsu Pocket Loox 600 PDA
1006 SmartCard Reader 2A
1007 Connect2Air E-5400 802.11g Wireless Adapter
- 1009 Name: Connect2Air E-5400 D1700 802.11g Wireless Adapter [Intersil ISL3887]
+ 1009 Connect2Air E-5400 D1700 802.11g Wireless Adapter [Intersil ISL3887]
100f miniCard D2301 802.11bg Wireless Module [SiS 163U]
+0bfd Kvaser AB
+ 0004 USBcan II
+ 000b Leaf Light HS
+ 000e Leaf SemiPro HS
0c04 MOTO Development Group, Inc.
0c05 Appian Graphics
0c06 Hasbro Games, Inc.
@@ -10398,6 +10494,8 @@
63f8 Sonix Integrated Webcam
6409 Webcam
6417 Integrated Webcam
+ 641d 1.3 MPixel Integrated Webcam
+ 6480 Sonix 1.3 MP Laptop Integrated Webcam
8000 DC31VC
8006 Dual Mode Camera (8006 VGA)
800a Vivitar Vivicam3350B
@@ -10430,6 +10528,8 @@
0c67 Concept Telecom, Ltd
0c70 MCT Elektronikladen
0000 USB08 Development board
+0c72 PEAK System
+ 000c PCAN-USB
0c74 Optronic Laboratories Inc.
0002 OL 700-30 Goniometer
0c76 JMTek, LLC.
@@ -10545,8 +10645,10 @@
0055 Cinergy T XE (Version 1, AF9005)
005c Cinergy T²
0069 Cinergy T XE (Version 2, AF9015)
+ 006b Cinergy HT PVR (EU)
0072 Cinergy Hybrid T
0077 Aureon Dual USB
+ 0078 Cinergy T XXS
0086 Cinergy Hybrid XE
0097 Cinergy T RC MKII
00a5 Cinergy Hybrid Stick
@@ -10600,11 +10702,13 @@
0005 AR5523
0006 AR5523 (no firmware)
1001 Thomson TG121N [Atheros AR9001U-(2)NG]
- 1002 TP-Link TL-WN821N v2 [Atheros AR9001U-(2)NG]
+ 1002 TP-Link TL-WN821N v2 802.11n [Atheros AR9170]
1006 TP-Link TL-WN322G v3 / TL-WN422G v2 802.11g [Atheros AR9271]
1010 3Com 3CRUSBN275 802.11abgn Wireless Adapter [Atheros AR9170]
- 3000 AR3011
- 7015 TP-Link TL-WN821N
+ 20ff Virtual CD-ROM
+ 3000 AR3011 Bluetooth (no firmware)
+ 3005 AR3011 Bluetooth
+ 7015 TP-Link TL-WN821N v3 802.11n [Atheros AR7010+AR9287]
9170 AR9170 802.11n
9271 AR9271 802.11n
b002 Ubiquiti WiFiStation 802.11n [Atheros AR9271]
@@ -10934,7 +11038,7 @@
0dbc A&D Medical
0003 AND Serial Cable [AND Smart Cable]
0dbe Jiuh Shiuh Precision Industry Co., Ltd
-0dbf Quik Tech Solutions
+0dbf Jess-Link International
0002 SmartDongle Security Key
0200 HDD Storage Solution
021b USB-2.0 IDE Adapter
@@ -11035,15 +11139,15 @@
003d WL-324 Wireless USB Adapter 300N
003e WL-343 Wireless USB Adapter 150N X1
003f WL-608 Wireless USB Adapter 54g
- 0040 WL-344 Wireless USB Adapter 300N X2
+ 0040 WL-344 Wireless Adapter 300N X2 [Ralink RT3071]
0041 WL-329 Wireless Dualband USB adapter 300N
0042 WL-345 Wireless USB adapter 300N X3
0045 WL-353 Wireless USB Adapter 150N Nano
0047 WL-352v1 Wireless USB Adapter 300N 002
- 0048 WL-349v1 Wireless USB Adapter 150N 002
+ 0048 WL-349v1 Wireless Adapter 150N 002 [Ralink RT3070]
004a WL-358v1 Wireless Micro USB Adapter 300N X3 002
004b WL-349v3 Wireless Micro Adapter 150N X1 [Realtek RTL8192SU]
- 004c WL-352 802.11n Adapter [realtek rtl8191s]
+ 004c WL-352 802.11n Adapter [Realtek RTL8191SU]
0050 WL-349v4 Wireless Micro Adapter 150N X1 [Ralink RT3370]
061c LN-028 Network USB 2.0 Adapter
21f4 44 St Bluetooth Device
@@ -11501,11 +11605,21 @@
e0f3 W595
e112 W995 Phone (Mass Storage)
e12e X10i Phone
+ e14f Xperia Arc
0fcf Dynastream Innovations, Inc.
0fd0 Tulip Computers B.V.
0fd1 Giant Electronics Ltd.
0fd4 Tenovis GmbH & Co., KG
0fd5 Direct Access Technology, Inc.
+0fd9 Elgato Systems GmbH
+ 0011 EyeTV Diversity
+ 0018 EyeTV Hybrid
+ 0020 EyeTV DTT Deluxe
+ 0021 EyeTV DTT
+ 002a EyeTV Sat
+ 002c EyeTV DTT Deluxe v2
+ 0033 Video Capture
+ 0037 Video Capture v2
0fdc Micro Plus
0fe4 IN-Tech Electronics, Ltd
0fe5 Greenconn (U.S.A.), Inc.
@@ -11532,6 +11646,7 @@
1000 Speed Tech Corp.
1001 Ritronics Components (S) Pte., Ltd
1003 Sigma Corp.
+ 0003 SD14
0100 Sigma SD10
1004 LG Electronics, Inc.
1fae U8120 3G Cellphone
@@ -11677,6 +11792,7 @@
071a My Passport 1TB
0900 MyBook Essential External HDD
0901 MyBook External HDD
+ 0903 My Book Premium Edition
0910 MyBook Essential External HDD
1001 External Hard Disk [Elements]
1021 Elements 2TB
@@ -12119,7 +12235,10 @@
125c Apogee Inc.
0010 Alta series CCD
125f A-DATA Technology Co., Ltd.
+ 312a Superior S102
+ a91a Portable HDD CH91
c81a Flash drive
+ c93a Flash drive
1260 Standard Microsystems Corp.
ee22 SMC2862W-G v3 EZ Connect 802.11g Adapter [Intersil ISL3887]
1264 Covidien Energy-based Devices
@@ -12141,6 +12260,23 @@
1275 Xaxero Marine Software Engineering, Ltd.
0002 WeatherFax 2000 Demodulator
0080 SkyEye Weather Satellite Receiver
+1278 Starlight Xpress
+ 0105 SXV-M5
+ 0107 SXV-M7
+ 0109 SXV-M9
+ 0110 SXVF-H16
+ 0115 SXVF-H5
+ 0119 SXV-H9
+ 0135 SXVF-H35
+ 0136 SXVF-H36
+ 0200 SXV interface for paraller MX cameras
+ 0305 SXV-M5C
+ 0307 SXV-M7C
+ 0319 SXV-H9C
+ 0325 SXV-M25C
+ 0326 SXVR-M26C
+ 0507 Lodestar autoguider
+ 0517 CoStar
1283 zebris Medical GmbH
0100 USB-RS232 Adaptor
0110 CMS20
@@ -12185,8 +12321,8 @@
0006 Teleprompter Two-button Hand Control (v1)
0008 Teleprompter Foot Control (v1)
12d1 Huawei Technologies Co., Ltd.
- 1001 E620 USB Modem
- 1003 E220 HSDPA Modem / E230/E270 HSDPA/HSUPA Modem
+ 1001 E169/E620/E800 HSDPA Modem
+ 1003 E220 HSDPA Modem / E230/E270/E870 HSDPA/HSUPA Modem
1009 U120
1010 ETS2252+ CDMA Fixed Wireless Terminal
1037 Ideos
@@ -12195,6 +12331,10 @@
140b EC1260 Wireless Data Modem HSD USB Card
1446 E1552 (HSPA modem)
1501 Pulse
+ 1505 E398 LTE/UMTS/GSM Modem/Networkcard
+ 1506 E398 LTE/UMTS/GSM Modem/Networkcard
+ 1520 K3765 HSPA
+ 1521 K4505 HSPA+
380b WiMAX USB modem(s)
12d2 LINE TECH INDUSTRIAL CO., LTD.
12d6 EMS Dr. Thomas Wuensche
@@ -12216,6 +12356,7 @@
1307 Transcend Information, Inc.
0163 256MB/512MB/1GB Flash Drive
0165 2GB/4GB Flash Drive
+ 0330 63-in-1 Multi-Card Reader/Writer
0361 CR-75: 51-in-1 Card Reader/Writer
1169 TS2GJF210 JetFlash 210 2GB
1171 Fingerprint Reader
@@ -12315,10 +12456,11 @@
5f01 WPN111 (no firmware)
6e00 WPNT121 802.11g 240Mbps Wireless Adapter [Airgo AGN300]
138a Validity Sensors, Inc.
- 0001 VFS101 Fingeprint Reader
+ 0001 VFS101 Fingerprint Reader
0005 VFS301 Fingerprint Reader
- 0007 VFS451 Fingeprint Reader
- 0008 VFS300 Fingeprint Reader
+ 0007 VFS451 Fingerprint Reader
+ 0008 VFS300 Fingerprint Reader
+ 0011 VFS5011 Fingerprint Reader
138e Jungo LTD
9000 Raisonance S.A. STM32 ARM evaluation board
1390 TOMTOM B.V.
@@ -12351,8 +12493,8 @@
0023 WUSB54GR
0024 WUSBF54G v1.1 802.11bg
0026 WUSB54GSC v1 802.11g Adapter [Broadcom 4320 USB]
- 002f AE1000 v1 802.11n [Ralink RT2870]
- 0031 AM10 v1 802.11n [Ralink RT2870]
+ 002f AE1000 v1 802.11n [Ralink RT3572]
+ 0031 AM10 v1 802.11n [Ralink RT3072]
13b1 WUSB200: Wireless-G Business Network Adapter with Rangebooster
13b2 Alesis
0030 Multimix 8
@@ -12408,11 +12550,13 @@
3274 DVB-T Dongle [RTL2832U]
3282 DVB-T + GPS Minicard [RTL2832U]
3284 Wireless LAN USB Mini-Card
- 3306 WLAN [RTL8191S]
+ 3306 Mediao 802.11n WLAN [Realtek RTL8191SU]
+ 3315 Bluetooth module
5070 Webcam
5111 Integrated Webcam
5115 Integrated Webcam
5116 Integrated Webcam
+ 5702 UVC VGA Webcam
7020 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)
7022 DTV-DVB UDST7022BDA DVB-S Box(Without HID)
13dc ALEREON, INC.
@@ -12550,6 +12694,7 @@
3071 RT3071 Wireless Adapter
3072 RT3072 Wireless Adapter
3572 RT3572 Wireless Adapter
+ 5370 RT5370 Wireless Adapter
9020 RT2500USB Wireless Adapter
9021 RT2501USB Wireless Adapter
1497 Panstrong Company Ltd.
@@ -12590,6 +12735,7 @@
121c microSD card reader
123a SD/MMC/RS-MMC Card Reader
127b SDXC Reader
+ 6116 M6116 SATA Bridge
6600 USB 2.0 IDE DEVICE
6700 Card Reader
6900 Card Reader
@@ -12641,6 +12787,7 @@
2336 Hard Disk Drive
2337 ATA/ATAPI Bridge
2338 JM20337 Hi-Speed USB to SATA & PATA Combo Bridge
+ 2339 JM20339 SATA Bridge
2352 ATA/ATAPI Bridge
2509 JMS539 SuperSpeed SATA II 3.0G Bridge
152e LG (HLDS)
@@ -12650,6 +12797,7 @@
0001 RZ01-020300 Optical Mouse [Diamondback]
0003 Krait Mouse
0007 DeathAdder Mouse
+ 0017 Imperator Mouse
001c RZ01-0036 Optical Gaming Mouse [Abyssus]
0101 Copperhead Mouse
0102 Tarantula Keyboard
@@ -12750,6 +12898,8 @@
15e0 Seong Ji Industrial Co., Ltd.
15e1 RSA
2007 RSA SecurID (R) Authenticator
+15e4 Numark
+ 0024 Mixtrack
15e8 SohoWare
9100 NUB100 Ethernet [pegasus]
9110 10/100 USB Ethernet
@@ -12908,6 +13058,8 @@
164c Matrix Vision GmbH
0101 mvBlueFOX camera (no firmware)
0103 mvBlueFOX camera
+ 0201 mvBlueLYNX-X intelligent camera (bootloader)
+ 0203 mvBlueLYNX-X intelligent camera
1657 Struck Innovative Systeme GmbH
3150 SIS3150 USB2.0 to VME interface
165b Frontier Design Group
@@ -12925,7 +13077,7 @@
0441 IBM Integrated Bluetooth II
0500 BTM200B BlueTooth Adapter
1050 802UIG-1 802.11g Wireless Mini Adapter [Intersil ISL3887]
- 1200 802AIN Wireless N Network Adapter [Atheros AR9001U]
+ 1200 802AIN Wireless N Network Adapter [Atheros AR9170+AR9101]
1441 IBM Integrated Bluetooth II
2441 BMDC-2 IBM Bluetooth III w.56k
3441 IBM Integrated Bluetooth III
@@ -12944,6 +13096,7 @@
a332 DVB-T Dongle [RTL2832U]
1681 Prevo Technologies, Inc.
0001 Tuner's Dashboard
+ 0002 Tubachron
1682 Maxwise Production Enterprise Ltd.
1684 Godspeed Computer Corp.
1685 Delock
@@ -13014,6 +13167,8 @@
03ef free for internal lab use 1007
03f0 free for internal lab use 1008
03f1 free for internal lab use 1009
+ 0477 Teensy Rebootor
+ 0478 Teensy Halfkay Bootloader
05dc shared ID for use with libusb
05dd BlackcatUSB2
05e1 CDC-ACM class devices (modems)
diff --git a/core/vpnc/PKGBUILD b/core/vpnc/PKGBUILD
deleted file mode 100644
index 6cea30a97..000000000
--- a/core/vpnc/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 100076 2010-11-20 04:16:25Z pierre $
-# Maintainer: Thomas Baechler <thomas@archlinux.org>
-
-pkgname=vpnc
-pkgver=0.5.3
-pkgrel=3
-pkgdesc="VPN client for cisco3000 VPN Concentrators"
-url="http://www.unix-ag.uni-kl.de/~massar/vpnc/"
-license=('GPL')
-depends=('libgcrypt' 'openssl' 'iproute2')
-arch=('i686' 'x86_64' 'mips64el')
-source=("http://www.unix-ag.uni-kl.de/~massar/vpnc/$pkgname-$pkgver.tar.gz"
- 'vpnc.conf' 'vpnc.rc')
-backup=('etc/vpnc/default.conf')
-md5sums=('4378f9551d5b077e1770bbe09995afb3'
- 'a3f4e0cc682f437e310a1c86ae198e45'
- 'c5885162ac198eaa36da9a01e7c0c55b')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
-
- # Build hybrid support
- sed -i 's|^#OPENSSL|OPENSSL|g' Makefile
-
- make PREFIX=/usr
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir PREFIX=/usr install
-
- install -D -m644 $srcdir/vpnc.conf $pkgdir/etc/vpnc/default.conf
- install -D -m755 $srcdir/vpnc.rc $pkgdir/etc/rc.d/vpnc
- rm -f $pkgdir/etc/vpnc/vpnc.conf
-}
diff --git a/core/vpnc/vpnc.conf b/core/vpnc/vpnc.conf
deleted file mode 100644
index 914f827fd..000000000
--- a/core/vpnc/vpnc.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-# example vpnc configuration file
-# see vpnc --long-help for details
-
-#Interface name tun0
-#IKE DH Group dh2
-#Perfect Forward Secrecy nopfs
-
-# You may replace this script with something better
-#Script /etc/vpnc/vpnc-script
-# Enable this option for NAT traversal
-#UDP Encapsulate
-
-#IPSec gateway my.gateway.com
-#IPSec ID someid
-#IPSec secret somesecret
-#Xauth username myusername
-#Xauth password mypassword
diff --git a/core/vpnc/vpnc.rc b/core/vpnc/vpnc.rc
deleted file mode 100644
index 972ed3211..000000000
--- a/core/vpnc/vpnc.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Connecting to VPN"
- /usr/sbin/vpnc
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon vpnc
- stat_done
- fi
- ;;
- stop)
- stat_busy "Disconnecting from VPN"
- /usr/sbin/vpnc-disconnect
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon vpnc
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
diff --git a/core/wget/PKGBUILD b/core/wget/PKGBUILD
index 0d627a3e9..3b91a1234 100644
--- a/core/wget/PKGBUILD
+++ b/core/wget/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 135713 2011-08-18 02:10:18Z allan $
+# $Id: PKGBUILD 136829 2011-09-01 21:49:29Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
pkgname=wget
-pkgver=1.13.1
+pkgver=1.13.3
pkgrel=1
pkgdesc="A network utility to retrieve files from the Web"
arch=('i686' 'x86_64' 'mips64el')
@@ -15,7 +15,7 @@ optdepends=('ca-certificates: HTTPS downloads')
backup=('etc/wgetrc')
install=wget.install
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('5c9056fcec2f398111e97be65e8592cc')
+md5sums=('540cbd50909885fe11bd7bc4f75268d1')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"