[arch-commits] Commit in ovmf/repos (testing-any testing-any/PKGBUILD)
Date: Sunday, September 17, 2017 @ 13:45:04 Author: thomas Revision: 305709 archrelease: copy trunk to testing-any Added: ovmf/repos/testing-any/ ovmf/repos/testing-any/PKGBUILD (from rev 305708, ovmf/trunk/PKGBUILD) --+ PKGBUILD | 60 1 file changed, 60 insertions(+) Copied: ovmf/repos/testing-any/PKGBUILD (from rev 305708, ovmf/trunk/PKGBUILD) === --- testing-any/PKGBUILD(rev 0) +++ testing-any/PKGBUILD2017-09-17 13:45:04 UTC (rev 305709) @@ -0,0 +1,60 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=ovmf +pkgver=r22345.bec7a86c70 +epoch=1 +pkgrel=1 +arch=('any') +pkgdesc="Tianocore UEFI firmware for qemu." +url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; +license=('custom') +makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww') +source=('edk2::git+https://github.com/tianocore/edk2#commit=bec7a86c70398e774eb90511d7d5a370e23ad0dd') +sha256sums=('SKIP') +options=(!makeflags) +_toolchain_opt=GCC5 + +pkgver() { + cd "${srcdir}"/edk2 + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +prepare() { + cd "${srcdir}" + # edk2 uses python everywhere, but expects python2 + mkdir -p bin + ln -sf /usr/bin/python2 bin/python +} + +build() { + if [ "$CARCH" != "x86_64" ]; then +error "This package must be built under the x86_64 architecture." +false + fi + export PATH="${srcdir}/bin:$PATH" + cd "${srcdir}/"edk2 + make -C BaseTools + export EDK_TOOLS_PATH="${srcdir}"/edk2/BaseTools + . edksetup.sh BaseTools + + # Set RELEASE target, toolchain and number of build threads + sed "s|^TARGET[ ]*=.*|TARGET = RELEASE|; \ + s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \ + s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = $(nproc)|;" -i Conf/target.txt + # Build OVMF for ia32 + #sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \ + # s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" -i Conf/target.txt + #./BaseTools/BinWrappers/PosixLike/build + # Build OVMF for x64 + sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = X64|; \ + s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc|;" -i Conf/target.txt + ./BaseTools/BinWrappers/PosixLike/build +} + +package() { + #install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ia32/OVMF_CODE.fd + #install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ia32/OVMF_VARS.fd + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/x64/OVMF_CODE.fd + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/x64/OVMF_VARS.fd + install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt +}
[arch-commits] Commit in ovmf/trunk (PKGBUILD)
Date: Sunday, September 17, 2017 @ 13:44:47 Author: thomas Revision: 305708 Disable the ia32 build for now Modified: ovmf/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-09-17 13:35:03 UTC (rev 305707) +++ PKGBUILD2017-09-17 13:44:47 UTC (rev 305708) @@ -42,9 +42,9 @@ s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \ s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = $(nproc)|;" -i Conf/target.txt # Build OVMF for ia32 - sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \ - s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" -i Conf/target.txt - ./BaseTools/BinWrappers/PosixLike/build + #sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \ + # s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" -i Conf/target.txt + #./BaseTools/BinWrappers/PosixLike/build # Build OVMF for x64 sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = X64|; \ s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc|;" -i Conf/target.txt @@ -52,9 +52,9 @@ } package() { - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ia32/ - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ia32/ - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/x64/ - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/x64/ + #install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ia32/OVMF_CODE.fd + #install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ia32/OVMF_VARS.fd + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/x64/OVMF_CODE.fd + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/x64/OVMF_VARS.fd install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt }
[arch-commits] Commit in ovmf/trunk (PKGBUILD)
Date: Sunday, September 17, 2017 @ 13:35:03 Author: thomas Revision: 305707 ovmf: Upgrade to version bec7a86c70, make prepare() idempotent, use upstream file names Modified: ovmf/trunk/PKGBUILD --+ PKGBUILD | 16 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-09-17 10:06:44 UTC (rev 305706) +++ PKGBUILD2017-09-17 13:35:03 UTC (rev 305707) @@ -1,7 +1,7 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=ovmf -pkgver=r21243.3858b4a1ff +pkgver=r22345.bec7a86c70 epoch=1 pkgrel=1 arch=('any') @@ -9,7 +9,7 @@ url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; license=('custom') makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww') -source=('edk2::git+https://github.com/tianocore/edk2#commit=3858b4a1ff09d3243fea8d07bd135478237cb8f7') +source=('edk2::git+https://github.com/tianocore/edk2#commit=bec7a86c70398e774eb90511d7d5a370e23ad0dd') sha256sums=('SKIP') options=(!makeflags) _toolchain_opt=GCC5 @@ -22,8 +22,8 @@ prepare() { cd "${srcdir}" # edk2 uses python everywhere, but expects python2 - mkdir bin - ln -s /usr/bin/python2 bin/python + mkdir -p bin + ln -sf /usr/bin/python2 bin/python } build() { @@ -52,9 +52,9 @@ } package() { - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ovmf_code_ia32.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ovmf_vars_ia32.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ovmf_code_x64.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ovmf_vars_x64.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ia32/ + install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ia32/ + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/x64/ + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/x64/ install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt }
[arch-commits] Commit in lib32-nvidia-utils/repos (3 files)
Date: Tuesday, September 5, 2017 @ 20:34:05 Author: thomas Revision: 255906 db-move: moved lib32-nvidia-utils from [multilib-testing] to [multilib] (x86_64) Added: lib32-nvidia-utils/repos/multilib-x86_64/PKGBUILD (from rev 255904, lib32-nvidia-utils/repos/multilib-testing-x86_64/PKGBUILD) Deleted: lib32-nvidia-utils/repos/multilib-testing-x86_64/ lib32-nvidia-utils/repos/multilib-x86_64/PKGBUILD --+ /PKGBUILD| 114 + multilib-x86_64/PKGBUILD | 114 - 2 files changed, 114 insertions(+), 114 deletions(-) Deleted: multilib-x86_64/PKGBUILD === --- multilib-x86_64/PKGBUILD2017-09-05 20:34:04 UTC (rev 255905) +++ multilib-x86_64/PKGBUILD2017-09-05 20:34:05 UTC (rev 255906) @@ -1,114 +0,0 @@ -# $Id$ -# Maintainer: Thomas Baechler -# Contributor: James Rayner - -_pkgbasename=nvidia-utils -pkgbase=lib32-$_pkgbasename -pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia') -pkgver=384.59 -pkgrel=1 -arch=('x86_64') -url="http://www.nvidia.com/"; -#makedepends=('nvidia-libgl') # To avoid conflict during installation in the build chroot -license=('custom') -options=('!strip') - -_arch='x86' -_pkg="NVIDIA-Linux-${_arch}-${pkgver}" -source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) -sha512sums=('09ceccb8c5bc136bb8ba75b8a15fc0cc08eb3680b6c5233b3dca4a1c55d14461d9adee2c686baff4173c8947c0bbc6dd52fcff5c1715a157015ecf4e802b214b') - -create_links() { -# create soname links -for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do -_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 'SONAME.*: \[\K[^]]*' || true) -_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/') -[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}" -[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}" -done -} - -build() { -sh ${_pkg}.run --extract-only -} - -package_lib32-opencl-nvidia() { -pkgdesc="OpenCL implemention for NVIDIA (32-bit)" -depends=('lib32-zlib' 'lib32-gcc-libs') -optdepends=('opencl-headers: headers necessary for OpenCL development') -provides=('lib32-opencl-driver') - -cd "${_pkg}" - -# OpenCL -install -D -m755 "libnvidia-compiler.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}" -install -D -m755 "libnvidia-opencl.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}" - -create_links - -mkdir -p "${pkgdir}/usr/share/licenses" -ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-opencl-nvidia" -} - -package_lib32-nvidia-utils() { -pkgdesc="NVIDIA drivers utilities (32-bit)" -depends=('lib32-zlib' 'lib32-gcc-libs' 'lib32-libglvnd' 'nvidia-utils') -optdepends=('lib32-opencl-nvidia') -conflicts=('lib32-nvidia-libgl') -provides=('lib32-vulkan-driver' 'lib32-opengl-driver' 'lib32-nvidia-libgl') -replaces=('lib32-nvidia-libgl') - -cd "${_pkg}" - -# GLX extension module for X - useless ? -install -D -m755 "libglx.so.${pkgver}" "${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so.${pkgver}" -ln -s "libglx.so.${pkgver}" "${pkgdir}/usr/lib32/nvidia/xorg/modules/extensions/libglx.so" # X doesn't find glx otherwise -install -D -m755 "libGLX_nvidia.so.${pkgver}" "${pkgdir}/usr/lib32/libGLX_nvidia.so.${pkgver}" -# now in lib32-mesa driver -#ln -s "libGLX_nvidia.so.${pkgver}" "${pkgdir}/usr/lib32/libGLX_indirect.so.0" - -# Wayland stuff -install -D -m755 "libnvidia-egl-wayland.so.1.0.1" "${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1.0.1" -ln -s "libnvidia-egl-wayland.so.1.0.1" "${pkgdir}/usr/lib32/libnvidia-egl-wayland.so.1" - -# OpenGL libraries -install -D -m755 "libEGL_nvidia.so.${pkgver}" "${pkgdir}/usr/lib32/libEGL_nvidia.so.${pkgver}" -install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" "${pkgdir}/usr/lib32/libGLESv1_CM_nvidia.so.${pkgver}" -install -D -m755 "libGLESv2_nvidia.so.${pkgver}" "${pkgdir}/usr/lib32/libGLESv2_nvidia.so.${pkgver}" - -# OpenGL core library -install -D -m755 "libnvidia-glcore.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}" -install -D -m755 "libnvidia-eglcore.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}" -install -D -m755 "libnvidia-glsi.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}" - -# misc -install -D -m755 "libnvidia-ifr.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}" -install -D -m755 "libnvidia-fbc.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}" -install -D -m755 "libnvidia-encode.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}" -install -D -m755 "libnvidia-cfg.so.${pkgver}" "${pkgdir}/usr/lib32/libnvidia-cfg.so.${pkgver}" -install -D -m7
[arch-commits] Commit in nvidia/repos (18 files)
Date: Wednesday, April 5, 2017 @ 17:38:26 Author: thomas Revision: 292172 db-move: moved nvidia from [testing] to [extra] (i686, x86_64) Added: nvidia/repos/extra-i686/PKGBUILD (from rev 292171, nvidia/repos/testing-i686/PKGBUILD) nvidia/repos/extra-i686/fix-abi.patch (from rev 292171, nvidia/repos/testing-i686/fix-abi.patch) nvidia/repos/extra-i686/kernel_4.10.patch (from rev 292171, nvidia/repos/testing-i686/kernel_4.10.patch) nvidia/repos/extra-i686/nvidia.install (from rev 292171, nvidia/repos/testing-i686/nvidia.install) nvidia/repos/extra-x86_64/PKGBUILD (from rev 292171, nvidia/repos/testing-x86_64/PKGBUILD) nvidia/repos/extra-x86_64/fix-abi.patch (from rev 292171, nvidia/repos/testing-x86_64/fix-abi.patch) nvidia/repos/extra-x86_64/kernel_4.10.patch (from rev 292171, nvidia/repos/testing-x86_64/kernel_4.10.patch) nvidia/repos/extra-x86_64/nvidia.install (from rev 292171, nvidia/repos/testing-x86_64/nvidia.install) Deleted: nvidia/repos/extra-i686/PKGBUILD nvidia/repos/extra-i686/fix-abi.patch nvidia/repos/extra-i686/kernel_4.10.patch nvidia/repos/extra-i686/nvidia.install nvidia/repos/extra-x86_64/PKGBUILD nvidia/repos/extra-x86_64/fix-abi.patch nvidia/repos/extra-x86_64/kernel_4.10.patch nvidia/repos/extra-x86_64/nvidia.install nvidia/repos/testing-i686/ nvidia/repos/testing-x86_64/ + /PKGBUILD | 176 /fix-abi.patch | 24 + /kernel_4.10.patch | 764 +++ /nvidia.install| 26 + extra-i686/PKGBUILD| 88 extra-i686/fix-abi.patch | 12 extra-i686/kernel_4.10.patch | 382 --- extra-i686/nvidia.install | 13 extra-x86_64/PKGBUILD | 88 extra-x86_64/fix-abi.patch | 12 extra-x86_64/kernel_4.10.patch | 382 --- extra-x86_64/nvidia.install| 13 12 files changed, 990 insertions(+), 990 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2017-04-05 16:11:29 UTC (rev 292171) +++ extra-i686/PKGBUILD 2017-04-05 17:38:26 UTC (rev 292172) @@ -1,88 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Maintainer: Felix Yan -# Contributor: Thomas Baechler - -pkgbase=nvidia -pkgname=(nvidia nvidia-dkms) -pkgver=378.13 -_extramodules=extramodules-4.10-ARCH -pkgrel=4 -pkgdesc="NVIDIA drivers for linux" -arch=('i686' 'x86_64') -url="http://www.nvidia.com/"; -makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.10' 'linux-headers<4.11') -license=('custom') -options=('!strip') -source=('kernel_4.10.patch') -source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";) -source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) -md5sums=('e81769b830b7a1e60c635e3bbe559f59') -md5sums_i686=('dd1077750af9a067739ec291fb24175f') -md5sums_x86_64=('fe4d25b19a780a690cafc8e3b7c0113f') - -[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" -[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" - -prepare() { -sh "${_pkg}.run" --extract-only -cd "${_pkg}" - -patch -Np1 --no-backup-if-mismatch -i ../kernel_4.10.patch - -cp -a kernel kernel-dkms -cd kernel-dkms -sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf -sed -i 's/__JOBS/`nproc`/' dkms.conf -sed -i 's/__DKMS_MODULES//' dkms.conf -sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\ -DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\ -BUILT_MODULE_NAME[1]="nvidia-uvm"\ -DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\ -BUILT_MODULE_NAME[2]="nvidia-modeset"\ -DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\ -BUILT_MODULE_NAME[3]="nvidia-drm"\ -DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf -} - -build() { -_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" -cd "${_pkg}"/kernel -make SYSSRC=/usr/lib/modules/"${_kernver}/build" module -} - -package_nvidia() { -pkgdesc="NVIDIA drivers for linux" -depends=('linux>=4.10' 'linux<4.11' "nvidia-utils=${pkgver}" 'libgl') -install=nvidia.install - -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \ - "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-modeset.ko" -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \ - "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko" - -if [[ "$CARCH" = "x86_64" ]]; then -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko" -fi - -gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko -install -
[arch-commits] Commit in nvidia/repos (10 files)
Date: Saturday, April 1, 2017 @ 18:19:50 Author: thomas Revision: 291989 archrelease: copy trunk to testing-i686, testing-x86_64 Added: nvidia/repos/testing-i686/ nvidia/repos/testing-i686/PKGBUILD (from rev 291988, nvidia/trunk/PKGBUILD) nvidia/repos/testing-i686/fix-abi.patch (from rev 291988, nvidia/trunk/fix-abi.patch) nvidia/repos/testing-i686/kernel_4.10.patch (from rev 291988, nvidia/trunk/kernel_4.10.patch) nvidia/repos/testing-i686/nvidia.install (from rev 291988, nvidia/trunk/nvidia.install) nvidia/repos/testing-x86_64/ nvidia/repos/testing-x86_64/PKGBUILD (from rev 291988, nvidia/trunk/PKGBUILD) nvidia/repos/testing-x86_64/fix-abi.patch (from rev 291988, nvidia/trunk/fix-abi.patch) nvidia/repos/testing-x86_64/kernel_4.10.patch (from rev 291988, nvidia/trunk/kernel_4.10.patch) nvidia/repos/testing-x86_64/nvidia.install (from rev 291988, nvidia/trunk/nvidia.install) --+ testing-i686/PKGBUILD| 88 testing-i686/fix-abi.patch | 12 + testing-i686/kernel_4.10.patch | 382 + testing-i686/nvidia.install | 13 + testing-x86_64/PKGBUILD | 88 testing-x86_64/fix-abi.patch | 12 + testing-x86_64/kernel_4.10.patch | 382 + testing-x86_64/nvidia.install| 13 + 8 files changed, 990 insertions(+) Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 291988, nvidia/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2017-04-01 18:19:50 UTC (rev 291989) @@ -0,0 +1,88 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase +# Maintainer: Felix Yan +# Contributor: Thomas Baechler + +pkgbase=nvidia +pkgname=(nvidia nvidia-dkms) +pkgver=378.13 +_extramodules=extramodules-4.10-ARCH +pkgrel=5 +pkgdesc="NVIDIA drivers for linux" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/"; +makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.10.8' 'linux-headers<4.11') +license=('custom') +options=('!strip') +source=('kernel_4.10.patch') +source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";) +source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) +md5sums=('e81769b830b7a1e60c635e3bbe559f59') +md5sums_i686=('dd1077750af9a067739ec291fb24175f') +md5sums_x86_64=('fe4d25b19a780a690cafc8e3b7c0113f') + +[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" +[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" + +prepare() { +sh "${_pkg}.run" --extract-only +cd "${_pkg}" + +patch -Np1 --no-backup-if-mismatch -i ../kernel_4.10.patch + +cp -a kernel kernel-dkms +cd kernel-dkms +sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf +sed -i 's/__JOBS/`nproc`/' dkms.conf +sed -i 's/__DKMS_MODULES//' dkms.conf +sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\ +DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\ +BUILT_MODULE_NAME[1]="nvidia-uvm"\ +DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\ +BUILT_MODULE_NAME[2]="nvidia-modeset"\ +DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\ +BUILT_MODULE_NAME[3]="nvidia-drm"\ +DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf +} + +build() { +_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" +cd "${_pkg}"/kernel +make SYSSRC=/usr/lib/modules/"${_kernver}/build" module +} + +package_nvidia() { +pkgdesc="NVIDIA drivers for linux" +depends=('linux>=4.10.8' 'linux<4.11' "nvidia-utils=${pkgver}" 'libgl') +install=nvidia.install + +install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ +"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" +install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \ + "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-modeset.ko" +install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \ + "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko" + +if [[ "$CARCH" = "x86_64" ]]; then +install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \ +"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko" +fi + +gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko +install -d -m755 "${pkgdir}/usr/lib/modprobe.d" + +echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf" +} + +package_nvidia-dkms() { +pkgdesc="NVIDIA driver sources for linux" +depends=('dkms' "nvidia-utils=$pkgver" 'libgl') +optdepends=('linux-headers: Build the module for Arch kernel' +'linux-lts-headers: Build the module for LTS Arch kernel') +conflicts+=('nvidia') + +cd ${_pkg} +install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src} +cp -dr --no-preserve='ownership' k
[arch-commits] Commit in nvidia/trunk (PKGBUILD)
Date: Saturday, April 1, 2017 @ 18:19:06 Author: thomas Revision: 291988 upgpkg: nvidia 378.13-5 Modified: nvidia/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-04-01 16:24:35 UTC (rev 291987) +++ PKGBUILD2017-04-01 18:19:06 UTC (rev 291988) @@ -7,11 +7,11 @@ pkgname=(nvidia nvidia-dkms) pkgver=378.13 _extramodules=extramodules-4.10-ARCH -pkgrel=4 +pkgrel=5 pkgdesc="NVIDIA drivers for linux" arch=('i686' 'x86_64') url="http://www.nvidia.com/"; -makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.10' 'linux-headers<4.11') +makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 'linux-headers>=4.10.8' 'linux-headers<4.11') license=('custom') options=('!strip') source=('kernel_4.10.patch') @@ -53,7 +53,7 @@ package_nvidia() { pkgdesc="NVIDIA drivers for linux" -depends=('linux>=4.10' 'linux<4.11' "nvidia-utils=${pkgver}" 'libgl') +depends=('linux>=4.10.8' 'linux<4.11' "nvidia-utils=${pkgver}" 'libgl') install=nvidia.install install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
[arch-commits] Commit in ovmf/repos/extra-any (3 files)
Date: Saturday, March 4, 2017 @ 13:53:50 Author: thomas Revision: 289981 archrelease: copy trunk to extra-any Added: ovmf/repos/extra-any/PKGBUILD (from rev 289980, ovmf/trunk/PKGBUILD) Deleted: ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch ovmf/repos/extra-any/PKGBUILD ---+ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch | 37 --- PKGBUILD | 117 +- 2 files changed, 60 insertions(+), 94 deletions(-) Deleted: 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch === --- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2017-03-04 13:53:43 UTC (rev 289980) +++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2017-03-04 13:53:50 UTC (rev 289981) @@ -1,37 +0,0 @@ -From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Thomas=20B=C3=A4chler?= -Date: Sat, 1 Mar 2014 20:30:57 +0100 -Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor. - - BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 + - BaseTools/Source/C/VfrCompile/VfrCompiler.h | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -index dd34a1b..77b2cab 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler ( - { - mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND; - mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS; -+ SET_RUN_STATUS(STATUS_UNKNOWN); - - OptionInitialization(Argc, Argv); - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -index ea20bbc..1603961 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.h -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -@@ -60,6 +60,7 @@ typedef struct { - } OPTIONS; - - typedef enum { -+ STATUS_UNKNOWN = 0, - STATUS_INITIALIZED = 1, - STATUS_PREPROCESSED, - STATUS_COMPILEED, --- -1.9.0 - Deleted: PKGBUILD === --- PKGBUILD2017-03-04 13:53:43 UTC (rev 289980) +++ PKGBUILD2017-03-04 13:53:50 UTC (rev 289981) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=ovmf -pkgver=18419 -pkgrel=1 -arch=('any') -pkgdesc="Tianocore UEFI firmware for qemu." -url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; -license=('custom') -makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww') -source=('edk2::git+https://github.com/tianocore/edk2#commit=ddd097e33f6e6829dc0413820e9971f3bf025f87') -sha256sums=('SKIP') -options=(!makeflags) -_toolchain_opt=GCC49 - -pkgver() { - cd "${srcdir}"/edk2 - git svn find-rev HEAD -} - -prepare() { - cd "${srcdir}" - # edk2 uses python everywhere, but expects python2 - mkdir bin - ln -s /usr/bin/python2 bin/python -} - -build() { - if [ "$CARCH" != "x86_64" ]; then -error "This package must be built under the x86_64 architecture." -false - fi - export PATH="${srcdir}/bin:$PATH" - cd "${srcdir}/"edk2 - make -C BaseTools - export EDK_TOOLS_PATH="${srcdir}"/edk2/BaseTools - . edksetup.sh BaseTools - - # Set RELEASE target, toolchain and number of build threads - sed "s|^TARGET[ ]*=.*|TARGET = RELEASE|; \ - s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \ - s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = $(nproc)|;" -i Conf/target.txt - # Build OVMF for ia32 - sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \ - s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc|;" -i Conf/target.txt - ./BaseTools/BinWrappers/PosixLike/build - # Build OVMF for x64 - sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = X64|; \ - s|^ACTIVE_PLATFORM[ ]*=.*|ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc|;" -i Conf/target.txt - ./BaseTools/BinWrappers/PosixLike/build -} - -package() { - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_ia32.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_x64.bin - install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt -} Copied: ovmf/repos/extra-any/PKGBUILD (from rev 289980, ovmf/trunk/PKGBUILD) ===
[arch-commits] Commit in ovmf/trunk (2 files)
Date: Saturday, March 4, 2017 @ 13:53:43 Author: thomas Revision: 289980 upgpkg: ovmf 1:r21243.3858b4a1ff-1 Modified: ovmf/trunk/PKGBUILD Deleted: ovmf/trunk/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch ---+ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch | 37 -- PKGBUILD | 15 ++-- 2 files changed, 9 insertions(+), 43 deletions(-) Deleted: 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch === --- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2017-03-04 12:59:41 UTC (rev 289979) +++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2017-03-04 13:53:43 UTC (rev 289980) @@ -1,37 +0,0 @@ -From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Thomas=20B=C3=A4chler?= -Date: Sat, 1 Mar 2014 20:30:57 +0100 -Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor. - - BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 + - BaseTools/Source/C/VfrCompile/VfrCompiler.h | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -index dd34a1b..77b2cab 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler ( - { - mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND; - mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS; -+ SET_RUN_STATUS(STATUS_UNKNOWN); - - OptionInitialization(Argc, Argv); - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -index ea20bbc..1603961 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.h -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -@@ -60,6 +60,7 @@ typedef struct { - } OPTIONS; - - typedef enum { -+ STATUS_UNKNOWN = 0, - STATUS_INITIALIZED = 1, - STATUS_PREPROCESSED, - STATUS_COMPILEED, --- -1.9.0 - Modified: PKGBUILD === --- PKGBUILD2017-03-04 12:59:41 UTC (rev 289979) +++ PKGBUILD2017-03-04 13:53:43 UTC (rev 289980) @@ -1,7 +1,8 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=ovmf -pkgver=18419 +pkgver=r21243.3858b4a1ff +epoch=1 pkgrel=1 arch=('any') pkgdesc="Tianocore UEFI firmware for qemu." @@ -8,14 +9,14 @@ url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; license=('custom') makedepends=('git' 'python2' 'iasl' 'nasm' 'subversion' 'perl-libwww') -source=('edk2::git+https://github.com/tianocore/edk2#commit=ddd097e33f6e6829dc0413820e9971f3bf025f87') +source=('edk2::git+https://github.com/tianocore/edk2#commit=3858b4a1ff09d3243fea8d07bd135478237cb8f7') sha256sums=('SKIP') options=(!makeflags) -_toolchain_opt=GCC49 +_toolchain_opt=GCC5 pkgver() { cd "${srcdir}"/edk2 - git svn find-rev HEAD + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } prepare() { @@ -51,7 +52,9 @@ } package() { - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_ia32.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_x64.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ovmf_code_ia32.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ovmf_vars_ia32.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_CODE.fd "${pkgdir}"/usr/share/ovmf/ovmf_code_x64.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF_VARS.fd "${pkgdir}"/usr/share/ovmf/ovmf_vars_x64.bin install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt }
[arch-commits] Commit in joe/repos (4 files)
Date: Saturday, March 4, 2017 @ 12:59:41 Author: thomas Revision: 289979 archrelease: copy trunk to extra-i686, extra-x86_64 Added: joe/repos/extra-i686/PKGBUILD (from rev 289978, joe/trunk/PKGBUILD) joe/repos/extra-x86_64/PKGBUILD (from rev 289978, joe/trunk/PKGBUILD) Deleted: joe/repos/extra-i686/PKGBUILD joe/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 56 extra-i686/PKGBUILD | 28 extra-x86_64/PKGBUILD | 28 3 files changed, 56 insertions(+), 56 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2017-03-04 12:59:28 UTC (rev 289978) +++ extra-i686/PKGBUILD 2017-03-04 12:59:41 UTC (rev 289979) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=4.3 -pkgrel=1 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-i686/PKGBUILD (from rev 289978, joe/trunk/PKGBUILD) =========== --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2017-03-04 12:59:41 UTC (rev 289979) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.4 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://joe-editor.sourceforge.net/"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +sha256sums=('a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2017-03-04 12:59:28 UTC (rev 289978) +++ extra-x86_64/PKGBUILD 2017-03-04 12:59:41 UTC (rev 289979) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=4.3 -pkgrel=1 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-x86_64/PKGBUILD (from rev 289978, joe/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2017-03-04 12:59:41 UTC (rev 289979) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.4 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://joe-editor.sourceforge.net/"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +sha256sums=('a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +}
[arch-commits] Commit in joe/trunk (PKGBUILD)
Date: Saturday, March 4, 2017 @ 12:59:28 Author: thomas Revision: 289978 upgpkg: joe 4.4-1 Modified: joe/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-03-04 10:32:11 UTC (rev 289977) +++ PKGBUILD2017-03-04 12:59:28 UTC (rev 289978) @@ -1,11 +1,11 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=joe -pkgver=4.3 +pkgver=4.4 pkgrel=1 pkgdesc="Joe's own editor" arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; +url="http://joe-editor.sourceforge.net/"; license=('GPL') depends=('ncurses') optdepends=('gpm: console mouse support') @@ -12,7 +12,7 @@ backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') +sha256sums=('a5704828bbca29acb9e200414fef522c66cdf9ce28150f402d6767da43460979') build() { cd "${srcdir}"/${pkgname}-${pkgver}
[arch-commits] Commit in linux/repos (26 files)
Date: Friday, October 21, 2016 @ 23:11:34 Author: thomas Revision: 279130 db-move: moved linux from [testing] to [core] (i686, x86_64) Added: linux/repos/core-i686/PKGBUILD (from rev 279129, linux/repos/testing-i686/PKGBUILD) linux/repos/core-i686/change-default-console-loglevel.patch (from rev 279129, linux/repos/testing-i686/change-default-console-loglevel.patch) linux/repos/core-i686/config (from rev 279129, linux/repos/testing-i686/config) linux/repos/core-i686/config.x86_64 (from rev 279129, linux/repos/testing-i686/config.x86_64) linux/repos/core-i686/linux.install (from rev 279129, linux/repos/testing-i686/linux.install) linux/repos/core-i686/linux.preset (from rev 279129, linux/repos/testing-i686/linux.preset) linux/repos/core-x86_64/PKGBUILD (from rev 279129, linux/repos/testing-x86_64/PKGBUILD) linux/repos/core-x86_64/change-default-console-loglevel.patch (from rev 279129, linux/repos/testing-x86_64/change-default-console-loglevel.patch) linux/repos/core-x86_64/config (from rev 279129, linux/repos/testing-x86_64/config) linux/repos/core-x86_64/config.x86_64 (from rev 279129, linux/repos/testing-x86_64/config.x86_64) linux/repos/core-x86_64/linux.install (from rev 279129, linux/repos/testing-x86_64/linux.install) linux/repos/core-x86_64/linux.preset (from rev 279129, linux/repos/testing-x86_64/linux.preset) Deleted: linux/repos/core-i686/PKGBUILD linux/repos/core-i686/change-default-console-loglevel.patch linux/repos/core-i686/config linux/repos/core-i686/config.x86_64 linux/repos/core-i686/linux.install linux/repos/core-i686/linux.preset linux/repos/core-x86_64/PKGBUILD linux/repos/core-x86_64/change-default-console-loglevel.patch linux/repos/core-x86_64/config linux/repos/core-x86_64/config.x86_64 linux/repos/core-x86_64/linux.install linux/repos/core-x86_64/linux.preset linux/repos/testing-i686/ linux/repos/testing-x86_64/ ---+ /PKGBUILD | 604 /change-default-console-loglevel.patch| 22 /config |16414 /config.x86_64|15914 +++ /linux.install| 74 /linux.preset | 28 core-i686/PKGBUILD| 302 core-i686/change-default-console-loglevel.patch | 11 core-i686/config | 8207 -- core-i686/config.x86_64 | 7957 - core-i686/linux.install | 37 core-i686/linux.preset| 14 core-x86_64/PKGBUILD | 302 core-x86_64/change-default-console-loglevel.patch | 11 core-x86_64/config| 8207 -- core-x86_64/config.x86_64 | 7957 - core-x86_64/linux.install | 37 core-x86_64/linux.preset | 14 18 files changed, 33056 insertions(+), 33056 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 279129:279130 to see the changes.
[arch-commits] Commit in linux/repos (14 files)
Date: Thursday, October 20, 2016 @ 18:24:04 Author: thomas Revision: 279060 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux/repos/testing-i686/ linux/repos/testing-i686/PKGBUILD (from rev 279059, linux/trunk/PKGBUILD) linux/repos/testing-i686/change-default-console-loglevel.patch (from rev 279059, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-i686/config (from rev 279059, linux/trunk/config) linux/repos/testing-i686/config.x86_64 (from rev 279059, linux/trunk/config.x86_64) linux/repos/testing-i686/linux.install (from rev 279059, linux/trunk/linux.install) linux/repos/testing-i686/linux.preset (from rev 279059, linux/trunk/linux.preset) linux/repos/testing-x86_64/ linux/repos/testing-x86_64/PKGBUILD (from rev 279059, linux/trunk/PKGBUILD) linux/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 279059, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-x86_64/config (from rev 279059, linux/trunk/config) linux/repos/testing-x86_64/config.x86_64 (from rev 279059, linux/trunk/config.x86_64) linux/repos/testing-x86_64/linux.install (from rev 279059, linux/trunk/linux.install) linux/repos/testing-x86_64/linux.preset (from rev 279059, linux/trunk/linux.preset) --+ testing-i686/PKGBUILD| 302 testing-i686/change-default-console-loglevel.patch | 11 testing-i686/config | 8207 + testing-i686/config.x86_64 | 7957 testing-i686/linux.install | 37 testing-i686/linux.preset| 14 testing-x86_64/PKGBUILD | 302 testing-x86_64/change-default-console-loglevel.patch | 11 testing-x86_64/config| 8207 + testing-x86_64/config.x86_64 | 7957 testing-x86_64/linux.install | 37 testing-x86_64/linux.preset | 14 12 files changed, 33056 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 279059:279060 to see the changes.
[arch-commits] Commit in linux/trunk (PKGBUILD)
Date: Thursday, October 20, 2016 @ 17:33:20 Author: thomas Revision: 279056 Update to linux 4.8.3 Modified: linux/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-10-20 17:32:43 UTC (rev 279055) +++ PKGBUILD2016-10-20 17:33:20 UTC (rev 279056) @@ -5,7 +5,7 @@ pkgbase=linux # Build stock -ARCH kernel #pkgbase=linux-custom # Build kernel with a different name _srcname=linux-4.8 -pkgver=4.8.2 +pkgver=4.8.3 pkgrel=1 arch=('i686' 'x86_64') url="http://www.kernel.org/"; @@ -25,7 +25,7 @@ sha256sums=('3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a' 'SKIP' -'edb6e8022172df2b020b53e1cfa32bcde070f3119a6618766066098c46008a9b' +'1482dd7bda0a3a82abcde20f24576a57287c462e8e732fe688ed37daf42468cb' 'SKIP' '2ac8818414beb7dbacbd3ad450c516e6ada804827132a7132f63b8189e5f5151' '93a4ad4f6c7bb9296fddec436ed7477a5a5c11cf4d6e68482fa6610442cbcb1f'
[arch-commits] Commit in irssi/repos (4 files)
Date: Wednesday, September 21, 2016 @ 21:37:12 Author: thomas Revision: 276817 archrelease: copy trunk to extra-i686, extra-x86_64 Added: irssi/repos/extra-i686/PKGBUILD (from rev 276816, irssi/trunk/PKGBUILD) irssi/repos/extra-x86_64/PKGBUILD (from rev 276816, irssi/trunk/PKGBUILD) Deleted: irssi/repos/extra-i686/PKGBUILD irssi/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 72 extra-i686/PKGBUILD | 33 -- extra-x86_64/PKGBUILD | 33 -- 3 files changed, 72 insertions(+), 66 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2016-09-21 21:36:16 UTC (rev 276816) +++ extra-i686/PKGBUILD 2016-09-21 21:37:12 UTC (rev 276817) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Giovanni Scafora -# Contributor: Dan McGee - -pkgname=irssi -pkgver=0.8.19 -pkgrel=2 -pkgdesc="Modular text mode IRC client with Perl scripting" -arch=('i686' 'x86_64') -url="http://irssi.org/"; -license=('GPL') -depends=('glib2' 'openssl') -optdepends=('perl-libwww: for the scriptassist script') -backup=('etc/irssi.conf') -source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";) -md5sums=('98c0d15c8f752a595520d817e1cb5667') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr \ - --enable-ipv6 \ - --with-proxy \ - --sysconfdir=/etc \ - --with-perl-lib=vendor - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install -} Copied: irssi/repos/extra-i686/PKGBUILD (from rev 276816, irssi/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2016-09-21 21:37:12 UTC (rev 276817) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Dan McGee + +pkgname=irssi +pkgver=0.8.20 +pkgrel=1 +pkgdesc="Modular text mode IRC client with Perl scripting" +arch=('i686' 'x86_64') +url="http://irssi.org/"; +license=('GPL') +depends=('glib2' 'openssl') +optdepends=('perl-libwww: for the scriptassist script') +backup=('etc/irssi.conf') +source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"; + "https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";) +md5sums=('67d48c5feec2d3b949d088aa4abc3601' + 'SKIP') +validpgpkeys=('7EE65E3082A5FB06AC7C368D00CCB587DDBEF0E1') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --enable-ipv6 \ + --with-proxy \ + --sysconfdir=/etc \ + --with-perl-lib=vendor + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2016-09-21 21:36:16 UTC (rev 276816) +++ extra-x86_64/PKGBUILD 2016-09-21 21:37:12 UTC (rev 276817) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Giovanni Scafora -# Contributor: Dan McGee - -pkgname=irssi -pkgver=0.8.19 -pkgrel=2 -pkgdesc="Modular text mode IRC client with Perl scripting" -arch=('i686' 'x86_64') -url="http://irssi.org/"; -license=('GPL') -depends=('glib2' 'openssl') -optdepends=('perl-libwww: for the scriptassist script') -backup=('etc/irssi.conf') -source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";) -md5sums=('98c0d15c8f752a595520d817e1cb5667') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr \ - --enable-ipv6 \ - --with-proxy \ - --sysconfdir=/etc \ - --with-perl-lib=vendor - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install -} Copied: irssi/repos/extra-x86_64/PKGBUILD (from rev 276816, irssi/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2016-09-21 21:37:12 UTC (rev 276817) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Dan McGee + +pkgname=irssi +pkgver=0.8.20 +pkgrel=1 +pkgdesc="Modular text mode IRC client with Perl scripting" +arch=('i686' 'x86_64') +url="http://irssi.org/"; +license=('GPL') +depends=('glib2' 'openssl') +optdepends=('perl-libwww: for the scriptassist script') +backup=('etc/irssi.conf') +source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"; + "https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";) +md5sums=('67d48c5feec2d3b949d088aa4abc3601' + 'SKIP') +validpgpkeys=('7EE65E3082A5FB06AC7C368D00CCB587DDBEF0E1')
[arch-commits] Commit in irssi/trunk (PKGBUILD)
Date: Wednesday, September 21, 2016 @ 21:32:37 Author: thomas Revision: 276814 Upgrade irssi to 0.8.20 Modified: irssi/trunk/PKGBUILD --+ PKGBUILD | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-09-21 21:32:23 UTC (rev 276813) +++ PKGBUILD2016-09-21 21:32:37 UTC (rev 276814) @@ -3,8 +3,8 @@ # Contributor: Dan McGee pkgname=irssi -pkgver=0.8.19 -pkgrel=2 +pkgver=0.8.20 +pkgrel=1 pkgdesc="Modular text mode IRC client with Perl scripting" arch=('i686' 'x86_64') url="http://irssi.org/"; @@ -12,8 +12,11 @@ depends=('glib2' 'openssl') optdepends=('perl-libwww: for the scriptassist script') backup=('etc/irssi.conf') -source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";) -md5sums=('98c0d15c8f752a595520d817e1cb5667') +source=("https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"; + "https://github.com/irssi/irssi/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";) +md5sums=('67d48c5feec2d3b949d088aa4abc3601' + 'SKIP') +validpgpkeys=('7EE65E3082A5FB06AC7C368D00CCB587DDBEF0E1') build() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in joe/repos (4 files)
Date: Friday, September 16, 2016 @ 12:22:40 Author: thomas Revision: 276537 archrelease: copy trunk to extra-i686, extra-x86_64 Added: joe/repos/extra-i686/PKGBUILD (from rev 276536, joe/trunk/PKGBUILD) joe/repos/extra-x86_64/PKGBUILD (from rev 276536, joe/trunk/PKGBUILD) Deleted: joe/repos/extra-i686/PKGBUILD joe/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 56 extra-i686/PKGBUILD | 29 extra-x86_64/PKGBUILD | 29 3 files changed, 56 insertions(+), 58 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2016-09-16 12:22:30 UTC (rev 276536) +++ extra-i686/PKGBUILD 2016-09-16 12:22:40 UTC (rev 276537) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=4.0 -pkgrel=2 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('3c3b6d5089a29ddc746ee89bab59286e') -sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-i686/PKGBUILD (from rev 276536, joe/trunk/PKGBUILD) ======= --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2016-09-16 12:22:40 UTC (rev 276537) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.3 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/joe-editor"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2016-09-16 12:22:30 UTC (rev 276536) +++ extra-x86_64/PKGBUILD 2016-09-16 12:22:40 UTC (rev 276537) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=4.0 -pkgrel=2 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('3c3b6d5089a29ddc746ee89bab59286e') -sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-x86_64/PKGBUILD (from rev 276536, joe/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2016-09-16 12:22:40 UTC (rev 276537) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.3 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/joe-editor"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +}
[arch-commits] Commit in joe/trunk (PKGBUILD)
Date: Friday, September 16, 2016 @ 12:22:30 Author: thomas Revision: 276536 upgpkg: joe 4.3-1 Modified: joe/trunk/PKGBUILD --+ PKGBUILD |7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-09-16 12:08:43 UTC (rev 276535) +++ PKGBUILD2016-09-16 12:22:30 UTC (rev 276536) @@ -1,8 +1,8 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=joe -pkgver=4.0 -pkgrel=2 +pkgver=4.3 +pkgrel=1 pkgdesc="Joe's own editor" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/joe-editor"; @@ -12,8 +12,7 @@ backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('3c3b6d5089a29ddc746ee89bab59286e') -sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') +sha256sums=('985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1') build() { cd "${srcdir}"/${pkgname}-${pkgver}
[arch-commits] Commit in cryptsetup/repos (24 files)
Date: Sunday, February 21, 2016 @ 15:29:32 Author: thomas Revision: 260123 archrelease: copy trunk to testing-i686, testing-x86_64 Added: cryptsetup/repos/testing-i686/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch (from rev 260122, cryptsetup/trunk/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch) cryptsetup/repos/testing-i686/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch (from rev 260122, cryptsetup/trunk/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch) cryptsetup/repos/testing-i686/PKGBUILD (from rev 260122, cryptsetup/trunk/PKGBUILD) cryptsetup/repos/testing-i686/encrypt_hook (from rev 260122, cryptsetup/trunk/encrypt_hook) cryptsetup/repos/testing-i686/encrypt_install (from rev 260122, cryptsetup/trunk/encrypt_install) cryptsetup/repos/testing-i686/sd-encrypt (from rev 260122, cryptsetup/trunk/sd-encrypt) cryptsetup/repos/testing-x86_64/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch (from rev 260122, cryptsetup/trunk/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch) cryptsetup/repos/testing-x86_64/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch (from rev 260122, cryptsetup/trunk/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch) cryptsetup/repos/testing-x86_64/PKGBUILD (from rev 260122, cryptsetup/trunk/PKGBUILD) cryptsetup/repos/testing-x86_64/encrypt_hook (from rev 260122, cryptsetup/trunk/encrypt_hook) cryptsetup/repos/testing-x86_64/encrypt_install (from rev 260122, cryptsetup/trunk/encrypt_install) cryptsetup/repos/testing-x86_64/sd-encrypt (from rev 260122, cryptsetup/trunk/sd-encrypt) Deleted: cryptsetup/repos/testing-i686/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch cryptsetup/repos/testing-i686/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch cryptsetup/repos/testing-i686/PKGBUILD cryptsetup/repos/testing-i686/encrypt_hook cryptsetup/repos/testing-i686/encrypt_install cryptsetup/repos/testing-i686/sd-encrypt cryptsetup/repos/testing-x86_64/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch cryptsetup/repos/testing-x86_64/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch cryptsetup/repos/testing-x86_64/PKGBUILD cryptsetup/repos/testing-x86_64/encrypt_hook cryptsetup/repos/testing-x86_64/encrypt_install cryptsetup/repos/testing-x86_64/sd-encrypt + /0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch | 382 ++ /0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch | 152 +++ /PKGBUILD | 100 ++ /encrypt_hook | 278 +++ /encrypt_install | 88 ++ /sd-encrypt | 84 ++ testing-i686/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch | 191 - testing-i686/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch | 76 - testing-i686/PKGBUILD | 50 - testing-i686/encrypt_hook | 139 --- testing-i686/encrypt_install | 44 - testing-i686/sd-encrypt | 42 - testing-x86_64/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch | 191 - testing-x86_64/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch | 76 - testing-x86_64/PKGBUILD | 50 - testing-x86_64/encrypt_hook | 139 --- testing-x86_64/encrypt_install | 44 - testing-x86_64/sd-encrypt | 42 - 18 files changed, 1084 insertions(+), 1084 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 260122:260123 to see the changes.
[arch-commits] Commit in cryptsetup/repos (14 files)
Date: Sunday, February 21, 2016 @ 15:24:01 Author: thomas Revision: 260122 archrelease: copy trunk to testing-i686, testing-x86_64 Added: cryptsetup/repos/testing-i686/ cryptsetup/repos/testing-i686/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch (from rev 260121, cryptsetup/trunk/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch) cryptsetup/repos/testing-i686/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch (from rev 260121, cryptsetup/trunk/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch) cryptsetup/repos/testing-i686/PKGBUILD (from rev 260121, cryptsetup/trunk/PKGBUILD) cryptsetup/repos/testing-i686/encrypt_hook (from rev 260121, cryptsetup/trunk/encrypt_hook) cryptsetup/repos/testing-i686/encrypt_install (from rev 260121, cryptsetup/trunk/encrypt_install) cryptsetup/repos/testing-i686/sd-encrypt (from rev 260121, cryptsetup/trunk/sd-encrypt) cryptsetup/repos/testing-x86_64/ cryptsetup/repos/testing-x86_64/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch (from rev 260121, cryptsetup/trunk/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch) cryptsetup/repos/testing-x86_64/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch (from rev 260121, cryptsetup/trunk/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch) cryptsetup/repos/testing-x86_64/PKGBUILD (from rev 260121, cryptsetup/trunk/PKGBUILD) cryptsetup/repos/testing-x86_64/encrypt_hook (from rev 260121, cryptsetup/trunk/encrypt_hook) cryptsetup/repos/testing-x86_64/encrypt_install (from rev 260121, cryptsetup/trunk/encrypt_install) cryptsetup/repos/testing-x86_64/sd-encrypt (from rev 260121, cryptsetup/trunk/sd-encrypt) + testing-i686/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch | 191 ++ testing-i686/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch | 76 +++ testing-i686/PKGBUILD | 50 ++ testing-i686/encrypt_hook | 139 +++ testing-i686/encrypt_install | 44 ++ testing-i686/sd-encrypt | 42 ++ testing-x86_64/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch | 191 ++ testing-x86_64/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch | 76 +++ testing-x86_64/PKGBUILD | 50 ++ testing-x86_64/encrypt_hook | 139 +++ testing-x86_64/encrypt_install | 44 ++ testing-x86_64/sd-encrypt | 42 ++ 12 files changed, 1084 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 260121:260122 to see the changes.
[arch-commits] Commit in cryptsetup/trunk (3 files)
cket_init(&sa, &h->tfmfd, &h->opfd) < 0) { ++ if (crypt_kernel_socket_init(&sa, &h->tfmfd, &h->opfd, NULL, 0) < 0) { + free(h); + return -EINVAL; + } +@@ -246,16 +253,11 @@ int crypt_hmac_init(struct crypt_hmac **ctx, const char *name, + snprintf((char *)sa.salg_name, sizeof(sa.salg_name), +"hmac(%s)", ha->kernel_name); + +- if (crypt_kernel_socket_init(&sa, &h->tfmfd, &h->opfd) < 0) { ++ if (crypt_kernel_socket_init(&sa, &h->tfmfd, &h->opfd, buffer, length) < 0) { + free(h); + return -EINVAL; + } + +- if (setsockopt(h->tfmfd, SOL_ALG, ALG_SET_KEY, buffer, length) < 0) { +- crypt_hmac_destroy(h); +- return -EINVAL; +- } +- + *ctx = h; + return 0; + } +-- +2.7.1 + Modified: PKGBUILD === --- PKGBUILD2016-02-21 12:13:54 UTC (rev 260120) +++ PKGBUILD2016-02-21 14:23:40 UTC (rev 260121) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=cryptsetup pkgver=1.7.0 -pkgrel=1 +pkgrel=2 pkgdesc="Userspace setup tool for transparent encryption of block devices using dm-crypt" arch=(i686 x86_64) license=('GPL') @@ -15,17 +15,24 @@ https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/${pkgname}-${pkgver}.tar.sign encrypt_hook encrypt_install -sd-encrypt) +sd-encrypt +0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch +0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch) validpgpkeys=('2A2918243FDE46648D0686F9D9B0577BD93E98FC') # Milan Broz sha256sums=('075524a7cc0db36d12119fa79116750accb1c6c8825d5faa2534b74b8ce3d148' 'SKIP' '4406f8dc83f4f1b408e49d557515f721d91b358355c71fbe51f74ab27e5c84ff' 'cfe465bdad3d958bb2332a05e04f2e1e884422a5714dfd1a0a3b9b74bf7dc6ae' -'d442304e6a78b3513ebc53be3fe2f1276a7df470c8da701b3ece971d59979bdd') +'d442304e6a78b3513ebc53be3fe2f1276a7df470c8da701b3ece971d59979bdd' +'c4fb5946ba1b48b5a2fdafa2c32748f205d83d4cc824ebdae2d2f30abfc31b07' +'f4074ddf3f494f7da09be6a4ab9d42d84cf2a7818a959c526849e1bb40dab54d') -#prepare() { -# cd "${srcdir}"/$pkgname-${pkgver} -#} +prepare() { + cd "${srcdir}"/$pkgname-${pkgver} + + patch -p1 -i "${srcdir}"/0001-Set-skcipher-key-before-accept-call-in-kernel-crypto.patch + patch -p1 -i "${srcdir}"/0002-Fix-kernel-crypto-backend-to-set-key-before-accept-c.patch +} build() { cd "${srcdir}"/$pkgname-${pkgver}
[arch-commits] Commit in iw/repos (6 files)
Date: Sunday, August 16, 2015 @ 11:17:58 Author: thomas Revision: 243786 db-move: moved iw from [testing] to [core] (i686, x86_64) Added: iw/repos/core-i686/PKGBUILD (from rev 243785, iw/repos/testing-i686/PKGBUILD) iw/repos/core-x86_64/PKGBUILD (from rev 243785, iw/repos/testing-x86_64/PKGBUILD) Deleted: iw/repos/core-i686/PKGBUILD iw/repos/core-x86_64/PKGBUILD iw/repos/testing-i686/ iw/repos/testing-x86_64/ --+ /PKGBUILD| 52 + core-i686/PKGBUILD | 24 -- core-x86_64/PKGBUILD | 24 -- 3 files changed, 52 insertions(+), 48 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2015-08-16 09:14:07 UTC (rev 243785) +++ core-i686/PKGBUILD 2015-08-16 09:17:58 UTC (rev 243786) @@ -1,24 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=iw -pkgver=3.17 -pkgrel=1 -pkgdesc="nl80211 based CLI configuration utility for wireless devices" -arch=("i686" "x86_64") -url="http://wireless.kernel.org/en/users/Documentation/iw"; -license=("GPL") -depends=("libnl") -makedepends=("linux-api-headers") -source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') - -build() { - cd "$srcdir"/$pkgname-$pkgver - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install -} Copied: iw/repos/core-i686/PKGBUILD (from rev 243785, iw/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2015-08-16 09:17:58 UTC (rev 243786) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=4.1 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign}) +sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b' +'SKIP') +validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +} Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2015-08-16 09:14:07 UTC (rev 243785) +++ core-x86_64/PKGBUILD2015-08-16 09:17:58 UTC (rev 243786) @@ -1,24 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=iw -pkgver=3.17 -pkgrel=1 -pkgdesc="nl80211 based CLI configuration utility for wireless devices" -arch=("i686" "x86_64") -url="http://wireless.kernel.org/en/users/Documentation/iw"; -license=("GPL") -depends=("libnl") -makedepends=("linux-api-headers") -source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') - -build() { - cd "$srcdir"/$pkgname-$pkgver - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install -} Copied: iw/repos/core-x86_64/PKGBUILD (from rev 243785, iw/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2015-08-16 09:17:58 UTC (rev 243786) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=4.1 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign}) +sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b' +'SKIP') +validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +}
[arch-commits] Commit in libnl/repos (6 files)
Date: Sunday, August 16, 2015 @ 11:17:59 Author: thomas Revision: 243787 db-move: moved libnl from [testing] to [core] (i686, x86_64) Added: libnl/repos/core-i686/PKGBUILD (from rev 243785, libnl/repos/testing-i686/PKGBUILD) libnl/repos/core-x86_64/PKGBUILD (from rev 243785, libnl/repos/testing-x86_64/PKGBUILD) Deleted: libnl/repos/core-i686/PKGBUILD libnl/repos/core-x86_64/PKGBUILD libnl/repos/testing-i686/ libnl/repos/testing-x86_64/ --+ /PKGBUILD| 62 + core-i686/PKGBUILD | 29 -- core-x86_64/PKGBUILD | 29 -- 3 files changed, 62 insertions(+), 58 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2015-08-16 09:17:58 UTC (rev 243786) +++ core-i686/PKGBUILD 2015-08-16 09:17:59 UTC (rev 243787) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=libnl -pkgver=3.2.25 -pkgrel=1 -pkgdesc="Library for applications dealing with netlink sockets" -arch=(i686 x86_64) -url="http://www.infradead.org/~tgr/libnl/"; -license=(GPL) -depends=(glibc) -backup=(etc/libnl/classid etc/libnl/pktloc) -source=("$url/files/$pkgname-$pkgver.tar.gz") -sha256sums=('8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5') - -build() { - cd "$srcdir"/$pkgname-$pkgver - ./configure \ ---prefix=/usr \ ---sysconfdir=/etc \ ---sbindir=/usr/bin \ ---disable-static - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: libnl/repos/core-i686/PKGBUILD (from rev 243785, libnl/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2015-08-16 09:17:59 UTC (rev 243787) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=libnl +pkgver=3.2.26 +pkgrel=1 +pkgdesc="Library for applications dealing with netlink sockets" +arch=(i686 x86_64) +url="http://www.infradead.org/~tgr/libnl/"; +license=(GPL) +depends=(glibc) +backup=(etc/libnl/classid etc/libnl/pktloc) +source=(https://github.com/thom311/libnl/releases/download/libnl$(echo ${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555' +'SKIP') +validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure \ +--prefix=/usr \ +--sysconfdir=/etc \ +--sbindir=/usr/bin \ +--disable-static + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD 2015-08-16 09:17:58 UTC (rev 243786) +++ core-x86_64/PKGBUILD2015-08-16 09:17:59 UTC (rev 243787) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=libnl -pkgver=3.2.25 -pkgrel=1 -pkgdesc="Library for applications dealing with netlink sockets" -arch=(i686 x86_64) -url="http://www.infradead.org/~tgr/libnl/"; -license=(GPL) -depends=(glibc) -backup=(etc/libnl/classid etc/libnl/pktloc) -source=("$url/files/$pkgname-$pkgver.tar.gz") -sha256sums=('8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5') - -build() { - cd "$srcdir"/$pkgname-$pkgver - ./configure \ ---prefix=/usr \ ---sysconfdir=/etc \ ---sbindir=/usr/bin \ ---disable-static - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: libnl/repos/core-x86_64/PKGBUILD (from rev 243785, libnl/repos/testing-x86_64/PKGBUILD) =========== --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2015-08-16 09:17:59 UTC (rev 243787) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=libnl +pkgver=3.2.26 +pkgrel=1 +pkgdesc="Library for applications dealing with netlink sockets" +arch=(i686 x86_64) +url="http://www.infradead.org/~tgr/libnl/"; +license=(GPL) +depends=(glibc) +backup=(etc/libnl/classid etc/libnl/pktloc) +source=(https://github.com/thom311/libnl/releases/download/libnl$(echo ${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555' +'SKIP') +validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure \ +--prefix=/usr \ +--sysconfdir=/etc \ +--sbindir=/usr/bin \ +--disable-static + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in libpcap/repos (10 files)
Date: Sunday, August 16, 2015 @ 11:18:00 Author: thomas Revision: 243788 db-move: moved libpcap from [testing] to [core] (i686, x86_64) Added: libpcap/repos/core-i686/PKGBUILD (from rev 243785, libpcap/repos/testing-i686/PKGBUILD) libpcap/repos/core-i686/mgmt.h (from rev 243785, libpcap/repos/testing-i686/mgmt.h) libpcap/repos/core-x86_64/PKGBUILD (from rev 243785, libpcap/repos/testing-x86_64/PKGBUILD) libpcap/repos/core-x86_64/mgmt.h (from rev 243785, libpcap/repos/testing-x86_64/mgmt.h) Deleted: libpcap/repos/core-i686/PKGBUILD libpcap/repos/core-i686/mgmt.h libpcap/repos/core-x86_64/PKGBUILD libpcap/repos/core-x86_64/mgmt.h libpcap/repos/testing-i686/ libpcap/repos/testing-x86_64/ --+ /PKGBUILD| 94 ++ /mgmt.h | 1544 + core-i686/PKGBUILD | 47 - core-i686/mgmt.h | 772 core-x86_64/PKGBUILD | 47 - core-x86_64/mgmt.h | 772 6 files changed, 1638 insertions(+), 1638 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 243787:243788 to see the changes.
[arch-commits] Commit in wireless-regdb/repos (7 files)
Date: Sunday, August 16, 2015 @ 11:18:01 Author: thomas Revision: 243789 db-move: moved wireless-regdb from [testing] to [core] (any) Added: wireless-regdb/repos/core-any/PKGBUILD (from rev 243785, wireless-regdb/repos/testing-any/PKGBUILD) wireless-regdb/repos/core-any/crda.conf.d (from rev 243785, wireless-regdb/repos/testing-any/crda.conf.d) wireless-regdb/repos/core-any/wireless-regdb.install (from rev 243785, wireless-regdb/repos/testing-any/wireless-regdb.install) Deleted: wireless-regdb/repos/core-any/PKGBUILD wireless-regdb/repos/core-any/crda.conf.d wireless-regdb/repos/core-any/wireless-regdb.install wireless-regdb/repos/testing-any/ -+ /PKGBUILD | 47 ++ /crda.conf.d|4 +++ /wireless-regdb.install | 13 ++ core-any/PKGBUILD | 46 - core-any/crda.conf.d|4 --- core-any/wireless-regdb.install | 13 -- 6 files changed, 64 insertions(+), 63 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2015-08-16 09:18:00 UTC (rev 243788) +++ core-any/PKGBUILD 2015-08-16 09:18:01 UTC (rev 243789) @@ -1,46 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=wireless-regdb -pkgver=2015.01.30 -pkgrel=2 -pkgdesc="Central Regulatory Domain Database" -arch=('any') -url="http://wireless.kernel.org/en/developers/Regulatory"; -backup=(etc/conf.d/wireless-regdom) -license=('custom') -depends=('sh') -makedepends=('crda') -source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign} -crda.conf.d) -sha256sums=('438d7f3d62686bc997098d17fe1aff95c6f6ec061aaab90ab7c2c17e8451ce85' -'SKIP' -'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b') -validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee -package() { - # Install and verify regulatory.bin file - msg "Installing and verifying the regulatory.bin file ..." - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin "${pkgdir}"/usr/lib/crda/regulatory.bin - # This creates a depend/makedepend loop: - # crda depends on wireless-regdb (but strictly doesn't makedepend on it) - # wireless-regdb makedepends on crda - if /usr/bin/regdbdump "${pkgdir}"/usr/lib/crda/regulatory.bin > /dev/null; then -msg "Regulatory database verification was succesful." - else -error "Regulatory database verification failed." -return 1 - fi - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/sforshee.key.pub.pem "${pkgdir}"/usr/lib/crda/pubkeys/sforshee.key.pub.pem - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE "${pkgdir}"/usr/share/licenses/wireless-regdb/LICENSE - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin.5 "${pkgdir}"/usr/share/man/man5/regulatory.bin.5 - - msg "Installing /etc/conf.d/wireless-regdom ..." - install -D -m644 "${srcdir}"/crda.conf.d "${pkgdir}"/etc/conf.d/wireless-regdom - for dom in $(grep ^country "${srcdir}"/${pkgname}-${pkgver}/db.txt | cut -d' ' -f2 | sed 's|:||g'); do -echo "#WIRELESS_REGDOM=\"${dom}\"" >> "${pkgdir}"/etc/conf.d/wireless-regdom.tmp - done - sort -u "${pkgdir}"/etc/conf.d/wireless-regdom.tmp >> "${pkgdir}"/etc/conf.d/wireless-regdom - rm "${pkgdir}"/etc/conf.d/wireless-regdom.tmp - - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: wireless-regdb/repos/core-any/PKGBUILD (from rev 243785, wireless-regdb/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2015-08-16 09:18:01 UTC (rev 243789) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wireless-regdb +pkgver=2015.07.20 +pkgrel=1 +pkgdesc="Central Regulatory Domain Database" +arch=('any') +url="http://wireless.kernel.org/en/developers/Regulatory"; +backup=(etc/conf.d/wireless-regdom) +license=('custom') +depends=('sh') +makedepends=('crda') +source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign} +crda.conf.d) +sha256sums=('edac88b58f23f0a7d73aa2b21520d04019f30e3e604b0a60ca0a6af16044bdf2' +'SKIP' +'192428fd959806705356107bffc97b8b379854e79bd013
[arch-commits] Commit in lvm2/repos (18 files)
jor:\$$minor\"\nENV{ID_MODEL}=\"LVM PV \$$env{ID_FS_UUID_ENC} on \/dev\/\$$name\"\nENV{SYSTEMD_WANTS}\+=\"lvm2-pvscan@\$$major:\$$minor.service\" + else + PVSCAN_RULE=RUN\+\=\"$(LVM_EXEC)/lvm pvscan --background --cache --activate ay --major \$$major --minor \$$minor\", ENV{LVM_SCANNED}=\"1\" + endif +-- +2.5.0 + Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 243408, lvm2/trunk/11-dm-initramfs.rules) === --- testing-i686/11-dm-initramfs.rules (rev 0) +++ testing-i686/11-dm-initramfs.rules 2015-08-13 12:37:18 UTC (rev 243409) @@ -0,0 +1,3 @@ +# needed with new udev/mkinitcpio and as implemented in dracut: +# <http://git.kernel.org/?p=boot/dracut/dracut.git;a=commitdiff;h=12b9736228f2b34c15a9cb63be79cf7b6e865b54> +SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", OPTIONS="db_persist" Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 243408, lvm2/trunk/PKGBUILD) ======= --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-08-13 12:37:18 UTC (rev 243409) @@ -0,0 +1,107 @@ +# $Id$ +# Maintainer: Eric Bélanger +# Maintainer: Thomas Bächler + +pkgbase=lvm2 +pkgname=('lvm2' 'device-mapper') +pkgver=2.02.127 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://sourceware.org/lvm2/"; +license=('GPL2' 'LGPL2.1') +makedepends=('systemd' 'thin-provisioning-tools') +groups=('base') +source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc} +lvm2_install +lvm2_hook +sd-lvm2_install +11-dm-initramfs.rules +lvm2-make-sockets-static.patch +0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch) +sha1sums=('e6a4184be7c2a22725e647de131663637023e895' + 'SKIP' + '40ef991650555b904e73bcc3f344d736722e27ca' + 'ff0fdf0a3005a41acd4b36865056109effc3474b' + '86c18852409dc03f38bdd734ac3e7b54bed9c4ce' + 'f6a554eea9557c3c236df2943bb6e7e723945c41' + 'b084512af42f2e16cdccd8b7ee4de27b574d1f94' + '8cbab7e869f0f0949ae9a3104cafb76b77de52c4') +validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17') + +prepare() { + cd LVM2.${pkgver} + + # enable lvmetad + sed -i 's|use_lvmetad = 0|use_lvmetad = 1|' conf/example.conf.in + + # make systemd sockets static + patch -p1 -i "${srcdir}/lvm2-make-sockets-static.patch" + # fix udev rules + patch -p1 -i "${srcdir}/0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch" +} + +build() { + CONFIGUREOPTS="--prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin \ + --with-udev-prefix=/usr --with-systemdsystemunitdir=/usr/lib/systemd/system \ + --with-default-pid-dir=/run --with-default-dm-run-dir=/run --with-default-run-dir=/run/lvm \ + --enable-pkgconfig --enable-readline --enable-dmeventd --enable-cmdlib --enable-applib \ + --enable-udev_sync --enable-udev_rules --with-default-locking-dir=/run/lock/lvm \ + --enable-lvmetad --with-thin=internal --with-cache=internal" + + cp -a LVM2.${pkgver} LVM2-initramfs + + cd LVM2.${pkgver} + + ./configure $CONFIGUREOPTS --enable-udev-systemd-background-jobs + make + + # Build legacy udev rule for initramfs + cd ../LVM2-initramfs + ./configure $CONFIGUREOPTS --enable-udev-systemd-background-jobs=no + cd udev + make 69-dm-lvm-metad.rules +} + +package_device-mapper() { + pkgdesc="Device mapper userspace library and tools" + url="http://sourceware.org/dm/"; + depends=('glibc' 'systemd') + + cd LVM2.${pkgver} + make DESTDIR="${pkgdir}" install_device-mapper + # extra udev rule for device-mapper in initramfs + install -D -m644 "${srcdir}/11-dm-initramfs.rules" "${pkgdir}/usr/lib/initcpio/udev/11-dm-initramfs.rules" + # Install dmeventd socket and service + make DESTDIR="${pkgdir}" install_systemd_units + rm -f "${pkgdir}/usr/lib/systemd/system/"{blk-availability.service,lvm2-*} + install -d -m755 "${pkgdir}/usr/lib/systemd/system/sockets.target.wants" + ln -sf ../dm-event.socket "${pkgdir}/usr/lib/systemd/system/sockets.target.wants/dm-event.socket" +} + +package_lvm2() { + pkgdesc="Logical Volume Manager 2 utilities" + depends=('bash' "device-mapper>=${pkgver}" 'systemd' 'readline' 'thin-provisioning-tools') + conflicts=('lvm' 'mkinitcpio<0.7') + backup=('etc/lvm/lvm.conf') + options=('!makeflags') + install=lvm2.install + + cd
[arch-commits] Commit in lvm2/trunk (2 files)
Date: Thursday, August 13, 2015 @ 14:36:54 Author: thomas Revision: 243408 upgpkg: lvm2 2.02.127-1 Added: lvm2/trunk/0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch Modified: lvm2/trunk/PKGBUILD --+ 0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch | 28 + PKGBUILD | 12 ++--- 2 files changed, 36 insertions(+), 4 deletions(-) Added: 0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch === --- 0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch (rev 0) +++ 0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch2015-08-13 12:36:54 UTC (rev 243408) @@ -0,0 +1,28 @@ +From 3ea396e9d220cec55fd4e139be7ae486cb4ddb91 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Thomas=20B=C3=A4chler?= +Date: Wed, 12 Aug 2015 09:29:04 +0200 +Subject: [PATCH] udev: use += for SYSTEMD_WANTS instead of = + +Instead of using = to override SYSTEMD_WANTS, use += to add +the pvscan service. +--- + WHATS_NEW| 1 + + udev/Makefile.in | 2 +- + 2 files changed, 2 insertions(+), 1 deletion(-) + +diff --git a/udev/Makefile.in b/udev/Makefile.in +index 390069b..c4cc2bd 100644 +--- a/udev/Makefile.in b/udev/Makefile.in +@@ -47,7 +47,7 @@ BLKID_RULE=IMPORT{program}=\"${SBIN}\/blkid -o udev -p \$$tempnode\" + endif + + ifeq ("@UDEV_SYSTEMD_BACKGROUND_JOBS@", "yes") +-PVSCAN_RULE=ACTION\!=\"remove\", ENV{LVM_PV_GONE}==\"1\", RUN\+=\"@bindir@/systemd-run $(LVM_EXEC)\/lvm pvscan --cache \$$major\:\$$minor\", GOTO=\"lvm_end\"\nENV{SYSTEMD_ALIAS}=\"\/dev\/block\/\$$major:\$$minor\"\nENV{ID_MODEL}=\"LVM PV \$$env{ID_FS_UUID_ENC} on \/dev\/\$$name\"\nENV{SYSTEMD_WANTS}=\"lvm2-pvscan@\$$major:\$$minor.service\" ++PVSCAN_RULE=ACTION\!=\"remove\", ENV{LVM_PV_GONE}==\"1\", RUN\+=\"@bindir@/systemd-run $(LVM_EXEC)\/lvm pvscan --cache \$$major\:\$$minor\", GOTO=\"lvm_end\"\nENV{SYSTEMD_ALIAS}=\"\/dev\/block\/\$$major:\$$minor\"\nENV{ID_MODEL}=\"LVM PV \$$env{ID_FS_UUID_ENC} on \/dev\/\$$name\"\nENV{SYSTEMD_WANTS}\+=\"lvm2-pvscan@\$$major:\$$minor.service\" + else + PVSCAN_RULE=RUN\+\=\"$(LVM_EXEC)/lvm pvscan --background --cache --activate ay --major \$$major --minor \$$minor\", ENV{LVM_SCANNED}=\"1\" + endif +-- +2.5.0 + Modified: PKGBUILD === --- PKGBUILD2015-08-13 12:25:59 UTC (rev 243407) +++ PKGBUILD2015-08-13 12:36:54 UTC (rev 243408) @@ -4,7 +4,7 @@ pkgbase=lvm2 pkgname=('lvm2' 'device-mapper') -pkgver=2.02.125 +pkgver=2.02.127 pkgrel=1 arch=('i686' 'x86_64') url="http://sourceware.org/lvm2/"; @@ -16,14 +16,16 @@ lvm2_hook sd-lvm2_install 11-dm-initramfs.rules -lvm2-make-sockets-static.patch) -sha1sums=('a45bbdcbbcf6a8b4aa9c62f16bc029f687a2daa4' +lvm2-make-sockets-static.patch +0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch) +sha1sums=('e6a4184be7c2a22725e647de131663637023e895' 'SKIP' '40ef991650555b904e73bcc3f344d736722e27ca' 'ff0fdf0a3005a41acd4b36865056109effc3474b' '86c18852409dc03f38bdd734ac3e7b54bed9c4ce' 'f6a554eea9557c3c236df2943bb6e7e723945c41' - 'b084512af42f2e16cdccd8b7ee4de27b574d1f94') + 'b084512af42f2e16cdccd8b7ee4de27b574d1f94' + '8cbab7e869f0f0949ae9a3104cafb76b77de52c4') validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17') prepare() { @@ -34,6 +36,8 @@ # make systemd sockets static patch -p1 -i "${srcdir}/lvm2-make-sockets-static.patch" + # fix udev rules + patch -p1 -i "${srcdir}/0001-udev-use-for-SYSTEMD_WANTS-instead-of.patch" } build() {
[arch-commits] Commit in thin-provisioning-tools/repos (4 files)
Date: Thursday, August 13, 2015 @ 14:25:59 Author: thomas Revision: 243407 archrelease: copy trunk to testing-i686, testing-x86_64 Added: thin-provisioning-tools/repos/testing-i686/ thin-provisioning-tools/repos/testing-i686/PKGBUILD (from rev 243406, thin-provisioning-tools/trunk/PKGBUILD) thin-provisioning-tools/repos/testing-x86_64/ thin-provisioning-tools/repos/testing-x86_64/PKGBUILD (from rev 243406, thin-provisioning-tools/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 28 testing-x86_64/PKGBUILD | 28 2 files changed, 56 insertions(+) Copied: thin-provisioning-tools/repos/testing-i686/PKGBUILD (from rev 243406, thin-provisioning-tools/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-08-13 12:25:59 UTC (rev 243407) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Eric Bélanger +# Contributor: Jason Hall + +pkgname=thin-provisioning-tools +pkgver=0.5.3 +pkgrel=1 +pkgdesc="A suite of tools for manipulating the metadata of the dm-thin device-mapper target" +arch=('i686' 'x86_64') +url="https://github.com/jthornber/thin-provisioning-tools"; +license=('GPL3') +depends=('expat' 'gcc-libs' 'libaio') +makedepends=('boost') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz) +sha1sums=('10fdc8bd9880716e1759b0defd57a7340283a7df') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + autoconf + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" BINDIR="${pkgdir}"/usr/bin MANDIR=/usr/share/man install +} + Copied: thin-provisioning-tools/repos/testing-x86_64/PKGBUILD (from rev 243406, thin-provisioning-tools/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2015-08-13 12:25:59 UTC (rev 243407) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Eric Bélanger +# Contributor: Jason Hall + +pkgname=thin-provisioning-tools +pkgver=0.5.3 +pkgrel=1 +pkgdesc="A suite of tools for manipulating the metadata of the dm-thin device-mapper target" +arch=('i686' 'x86_64') +url="https://github.com/jthornber/thin-provisioning-tools"; +license=('GPL3') +depends=('expat' 'gcc-libs' 'libaio') +makedepends=('boost') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz) +sha1sums=('10fdc8bd9880716e1759b0defd57a7340283a7df') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + autoconf + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" BINDIR="${pkgdir}"/usr/bin MANDIR=/usr/share/man install +} +
[arch-commits] Commit in thin-provisioning-tools/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 14:25:46 Author: thomas Revision: 243406 upgpkg: thin-provisioning-tools 0.5.3-1 Modified: thin-provisioning-tools/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 12:20:32 UTC (rev 243405) +++ PKGBUILD2015-08-13 12:25:46 UTC (rev 243406) @@ -3,7 +3,7 @@ # Contributor: Jason Hall pkgname=thin-provisioning-tools -pkgver=0.4.1 +pkgver=0.5.3 pkgrel=1 pkgdesc="A suite of tools for manipulating the metadata of the dm-thin device-mapper target" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('expat' 'gcc-libs' 'libaio') makedepends=('boost') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz) -sha1sums=('af7cbaf3c7cd8f15e618bd5136afb89077afceb7') +sha1sums=('10fdc8bd9880716e1759b0defd57a7340283a7df') build() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in wireless-regdb/repos/testing-any (6 files)
Date: Thursday, August 13, 2015 @ 14:20:32 Author: thomas Revision: 243405 archrelease: copy trunk to testing-any Added: wireless-regdb/repos/testing-any/PKGBUILD (from rev 243404, wireless-regdb/trunk/PKGBUILD) wireless-regdb/repos/testing-any/crda.conf.d (from rev 243404, wireless-regdb/trunk/crda.conf.d) wireless-regdb/repos/testing-any/wireless-regdb.install (from rev 243404, wireless-regdb/trunk/wireless-regdb.install) Deleted: wireless-regdb/repos/testing-any/PKGBUILD wireless-regdb/repos/testing-any/crda.conf.d wireless-regdb/repos/testing-any/wireless-regdb.install + PKGBUILD | 93 +++ crda.conf.d|8 ++-- wireless-regdb.install | 26 ++--- 3 files changed, 64 insertions(+), 63 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-08-13 12:20:24 UTC (rev 243404) +++ PKGBUILD2015-08-13 12:20:32 UTC (rev 243405) @@ -1,46 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=wireless-regdb -pkgver=2015.06.05 -pkgrel=1 -pkgdesc="Central Regulatory Domain Database" -arch=('any') -url="http://wireless.kernel.org/en/developers/Regulatory"; -backup=(etc/conf.d/wireless-regdom) -license=('custom') -depends=('sh') -makedepends=('crda') -source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign} -crda.conf.d) -sha256sums=('69306cfd5ae97ae5f905e0e1e167b6ac8d28e49b58880621ad0024b59f4f8564' -'SKIP' -'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b') -validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee -package() { - # Install and verify regulatory.bin file - msg "Installing and verifying the regulatory.bin file ..." - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin "${pkgdir}"/usr/lib/crda/regulatory.bin - # This creates a depend/makedepend loop: - # crda depends on wireless-regdb (but strictly doesn't makedepend on it) - # wireless-regdb makedepends on crda - if /usr/bin/regdbdump "${pkgdir}"/usr/lib/crda/regulatory.bin > /dev/null; then -msg "Regulatory database verification was succesful." - else -error "Regulatory database verification failed." -return 1 - fi - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/sforshee.key.pub.pem "${pkgdir}"/usr/lib/crda/pubkeys/sforshee.key.pub.pem - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE "${pkgdir}"/usr/share/licenses/wireless-regdb/LICENSE - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin.5 "${pkgdir}"/usr/share/man/man5/regulatory.bin.5 - - msg "Installing /etc/conf.d/wireless-regdom ..." - install -D -m644 "${srcdir}"/crda.conf.d "${pkgdir}"/etc/conf.d/wireless-regdom - for dom in $(grep ^country "${srcdir}"/${pkgname}-${pkgver}/db.txt | cut -d' ' -f2 | sed 's|:||g'); do -echo "#WIRELESS_REGDOM=\"${dom}\"" >> "${pkgdir}"/etc/conf.d/wireless-regdom.tmp - done - sort -u "${pkgdir}"/etc/conf.d/wireless-regdom.tmp >> "${pkgdir}"/etc/conf.d/wireless-regdom - rm "${pkgdir}"/etc/conf.d/wireless-regdom.tmp - - install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: wireless-regdb/repos/testing-any/PKGBUILD (from rev 243404, wireless-regdb/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-08-13 12:20:32 UTC (rev 243405) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wireless-regdb +pkgver=2015.07.20 +pkgrel=1 +pkgdesc="Central Regulatory Domain Database" +arch=('any') +url="http://wireless.kernel.org/en/developers/Regulatory"; +backup=(etc/conf.d/wireless-regdom) +license=('custom') +depends=('sh') +makedepends=('crda') +source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign} +crda.conf.d) +sha256sums=('edac88b58f23f0a7d73aa2b21520d04019f30e3e604b0a60ca0a6af16044bdf2' +'SKIP' +'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b') +validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee + +package() { + # Install and verify regulatory.bin file + msg "Installing and verifying the regulatory.bin file ..." + install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin
[arch-commits] Commit in wireless-regdb/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 14:20:24 Author: thomas Revision: 243404 upgpkg: wireless-regdb 2015.07.20-1 Modified: wireless-regdb/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 12:15:51 UTC (rev 243403) +++ PKGBUILD2015-08-13 12:20:24 UTC (rev 243404) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=wireless-regdb -pkgver=2015.06.05 +pkgver=2015.07.20 pkgrel=1 pkgdesc="Central Regulatory Domain Database" arch=('any') @@ -13,10 +13,11 @@ makedepends=('crda') source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign} crda.conf.d) -sha256sums=('69306cfd5ae97ae5f905e0e1e167b6ac8d28e49b58880621ad0024b59f4f8564' +sha256sums=('edac88b58f23f0a7d73aa2b21520d04019f30e3e604b0a60ca0a6af16044bdf2' 'SKIP' '192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b') validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee + package() { # Install and verify regulatory.bin file msg "Installing and verifying the regulatory.bin file ..."
[arch-commits] Commit in libnl/repos (4 files)
Date: Thursday, August 13, 2015 @ 14:15:51 Author: thomas Revision: 243403 archrelease: copy trunk to testing-i686, testing-x86_64 Added: libnl/repos/testing-i686/ libnl/repos/testing-i686/PKGBUILD (from rev 243402, libnl/trunk/PKGBUILD) libnl/repos/testing-x86_64/ libnl/repos/testing-x86_64/PKGBUILD (from rev 243402, libnl/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 31 +++ testing-x86_64/PKGBUILD | 31 +++ 2 files changed, 62 insertions(+) Copied: libnl/repos/testing-i686/PKGBUILD (from rev 243402, libnl/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-08-13 12:15:51 UTC (rev 243403) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=libnl +pkgver=3.2.26 +pkgrel=1 +pkgdesc="Library for applications dealing with netlink sockets" +arch=(i686 x86_64) +url="http://www.infradead.org/~tgr/libnl/"; +license=(GPL) +depends=(glibc) +backup=(etc/libnl/classid etc/libnl/pktloc) +source=(https://github.com/thom311/libnl/releases/download/libnl$(echo ${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555' +'SKIP') +validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure \ +--prefix=/usr \ +--sysconfdir=/etc \ +--sbindir=/usr/bin \ +--disable-static + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Copied: libnl/repos/testing-x86_64/PKGBUILD (from rev 243402, libnl/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2015-08-13 12:15:51 UTC (rev 243403) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=libnl +pkgver=3.2.26 +pkgrel=1 +pkgdesc="Library for applications dealing with netlink sockets" +arch=(i686 x86_64) +url="http://www.infradead.org/~tgr/libnl/"; +license=(GPL) +depends=(glibc) +backup=(etc/libnl/classid etc/libnl/pktloc) +source=(https://github.com/thom311/libnl/releases/download/libnl$(echo ${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555' +'SKIP') +validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure \ +--prefix=/usr \ +--sysconfdir=/etc \ +--sbindir=/usr/bin \ +--disable-static + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in libnl/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 14:15:40 Author: thomas Revision: 243402 upgpkg: libnl 3.2.26-1 Modified: libnl/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 12:04:50 UTC (rev 243401) +++ PKGBUILD2015-08-13 12:15:40 UTC (rev 243402) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=libnl -pkgver=3.2.25 +pkgver=3.2.26 pkgrel=1 pkgdesc="Library for applications dealing with netlink sockets" arch=(i686 x86_64) @@ -10,8 +10,10 @@ license=(GPL) depends=(glibc) backup=(etc/libnl/classid etc/libnl/pktloc) -source=("$url/files/$pkgname-$pkgver.tar.gz") -sha256sums=('8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5') +source=(https://github.com/thom311/libnl/releases/download/libnl$(echo ${pkgver} | sed 's|\.|_|g')/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('1323ff6cea47efe9f988893b09840942a8c36131f472a9f3b96eb68d8f8d7555' +'SKIP') +validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller build() { cd "$srcdir"/$pkgname-$pkgver
[arch-commits] Commit in iw/repos (4 files)
Date: Thursday, August 13, 2015 @ 14:04:50 Author: thomas Revision: 243401 archrelease: copy trunk to testing-i686, testing-x86_64 Added: iw/repos/testing-i686/ iw/repos/testing-i686/PKGBUILD (from rev 243400, iw/trunk/PKGBUILD) iw/repos/testing-x86_64/ iw/repos/testing-x86_64/PKGBUILD (from rev 243400, iw/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 26 ++ testing-x86_64/PKGBUILD | 26 ++ 2 files changed, 52 insertions(+) Copied: iw/repos/testing-i686/PKGBUILD (from rev 243400, iw/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-08-13 12:04:50 UTC (rev 243401) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=4.1 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign}) +sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b' +'SKIP') +validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +} Copied: iw/repos/testing-x86_64/PKGBUILD (from rev 243400, iw/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2015-08-13 12:04:50 UTC (rev 243401) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=4.1 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign}) +sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b' +'SKIP') +validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +}
[arch-commits] Commit in iw/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 14:04:39 Author: thomas Revision: 243400 upgpkg: iw 4.1-1 Modified: iw/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 12:01:17 UTC (rev 243399) +++ PKGBUILD2015-08-13 12:04:39 UTC (rev 243400) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=iw -pkgver=3.17 +pkgver=4.1 pkgrel=1 pkgdesc="nl80211 based CLI configuration utility for wireless devices" arch=("i686" "x86_64") @@ -10,8 +10,10 @@ license=("GPL") depends=("libnl") makedepends=("linux-api-headers") -source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign}) +sha256sums=('5164aaacd8e82501d84a2187af194e8285a5a5b76e200447eb58d4dd78d1a34b' +'SKIP') +validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg build() { cd "$srcdir"/$pkgname-$pkgver
[arch-commits] Commit in joe/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 14:01:04 Author: thomas Revision: 243398 upgpkg: joe 4.0-1 Modified: joe/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 11:54:51 UTC (rev 243397) +++ PKGBUILD2015-08-13 12:01:04 UTC (rev 243398) @@ -1,8 +1,8 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=joe -pkgver=3.7 -pkgrel=4 +pkgver=4.0 +pkgrel=1 pkgdesc="Joe's own editor" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/joe-editor"; @@ -12,8 +12,8 @@ backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('66de1b073e869ba12abbfcde3885c577') -sha1sums=('54398578886d4a3d325aece52c308a939d31101d') +md5sums=('3c3b6d5089a29ddc746ee89bab59286e') +sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') build() { cd "${srcdir}"/${pkgname}-${pkgver}
[arch-commits] Commit in joe/repos (4 files)
Date: Thursday, August 13, 2015 @ 14:01:17 Author: thomas Revision: 243399 archrelease: copy trunk to extra-i686, extra-x86_64 Added: joe/repos/extra-i686/PKGBUILD (from rev 243398, joe/trunk/PKGBUILD) joe/repos/extra-x86_64/PKGBUILD (from rev 243398, joe/trunk/PKGBUILD) Deleted: joe/repos/extra-i686/PKGBUILD joe/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 58 extra-i686/PKGBUILD | 29 extra-x86_64/PKGBUILD | 29 3 files changed, 58 insertions(+), 58 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-08-13 12:01:04 UTC (rev 243398) +++ extra-i686/PKGBUILD 2015-08-13 12:01:17 UTC (rev 243399) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=3.7 -pkgrel=4 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('66de1b073e869ba12abbfcde3885c577') -sha1sums=('54398578886d4a3d325aece52c308a939d31101d') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-i686/PKGBUILD (from rev 243398, joe/trunk/PKGBUILD) ======= --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-08-13 12:01:17 UTC (rev 243399) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.0 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/joe-editor"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +md5sums=('3c3b6d5089a29ddc746ee89bab59286e') +sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2015-08-13 12:01:04 UTC (rev 243398) +++ extra-x86_64/PKGBUILD 2015-08-13 12:01:17 UTC (rev 243399) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=joe -pkgver=3.7 -pkgrel=4 -pkgdesc="Joe's own editor" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/joe-editor"; -license=('GPL') -depends=('ncurses') -optdepends=('gpm: console mouse support') -backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' -'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') -source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) -md5sums=('66de1b073e869ba12abbfcde3885c577') -sha1sums=('54398578886d4a3d325aece52c308a939d31101d') - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - make DESTDIR="${pkgdir}/" install -} Copied: joe/repos/extra-x86_64/PKGBUILD (from rev 243398, joe/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2015-08-13 12:01:17 UTC (rev 243399) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=joe +pkgver=4.0 +pkgrel=1 +pkgdesc="Joe's own editor" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/joe-editor"; +license=('GPL') +depends=('ncurses') +optdepends=('gpm: console mouse support') +backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc' +'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc') +source=("http://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz";) +md5sums=('3c3b6d5089a29ddc746ee89bab59286e') +sha1sums=('a51827c8c61c3cb09a038d8f6670efe84e144927') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}/" install +}
[arch-commits] Commit in libpcap/repos (6 files)
Date: Thursday, August 13, 2015 @ 13:54:51 Author: thomas Revision: 243397 archrelease: copy trunk to testing-i686, testing-x86_64 Added: libpcap/repos/testing-i686/ libpcap/repos/testing-i686/PKGBUILD (from rev 243396, libpcap/trunk/PKGBUILD) libpcap/repos/testing-i686/mgmt.h (from rev 243396, libpcap/trunk/mgmt.h) libpcap/repos/testing-x86_64/ libpcap/repos/testing-x86_64/PKGBUILD (from rev 243396, libpcap/trunk/PKGBUILD) libpcap/repos/testing-x86_64/mgmt.h (from rev 243396, libpcap/trunk/mgmt.h) -+ testing-i686/PKGBUILD | 47 ++ testing-i686/mgmt.h | 772 ++ testing-x86_64/PKGBUILD | 47 ++ testing-x86_64/mgmt.h | 772 ++ 4 files changed, 1638 insertions(+) Copied: libpcap/repos/testing-i686/PKGBUILD (from rev 243396, libpcap/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-08-13 11:54:51 UTC (rev 243397) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=libpcap +pkgver=1.7.4 +pkgrel=1 +pkgdesc="A system-independent interface for user-level packet capture" +arch=('i686' 'x86_64') +url="http://www.tcpdump.org/"; +license=('BSD') +depends=('glibc' 'libnl' 'sh' 'libusbx') +makedepends=('flex' 'bluez-libs') +source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz{,.sig} +mgmt.h) +sha256sums=('7ad3112187e88328b85e46dce7a9b949632af18ee74d97ffc3f2b41fe7f448b0' +'SKIP' +'7c85da5330ce7ecb6934795c02c652b9e344461302cf74804a4692c3e2e1e7e2') +validpgpkeys=('1F166A5742ABB9E0249A8D30E089DEF1D9C15D0D') # The Tcpdump Group + +prepare() { + mkdir -p ${srcdir}/include/bluetooth + cp ${srcdir}/mgmt.h ${srcdir}/include/bluetooth/ +} + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + CFLAGS="$CFLAGS -I${srcdir}/include $(pkg-config libnl-genl-3.0 --cflags)" \ + ./configure --prefix=/usr \ +--enable-ipv6 \ +--enable-bluetooth \ +--with-libnl + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + install -d -m755 ${pkgdir}/usr/bin + make DESTDIR=${pkgdir} install + + # backwards compatibility, programs often look for net/bpf.h + mkdir -p ${pkgdir}/usr/include/net + cd ${pkgdir}/usr/include/net + ln -s ../pcap-bpf.h bpf.h + + # install the license + install -D -m644 ${srcdir}/$pkgname-$pkgver/LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE +} Copied: libpcap/repos/testing-i686/mgmt.h (from rev 243396, libpcap/trunk/mgmt.h) === --- testing-i686/mgmt.h (rev 0) +++ testing-i686/mgmt.h 2015-08-13 11:54:51 UTC (rev 243397) @@ -0,0 +1,772 @@ +/* + * BlueZ - Bluetooth protocol stack for Linux + * + * Copyright (C) 2010 Nokia Corporation + * Copyright (C) 2010 Marcel Holtmann + * + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __packed +#define __packed __attribute__((packed)) +#endif + +#define MGMT_INDEX_NONE0x + +#define MGMT_STATUS_SUCCESS0x00 +#define MGMT_STATUS_UNKNOWN_COMMAND0x01 +#define MGMT_STATUS_NOT_CONNECTED 0x02 +#define MGMT_STATUS_FAILED 0x03 +#define MGMT_STATUS_CONNECT_FAILED 0x04 +#define MGMT_STATUS_AUTH_FAILED0x05 +#define MGMT_STATUS_NOT_PAIRED 0x06 +#define MGMT_STATUS_NO_RESOURCES 0x07 +#define MGMT_STATUS_TIMEOUT0x08 +#define MGMT_STATUS_ALREADY_CONNECTED 0x09 +#define MGMT_STATUS_BUSY 0x0a +#define MGMT_STATUS_REJECTED 0x0b +#define MGMT_STATUS_NOT_SUPPORTED 0x0c +#define MGMT_STATUS_INVALID_PARAMS 0x0d +#define MGMT_STATUS_DISCONNECTED 0x0e +#define MGMT_STATUS_NOT_POWERED0x0f +#define MGMT_STATUS_CANCELLED 0x10 +#define MGMT_STATUS_INVALID_INDEX 0x11 +#define MGMT_STATUS_RFKILLED 0x12 + +struct mgmt_hdr { + uint16_t opcode; + uint16_t index; + uint16_t le
[arch-commits] Commit in libpcap/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 13:54:42 Author: thomas Revision: 243396 upgpkg: libpcap 1.7.4-1 Modified: libpcap/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 11:43:08 UTC (rev 243395) +++ PKGBUILD2015-08-13 11:54:42 UTC (rev 243396) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=libpcap -pkgver=1.6.2 +pkgver=1.7.4 pkgrel=1 pkgdesc="A system-independent interface for user-level packet capture" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ makedepends=('flex' 'bluez-libs') source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz{,.sig} mgmt.h) -sha256sums=('5db3e2998f1eeba2c76da55da5d474248fe19c44f49e15cac8a796a2c7e19690' +sha256sums=('7ad3112187e88328b85e46dce7a9b949632af18ee74d97ffc3f2b41fe7f448b0' 'SKIP' '7c85da5330ce7ecb6934795c02c652b9e344461302cf74804a4692c3e2e1e7e2') validpgpkeys=('1F166A5742ABB9E0249A8D30E089DEF1D9C15D0D') # The Tcpdump Group @@ -24,7 +24,7 @@ build() { cd ${srcdir}/${pkgname}-${pkgver} - CFLAGS="$CFLAGS -I${srcdir}/include" \ + CFLAGS="$CFLAGS -I${srcdir}/include $(pkg-config libnl-genl-3.0 --cflags)" \ ./configure --prefix=/usr \ --enable-ipv6 \ --enable-bluetooth \
[arch-commits] Commit in lib32-v4l-utils/repos/multilib-x86_64 (PKGBUILD PKGBUILD)
Date: Thursday, August 13, 2015 @ 13:46:41 Author: thomas Revision: 138297 archrelease: copy trunk to multilib-x86_64 Added: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD (from rev 138296, lib32-v4l-utils/trunk/PKGBUILD) Deleted: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD --+ PKGBUILD | 73 ++--- 1 file changed, 37 insertions(+), 36 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-08-13 11:46:32 UTC (rev 138296) +++ PKGBUILD2015-08-13 11:46:41 UTC (rev 138297) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Jan "heftig" Steffens -_pkgbasename=v4l-utils -pkgname=lib32-$_pkgbasename -pkgver=1.6.0 -pkgrel=1 -pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" -arch=('x86_64') -url="http://linuxtv.org/"; -provides=("lib32-libv4l=$pkgver") -replaces=('lib32-libv4l') -conflicts=('lib32-libv4l') -license=('LGPL') -makedepends=('gcc-multilib') -depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) -source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 - http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) -sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' -'SKIP') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc - make -C lib -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - MAKEFLAGS="-j1" make -C lib install DESTDIR="${pkgdir}/" - rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,lib} -} Copied: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD (from rev 138296, lib32-v4l-utils/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-08-13 11:46:41 UTC (rev 138297) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Jan "heftig" Steffens +_pkgbasename=v4l-utils +pkgname=lib32-$_pkgbasename +pkgver=1.6.3 +pkgrel=1 +pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" +arch=('x86_64') +url="http://linuxtv.org/"; +provides=("lib32-libv4l=$pkgver") +replaces=('lib32-libv4l') +conflicts=('lib32-libv4l') +license=('LGPL') +makedepends=('gcc-multilib') +depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) +source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 + http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) +validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny +sha256sums=('164abf5c1befcd27e8e6ef824a82d4015bdfb5d99ae82daa00e77d895ff9864c' +'SKIP') + +build() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc + make -C lib +} + +package() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + MAKEFLAGS="-j1" make -C lib install DESTDIR="${pkgdir}/" + rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,lib} +}
[arch-commits] Commit in lib32-v4l-utils/trunk (PKGBUILD)
Date: Thursday, August 13, 2015 @ 13:46:32 Author: thomas Revision: 138296 upgpkg: lib32-v4l-utils 1.6.3-1 Modified: lib32-v4l-utils/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 10:05:16 UTC (rev 138295) +++ PKGBUILD2015-08-13 11:46:32 UTC (rev 138296) @@ -2,7 +2,7 @@ # Maintainer: Jan "heftig" Steffens _pkgbasename=v4l-utils pkgname=lib32-$_pkgbasename -pkgver=1.6.0 +pkgver=1.6.3 pkgrel=1 pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" arch=('x86_64') @@ -15,8 +15,8 @@ depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) -validpgpkeys=(05D0169C26E41593418129DF199A64FADFB500FF) -sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' +validpgpkeys=('05D0169C26E41593418129DF199A64FADFB500FF') # Gregor Jasny +sha256sums=('164abf5c1befcd27e8e6ef824a82d4015bdfb5d99ae82daa00e77d895ff9864c' 'SKIP') build() {
[arch-commits] Commit in watchdog/trunk (3 files)
Date: Thursday, August 13, 2015 @ 13:42:53 Author: thomas Revision: 243394 upgpkg: watchdog 5.14-1 Added: watchdog/trunk/watchdog.logrotate Modified: watchdog/trunk/PKGBUILD Deleted: watchdog/trunk/watchdog-5.12-fix-oom-in-wd_keepalive.patch -+ PKGBUILD| 19 --- watchdog-5.12-fix-oom-in-wd_keepalive.patch | 11 --- watchdog.logrotate |3 +++ 3 files changed, 11 insertions(+), 22 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-08-13 08:46:04 UTC (rev 243393) +++ PKGBUILD2015-08-13 11:42:53 UTC (rev 243394) @@ -2,8 +2,8 @@ # Maintainer: Thomas Bächler pkgname=watchdog -pkgver=5.13 -pkgrel=2 +pkgver=5.14 +pkgrel=1 pkgdesc="Watchdog daemon" arch=(i686 x86_64) url="http://sourceforge.net/projects/watchdog"; @@ -11,15 +11,11 @@ depends=('glibc') backup=(etc/watchdog.conf) source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz -watchdog-5.12-fix-oom-in-wd_keepalive.patch -watchdog.systemd) -md5sums=('153455f008f1cf8f65f6ad9586a21ff1' - 'c90c2686975b5254f82b3de683f1f442' - '06677f094ec76b7fbb7b0db141209dec') -prepare() { - cd "${srcdir}"/${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/watchdog-5.12-fix-oom-in-wd_keepalive.patch -} +watchdog.systemd +watchdog.logrotate) +md5sums=('5b2dba0c593942f4acc100bca0d560c4' + '06677f094ec76b7fbb7b0db141209dec' + '6430e9071aa724918b47f8c3b0412a5f') build() { cd "${srcdir}"/${pkgname}-${pkgver} @@ -40,4 +36,5 @@ cd "${srcdir}"/${pkgname}-${pkgver} make install DESTDIR="${pkgdir}" install -D -m644 "${srcdir}"/watchdog.systemd "${pkgdir}"/usr/lib/systemd/system/watchdog.service + install -D -m644 "${srcdir}"/watchdog.logrotate "${pkgdir}"/etc/logrotate.d/watchdog } Deleted: watchdog-5.12-fix-oom-in-wd_keepalive.patch === --- watchdog-5.12-fix-oom-in-wd_keepalive.patch 2015-08-13 08:46:04 UTC (rev 243393) +++ watchdog-5.12-fix-oom-in-wd_keepalive.patch 2015-08-13 11:42:53 UTC (rev 243394) @@ -1,11 +0,0 @@ -diff -Nur watchdog-5.12.orig/src/wd_keepalive.c watchdog-5.12/src/wd_keepalive.c watchdog-5.12.orig/src/wd_keepalive.c 2012-04-05 12:16:33.0 +0200 -+++ watchdog-5.12/src/wd_keepalive.c 2012-05-13 16:15:36.786543263 +0200 -@@ -26,6 +26,7 @@ - #include - #include - #include -+#include - #include - #include - #include Added: watchdog.logrotate === --- watchdog.logrotate (rev 0) +++ watchdog.logrotate 2015-08-13 11:42:53 UTC (rev 243394) @@ -0,0 +1,3 @@ +/var/log/watchdog/* { + missingok +}
[arch-commits] Commit in watchdog/repos (12 files)
Date: Thursday, August 13, 2015 @ 13:43:08 Author: thomas Revision: 243395 archrelease: copy trunk to extra-i686, extra-x86_64 Added: watchdog/repos/extra-i686/PKGBUILD (from rev 243394, watchdog/trunk/PKGBUILD) watchdog/repos/extra-i686/watchdog.logrotate (from rev 243394, watchdog/trunk/watchdog.logrotate) watchdog/repos/extra-i686/watchdog.systemd (from rev 243394, watchdog/trunk/watchdog.systemd) watchdog/repos/extra-x86_64/PKGBUILD (from rev 243394, watchdog/trunk/PKGBUILD) watchdog/repos/extra-x86_64/watchdog.logrotate (from rev 243394, watchdog/trunk/watchdog.logrotate) watchdog/repos/extra-x86_64/watchdog.systemd (from rev 243394, watchdog/trunk/watchdog.systemd) Deleted: watchdog/repos/extra-i686/PKGBUILD watchdog/repos/extra-i686/watchdog-5.12-fix-oom-in-wd_keepalive.patch watchdog/repos/extra-i686/watchdog.systemd watchdog/repos/extra-x86_64/PKGBUILD watchdog/repos/extra-x86_64/watchdog-5.12-fix-oom-in-wd_keepalive.patch watchdog/repos/extra-x86_64/watchdog.systemd --+ /PKGBUILD| 80 + /watchdog.systemd| 20 +++ extra-i686/PKGBUILD | 43 -- extra-i686/watchdog-5.12-fix-oom-in-wd_keepalive.patch | 11 - extra-i686/watchdog.logrotate|3 extra-i686/watchdog.systemd | 10 - extra-x86_64/PKGBUILD| 43 -- extra-x86_64/watchdog-5.12-fix-oom-in-wd_keepalive.patch | 11 - extra-x86_64/watchdog.logrotate |3 extra-x86_64/watchdog.systemd| 10 - 10 files changed, 106 insertions(+), 128 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-08-13 11:42:53 UTC (rev 243394) +++ extra-i686/PKGBUILD 2015-08-13 11:43:08 UTC (rev 243395) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=watchdog -pkgver=5.13 -pkgrel=2 -pkgdesc="Watchdog daemon" -arch=(i686 x86_64) -url="http://sourceforge.net/projects/watchdog"; -license=('GPL') -depends=('glibc') -backup=(etc/watchdog.conf) -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz -watchdog-5.12-fix-oom-in-wd_keepalive.patch -watchdog.systemd) -md5sums=('153455f008f1cf8f65f6ad9586a21ff1' - 'c90c2686975b5254f82b3de683f1f442' - '06677f094ec76b7fbb7b0db141209dec') -prepare() { - cd "${srcdir}"/${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/watchdog-5.12-fix-oom-in-wd_keepalive.patch -} - -build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - ./configure \ - --prefix=/usr \ ---sbindir=/usr/bin \ - --mandir=/usr/share/man \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-pidfile=/run/watchdog.pid \ - --with-ka_pidfile=/run/wd_keepalive.pid - - make -} - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - make install DESTDIR="${pkgdir}" - install -D -m644 "${srcdir}"/watchdog.systemd "${pkgdir}"/usr/lib/systemd/system/watchdog.service -} Copied: watchdog/repos/extra-i686/PKGBUILD (from rev 243394, watchdog/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-08-13 11:43:08 UTC (rev 243395) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=watchdog +pkgver=5.14 +pkgrel=1 +pkgdesc="Watchdog daemon" +arch=(i686 x86_64) +url="http://sourceforge.net/projects/watchdog"; +license=('GPL') +depends=('glibc') +backup=(etc/watchdog.conf) +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz +watchdog.systemd +watchdog.logrotate) +md5sums=('5b2dba0c593942f4acc100bca0d560c4' + '06677f094ec76b7fbb7b0db141209dec' + '6430e9071aa724918b47f8c3b0412a5f') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr \ +--sbindir=/usr/bin \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-pidfile=/run/watchdog.pid \ + --with-ka_pidfile=/run/wd_keepalive.pid + + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + make install DESTDIR="${pkgdir}" + install -D -m644 "${srcdir}"/watchdog.systemd "${pkgdir}"/usr/lib/systemd/system/watchdog.service + install -D -m644 "${srcdir}"/watchdog.logrotate "${pkgdir}"/etc/logrotate.d/watchdog +} Deleted: extra-i686/watchdog
[arch-commits] Commit in archlinux-keyring/repos (testing-any)
Date: Saturday, May 23, 2015 @ 23:29:14 Author: thomas Revision: 239683 db-remove: archlinux-keyring removed by thomas Deleted: archlinux-keyring/repos/testing-any/
[arch-commits] Commit in archlinux-keyring/trunk (PKGBUILD)
Date: Saturday, May 23, 2015 @ 23:28:15 Author: thomas Revision: 239681 upgpkg: archlinux-keyring 20150523-1 Modified: archlinux-keyring/trunk/PKGBUILD --+ PKGBUILD |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-05-23 19:49:30 UTC (rev 239680) +++ PKGBUILD2015-05-23 21:28:15 UTC (rev 239681) @@ -2,7 +2,7 @@ # Maintainer: Pierre Schmitz pkgname=archlinux-keyring -pkgver=20150514 +pkgver=20150523 pkgrel=1 pkgdesc='Arch Linux PGP keyring' arch=('any') @@ -11,9 +11,12 @@ install="${pkgname}.install" source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz"; "https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";) -md5sums=('31e15e71dfd27efb984d2defa5d7515b' +md5sums=('ea1a42fbdc3eaa023ca0095a2c6526b3' 'SKIP') -validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC') +validpgpkeys=( + '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC' # Pierre + 'A314827C4E4250A204CE6E13284FC34C8E4B1A25' # Thomas + ) package() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in archlinux-keyring/repos/core-any (4 files)
Date: Saturday, May 23, 2015 @ 23:28:22 Author: thomas Revision: 239682 archrelease: copy trunk to core-any Added: archlinux-keyring/repos/core-any/PKGBUILD (from rev 239681, archlinux-keyring/trunk/PKGBUILD) archlinux-keyring/repos/core-any/archlinux-keyring.install (from rev 239681, archlinux-keyring/trunk/archlinux-keyring.install) Deleted: archlinux-keyring/repos/core-any/PKGBUILD archlinux-keyring/repos/core-any/archlinux-keyring.install ---+ PKGBUILD | 45 +++- archlinux-keyring.install | 44 +-- 2 files changed, 46 insertions(+), 43 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-05-23 21:28:15 UTC (rev 239681) +++ PKGBUILD2015-05-23 21:28:22 UTC (rev 239682) @@ -1,21 +0,0 @@ -# $Id$ -# Maintainer: Pierre Schmitz - -pkgname=archlinux-keyring -pkgver=20150212 -pkgrel=1 -pkgdesc='Arch Linux PGP keyring' -arch=('any') -url='https://projects.archlinux.org/archlinux-keyring.git/' -license=('GPL') -install="${pkgname}.install" -source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz"; - "https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";) -md5sums=('6f1c01af59098e16918f97ff947f7e54' - 'SKIP') -validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC') - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make PREFIX=/usr DESTDIR=${pkgdir} install -} Copied: archlinux-keyring/repos/core-any/PKGBUILD (from rev 239681, archlinux-keyring/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-05-23 21:28:22 UTC (rev 239682) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Pierre Schmitz + +pkgname=archlinux-keyring +pkgver=20150523 +pkgrel=1 +pkgdesc='Arch Linux PGP keyring' +arch=('any') +url='https://projects.archlinux.org/archlinux-keyring.git/' +license=('GPL') +install="${pkgname}.install" +source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz"; + "https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";) +md5sums=('ea1a42fbdc3eaa023ca0095a2c6526b3' + 'SKIP') +validpgpkeys=( + '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC' # Pierre + 'A314827C4E4250A204CE6E13284FC34C8E4B1A25' # Thomas + ) + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR=${pkgdir} install +} Deleted: archlinux-keyring.install === --- archlinux-keyring.install 2015-05-23 21:28:15 UTC (rev 239681) +++ archlinux-keyring.install 2015-05-23 21:28:22 UTC (rev 239682) @@ -1,22 +0,0 @@ -post_upgrade() { - if usr/bin/pacman-key -l >/dev/null 2>&1; then - usr/bin/pacman-key --populate archlinux - - # Re-enable key of dwallace - # See https://bugs.archlinux.org/task/35478 - if [ -z "$2" ] || [ "$2" = "20130525-1" ]; then - printf 'enable\nquit\n' | LANG=C \ - gpg --homedir /etc/pacman.d/gnupg \ - --no-permission-warning --command-fd 0 \ - --quiet --batch --edit-key \ - 5559BC1A32B8F76B3FCCD9555FA5E5544F010D48 \ - 2>/dev/null - fi - fi -} - -post_install() { - if [ -x usr/bin/pacman-key ]; then - post_upgrade - fi -} Copied: archlinux-keyring/repos/core-any/archlinux-keyring.install (from rev 239681, archlinux-keyring/trunk/archlinux-keyring.install) === --- archlinux-keyring.install (rev 0) +++ archlinux-keyring.install 2015-05-23 21:28:22 UTC (rev 239682) @@ -0,0 +1,22 @@ +post_upgrade() { + if usr/bin/pacman-key -l >/dev/null 2>&1; then + usr/bin/pacman-key --populate archlinux + + # Re-enable key of dwallace + # See https://bugs.archlinux.org/task/35478 + if [ -z "$2" ] || [ "$2" = "20130525-1" ]; then + printf 'enable\nquit\n' | LANG=C \ + gpg --homedir /etc/pacman.d/gnupg \ + --no-permission-warning --command-fd 0 \ + --quiet --batch --edit-key \ + 5559BC1A32B8F76B3FCCD9555FA5E5544F010D48 \ + 2>/dev/null + fi + fi +} + +post_install() { + if [ -x usr/bin/pacman-key ]; then + post_upgrade + fi +}
[arch-commits] Commit in linux/trunk (PKGBUILD)
Date: Monday, January 26, 2015 @ 00:51:31 Author: thomas Revision: 23 typo Modified: linux/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-01-25 22:48:55 UTC (rev 22) +++ PKGBUILD2015-01-25 23:51:31 UTC (rev 23) @@ -33,7 +33,7 @@ '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99' '0bda45a3ef0f2780bbe588f2e53ab2b79814d29e9c6fc7bfff3b0dbdaa9e710d') validpgpkeys=( - 'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linux Torvalds + 'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman )
[arch-commits] Commit in linux/trunk (PKGBUILD)
Date: Sunday, December 21, 2014 @ 14:05:22 Author: thomas Revision: 227861 linux: Verify source signatures Modified: linux/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 8 insertions(+) Modified: PKGBUILD === --- PKGBUILD2014-12-21 08:44:41 UTC (rev 227860) +++ PKGBUILD2014-12-21 13:05:22 UTC (rev 227861) @@ -13,7 +13,9 @@ makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc') options=('!strip') source=("https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz"; +"https://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.sign"; "https://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz"; +"https://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.sign"; # the main kernel config files 'config' 'config.x86_64' # standard config files for mkinitcpio ramdisk @@ -21,11 +23,17 @@ 'change-default-console-loglevel.patch' ) sha256sums=('becc413cc9e6d7f5cc52a3ce66d65c3725bc1d1cc1001f4ce6c32b69eb188cbd' +'SKIP' '4df87c395c94012544ca297db6608fe8e7c8fb5289641c4bfb4d9d87b6f06968' +'SKIP' 'd3794c8b2cd11b71914b41f7a4e861369d4fa3c29fdd9e1d677ff0c2167eeb52' 'df7886f5d57f8f85e89987066dfa5c316e922dc0b22e6e6ad01331333db52377' 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c' '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99') +validpgpkeys=( + 'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linux Torvalds + '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman + ) _kernelname=${pkgbase#linux}
[arch-commits] Commit in linux/trunk (4 files)
Date: Sunday, December 7, 2014 @ 10:22:03 Author: thomas Revision: 227341 linux: Use proper patches from git instead of manually modifying them. Added: linux/trunk/0001-x86-microcode-Update-BSPs-microcode-on-resume.patch linux/trunk/0002-x86-microcode-Limit-the-microcode-reloading-to-64-bi.patch Modified: linux/trunk/PKGBUILD Deleted: linux/trunk/fix_CPU0_microcode_on_resume.patch -+ 0001-x86-microcode-Update-BSPs-microcode-on-resume.patch| 48 + 0002-x86-microcode-Limit-the-microcode-reloading-to-64-bi.patch | 55 + PKGBUILD| 10 - fix_CPU0_microcode_on_resume.patch | 92 -- 4 files changed, 110 insertions(+), 95 deletions(-) Added: 0001-x86-microcode-Update-BSPs-microcode-on-resume.patch === --- 0001-x86-microcode-Update-BSPs-microcode-on-resume.patch (rev 0) +++ 0001-x86-microcode-Update-BSPs-microcode-on-resume.patch2014-12-07 09:22:03 UTC (rev 227341) @@ -0,0 +1,48 @@ +From fb86b97300d930b57471068720c52bfa8622eab7 Mon Sep 17 00:00:00 2001 +From: Borislav Petkov +Date: Tue, 18 Nov 2014 10:46:57 +0100 +Subject: [PATCH] x86, microcode: Update BSPs microcode on resume +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +In the situation when we apply early microcode but do *not* apply late +microcode, we fail to update the BSP's microcode on resume because we +haven't initialized the uci->mc microcode pointer. So, in order to +alleviate that, we go and dig out the stashed microcode patch during +early boot. It is basically the same thing that is done on the APs early +during boot so do that too here. + +Tested-by: alex.schna...@gmail.com +Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=88001 +Cc: Henrique de Moraes Holschuh +Cc: Fenghua Yu +Cc: # v3.9 +Signed-off-by: Borislav Petkov +Link: http://lkml.kernel.org/r/20141118094657.ga6...@pd.tnic +Signed-off-by: Thomas Gleixner +--- + arch/x86/kernel/cpu/microcode/core.c | 8 + 1 file changed, 8 insertions(+) + +diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +index dd9d619..2ce9051 100644 +--- a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +@@ -465,6 +465,14 @@ static void mc_bp_resume(void) + + if (uci->valid && uci->mc) + microcode_ops->apply_microcode(cpu); ++ else if (!uci->mc) ++ /* ++ * We might resume and not have applied late microcode but still ++ * have a newer patch stashed from the early loader. We don't ++ * have it in uci->mc so we have to load it the same way we're ++ * applying patches early on the APs. ++ */ ++ load_ucode_ap(); + } + + static struct syscore_ops mc_syscore_ops = { +-- +2.1.3 + Added: 0002-x86-microcode-Limit-the-microcode-reloading-to-64-bi.patch === --- 0002-x86-microcode-Limit-the-microcode-reloading-to-64-bi.patch (rev 0) +++ 0002-x86-microcode-Limit-the-microcode-reloading-to-64-bi.patch 2014-12-07 09:22:03 UTC (rev 227341) @@ -0,0 +1,55 @@ +From 02ecc41abcea4ff9291d548f6f846b29b354ddd2 Mon Sep 17 00:00:00 2001 +From: Borislav Petkov +Date: Sun, 30 Nov 2014 14:26:39 +0100 +Subject: [PATCH] x86, microcode: Limit the microcode reloading to 64-bit for + now +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +First, there was this: https://bugzilla.kernel.org/show_bug.cgi?id=88001 + +The problem there was that microcode patches are not being reapplied +after suspend-to-ram. It was important to reapply them, though, because +of for example Haswell's TSX erratum which disabled TSX instructions +with a microcode patch. + +A simple fix was fb86b97300d9 ("x86, microcode: Update BSPs microcode +on resume") but, as it is often the case, simple fixes are too +simple. This one causes 32-bit resume to fail: + +https://bugzilla.kernel.org/show_bug.cgi?id=88391 + +Properly fixing this would require more involved changes for which it +is too late now, right before the merge window. Thus, limit this to +64-bit only temporarily. + +Signed-off-by: Borislav Petkov +Link: http://lkml.kernel.org/r/1417353999-32236-1-git-send-email...@alien8.de +Signed-off-by: Thomas Gleixner +--- + arch/x86/kernel/cpu/microcode/core.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +index 2ce9051..08fe6e8 100644 +--- a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +@@ -465,6 +465,7 @@ static void mc_bp_resume(void) + + if (uci->valid && uci->mc) + microcode_ops->app
[arch-commits] Commit in linux-firmware/repos (testing-any testing-any/PKGBUILD)
Date: Saturday, December 6, 2014 @ 15:27:07 Author: thomas Revision: 227324 archrelease: copy trunk to testing-any Added: linux-firmware/repos/testing-any/ linux-firmware/repos/testing-any/PKGBUILD (from rev 227323, linux-firmware/trunk/PKGBUILD) --+ PKGBUILD | 57 + 1 file changed, 57 insertions(+) Copied: linux-firmware/repos/testing-any/PKGBUILD (from rev 227323, linux-firmware/trunk/PKGBUILD) === --- testing-any/PKGBUILD(rev 0) +++ testing-any/PKGBUILD2014-12-06 14:27:07 UTC (rev 227324) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=linux-firmware +# Commit date + git rev-parse --short origin/master +_rev=38e5405 +pkgver=20141201.${_rev} +pkgrel=1 +pkgdesc="Firmware files for Linux" +makedepends=('git') +arch=('any') +url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary"; +license=('GPL2' 'GPL3' 'custom') +conflicts=('linux-firmware-git' + 'kernel26-firmware' + 'ar9170-fw' + 'iwlwifi-1000-ucode' + 'iwlwifi-3945-ucode' + 'iwlwifi-4965-ucode' + 'iwlwifi-5000-ucode' + 'iwlwifi-5150-ucode' + 'iwlwifi-6000-ucode' + 'rt2870usb-fw' + 'rt2x00-rt61-fw' + 'rt2x00-rt71w-fw' + 'amd-ucode') +replaces=('kernel26-firmware' + 'ar9170-fw' + 'iwlwifi-1000-ucode' + 'iwlwifi-3945-ucode' + 'iwlwifi-4965-ucode' + 'iwlwifi-5000-ucode' + 'iwlwifi-5150-ucode' + 'iwlwifi-6000-ucode' + 'rt2870usb-fw' + 'rt2x00-rt61-fw' + 'rt2x00-rt71w-fw' + 'amd-ucode') +options=(!strip) +source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev}";) +md5sums=('SKIP') + +package() { + cd "${srcdir}/${pkgname}" + + make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install + rm "${pkgdir}/usr/lib/firmware/"{Makefile,README,configure,GPL-3} + + install -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm644 LICEN* WHENCE "${pkgdir}/usr/share/licenses/linux-firmware/" + + # Trigger a microcode reload for configurations not using early updates + install -d "${pkgdir}/usr/lib/tmpfiles.d" + echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \ +>"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf" +} +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in linux-firmware/trunk (PKGBUILD)
Date: Saturday, December 6, 2014 @ 15:26:44 Author: thomas Revision: 227323 upgpkg: linux-firmware 20141201.38e5405-1: update to latest git Modified: linux-firmware/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-12-06 14:18:40 UTC (rev 227322) +++ PKGBUILD2014-12-06 14:26:44 UTC (rev 227323) @@ -3,7 +3,8 @@ pkgname=linux-firmware # Commit date + git rev-parse --short origin/master -pkgver=20141009.0e5f637 +_rev=38e5405 +pkgver=20141201.${_rev} pkgrel=1 pkgdesc="Firmware files for Linux" makedepends=('git') @@ -36,7 +37,7 @@ 'rt2x00-rt71w-fw' 'amd-ucode') options=(!strip) -source=('git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=0e5f637') +source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev}";) md5sums=('SKIP') package() {
[arch-commits] Commit in linux/repos (16 files)
Date: Saturday, December 6, 2014 @ 15:18:40 Author: thomas Revision: 227322 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux/repos/testing-i686/ linux/repos/testing-i686/PKGBUILD (from rev 227321, linux/trunk/PKGBUILD) linux/repos/testing-i686/change-default-console-loglevel.patch (from rev 227321, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-i686/config (from rev 227321, linux/trunk/config) linux/repos/testing-i686/config.x86_64 (from rev 227321, linux/trunk/config.x86_64) linux/repos/testing-i686/fix_CPU0_microcode_on_resume.patch (from rev 227321, linux/trunk/fix_CPU0_microcode_on_resume.patch) linux/repos/testing-i686/linux.install (from rev 227321, linux/trunk/linux.install) linux/repos/testing-i686/linux.preset (from rev 227321, linux/trunk/linux.preset) linux/repos/testing-x86_64/ linux/repos/testing-x86_64/PKGBUILD (from rev 227321, linux/trunk/PKGBUILD) linux/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 227321, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-x86_64/config (from rev 227321, linux/trunk/config) linux/repos/testing-x86_64/config.x86_64 (from rev 227321, linux/trunk/config.x86_64) linux/repos/testing-x86_64/fix_CPU0_microcode_on_resume.patch (from rev 227321, linux/trunk/fix_CPU0_microcode_on_resume.patch) linux/repos/testing-x86_64/linux.install (from rev 227321, linux/trunk/linux.install) linux/repos/testing-x86_64/linux.preset (from rev 227321, linux/trunk/linux.preset) --+ testing-i686/PKGBUILD| 299 testing-i686/change-default-console-loglevel.patch | 11 testing-i686/config | 7131 + testing-i686/config.x86_64 | 6890 testing-i686/fix_CPU0_microcode_on_resume.patch | 46 testing-i686/linux.install | 37 testing-i686/linux.preset| 14 testing-x86_64/PKGBUILD | 299 testing-x86_64/change-default-console-loglevel.patch | 11 testing-x86_64/config| 7131 + testing-x86_64/config.x86_64 | 6890 testing-x86_64/fix_CPU0_microcode_on_resume.patch| 46 testing-x86_64/linux.install | 37 testing-x86_64/linux.preset | 14 14 files changed, 28856 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 227321:227322 to see the changes.
[arch-commits] Commit in linux/trunk (PKGBUILD fix_CPU0_microcode_on_resume.patch)
Date: Saturday, December 6, 2014 @ 15:18:18 Author: thomas Revision: 227321 upgpkg: linux 3.17.4-2: Use correct microcode resume fix Modified: linux/trunk/PKGBUILD linux/trunk/fix_CPU0_microcode_on_resume.patch + PKGBUILD | 11 +--- fix_CPU0_microcode_on_resume.patch | 47 ++- 2 files changed, 38 insertions(+), 20 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-12-06 11:59:15 UTC (rev 227320) +++ PKGBUILD2014-12-06 14:18:18 UTC (rev 227321) @@ -6,7 +6,7 @@ #pkgbase=linux-custom # Build kernel with a different name _srcname=linux-3.17 pkgver=3.17.4 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://www.kernel.org/"; license=('GPL2') @@ -27,7 +27,7 @@ '66fc95823d3c99167532f37c07e9582d305961103997fcc61cfc7f6a86b34130' 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c' '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99' -'43668fe46147fe93f41b919db673574427ce5a8c376cd28cbf3a00326491') +'4eb64c2520e9bcdff47d757946011b4bf9896186d285361f18364c7ff9b2c699') _kernelname=${pkgbase#linux} @@ -297,10 +297,3 @@ done # vim:set ts=8 sts=2 sw=2 et: -sha256sums=('f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251' -'eeef37397a15245bd143569908be40622a87dc7673965e623e811ea3f68b8434' -'ea9de72fe335055f6e8eebd1d85cad150a47a81004bb27d78f18f2591fd3bbd5' -'66fc95823d3c99167532f37c07e9582d305961103997fcc61cfc7f6a86b34130' -'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c' -'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99' -'43668fe46147fe93f41b919db673574427ce5a8c376cd28cbf3a00326491') Modified: fix_CPU0_microcode_on_resume.patch === --- fix_CPU0_microcode_on_resume.patch 2014-12-06 11:59:15 UTC (rev 227320) +++ fix_CPU0_microcode_on_resume.patch 2014-12-06 14:18:18 UTC (rev 227321) @@ -1,21 +1,46 @@ +From fb86b97300d930b57471068720c52bfa8622eab7 Mon Sep 17 00:00:00 2001 +From: Borislav Petkov +Date: Tue, 18 Nov 2014 10:46:57 +0100 +Subject: [PATCH] x86, microcode: Update BSPs microcode on resume + +In the situation when we apply early microcode but do *not* apply late +microcode, we fail to update the BSP's microcode on resume because we +haven't initialized the uci->mc microcode pointer. So, in order to +alleviate that, we go and dig out the stashed microcode patch during +early boot. It is basically the same thing that is done on the APs early +during boot so do that too here. + +Tested-by: alex.schna...@gmail.com +Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=88001 +Cc: Henrique de Moraes Holschuh +Cc: Fenghua Yu +Cc: # v3.9 +Signed-off-by: Borislav Petkov +Link: http://lkml.kernel.org/r/20141118094657.ga6...@pd.tnic +Signed-off-by: Thomas Gleixner +--- + arch/x86/kernel/cpu/microcode/core.c | 8 + 1 file changed, 8 insertions(+) + diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c -index dd9d6190b08d..181e42bd85d3 100644 +index dd9d619..2ce9051 100644 --- a/arch/x86/kernel/cpu/microcode/core.c +++ b/arch/x86/kernel/cpu/microcode/core.c -@@ -85,6 +85,7 @@ - #include +@@ -465,6 +465,14 @@ static void mc_bp_resume(void) - #include -+#include - #include - #include - #include -@@ -465,6 +466,8 @@ static void mc_bp_resume(void) - if (uci->valid && uci->mc) microcode_ops->apply_microcode(cpu); + else if (!uci->mc) -+ load_ucode_intel_ap(); ++ /* ++ * We might resume and not have applied late microcode but still ++ * have a newer patch stashed from the early loader. We don't ++ * have it in uci->mc so we have to load it the same way we're ++ * applying patches early on the APs. ++ */ ++ load_ucode_ap(); } static struct syscore_ops mc_syscore_ops = { +-- +2.1.3 +
[arch-commits] Commit in openvpn/repos (14 files)
Date: Tuesday, December 2, 2014 @ 21:17:34 Author: thomas Revision: 227256 db-move: moved openvpn from [testing] to [core] (i686, x86_64) Added: openvpn/repos/core-i686/PKGBUILD (from rev 227255, openvpn/repos/testing-i686/PKGBUILD) openvpn/repos/core-i686/openvpn.install (from rev 227255, openvpn/repos/testing-i686/openvpn.install) openvpn/repos/core-i686/openvpn@.service (from rev 227255, openvpn/repos/testing-i686/openvpn@.service) openvpn/repos/core-x86_64/PKGBUILD (from rev 227255, openvpn/repos/testing-x86_64/PKGBUILD) openvpn/repos/core-x86_64/openvpn.install (from rev 227255, openvpn/repos/testing-x86_64/openvpn.install) openvpn/repos/core-x86_64/openvpn@.service (from rev 227255, openvpn/repos/testing-x86_64/openvpn@.service) Deleted: openvpn/repos/core-i686/PKGBUILD openvpn/repos/core-i686/openvpn.install openvpn/repos/core-i686/openvpn@.service openvpn/repos/core-x86_64/PKGBUILD openvpn/repos/core-x86_64/openvpn.install openvpn/repos/core-x86_64/openvpn@.service openvpn/repos/testing-i686/ openvpn/repos/testing-x86_64/ --+ /PKGBUILD| 98 + /openvpn.install | 16 ++ /openvpn@.service| 20 core-i686/PKGBUILD | 49 core-i686/openvpn.install|8 --- core-i686/openvpn@.service | 10 core-x86_64/PKGBUILD | 49 core-x86_64/openvpn.install |8 --- core-x86_64/openvpn@.service | 10 9 files changed, 134 insertions(+), 134 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2014-12-02 11:06:39 UTC (rev 227255) +++ core-i686/PKGBUILD 2014-12-02 20:17:34 UTC (rev 227256) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=openvpn -pkgver=2.3.5 -pkgrel=1 -pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" -arch=(i686 x86_64) -url="http://openvpn.net/index.php/open-source.html"; -depends=('openssl' 'lzo' 'iproute2' 'libsystemd') -makedepends=('systemd') -license=('custom') -install=openvpn.install -source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz - http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc -openvpn@.service) -sha256sums=('d93b447b014a41ec1550c3b760871aa72d7c09f1b5c6fc1e013d3073ac29ca21' -'SKIP' -'860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df') - -build() { - cd "${srcdir}"/$pkgname-$pkgver - CFLAGS="$CFLAGS -DPLUGIN_LIBDIR=\\\"/usr/lib/openvpn\\\"" ./configure \ ---prefix=/usr \ ---sbindir=/usr/bin \ ---enable-password-save \ ---mandir=/usr/share/man \ ---enable-iproute2 \ ---enable-systemd - make -} - -package() { - cd "${srcdir}"/$pkgname-$pkgver - # Install openvpn - make DESTDIR="${pkgdir}" install - install -d -m755 "${pkgdir}"/etc/openvpn - # Install examples - install -d -m755 "${pkgdir}"/usr/share/openvpn - cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples - # Install license - install -d -m755 "${pkgdir}"/usr/share/licenses/${pkgname}/ - ln -sf /usr/share/doc/${pkgname}/{COPYING,COPYRIGHT.GPL} "${pkgdir}"/usr/share/licenses/${pkgname}/ - # Install contrib - install -d -m755 "${pkgdir}"/usr/share/openvpn/contrib - cp -r contrib "${pkgdir}"/usr/share/openvpn - # Install systemd service - install -D -m644 "${srcdir}"/openvpn@.service "${pkgdir}"/usr/lib/systemd/system/openvpn@.service -} Copied: openvpn/repos/core-i686/PKGBUILD (from rev 227255, openvpn/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2014-12-02 20:17:34 UTC (rev 227256) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=openvpn +pkgver=2.3.6 +pkgrel=1 +pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" +arch=(i686 x86_64) +url="http://openvpn.net/index.php/open-source.html"; +depends=('openssl' 'lzo' 'iproute2' 'libsystemd') +makedepends=('systemd') +license=('custom') +install=openvpn.install +source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz + http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc +openvpn@.service) +sha256sums=('7baed2ff39c12e1a1a289ec0b46fcc49ff094ca58b8d8d5f29b36ac649ee5b26' +'SKIP' +'860976d954b
[arch-commits] Commit in linux/repos (30 files)
Date: Sunday, November 16, 2014 @ 18:43:12 Author: thomas Revision: 226318 db-move: moved linux from [testing] to [core] (i686, x86_64) Added: linux/repos/core-i686/PKGBUILD (from rev 226317, linux/repos/testing-i686/PKGBUILD) linux/repos/core-i686/change-default-console-loglevel.patch (from rev 226317, linux/repos/testing-i686/change-default-console-loglevel.patch) linux/repos/core-i686/config (from rev 226317, linux/repos/testing-i686/config) linux/repos/core-i686/config.x86_64 (from rev 226317, linux/repos/testing-i686/config.x86_64) linux/repos/core-i686/fix_CPU0_microcode_on_resume.patch (from rev 226317, linux/repos/testing-i686/fix_CPU0_microcode_on_resume.patch) linux/repos/core-i686/linux.install (from rev 226317, linux/repos/testing-i686/linux.install) linux/repos/core-i686/linux.preset (from rev 226317, linux/repos/testing-i686/linux.preset) linux/repos/core-x86_64/PKGBUILD (from rev 226317, linux/repos/testing-x86_64/PKGBUILD) linux/repos/core-x86_64/change-default-console-loglevel.patch (from rev 226317, linux/repos/testing-x86_64/change-default-console-loglevel.patch) linux/repos/core-x86_64/config (from rev 226317, linux/repos/testing-x86_64/config) linux/repos/core-x86_64/config.x86_64 (from rev 226317, linux/repos/testing-x86_64/config.x86_64) linux/repos/core-x86_64/fix_CPU0_microcode_on_resume.patch (from rev 226317, linux/repos/testing-x86_64/fix_CPU0_microcode_on_resume.patch) linux/repos/core-x86_64/linux.install (from rev 226317, linux/repos/testing-x86_64/linux.install) linux/repos/core-x86_64/linux.preset (from rev 226317, linux/repos/testing-x86_64/linux.preset) Deleted: linux/repos/core-i686/PKGBUILD linux/repos/core-i686/change-default-console-loglevel.patch linux/repos/core-i686/compal-laptop-hwmon-fix.patch linux/repos/core-i686/config linux/repos/core-i686/config.x86_64 linux/repos/core-i686/linux.install linux/repos/core-i686/linux.preset linux/repos/core-x86_64/PKGBUILD linux/repos/core-x86_64/change-default-console-loglevel.patch linux/repos/core-x86_64/compal-laptop-hwmon-fix.patch linux/repos/core-x86_64/config linux/repos/core-x86_64/config.x86_64 linux/repos/core-x86_64/linux.install linux/repos/core-x86_64/linux.preset linux/repos/testing-i686/ linux/repos/testing-x86_64/ ---+ /PKGBUILD | 598 /change-default-console-loglevel.patch| 22 /config |14262 /config.x86_64|13780 +++ /linux.install| 74 /linux.preset | 28 core-i686/PKGBUILD| 293 core-i686/change-default-console-loglevel.patch | 11 core-i686/compal-laptop-hwmon-fix.patch | 14 core-i686/config | 7131 -- core-i686/config.x86_64 | 6890 - core-i686/fix_CPU0_microcode_on_resume.patch | 21 core-i686/linux.install | 37 core-i686/linux.preset| 14 core-x86_64/PKGBUILD | 293 core-x86_64/change-default-console-loglevel.patch | 11 core-x86_64/compal-laptop-hwmon-fix.patch | 14 core-x86_64/config| 7131 -- core-x86_64/config.x86_64 | 6890 - core-x86_64/fix_CPU0_microcode_on_resume.patch| 21 core-x86_64/linux.install | 37 core-x86_64/linux.preset | 14 22 files changed, 28806 insertions(+), 28780 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 226317:226318 to see the changes.
[arch-commits] Commit in linux/repos (16 files)
Date: Friday, November 14, 2014 @ 23:26:59 Author: thomas Revision: 226266 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux/repos/testing-i686/ linux/repos/testing-i686/PKGBUILD (from rev 226265, linux/trunk/PKGBUILD) linux/repos/testing-i686/change-default-console-loglevel.patch (from rev 226265, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-i686/config (from rev 226265, linux/trunk/config) linux/repos/testing-i686/config.x86_64 (from rev 226265, linux/trunk/config.x86_64) linux/repos/testing-i686/fix_CPU0_microcode_on_resume.patch (from rev 226265, linux/trunk/fix_CPU0_microcode_on_resume.patch) linux/repos/testing-i686/linux.install (from rev 226265, linux/trunk/linux.install) linux/repos/testing-i686/linux.preset (from rev 226265, linux/trunk/linux.preset) linux/repos/testing-x86_64/ linux/repos/testing-x86_64/PKGBUILD (from rev 226265, linux/trunk/PKGBUILD) linux/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 226265, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-x86_64/config (from rev 226265, linux/trunk/config) linux/repos/testing-x86_64/config.x86_64 (from rev 226265, linux/trunk/config.x86_64) linux/repos/testing-x86_64/fix_CPU0_microcode_on_resume.patch (from rev 226265, linux/trunk/fix_CPU0_microcode_on_resume.patch) linux/repos/testing-x86_64/linux.install (from rev 226265, linux/trunk/linux.install) linux/repos/testing-x86_64/linux.preset (from rev 226265, linux/trunk/linux.preset) --+ testing-i686/PKGBUILD| 299 testing-i686/change-default-console-loglevel.patch | 11 testing-i686/config | 7131 + testing-i686/config.x86_64 | 6890 testing-i686/fix_CPU0_microcode_on_resume.patch | 21 testing-i686/linux.install | 37 testing-i686/linux.preset| 14 testing-x86_64/PKGBUILD | 299 testing-x86_64/change-default-console-loglevel.patch | 11 testing-x86_64/config| 7131 + testing-x86_64/config.x86_64 | 6890 testing-x86_64/fix_CPU0_microcode_on_resume.patch| 21 testing-x86_64/linux.install | 37 testing-x86_64/linux.preset | 14 14 files changed, 28806 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 226265:226266 to see the changes.
[arch-commits] Commit in linux/trunk (3 files)
Date: Friday, November 14, 2014 @ 23:26:26 Author: thomas Revision: 226265 upgpkg: linux 3.17.3-1 Added: linux/trunk/fix_CPU0_microcode_on_resume.patch Modified: linux/trunk/PKGBUILD Deleted: linux/trunk/compal-laptop-hwmon-fix.patch + PKGBUILD | 12 +--- compal-laptop-hwmon-fix.patch | 14 -- fix_CPU0_microcode_on_resume.patch | 21 + 3 files changed, 30 insertions(+), 17 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-11-14 21:39:53 UTC (rev 226264) +++ PKGBUILD2014-11-14 22:26:26 UTC (rev 226265) @@ -5,7 +5,7 @@ pkgbase=linux # Build stock -ARCH kernel #pkgbase=linux-custom # Build kernel with a different name _srcname=linux-3.17 -pkgver=3.17.2 +pkgver=3.17.3 pkgrel=1 arch=('i686' 'x86_64') url="http://www.kernel.org/"; @@ -19,13 +19,15 @@ # standard config files for mkinitcpio ramdisk 'linux.preset' 'change-default-console-loglevel.patch' +'fix_CPU0_microcode_on_resume.patch' ) sha256sums=('f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251' -'4576c30a46c016502cdd007d28dde4f2d141c0f8096be8623a9ff519323db777' +'3c1ba3cc89d0f2d5f7303f448495f64db1ab96efea5f5fdd4b4c8c547600f85d' '0f1cd431115a2ce84629298d054d5e6f6e78095a3aeda4d1335740c9402efb7e' 'fb688bc7ccfa636990b26aecfe62500bc1e0f6c410a837eef03014c161df2ec8' 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c' -'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99') +'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99' +'43668fe46147fe93f41b919db673574427ce5a8c376cd28cbf3a00326491') _kernelname=${pkgbase#linux} @@ -43,6 +45,10 @@ # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227) patch -p1 -i "${srcdir}/change-default-console-loglevel.patch" + # Fix FS#42689 + # https://bugzilla.kernel.org/show_bug.cgi?id=88001 + patch -p1 -i "${srcdir}/fix_CPU0_microcode_on_resume.patch" + if [ "${CARCH}" = "x86_64" ]; then cat "${srcdir}/config.x86_64" > ./.config else Deleted: compal-laptop-hwmon-fix.patch === --- compal-laptop-hwmon-fix.patch 2014-11-14 21:39:53 UTC (rev 226264) +++ compal-laptop-hwmon-fix.patch 2014-11-14 22:26:26 UTC (rev 226265) @@ -1,14 +0,0 @@ -diff --git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c -index 7297df2..26bfd7b 100644 a/drivers/platform/x86/compal-laptop.c -+++ b/drivers/platform/x86/compal-laptop.c -@@ -1028,7 +1028,7 @@ static int compal_probe(struct platform_device *pdev) - return err; - - hwmon_dev = hwmon_device_register_with_groups(&pdev->dev, --DRIVER_NAME, data, -+"compal", data, - compal_hwmon_groups); - if (IS_ERR(hwmon_dev)) { - err = PTR_ERR(hwmon_dev); - Added: fix_CPU0_microcode_on_resume.patch === --- fix_CPU0_microcode_on_resume.patch (rev 0) +++ fix_CPU0_microcode_on_resume.patch 2014-11-14 22:26:26 UTC (rev 226265) @@ -0,0 +1,21 @@ +diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +index dd9d6190b08d..181e42bd85d3 100644 +--- a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c +@@ -85,6 +85,7 @@ + #include + + #include ++#include + #include + #include + #include +@@ -465,6 +466,8 @@ static void mc_bp_resume(void) + + if (uci->valid && uci->mc) + microcode_ops->apply_microcode(cpu); ++ else if (!uci->mc) ++ load_ucode_intel_ap(); + } + + static struct syscore_ops mc_syscore_ops = {
[arch-commits] Commit in openvpn/repos (14 files)
Date: Sunday, November 2, 2014 @ 08:46:48 Author: thomas Revision: 225544 db-move: moved openvpn from [testing] to [core] (i686, x86_64) Added: openvpn/repos/core-i686/PKGBUILD (from rev 225543, openvpn/repos/testing-i686/PKGBUILD) openvpn/repos/core-i686/openvpn.install (from rev 225543, openvpn/repos/testing-i686/openvpn.install) openvpn/repos/core-i686/openvpn@.service (from rev 225543, openvpn/repos/testing-i686/openvpn@.service) openvpn/repos/core-x86_64/PKGBUILD (from rev 225543, openvpn/repos/testing-x86_64/PKGBUILD) openvpn/repos/core-x86_64/openvpn.install (from rev 225543, openvpn/repos/testing-x86_64/openvpn.install) openvpn/repos/core-x86_64/openvpn@.service (from rev 225543, openvpn/repos/testing-x86_64/openvpn@.service) Deleted: openvpn/repos/core-i686/PKGBUILD openvpn/repos/core-i686/openvpn.install openvpn/repos/core-i686/openvpn@.service openvpn/repos/core-x86_64/PKGBUILD openvpn/repos/core-x86_64/openvpn.install openvpn/repos/core-x86_64/openvpn@.service openvpn/repos/testing-i686/ openvpn/repos/testing-x86_64/ --+ /PKGBUILD| 98 + /openvpn.install | 16 ++ /openvpn@.service| 20 core-i686/PKGBUILD | 49 core-i686/openvpn.install|8 --- core-i686/openvpn@.service | 10 core-x86_64/PKGBUILD | 49 core-x86_64/openvpn.install |8 --- core-x86_64/openvpn@.service | 10 9 files changed, 134 insertions(+), 134 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2014-11-02 07:46:27 UTC (rev 225543) +++ core-i686/PKGBUILD 2014-11-02 07:46:48 UTC (rev 225544) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=openvpn -pkgver=2.3.4 -pkgrel=1 -pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" -arch=(i686 x86_64) -url="http://openvpn.net/index.php/open-source.html"; -depends=('openssl' 'lzo2' 'iproute2') -makedepends=('systemd') -license=('custom') -install=openvpn.install -source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz - http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc -openvpn@.service) -sha256sums=('af506d5f48568fa8d2f2435cb3fad35f9a9a8f263999ea6df3ba296960cec85a' -'SKIP' -'860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df') - -build() { - cd "${srcdir}"/$pkgname-$pkgver - CFLAGS="$CFLAGS -DPLUGIN_LIBDIR=\\\"/usr/lib/openvpn\\\"" ./configure \ ---prefix=/usr \ ---sbindir=/usr/bin \ ---enable-password-save \ ---mandir=/usr/share/man \ ---enable-iproute2 \ ---enable-systemd - make -} - -package() { - cd "${srcdir}"/$pkgname-$pkgver - # Install openvpn - make DESTDIR="${pkgdir}" install - install -d -m755 "${pkgdir}"/etc/openvpn - # Install examples - install -d -m755 "${pkgdir}"/usr/share/openvpn - cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples - # Install license - install -d -m755 "${pkgdir}"/usr/share/licenses/${pkgname}/ - ln -sf /usr/share/doc/${pkgname}/{COPYING,COPYRIGHT.GPL} "${pkgdir}"/usr/share/licenses/${pkgname}/ - # Install contrib - install -d -m755 "${pkgdir}"/usr/share/openvpn/contrib - cp -r contrib "${pkgdir}"/usr/share/openvpn - # Install systemd service - install -D -m644 "${srcdir}"/openvpn@.service "${pkgdir}"/usr/lib/systemd/system/openvpn@.service -} Copied: openvpn/repos/core-i686/PKGBUILD (from rev 225543, openvpn/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2014-11-02 07:46:48 UTC (rev 225544) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=openvpn +pkgver=2.3.5 +pkgrel=1 +pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" +arch=(i686 x86_64) +url="http://openvpn.net/index.php/open-source.html"; +depends=('openssl' 'lzo' 'iproute2' 'libsystemd') +makedepends=('systemd') +license=('custom') +install=openvpn.install +source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz + http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc +openvpn@.service) +sha256sums=('d93b447b014a41ec1550c3b760871aa72d7c09f1b5c6fc1e013d3073ac29ca21' +'SKIP' +'860976d954bd1db95861b95f0ef42e4
[arch-commits] Commit in linux/repos (30 files)
Date: Sunday, November 2, 2014 @ 08:46:27 Author: thomas Revision: 225543 db-move: moved linux from [testing] to [core] (i686, x86_64) Added: linux/repos/core-i686/PKGBUILD (from rev 225542, linux/repos/testing-i686/PKGBUILD) linux/repos/core-i686/change-default-console-loglevel.patch (from rev 225542, linux/repos/testing-i686/change-default-console-loglevel.patch) linux/repos/core-i686/compal-laptop-hwmon-fix.patch (from rev 225542, linux/repos/testing-i686/compal-laptop-hwmon-fix.patch) linux/repos/core-i686/config (from rev 225542, linux/repos/testing-i686/config) linux/repos/core-i686/config.x86_64 (from rev 225542, linux/repos/testing-i686/config.x86_64) linux/repos/core-i686/linux.install (from rev 225542, linux/repos/testing-i686/linux.install) linux/repos/core-i686/linux.preset (from rev 225542, linux/repos/testing-i686/linux.preset) linux/repos/core-x86_64/PKGBUILD (from rev 225542, linux/repos/testing-x86_64/PKGBUILD) linux/repos/core-x86_64/change-default-console-loglevel.patch (from rev 225542, linux/repos/testing-x86_64/change-default-console-loglevel.patch) linux/repos/core-x86_64/compal-laptop-hwmon-fix.patch (from rev 225542, linux/repos/testing-x86_64/compal-laptop-hwmon-fix.patch) linux/repos/core-x86_64/config (from rev 225542, linux/repos/testing-x86_64/config) linux/repos/core-x86_64/config.x86_64 (from rev 225542, linux/repos/testing-x86_64/config.x86_64) linux/repos/core-x86_64/linux.install (from rev 225542, linux/repos/testing-x86_64/linux.install) linux/repos/core-x86_64/linux.preset (from rev 225542, linux/repos/testing-x86_64/linux.preset) Deleted: linux/repos/core-i686/PKGBUILD linux/repos/core-i686/change-default-console-loglevel.patch linux/repos/core-i686/compal-laptop-hwmon-fix.patch linux/repos/core-i686/config linux/repos/core-i686/config.x86_64 linux/repos/core-i686/linux.install linux/repos/core-i686/linux.preset linux/repos/core-x86_64/PKGBUILD linux/repos/core-x86_64/change-default-console-loglevel.patch linux/repos/core-x86_64/compal-laptop-hwmon-fix.patch linux/repos/core-x86_64/config linux/repos/core-x86_64/config.x86_64 linux/repos/core-x86_64/linux.install linux/repos/core-x86_64/linux.preset linux/repos/testing-i686/ linux/repos/testing-x86_64/ ---+ /PKGBUILD | 586 /change-default-console-loglevel.patch| 22 /compal-laptop-hwmon-fix.patch| 28 /config |14262 /config.x86_64|13780 +++ /linux.install| 74 /linux.preset | 28 core-i686/PKGBUILD| 293 core-i686/change-default-console-loglevel.patch | 11 core-i686/compal-laptop-hwmon-fix.patch | 14 core-i686/config | 7131 -- core-i686/config.x86_64 | 6890 - core-i686/linux.install | 37 core-i686/linux.preset| 14 core-x86_64/PKGBUILD | 293 core-x86_64/change-default-console-loglevel.patch | 11 core-x86_64/compal-laptop-hwmon-fix.patch | 14 core-x86_64/config| 7131 -- core-x86_64/config.x86_64 | 6890 - core-x86_64/linux.install | 37 core-x86_64/linux.preset | 14 21 files changed, 28780 insertions(+), 28780 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 225542:225543 to see the changes.
[arch-commits] Commit in openvpn/repos (8 files)
Date: Thursday, October 30, 2014 @ 23:37:01 Author: thomas Revision: 225505 archrelease: copy trunk to testing-i686, testing-x86_64 Added: openvpn/repos/testing-i686/ openvpn/repos/testing-i686/PKGBUILD (from rev 225504, openvpn/trunk/PKGBUILD) openvpn/repos/testing-i686/openvpn.install (from rev 225504, openvpn/trunk/openvpn.install) openvpn/repos/testing-i686/openvpn@.service (from rev 225504, openvpn/trunk/openvpn@.service) openvpn/repos/testing-x86_64/ openvpn/repos/testing-x86_64/PKGBUILD (from rev 225504, openvpn/trunk/PKGBUILD) openvpn/repos/testing-x86_64/openvpn.install (from rev 225504, openvpn/trunk/openvpn.install) openvpn/repos/testing-x86_64/openvpn@.service (from rev 225504, openvpn/trunk/openvpn@.service) -+ testing-i686/PKGBUILD | 49 ++ testing-i686/openvpn.install|8 ++ testing-i686/openvpn@.service | 10 +++ testing-x86_64/PKGBUILD | 49 ++ testing-x86_64/openvpn.install |8 ++ testing-x86_64/openvpn@.service | 10 +++ 6 files changed, 134 insertions(+) Copied: openvpn/repos/testing-i686/PKGBUILD (from rev 225504, openvpn/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-10-30 22:37:01 UTC (rev 225505) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=openvpn +pkgver=2.3.5 +pkgrel=1 +pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" +arch=(i686 x86_64) +url="http://openvpn.net/index.php/open-source.html"; +depends=('openssl' 'lzo' 'iproute2' 'libsystemd') +makedepends=('systemd') +license=('custom') +install=openvpn.install +source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz + http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc +openvpn@.service) +sha256sums=('d93b447b014a41ec1550c3b760871aa72d7c09f1b5c6fc1e013d3073ac29ca21' +'SKIP' +'860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df') + +build() { + cd "${srcdir}"/$pkgname-$pkgver + CFLAGS="$CFLAGS -DPLUGIN_LIBDIR=\\\"/usr/lib/openvpn\\\"" ./configure \ +--prefix=/usr \ +--sbindir=/usr/bin \ +--enable-password-save \ +--mandir=/usr/share/man \ +--enable-iproute2 \ +--enable-systemd + make +} + +package() { + cd "${srcdir}"/$pkgname-$pkgver + # Install openvpn + make DESTDIR="${pkgdir}" install + install -d -m755 "${pkgdir}"/etc/openvpn + # Install examples + install -d -m755 "${pkgdir}"/usr/share/openvpn + cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples + # Install license + install -d -m755 "${pkgdir}"/usr/share/licenses/${pkgname}/ + ln -sf /usr/share/doc/${pkgname}/{COPYING,COPYRIGHT.GPL} "${pkgdir}"/usr/share/licenses/${pkgname}/ + # Install contrib + install -d -m755 "${pkgdir}"/usr/share/openvpn/contrib + cp -r contrib "${pkgdir}"/usr/share/openvpn + # Install systemd service + install -D -m644 "${srcdir}"/openvpn@.service "${pkgdir}"/usr/lib/systemd/system/openvpn@.service +} Copied: openvpn/repos/testing-i686/openvpn.install (from rev 225504, openvpn/trunk/openvpn.install) === --- testing-i686/openvpn.install(rev 0) +++ testing-i686/openvpn.install2014-10-30 22:37:01 UTC (rev 225505) @@ -0,0 +1,8 @@ +## arg 1: the new package version +## arg 2: the old package version +post_upgrade() { + if [ $(vercmp 2.3.2-1 $2) -ge 0 ]; then +echo ">>> easy-rsa has moved into its own package. Run:" +echo ">>> # pacman -S easy-rsa" + fi +} Copied: openvpn/repos/testing-i686/openvpn@.service (from rev 225504, openvpn/trunk/openvpn@.service) === --- testing-i686/openvpn@.service (rev 0) +++ testing-i686/openvpn@.service 2014-10-30 22:37:01 UTC (rev 225505) @@ -0,0 +1,10 @@ +[Unit] +Description=OpenVPN connection to %i + +[Service] +Type=forking +ExecStart=/usr/bin/openvpn --cd /etc/openvpn --config /etc/openvpn/%i.conf --daemon openvpn@%i --writepid /run/openvpn@%i.pid +PIDFile=/run/openvpn@%i.pid + +[Install] +WantedBy=multi-user.target Copied: openvpn/repos/testing-x86_64/PKGBUILD (from rev 225504, openvpn/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x8
[arch-commits] Commit in openvpn/trunk (PKGBUILD)
Date: Thursday, October 30, 2014 @ 23:36:50 Author: thomas Revision: 225504 upgpkg: openvpn 2.3.5-1 Modified: openvpn/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-30 22:23:03 UTC (rev 225503) +++ PKGBUILD2014-10-30 22:36:50 UTC (rev 225504) @@ -2,12 +2,12 @@ # Maintainer: Thomas Bächler pkgname=openvpn -pkgver=2.3.4 +pkgver=2.3.5 pkgrel=1 pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" arch=(i686 x86_64) url="http://openvpn.net/index.php/open-source.html"; -depends=('openssl' 'lzo' 'iproute2') +depends=('openssl' 'lzo' 'iproute2' 'libsystemd') makedepends=('systemd') license=('custom') install=openvpn.install @@ -14,7 +14,7 @@ source=(http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz http://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz.asc openvpn@.service) -sha256sums=('af506d5f48568fa8d2f2435cb3fad35f9a9a8f263999ea6df3ba296960cec85a' +sha256sums=('d93b447b014a41ec1550c3b760871aa72d7c09f1b5c6fc1e013d3073ac29ca21' 'SKIP' '860976d954bd1db95861b95f0ef42e4e80618aa23a9f2aed26d17ee3d09110df')
[arch-commits] Commit in bftpd/repos (32 files)
Date: Thursday, October 30, 2014 @ 23:23:03 Author: thomas Revision: 225503 archrelease: copy trunk to extra-i686, extra-x86_64 Added: bftpd/repos/extra-i686/PKGBUILD (from rev 225502, bftpd/trunk/PKGBUILD) bftpd/repos/extra-i686/bftpd.install (from rev 225502, bftpd/trunk/bftpd.install) bftpd/repos/extra-i686/bftpd.logrotate (from rev 225502, bftpd/trunk/bftpd.logrotate) bftpd/repos/extra-i686/bftpd.pam (from rev 225502, bftpd/trunk/bftpd.pam) bftpd/repos/extra-i686/bftpd.service (from rev 225502, bftpd/trunk/bftpd.service) bftpd/repos/extra-i686/bftpd.socket (from rev 225502, bftpd/trunk/bftpd.socket) bftpd/repos/extra-i686/bftpd.xinetd (from rev 225502, bftpd/trunk/bftpd.xinetd) bftpd/repos/extra-i686/bftpd_AT.service (from rev 225502, bftpd/trunk/bftpd_AT.service) bftpd/repos/extra-x86_64/PKGBUILD (from rev 225502, bftpd/trunk/PKGBUILD) bftpd/repos/extra-x86_64/bftpd.install (from rev 225502, bftpd/trunk/bftpd.install) bftpd/repos/extra-x86_64/bftpd.logrotate (from rev 225502, bftpd/trunk/bftpd.logrotate) bftpd/repos/extra-x86_64/bftpd.pam (from rev 225502, bftpd/trunk/bftpd.pam) bftpd/repos/extra-x86_64/bftpd.service (from rev 225502, bftpd/trunk/bftpd.service) bftpd/repos/extra-x86_64/bftpd.socket (from rev 225502, bftpd/trunk/bftpd.socket) bftpd/repos/extra-x86_64/bftpd.xinetd (from rev 225502, bftpd/trunk/bftpd.xinetd) bftpd/repos/extra-x86_64/bftpd_AT.service (from rev 225502, bftpd/trunk/bftpd_AT.service) Deleted: bftpd/repos/extra-i686/PKGBUILD bftpd/repos/extra-i686/bftpd.install bftpd/repos/extra-i686/bftpd.logrotate bftpd/repos/extra-i686/bftpd.pam bftpd/repos/extra-i686/bftpd.service bftpd/repos/extra-i686/bftpd.socket bftpd/repos/extra-i686/bftpd.xinetd bftpd/repos/extra-i686/bftpd_AT.service bftpd/repos/extra-x86_64/PKGBUILD bftpd/repos/extra-x86_64/bftpd.install bftpd/repos/extra-x86_64/bftpd.logrotate bftpd/repos/extra-x86_64/bftpd.pam bftpd/repos/extra-x86_64/bftpd.service bftpd/repos/extra-x86_64/bftpd.socket bftpd/repos/extra-x86_64/bftpd.xinetd bftpd/repos/extra-x86_64/bftpd_AT.service ---+ /PKGBUILD | 136 /bftpd.install| 22 ++ /bftpd.logrotate | 10 ++ /bftpd.pam|6 + /bftpd.service| 20 + /bftpd.socket | 20 + /bftpd.xinetd | 22 ++ /bftpd_AT.service | 16 extra-i686/PKGBUILD | 68 extra-i686/bftpd.install | 11 --- extra-i686/bftpd.logrotate|5 - extra-i686/bftpd.pam |3 extra-i686/bftpd.service | 10 -- extra-i686/bftpd.socket | 10 -- extra-i686/bftpd.xinetd | 11 --- extra-i686/bftpd_AT.service |8 -- extra-x86_64/PKGBUILD | 68 extra-x86_64/bftpd.install| 11 --- extra-x86_64/bftpd.logrotate |5 - extra-x86_64/bftpd.pam|3 extra-x86_64/bftpd.service| 10 -- extra-x86_64/bftpd.socket | 10 -- extra-x86_64/bftpd.xinetd | 11 --- extra-x86_64/bftpd_AT.service |8 -- 24 files changed, 252 insertions(+), 252 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-30 22:22:35 UTC (rev 225502) +++ extra-i686/PKGBUILD 2014-10-30 22:23:03 UTC (rev 225503) @@ -1,68 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=bftpd -pkgver=4.2 -pkgrel=1 -pkgdesc="Small, easy-to-configure FTP server" -arch=(i686 x86_64) -url="http://bftpd.sourceforge.net/"; -license=('GPL') -depends=('glibc' 'pam') -install=bftpd.install -backup=(etc/bftpd.conf -etc/logrotate.d/bftpd -etc/pam.d/bftpd -etc/xinetd.d/bftpd) -source=(http://downloads.sourceforge.net/sourceforge/bftpd/bftpd-$pkgver.tar.gz -bftpd.logrotate -bftpd.pam -bftpd.xinetd -bftpd.service -bftpd.socket -bftpd_AT.service) -md5sums=('6b60fbab807d31d803c7f984e8488743' - '853680dad0df39d0b4d2fb43d4be430a' - '96f82c38f3f540b53f3e5144900acf17' - '23feb84e8ecbae5df320b49e01821d9a' - '94b483f7c7b65580a30ebc6a8fe80d1b' - '93509ee83148160f60c009a2192a6774' - 'cb6a3334a7c8b5b8b559a643a65928c4') - -build() { - cd "${srcdir}"/$pkgname - # The bftpd author keeps screwing up the release tarballs - rm -f config.{cache,status} - autoreconf - sed 's|$(prefix)/sbin|$(prefix)/bin|g' -i Makefile.in - ./configure --prefix=/usr \ - --enable-pam \ - --mandir=/usr/share/man \ - --sysconfdir=/etc \ - make -} - -package() { - cd "${srcdir
[arch-commits] Commit in bftpd/trunk (PKGBUILD)
Date: Thursday, October 30, 2014 @ 23:22:35 Author: thomas Revision: 225502 upgpkg: bftpd 4.4-1 Modified: bftpd/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-30 20:16:06 UTC (rev 225501) +++ PKGBUILD2014-10-30 22:22:35 UTC (rev 225502) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=bftpd -pkgver=4.2 +pkgver=4.4 pkgrel=1 pkgdesc="Small, easy-to-configure FTP server" arch=(i686 x86_64) @@ -21,7 +21,7 @@ bftpd.service bftpd.socket bftpd_AT.service) -md5sums=('6b60fbab807d31d803c7f984e8488743' +md5sums=('dbd6740895e04f083b393b1167a11936' '853680dad0df39d0b4d2fb43d4be430a' '96f82c38f3f540b53f3e5144900acf17' '23feb84e8ecbae5df320b49e01821d9a'
[arch-commits] Commit in linux/repos (16 files)
Date: Thursday, October 30, 2014 @ 21:16:06 Author: thomas Revision: 225501 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux/repos/testing-i686/ linux/repos/testing-i686/PKGBUILD (from rev 225500, linux/trunk/PKGBUILD) linux/repos/testing-i686/change-default-console-loglevel.patch (from rev 225500, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-i686/compal-laptop-hwmon-fix.patch (from rev 225500, linux/trunk/compal-laptop-hwmon-fix.patch) linux/repos/testing-i686/config (from rev 225500, linux/trunk/config) linux/repos/testing-i686/config.x86_64 (from rev 225500, linux/trunk/config.x86_64) linux/repos/testing-i686/linux.install (from rev 225500, linux/trunk/linux.install) linux/repos/testing-i686/linux.preset (from rev 225500, linux/trunk/linux.preset) linux/repos/testing-x86_64/ linux/repos/testing-x86_64/PKGBUILD (from rev 225500, linux/trunk/PKGBUILD) linux/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 225500, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-x86_64/compal-laptop-hwmon-fix.patch (from rev 225500, linux/trunk/compal-laptop-hwmon-fix.patch) linux/repos/testing-x86_64/config (from rev 225500, linux/trunk/config) linux/repos/testing-x86_64/config.x86_64 (from rev 225500, linux/trunk/config.x86_64) linux/repos/testing-x86_64/linux.install (from rev 225500, linux/trunk/linux.install) linux/repos/testing-x86_64/linux.preset (from rev 225500, linux/trunk/linux.preset) --+ testing-i686/PKGBUILD| 293 testing-i686/change-default-console-loglevel.patch | 11 testing-i686/compal-laptop-hwmon-fix.patch | 14 testing-i686/config | 7131 + testing-i686/config.x86_64 | 6890 testing-i686/linux.install | 37 testing-i686/linux.preset| 14 testing-x86_64/PKGBUILD | 293 testing-x86_64/change-default-console-loglevel.patch | 11 testing-x86_64/compal-laptop-hwmon-fix.patch | 14 testing-x86_64/config| 7131 + testing-x86_64/config.x86_64 | 6890 testing-x86_64/linux.install | 37 testing-x86_64/linux.preset | 14 14 files changed, 28780 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 225500:225501 to see the changes.
[arch-commits] Commit in linux/trunk (PKGBUILD)
Date: Thursday, October 30, 2014 @ 21:15:42 Author: thomas Revision: 225500 upgpkg: linux 3.17.2-1 Modified: linux/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-30 19:23:11 UTC (rev 225499) +++ PKGBUILD2014-10-30 20:15:42 UTC (rev 225500) @@ -5,7 +5,7 @@ pkgbase=linux # Build stock -ARCH kernel #pkgbase=linux-custom # Build kernel with a different name _srcname=linux-3.17 -pkgver=3.17.1 +pkgver=3.17.2 pkgrel=1 arch=('i686' 'x86_64') url="http://www.kernel.org/"; @@ -21,7 +21,7 @@ 'change-default-console-loglevel.patch' ) sha256sums=('f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251' -'3b0651951cdc0a81a69b46db99239bc9f00d6a5ae403e0e41c7a1cc177544ec2' +'4576c30a46c016502cdd007d28dde4f2d141c0f8096be8623a9ff519323db777' '0f1cd431115a2ce84629298d054d5e6f6e78095a3aeda4d1335740c9402efb7e' 'fb688bc7ccfa636990b26aecfe62500bc1e0f6c410a837eef03014c161df2ec8' 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
[arch-commits] Commit in ovmf/repos/extra-any (4 files)
Date: Monday, October 27, 2014 @ 00:03:09 Author: thomas Revision: 225388 archrelease: copy trunk to extra-any Added: ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch (from rev 225387, ovmf/trunk/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch) ovmf/repos/extra-any/PKGBUILD (from rev 225387, ovmf/trunk/PKGBUILD) Deleted: ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch ovmf/repos/extra-any/PKGBUILD ---+ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch | 74 +++--- PKGBUILD | 118 -- 2 files changed, 94 insertions(+), 98 deletions(-) Deleted: 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch === --- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2014-10-26 23:02:57 UTC (rev 225387) +++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2014-10-26 23:03:09 UTC (rev 225388) @@ -1,37 +0,0 @@ -From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Thomas=20B=C3=A4chler?= -Date: Sat, 1 Mar 2014 20:30:57 +0100 -Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor. - - BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 + - BaseTools/Source/C/VfrCompile/VfrCompiler.h | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -index dd34a1b..77b2cab 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp -@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler ( - { - mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND; - mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS; -+ SET_RUN_STATUS(STATUS_UNKNOWN); - - OptionInitialization(Argc, Argv); - -diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -index ea20bbc..1603961 100644 a/BaseTools/Source/C/VfrCompile/VfrCompiler.h -+++ b/BaseTools/Source/C/VfrCompile/VfrCompiler.h -@@ -60,6 +60,7 @@ typedef struct { - } OPTIONS; - - typedef enum { -+ STATUS_UNKNOWN = 0, - STATUS_INITIALIZED = 1, - STATUS_PREPROCESSED, - STATUS_COMPILEED, --- -1.9.0 - Copied: ovmf/repos/extra-any/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch (from rev 225387, ovmf/trunk/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch) === --- 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch (rev 0) +++ 0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch 2014-10-26 23:03:09 UTC (rev 225388) @@ -0,0 +1,37 @@ +From ab9435c71d894018c88c8f5ff89f654f2029d3ed Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Thomas=20B=C3=A4chler?= +Date: Sat, 1 Mar 2014 20:30:57 +0100 +Subject: [PATCH] Fix uninitialized value in VfrCompiler constructor. + +--- + BaseTools/Source/C/VfrCompile/VfrCompiler.cpp | 1 + + BaseTools/Source/C/VfrCompile/VfrCompiler.h | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp +index dd34a1b..77b2cab 100644 +--- a/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp b/BaseTools/Source/C/VfrCompile/VfrCompiler.cpp +@@ -371,6 +371,7 @@ CVfrCompiler::CVfrCompiler ( + { + mPreProcessCmd = (CHAR8 *) PREPROCESSOR_COMMAND; + mPreProcessOpt = (CHAR8 *) PREPROCESSOR_OPTIONS; ++ SET_RUN_STATUS(STATUS_UNKNOWN); + + OptionInitialization(Argc, Argv); + +diff --git a/BaseTools/Source/C/VfrCompile/VfrCompiler.h b/BaseTools/Source/C/VfrCompile/VfrCompiler.h +index ea20bbc..1603961 100644 +--- a/BaseTools/Source/C/VfrCompile/VfrCompiler.h b/BaseTools/Source/C/VfrCompile/VfrCompiler.h +@@ -60,6 +60,7 @@ typedef struct { + } OPTIONS; + + typedef enum { ++ STATUS_UNKNOWN = 0, + STATUS_INITIALIZED = 1, + STATUS_PREPROCESSED, + STATUS_COMPILEED, +-- +1.9.0 + Deleted: PKGBUILD === --- PKGBUILD2014-10-26 23:02:57 UTC (rev 225387) +++ PKGBUILD2014-10-26 23:03:09 UTC (rev 225388) @@ -1,61 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=ovmf -pkgver=15280 -pkgrel=1 -arch=('any') -pkgdesc="Tianocore UEFI firmware for qemu." -url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; -license=('custom') -makedepends=('git' 'python2' 'iasl') -source=('edk2::git+https://github.com/tianocore/edk2#commit=57a1b9c4252985ee5d631340fed453e73e0c9146' -'0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch') -sha256sums=('SKIP' -
[arch-commits] Commit in ovmf/trunk (PKGBUILD)
Date: Monday, October 27, 2014 @ 00:02:57 Author: thomas Revision: 225387 upgpkg: ovmf 16229-1 Modified: ovmf/trunk/PKGBUILD --+ PKGBUILD | 22 +- 1 file changed, 9 insertions(+), 13 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-26 21:28:17 UTC (rev 225386) +++ PKGBUILD2014-10-26 23:02:57 UTC (rev 225387) @@ -1,18 +1,17 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=ovmf -pkgver=15280 +pkgver=16229 pkgrel=1 arch=('any') pkgdesc="Tianocore UEFI firmware for qemu." url="http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=EDK2"; license=('custom') -makedepends=('git' 'python2' 'iasl') -source=('edk2::git+https://github.com/tianocore/edk2#commit=57a1b9c4252985ee5d631340fed453e73e0c9146' -'0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch') -sha256sums=('SKIP' -'8761c79b9d3e616c42bfb9c61d72893bbe19d774fe28ce9733ff62ed92478868') +makedepends=('git' 'python2' 'iasl' 'nasm') +source=('edk2::git+https://github.com/tianocore/edk2#commit=956f71b611b7677bc0605b95c4e67af413aaab86') +sha256sums=('SKIP') options=(!makeflags) +_toolchain_opt=GCC49 pkgver() { cd "${srcdir}"/edk2 @@ -24,9 +23,6 @@ # edk2 uses python everywhere, but expects python2 mkdir bin ln -s /usr/bin/python2 bin/python - - cd edk2 - patch -p1 -i "${srcdir}"/0001-Fix-uninitialized-value-in-VfrCompiler-constructor.patch } build() { @@ -40,9 +36,9 @@ export EDK_TOOLS_PATH="${srcdir}"/edk2/BaseTools . edksetup.sh BaseTools - # Set RELEASE target, gcc 4.8 toolchain and number of build threads + # Set RELEASE target, toolchain and number of build threads sed "s|^TARGET[ ]*=.*|TARGET = RELEASE|; \ - s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = GCC48|; \ + s|TOOL_CHAIN_TAG[ ]*=.*|TOOL_CHAIN_TAG = ${_toolchain_opt}|; \ s|MAX_CONCURRENT_THREAD_NUMBER[ ]*=.*|MAX_CONCURRENT_THREAD_NUMBER = $(nproc)|;" -i Conf/target.txt # Build OVMF for ia32 sed "s|^TARGET_ARCH[ ]*=.*|TARGET_ARCH = IA32|; \ @@ -55,7 +51,7 @@ } package() { - install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_GCC48/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_ia32.bin - install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_GCC48/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_x64.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfIa32/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_ia32.bin + install -D -m644 "${srcdir}"/edk2/Build/OvmfX64/RELEASE_${_toolchain_opt}/FV/OVMF.fd "${pkgdir}"/usr/share/ovmf/ovmf_x64.bin install -D -m644 "${srcdir}"/edk2/OvmfPkg/License.txt "${pkgdir}"/usr/share/licenses/ovmf/License.txt }
[arch-commits] Commit in tp_smapi-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:58 Author: thomas Revision: 121247 db-move: moved tp_smapi-lts from [community-testing] to [community] (i686, x86_64) Added: tp_smapi-lts/repos/community-i686/PKGBUILD (from rev 121236, tp_smapi-lts/repos/community-testing-i686/PKGBUILD) tp_smapi-lts/repos/community-i686/tp_smapi-lts.install (from rev 121236, tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install) tp_smapi-lts/repos/community-x86_64/PKGBUILD (from rev 121236, tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD) tp_smapi-lts/repos/community-x86_64/tp_smapi-lts.install (from rev 121236, tp_smapi-lts/repos/community-testing-x86_64/tp_smapi-lts.install) Deleted: tp_smapi-lts/repos/community-i686/PKGBUILD tp_smapi-lts/repos/community-i686/tp_smapi-lts.install tp_smapi-lts/repos/community-testing-i686/ tp_smapi-lts/repos/community-testing-x86_64/ tp_smapi-lts/repos/community-x86_64/PKGBUILD tp_smapi-lts/repos/community-x86_64/tp_smapi-lts.install ---+ /PKGBUILD | 114 /tp_smapi-lts.install | 26 +++ community-i686/PKGBUILD | 57 community-i686/tp_smapi-lts.install | 13 --- community-x86_64/PKGBUILD | 57 community-x86_64/tp_smapi-lts.install | 13 --- 6 files changed, 140 insertions(+), 140 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:57 UTC (rev 121246) +++ community-i686/PKGBUILD 2014-10-22 21:35:58 UTC (rev 121247) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Lukas Fleischer -# Contributor: xduugu -# Contributor: nh2 -# Contributor: Steven Davidovitz -# Contributor: Nick B -# Contributor: Christof Musik -# Contributor: Stefan Rupp -# Contributor: Ignas Anikevicius - -pkgname=tp_smapi-lts -_pkgname=tp_smapi -_extramodules=/usr/lib/modules/extramodules-3.14-lts -pkgver=0.41 -pkgrel=33 -pkgdesc="linux-lts modules for ThinkPad's SMAPI functionality" -arch=('i686' 'x86_64') -url='https://github.com/evgeni/tp_smapi' -license=('GPL') -depends=('linux-lts>=3.14.21' 'linux-lts<3.15') -makedepends=('linux-lts-headers>=3.14' 'linux-lts-headers<3.15') -install="${pkgname}.install" -source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) -md5sums=('63c683415c764568f6bf17c7eabe4752') - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - - _kernver=$(< "${_extramodules}/version") - - sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \ - -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile - - make HDAPS=1 -} - -package() { - _kernver=$(< "${_extramodules}/version") - - make -C "${_extramodules%/*}/${_kernver}/build" \ -INSTALL_MOD_PATH="${pkgdir}/${_extramodules%%/lib/*}" \ -M="${srcdir}/${_pkgname}-${pkgver}" modules_install - - cd "${pkgdir}/${_extramodules%/*}" - mv "${_kernver}/extra" "${_extramodules##*/}" - rmdir "${_kernver}" - - # compress kernel modules - find "${pkgdir}" -name "*.ko" -exec gzip -9 {} + - - # load module on startup - echo tp_smapi > "${srcdir}/${pkgname}.conf" - install -Dm644 "${srcdir}/${pkgname}.conf" "${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf" - - # update kernel version in install file - sed -ri "s#^(extramodules=).*\$#\1${_extramodules}#" "${startdir}/${pkgname}.install" -} Copied: tp_smapi-lts/repos/community-i686/PKGBUILD (from rev 121236, tp_smapi-lts/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:58 UTC (rev 121247) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Lukas Fleischer +# Contributor: xduugu +# Contributor: nh2 +# Contributor: Steven Davidovitz +# Contributor: Nick B +# Contributor: Christof Musik +# Contributor: Stefan Rupp +# Contributor: Ignas Anikevicius + +pkgname=tp_smapi-lts +_pkgname=tp_smapi +_extramodules=/usr/lib/modules/extramodules-3.14-lts +pkgver=0.41 +pkgrel=34 +pkgdesc="linux-lts modules for ThinkPad's SMAPI functionality" +arch=('i686' 'x86_64') +url='https://github.com/evgeni/tp_smapi' +license=('GPL') +depends=('linux-lts>=3.14.21' 'linux-lts<3.15') +makedepends=('linux-lts-headers>=3.14' 'linux-lts-headers<3.15') +install="${pkgname}.install" +source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) +md5sums=('63c683415c764568f6bf17c7eabe4752') + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + _kernver=$(< "${_extramodules}/version") + + sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \ + -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile + + make HDAPS=1 +} + +package() { + _kernver=$(< "${_extramodules}/version") + + make -C "${_extramodules%/*}/${_kernver}/
[arch-commits] Commit in virtualbox-modules/repos (18 files)
Date: Wednesday, October 22, 2014 @ 23:35:52 Author: thomas Revision: 121243 db-move: moved virtualbox-modules from [community-testing] to [community] (i686, x86_64) Added: virtualbox-modules/repos/community-i686/PKGBUILD (from rev 121236, virtualbox-modules/repos/community-testing-i686/PKGBUILD) virtualbox-modules/repos/community-i686/build.sh (from rev 121236, virtualbox-modules/repos/community-testing-i686/build.sh) virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install (from rev 121236, virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install) virtualbox-modules/repos/community-i686/virtualbox-host-modules.install (from rev 121236, virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install) virtualbox-modules/repos/community-x86_64/PKGBUILD (from rev 121236, virtualbox-modules/repos/community-testing-x86_64/PKGBUILD) virtualbox-modules/repos/community-x86_64/build.sh (from rev 121236, virtualbox-modules/repos/community-testing-x86_64/build.sh) virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install (from rev 121236, virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install) virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install (from rev 121236, virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install) Deleted: virtualbox-modules/repos/community-i686/PKGBUILD virtualbox-modules/repos/community-i686/build.sh virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install virtualbox-modules/repos/community-i686/virtualbox-host-modules.install virtualbox-modules/repos/community-testing-i686/ virtualbox-modules/repos/community-testing-x86_64/ virtualbox-modules/repos/community-x86_64/PKGBUILD virtualbox-modules/repos/community-x86_64/build.sh virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install ---+ /PKGBUILD | 126 +++ /build.sh | 132 /virtualbox-guest-modules.install | 42 ++ /virtualbox-host-modules.install | 46 ++ community-i686/PKGBUILD | 63 - community-i686/build.sh | 60 - community-i686/virtualbox-guest-modules.install | 21 --- community-i686/virtualbox-host-modules.install| 23 --- community-x86_64/PKGBUILD | 63 - community-x86_64/build.sh | 60 - community-x86_64/virtualbox-guest-modules.install | 21 --- community-x86_64/virtualbox-host-modules.install | 23 --- 12 files changed, 346 insertions(+), 334 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:49 UTC (rev 121242) +++ community-i686/PKGBUILD 2014-10-22 21:35:52 UTC (rev 121243) @@ -1,63 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Maintainer: Sébastien Luttringer - -pkgbase=virtualbox-modules -pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules') -pkgver=4.3.18 -pkgrel=3 -arch=('i686' 'x86_64') -url='http://virtualbox.org' -license=('GPL') -makedepends=('linux>=3.16' 'linux<3.17' - 'linux-headers>=3.16' 'linux-headers<3.17' - "virtualbox-host-dkms>=$pkgver" - "virtualbox-guest-dkms>=$pkgver") - -# remember to also adjust the .install files and the package deps below -_extramodules=extramodules-3.16-ARCH - -build() { - _kernver="$(cat /usr/lib/modules/$_extramodules/version)" - # dkms need modification to be run as user - cp -r /var/lib/dkms . - echo "dkms_tree='$srcdir/dkms'" > dkms.conf - # build host modules - msg2 'Host modules' - dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver" - # build guest modules - msg2 'Guest modules' - dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver" -} - -package_virtualbox-host-modules(){ - _kernver="$(cat /usr/lib/modules/$_extramodules/version)" - pkgdesc='Host kernel modules for VirtualBox' - depends=('linux>=3.16' 'linux<3.17') - replaces=('virtualbox-modules') - conflicts=('virtualbox-modules') - install=virtualbox-host-modules.install - - cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module" - install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/" - install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/" - find "$pkgdir" -name '*.ko' -exec gzip -9 {} + -} - -package_virtualbox-guest-modules(){ - _kernver="$(cat /usr/lib/modules/$_extramodules/version)" - pkgdesc='Guest kernel modules for VirtualBox' - license=('GPL') - depends=('linux>=3.16' 'linux<3.17') - replaces=('virtu
[arch-commits] Commit in acpi_call-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:54 Author: thomas Revision: 121244 db-move: moved acpi_call-lts from [community-testing] to [community] (i686, x86_64) Added: acpi_call-lts/repos/community-i686/PKGBUILD (from rev 121236, acpi_call-lts/repos/community-testing-i686/PKGBUILD) acpi_call-lts/repos/community-i686/acpi_call.install (from rev 121236, acpi_call-lts/repos/community-testing-i686/acpi_call.install) acpi_call-lts/repos/community-x86_64/PKGBUILD (from rev 121236, acpi_call-lts/repos/community-testing-x86_64/PKGBUILD) acpi_call-lts/repos/community-x86_64/acpi_call.install (from rev 121236, acpi_call-lts/repos/community-testing-x86_64/acpi_call.install) Deleted: acpi_call-lts/repos/community-i686/PKGBUILD acpi_call-lts/repos/community-i686/acpi_call.install acpi_call-lts/repos/community-testing-i686/ acpi_call-lts/repos/community-testing-x86_64/ acpi_call-lts/repos/community-x86_64/PKGBUILD acpi_call-lts/repos/community-x86_64/acpi_call.install + /PKGBUILD | 82 +++ /acpi_call.install | 28 +++ community-i686/PKGBUILD| 41 - community-i686/acpi_call.install | 14 - community-x86_64/PKGBUILD | 41 - community-x86_64/acpi_call.install | 14 - 6 files changed, 110 insertions(+), 110 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:52 UTC (rev 121243) +++ community-i686/PKGBUILD 2014-10-22 21:35:54 UTC (rev 121244) @@ -1,41 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: mortzu -# Contributor: fnord0 - -pkgname=acpi_call-lts -pkgver=1.1.0 -pkgrel=11 -_extramodules=extramodules-3.14-lts -pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call' -arch=('i686' 'x86_64') -url="http://github.com/mkottman/${pkgname%-*}"; -license=('GPL') -depends=('linux-lts>=3.14.21') -makedepends=('linux-lts-headers>=3.14.21') -provides=("${pkgname%-*}") -install="${pkgname%-*}.install" -source=("${url}/archive/v${pkgver}.tar.gz") -sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0') - -build() { - cd ${pkgname%-*}-${pkgver} - - _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" - - make KVERSION="${_kernver}" -} - -package() { - cd ${pkgname%-*}-${pkgver} - - install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d} - install -m 644 ${pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/ - gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko - echo ${pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf - - install -dm 755 "${pkgdir}"/usr/share/${pkgname} - cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${pkgname}/ -} - -# vim: ts=2 sw=2 et: Copied: acpi_call-lts/repos/community-i686/PKGBUILD (from rev 121236, acpi_call-lts/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:54 UTC (rev 121244) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: mortzu +# Contributor: fnord0 + +pkgname=acpi_call-lts +pkgver=1.1.0 +pkgrel=12 +_extramodules=extramodules-3.14-lts +pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call' +arch=('i686' 'x86_64') +url="http://github.com/mkottman/${pkgname%-*}"; +license=('GPL') +depends=('linux-lts>=3.14.21') +makedepends=('linux-lts-headers>=3.14.21') +provides=("${pkgname%-*}") +install="${pkgname%-*}.install" +source=("${url}/archive/v${pkgver}.tar.gz") +sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0') + +build() { + cd ${pkgname%-*}-${pkgver} + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KVERSION="${_kernver}" +} + +package() { + cd ${pkgname%-*}-${pkgver} + + install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d} + install -m 644 ${pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/ + gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko + echo ${pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf + + install -dm 755 "${pkgdir}"/usr/share/${pkgname} + cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Deleted: community-i686/acpi_call.install === --- community-i686/acpi_call.install2014-10-22 21:35:52 UTC (rev 121243) +++ community-i686/acpi_call.install2014-10-22 21:35:54 UTC (rev 121244) @@ -1,14 +0,0 @@ -post_install() { - _extramodules=extramodules-3.14-lts - depmod $(cat /us
[arch-commits] Commit in virtualbox-modules-lts/repos (18 files)
Date: Wednesday, October 22, 2014 @ 23:35:59 Author: thomas Revision: 121248 db-move: moved virtualbox-modules-lts from [community-testing] to [community] (i686, x86_64) Added: virtualbox-modules-lts/repos/community-i686/PKGBUILD (from rev 121236, virtualbox-modules-lts/repos/community-testing-i686/PKGBUILD) virtualbox-modules-lts/repos/community-i686/build.sh (from rev 121236, virtualbox-modules-lts/repos/community-testing-i686/build.sh) virtualbox-modules-lts/repos/community-i686/virtualbox-guest-modules-lts.install (from rev 121236, virtualbox-modules-lts/repos/community-testing-i686/virtualbox-guest-modules-lts.install) virtualbox-modules-lts/repos/community-i686/virtualbox-host-modules-lts.install (from rev 121236, virtualbox-modules-lts/repos/community-testing-i686/virtualbox-host-modules-lts.install) virtualbox-modules-lts/repos/community-x86_64/PKGBUILD (from rev 121236, virtualbox-modules-lts/repos/community-testing-x86_64/PKGBUILD) virtualbox-modules-lts/repos/community-x86_64/build.sh (from rev 121236, virtualbox-modules-lts/repos/community-testing-x86_64/build.sh) virtualbox-modules-lts/repos/community-x86_64/virtualbox-guest-modules-lts.install (from rev 121236, virtualbox-modules-lts/repos/community-testing-x86_64/virtualbox-guest-modules-lts.install) virtualbox-modules-lts/repos/community-x86_64/virtualbox-host-modules-lts.install (from rev 121236, virtualbox-modules-lts/repos/community-testing-x86_64/virtualbox-host-modules-lts.install) Deleted: virtualbox-modules-lts/repos/community-i686/PKGBUILD virtualbox-modules-lts/repos/community-i686/build.sh virtualbox-modules-lts/repos/community-i686/virtualbox-guest-modules-lts.install virtualbox-modules-lts/repos/community-i686/virtualbox-host-modules-lts.install virtualbox-modules-lts/repos/community-testing-i686/ virtualbox-modules-lts/repos/community-testing-x86_64/ virtualbox-modules-lts/repos/community-x86_64/PKGBUILD virtualbox-modules-lts/repos/community-x86_64/build.sh virtualbox-modules-lts/repos/community-x86_64/virtualbox-guest-modules-lts.install virtualbox-modules-lts/repos/community-x86_64/virtualbox-host-modules-lts.install ---+ /PKGBUILD | 132 /build.sh | 132 /virtualbox-guest-modules-lts.install | 42 + /virtualbox-host-modules-lts.install | 46 + community-i686/PKGBUILD | 66 community-i686/build.sh | 62 --- community-i686/virtualbox-guest-modules-lts.install | 21 -- community-i686/virtualbox-host-modules-lts.install| 23 -- community-x86_64/PKGBUILD | 66 community-x86_64/build.sh | 62 --- community-x86_64/virtualbox-guest-modules-lts.install | 21 -- community-x86_64/virtualbox-host-modules-lts.install | 23 -- 12 files changed, 352 insertions(+), 344 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:58 UTC (rev 121247) +++ community-i686/PKGBUILD 2014-10-22 21:35:59 UTC (rev 121248) @@ -1,66 +0,0 @@ -# $Id$ -# Contributor: Bartłomiej Piotrowski -# Contributor: Ionut Biru -# Contributor: Sébastien Luttringer - -pkgbase=virtualbox-modules-lts -pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts') -pkgver=4.3.18 -pkgrel=4 -arch=('i686' 'x86_64') -url='http://virtualbox.org' -license=('GPL') -makedepends=('linux-lts>=3.14' 'linux-lts<3.15' - 'linux-lts-headers>=3.14' 'linux-lts-headers<3.15' - "virtualbox-host-dkms>=$pkgver" - "virtualbox-guest-dkms>=$pkgver") - -# remember to also adjust the .install files and the package deps below -_extramodules=extramodules-3.14-lts - -build() { - _kernver=$(cat /usr/lib/modules/$_extramodules/version) - # dkms need modification to be run as user - cp -r /var/lib/dkms . - echo "dkms_tree='$srcdir/dkms'" > dkms.conf - # build host modules - msg2 'Host modules' - dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver" - # build guest modules - msg2 'Guest modules' - dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver" -} - -package_virtualbox-host-modules-lts(){ - _kernver=$(cat /usr/lib/modules/$_extramodules/version) - pkgdesc='Host kernel modules for VirtualBox' - depends=('linux-lts>=3.14' 'linux-lts<3.15') - replaces=('virtualbox-modules-lts') - conflicts=('virtualbox-modules-lts') - provides=("virtualbox-host-modules=$pkgver") - install=virtualbox-host-modules-lts.install - - cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module" - install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/" - ins
[arch-commits] Commit in r8168-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:57 Author: thomas Revision: 121246 db-move: moved r8168-lts from [community-testing] to [community] (i686, x86_64) Added: r8168-lts/repos/community-i686/PKGBUILD (from rev 121236, r8168-lts/repos/community-testing-i686/PKGBUILD) r8168-lts/repos/community-i686/r8168-lts.install (from rev 121236, r8168-lts/repos/community-testing-i686/r8168-lts.install) r8168-lts/repos/community-x86_64/PKGBUILD (from rev 121236, r8168-lts/repos/community-testing-x86_64/PKGBUILD) r8168-lts/repos/community-x86_64/r8168-lts.install (from rev 121236, r8168-lts/repos/community-testing-x86_64/r8168-lts.install) Deleted: r8168-lts/repos/community-i686/PKGBUILD r8168-lts/repos/community-i686/r8168-lts.install r8168-lts/repos/community-testing-i686/ r8168-lts/repos/community-testing-x86_64/ r8168-lts/repos/community-x86_64/PKGBUILD r8168-lts/repos/community-x86_64/r8168-lts.install + /PKGBUILD | 70 +++ /r8168-lts.install | 34 + community-i686/PKGBUILD| 35 - community-i686/r8168-lts.install | 17 community-x86_64/PKGBUILD | 35 - community-x86_64/r8168-lts.install | 17 6 files changed, 104 insertions(+), 104 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:55 UTC (rev 121245) +++ community-i686/PKGBUILD 2014-10-22 21:35:57 UTC (rev 121246) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Massimiliano Torromeo - -pkgname=r8168-lts -_pkgname=r8168 -pkgver=8.039.00 -pkgrel=3 -pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts" -#url="http://www.realtek.com.tw"; -url="https://code.google.com/p/r8168/"; -license=("GPL") -arch=('i686' 'x86_64') -depends=('glibc' "linux-lts>=3.14.21" "linux-lts<3.15") -makedepends=("linux-lts-headers>=3.14" "linux-lts-headers<3.15") -install=$pkgname.install -source=(#"ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2"; - http://r8168dl.appspot.com/files/r8168-$pkgver.tar.bz2) -sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd') - -_extramodules=extramodules-3.14-lts - -build() { - cd "$_pkgname-$pkgver" - local _kernver="$(cat /usr/lib/modules/$_extramodules/version)" - make -C /usr/lib/modules/$_kernver/build \ - SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \ - EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \ - modules -} - -package() { - cd "$_pkgname-$pkgver" - install -Dm644 src/$_pkgname.ko "$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko" - find "$pkgdir" -name '*.ko' -exec gzip -9 {} + -} Copied: r8168-lts/repos/community-i686/PKGBUILD (from rev 121236, r8168-lts/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:57 UTC (rev 121246) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Massimiliano Torromeo + +pkgname=r8168-lts +_pkgname=r8168 +pkgver=8.039.00 +pkgrel=4 +pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts" +#url="http://www.realtek.com.tw"; +url="https://code.google.com/p/r8168/"; +license=("GPL") +arch=('i686' 'x86_64') +depends=('glibc' "linux-lts>=3.14.21" "linux-lts<3.15") +makedepends=("linux-lts-headers>=3.14" "linux-lts-headers<3.15") +install=$pkgname.install +source=(#"ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2"; + http://r8168dl.appspot.com/files/r8168-$pkgver.tar.bz2) +sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd') + +_extramodules=extramodules-3.14-lts + +build() { + cd "$_pkgname-$pkgver" + local _kernver="$(cat /usr/lib/modules/$_extramodules/version)" + make -C /usr/lib/modules/$_kernver/build \ + SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \ + EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \ + modules +} + +package() { + cd "$_pkgname-$pkgver" + install -Dm644 src/$_pkgname.ko "$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko" + find "$pkgdir" -name '*.ko' -exec gzip -9 {} + +} Deleted: community-i686/r8168-lts.install === --- community-i686/r8168-lts.install2014-10-22 21:35:55 UTC (rev 121245) +++ community-i686/r8168-lts.install2014-10-22 21:35:57 UTC (rev 121246) @@ -1,17 +0,0 @@ -rebuild_module_dependencies() { - EXTRAMODULES='extramodules-3.14-lts' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} - -post_install() { - rebuild_module_dependencies -
[arch-commits] Commit in bbswitch-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:55 Author: thomas Revision: 121245 db-move: moved bbswitch-lts from [community-testing] to [community] (i686, x86_64) Added: bbswitch-lts/repos/community-i686/PKGBUILD (from rev 121236, bbswitch-lts/repos/community-testing-i686/PKGBUILD) bbswitch-lts/repos/community-i686/bbswitch-lts.install (from rev 121236, bbswitch-lts/repos/community-testing-i686/bbswitch-lts.install) bbswitch-lts/repos/community-x86_64/PKGBUILD (from rev 121236, bbswitch-lts/repos/community-testing-x86_64/PKGBUILD) bbswitch-lts/repos/community-x86_64/bbswitch-lts.install (from rev 121236, bbswitch-lts/repos/community-testing-x86_64/bbswitch-lts.install) Deleted: bbswitch-lts/repos/community-i686/PKGBUILD bbswitch-lts/repos/community-i686/bbswitch-lts.install bbswitch-lts/repos/community-testing-i686/ bbswitch-lts/repos/community-testing-x86_64/ bbswitch-lts/repos/community-x86_64/PKGBUILD bbswitch-lts/repos/community-x86_64/bbswitch-lts.install ---+ /PKGBUILD | 68 /bbswitch-lts.install | 24 +++ community-i686/PKGBUILD | 34 community-i686/bbswitch-lts.install | 12 - community-x86_64/PKGBUILD | 34 community-x86_64/bbswitch-lts.install | 12 - 6 files changed, 92 insertions(+), 92 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:54 UTC (rev 121244) +++ community-i686/PKGBUILD 2014-10-22 21:35:55 UTC (rev 121245) @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $ -# Maintainer: Sven-Hendrik Haase -# Contributor: M0Rf30 -# Contributor: Samsagax - -pkgname=bbswitch-lts -_basename=bbswitch -pkgver=0.8 -_extramodules=extramodules-3.14-lts # Don't forget to update bbswitch-lts.install -pkgrel=2 -pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops" -arch=('i686' 'x86_64') -url=("http://github.com/Bumblebee-Project/bbswitch";) -license=('GPL') -depends=('linux-lts>=3.14' 'linux-lts<3.15') -makedepends=('linux-lts-headers>=3.14' 'linux-lts-headers<3.15') -install=${pkgname}.install -source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";) -md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') - -build() { - cd ${srcdir}/${_basename}-${pkgver} - - _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" - - make KDIR=/lib/modules/${_kernver}/build -} - -package() { - cd ${srcdir}/${_basename}-${pkgver} - - install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko - gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko" -} Copied: bbswitch-lts/repos/community-i686/PKGBUILD (from rev 121236, bbswitch-lts/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:55 UTC (rev 121245) @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $ +# Maintainer: Sven-Hendrik Haase +# Contributor: M0Rf30 +# Contributor: Samsagax + +pkgname=bbswitch-lts +_basename=bbswitch +pkgver=0.8 +_extramodules=extramodules-3.14-lts # Don't forget to update bbswitch-lts.install +pkgrel=3 +pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops" +arch=('i686' 'x86_64') +url=("http://github.com/Bumblebee-Project/bbswitch";) +license=('GPL') +depends=('linux-lts>=3.14' 'linux-lts<3.15') +makedepends=('linux-lts-headers>=3.14' 'linux-lts-headers<3.15') +install=${pkgname}.install +source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";) +md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') + +build() { + cd ${srcdir}/${_basename}-${pkgver} + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KDIR=/lib/modules/${_kernver}/build +} + +package() { + cd ${srcdir}/${_basename}-${pkgver} + + install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko + gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko" +} Deleted: community-i686/bbswitch-lts.install === --- community-i686/bbswitch-lts.install 2014-10-22 21:35:54 UTC (rev 121244) +++ community-i686/bbswitch-lts.install 2014-10-22 21:35:55 UTC (rev 121245) @@ -1,12 +0,0 @@ -post_install() { -EXTRAMODULES='extramodules-3.14-lts' -depmod $(cat /usr/lib/modules/$EXTRAMODULES/version) -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: bbswitch-lts/repos/community-i686/bbswitch-lts.install (from rev 121236, bbswitch-lts/repos/community-testing-i686/bbswitch-lts.inst
[arch-commits] Commit in bbswitch/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:41 Author: thomas Revision: 121238 db-move: moved bbswitch from [community-testing] to [community] (i686, x86_64) Added: bbswitch/repos/community-i686/PKGBUILD (from rev 121236, bbswitch/repos/community-testing-i686/PKGBUILD) bbswitch/repos/community-i686/bbswitch.install (from rev 121236, bbswitch/repos/community-testing-i686/bbswitch.install) bbswitch/repos/community-x86_64/PKGBUILD (from rev 121236, bbswitch/repos/community-testing-x86_64/PKGBUILD) bbswitch/repos/community-x86_64/bbswitch.install (from rev 121236, bbswitch/repos/community-testing-x86_64/bbswitch.install) Deleted: bbswitch/repos/community-i686/PKGBUILD bbswitch/repos/community-i686/bbswitch.install bbswitch/repos/community-testing-i686/ bbswitch/repos/community-testing-x86_64/ bbswitch/repos/community-x86_64/PKGBUILD bbswitch/repos/community-x86_64/bbswitch.install ---+ /PKGBUILD | 66 /bbswitch.install | 24 + community-i686/PKGBUILD | 33 -- community-i686/bbswitch.install | 12 -- community-x86_64/PKGBUILD | 33 -- community-x86_64/bbswitch.install | 12 -- 6 files changed, 90 insertions(+), 90 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:39 UTC (rev 121237) +++ community-i686/PKGBUILD 2014-10-22 21:35:41 UTC (rev 121238) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Contributor: M0Rf30 -# Contributor: Samsagax - -pkgname=bbswitch -pkgver=0.8 -_extramodules=extramodules-3.16-ARCH # Don't forget to update bbswitch.install -pkgrel=17 -pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops" -arch=('i686' 'x86_64') -url=("http://github.com/Bumblebee-Project/bbswitch";) -license=('GPL') -depends=('linux>=3.16' 'linux<3.17') -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -install=bbswitch.install -source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";) -md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - - _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" - - make KDIR=/lib/modules/${_kernver}/build -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - - install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko - gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko" -} Copied: bbswitch/repos/community-i686/PKGBUILD (from rev 121236, bbswitch/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:41 UTC (rev 121238) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase +# Contributor: M0Rf30 +# Contributor: Samsagax + +pkgname=bbswitch +pkgver=0.8 +_extramodules=extramodules-3.17-ARCH # Don't forget to update bbswitch.install +pkgrel=18 +pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops" +arch=('i686' 'x86_64') +url=("http://github.com/Bumblebee-Project/bbswitch";) +license=('GPL') +depends=('linux>=3.17' 'linux<3.18') +makedepends=('linux-headers>=3.17' 'linux-headers<3.18') +install=bbswitch.install +source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";) +md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KDIR=/lib/modules/${_kernver}/build +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko + gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko" +} Deleted: community-i686/bbswitch.install === --- community-i686/bbswitch.install 2014-10-22 21:35:39 UTC (rev 121237) +++ community-i686/bbswitch.install 2014-10-22 21:35:41 UTC (rev 121238) @@ -1,12 +0,0 @@ -post_install() { -EXTRAMODULES='extramodules-3.16-ARCH' -depmod $(cat /usr/lib/modules/$EXTRAMODULES/version) -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: bbswitch/repos/community-i686/bbswitch.install (from rev 121236, bbswitch/repos/community-testing-i686/bbswitch.install) === --- community-i686/bbswitch.install (rev 0) +++ community-i686/bbswitch.install 2014-10-22 21:35:41 UTC (rev 121238) @@ -0,0 +1,12 @@ +post_install() { +EXTRAMODULES='extramodules-3.17-ARCH' +depmod $(cat
[arch-commits] Commit in rt3562sta/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:43 Author: thomas Revision: 121240 db-move: moved rt3562sta from [community-testing] to [community] (i686, x86_64) Added: rt3562sta/repos/community-i686/PKGBUILD (from rev 121236, rt3562sta/repos/community-testing-i686/PKGBUILD) rt3562sta/repos/community-i686/rt3562sta.install (from rev 121236, rt3562sta/repos/community-testing-i686/rt3562sta.install) rt3562sta/repos/community-x86_64/PKGBUILD (from rev 121236, rt3562sta/repos/community-testing-x86_64/PKGBUILD) rt3562sta/repos/community-x86_64/rt3562sta.install (from rev 121236, rt3562sta/repos/community-testing-x86_64/rt3562sta.install) Deleted: rt3562sta/repos/community-i686/PKGBUILD rt3562sta/repos/community-i686/rt3562sta.install rt3562sta/repos/community-testing-i686/ rt3562sta/repos/community-testing-x86_64/ rt3562sta/repos/community-x86_64/PKGBUILD rt3562sta/repos/community-x86_64/rt3562sta.install + /PKGBUILD | 120 +++ /rt3562sta.install | 32 + community-i686/PKGBUILD| 60 - community-i686/rt3562sta.install | 16 community-x86_64/PKGBUILD | 60 - community-x86_64/rt3562sta.install | 16 6 files changed, 152 insertions(+), 152 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:42 UTC (rev 121239) +++ community-i686/PKGBUILD 2014-10-22 21:35:43 UTC (rev 121240) @@ -1,60 +0,0 @@ -# $Id$ -# Maintainer: Massimiliano Torromeo -# Based on SUSE spec https://build.opensuse.org/package/files?package=rt3562sta&project=driver%3Awireless - -pkgname=rt3562sta -pkgver=2.4.1.1_r1 -_patchrel=${pkgver/*_r/} -pkgrel=11 -pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module" -arch=(i686 x86_64) -url="http://www.mediatek.com/en/Products/support.php?sn=501"; -license=('GPL') -depends=('linux') -makedepends=('linux-headers') -install=$pkgname.install -source=($pkgname-$pkgver.tar.gz::https://github.com/mtorromeo/rt3562sta-linux/archive/r${_patchrel}.tar.gz) - -build() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - KERNEL_RELEASE=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) - - cd "$srcdir/rt3562sta-linux-r$_patchrel" - - # clean up this mess of mixing RT2860STA with RT3562STA - # in documentation files - mv RT2860STA.dat RT3562STA.dat - mv RT2860STACard.dat RT3562STACard.dat - sed -i 's/2860/3562/g' *STA* iwpriv_usage.txt - - # as we change the default name of the interface from raX to wlanX, change respective references in documentation, too - sed -i 's|ra0|wlan0|g' *.txt README* *.dat - sed -i 's|ra1|wlan1|g' *.txt README* *.dat - sed -i 's|ra2|wlan2|g' *.txt README* *.dat - - export EXTRA_CFLAGS="-DVERSION=$pkgver" - - # this Makefile is far too strict... - echo "LINUX_SRC = /usr/lib/modules/$KERNEL_RELEASE/build" >> Makefile - - make -} - -package() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)") - KERNEL_VERSION=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) - msg "Kernel = $KERNEL_VERSION" - - cd "$srcdir/rt3562sta-linux-r$_patchrel" - - install -Dm 0640 RT3562STA.dat "$pkgdir/etc/Wireless/RT3562STA/RT3562STA.dat" - install -Dm 0644 os/linux/$pkgname.ko "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko" - install -dm 0755 "$pkgdir/usr/share/doc/$pkgname" - install -m 0644 iwpriv_usage.txt README* RT3562STA* sta_ate_iwpriv_usage.txt "$pkgdir/usr/share/doc/$pkgname" - - find "$pkgdir" -name '*.ko' -exec gzip -9 {} \; - sed -i "s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH|" "$startdir/$pkgname.install" -} - -sha256sums=('6fd6306b6fb3886bbf9d284a28cc065a4cdfea18a03708e99aa4c7a038bcf02f') Copied: rt3562sta/repos/community-i686/PKGBUILD (from rev 121236, rt3562sta/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:43 UTC (rev 121240) @@ -0,0 +1,60 @@ +# $Id$ +# Maintainer: Massimiliano Torromeo +# Based on SUSE spec https://build.opensuse.org/package/files?package=rt3562sta&project=driver%3Awireless + +pkgname=rt3562sta +pkgver=2.4.1.1_r1 +_patchrel=${pkgver/*_r/} +pkgrel=12 +pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module" +arch=(i686 x86_64) +url="http://www.mediatek.com/en/Products/support.php?sn=501"; +license=('GPL') +depends=('linux') +makedepends=('linux-headers') +install=$pkgname.install +source=($pkgname-$pkgver.tar.gz::https://github.com/mtorromeo/rt3562sta-linux/a
[arch-commits] Commit in r8168/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:42 Author: thomas Revision: 121239 db-move: moved r8168 from [community-testing] to [community] (i686, x86_64) Added: r8168/repos/community-i686/PKGBUILD (from rev 121236, r8168/repos/community-testing-i686/PKGBUILD) r8168/repos/community-i686/r8168.install (from rev 121236, r8168/repos/community-testing-i686/r8168.install) r8168/repos/community-x86_64/PKGBUILD (from rev 121236, r8168/repos/community-testing-x86_64/PKGBUILD) r8168/repos/community-x86_64/r8168.install (from rev 121236, r8168/repos/community-testing-x86_64/r8168.install) Deleted: r8168/repos/community-i686/PKGBUILD r8168/repos/community-i686/r8168.install r8168/repos/community-testing-i686/ r8168/repos/community-testing-x86_64/ r8168/repos/community-x86_64/PKGBUILD r8168/repos/community-x86_64/r8168.install + /PKGBUILD | 90 +++ /r8168.install | 34 ++ community-i686/PKGBUILD| 45 --- community-i686/r8168.install | 17 --- community-x86_64/PKGBUILD | 45 --- community-x86_64/r8168.install | 17 --- 6 files changed, 124 insertions(+), 124 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:41 UTC (rev 121238) +++ community-i686/PKGBUILD 2014-10-22 21:35:42 UTC (rev 121239) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Massimiliano Torromeo -# Contributor: Bob Fanger < bfanger(at)gmail > -# Contributor: Filip , Det < nimetonmaili(at)gmail > - -pkgname=r8168 -pkgver=8.039.00 -pkgrel=2 -pkgdesc="A kernel module for Realtek 8168 network cards" -url="http://www.realtek.com.tw"; -license=("GPL") -arch=('i686' 'x86_64') -depends=('glibc' 'linux') -makedepends=('linux-headers') -install=$pkgname.install -source=("ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2";) -sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd') - -build() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - KERNEL_RELEASE=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) - - cd "$pkgname-$pkgver" - - # avoid using the Makefile directly -- it doesn't understand - # any kernel but the current. - make -C /usr/lib/modules/$KERNEL_RELEASE/build \ - SUBDIRS="$srcdir/$pkgname-$pkgver/src" \ - EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \ - modules -} - -package() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)") - KERNEL_VERSION=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) - msg "Kernel = $KERNEL_VERSION" - - cd "$pkgname-$pkgver" - install -Dm644 src/$pkgname.ko "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko" - find "$pkgdir" -name '*.ko' -exec gzip -9 {} + - - sed -i "s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH|" "$startdir/$pkgname.install" -} - Copied: r8168/repos/community-i686/PKGBUILD (from rev 121236, r8168/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:42 UTC (rev 121239) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Massimiliano Torromeo +# Contributor: Bob Fanger < bfanger(at)gmail > +# Contributor: Filip , Det < nimetonmaili(at)gmail > + +pkgname=r8168 +pkgver=8.039.00 +pkgrel=3 +pkgdesc="A kernel module for Realtek 8168 network cards" +url="http://www.realtek.com.tw"; +license=("GPL") +arch=('i686' 'x86_64') +depends=('glibc' 'linux') +makedepends=('linux-headers') +install=$pkgname.install +source=("ftp://WebUser:wK9xBuD5@95.130.192.218/cn/nic/r8168-$pkgver.tar.bz2";) +sha256sums=('767d922270274e781d8d42493a0021db1cafcb0388ac62564d0c0c3d82703edd') + +build() { + _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) + KERNEL_RELEASE=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) + + cd "$pkgname-$pkgver" + + # avoid using the Makefile directly -- it doesn't understand + # any kernel but the current. + make -C /usr/lib/modules/$KERNEL_RELEASE/build \ + SUBDIRS="$srcdir/$pkgname-$pkgver/src" \ + EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \ + modules +} + +package() { + _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) + depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)") + KERNEL_VERSION=$(cat /usr/lib/modules/extramodules-3.$_kernver-ARCH/version) + msg "Kernel = $KERNEL_VERSION" + + c
[arch-commits] Commit in tp_smapi/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:44 Author: thomas Revision: 121241 db-move: moved tp_smapi from [community-testing] to [community] (i686, x86_64) Added: tp_smapi/repos/community-i686/PKGBUILD (from rev 121236, tp_smapi/repos/community-testing-i686/PKGBUILD) tp_smapi/repos/community-i686/tp_smapi.install (from rev 121236, tp_smapi/repos/community-testing-i686/tp_smapi.install) tp_smapi/repos/community-x86_64/PKGBUILD (from rev 121236, tp_smapi/repos/community-testing-x86_64/PKGBUILD) tp_smapi/repos/community-x86_64/tp_smapi.install (from rev 121236, tp_smapi/repos/community-testing-x86_64/tp_smapi.install) Deleted: tp_smapi/repos/community-i686/PKGBUILD tp_smapi/repos/community-i686/tp_smapi.install tp_smapi/repos/community-testing-i686/ tp_smapi/repos/community-testing-x86_64/ tp_smapi/repos/community-x86_64/PKGBUILD tp_smapi/repos/community-x86_64/tp_smapi.install ---+ /PKGBUILD | 118 /tp_smapi.install | 26 +++ community-i686/PKGBUILD | 59 -- community-i686/tp_smapi.install | 13 --- community-x86_64/PKGBUILD | 59 -- community-x86_64/tp_smapi.install | 13 --- 6 files changed, 144 insertions(+), 144 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:43 UTC (rev 121240) +++ community-i686/PKGBUILD 2014-10-22 21:35:44 UTC (rev 121241) @@ -1,59 +0,0 @@ -# $Id$ -# Maintainer: Lukas Fleischer -# Contributor: xduugu -# Contributor: nh2 -# Contributor: Steven Davidovitz -# Contributor: Nick B -# Contributor: Christof Musik -# Contributor: Stefan Rupp -# Contributor: Ignas Anikevicius - -pkgname=tp_smapi -pkgver=0.41 -pkgrel=54 -pkgdesc="Modules for ThinkPad's SMAPI functionality" -arch=('i686' 'x86_64') -url='https://github.com/evgeni/tp_smapi' -license=('GPL') -depends=('linux>=3.16' 'linux<3.17') -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -install="${pkgname}.install" -source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";) -md5sums=('63c683415c764568f6bf17c7eabe4752') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - _kernver=${_kernver:-$(uname -r)} - _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || true) - _kernver=$(< "${_extramodules}/version") - - sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \ - -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile - - make HDAPS=1 -} - -package() { - _kernver=${_kernver:-$(uname -r)} - _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || true) - _kernver=$(< "${_extramodules}/version") - - make -C "${_extramodules%/*}/${_kernver}/build" \ -INSTALL_MOD_PATH="${pkgdir}/${_extramodules%%/lib/*}" \ -M="${srcdir}/${pkgname}-${pkgver}" modules_install - - cd "${pkgdir}/${_extramodules%/*}" - mv "${_kernver}/extra" "${_extramodules##*/}" - rmdir "${_kernver}" - - # compress kernel modules - find "${pkgdir}" -name "*.ko" -exec gzip -9 {} + - - # load module on startup - echo tp_smapi > "${srcdir}/${pkgname}.conf" - install -Dm644 "${srcdir}/${pkgname}.conf" "${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf" - - # update kernel version in install file - sed -ri "s#^(extramodules=).*\$#\1${_extramodules}#" "${startdir}/${pkgname}.install" -} Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 121236, tp_smapi/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:44 UTC (rev 121241) @@ -0,0 +1,59 @@ +# $Id$ +# Maintainer: Lukas Fleischer +# Contributor: xduugu +# Contributor: nh2 +# Contributor: Steven Davidovitz +# Contributor: Nick B +# Contributor: Christof Musik +# Contributor: Stefan Rupp +# Contributor: Ignas Anikevicius + +pkgname=tp_smapi +pkgver=0.41 +pkgrel=55 +pkgdesc="Modules for ThinkPad's SMAPI functionality" +arch=('i686' 'x86_64') +url='https://github.com/evgeni/tp_smapi' +license=('GPL') +depends=('linux>=3.17' 'linux<3.18') +makedepends=('linux-headers>=3.17' 'linux-headers<3.18') +install="${pkgname}.install" +source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";) +md5sums=('63c683415c764568f6bf17c7eabe4752') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + _kernver=${_kernver:-$(uname -r)} + _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || true) + _kernver=$(< "${_extramodules}/version") + + sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \ + -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile + + make HDAPS=1 +} + +package() { + _kernver=${_kernver:-$(uname -r)} + _extramodules=$(re
[arch-commits] Commit in vhba-module/repos (14 files)
Date: Wednesday, October 22, 2014 @ 23:35:49 Author: thomas Revision: 121242 db-move: moved vhba-module from [community-testing] to [community] (i686, x86_64) Added: vhba-module/repos/community-i686/60-vhba.rules (from rev 121236, vhba-module/repos/community-testing-i686/60-vhba.rules) vhba-module/repos/community-i686/PKGBUILD (from rev 121236, vhba-module/repos/community-testing-i686/PKGBUILD) vhba-module/repos/community-i686/vhba-module.install (from rev 121236, vhba-module/repos/community-testing-i686/vhba-module.install) vhba-module/repos/community-x86_64/60-vhba.rules (from rev 121236, vhba-module/repos/community-testing-x86_64/60-vhba.rules) vhba-module/repos/community-x86_64/PKGBUILD (from rev 121236, vhba-module/repos/community-testing-x86_64/PKGBUILD) vhba-module/repos/community-x86_64/vhba-module.install (from rev 121236, vhba-module/repos/community-testing-x86_64/vhba-module.install) Deleted: vhba-module/repos/community-i686/60-vhba.rules vhba-module/repos/community-i686/PKGBUILD vhba-module/repos/community-i686/vhba-module.install vhba-module/repos/community-testing-i686/ vhba-module/repos/community-testing-x86_64/ vhba-module/repos/community-x86_64/60-vhba.rules vhba-module/repos/community-x86_64/PKGBUILD vhba-module/repos/community-x86_64/vhba-module.install --+ /60-vhba.rules |2 /PKGBUILD| 88 + /vhba-module.install | 44 community-i686/60-vhba.rules |1 community-i686/PKGBUILD | 44 community-i686/vhba-module.install | 22 community-x86_64/60-vhba.rules |1 community-x86_64/PKGBUILD| 44 community-x86_64/vhba-module.install | 22 9 files changed, 134 insertions(+), 134 deletions(-) Deleted: community-i686/60-vhba.rules === --- community-i686/60-vhba.rules2014-10-22 21:35:44 UTC (rev 121241) +++ community-i686/60-vhba.rules2014-10-22 21:35:49 UTC (rev 121242) @@ -1 +0,0 @@ -ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu", TAG+="uaccess" Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 121236, vhba-module/repos/community-testing-i686/60-vhba.rules) === --- community-i686/60-vhba.rules(rev 0) +++ community-i686/60-vhba.rules2014-10-22 21:35:49 UTC (rev 121242) @@ -0,0 +1 @@ +ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu", TAG+="uaccess" Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 21:35:44 UTC (rev 121241) +++ community-i686/PKGBUILD 2014-10-22 21:35:49 UTC (rev 121242) @@ -1,44 +0,0 @@ -# $Id$ -# Maintainer: Ray Rashif -# Contributor: Mateusz Herych -# Contributor: Charles Lindsay - -pkgname=vhba-module -pkgver=20140629 -_extramodules=extramodules-3.16-ARCH -pkgrel=8 -pkgdesc="Kernel module that emulates SCSI devices" -arch=('i686' 'x86_64') -url="http://cdemu.sourceforge.net/"; -license=('GPL') -depends=('linux>=3.16' 'linux<3.17') -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -options=(!makeflags) -install=$pkgname.install -source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2"; -'60-vhba.rules') -md5sums=('6b307a80df9c163768cc7ecb3ccebb71' - '4dc37dc348b5a2c83585829bde790dcc') - -prepare() { - cd $pkgname-$pkgver -} - -build() { - cd $pkgname-$pkgver - _kernver="$(cat /usr/lib/modules/$_extramodules/version)" - make KDIR=/usr/lib/modules/$_kernver/build -} - -package() { - cd $pkgname-$pkgver - install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko" - install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules" - - cd $startdir - cp -f $install ${install}.pkg - true && install=${install}.pkg - sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install -} - -# vim:set ts=2 sw=2 et: Copied: vhba-module/repos/community-i686/PKGBUILD (from rev 121236, vhba-module/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:49 UTC (rev 121242) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Ray Rashif +# Contributor: Mateusz Herych +# Contributor: Charles Lindsay + +pkgname=vhba-module +pkgver=20140629 +_extramodules=extramodules-3.17-ARCH +pkgrel=9 +pkgdesc="Kernel module that emulates SCSI devices" +arch=('i686' 'x86_64') +url="http://cdemu.sourceforge.net/"; +license=('GPL') +depends=('linux>=3.17' 'linux<3.18') +maked
[arch-commits] Commit in acpi_call/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:39 Author: thomas Revision: 121237 db-move: moved acpi_call from [community-testing] to [community] (i686, x86_64) Added: acpi_call/repos/community-i686/PKGBUILD (from rev 121236, acpi_call/repos/community-testing-i686/PKGBUILD) acpi_call/repos/community-i686/acpi_call.install (from rev 121236, acpi_call/repos/community-testing-i686/acpi_call.install) acpi_call/repos/community-x86_64/PKGBUILD (from rev 121236, acpi_call/repos/community-testing-x86_64/PKGBUILD) acpi_call/repos/community-x86_64/acpi_call.install (from rev 121236, acpi_call/repos/community-testing-x86_64/acpi_call.install) Deleted: acpi_call/repos/community-i686/PKGBUILD acpi_call/repos/community-i686/acpi_call.install acpi_call/repos/community-testing-i686/ acpi_call/repos/community-testing-x86_64/ acpi_call/repos/community-x86_64/PKGBUILD acpi_call/repos/community-x86_64/acpi_call.install + /PKGBUILD | 94 +++ /acpi_call.install | 28 ++ community-i686/PKGBUILD| 40 -- community-i686/acpi_call.install | 14 - community-x86_64/PKGBUILD | 40 -- community-x86_64/acpi_call.install | 14 - 6 files changed, 122 insertions(+), 108 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-10-22 20:57:28 UTC (rev 121236) +++ community-i686/PKGBUILD 2014-10-22 21:35:39 UTC (rev 121237) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: mortzu -# Contributor: fnord0 - -pkgname=acpi_call -pkgver=1.1.0 -pkgrel=13 -_extramodules=extramodules-3.16-ARCH -pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call' -arch=('i686' 'x86_64') -url="http://github.com/mkottman/${pkgname}"; -license=('GPL') -depends=('linux>=3.16' 'linux<3.17') -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -install="${pkgname}.install" -source=("${url}/archive/v${pkgver}.tar.gz") -sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0') - -build() { - cd ${pkgname}-${pkgver} - - _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" - - make KVERSION="${_kernver}" -} - -package() { - cd ${pkgname}-${pkgver} - - install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d} - install -m 644 ${pkgname}.ko "${pkgdir}"/usr/lib/modules/${_extramodules} - gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname}.ko - echo ${pkgname} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf - - install -dm 755 "${pkgdir}"/usr/share/${pkgname} - cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${pkgname}/ -} - -# vim: ts=2 sw=2 et: Copied: acpi_call/repos/community-i686/PKGBUILD (from rev 121236, acpi_call/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-10-22 21:35:39 UTC (rev 121237) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: mortzu +# Contributor: fnord0 + +pkgname=acpi_call +pkgver=1.1.0 +pkgrel=14 +_extramodules=extramodules-3.17-ARCH +pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call' +arch=('i686' 'x86_64') +url="http://github.com/mkottman/${pkgname}"; +license=('GPL') +depends=('linux>=3.17' 'linux<3.18') +makedepends=('linux-headers>=3.17' 'linux-headers<3.18') +install="${pkgname}.install" +source=("${url}/archive/v${pkgver}.tar.gz") +sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0') + +prepare() { + cd ${pkgname}-${pkgver} + + # Fix build with Linux 3.17 + sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c +} + +build() { + cd ${pkgname}-${pkgver} + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KVERSION="${_kernver}" +} + +package() { + cd ${pkgname}-${pkgver} + + install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d} + install -m 644 ${pkgname}.ko "${pkgdir}"/usr/lib/modules/${_extramodules} + gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname}.ko + echo ${pkgname} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf + + install -dm 755 "${pkgdir}"/usr/share/${pkgname} + cp -dr --no-preserve='ownership' {examples,support} "${pkgdir}"/usr/share/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Deleted: community-i686/acpi_call.install === --- community-i686/acpi_call.install2014-10-22 20:57:28 UTC (rev 121236) +++ community-i686/acpi_call.install2014-10-22 21:35:39 UTC (rev 121237) @@ -1,14 +0,0 @@ -post_install() { - _extramodules=extramodules-3.16-ARCH - depmod $(cat /usr/lib/module
[arch-commits] Commit in nvidia-304xx/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:22 Author: thomas Revision: 225204 db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64) Added: nvidia-304xx/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-304xx/repos/testing-i686/PKGBUILD) nvidia-304xx/repos/extra-i686/nvidia.install (from rev 225200, nvidia-304xx/repos/testing-i686/nvidia.install) nvidia-304xx/repos/extra-x86_64/PKGBUILD (from rev 225200, nvidia-304xx/repos/testing-x86_64/PKGBUILD) nvidia-304xx/repos/extra-x86_64/nvidia.install (from rev 225200, nvidia-304xx/repos/testing-x86_64/nvidia.install) Deleted: nvidia-304xx/repos/extra-i686/PKGBUILD nvidia-304xx/repos/extra-i686/nvidia.install nvidia-304xx/repos/extra-x86_64/PKGBUILD nvidia-304xx/repos/extra-x86_64/nvidia.install nvidia-304xx/repos/testing-i686/ nvidia-304xx/repos/testing-x86_64/ -+ /PKGBUILD | 106 ++ /nvidia.install | 30 +++ extra-i686/PKGBUILD | 53 - extra-i686/nvidia.install | 15 - extra-x86_64/PKGBUILD | 53 - extra-x86_64/nvidia.install | 15 - 6 files changed, 136 insertions(+), 136 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-22 21:35:21 UTC (rev 225203) +++ extra-i686/PKGBUILD 2014-10-22 21:35:22 UTC (rev 225204) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Thomas Baechler - -pkgname=nvidia-304xx -pkgver=304.123 -_extramodules=extramodules-3.16-ARCH -pkgrel=7 -pkgdesc="NVIDIA drivers for linux, 304xx legacy branch" -arch=('i686' 'x86_64') -url="http://www.nvidia.com/"; -depends=('linux>=3.16' 'linux<3.17' 'nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}") -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -conflicts=('nvidia') -license=('custom') -install=nvidia.install -options=(!strip) - -if [ "$CARCH" = "i686" ]; then -_arch='x86' -_pkg="NVIDIA-Linux-${_arch}-${pkgver}" - source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) -md5sums=('52307054483f5c40391608ce69114d48') -elif [ "$CARCH" = "x86_64" ]; then -_arch='x86_64' - _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32" - source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) -md5sums=('9d461e9e00e473f458aee96cd6d85101') -fi - -prepare() { -cd "${srcdir}" -sh "${_pkg}.run" --extract-only -cd "${pkg}" -# patches here -} - -build() { -_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" -cd "${_pkg}/kernel" -make SYSSRC=/usr/lib/modules/"${_kernver}/build" module -} - -package() { -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" -install -d -m755 "${pkgdir}/usr/lib/modprobe.d" -echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf" -sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "${startdir}/nvidia.install" -gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" - -# the license file is part of nvidia-304xx-utils - the module depends on it, so we don't ship it another time. -} Copied: nvidia-304xx/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-304xx/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-22 21:35:22 UTC (rev 225204) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Thomas Baechler + +pkgname=nvidia-304xx +pkgver=304.123 +_extramodules=extramodules-3.17-ARCH +pkgrel=9 +pkgdesc="NVIDIA drivers for linux, 304xx legacy branch" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/"; +depends=('linux>=3.17' 'linux<3.18' 'nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}") +makedepends=('linux-headers>=3.17' 'linux-headers<3.18') +conflicts=('nvidia') +license=('custom') +install=nvidia.install +options=(!strip) + +if [ "$CARCH" = "i686" ]; then +_arch='x86' +_pkg="NVIDIA-Linux-${_arch}-${pkgver}" + source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) +md5sums=('52307054483f5c40391608ce69114d48') +elif [ "$CARCH" = "x86_64" ]; then +_arch='x86_64' + _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32" + source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) +md5sums=('9d461e9e00e473f458aee96cd6d85101') +fi + +prepare() { +cd "${srcdir}" +sh "${_pkg}.run" --extract-only +cd "${pkg}" +# patches here +} + +build() { +_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" +cd "${_pkg}/kernel" +make SYSSRC=/usr/lib/modules/"${_kernver}/build" module +} + +package() { +install -D -m644 "${srcdir}/${_pkg}/ke
[arch-commits] Commit in nvidia-304xx-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:23 Author: thomas Revision: 225205 db-move: moved nvidia-304xx-lts from [testing] to [extra] (i686, x86_64) Added: nvidia-304xx-lts/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-304xx-lts/repos/testing-i686/PKGBUILD) nvidia-304xx-lts/repos/extra-i686/nvidia-304xx-lts.install (from rev 225200, nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install) nvidia-304xx-lts/repos/extra-x86_64/PKGBUILD (from rev 225200, nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD) nvidia-304xx-lts/repos/extra-x86_64/nvidia-304xx-lts.install (from rev 225200, nvidia-304xx-lts/repos/testing-x86_64/nvidia-304xx-lts.install) Deleted: nvidia-304xx-lts/repos/extra-i686/PKGBUILD nvidia-304xx-lts/repos/extra-i686/nvidia-304xx-lts.install nvidia-304xx-lts/repos/extra-x86_64/PKGBUILD nvidia-304xx-lts/repos/extra-x86_64/nvidia-304xx-lts.install nvidia-304xx-lts/repos/testing-i686/ nvidia-304xx-lts/repos/testing-x86_64/ ---+ /PKGBUILD | 94 /nvidia-304xx-lts.install | 30 ++ extra-i686/PKGBUILD | 47 extra-i686/nvidia-304xx-lts.install | 15 - extra-x86_64/PKGBUILD | 47 extra-x86_64/nvidia-304xx-lts.install | 15 - 6 files changed, 124 insertions(+), 124 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-22 21:35:22 UTC (rev 225204) +++ extra-i686/PKGBUILD 2014-10-22 21:35:23 UTC (rev 225205) @@ -1,47 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Andreas Radke - -pkgname=nvidia-304xx-lts -pkgver=304.123 -_extramodules=extramodules-3.14-lts -pkgrel=5 -pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch" -arch=('i686' 'x86_64') -url="http://www.nvidia.com/"; -depends=('linux-lts>=3.14.21' 'nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}") -makedepends=('linux-lts-headers>=3.14.21') -conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts') -provides=('nvidia-304xx') -license=('custom') -install=nvidia-304xx-lts.install -options=(!strip) - -if [ "$CARCH" = "i686" ]; then -_arch='x86' -_pkg="NVIDIA-Linux-${_arch}-${pkgver}" - source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) -md5sums=('52307054483f5c40391608ce69114d48') -elif [ "$CARCH" = "x86_64" ]; then -_arch='x86_64' - _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32" - source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) -md5sums=('9d461e9e00e473f458aee96cd6d85101') -fi - -build() { -_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" -sh "${_pkg}.run" --extract-only -cd "${_pkg}/kernel" -make SYSSRC=/usr/lib/modules/"${_kernver}/build" module -} - -package() { -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" -install -d -m755 "${pkgdir}/usr/lib/modprobe.d" -echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf" -echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf" -gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" -install -D -m644 ${_pkg}/LICENSE "${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE" -} Copied: nvidia-304xx-lts/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-304xx-lts/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-22 21:35:23 UTC (rev 225205) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Andreas Radke + +pkgname=nvidia-304xx-lts +pkgver=304.123 +_extramodules=extramodules-3.14-lts +pkgrel=6 +pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/"; +depends=('linux-lts>=3.14.21' 'nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}") +makedepends=('linux-lts-headers>=3.14.21') +conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts') +provides=('nvidia-304xx') +license=('custom') +install=nvidia-304xx-lts.install +options=(!strip) + +if [ "$CARCH" = "i686" ]; then +_arch='x86' +_pkg="NVIDIA-Linux-${_arch}-${pkgver}" + source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) +md5sums=('52307054483f5c40391608ce69114d48') +elif [ "$CARCH" = "x86_64" ]; then +_arch='x86_64' + _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32" + source=("http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";) +md5sums=('9d461e9e00e473f458aee96cd6d85101') +fi + +build() { +_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" +sh "${_pkg}.run" --extract-only +cd "${_pkg}/
[arch-commits] Commit in lirc/repos (34 files)
Date: Wednesday, October 22, 2014 @ 23:35:19 Author: thomas Revision: 225202 db-move: moved lirc from [testing] to [extra] (i686, x86_64) Added: lirc/repos/extra-i686/PKGBUILD (from rev 225200, lirc/repos/testing-i686/PKGBUILD) lirc/repos/extra-i686/irexec.service (from rev 225200, lirc/repos/testing-i686/irexec.service) lirc/repos/extra-i686/lirc-0.9.1a-fix-segfaults.patch (from rev 225200, lirc/repos/testing-i686/lirc-0.9.1a-fix-segfaults.patch) lirc/repos/extra-i686/lirc-utils.install (from rev 225200, lirc/repos/testing-i686/lirc-utils.install) lirc/repos/extra-i686/lirc.install (from rev 225200, lirc/repos/testing-i686/lirc.install) lirc/repos/extra-i686/lirc.logrotate (from rev 225200, lirc/repos/testing-i686/lirc.logrotate) lirc/repos/extra-i686/lirc.tmpfiles (from rev 225200, lirc/repos/testing-i686/lirc.tmpfiles) lirc/repos/extra-i686/wpc8769l-build-fix.patch (from rev 225200, lirc/repos/testing-i686/wpc8769l-build-fix.patch) lirc/repos/extra-x86_64/PKGBUILD (from rev 225200, lirc/repos/testing-x86_64/PKGBUILD) lirc/repos/extra-x86_64/irexec.service (from rev 225200, lirc/repos/testing-x86_64/irexec.service) lirc/repos/extra-x86_64/lirc-0.9.1a-fix-segfaults.patch (from rev 225200, lirc/repos/testing-x86_64/lirc-0.9.1a-fix-segfaults.patch) lirc/repos/extra-x86_64/lirc-utils.install (from rev 225200, lirc/repos/testing-x86_64/lirc-utils.install) lirc/repos/extra-x86_64/lirc.install (from rev 225200, lirc/repos/testing-x86_64/lirc.install) lirc/repos/extra-x86_64/lirc.logrotate (from rev 225200, lirc/repos/testing-x86_64/lirc.logrotate) lirc/repos/extra-x86_64/lirc.tmpfiles (from rev 225200, lirc/repos/testing-x86_64/lirc.tmpfiles) lirc/repos/extra-x86_64/wpc8769l-build-fix.patch (from rev 225200, lirc/repos/testing-x86_64/wpc8769l-build-fix.patch) Deleted: lirc/repos/extra-i686/PKGBUILD lirc/repos/extra-i686/irexec.service lirc/repos/extra-i686/lirc-0.9.1a-fix-segfaults.patch lirc/repos/extra-i686/lirc-utils.install lirc/repos/extra-i686/lirc.install lirc/repos/extra-i686/lirc.logrotate lirc/repos/extra-i686/lirc.tmpfiles lirc/repos/extra-i686/wpc8769l-build-fix.patch lirc/repos/extra-x86_64/PKGBUILD lirc/repos/extra-x86_64/irexec.service lirc/repos/extra-x86_64/lirc-0.9.1a-fix-segfaults.patch lirc/repos/extra-x86_64/lirc-utils.install lirc/repos/extra-x86_64/lirc.install lirc/repos/extra-x86_64/lirc.logrotate lirc/repos/extra-x86_64/lirc.tmpfiles lirc/repos/extra-x86_64/wpc8769l-build-fix.patch lirc/repos/testing-i686/ lirc/repos/testing-x86_64/ --+ /PKGBUILD| 204 + /irexec.service | 22 ++ /lirc-0.9.1a-fix-segfaults.patch | 158 +++ /lirc-utils.install | 26 +++ /lirc.install| 28 +++ /lirc.logrotate | 10 + /lirc.tmpfiles |2 /wpc8769l-build-fix.patch| 180 ++ extra-i686/PKGBUILD | 102 extra-i686/irexec.service| 11 - extra-i686/lirc-0.9.1a-fix-segfaults.patch | 79 - extra-i686/lirc-utils.install| 13 - extra-i686/lirc.install | 14 - extra-i686/lirc.logrotate|5 extra-i686/lirc.tmpfiles |1 extra-i686/wpc8769l-build-fix.patch | 90 --- extra-x86_64/PKGBUILD| 102 extra-x86_64/irexec.service | 11 - extra-x86_64/lirc-0.9.1a-fix-segfaults.patch | 79 - extra-x86_64/lirc-utils.install | 13 - extra-x86_64/lirc.install| 14 - extra-x86_64/lirc.logrotate |5 extra-x86_64/lirc.tmpfiles |1 extra-x86_64/wpc8769l-build-fix.patch| 90 --- 24 files changed, 630 insertions(+), 630 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 225201:225202 to see the changes.
[arch-commits] Commit in nvidia-lts/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:24 Author: thomas Revision: 225206 db-move: moved nvidia-lts from [testing] to [extra] (i686, x86_64) Added: nvidia-lts/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-lts/repos/testing-i686/PKGBUILD) nvidia-lts/repos/extra-i686/nvidia-lts.install (from rev 225200, nvidia-lts/repos/testing-i686/nvidia-lts.install) nvidia-lts/repos/extra-x86_64/PKGBUILD (from rev 225200, nvidia-lts/repos/testing-x86_64/PKGBUILD) nvidia-lts/repos/extra-x86_64/nvidia-lts.install (from rev 225200, nvidia-lts/repos/testing-x86_64/nvidia-lts.install) Deleted: nvidia-lts/repos/extra-i686/PKGBUILD nvidia-lts/repos/extra-i686/nvidia-lts.install nvidia-lts/repos/extra-x86_64/PKGBUILD nvidia-lts/repos/extra-x86_64/nvidia-lts.install nvidia-lts/repos/testing-i686/ nvidia-lts/repos/testing-x86_64/ -+ /PKGBUILD | 96 ++ /nvidia-lts.install | 30 +++ extra-i686/PKGBUILD | 48 --- extra-i686/nvidia-lts.install | 15 - extra-x86_64/PKGBUILD | 48 --- extra-x86_64/nvidia-lts.install | 15 - 6 files changed, 126 insertions(+), 126 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-22 21:35:23 UTC (rev 225205) +++ extra-i686/PKGBUILD 2014-10-22 21:35:24 UTC (rev 225206) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Eric Bélanger - -pkgname=nvidia-lts -pkgver=343.22 -_extramodules=extramodules-3.14-lts -pkgrel=3 -pkgdesc="NVIDIA drivers for linux-lts" -arch=('i686' 'x86_64') -url="http://www.nvidia.com/"; -depends=('linux-lts>=3.14.21' "nvidia-utils=$pkgver" 'nvidia-libgl') -makedepends=('linux-lts-headers>=3.14.21') -provides=('nvidia') -license=('custom') -install=nvidia-lts.install -options=(!strip) -source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run"; - "ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) -md5sums=('696d0bfa7195e22e0c4bd858fff2abb6' - '3d98eaa01a94e86abb04723ae2a702b1') - -[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" -[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" - -prepare() { -sh ${_pkg}.run --extract-only -} - -build() { - _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" - cd "${_pkg}/kernel" - make SYSSRC=/usr/lib/modules/${_kernver}/build module - - cd uvm - make SYSSRC=/usr/lib/modules/${_kernver}/build module -} - -package() { - install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko" - install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \ - "${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-uvm.ko" - gzip "${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/"*.ko - install -d -m755 "${pkgdir}/usr/lib/modprobe.d" - echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf" - echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf" - install -D -m644 "${srcdir}/${_pkg}/LICENSE" "${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE" -} Copied: nvidia-lts/repos/extra-i686/PKGBUILD (from rev 225200, nvidia-lts/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-22 21:35:24 UTC (rev 225206) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Eric Bélanger + +pkgname=nvidia-lts +pkgver=343.22 +_extramodules=extramodules-3.14-lts +pkgrel=4 +pkgdesc="NVIDIA drivers for linux-lts" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/"; +depends=('linux-lts>=3.14.21' "nvidia-utils=$pkgver" 'nvidia-libgl') +makedepends=('linux-lts-headers>=3.14.21') +provides=('nvidia') +license=('custom') +install=nvidia-lts.install +options=(!strip) +source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run"; + "ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) +md5sums=('696d0bfa7195e22e0c4bd858fff2abb6' + '3d98eaa01a94e86abb04723ae2a702b1') + +[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" +[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" + +prepare() { +sh ${_pkg}.run --extract-only +} + +build() { + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + cd "${_pkg}/kernel" + make SYSSRC=/usr/lib/modules/${_kernver}/build module + + cd uvm + make SYSSRC=/usr/lib/modules/${_kernver}/build module +} + +package() { + install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ +"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko" + insta
[arch-commits] Commit in nvidia/repos (10 files)
Date: Wednesday, October 22, 2014 @ 23:35:21 Author: thomas Revision: 225203 db-move: moved nvidia from [testing] to [extra] (i686, x86_64) Added: nvidia/repos/extra-i686/PKGBUILD (from rev 225200, nvidia/repos/testing-i686/PKGBUILD) nvidia/repos/extra-i686/nvidia.install (from rev 225200, nvidia/repos/testing-i686/nvidia.install) nvidia/repos/extra-x86_64/PKGBUILD (from rev 225200, nvidia/repos/testing-x86_64/PKGBUILD) nvidia/repos/extra-x86_64/nvidia.install (from rev 225200, nvidia/repos/testing-x86_64/nvidia.install) Deleted: nvidia/repos/extra-i686/PKGBUILD nvidia/repos/extra-i686/nvidia.install nvidia/repos/extra-x86_64/PKGBUILD nvidia/repos/extra-x86_64/nvidia.install nvidia/repos/testing-i686/ nvidia/repos/testing-x86_64/ -+ /PKGBUILD | 94 ++ /nvidia.install | 36 extra-i686/PKGBUILD | 47 - extra-i686/nvidia.install | 18 extra-x86_64/PKGBUILD | 47 - extra-x86_64/nvidia.install | 18 6 files changed, 130 insertions(+), 130 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-22 21:35:19 UTC (rev 225202) +++ extra-i686/PKGBUILD 2014-10-22 21:35:21 UTC (rev 225203) @@ -1,47 +0,0 @@ -# $Id$ -# Maintainer : Thomas Baechler - -pkgname=nvidia -pkgver=343.22 -_extramodules=extramodules-3.16-ARCH -pkgrel=2 -pkgdesc="NVIDIA drivers for linux" -arch=('i686' 'x86_64') -url="http://www.nvidia.com/"; -depends=('linux>=3.16' 'linux<3.17' "nvidia-libgl" "nvidia-utils=${pkgver}") -makedepends=('linux-headers>=3.16' 'linux-headers<3.17') -license=('custom') -install=nvidia.install -options=(!strip) -source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run"; - "ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) -md5sums=('696d0bfa7195e22e0c4bd858fff2abb6' - '3d98eaa01a94e86abb04723ae2a702b1') - -[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" -[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" - -prepare() { -sh "${_pkg}.run" --extract-only -cd "${_pkg}" -# patches here -} - -build() { -_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" -cd "${_pkg}"/kernel -make SYSSRC=/usr/lib/modules/"${_kernver}/build" module - -cd uvm -make SYSSRC=/usr/lib/modules/"${_kernver}/build" module -} - -package() { -install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" -install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \ -"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko" -gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko -install -d -m755 "${pkgdir}/usr/lib/modprobe.d" -echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf" -} Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 225200, nvidia/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-22 21:35:21 UTC (rev 225203) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer : Thomas Baechler + +pkgname=nvidia +pkgver=343.22 +_extramodules=extramodules-3.17-ARCH +pkgrel=4 +pkgdesc="NVIDIA drivers for linux" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/"; +depends=('linux>=3.17' 'linux<3.18' "nvidia-libgl" "nvidia-utils=${pkgver}") +makedepends=('linux-headers>=3.17' 'linux-headers<3.18') +license=('custom') +install=nvidia.install +options=(!strip) +source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run"; + "ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";) +md5sums=('696d0bfa7195e22e0c4bd858fff2abb6' + '3d98eaa01a94e86abb04723ae2a702b1') + +[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}" +[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32" + +prepare() { +sh "${_pkg}.run" --extract-only +cd "${_pkg}" +# patches here +} + +build() { +_kernver="$(cat /usr/lib/modules/${_extramodules}/version)" +cd "${_pkg}"/kernel +make SYSSRC=/usr/lib/modules/"${_kernver}/build" module + +cd uvm +make SYSSRC=/usr/lib/modules/"${_kernver}/build" module +} + +package() { +install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \ +"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko" +install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \ +"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko" +gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko +install -d -m755 "${pkgdir}/usr/lib/modprobe.d" +ech
[arch-commits] Commit in intel-ucode/repos (8 files)
ABILITY FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL +DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE +OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION. + +TERMINATION OF THIS AGREEMENT. Intel may terminate this Agreement at any time +if you violate its terms. Upon termination, you will immediately destroy the +Software or return all copies of the Software to Intel. + +APPLICABLE LAWS. Claims arising under this Agreement shall be governed by the +laws of California, excluding its principles of conflict of laws and the +United Nations Convention on Contracts for the Sale of Goods. You may not +export the Software in violation of applicable export laws and regulations. +Intel is not obligated under any other agreements unless they are in writing +and signed by an authorized representative of Intel. + +GOVERNMENT RESTRICTED RIGHTS. The Software is provided with "RESTRICTED +RIGHTS." Use, duplication, or disclosure by the Government is subject to +restrictions as set forth in FAR52.227-14 and DFAR252.227-7013 et seq. or its +successor. Use of the Software by the Government constitutes acknowledgment +of Intel's proprietary rights therein. Contractor or Manufacturer is Intel +2200 Mission College Blvd., Santa Clara, CA 95052. Deleted: extra-any/PKGBUILD =========== --- extra-any/PKGBUILD 2014-10-22 21:34:42 UTC (rev 225200) +++ extra-any/PKGBUILD 2014-10-22 21:35:17 UTC (rev 225201) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=intel-ucode -pkgver=20140624 -pkgrel=1 -pkgdesc="Microcode update files for Intel CPUs" -arch=('any') -url="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22"; -replaces=('microcode_ctl') -license=('custom') -# Some random "download id" that intel has in their downloadcenter -_dlid=23984 -source=(http://downloadmirror.intel.com/${_dlid}/eng/microcode-${pkgver}.tgz -LICENSE -intel-microcode2ucode.c) -sha256sums=('b4662ac780438a7b2d87e6d26a7066feb807f37c6e5b6fa147089f4edb02ea37' -'6983e83ec10c6467fb9101ea496e0443f0574c805907155118e2c9f0bbea97b6' -'c51b1b1d8b4b28e7d5d007917c1e444af1a2ff04a9408aa9067c0e57d70164de') - -build() { - cd "$srcdir" - gcc -Wall ${CFLAGS} -o intel-microcode2ucode intel-microcode2ucode.c - ./intel-microcode2ucode ./microcode.dat -} - -package() { - cd "$srcdir" - install -d -m755 "${pkgdir}"/usr/lib/firmware/intel-ucode/ - cp intel-ucode/* "${pkgdir}"/usr/lib/firmware/intel-ucode/ - install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE -} Copied: intel-ucode/repos/extra-any/PKGBUILD (from rev 225200, intel-ucode/repos/testing-any/PKGBUILD) === --- extra-any/PKGBUILD (rev 0) +++ extra-any/PKGBUILD 2014-10-22 21:35:17 UTC (rev 225201) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=intel-ucode +pkgver=20140913 +pkgrel=1 +pkgdesc="Microcode update files for Intel CPUs" +arch=('any') +install=$pkgname.install +url="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22"; +replaces=('microcode_ctl') +license=('custom') +# Some random "download id" that intel has in their downloadcenter +_dlid=24290 +source=(http://downloadmirror.intel.com/${_dlid}/eng/microcode-${pkgver}.tgz +LICENSE +intel-microcode2ucode.c) +sha256sums=('ea6c0ee21d1fbf261f093176a78089c21411e5fe0e2c35b258cedf2b39987e15' +'6983e83ec10c6467fb9101ea496e0443f0574c805907155118e2c9f0bbea97b6' +'03a13a966316a4d3d9c7e1b46007fd4b80911aea5ddd957ddf33ce660efe03de') + +build() { + cd "$srcdir" + gcc -Wall ${CFLAGS} -o intel-microcode2ucode intel-microcode2ucode.c + ./intel-microcode2ucode ./microcode.dat +} + +package() { + cd "$srcdir" + + install -d -m755 "${pkgdir}"/boot + + mkdir -p kernel/x86/microcode + mv microcode.bin kernel/x86/microcode/GenuineIntel.bin + echo kernel/x86/microcode/GenuineIntel.bin | bsdcpio -o -H newc -R 0:0 > "${pkgdir}"/boot/intel-ucode.img + + install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} Deleted: extra-any/intel-microcode2ucode.c === --- extra-any/intel-microcode2ucode.c 2014-10-22 21:34:42 UTC (rev 225200) +++ extra-any/intel-microcode2ucode.c 2014-10-22 21:35:17 UTC (rev 225201) @@ -1,163 +0,0 @@ -/* - * Convert Intel microcode.dat into individual ucode files - * named: intel-ucode/$family-$model-$stepping - * - * The subdir intel-ucode/ is created in the current worki
[arch-commits] Commit in linux-lts/repos (42 files)
Date: Wednesday, October 22, 2014 @ 23:34:42 Author: thomas Revision: 225200 db-move: moved linux-lts from [testing] to [core] (i686, x86_64) Added: linux-lts/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch (from rev 225196, linux-lts/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch) linux-lts/repos/core-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch (from rev 225196, linux-lts/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch) linux-lts/repos/core-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch (from rev 225196, linux-lts/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch) linux-lts/repos/core-i686/0006-genksyms-fix-typeof-handling.patch (from rev 225196, linux-lts/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch) linux-lts/repos/core-i686/PKGBUILD (from rev 225196, linux-lts/repos/testing-i686/PKGBUILD) linux-lts/repos/core-i686/change-default-console-loglevel.patch (from rev 225196, linux-lts/repos/testing-i686/change-default-console-loglevel.patch) linux-lts/repos/core-i686/config (from rev 225196, linux-lts/repos/testing-i686/config) linux-lts/repos/core-i686/config.x86_64 (from rev 225196, linux-lts/repos/testing-i686/config.x86_64) linux-lts/repos/core-i686/linux-lts.install (from rev 225196, linux-lts/repos/testing-i686/linux-lts.install) linux-lts/repos/core-i686/linux-lts.preset (from rev 225196, linux-lts/repos/testing-i686/linux-lts.preset) linux-lts/repos/core-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch (from rev 225196, linux-lts/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch) linux-lts/repos/core-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch (from rev 225196, linux-lts/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch) linux-lts/repos/core-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch (from rev 225196, linux-lts/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch) linux-lts/repos/core-x86_64/0006-genksyms-fix-typeof-handling.patch (from rev 225196, linux-lts/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch) linux-lts/repos/core-x86_64/PKGBUILD (from rev 225196, linux-lts/repos/testing-x86_64/PKGBUILD) linux-lts/repos/core-x86_64/change-default-console-loglevel.patch (from rev 225196, linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch) linux-lts/repos/core-x86_64/config (from rev 225196, linux-lts/repos/testing-x86_64/config) linux-lts/repos/core-x86_64/config.x86_64 (from rev 225196, linux-lts/repos/testing-x86_64/config.x86_64) linux-lts/repos/core-x86_64/linux-lts.install (from rev 225196, linux-lts/repos/testing-x86_64/linux-lts.install) linux-lts/repos/core-x86_64/linux-lts.preset (from rev 225196, linux-lts/repos/testing-x86_64/linux-lts.preset) Deleted: linux-lts/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch linux-lts/repos/core-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch linux-lts/repos/core-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch linux-lts/repos/core-i686/0006-genksyms-fix-typeof-handling.patch linux-lts/repos/core-i686/PKGBUILD linux-lts/repos/core-i686/change-default-console-loglevel.patch linux-lts/repos/core-i686/config linux-lts/repos/core-i686/config.x86_64 linux-lts/repos/core-i686/linux-lts.install linux-lts/repos/core-i686/linux-lts.preset linux-lts/repos/core-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch linux-lts/repos/core-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch linux-lts/repos/core-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch linux-lts/repos/core-x86_64/0006-genksyms-fix-typeof-handling.patch linux-lts/repos/core-x86_64/PKGBUILD linux-lts/repos/core-x86_64/change-default-console-loglevel.patch linux-lts/repos/core-x86_64/config linux-lts/repos/core-x86_64/config.x86_64 linux-lts/repos/core-x86_64/linux-lts.install linux-lts/repos/core-x86_64/linux-lts.preset linux-lts/repos/testing-i686/ linux-lts/repos/testing-x86_64/ -+ /0001-Bluetooth-allocate-static-minor-for-vhci.patch| 148 /0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch| 186 /0003-module-remove-MODULE_GENERIC_TABLE.patch | 150 /0006-genksyms-fix-typeof-handling.patch| 2720 ++ /PKGBUILD | 646 /change-default-console-loglevel.patch | 24 /config |13392 ++ /confi
[arch-commits] Commit in linux-firmware/repos (3 files)
Date: Wednesday, October 22, 2014 @ 23:34:40 Author: thomas Revision: 225199 db-move: moved linux-firmware from [testing] to [core] (any) Added: linux-firmware/repos/core-any/PKGBUILD (from rev 225196, linux-firmware/repos/testing-any/PKGBUILD) Deleted: linux-firmware/repos/core-any/PKGBUILD linux-firmware/repos/testing-any/ ---+ /PKGBUILD | 56 core-any/PKGBUILD | 52 2 files changed, 56 insertions(+), 52 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2014-10-22 21:34:38 UTC (rev 225198) +++ core-any/PKGBUILD 2014-10-22 21:34:40 UTC (rev 225199) @@ -1,52 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=linux-firmware -# Commit date + git rev-parse --short origin/master -pkgver=20140828.13eb208 -pkgrel=1 -pkgdesc="Firmware files for Linux" -makedepends=('git') -arch=('any') -url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary"; -license=('GPL2' 'GPL3' 'custom') -conflicts=('linux-firmware-git' - 'kernel26-firmware' - 'ar9170-fw' - 'iwlwifi-1000-ucode' - 'iwlwifi-3945-ucode' - 'iwlwifi-4965-ucode' - 'iwlwifi-5000-ucode' - 'iwlwifi-5150-ucode' - 'iwlwifi-6000-ucode' - 'rt2870usb-fw' - 'rt2x00-rt61-fw' - 'rt2x00-rt71w-fw' - 'amd-ucode') -replaces=('kernel26-firmware' - 'ar9170-fw' - 'iwlwifi-1000-ucode' - 'iwlwifi-3945-ucode' - 'iwlwifi-4965-ucode' - 'iwlwifi-5000-ucode' - 'iwlwifi-5150-ucode' - 'iwlwifi-6000-ucode' - 'rt2870usb-fw' - 'rt2x00-rt61-fw' - 'rt2x00-rt71w-fw' - 'amd-ucode') -options=(!strip) -source=('git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=13eb208681bf7cc7434189dd925e587d12707d50') -md5sums=('SKIP') - -package() { - cd "${srcdir}/${pkgname}" - # remove not needed Makefile #35236 - rm Makefile - install -d -m755 "${pkgdir}/usr/lib/firmware" - cp -a * "${pkgdir}/usr/lib/firmware/" - install -d -m755 "${pkgdir}/usr/share/licenses/linux-firmware/" - rm -f "${pkgdir}/usr/lib/firmware/"{README*,configure,GPL*} - mv "${pkgdir}/usr/lib/firmware"/{LICEN*,WHENCE} "${pkgdir}/usr/share/licenses/linux-firmware/" -} -# vim:set ts=2 sw=2 et: Copied: linux-firmware/repos/core-any/PKGBUILD (from rev 225196, linux-firmware/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2014-10-22 21:34:40 UTC (rev 225199) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=linux-firmware +# Commit date + git rev-parse --short origin/master +pkgver=20141009.0e5f637 +pkgrel=1 +pkgdesc="Firmware files for Linux" +makedepends=('git') +arch=('any') +url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary"; +license=('GPL2' 'GPL3' 'custom') +conflicts=('linux-firmware-git' + 'kernel26-firmware' + 'ar9170-fw' + 'iwlwifi-1000-ucode' + 'iwlwifi-3945-ucode' + 'iwlwifi-4965-ucode' + 'iwlwifi-5000-ucode' + 'iwlwifi-5150-ucode' + 'iwlwifi-6000-ucode' + 'rt2870usb-fw' + 'rt2x00-rt61-fw' + 'rt2x00-rt71w-fw' + 'amd-ucode') +replaces=('kernel26-firmware' + 'ar9170-fw' + 'iwlwifi-1000-ucode' + 'iwlwifi-3945-ucode' + 'iwlwifi-4965-ucode' + 'iwlwifi-5000-ucode' + 'iwlwifi-5150-ucode' + 'iwlwifi-6000-ucode' + 'rt2870usb-fw' + 'rt2x00-rt61-fw' + 'rt2x00-rt71w-fw' + 'amd-ucode') +options=(!strip) +source=('git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=0e5f637') +md5sums=('SKIP') + +package() { + cd "${srcdir}/${pkgname}" + + make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install + rm "${pkgdir}/usr/lib/firmware/"{Makefile,README,configure,GPL-3} + + install -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm644 LICEN* WHENCE "${pkgdir}/usr/share/licenses/linux-firmware/" + + # Trigger a microcode reload for configurations not using early updates + install -d "${pkgdir}/usr/lib/tmpfiles.d" + echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \ +>"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf" +} +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in iw/repos (6 files)
Date: Wednesday, October 22, 2014 @ 23:34:37 Author: thomas Revision: 225197 db-move: moved iw from [testing] to [core] (i686, x86_64) Added: iw/repos/core-i686/PKGBUILD (from rev 225196, iw/repos/testing-i686/PKGBUILD) iw/repos/core-x86_64/PKGBUILD (from rev 225196, iw/repos/testing-x86_64/PKGBUILD) Deleted: iw/repos/core-i686/PKGBUILD iw/repos/core-x86_64/PKGBUILD iw/repos/testing-i686/ iw/repos/testing-x86_64/ --+ /PKGBUILD| 48 core-i686/PKGBUILD | 24 core-x86_64/PKGBUILD | 24 3 files changed, 48 insertions(+), 48 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2014-10-22 19:02:00 UTC (rev 225196) +++ core-i686/PKGBUILD 2014-10-22 21:34:37 UTC (rev 225197) @@ -1,24 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=iw -pkgver=3.14 -pkgrel=1 -pkgdesc="nl80211 based CLI configuration utility for wireless devices" -arch=("i686" "x86_64") -url="http://wireless.kernel.org/en/users/Documentation/iw"; -license=("GPL") -depends=("libnl") -makedepends=("linux-api-headers") -source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('871cb28aa554581ed3508b296071051cecdd8f62e95313e00840d908d999') - -build() { - cd "$srcdir"/$pkgname-$pkgver - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install -} Copied: iw/repos/core-i686/PKGBUILD (from rev 225196, iw/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2014-10-22 21:34:37 UTC (rev 225197) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=3.17 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +} Deleted: core-x86_64/PKGBUILD =========== --- core-x86_64/PKGBUILD2014-10-22 19:02:00 UTC (rev 225196) +++ core-x86_64/PKGBUILD2014-10-22 21:34:37 UTC (rev 225197) @@ -1,24 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=iw -pkgver=3.14 -pkgrel=1 -pkgdesc="nl80211 based CLI configuration utility for wireless devices" -arch=("i686" "x86_64") -url="http://wireless.kernel.org/en/users/Documentation/iw"; -license=("GPL") -depends=("libnl") -makedepends=("linux-api-headers") -source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('871cb28aa554581ed3508b296071051cecdd8f62e95313e00840d908d999') - -build() { - cd "$srcdir"/$pkgname-$pkgver - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install -} Copied: iw/repos/core-x86_64/PKGBUILD (from rev 225196, iw/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2014-10-22 21:34:37 UTC (rev 225197) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=3.17 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +}
[arch-commits] Commit in linux/repos (30 files)
Date: Wednesday, October 22, 2014 @ 23:34:38 Author: thomas Revision: 225198 db-move: moved linux from [testing] to [core] (i686, x86_64) Added: linux/repos/core-i686/PKGBUILD (from rev 225196, linux/repos/testing-i686/PKGBUILD) linux/repos/core-i686/change-default-console-loglevel.patch (from rev 225196, linux/repos/testing-i686/change-default-console-loglevel.patch) linux/repos/core-i686/compal-laptop-hwmon-fix.patch (from rev 225196, linux/repos/testing-i686/compal-laptop-hwmon-fix.patch) linux/repos/core-i686/config (from rev 225196, linux/repos/testing-i686/config) linux/repos/core-i686/config.x86_64 (from rev 225196, linux/repos/testing-i686/config.x86_64) linux/repos/core-i686/linux.install (from rev 225196, linux/repos/testing-i686/linux.install) linux/repos/core-i686/linux.preset (from rev 225196, linux/repos/testing-i686/linux.preset) linux/repos/core-x86_64/PKGBUILD (from rev 225196, linux/repos/testing-x86_64/PKGBUILD) linux/repos/core-x86_64/change-default-console-loglevel.patch (from rev 225196, linux/repos/testing-x86_64/change-default-console-loglevel.patch) linux/repos/core-x86_64/compal-laptop-hwmon-fix.patch (from rev 225196, linux/repos/testing-x86_64/compal-laptop-hwmon-fix.patch) linux/repos/core-x86_64/config (from rev 225196, linux/repos/testing-x86_64/config) linux/repos/core-x86_64/config.x86_64 (from rev 225196, linux/repos/testing-x86_64/config.x86_64) linux/repos/core-x86_64/linux.install (from rev 225196, linux/repos/testing-x86_64/linux.install) linux/repos/core-x86_64/linux.preset (from rev 225196, linux/repos/testing-x86_64/linux.preset) Deleted: linux/repos/core-i686/PKGBUILD linux/repos/core-i686/change-default-console-loglevel.patch linux/repos/core-i686/compal-laptop-hwmon-fix.patch linux/repos/core-i686/config linux/repos/core-i686/config.x86_64 linux/repos/core-i686/linux.install linux/repos/core-i686/linux.preset linux/repos/core-x86_64/PKGBUILD linux/repos/core-x86_64/change-default-console-loglevel.patch linux/repos/core-x86_64/compal-laptop-hwmon-fix.patch linux/repos/core-x86_64/config linux/repos/core-x86_64/config.x86_64 linux/repos/core-x86_64/linux.install linux/repos/core-x86_64/linux.preset linux/repos/testing-i686/ linux/repos/testing-x86_64/ ---+ /PKGBUILD | 586 /change-default-console-loglevel.patch| 22 /compal-laptop-hwmon-fix.patch| 28 /config |14262 /config.x86_64|13780 +++ /linux.install| 74 /linux.preset | 28 core-i686/PKGBUILD| 297 core-i686/change-default-console-loglevel.patch | 11 core-i686/compal-laptop-hwmon-fix.patch | 14 core-i686/config | 7077 - core-i686/config.x86_64 | 6833 - core-i686/linux.install | 37 core-i686/linux.preset| 14 core-x86_64/PKGBUILD | 297 core-x86_64/change-default-console-loglevel.patch | 11 core-x86_64/compal-laptop-hwmon-fix.patch | 14 core-x86_64/config| 7077 - core-x86_64/config.x86_64 | 6833 - core-x86_64/linux.install | 37 core-x86_64/linux.preset | 14 21 files changed, 28780 insertions(+), 28566 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 225197:225198 to see the changes.
[arch-commits] Commit in iw/trunk (PKGBUILD)
Date: Sunday, October 19, 2014 @ 23:56:58 Author: thomas Revision: 224837 upgpkg: iw 3.17-1 Modified: iw/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-19 18:31:31 UTC (rev 224836) +++ PKGBUILD2014-10-19 21:56:58 UTC (rev 224837) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=iw -pkgver=3.14 +pkgver=3.17 pkgrel=1 pkgdesc="nl80211 based CLI configuration utility for wireless devices" arch=("i686" "x86_64") @@ -11,7 +11,7 @@ depends=("libnl") makedepends=("linux-api-headers") source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('871cb28aa554581ed3508b296071051cecdd8f62e95313e00840d908d999') +sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') build() { cd "$srcdir"/$pkgname-$pkgver
[arch-commits] Commit in iw/repos (4 files)
Date: Sunday, October 19, 2014 @ 23:57:11 Author: thomas Revision: 224838 archrelease: copy trunk to testing-i686, testing-x86_64 Added: iw/repos/testing-i686/ iw/repos/testing-i686/PKGBUILD (from rev 224837, iw/trunk/PKGBUILD) iw/repos/testing-x86_64/ iw/repos/testing-x86_64/PKGBUILD (from rev 224837, iw/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 24 testing-x86_64/PKGBUILD | 24 2 files changed, 48 insertions(+) Copied: iw/repos/testing-i686/PKGBUILD (from rev 224837, iw/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-10-19 21:57:11 UTC (rev 224838) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=3.17 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +} Copied: iw/repos/testing-x86_64/PKGBUILD (from rev 224837, iw/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2014-10-19 21:57:11 UTC (rev 224838) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=iw +pkgver=3.17 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw"; +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('48a62eb5cd8e757c9617749df96b01f133c184f6c107f18be660ee08f155fa93') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install +}
[arch-commits] Commit in wpa_supplicant_gui/repos (6 files)
Date: Sunday, October 19, 2014 @ 11:47:03 Author: thomas Revision: 224821 db-move: moved wpa_supplicant_gui from [testing] to [extra] (i686, x86_64) Added: wpa_supplicant_gui/repos/extra-i686/PKGBUILD (from rev 224820, wpa_supplicant_gui/repos/testing-i686/PKGBUILD) wpa_supplicant_gui/repos/extra-x86_64/PKGBUILD (from rev 224820, wpa_supplicant_gui/repos/testing-x86_64/PKGBUILD) Deleted: wpa_supplicant_gui/repos/extra-i686/PKGBUILD wpa_supplicant_gui/repos/extra-x86_64/PKGBUILD wpa_supplicant_gui/repos/testing-i686/ wpa_supplicant_gui/repos/testing-x86_64/ ---+ /PKGBUILD | 58 extra-i686/PKGBUILD | 29 extra-x86_64/PKGBUILD | 29 3 files changed, 58 insertions(+), 58 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-19 09:46:59 UTC (rev 224820) +++ extra-i686/PKGBUILD 2014-10-19 09:47:03 UTC (rev 224821) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=wpa_supplicant_gui -pkgver=2.2 -pkgrel=1 -pkgdesc="A Qt frontend to wpa_supplicant" -url="http://hostap.epitest.fi/wpa_supplicant"; -arch=('i686' 'x86_64') -depends=('qt4' "wpa_supplicant") -license=('GPL') -source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) -sha256sums=('e0d8b8fd68a659636eaba246bb2caacbf53d22d53b2b6b90eb4b4fef0993c8ed') - -build() { - cd wpa_supplicant-${pkgver} - cd wpa_supplicant/wpa_gui-qt4 - qmake-qt4 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS" - make -} - -package() { - cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4" - install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui" - install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg" - install -Dm644 wpa_gui.desktop "${pkgdir}/usr/share/applications/wpa_gui.desktop" - install -Dm644 "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \ - "${pkgdir}/usr/share/man/man8/wpa_gui.8" -} Copied: wpa_supplicant_gui/repos/extra-i686/PKGBUILD (from rev 224820, wpa_supplicant_gui/repos/testing-i686/PKGBUILD) ======= --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-19 09:47:03 UTC (rev 224821) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wpa_supplicant_gui +pkgver=2.3 +pkgrel=1 +pkgdesc="A Qt frontend to wpa_supplicant" +url="http://hostap.epitest.fi/wpa_supplicant"; +arch=('i686' 'x86_64') +depends=('qt4' "wpa_supplicant") +license=('GPL') +source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) +sha256sums=('eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a') + +build() { + cd wpa_supplicant-${pkgver} + cd wpa_supplicant/wpa_gui-qt4 + qmake-qt4 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS" + make +} + +package() { + cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4" + install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui" + install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg" + install -Dm644 wpa_gui.desktop "${pkgdir}/usr/share/applications/wpa_gui.desktop" + install -Dm644 "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \ + "${pkgdir}/usr/share/man/man8/wpa_gui.8" +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-10-19 09:46:59 UTC (rev 224820) +++ extra-x86_64/PKGBUILD 2014-10-19 09:47:03 UTC (rev 224821) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler - -pkgname=wpa_supplicant_gui -pkgver=2.2 -pkgrel=1 -pkgdesc="A Qt frontend to wpa_supplicant" -url="http://hostap.epitest.fi/wpa_supplicant"; -arch=('i686' 'x86_64') -depends=('qt4' "wpa_supplicant") -license=('GPL') -source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) -sha256sums=('e0d8b8fd68a659636eaba246bb2caacbf53d22d53b2b6b90eb4b4fef0993c8ed') - -build() { - cd wpa_supplicant-${pkgver} - cd wpa_supplicant/wpa_gui-qt4 - qmake-qt4 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS" - make -} - -package() { - cd "${srcdir}/wpa
[arch-commits] Commit in wpa_supplicant/repos (10 files)
Date: Sunday, October 19, 2014 @ 11:46:59 Author: thomas Revision: 224820 db-move: moved wpa_supplicant from [testing] to [core] (i686, x86_64) Added: wpa_supplicant/repos/core-i686/PKGBUILD (from rev 224819, wpa_supplicant/repos/testing-i686/PKGBUILD) wpa_supplicant/repos/core-i686/config (from rev 224819, wpa_supplicant/repos/testing-i686/config) wpa_supplicant/repos/core-x86_64/PKGBUILD (from rev 224819, wpa_supplicant/repos/testing-x86_64/PKGBUILD) wpa_supplicant/repos/core-x86_64/config (from rev 224819, wpa_supplicant/repos/testing-x86_64/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 wpa_supplicant/repos/testing-i686/ wpa_supplicant/repos/testing-x86_64/ --+ /PKGBUILD| 104 + /config | 1010 + core-i686/PKGBUILD | 52 -- core-i686/config | 505 core-x86_64/PKGBUILD | 52 -- core-x86_64/config | 505 6 files changed, 1114 insertions(+), 1114 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 224819:224820 to see the changes.
[arch-commits] Commit in lib32-v4l-utils/trunk (PKGBUILD)
Date: Saturday, October 18, 2014 @ 19:30:56 Author: thomas Revision: 120943 upgpkg: lib32-v4l-utils 1.6.0-1 Modified: lib32-v4l-utils/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-18 17:30:26 UTC (rev 120942) +++ PKGBUILD2014-10-18 17:30:56 UTC (rev 120943) @@ -2,7 +2,7 @@ # Maintainer: Jan "heftig" Steffens _pkgbasename=v4l-utils pkgname=lib32-$_pkgbasename -pkgver=1.2.1 +pkgver=1.6.0 pkgrel=1 pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" arch=('x86_64') @@ -15,7 +15,7 @@ depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) -sha256sums=('9b658fbcaaf8127115316e07fea314aebc21dd6dc3491cd8753a768521c4b9af' +sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' 'SKIP') build() {
[arch-commits] Commit in lib32-v4l-utils/repos/multilib-x86_64 (PKGBUILD PKGBUILD)
Date: Saturday, October 18, 2014 @ 19:31:05 Author: thomas Revision: 120944 archrelease: copy trunk to multilib-x86_64 Added: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD (from rev 120943, lib32-v4l-utils/trunk/PKGBUILD) Deleted: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD --+ PKGBUILD | 72 ++--- 1 file changed, 36 insertions(+), 36 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-10-18 17:30:56 UTC (rev 120943) +++ PKGBUILD2014-10-18 17:31:05 UTC (rev 120944) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Jan "heftig" Steffens -_pkgbasename=v4l-utils -pkgname=lib32-$_pkgbasename -pkgver=1.2.1 -pkgrel=1 -pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" -arch=('x86_64') -url="http://linuxtv.org/"; -provides=("lib32-libv4l=$pkgver") -replaces=('lib32-libv4l') -conflicts=('lib32-libv4l') -license=('LGPL') -makedepends=('gcc-multilib') -depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) -source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 - http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) -sha256sums=('9b658fbcaaf8127115316e07fea314aebc21dd6dc3491cd8753a768521c4b9af' -'SKIP') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc - make -C lib -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - MAKEFLAGS="-j1" make -C lib install DESTDIR="${pkgdir}/" - rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,lib} -} Copied: lib32-v4l-utils/repos/multilib-x86_64/PKGBUILD (from rev 120943, lib32-v4l-utils/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-10-18 17:31:05 UTC (rev 120944) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Jan "heftig" Steffens +_pkgbasename=v4l-utils +pkgname=lib32-$_pkgbasename +pkgver=1.6.0 +pkgrel=1 +pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" +arch=('x86_64') +url="http://linuxtv.org/"; +provides=("lib32-libv4l=$pkgver") +replaces=('lib32-libv4l') +conflicts=('lib32-libv4l') +license=('LGPL') +makedepends=('gcc-multilib') +depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) +source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2 + http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2.asc) +sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' +'SKIP') + +build() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc + make -C lib +} + +package() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + MAKEFLAGS="-j1" make -C lib install DESTDIR="${pkgdir}/" + rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,lib} +}
[arch-commits] Commit in v4l-utils/repos (4 files)
Date: Saturday, October 18, 2014 @ 19:28:29 Author: thomas Revision: 224786 archrelease: copy trunk to extra-i686, extra-x86_64 Added: v4l-utils/repos/extra-i686/PKGBUILD (from rev 224785, v4l-utils/trunk/PKGBUILD) v4l-utils/repos/extra-x86_64/PKGBUILD (from rev 224785, v4l-utils/trunk/PKGBUILD) Deleted: v4l-utils/repos/extra-i686/PKGBUILD v4l-utils/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 66 extra-i686/PKGBUILD | 33 extra-x86_64/PKGBUILD | 33 3 files changed, 66 insertions(+), 66 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-10-18 17:28:15 UTC (rev 224785) +++ extra-i686/PKGBUILD 2014-10-18 17:28:29 UTC (rev 224786) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=v4l-utils -pkgver=1.2.1 -pkgrel=1 -pkgdesc="Userspace tools and conversion library for Video 4 Linux" -arch=('i686' 'x86_64') -url="http://linuxtv.org/"; -provides=("libv4l=$pkgver") -replaces=('libv4l') -conflicts=('libv4l') -backup=(etc/rc_maps.cfg) -license=('LGPL') -makedepends=('qt4') -optdepends=('qt4') -depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo') -source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2 - http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2.asc) -sha256sums=('9b658fbcaaf8127115316e07fea314aebc21dd6dc3491cd8753a768521c4b9af' -'SKIP') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/" - rm "${pkgdir}/usr/bin/ivtv-ctl" -} Copied: v4l-utils/repos/extra-i686/PKGBUILD (from rev 224785, v4l-utils/trunk/PKGBUILD) =========== --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-10-18 17:28:29 UTC (rev 224786) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=v4l-utils +pkgver=1.6.0 +pkgrel=1 +pkgdesc="Userspace tools and conversion library for Video 4 Linux" +arch=('i686' 'x86_64') +url="http://linuxtv.org/"; +provides=("libv4l=$pkgver") +replaces=('libv4l') +conflicts=('libv4l') +backup=(etc/rc_maps.cfg) +license=('LGPL') +makedepends=('qt4') +optdepends=('qt4') +depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo') +source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2 + http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2.asc) +sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' +'SKIP') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/" + rm "${pkgdir}/usr/bin/ivtv-ctl" +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-10-18 17:28:15 UTC (rev 224785) +++ extra-x86_64/PKGBUILD 2014-10-18 17:28:29 UTC (rev 224786) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=v4l-utils -pkgver=1.2.1 -pkgrel=1 -pkgdesc="Userspace tools and conversion library for Video 4 Linux" -arch=('i686' 'x86_64') -url="http://linuxtv.org/"; -provides=("libv4l=$pkgver") -replaces=('libv4l') -conflicts=('libv4l') -backup=(etc/rc_maps.cfg) -license=('LGPL') -makedepends=('qt4') -optdepends=('qt4') -depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo') -source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2 - http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2.asc) -sha256sums=('9b658fbcaaf8127115316e07fea314aebc21dd6dc3491cd8753a768521c4b9af' -'SKIP') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - MAKEFLAGS="-j1" make install DESTDIR="${pkgdir}/" - rm "${pkgdir}/usr/bin/ivtv-ctl" -} Copied: v4l-utils/repos/extra-x86_64/PKGBUILD
[arch-commits] Commit in v4l-utils/trunk (PKGBUILD)
Date: Saturday, October 18, 2014 @ 19:28:15 Author: thomas Revision: 224785 upgpkg: v4l-utils 1.6.0-1 Modified: v4l-utils/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-18 17:24:29 UTC (rev 224784) +++ PKGBUILD2014-10-18 17:28:15 UTC (rev 224785) @@ -1,7 +1,7 @@ # $Id$ # Maintainer: Thomas Bächler pkgname=v4l-utils -pkgver=1.2.1 +pkgver=1.6.0 pkgrel=1 pkgdesc="Userspace tools and conversion library for Video 4 Linux" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ depends=('glibc' 'gcc-libs' 'sysfsutils' 'libjpeg-turbo') source=(http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2 http://linuxtv.org/downloads/v4l-utils/${pkgname}-${pkgver}.tar.bz2.asc) -sha256sums=('9b658fbcaaf8127115316e07fea314aebc21dd6dc3491cd8753a768521c4b9af' +sha256sums=('6054d3120c67a1524993e699b3b02036c817bb000b742c332682163966dc7605' 'SKIP') build() {
[arch-commits] Commit in wpa_supplicant_gui/repos (4 files)
Date: Saturday, October 18, 2014 @ 19:24:29 Author: thomas Revision: 224784 archrelease: copy trunk to testing-i686, testing-x86_64 Added: wpa_supplicant_gui/repos/testing-i686/ wpa_supplicant_gui/repos/testing-i686/PKGBUILD (from rev 224783, wpa_supplicant_gui/trunk/PKGBUILD) wpa_supplicant_gui/repos/testing-x86_64/ wpa_supplicant_gui/repos/testing-x86_64/PKGBUILD (from rev 224783, wpa_supplicant_gui/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 29 + testing-x86_64/PKGBUILD | 29 + 2 files changed, 58 insertions(+) Copied: wpa_supplicant_gui/repos/testing-i686/PKGBUILD (from rev 224783, wpa_supplicant_gui/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-10-18 17:24:29 UTC (rev 224784) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wpa_supplicant_gui +pkgver=2.3 +pkgrel=1 +pkgdesc="A Qt frontend to wpa_supplicant" +url="http://hostap.epitest.fi/wpa_supplicant"; +arch=('i686' 'x86_64') +depends=('qt4' "wpa_supplicant") +license=('GPL') +source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) +sha256sums=('eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a') + +build() { + cd wpa_supplicant-${pkgver} + cd wpa_supplicant/wpa_gui-qt4 + qmake-qt4 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS" + make +} + +package() { + cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4" + install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui" + install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg" + install -Dm644 wpa_gui.desktop "${pkgdir}/usr/share/applications/wpa_gui.desktop" + install -Dm644 "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \ + "${pkgdir}/usr/share/man/man8/wpa_gui.8" +} Copied: wpa_supplicant_gui/repos/testing-x86_64/PKGBUILD (from rev 224783, wpa_supplicant_gui/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2014-10-18 17:24:29 UTC (rev 224784) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wpa_supplicant_gui +pkgver=2.3 +pkgrel=1 +pkgdesc="A Qt frontend to wpa_supplicant" +url="http://hostap.epitest.fi/wpa_supplicant"; +arch=('i686' 'x86_64') +depends=('qt4' "wpa_supplicant") +license=('GPL') +source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) +sha256sums=('eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a') + +build() { + cd wpa_supplicant-${pkgver} + cd wpa_supplicant/wpa_gui-qt4 + qmake-qt4 QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" QMAKE_LFLAGS_RELEASE="$LDFLAGS" + make +} + +package() { + cd "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/wpa_gui-qt4" + install -Dm755 wpa_gui "${pkgdir}/usr/bin/wpa_gui" + install -Dm644 icons/wpa_gui.svg "${pkgdir}/usr/share/pixmaps/wpa_gui.svg" + install -Dm644 wpa_gui.desktop "${pkgdir}/usr/share/applications/wpa_gui.desktop" + install -Dm644 "${srcdir}/wpa_supplicant-${pkgver}/wpa_supplicant/doc/docbook/wpa_gui.8" \ + "${pkgdir}/usr/share/man/man8/wpa_gui.8" +}
[arch-commits] Commit in wpa_supplicant_gui/trunk (PKGBUILD)
Date: Saturday, October 18, 2014 @ 19:24:18 Author: thomas Revision: 224783 upgpkg: wpa_supplicant_gui 2.3-1 Modified: wpa_supplicant_gui/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-18 17:23:30 UTC (rev 224782) +++ PKGBUILD2014-10-18 17:24:18 UTC (rev 224783) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=wpa_supplicant_gui -pkgver=2.2 +pkgver=2.3 pkgrel=1 pkgdesc="A Qt frontend to wpa_supplicant" url="http://hostap.epitest.fi/wpa_supplicant"; @@ -10,7 +10,7 @@ depends=('qt4' "wpa_supplicant") license=('GPL') source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz";) -sha256sums=('e0d8b8fd68a659636eaba246bb2caacbf53d22d53b2b6b90eb4b4fef0993c8ed') +sha256sums=('eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a') build() { cd wpa_supplicant-${pkgver}
[arch-commits] Commit in wpa_supplicant/repos (6 files)
Date: Saturday, October 18, 2014 @ 19:23:30 Author: thomas Revision: 224782 archrelease: copy trunk to testing-i686, testing-x86_64 Added: wpa_supplicant/repos/testing-i686/ wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 224781, wpa_supplicant/trunk/PKGBUILD) wpa_supplicant/repos/testing-i686/config (from rev 224781, wpa_supplicant/trunk/config) wpa_supplicant/repos/testing-x86_64/ wpa_supplicant/repos/testing-x86_64/PKGBUILD (from rev 224781, wpa_supplicant/trunk/PKGBUILD) wpa_supplicant/repos/testing-x86_64/config (from rev 224781, wpa_supplicant/trunk/config) -+ testing-i686/PKGBUILD | 52 testing-i686/config | 505 ++ testing-x86_64/PKGBUILD | 52 testing-x86_64/config | 505 ++ 4 files changed, 1114 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 224781:224782 to see the changes.