[arch-commits] Commit in python-pytorch/repos (7 files)

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 13, 2020 @ 05:31:23
  Author: arojas
Revision: 723794

archrelease: copy trunk to community-staging-x86_64

Added:
  python-pytorch/repos/community-staging-x86_64/
  python-pytorch/repos/community-staging-x86_64/PKGBUILD
(from rev 723793, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-staging-x86_64/disable_non_x86_64.patch
(from rev 723793, python-pytorch/trunk/disable_non_x86_64.patch)
  python-pytorch/repos/community-staging-x86_64/fix_include_system.patch
(from rev 723793, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-staging-x86_64/nccl_version.patch
(from rev 723793, python-pytorch/trunk/nccl_version.patch)
  python-pytorch/repos/community-staging-x86_64/use-system-libuv.patch
(from rev 723793, python-pytorch/trunk/use-system-libuv.patch)
  python-pytorch/repos/community-staging-x86_64/use-system-libuv2.patch
(from rev 723793, python-pytorch/trunk/use-system-libuv2.patch)

--+
 PKGBUILD |  185 +
 disable_non_x86_64.patch |   15 +++
 fix_include_system.patch |   11 ++
 nccl_version.patch   |   46 +++
 use-system-libuv.patch   |   13 +++
 use-system-libuv2.patch  |   13 +++
 6 files changed, 283 insertions(+)

Copied: python-pytorch/repos/community-staging-x86_64/PKGBUILD (from rev 
723793, python-pytorch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-13 05:31:23 UTC (rev 723794)
@@ -0,0 +1,185 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Stephen Zhang 
+
+pkgbase=python-pytorch
+pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
+_pkgname="pytorch"
+pkgver=1.6.0
+_pkgver=1.6.0
+pkgrel=6
+pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
+arch=('x86_64')
+url="https://pytorch.org;
+license=('BSD')
+depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'libuv'
+ 'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base' 
'onednn' 'intel-mkl')
+makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
+ 'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
+source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
+fix_include_system.patch
+use-system-libuv.patch
+use-system-libuv2.patch
+nccl_version.patch
+disable_non_x86_64.patch)
+sha256sums=('SKIP'
+'147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
+'6f3b7a87172011de810bf1ab581245b4463ef86e5cd09bec63aeffa372e26646'
+'7b65c3b209fc39f92ba58a58be6d3da40799f1922910b1171ccd9209eda1f9eb'
+'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b'
+'d3ef8491718ed7e814fe63e81df2f49862fffbea891d2babbcb464796a1bd680')
+
+prepare() {
+  cd "${_pkgname}-${pkgver}"
+
+  # This is the lazy way since pytorch has sooo many submodules and they keep
+  # changing them around but we've run into more problems so far doing it the
+  # manual than the lazy way. This lazy way (not explicitly specifying all
+  # submodules) will make building inefficient but for now I'll take it.
+  # It will result in the same package, don't worry.
+  git submodule update --init --recursive
+
+  # https://bugs.archlinux.org/task/64981
+  patch -N torch/utils/cpp_extension.py "${srcdir}"/fix_include_system.patch
+
+  # Use system libuv
+  patch -Np1 -i "${srcdir}"/use-system-libuv.patch
+  patch -Np1 -i "${srcdir}"/use-system-libuv2.patch -d third_party/tensorpipe
+
+  # FindNCCL patch to export correct nccl version
+  patch -Np1 -i "${srcdir}"/nccl_version.patch
+
+  # remove local nccl
+  rm -rf third_party/nccl/nccl
+
+  cd ..
+
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
+
+  export VERBOSE=1
+  export PYTORCH_BUILD_VERSION="${pkgver}"
+  export PYTORCH_BUILD_NUMBER=1
+
+  # Check tools/setup_helpers/cmake.py, setup.py and CMakeLists.txt for a list 
of flags that can be set via env vars.
+  export USE_MKLDNN=ON
+  export BUILD_CUSTOM_PROTOBUF=OFF
+  # export BUILD_SHARED_LIBS=OFF
+  export USE_FFMPEG=ON
+  export USE_GFLAGS=ON
+  export USE_GLOG=ON
+  export BUILD_BINARY=ON
+  export USE_OPENCV=ON
+  export USE_SYSTEM_NCCL=ON
+  # export USE_SYSTEM_LIBS=ON
+  export NCCL_VERSION=$(pkg-config nccl --modversion)
+  export NCCL_VER_CODE=$(sed -n 's/^#define NCCL_VERSION_CODE\s*\(.*\).*/\1/p' 
/usr/include/nccl.h)
+  export CUDAHOSTCXX=g++
+  export CUDA_HOME=/opt/cuda
+  export CUDNN_LIB_DIR=/usr/lib
+  export CUDNN_INCLUDE_DIR=/usr/include
+  export 

[arch-commits] Commit in python-pytorch/trunk (PKGBUILD)

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 13, 2020 @ 05:30:52
  Author: arojas
Revision: 723793

opencv 4.5 rebuild

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-13 02:46:23 UTC (rev 723792)
+++ PKGBUILD2020-10-13 05:30:52 UTC (rev 723793)
@@ -6,7 +6,7 @@
 _pkgname="pytorch"
 pkgver=1.6.0
 _pkgver=1.6.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;


[arch-commits] Commit in python-poetry-core/repos (2 files)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 02:46:23
  Author: eschwartz
Revision: 723792

archrelease: copy trunk to community-any

Added:
  python-poetry-core/repos/community-any/
  python-poetry-core/repos/community-any/PKGBUILD
(from rev 723791, python-poetry-core/trunk/PKGBUILD)

--+
 PKGBUILD |   53 +
 1 file changed, 53 insertions(+)

Copied: python-poetry-core/repos/community-any/PKGBUILD (from rev 723791, 
python-poetry-core/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-13 02:46:23 UTC (rev 723792)
@@ -0,0 +1,53 @@
+# Maintainer: Eli Schwartz 
+# Contributor: George Rawlinson 
+
+_pkgname=poetry-core
+pkgname=python-poetry-core
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Poetry PEP 517 Build Backend & Core Utilities"
+arch=('any')
+url="https://github.com/python-poetry/${_pkgname};
+license=('MIT')
+_deps=('jsonschema' 'lark-parser' 'packaging' 'tomlkit')
+depends=("${_deps[@]/#/python-}")
+makedepends=('python-dephell')
+checkdepends=('git' 'python-pytest' 'python-pytest-mock' 'python-virtualenv')
+conflicts=('python-poetry<1.1.0')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c8cff356f09b483cdbe752a18fa8a95716a55a225981e78410816659a9f82b87')
+b2sums=('62fe73c44a91569c92ec5f422211adeae3b9fc28547a0e37fdbe73ea92bfd4a01bdf35a2f6fb3dbbc4fd3d3e219ad2cfc5594229482dafe46051ded6cb04dab0')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# remove vendored dependencies
+sed -i '/^__version__/!d' poetry/core/__init__.py
+rm -r poetry/core/_vendor
+
+# be a proper namespace, python3-only ;)
+rm poetry/__init__.py
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# only works inside git repositories
+pytest \
+-k 'not test_default_with_excluded_data and not 
test_default_src_with_excluded_data'
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in (4 files)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 02:46:08
  Author: eschwartz
Revision: 723791

addpkg: python-poetry-core 1.0.0-1: new modular poetry backend

incompatible with poetry itself for pre-split versions due to sharing 
directories

Added:
  python-poetry-core/
  python-poetry-core/repos/
  python-poetry-core/trunk/
  python-poetry-core/trunk/PKGBUILD

--+
 PKGBUILD |   53 +
 1 file changed, 53 insertions(+)

Added: python-poetry-core/trunk/PKGBUILD
===
--- python-poetry-core/trunk/PKGBUILD   (rev 0)
+++ python-poetry-core/trunk/PKGBUILD   2020-10-13 02:46:08 UTC (rev 723791)
@@ -0,0 +1,53 @@
+# Maintainer: Eli Schwartz 
+# Contributor: George Rawlinson 
+
+_pkgname=poetry-core
+pkgname=python-poetry-core
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Poetry PEP 517 Build Backend & Core Utilities"
+arch=('any')
+url="https://github.com/python-poetry/${_pkgname};
+license=('MIT')
+_deps=('jsonschema' 'lark-parser' 'packaging' 'tomlkit')
+depends=("${_deps[@]/#/python-}")
+makedepends=('python-dephell')
+checkdepends=('git' 'python-pytest' 'python-pytest-mock' 'python-virtualenv')
+conflicts=('python-poetry<1.1.0')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c8cff356f09b483cdbe752a18fa8a95716a55a225981e78410816659a9f82b87')
+b2sums=('62fe73c44a91569c92ec5f422211adeae3b9fc28547a0e37fdbe73ea92bfd4a01bdf35a2f6fb3dbbc4fd3d3e219ad2cfc5594229482dafe46051ded6cb04dab0')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# remove vendored dependencies
+sed -i '/^__version__/!d' poetry/core/__init__.py
+rm -r poetry/core/_vendor
+
+# be a proper namespace, python3-only ;)
+rm poetry/__init__.py
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# only works inside git repositories
+pytest \
+-k 'not test_default_with_excluded_data and not 
test_default_src_with_excluded_data'
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in python-crashtest/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 01:06:29
  Author: eschwartz
Revision: 723779

archrelease: copy trunk to community-any

Added:
  python-crashtest/repos/community-any/PKGBUILD
(from rev 723778, python-crashtest/trunk/PKGBUILD)
Deleted:
  python-crashtest/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-13 01:06:15 UTC (rev 723778)
+++ PKGBUILD2020-10-13 01:06:29 UTC (rev 723779)
@@ -1,41 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=crashtest
-pkgname=python-crashtest
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="supposedly makes exceptions handling and inspection easier"
-arch=('any')
-url="https://github.com/sdispater/${_pkgname};
-license=('MIT')
-depends=('python-clikit')
-makedepends=('python-dephell' 'python-setuptools')
-checkdepends=('python-pytest')
-source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('8070032b432b523ff7a6d03251f0553da1d0f7643a27cedc4cd7652e67e3b19e')
-b2sums=('b90465ee736ec0d9c378ed16327fe5bbddf19066a64a2a9d1c454f38eac5321235cafeb20756b2018e1dfea0e07726696084b8965a2543edc5e9fe0d79c33db1')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-crashtest/repos/community-any/PKGBUILD (from rev 723778, 
python-crashtest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-13 01:06:29 UTC (rev 723779)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=crashtest
+pkgname=python-crashtest
+pkgver=0.3.1
+pkgrel=2
+pkgdesc="supposedly makes exceptions handling and inspection easier"
+arch=('any')
+url="https://github.com/sdispater/${_pkgname};
+license=('MIT')
+depends=('python')
+makedepends=('python-dephell' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('8070032b432b523ff7a6d03251f0553da1d0f7643a27cedc4cd7652e67e3b19e')
+b2sums=('b90465ee736ec0d9c378ed16327fe5bbddf19066a64a2a9d1c454f38eac5321235cafeb20756b2018e1dfea0e07726696084b8965a2543edc5e9fe0d79c33db1')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in python-crashtest/trunk (PKGBUILD)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 01:06:15
  Author: eschwartz
Revision: 723778

upgpkg: python-crashtest 0.3.1-2: remove incorrect copy-paste dependency on 
clikit

Modified:
  python-crashtest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-13 00:36:13 UTC (rev 723777)
+++ PKGBUILD2020-10-13 01:06:15 UTC (rev 723778)
@@ -3,12 +3,12 @@
 _pkgname=crashtest
 pkgname=python-crashtest
 pkgver=0.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc="supposedly makes exceptions handling and inspection easier"
 arch=('any')
 url="https://github.com/sdispater/${_pkgname};
 license=('MIT')
-depends=('python-clikit')
+depends=('python')
 makedepends=('python-dephell' 'python-setuptools')
 checkdepends=('python-pytest')
 source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")


[arch-commits] Commit in python-crashtest/repos (community-any community-any/PKGBUILD)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 00:36:13
  Author: eschwartz
Revision: 723777

archrelease: copy trunk to community-any

Added:
  python-crashtest/repos/community-any/
  python-crashtest/repos/community-any/PKGBUILD
(from rev 723776, python-crashtest/trunk/PKGBUILD)

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Copied: python-crashtest/repos/community-any/PKGBUILD (from rev 723776, 
python-crashtest/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-13 00:36:13 UTC (rev 723777)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=crashtest
+pkgname=python-crashtest
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="supposedly makes exceptions handling and inspection easier"
+arch=('any')
+url="https://github.com/sdispater/${_pkgname};
+license=('MIT')
+depends=('python-clikit')
+makedepends=('python-dephell' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('8070032b432b523ff7a6d03251f0553da1d0f7643a27cedc4cd7652e67e3b19e')
+b2sums=('b90465ee736ec0d9c378ed16327fe5bbddf19066a64a2a9d1c454f38eac5321235cafeb20756b2018e1dfea0e07726696084b8965a2543edc5e9fe0d79c33db1')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in (4 files)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Tuesday, October 13, 2020 @ 00:35:58
  Author: eschwartz
Revision: 723776

addpkg: python-crashtest 0.3.1-1: needed for poetry/clikit

yet another idiosyncratic personal library

Added:
  python-crashtest/
  python-crashtest/repos/
  python-crashtest/trunk/
  python-crashtest/trunk/PKGBUILD

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Added: python-crashtest/trunk/PKGBUILD
===
--- python-crashtest/trunk/PKGBUILD (rev 0)
+++ python-crashtest/trunk/PKGBUILD 2020-10-13 00:35:58 UTC (rev 723776)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=crashtest
+pkgname=python-crashtest
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="supposedly makes exceptions handling and inspection easier"
+arch=('any')
+url="https://github.com/sdispater/${_pkgname};
+license=('MIT')
+depends=('python-clikit')
+makedepends=('python-dephell' 'python-setuptools')
+checkdepends=('python-pytest')
+source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('8070032b432b523ff7a6d03251f0553da1d0f7643a27cedc4cd7652e67e3b19e')
+b2sums=('b90465ee736ec0d9c378ed16327fe5bbddf19066a64a2a9d1c454f38eac5321235cafeb20756b2018e1dfea0e07726696084b8965a2543edc5e9fe0d79c33db1')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build(){
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Tuesday, October 13, 2020 @ 00:30:44
  Author: foutrelis
Revision: 398098

upgpkg: polly 11.0.0-1: new upstream release; drop unused llvm-libs dep

Modified:
  polly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-13 00:14:40 UTC (rev 398097)
+++ PKGBUILD2020-10-13 00:30:44 UTC (rev 398098)
@@ -1,21 +1,21 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=polly
-pkgver=10.0.1
+pkgver=11.0.0
 pkgrel=1
 pkgdesc="High-level loop and data-locality optimizer and optimization 
infrastructure for LLVM"
 arch=('x86_64')
 url="https://polly.llvm.org/;
 license=('custom:Apache 2.0 with LLVM Exception')
-depends=('llvm-libs')
+depends=('gcc-libs')
 makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx')
 
_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
 source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
 $_source_base/llvm-$pkgver.src.tar.xz{,.sig}
 support-linking-ScopPassManager-against-LLVM-dylib.patch)
-sha256sums=('d2fb0bb86b21db1f52402ba231da7c119c35c21dfb843c9496fe901f2d6aa25a'
+sha256sums=('dcfadb8d11f2ea0743a3f19bab3b43ee1cb855e136bc81c76e2353cd76148440'
 'SKIP'
-'c5d8e30b57cbded7128d78e5e8dad811bff97a8d471896812f57fa99ee82cdf3'
+'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
 'SKIP'
 'ce3c528eabef1ef3a4c3ca69a527b98b4f2e924069f24e68ced5462c95263ba6')
 validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 



[arch-commits] Commit in polly/repos (3 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Tuesday, October 13, 2020 @ 00:30:47
  Author: foutrelis
Revision: 398099

archrelease: copy trunk to staging-x86_64

Added:
  polly/repos/staging-x86_64/
  polly/repos/staging-x86_64/PKGBUILD
(from rev 398098, polly/trunk/PKGBUILD)
  
polly/repos/staging-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch
(from rev 398098, 
polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch)

--+
 PKGBUILD |   63 +
 support-linking-ScopPassManager-against-LLVM-dylib.patch |   28 +
 2 files changed, 91 insertions(+)

Copied: polly/repos/staging-x86_64/PKGBUILD (from rev 398098, 
polly/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-13 00:30:47 UTC (rev 398099)
@@ -0,0 +1,63 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=polly
+pkgver=11.0.0
+pkgrel=1
+pkgdesc="High-level loop and data-locality optimizer and optimization 
infrastructure for LLVM"
+arch=('x86_64')
+url="https://polly.llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+depends=('gcc-libs')
+makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
+$_source_base/llvm-$pkgver.src.tar.xz{,.sig}
+support-linking-ScopPassManager-against-LLVM-dylib.patch)
+sha256sums=('dcfadb8d11f2ea0743a3f19bab3b43ee1cb855e136bc81c76e2353cd76148440'
+'SKIP'
+'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
+'SKIP'
+'ce3c528eabef1ef3a4c3ca69a527b98b4f2e924069f24e68ced5462c95263ba6')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver.src"
+  mkdir build
+
+  # https://reviews.llvm.org/D85281
+  patch -Np2 -i ../support-linking-ScopPassManager-against-LLVM-dylib.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_BUILD_TESTS=ON \
+-DLLVM_BUILD_DOCS=ON \
+-DLLVM_ENABLE_SPHINX=ON \
+-DSPHINX_WARNINGS_AS_ERRORS=OFF \
+-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
+-DLLVM_BUILD_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src"
+  ninja
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+  ninja check-polly
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+  install -Dm644 ../LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove documentation sources
+  rm -r "$pkgdir"/usr/share/doc/$pkgname/html/{_sources,.buildinfo}
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
polly/repos/staging-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch
 (from rev 398098, 
polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch)
===
--- staging-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch 
(rev 0)
+++ staging-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch 
2020-10-13 00:30:47 UTC (rev 398099)
@@ -0,0 +1,28 @@
+From 96b02808afa7eb043b9968b07424cc96bc8d94a6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Wed, 5 Aug 2020 10:22:32 +0200
+Subject: [PATCH] [Polly] Support linking ScopPassManager against LLVM dylib
+
+Link ScopPassManager to LLVM dylib target if LLVM_LINK_LLVM_DYLIB
+is enabled.  This fixes build failures on systems where static LLVM
+libraries are not installed.
+
+Differential Revision: https://reviews.llvm.org/D85281
+---
+ polly/unittests/ScopPassManager/CMakeLists.txt | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/polly/unittests/ScopPassManager/CMakeLists.txt 
b/polly/unittests/ScopPassManager/CMakeLists.txt
+index ed3bbd6dcef..88300144af3 100644
+--- a/polly/unittests/ScopPassManager/CMakeLists.txt
 b/polly/unittests/ScopPassManager/CMakeLists.txt
+@@ -1,5 +1,7 @@
+-llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
+ add_polly_unittest(ScopPassManagerTests
+   PassManagerTest.cpp
+   )
+-target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++if (NOT LLVM_LINK_LLVM_DYLIB)
++  llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
++  target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++endif()


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

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Tuesday, October 13, 2020 @ 00:14:37
  Author: foutrelis
Revision: 398096

upgpkg: polly 10.0.1-1: downgrade version for extra repo

Modified:
  polly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:41:34 UTC (rev 398095)
+++ PKGBUILD2020-10-13 00:14:37 UTC (rev 398096)
@@ -1,7 +1,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=polly
-pkgver=11.0.0
+pkgver=10.0.1
 pkgrel=1
 pkgdesc="High-level loop and data-locality optimizer and optimization 
infrastructure for LLVM"
 arch=('x86_64')
@@ -13,9 +13,9 @@
 source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
 $_source_base/llvm-$pkgver.src.tar.xz{,.sig}
 support-linking-ScopPassManager-against-LLVM-dylib.patch)
-sha256sums=('dcfadb8d11f2ea0743a3f19bab3b43ee1cb855e136bc81c76e2353cd76148440'
+sha256sums=('d2fb0bb86b21db1f52402ba231da7c119c35c21dfb843c9496fe901f2d6aa25a'
 'SKIP'
-'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
+'c5d8e30b57cbded7128d78e5e8dad811bff97a8d471896812f57fa99ee82cdf3'
 'SKIP'
 'ce3c528eabef1ef3a4c3ca69a527b98b4f2e924069f24e68ced5462c95263ba6')
 validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 



[arch-commits] Commit in polly/repos (3 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Tuesday, October 13, 2020 @ 00:14:40
  Author: foutrelis
Revision: 398097

archrelease: copy trunk to extra-x86_64

Added:
  polly/repos/extra-x86_64/
  polly/repos/extra-x86_64/PKGBUILD
(from rev 398096, polly/trunk/PKGBUILD)
  
polly/repos/extra-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch
(from rev 398096, 
polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch)

--+
 PKGBUILD |   63 +
 support-linking-ScopPassManager-against-LLVM-dylib.patch |   28 +
 2 files changed, 91 insertions(+)

Copied: polly/repos/extra-x86_64/PKGBUILD (from rev 398096, 
polly/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2020-10-13 00:14:40 UTC (rev 398097)
@@ -0,0 +1,63 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=polly
+pkgver=10.0.1
+pkgrel=1
+pkgdesc="High-level loop and data-locality optimizer and optimization 
infrastructure for LLVM"
+arch=('x86_64')
+url="https://polly.llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+depends=('llvm-libs')
+makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
+$_source_base/llvm-$pkgver.src.tar.xz{,.sig}
+support-linking-ScopPassManager-against-LLVM-dylib.patch)
+sha256sums=('d2fb0bb86b21db1f52402ba231da7c119c35c21dfb843c9496fe901f2d6aa25a'
+'SKIP'
+'c5d8e30b57cbded7128d78e5e8dad811bff97a8d471896812f57fa99ee82cdf3'
+'SKIP'
+'ce3c528eabef1ef3a4c3ca69a527b98b4f2e924069f24e68ced5462c95263ba6')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver.src"
+  mkdir build
+
+  # https://reviews.llvm.org/D85281
+  patch -Np2 -i ../support-linking-ScopPassManager-against-LLVM-dylib.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_BUILD_TESTS=ON \
+-DLLVM_BUILD_DOCS=ON \
+-DLLVM_ENABLE_SPHINX=ON \
+-DSPHINX_WARNINGS_AS_ERRORS=OFF \
+-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
+-DLLVM_BUILD_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src"
+  ninja
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+  ninja check-polly
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+  install -Dm644 ../LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove documentation sources
+  rm -r "$pkgdir"/usr/share/doc/$pkgname/html/{_sources,.buildinfo}
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
polly/repos/extra-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch
 (from rev 398096, 
polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch)
===
--- extra-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch   
(rev 0)
+++ extra-x86_64/support-linking-ScopPassManager-against-LLVM-dylib.patch   
2020-10-13 00:14:40 UTC (rev 398097)
@@ -0,0 +1,28 @@
+From 96b02808afa7eb043b9968b07424cc96bc8d94a6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Wed, 5 Aug 2020 10:22:32 +0200
+Subject: [PATCH] [Polly] Support linking ScopPassManager against LLVM dylib
+
+Link ScopPassManager to LLVM dylib target if LLVM_LINK_LLVM_DYLIB
+is enabled.  This fixes build failures on systems where static LLVM
+libraries are not installed.
+
+Differential Revision: https://reviews.llvm.org/D85281
+---
+ polly/unittests/ScopPassManager/CMakeLists.txt | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/polly/unittests/ScopPassManager/CMakeLists.txt 
b/polly/unittests/ScopPassManager/CMakeLists.txt
+index ed3bbd6dcef..88300144af3 100644
+--- a/polly/unittests/ScopPassManager/CMakeLists.txt
 b/polly/unittests/ScopPassManager/CMakeLists.txt
+@@ -1,5 +1,7 @@
+-llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
+ add_polly_unittest(ScopPassManagerTests
+   PassManagerTest.cpp
+   )
+-target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++if (NOT LLVM_LINK_LLVM_DYLIB)
++  llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
++  target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++endif()


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

2020-10-12 Thread Anatol Pomozov via arch-commits
Date: Tuesday, October 13, 2020 @ 00:04:03
  Author: anatolik
Revision: 723775

libbpf is a hard dependency now

Modified:
  bpftrace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:56:36 UTC (rev 723774)
+++ PKGBUILD2020-10-13 00:04:03 UTC (rev 723775)
@@ -10,7 +10,6 @@
 license=('Apache')
 depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
 makedepends=('cmake' 'llvm' 'git')
-optdepends=('libbpf: BTF support - required at compile time')
 source=("https://github.com/iovisor/bpftrace/archive/v${pkgver}.tar.gz;)
 
sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
 


[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2020-10-12 Thread Daniel M. Capella via arch-commits
Date: Monday, October 12, 2020 @ 23:56:15
  Author: polyzen
Revision: 723773

upgpkg: firefox-tree-style-tab 3.5.32-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:21:26 UTC (rev 723772)
+++ PKGBUILD2020-10-12 23:56:15 UTC (rev 723773)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=3.5.31
+pkgver=3.5.32
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,8 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('1122178ebf5e8b0b62fa20353d8bb7ecb243acb16856291581337c895317145d')
+sha256sums=('ba28336c10e3fa0eca0214e8fca59afd3c669e53648a62e3f7da49512af3c3d7')
+b2sums=('9b96d988919a5faeeb3a545684e5932db99ce79d5dba62d9bebf7f15d67cfd8e3372a042dae02ff34b9dabbd6b55f8a3205b1e8e0d042fa2cfed6ee12724be6a')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2020-10-12 Thread Daniel M. Capella via arch-commits
Date: Monday, October 12, 2020 @ 23:56:36
  Author: polyzen
Revision: 723774

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 723773, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

--+
 PKGBUILD |   41 +
 1 file changed, 21 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 23:56:15 UTC (rev 723773)
+++ PKGBUILD2020-10-12 23:56:36 UTC (rev 723774)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=3.5.31
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'MPL2')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('1122178ebf5e8b0b62fa20353d8bb7ecb243acb16856291581337c895317145d')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 723773, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 23:56:36 UTC (rev 723774)
@@ -0,0 +1,21 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=3.5.32
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'MPL2')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('ba28336c10e3fa0eca0214e8fca59afd3c669e53648a62e3f7da49512af3c3d7')
+b2sums=('9b96d988919a5faeeb3a545684e5932db99ce79d5dba62d9bebf7f15d67cfd8e3372a042dae02ff34b9dabbd6b55f8a3205b1e8e0d042fa2cfed6ee12724be6a')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (5 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 23:41:34
  Author: foutrelis
Revision: 398095

Add new polly package; part of LLVM (FS#66226)

Added:
  polly/
  polly/repos/
  polly/trunk/
  polly/trunk/PKGBUILD
  polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch

--+
 PKGBUILD |   63 +
 support-linking-ScopPassManager-against-LLVM-dylib.patch |   28 +
 2 files changed, 91 insertions(+)

Added: polly/trunk/PKGBUILD
===
--- polly/trunk/PKGBUILD(rev 0)
+++ polly/trunk/PKGBUILD2020-10-12 23:41:34 UTC (rev 398095)
@@ -0,0 +1,63 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=polly
+pkgver=11.0.0
+pkgrel=1
+pkgdesc="High-level loop and data-locality optimizer and optimization 
infrastructure for LLVM"
+arch=('x86_64')
+url="https://polly.llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+depends=('llvm-libs')
+makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
+$_source_base/llvm-$pkgver.src.tar.xz{,.sig}
+support-linking-ScopPassManager-against-LLVM-dylib.patch)
+sha256sums=('dcfadb8d11f2ea0743a3f19bab3b43ee1cb855e136bc81c76e2353cd76148440'
+'SKIP'
+'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
+'SKIP'
+'ce3c528eabef1ef3a4c3ca69a527b98b4f2e924069f24e68ced5462c95263ba6')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver.src"
+  mkdir build
+
+  # https://reviews.llvm.org/D85281
+  patch -Np2 -i ../support-linking-ScopPassManager-against-LLVM-dylib.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_BUILD_TESTS=ON \
+-DLLVM_BUILD_DOCS=ON \
+-DLLVM_ENABLE_SPHINX=ON \
+-DSPHINX_WARNINGS_AS_ERRORS=OFF \
+-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
+-DLLVM_BUILD_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src"
+  ninja
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+  ninja check-polly
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+  install -Dm644 ../LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove documentation sources
+  rm -r "$pkgdir"/usr/share/doc/$pkgname/html/{_sources,.buildinfo}
+}
+
+# vim:set ts=2 sw=2 et:

Added: polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch
===
--- polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch
(rev 0)
+++ polly/trunk/support-linking-ScopPassManager-against-LLVM-dylib.patch
2020-10-12 23:41:34 UTC (rev 398095)
@@ -0,0 +1,28 @@
+From 96b02808afa7eb043b9968b07424cc96bc8d94a6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Wed, 5 Aug 2020 10:22:32 +0200
+Subject: [PATCH] [Polly] Support linking ScopPassManager against LLVM dylib
+
+Link ScopPassManager to LLVM dylib target if LLVM_LINK_LLVM_DYLIB
+is enabled.  This fixes build failures on systems where static LLVM
+libraries are not installed.
+
+Differential Revision: https://reviews.llvm.org/D85281
+---
+ polly/unittests/ScopPassManager/CMakeLists.txt | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/polly/unittests/ScopPassManager/CMakeLists.txt 
b/polly/unittests/ScopPassManager/CMakeLists.txt
+index ed3bbd6dcef..88300144af3 100644
+--- a/polly/unittests/ScopPassManager/CMakeLists.txt
 b/polly/unittests/ScopPassManager/CMakeLists.txt
+@@ -1,5 +1,7 @@
+-llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
+ add_polly_unittest(ScopPassManagerTests
+   PassManagerTest.cpp
+   )
+-target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++if (NOT LLVM_LINK_LLVM_DYLIB)
++  llvm_map_components_to_libnames(llvm_libs Passes Core Analysis)
++  target_link_libraries(ScopPassManagerTests PRIVATE ${llvm_libs})
++endif()


[arch-commits] Commit in mfoc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:21:26
  Author: archange
Revision: 723772

archrelease: copy trunk to community-x86_64

Added:
  mfoc/repos/community-x86_64/PKGBUILD
(from rev 723771, mfoc/trunk/PKGBUILD)
Deleted:
  mfoc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   57 +++--
 1 file changed, 31 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 23:21:02 UTC (rev 723771)
+++ PKGBUILD2020-10-12 23:21:26 UTC (rev 723772)
@@ -1,26 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=mfoc
-pkgver=0.10.7+38+gb333a79
-pkgrel=2
-pkgdesc="MiFare Classic Universal toolKit"
-arch=('x86_64')
-url="http://nfc-tools.org/;
-license=('GPL2')
-depends=('libnfc')
-makedepends=('git')
-_commit=ba072f16f6b2a655d51da2171ecfb83e26c0ef58  # Latest tested commit
-source=("git+https://github.com/nfc-tools/mfoc.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-autoreconf -is
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${pkgname}
-make DESTDIR="${pkgdir}" install
-}

Copied: mfoc/repos/community-x86_64/PKGBUILD (from rev 723771, 
mfoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 23:21:26 UTC (rev 723772)
@@ -0,0 +1,31 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=mfoc
+pkgver=0.10.7+38+gba072f1
+pkgrel=1
+pkgdesc="MiFare Classic Universal toolKit"
+arch=(x86_64)
+url="http://nfc-tools.org/;
+license=(GPL2)
+depends=(libnfc)
+makedepends=(git)
+_commit=ba072f16f6b2a655d51da2171ecfb83e26c0ef58 # Latest tested commit
+source=(git+https://github.com/nfc-tools/mfoc.git#commit=${_commit})
+sha256sums=(SKIP)
+
+#pkgver() {
+#  cd ${pkgname}
+#  git describe --tags | sed 's/^mfoc-//;s/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
+#}
+
+build() {
+  cd ${pkgname}
+  autoreconf -is
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:21:02
  Author: archange
Revision: 723771

libnfc 1.8.0 rebuild

Modified:
  mfoc/trunk/PKGBUILD

--+
 PKGBUILD |   35 ---
 1 file changed, 20 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:17:01 UTC (rev 723770)
+++ PKGBUILD2020-10-12 23:21:02 UTC (rev 723771)
@@ -1,26 +1,31 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=mfoc
-pkgver=0.10.7+38+gb333a79
-pkgrel=2
+pkgver=0.10.7+38+gba072f1
+pkgrel=1
 pkgdesc="MiFare Classic Universal toolKit"
-arch=('x86_64')
+arch=(x86_64)
 url="http://nfc-tools.org/;
-license=('GPL2')
-depends=('libnfc')
-makedepends=('git')
-_commit=ba072f16f6b2a655d51da2171ecfb83e26c0ef58  # Latest tested commit
-source=("git+https://github.com/nfc-tools/mfoc.git#commit=${_commit};)
-sha256sums=('SKIP')
+license=(GPL2)
+depends=(libnfc)
+makedepends=(git)
+_commit=ba072f16f6b2a655d51da2171ecfb83e26c0ef58 # Latest tested commit
+source=(git+https://github.com/nfc-tools/mfoc.git#commit=${_commit})
+sha256sums=(SKIP)
 
+#pkgver() {
+#  cd ${pkgname}
+#  git describe --tags | sed 's/^mfoc-//;s/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
+#}
+
 build() {
-cd ${pkgname}
-autoreconf -is
-./configure --prefix=/usr
-make
+  cd ${pkgname}
+  autoreconf -is
+  ./configure --prefix=/usr
+  make
 }
 
 package() {
-cd ${pkgname}
-make DESTDIR="${pkgdir}" install
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in rust-analyzer/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Daniel M. Capella via arch-commits
Date: Monday, October 12, 2020 @ 23:17:01
  Author: polyzen
Revision: 723770

archrelease: copy trunk to community-x86_64

Added:
  rust-analyzer/repos/community-x86_64/PKGBUILD
(from rev 723769, rust-analyzer/trunk/PKGBUILD)
Deleted:
  rust-analyzer/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 23:16:37 UTC (rev 723769)
+++ PKGBUILD2020-10-12 23:17:01 UTC (rev 723770)
@@ -1,29 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-pkgver=20201005
-_pkgver=2020-10-05
-pkgrel=1
-pkgdesc='Experimental Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://github.com/rust-analyzer/rust-analyzer
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust')
-source=("$url/archive/$_pkgver/$pkgname-$_pkgver.tar.gz")
-sha512sums=('9ae99c7727e1b3bb1e00e2a68527d07b5d0cfafc258fa525735fbc300fd459613937a2dd875aea0eac9aa7543ebbd77a5ae0b9cb81283a95717f5e7938d3a9f2')
-
-pkgver() {
-  echo ${_pkgver//-}
-}
-
-build() {
-  cd $pkgname-$_pkgver
-  cargo build --release --locked
-}
-
-package() {
-  cd $pkgname-$_pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 723769, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 23:17:01 UTC (rev 723770)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2020-10-12
+pkgver=20201012
+pkgrel=1
+pkgdesc='Experimental Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://github.com/rust-analyzer/rust-analyzer
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust')
+source=("$url/archive/$_pkgver/$pkgname-$_pkgver.tar.gz")
+sha512sums=('04e263624f59dc35eed06f5a7a2b0154b9a6011f980febff218d8f7f4cc32dde52e5085135200ff7022f29af05e0dc542fde5ebcc24666a9f89a29765602863e')
+
+pkgver() {
+  echo ${_pkgver//-}
+}
+
+build() {
+  cd $pkgname-$_pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd $pkgname-$_pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}


[arch-commits] Commit in rust-analyzer/trunk (PKGBUILD)

2020-10-12 Thread Daniel M. Capella via arch-commits
Date: Monday, October 12, 2020 @ 23:16:37
  Author: polyzen
Revision: 723769

upgpkg: rust-analyzer 20201012-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:07:46 UTC (rev 723768)
+++ PKGBUILD2020-10-12 23:16:37 UTC (rev 723769)
@@ -2,8 +2,8 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-pkgver=20201005
-_pkgver=2020-10-05
+_pkgver=2020-10-12
+pkgver=20201012
 pkgrel=1
 pkgdesc='Experimental Rust compiler front-end for IDEs'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=('Apache' 'MIT')
 depends=('gcc-libs' 'rust')
 source=("$url/archive/$_pkgver/$pkgname-$_pkgver.tar.gz")
-sha512sums=('9ae99c7727e1b3bb1e00e2a68527d07b5d0cfafc258fa525735fbc300fd459613937a2dd875aea0eac9aa7543ebbd77a5ae0b9cb81283a95717f5e7938d3a9f2')
+sha512sums=('04e263624f59dc35eed06f5a7a2b0154b9a6011f980febff218d8f7f4cc32dde52e5085135200ff7022f29af05e0dc542fde5ebcc24666a9f89a29765602863e')
 
 pkgver() {
   echo ${_pkgver//-}


[arch-commits] Commit in cormorant/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:07:46
  Author: archange
Revision: 723768

archrelease: copy trunk to community-any

Added:
  cormorant/repos/community-any/PKGBUILD
(from rev 723767, cormorant/trunk/PKGBUILD)
Deleted:
  cormorant/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 23:07:21 UTC (rev 723767)
+++ PKGBUILD2020-10-12 23:07:46 UTC (rev 723768)
@@ -1,24 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgbase=cormorant
-pkgname=("otf-${pkgbase}" "ttf-${pkgbase}")
-pkgver=3.601
-pkgrel=2
-pkgdesc="Open-source display font family"
-arch=('any')
-url="https://github.com/CatharsisFonts/Cormorant;
-license=('custom:OFL')
-source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/CatharsisFonts/Cormorant/archive/v${pkgver}.tar.gz;)
-sha256sums=('0cfcbf79b2079339d10b1a78a6a4f14cad799187ef5c020c51adc237e5ffc17a')
-
-package_otf-cormorant() {
-cd ${pkgbase^}-${pkgver}
-install -Dm644 "2. OpenType Files/"*.otf -t 
"${pkgdir}"/usr/share/fonts/OTF/
-install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}
-
-package_ttf-cormorant() {
-cd ${pkgbase^}-${pkgver}
-install -Dm644 "1. TrueType Font Files/"*.ttf -t 
"${pkgdir}"/usr/share/fonts/TTF/
-install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: cormorant/repos/community-any/PKGBUILD (from rev 723767, 
cormorant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 23:07:46 UTC (rev 723768)
@@ -0,0 +1,24 @@
+# Maintainer: Bruno Pagani 
+
+pkgbase=cormorant
+pkgname=("otf-${pkgbase}" "ttf-${pkgbase}")
+pkgver=3.609
+pkgrel=1
+pkgdesc="Open-source display font family"
+arch=(any)
+url="https://github.com/CatharsisFonts/Cormorant;
+license=('custom:OFL')
+source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/CatharsisFonts/Cormorant/archive/v${pkgver}.tar.gz;)
+sha256sums=('78fff4efb4d97069959a2b03a90b3e7c0c8f6e48349bf93c4ad80c3db779ef0b')
+
+package_otf-cormorant() {
+  cd ${pkgbase^}-${pkgver}
+  install -Dm644 "2. OpenType Files/"*.otf -t "${pkgdir}"/usr/share/fonts/OTF/
+  install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}
+
+package_ttf-cormorant() {
+  cd ${pkgbase^}-${pkgver}
+  install -Dm644 "1. TrueType Font Files/"*.ttf -t 
"${pkgdir}"/usr/share/fonts/TTF/
+  install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:07:21
  Author: archange
Revision: 723767

upgpkg: cormorant 3.609-1

Modified:
  cormorant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 23:07:03 UTC (rev 723766)
+++ PKGBUILD2020-10-12 23:07:21 UTC (rev 723767)
@@ -2,23 +2,23 @@
 
 pkgbase=cormorant
 pkgname=("otf-${pkgbase}" "ttf-${pkgbase}")
-pkgver=3.601
-pkgrel=2
+pkgver=3.609
+pkgrel=1
 pkgdesc="Open-source display font family"
-arch=('any')
+arch=(any)
 url="https://github.com/CatharsisFonts/Cormorant;
 license=('custom:OFL')
 
source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/CatharsisFonts/Cormorant/archive/v${pkgver}.tar.gz;)
-sha256sums=('0cfcbf79b2079339d10b1a78a6a4f14cad799187ef5c020c51adc237e5ffc17a')
+sha256sums=('78fff4efb4d97069959a2b03a90b3e7c0c8f6e48349bf93c4ad80c3db779ef0b')
 
 package_otf-cormorant() {
-cd ${pkgbase^}-${pkgver}
-install -Dm644 "2. OpenType Files/"*.otf -t 
"${pkgdir}"/usr/share/fonts/OTF/
-install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+  cd ${pkgbase^}-${pkgver}
+  install -Dm644 "2. OpenType Files/"*.otf -t "${pkgdir}"/usr/share/fonts/OTF/
+  install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
 }
 
 package_ttf-cormorant() {
-cd ${pkgbase^}-${pkgver}
-install -Dm644 "1. TrueType Font Files/"*.ttf -t 
"${pkgdir}"/usr/share/fonts/TTF/
-install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+  cd ${pkgbase^}-${pkgver}
+  install -Dm644 "1. TrueType Font Files/"*.ttf -t 
"${pkgdir}"/usr/share/fonts/TTF/
+  install -Dm644 OFL.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
 }


[arch-commits] Commit in libnfc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:07:03
  Author: archange
Revision: 723766

archrelease: copy trunk to community-x86_64

Added:
  libnfc/repos/community-x86_64/PKGBUILD
(from rev 723765, libnfc/trunk/PKGBUILD)
Deleted:
  libnfc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   88 -
 1 file changed, 41 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 23:06:39 UTC (rev 723765)
+++ PKGBUILD2020-10-12 23:07:03 UTC (rev 723766)
@@ -1,47 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Christoph Hoopmann 
-# Contributor: Pascal E. 
-# Contributor: Andrej Gelenberg 
-
-pkgname=libnfc
-pkgver=1.7.1+204+g4ae4cc8
-pkgrel=2
-pkgdesc="Platform independent Near Field Communication (NFC) library"
-arch=('x86_64')
-url="http://nfc-tools.org/;
-license=('LGPL3')
-depends=('libusb-compat' 'pcsclite')
-makedepends=('cmake' 'git')
-optdepends=('acsccid: acr122_pcsc support')
-_commit=4ae4cc86f85dd7362e9f369ba2bff0ab258b1799 # Latest tested commit
-source=("git+https://github.com/nfc-tools/libnfc.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-cd ${pkgname}
-git describe --tags | sed 's/libnfc-//' |sed 's/-/+/g'
-}
-
-prepare() {
-mkdir -p build
-cd ${pkgname}
-# Use uaccess 
-sed -i "s|MODE=\"0664\", GROUP=\"plugdev\"|TAG+=\"uaccess\"|g" 
contrib/udev/93-pn53x.rules
-}
-
-build() {
-cd build
-cmake ../${pkgname} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBNFC_DRIVER_ACR122_PCSC=ON
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-cd ../${pkgname}
-install -Dm644 libnfc.conf.sample -t "${pkgdir}"/etc/nfc/
-install -Dm644 contrib/udev/93-pn53x.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
-install -Dm644 contrib/linux/blacklist-libnfc.conf -t 
"$pkgdir"/etc/modprobe.d/
-}

Copied: libnfc/repos/community-x86_64/PKGBUILD (from rev 723765, 
libnfc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 23:07:03 UTC (rev 723766)
@@ -0,0 +1,41 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Christoph Hoopmann 
+# Contributor: Pascal E. 
+# Contributor: Andrej Gelenberg 
+
+pkgname=libnfc
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Platform independent Near Field Communication (NFC) library"
+arch=(x86_64)
+url="http://nfc-tools.org/;
+license=(LGPL3)
+depends=(libusb-compat pcsclite)
+makedepends=(cmake)
+optdepends=('acsccid: acr122_pcsc support')
+source=(https://github.com/nfc-tools/libnfc/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6d9ad31c86408711f0a60f05b1933101c7497683c2e0d8917d1611a3feba3dd5')
+
+prepare() {
+  # Use uaccess 
+  sed -i "s|MODE=\"0664\", GROUP=\"plugdev\"|TAG+=\"uaccess\"|g" 
${pkgname}-${pkgver}/contrib/udev/93-pn53x.rules
+  mv ${pkgname}-${pkgver}/contrib/udev/{93,70}-pn53x.rules
+}
+
+build() {
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBNFC_DRIVER_PCSC=ON \
+-DLIBNFC_DRIVER_ACR122_PCSC=ON \
+-DLIBNFC_DRIVER_ACR122_USB=ON \
+-DLIBNFC_DRIVER_PN53X_USB=ON
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  cd ${pkgname}-${pkgver}
+  install -Dm644 libnfc.conf.sample -t "${pkgdir}"/etc/nfc/
+  install -Dm644 contrib/udev/70-pn53x.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
+  install -Dm644 contrib/linux/blacklist-libnfc.conf -t 
"${pkgdir}"/usr/lib/modprobe.d/
+}


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

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 23:06:39
  Author: archange
Revision: 723765

upgpkg: libnfc 1.8.0-1

Also fix FS#63164.

Modified:
  libnfc/trunk/PKGBUILD

--+
 PKGBUILD |   52 +++-
 1 file changed, 23 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 22:39:38 UTC (rev 723764)
+++ PKGBUILD2020-10-12 23:06:39 UTC (rev 723765)
@@ -4,44 +4,38 @@
 # Contributor: Andrej Gelenberg 
 
 pkgname=libnfc
-pkgver=1.7.1+204+g4ae4cc8
-pkgrel=2
+pkgver=1.8.0
+pkgrel=1
 pkgdesc="Platform independent Near Field Communication (NFC) library"
-arch=('x86_64')
+arch=(x86_64)
 url="http://nfc-tools.org/;
-license=('LGPL3')
-depends=('libusb-compat' 'pcsclite')
-makedepends=('cmake' 'git')
+license=(LGPL3)
+depends=(libusb-compat pcsclite)
+makedepends=(cmake)
 optdepends=('acsccid: acr122_pcsc support')
-_commit=4ae4cc86f85dd7362e9f369ba2bff0ab258b1799 # Latest tested commit
-source=("git+https://github.com/nfc-tools/libnfc.git#commit=${_commit};)
-sha256sums=('SKIP')
+source=(https://github.com/nfc-tools/libnfc/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6d9ad31c86408711f0a60f05b1933101c7497683c2e0d8917d1611a3feba3dd5')
 
-pkgver() {
-cd ${pkgname}
-git describe --tags | sed 's/libnfc-//' |sed 's/-/+/g'
-}
-
 prepare() {
-mkdir -p build
-cd ${pkgname}
-# Use uaccess 
-sed -i "s|MODE=\"0664\", GROUP=\"plugdev\"|TAG+=\"uaccess\"|g" 
contrib/udev/93-pn53x.rules
+  # Use uaccess 
+  sed -i "s|MODE=\"0664\", GROUP=\"plugdev\"|TAG+=\"uaccess\"|g" 
${pkgname}-${pkgver}/contrib/udev/93-pn53x.rules
+  mv ${pkgname}-${pkgver}/contrib/udev/{93,70}-pn53x.rules
 }
 
 build() {
-cd build
-cmake ../${pkgname} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBNFC_DRIVER_ACR122_PCSC=ON
-make
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBNFC_DRIVER_PCSC=ON \
+-DLIBNFC_DRIVER_ACR122_PCSC=ON \
+-DLIBNFC_DRIVER_ACR122_USB=ON \
+-DLIBNFC_DRIVER_PN53X_USB=ON
+  make -C build
 }
 
 package() {
-cd build
-make DESTDIR="${pkgdir}" install
-cd ../${pkgname}
-install -Dm644 libnfc.conf.sample -t "${pkgdir}"/etc/nfc/
-install -Dm644 contrib/udev/93-pn53x.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
-install -Dm644 contrib/linux/blacklist-libnfc.conf -t 
"$pkgdir"/etc/modprobe.d/
+  make -C build DESTDIR="${pkgdir}" install
+  cd ${pkgname}-${pkgver}
+  install -Dm644 libnfc.conf.sample -t "${pkgdir}"/etc/nfc/
+  install -Dm644 contrib/udev/70-pn53x.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
+  install -Dm644 contrib/linux/blacklist-libnfc.conf -t 
"${pkgdir}"/usr/lib/modprobe.d/
 }


[arch-commits] Commit in rust/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:56:06
  Author: heftig
Revision: 398094

archrelease: copy trunk to staging-x86_64

Added:
  rust/repos/staging-x86_64/
  rust/repos/staging-x86_64/PKGBUILD
(from rev 398093, rust/trunk/PKGBUILD)

--+
 PKGBUILD |  150 +
 1 file changed, 150 insertions(+)

Copied: rust/repos/staging-x86_64/PKGBUILD (from rev 398093, 
rust/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-12 22:56:06 UTC (rev 398094)
@@ -0,0 +1,150 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+# Contributor: userwithuid 
+
+pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
+epoch=1
+pkgver=1.47.0
+pkgrel=2
+
+_llvm_ver=11.0.0
+
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('rust' "llvm=$_llvm_ver" 'libffi' 'lib32-gcc-libs' 'perl' 
'python' 'curl' 'cmake')
+checkdepends=('procps-ng' 'gdb')
+
+options=('!emptydirs' '!strip')
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig})
+
+sha256sums=('3185df064c4747f2c8b9bb8c4468edd58ff4ad6d07880c879ac1b173b768d81d'
+'SKIP'
+'374aff82ff573a449f9aabbd330a5d0a441181c535a356127378112db234'
+'SKIP')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A'  # Tom Stellard 

+  'B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cat >config.toml 

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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:52:37
  Author: heftig
Revision: 398093

1.47.0-2: llvm 11

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 22:23:05 UTC (rev 398092)
+++ PKGBUILD2020-10-12 22:52:37 UTC (rev 398093)
@@ -7,9 +7,9 @@
 pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
 epoch=1
 pkgver=1.47.0
-pkgrel=1
+pkgrel=2
 
-_llvm_ver=10.0.1
+_llvm_ver=11.0.0
 
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='https://www.rust-lang.org/'
@@ -26,7 +26,7 @@
 
 sha256sums=('3185df064c4747f2c8b9bb8c4468edd58ff4ad6d07880c879ac1b173b768d81d'
 'SKIP'
-'d90dc8e121ca0271f0fd3d639d135bfaa4b6ed41e67bd6eb77808f72629658fa'
+'374aff82ff573a449f9aabbd330a5d0a441181c535a356127378112db234'
 'SKIP')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
   '474E22316ABF4785A88C6E8EA2C794A986419D8A'  # Tom Stellard 



[arch-commits] Commit in python-libcst/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Filipe Laíns via arch-commits
Date: Monday, October 12, 2020 @ 22:39:38
  Author: ffy00
Revision: 723764

archrelease: copy trunk to community-any

Added:
  python-libcst/repos/community-any/PKGBUILD
(from rev 723763, python-libcst/trunk/PKGBUILD)
Deleted:
  python-libcst/repos/community-any/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 22:39:29 UTC (rev 723763)
+++ PKGBUILD2020-10-12 22:39:38 UTC (rev 723764)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=LibCST
-pkgname=python-libcst
-pkgver=0.3.12
-pkgrel=1
-pkgdesc="A concrete syntax tree parser and serializer library for Python that 
preserves many aspects of Python's abstract syntax tree"
-arch=('any')
-url='https://github.com/Instagram/LibCST'
-license=('MIT')
-depends=('python-typing_extensions' 'python-typing_inspect' 'python-yaml')
-makedepends=('python-setuptools')
-checkdepends=('python-hypothesis' 'python-hypothesmith' 'python-isort' 
'python-black')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f516624c490aeb2dc31e0da82705ef18196edf089c854102ba94a6f8771a060920371b058f2983e26c07fac19120f5cfd8fb113f05a0c07b49839d57f47652a9')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  python -m unittest
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-libcst/repos/community-any/PKGBUILD (from rev 723763, 
python-libcst/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 22:39:38 UTC (rev 723764)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=LibCST
+pkgname=python-libcst
+pkgver=0.3.13
+pkgrel=1
+pkgdesc="A concrete syntax tree parser and serializer library for Python that 
preserves many aspects of Python's abstract syntax tree"
+arch=('any')
+url='https://github.com/Instagram/LibCST'
+license=('MIT')
+depends=('python-typing_extensions' 'python-typing_inspect' 'python-yaml')
+makedepends=('python-setuptools')
+checkdepends=('python-hypothesis' 'python-hypothesmith' 'python-isort' 
'python-black')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('f4f0a962557a12bf92b806d10ee9c10de04c066fe6f56e59a2664439a79f49b9a98e4420b78321ac0dd49c04a3603f778b2ebbc0597521725421bd512072c2eb')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  python -m unittest
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-libcst/trunk (PKGBUILD)

2020-10-12 Thread Filipe Laíns via arch-commits
Date: Monday, October 12, 2020 @ 22:39:29
  Author: ffy00
Revision: 723763

upgpkg: python-libcst 0.3.13-1

Modified:
  python-libcst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:43:22 UTC (rev 723762)
+++ PKGBUILD2020-10-12 22:39:29 UTC (rev 723763)
@@ -2,7 +2,7 @@
 
 _pkgname=LibCST
 pkgname=python-libcst
-pkgver=0.3.12
+pkgver=0.3.13
 pkgrel=1
 pkgdesc="A concrete syntax tree parser and serializer library for Python that 
preserves many aspects of Python's abstract syntax tree"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-hypothesis' 'python-hypothesmith' 'python-isort' 
'python-black')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('f516624c490aeb2dc31e0da82705ef18196edf089c854102ba94a6f8771a060920371b058f2983e26c07fac19120f5cfd8fb113f05a0c07b49839d57f47652a9')
+sha512sums=('f4f0a962557a12bf92b806d10ee9c10de04c066fe6f56e59a2664439a79f49b9a98e4420b78321ac0dd49c04a3603f778b2ebbc0597521725421bd512072c2eb')
 
 build() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in linux-zen/trunk (PKGBUILD config)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:22:51
  Author: heftig
Revision: 398091

5.9.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD
  linux-zen/trunk/config

--+
 PKGBUILD |4 -
 config   |  156 +
 2 files changed, 108 insertions(+), 52 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 22:16:26 UTC (rev 398090)
+++ PKGBUILD2020-10-12 22:22:51 UTC (rev 398091)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.8.14.zen1
+pkgver=5.9.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'b71680e5e7a2ca1bd5d6d712f79ff43d7645daef83ffd727091bef3dde363ce6'
+'0515a4ce03abc2913fbf8a52423554cfa4811dec03751bedcfacb49fde982c1b'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-10-12 22:16:26 UTC (rev 398090)
+++ config  2020-10-12 22:22:51 UTC (rev 398091)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.8.14-zen1 Kernel Configuration
+# Linux/x86 5.9.0-zen1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y
@@ -85,6 +85,8 @@
 CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
 CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
 CONFIG_GENERIC_CMOS_UPDATE=y
+CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y
+CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y
 
 #
 # Timers subsystem
@@ -111,7 +113,6 @@
 # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
 CONFIG_IRQ_TIME_ACCOUNTING=y
 CONFIG_HAVE_SCHED_AVG_IRQ=y
-# CONFIG_SCHED_THERMAL_PRESSURE is not set
 CONFIG_BSD_PROCESS_ACCT=y
 CONFIG_BSD_PROCESS_ACCT_V3=y
 CONFIG_TASKSTATS=y
@@ -578,7 +579,6 @@
 CONFIG_ACPI_SPCR_TABLE=y
 CONFIG_ACPI_LPIT=y
 CONFIG_ACPI_SLEEP=y
-# CONFIG_ACPI_PROCFS_POWER is not set
 CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
 CONFIG_ACPI_EC_DEBUGFS=y
 CONFIG_ACPI_AC=m
@@ -782,6 +782,7 @@
 CONFIG_KVM_COMPAT=y
 CONFIG_HAVE_KVM_IRQ_BYPASS=y
 CONFIG_HAVE_KVM_NO_POLL=y
+CONFIG_KVM_XFER_TO_GUEST_WORK=y
 CONFIG_VIRTUALIZATION=y
 CONFIG_KVM=m
 CONFIG_KVM_WERROR=y
@@ -800,6 +801,7 @@
 CONFIG_CRASH_CORE=y
 CONFIG_KEXEC_CORE=y
 CONFIG_HOTPLUG_SMT=y
+CONFIG_GENERIC_ENTRY=y
 CONFIG_OPROFILE=m
 # CONFIG_OPROFILE_EVENT_MULTIPLEX is not set
 CONFIG_HAVE_OPROFILE=y
@@ -854,7 +856,6 @@
 CONFIG_SECCOMP_FILTER=y
 CONFIG_HAVE_ARCH_STACKLEAK=y
 CONFIG_HAVE_STACKPROTECTOR=y
-CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
 CONFIG_STACKPROTECTOR=y
 CONFIG_STACKPROTECTOR_STRONG=y
 CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
@@ -876,7 +877,6 @@
 CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
 CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
 CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
-CONFIG_HAVE_COPY_THREAD_TLS=y
 CONFIG_HAVE_STACK_VALIDATION=y
 CONFIG_HAVE_RELIABLE_STACKTRACE=y
 CONFIG_ISA_BUS_API=y
@@ -1033,7 +1033,6 @@
 CONFIG_SPARSEMEM_MANUAL=y
 CONFIG_SPARSEMEM=y
 CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
 CONFIG_SPARSEMEM_EXTREME=y
 CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
 CONFIG_SPARSEMEM_VMEMMAP=y
@@ -1232,8 +1231,8 @@
 CONFIG_IPV6_RPL_LWTUNNEL=y
 CONFIG_NETLABEL=y
 CONFIG_MPTCP=y
+CONFIG_INET_MPTCP_DIAG=m
 CONFIG_MPTCP_IPV6=y
-# CONFIG_MPTCP_HMAC_TEST is not set
 CONFIG_NETWORK_SECMARK=y
 CONFIG_NET_PTP_CLASSIFY=y
 CONFIG_NETWORK_PHY_TIMESTAMPING=y
@@ -1656,6 +1655,7 @@
 CONFIG_NET_DSA_TAG_EDSA=m
 CONFIG_NET_DSA_TAG_MTK=m
 CONFIG_NET_DSA_TAG_KSZ=m
+CONFIG_NET_DSA_TAG_RTL4_A=m
 CONFIG_NET_DSA_TAG_OCELOT=m
 CONFIG_NET_DSA_TAG_QCA=m
 CONFIG_NET_DSA_TAG_LAN9303=m
@@ -2114,6 +2114,7 @@
 CONFIG_NET_DEVLINK=y
 CONFIG_PAGE_POOL=y
 CONFIG_FAILOVER=m
+CONFIG_ETHTOOL_NETLINK=y
 CONFIG_HAVE_EBPF_JIT=y
 
 #
@@ -2201,6 +2202,9 @@
 CONFIG_PCIE_CADENCE_PLAT=y
 CONFIG_PCIE_CADENCE_PLAT_HOST=y
 CONFIG_PCIE_CADENCE_PLAT_EP=y
+CONFIG_PCI_J721E=y
+CONFIG_PCI_J721E_HOST=y
+CONFIG_PCI_J721E_EP=y
 # end of Cadence PCIe controllers support
 # end of PCI controller drivers
 
@@ -2421,6 +2425,9 @@
 CONFIG_BCH_CONST_T=4
 # end of Self-contained MTD device drivers
 
+#
+# NAND
+#
 CONFIG_MTD_NAND_CORE=m
 CONFIG_MTD_ONENAND=m
 # CONFIG_MTD_ONENAND_VERIFY_WRITE is not set
@@ -2456,6 +2463,7 @@
 CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
 CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE=y
 CONFIG_MTD_SPI_NAND=m
+# end of NAND
 
 #
 # LPDDR & LPDDR2 PCM memory drivers
@@ -2553,6 +2561,7 @@
 CONFIG_NVME_FC=m
 CONFIG_NVME_TCP=m
 CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_PASSTHRU=y
 CONFIG_NVME_TARGET_LOOP=m
 CONFIG_NVME_TARGET_RDMA=m
 CONFIG_NVME_TARGET_FC=m
@@ -2739,6 +2748,7 @@
 CONFIG_SCSI_UFS_CDNS_PLATFORM=m
 # CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set
 CONFIG_SCSI_UFS_BSG=y
+CONFIG_SCSI_UFS_CRYPTO=y
 CONFIG_SCSI_HPTIOP=m
 CONFIG_SCSI_BUSLOGIC=m
 CONFIG_SCSI_FLASHPOINT=y
@@ -2920,7 +2930,7 @@
 

[arch-commits] Commit in linux-zen/repos (4 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:23:05
  Author: heftig
Revision: 398092

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 398091, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 398091, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/sphinx-workaround.patch
(from rev 398091, linux-zen/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |11129 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11341 insertions(+)

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


[arch-commits] Commit in firefox-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:16:26
  Author: heftig
Revision: 398090

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 398089, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  468 ++---
 1 file changed, 234 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 22:16:07 UTC (rev 398089)
+++ PKGBUILD2020-10-12 22:16:26 UTC (rev 398090)
@@ -1,234 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=81.0.1
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=(any)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn "Bengali"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca-valencia "Catalan (Valencian)"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-CA  "English (Canadian)"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mk "Macedonian"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'oc "Occitan"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tl "Tagalog"'
-  'tr "Turkish"'
-  'trs"Chicahuaxtla Triqui"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('b80545063b8332af0bc57ac7bbdcf1598f7cb0fe881daa08be62f07c16ca'
-'bc4c202c2b437d6b489365178947bbc21bad1bd70fdc6f690e43e25ed18c5ff4'
-'a1378f766d8046a0caa9dce32766a039a37e91b2ef4e0f47c78413d2457bf6d2'
-'76f41e2629c8cdf86e71d8142e365fefd758629b281697f338d330110f10ad12'
-'1d50c6af6f1983cdfbaf1f1c842b25b327fd09e391fe93a64315291a2c1cefe6'
-'bcd145faa471f3bd2b663983596b66c6b7c92feac39529d461f7d880598d23ff'
-'34d311aa6818d532ac951ab079e1b6dbd676c290ff02f4e14f8b78ba37cea4d2'
-'42e72d45c69e72af03568d89e3ca2f5d8f7ee1ce40c32e78f580f4fb058ac748'
-'bd236745ec2bd3f6df17e3e61c50836c07a390297bffd544cde179a2ac66d8f1'
-'b607f84d2a59c0a6b7e3d0b188913e764793619fb45ecf3527877f714e50df66'
-'9a580d4872f0eb9ee515085f649c9b15f16e17b7ea68e0c2f66b817471a4511b'
-'5c365a320f0bd9a51171372b33465cfca9da05d85d6c6cacceb830f94312618d'
-

[arch-commits] Commit in firefox/repos/extra-x86_64 (13 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:16:07
  Author: heftig
Revision: 398089

archrelease: copy trunk to extra-x86_64

Added:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 398088, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  
firefox/repos/extra-x86_64/0002-Bug-1660901-Support-the-fstat-like-subset-of-fstatat.patch
(from rev 398088, 
firefox/trunk/0002-Bug-1660901-Support-the-fstat-like-subset-of-fstatat.patch)
  
firefox/repos/extra-x86_64/0003-Bug-1660901-ignore-AT_NO_AUTOMOUNT-in-fstatat-system.patch
(from rev 398088, 
firefox/trunk/0003-Bug-1660901-ignore-AT_NO_AUTOMOUNT-in-fstatat-system.patch)
  
firefox/repos/extra-x86_64/0004-Bug-1663715-Update-syn-and-proc-macro2-so-that-Firef.patch
(from rev 398088, 
firefox/trunk/0004-Bug-1663715-Update-syn-and-proc-macro2-so-that-Firef.patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 398088, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 398088, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/upload-symbol-archive
(from rev 398088, firefox/trunk/upload-symbol-archive)
Deleted:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  
firefox/repos/extra-x86_64/0002-Bug-1660901-Support-the-fstat-like-subset-of-fstatat.patch
  
firefox/repos/extra-x86_64/0003-Bug-1660901-ignore-AT_NO_AUTOMOUNT-in-fstatat-system.patch
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/upload-symbol-archive

-+
 0001-Use-remoting-name-for-GDK-application-names.patch  |  112 
 0002-Bug-1660901-Support-the-fstat-like-subset-of-fstatat.patch |   92 
 0003-Bug-1660901-ignore-AT_NO_AUTOMOUNT-in-fstatat-system.patch |   62 
 0004-Bug-1663715-Update-syn-and-proc-macro2-so-that-Firef.patch |33183 
++
 PKGBUILD|  457 
 firefox.desktop |  680 
 upload-symbol-archive   |   50 
 7 files changed, 33912 insertions(+), 724 deletions(-)

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


[arch-commits] Commit in firefox/trunk (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 22:15:38
  Author: heftig
Revision: 398088

81.0.2-1

Added:
  firefox/trunk/0004-Bug-1663715-Update-syn-and-proc-macro2-so-that-Firef.patch
Modified:
  firefox/trunk/PKGBUILD

-+
 0004-Bug-1663715-Update-syn-and-proc-macro2-so-that-Firef.patch |33183 
++
 PKGBUILD|9 
 2 files changed, 33190 insertions(+), 2 deletions(-)

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


[arch-commits] Commit in monero-gui/repos/community-x86_64 (4 files)

2020-10-12 Thread Kpcyrd via arch-commits
Date: Monday, October 12, 2020 @ 21:43:22
  Author: kpcyrd
Revision: 723762

archrelease: copy trunk to community-x86_64

Added:
  monero-gui/repos/community-x86_64/PKGBUILD
(from rev 723761, monero-gui/trunk/PKGBUILD)
  monero-gui/repos/community-x86_64/monero-gui.desktop
(from rev 723761, monero-gui/trunk/monero-gui.desktop)
Deleted:
  monero-gui/repos/community-x86_64/PKGBUILD
  monero-gui/repos/community-x86_64/monero-gui.desktop

+
 PKGBUILD   |  119 ++-
 monero-gui.desktop |   30 ++--
 2 files changed, 85 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 21:43:06 UTC (rev 723761)
+++ PKGBUILD2020-10-12 21:43:22 UTC (rev 723762)
@@ -1,49 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=monero-gui
-pkgver=0.16.0.3
-_commit=3c690231350c32c7a364ce6729759547ef939cbe
-pkgrel=2
-pkgdesc="QT GUI wallet for Monero: the secure, private, untraceable 
peer-to-peer currency"
-license=('BSD')
-arch=('x86_64')
-url="https://getmonero.org/;
-depends=('monero' 'boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 
'pcsclite' 'hidapi' 'unbound' 'hicolor-icon-theme'
-'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-quickcontrols2' 'qt5-svg' 'qt5-xmlpatterns')
-makedepends=('git' 'cmake' 'boost' 'qt5-tools')
-source=(
-"git+https://github.com/monero-project/monero-gui#commit=${_commit};
-"git+https://github.com/monero-project/monero;
-"monero-gui.desktop"
-
"fix-qt5_15_1-build.patch::https://github.com/monero-project/monero-gui/commit/1d2840f8b5fa46cbbcae2f58f3bdbd33ac49b1a4.patch;
-)
-sha512sums=('SKIP'
-'SKIP'
-
'8aa10a47c3217e5bf12bb40a02828bb75cb38e4b5b124a8b05e487e7d3212c132911d5025193d4a7d984aebef94177dee42acf958c11a18b99fd13e872a771e8'
-
'5490363e8c5b063dad7809d0616fd85890483790bfc19b6259c06c06a68a6300b99eab09e2cf43e1a8c527c63ad80d9921cf39c360c5ad14a177bf63a998ef72')
-
-prepare() {
-  cd "${pkgname}"
-  patch -Np1 < ../fix-qt5_15_1-build.patch
-  git submodule init
-  git config submodule.monero.url "$srcdir/monero"
-  git submodule update
-}
-
-build() {
-  cd "${pkgname}"
-  ARCH=default QT_SELECT=5 ./build.sh
-}
-
-package() {
-  cd "${pkgname}"
-  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -Dm644 ../monero-gui.desktop -t "${pkgdir}/usr/share/applications"
-  for x in 16 24 32 48 64 96 128 256; do
-install -Dm644 "images/appicons/${x}x${x}.png" 
"${pkgdir}/usr/share/icons/hicolor/${x}x${x}/apps/monero-gui.png"
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero-gui/repos/community-x86_64/PKGBUILD (from rev 723761, 
monero-gui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 21:43:22 UTC (rev 723762)
@@ -0,0 +1,70 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero-gui
+pkgver=0.17.0.1
+_commit=afc2e846fd280248610ab56eb5e39966f0305d5d
+pkgrel=1
+pkgdesc="QT GUI wallet for Monero: the secure, private, untraceable 
peer-to-peer currency"
+license=('BSD')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('monero' 'boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 
'pcsclite' 'hidapi' 'unbound' 'hicolor-icon-theme'
+'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-quickcontrols2' 'qt5-svg' 'qt5-xmlpatterns')
+makedepends=('git' 'cmake' 'boost' 'qt5-tools')
+source=(
+"git+https://github.com/monero-project/monero-gui?signed#commit=${_commit};
+"git+https://github.com/monero-project/monero;
+"git+https://github.com/monero-project/unbound.git;
+"git+https://github.com/monero-project/miniupnp.git;
+"git+https://github.com/Tencent/rapidjson.git;
+"git+https://github.com/trezor/trezor-common.git;
+"git+https://github.com/tevador/randomx.git;
+"git+https://github.com/monero-project/supercop.git;
+
"https://github.com/monero-project/monero-gui/commit/6ed536982953d870010d8fa065dccbffeb6cae50.patch;
+"monero-gui.desktop"
+)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'dcc0004ffdb7f73899dcb70e233608c24346599286af5bbfb36f603e3c51208f1a474e92a9aa4e4fd70c3eee9a5d259e97c813aa55d179e499e139b630b418d3'
+
'8aa10a47c3217e5bf12bb40a02828bb75cb38e4b5b124a8b05e487e7d3212c132911d5025193d4a7d984aebef94177dee42acf958c11a18b99fd13e872a771e8')
+validpgpkeys=('8777AB8F778EE89487A2F8E7F4ACA0183641E010') # luigi 

+
+prepare() {
+  cd "${pkgname}"
+  patch -Np1 < ../6ed536982953d870010d8fa065dccbffeb6cae50.patch
+  git submodule init
+  git config submodule.monero.url "$srcdir/monero"
+  git submodule update
+  cd monero
+  git 

[arch-commits] Commit in monero-gui/trunk (PKGBUILD)

2020-10-12 Thread Kpcyrd via arch-commits
Date: Monday, October 12, 2020 @ 21:43:06
  Author: kpcyrd
Revision: 723761

upgpkg: monero-gui 0.17.0.1-1

Modified:
  monero-gui/trunk/PKGBUILD

--+
 PKGBUILD |   39 ++-
 1 file changed, 30 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:40:55 UTC (rev 723760)
+++ PKGBUILD2020-10-12 21:43:06 UTC (rev 723761)
@@ -1,9 +1,9 @@
 # Maintainer: kpcyrd 
 
 pkgname=monero-gui
-pkgver=0.16.0.3
-_commit=3c690231350c32c7a364ce6729759547ef939cbe
-pkgrel=2
+pkgver=0.17.0.1
+_commit=afc2e846fd280248610ab56eb5e39966f0305d5d
+pkgrel=1
 pkgdesc="QT GUI wallet for Monero: the secure, private, untraceable 
peer-to-peer currency"
 license=('BSD')
 arch=('x86_64')
@@ -12,27 +12,48 @@
 'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-quickcontrols2' 'qt5-svg' 'qt5-xmlpatterns')
 makedepends=('git' 'cmake' 'boost' 'qt5-tools')
 source=(
-"git+https://github.com/monero-project/monero-gui#commit=${_commit};
+"git+https://github.com/monero-project/monero-gui?signed#commit=${_commit};
 "git+https://github.com/monero-project/monero;
+"git+https://github.com/monero-project/unbound.git;
+"git+https://github.com/monero-project/miniupnp.git;
+"git+https://github.com/Tencent/rapidjson.git;
+"git+https://github.com/trezor/trezor-common.git;
+"git+https://github.com/tevador/randomx.git;
+"git+https://github.com/monero-project/supercop.git;
+
"https://github.com/monero-project/monero-gui/commit/6ed536982953d870010d8fa065dccbffeb6cae50.patch;
 "monero-gui.desktop"
-
"fix-qt5_15_1-build.patch::https://github.com/monero-project/monero-gui/commit/1d2840f8b5fa46cbbcae2f58f3bdbd33ac49b1a4.patch;
 )
 sha512sums=('SKIP'
 'SKIP'
-
'8aa10a47c3217e5bf12bb40a02828bb75cb38e4b5b124a8b05e487e7d3212c132911d5025193d4a7d984aebef94177dee42acf958c11a18b99fd13e872a771e8'
-
'5490363e8c5b063dad7809d0616fd85890483790bfc19b6259c06c06a68a6300b99eab09e2cf43e1a8c527c63ad80d9921cf39c360c5ad14a177bf63a998ef72')
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'dcc0004ffdb7f73899dcb70e233608c24346599286af5bbfb36f603e3c51208f1a474e92a9aa4e4fd70c3eee9a5d259e97c813aa55d179e499e139b630b418d3'
+
'8aa10a47c3217e5bf12bb40a02828bb75cb38e4b5b124a8b05e487e7d3212c132911d5025193d4a7d984aebef94177dee42acf958c11a18b99fd13e872a771e8')
+validpgpkeys=('8777AB8F778EE89487A2F8E7F4ACA0183641E010') # luigi 

 
 prepare() {
   cd "${pkgname}"
-  patch -Np1 < ../fix-qt5_15_1-build.patch
+  patch -Np1 < ../6ed536982953d870010d8fa065dccbffeb6cae50.patch
   git submodule init
   git config submodule.monero.url "$srcdir/monero"
   git submodule update
+  cd monero
+  git config submodule.external/unbound.url "$srcdir/unbound"
+  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
+  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
+  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
+  git config submodule.external/randomx.url "$srcdir/randomx"
+  git config submodule.external/supercop.url "$srcdir/supercop"
+  git submodule update
 }
 
 build() {
   cd "${pkgname}"
-  ARCH=default QT_SELECT=5 ./build.sh
+  ARCH=default make release
 }
 
 package() {


[arch-commits] Commit in vhba-module/repos (4 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:53
  Author: heftig
Revision: 723758

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 723751, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 723752, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   54 ++
 dkms.conf |9 +
 3 files changed, 64 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
723751, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-10-12 21:40:53 UTC (rev 
723758)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 723751, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:53 UTC (rev 723758)
@@ -0,0 +1,54 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=78
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('59a3208a7b8fcf1bb03bd4d352ec89d06a8b6b84db325e31b0863b209dde3483'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

[arch-commits] Commit in deepin-anything-arch/repos (3 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:53
  Author: heftig
Revision: 723759

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 723751, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, deepin-anything-arch/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   40 
 PKGBUILD |   36 
 2 files changed, 76 insertions(+)

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 723751, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-10-12 21:40:53 UTC 
(rev 723759)
@@ -0,0 +1,40 @@
+diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
+index 6a0e334..e25faf4 100644
+--- a/kernelmod/vfs_change.c
 b/kernelmod/vfs_change.c
+@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, 
char* buf, size_t size)
+   ))
+   continue;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+   time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#else
++  time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#endif
+   struct tm ts;
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
+   time_to_tm(shifted_secs, 0, );
+@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned 
int cmd, unsigned long
+   }
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+ static struct file_operations procfs_ops = {
+   .owner = THIS_MODULE,
+   .open = open_vfs_changes,
+@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
+   //.llseek = generic_file_llseek,
+   .release = release_vfs_changes,
+ };
++#else
++static struct proc_ops procfs_ops = {
++  .proc_open = open_vfs_changes,
++  .proc_read = read_vfs_changes,
++  .proc_ioctl = ioctl_vfs_changes,
++  .proc_lseek = no_llseek,
++  .proc_release = release_vfs_changes,
++};
++#endif
+ 
+ int __init init_vfs_changes(void)
+ {

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
723751, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:53 UTC (rev 723759)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=115
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;
+'0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+
'5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  patch -Np1 < ../0001-linux-5.6.patch
+}
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

[arch-commits] Commit in netfilter-fullconenat/repos (4 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:51
  Author: heftig
Revision: 723755

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/Kbuild
(from rev 723751, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 723751, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

+
 Kbuild |1 +
 PKGBUILD   |   41 +
 netfilter-fullconenat.conf |1 +
 3 files changed, 43 insertions(+)

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
723751, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-10-12 21:40:51 UTC (rev 723755)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
723751, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:51 UTC (rev 723755)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=54
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+source=("netfilter-fullconenat.conf" Kbuild
+
"${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat.git;)
+sha256sums=('a17dfdf1fd046219daeacc60065e3a81c80c2eb2cfdf6d8068278c509577f571'
+'7ff12ad066a68c65f23fc7e01654ca459ce3458172e3dce30f42553fa44dd7c2'
+'SKIP')
+
+pkgver() {
+  cd "$srcdir/${pkgname}"
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+build() {
+  cd $pkgname
+  ln -s ../Kbuild
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  # Install modules-load.conf
+  install -Dm644 netfilter-fullconenat.conf 
"${pkgdir}/usr/lib/modules-load.d/netfilter-fullconenat.conf"
+
+  install -Dt 
"${pkgdir}/usr/lib/modules/$(

[arch-commits] Commit in acpi_call/repos (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:55
  Author: heftig
Revision: 723760

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 723759, acpi_call/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 723759, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:55 UTC (rev 723760)
@@ -0,0 +1,59 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=354
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

[arch-commits] Commit in linux/repos (4 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:59
  Author: heftig
Revision: 398087

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 398086, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 398086, linux/trunk/config)
  linux/repos/testing-x86_64/sphinx-workaround.patch
(from rev 398086, linux/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |11079 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11291 insertions(+)

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


[arch-commits] Commit in nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:56
  Author: heftig
Revision: 398086

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 398085, nvidia/trunk/PKGBUILD)

--+
 PKGBUILD |   45 +
 1 file changed, 45 insertions(+)

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 398085, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-10-12 21:40:56 UTC (rev 398086)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=455.28
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in broadcom-wl/repos (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:51
  Author: heftig
Revision: 723754

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl/repos/community-testing-x86_64/
  broadcom-wl/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, broadcom-wl/trunk/PKGBUILD)

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 723751, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:51 UTC (rev 723754)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=235
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

[arch-commits] Commit in bbswitch/repos (4 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:52
  Author: heftig
Revision: 723756

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 723751, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 723751, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 723752, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 723751, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2020-10-12 21:40:52 UTC 
(rev 723756)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = _pm_handler

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
723751, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2020-10-12 21:40:52 UTC 
(rev 723756)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 723752, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:52 UTC (rev 723756)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=355
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

[arch-commits] Commit in r8168/repos (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:52
  Author: heftig
Revision: 723757

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 723753, r8168/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 723753, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:52 UTC (rev 723757)
@@ -0,0 +1,38 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=34
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

[arch-commits] Commit in virtualbox/repos (31 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:13
  Author: heftig
Revision: 723751

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox/repos/community-testing-x86_64/
  virtualbox/repos/community-testing-x86_64/001-disable-update.patch
(from rev 723749, virtualbox/trunk/001-disable-update.patch)
  virtualbox/repos/community-testing-x86_64/005-gsoap-build.patch
(from rev 723749, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-testing-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 723749, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-testing-x86_64/008-no-vboxvideo.patch
(from rev 723749, virtualbox/trunk/008-no-vboxvideo.patch)
  
virtualbox/repos/community-testing-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
(from rev 723749, 
virtualbox/trunk/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch)
  virtualbox/repos/community-testing-x86_64/013-Makefile.patch
(from rev 723749, virtualbox/trunk/013-Makefile.patch)
  
virtualbox/repos/community-testing-x86_64/016-VBoxServiceAutoMount-Change-Linux-mount-code-to-use-.patch
(from rev 723749, 
virtualbox/trunk/016-VBoxServiceAutoMount-Change-Linux-mount-code-to-use-.patch)
  virtualbox/repos/community-testing-x86_64/017-fix-narrowing-conversion.patch
(from rev 723749, virtualbox/trunk/017-fix-narrowing-conversion.patch)
  virtualbox/repos/community-testing-x86_64/018-xclient.patch
(from rev 723749, virtualbox/trunk/018-xclient.patch)
  virtualbox/repos/community-testing-x86_64/020-gsoap.patch
(from rev 723749, virtualbox/trunk/020-gsoap.patch)
  virtualbox/repos/community-testing-x86_64/021-kernel-5.9.patch
(from rev 723749, virtualbox/trunk/021-kernel-5.9.patch)
  virtualbox/repos/community-testing-x86_64/60-vboxdrv.rules
(from rev 723749, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-testing-x86_64/60-vboxguest.rules
(from rev 723749, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-testing-x86_64/LocalConfig.kmk
(from rev 723749, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-testing-x86_64/PKGBUILD
(from rev 723750, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-testing-x86_64/build.sh
(from rev 723750, virtualbox/trunk/build.sh)
  virtualbox/repos/community-testing-x86_64/vboxdrmclient.path
(from rev 723750, virtualbox/trunk/vboxdrmclient.path)
  virtualbox/repos/community-testing-x86_64/vboxdrmclient.service
(from rev 723750, virtualbox/trunk/vboxdrmclient.service)
  virtualbox/repos/community-testing-x86_64/vboxreload
(from rev 723750, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-testing-x86_64/vboxservice-nox.service
(from rev 723750, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-testing-x86_64/vboxservice.service
(from rev 723750, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-testing-x86_64/vboxweb.service
(from rev 723750, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-testing-x86_64/virtualbox-ext-vnc.install
(from rev 723750, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-testing-x86_64/virtualbox-guest-dkms.install
(from rev 723750, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-testing-x86_64/virtualbox-guest-utils.sysusers
(from rev 723750, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-testing-x86_64/virtualbox-host-dkms.conf
(from rev 723750, virtualbox/trunk/virtualbox-host-dkms.conf)
  virtualbox/repos/community-testing-x86_64/virtualbox-host-dkms.install
(from rev 723750, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-testing-x86_64/virtualbox-vboxsf-dkms.conf
(from rev 723750, virtualbox/trunk/virtualbox-vboxsf-dkms.conf)
  virtualbox/repos/community-testing-x86_64/virtualbox.install
(from rev 723750, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-testing-x86_64/virtualbox.sysusers
(from rev 723750, virtualbox/trunk/virtualbox.sysusers)

+
 001-disable-update.patch   |   13 
 005-gsoap-build.patch  |   11 
 006-rdesktop-vrdp-keymap-path.patch|   12 
 008-no-vboxvideo.patch |   12 
 012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch|   14 
 013-Makefile.patch |   44 +
 016-VBoxServiceAutoMount-Change-Linux-mount-code-to-use-.patch |  189 
 017-fix-narrowing-conversion.patch |   37 
 018-xclient.patch  |   24 
 020-gsoap.patch|   13 
 021-kernel-5.9.patch  

[arch-commits] Commit in tp_smapi/repos (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:50
  Author: heftig
Revision: 723753

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, tp_smapi/trunk/PKGBUILD)

--+
 PKGBUILD |   48 
 1 file changed, 48 insertions(+)

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 723751, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:50 UTC (rev 723753)
@@ -0,0 +1,48 @@
+# 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.43
+pkgrel=242
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

[arch-commits] Commit in virtualbox-host-modules-arch/repos (2 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:50
  Author: heftig
Revision: 723752

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox-host-modules-arch/repos/community-testing-x86_64/
  virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 723751, virtualbox-host-modules-arch/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 723751, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 21:40:50 UTC (rev 723752)
@@ -0,0 +1,38 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.14
+pkgrel=10
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

[arch-commits] Commit in broadcom-wl/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:39:19
  Author: heftig
Revision: 723749

6.30.223.271-235: linux 5.9.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 1 insertion(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:39:06 UTC (rev 723748)
+++ PKGBUILD2020-10-12 21:39:19 UTC (rev 723749)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=234
+pkgrel=235
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -39,23 +39,3 @@
 install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
 fi
 }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-


[arch-commits] Commit in broadcom-wl-dkms/repos (16 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:40:03
  Author: heftig
Revision: 723750

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl-dkms/repos/community-testing-x86_64/
  broadcom-wl-dkms/repos/community-testing-x86_64/001-null-pointer-fix.patch
(from rev 723749, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/002-rdtscl.patch
(from rev 723749, broadcom-wl-dkms/trunk/002-rdtscl.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/003-linux47.patch
(from rev 723749, broadcom-wl-dkms/trunk/003-linux47.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/004-linux48.patch
(from rev 723749, broadcom-wl-dkms/trunk/004-linux48.patch)
  
broadcom-wl-dkms/repos/community-testing-x86_64/005-debian-fix-kernel-warnings.patch
(from rev 723749, 
broadcom-wl-dkms/trunk/005-debian-fix-kernel-warnings.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/006-linux411.patch
(from rev 723749, broadcom-wl-dkms/trunk/006-linux411.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/007-linux412.patch
(from rev 723749, broadcom-wl-dkms/trunk/007-linux412.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/008-linux415.patch
(from rev 723749, broadcom-wl-dkms/trunk/008-linux415.patch)
  
broadcom-wl-dkms/repos/community-testing-x86_64/009-fix_mac_profile_discrepancy.patch
(from rev 723749, 
broadcom-wl-dkms/trunk/009-fix_mac_profile_discrepancy.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/010-linux56.patch
(from rev 723749, broadcom-wl-dkms/trunk/010-linux56.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/011-linux59.patch
(from rev 723749, broadcom-wl-dkms/trunk/011-linux59.patch)
  broadcom-wl-dkms/repos/community-testing-x86_64/PKGBUILD
(from rev 723749, broadcom-wl-dkms/trunk/PKGBUILD)
  broadcom-wl-dkms/repos/community-testing-x86_64/broadcom-wl-dkms.conf
(from rev 723749, broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf)
  broadcom-wl-dkms/repos/community-testing-x86_64/broadcom-wl-dkms.install
(from rev 723749, broadcom-wl-dkms/trunk/broadcom-wl-dkms.install)
  broadcom-wl-dkms/repos/community-testing-x86_64/dkms.conf.in
(from rev 723749, broadcom-wl-dkms/trunk/dkms.conf.in)

---+
 001-null-pointer-fix.patch|   27 +
 002-rdtscl.patch  |   22 
 003-linux47.patch |  109 +
 004-linux48.patch |   64 
 005-debian-fix-kernel-warnings.patch  |  161 
 006-linux411.patch|   27 +
 007-linux412.patch|   68 +
 008-linux415.patch|   46 +
 009-fix_mac_profile_discrepancy.patch |   14 ++
 010-linux56.patch |   55 ++
 011-linux59.patch |   36 +++
 PKGBUILD  |   70 +
 broadcom-wl-dkms.conf |8 +
 broadcom-wl-dkms.install  |   16 +++
 dkms.conf.in  |   15 ++
 15 files changed, 738 insertions(+)

Copied: 
broadcom-wl-dkms/repos/community-testing-x86_64/001-null-pointer-fix.patch 
(from rev 723749, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
===
--- community-testing-x86_64/001-null-pointer-fix.patch 
(rev 0)
+++ community-testing-x86_64/001-null-pointer-fix.patch 2020-10-12 21:40:03 UTC 
(rev 723750)
@@ -0,0 +1,27 @@
+Description: Fixing null pointer crash
+
+Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
+Bug-Ubuntu: https://launchpad.net/bugs/1415880
+Last-Update: 2015-08-18
+
+---
+ src/wl/sys/wl_linux.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
+index 860b935..295156f 100644
+--- a/src/wl/sys/wl_linux.c
 b/src/wl/sys/wl_linux.c
+@@ -2157,8 +2157,8 @@ wl_start(struct sk_buff *skb, struct net_device *dev)
+   wlif = WL_DEV_IF(dev);
+   wl = WL_INFO(dev);
+ 
++  skb->prev = NULL;
+   if (WL_ALL_PASSIVE_ENAB(wl) || (WL_RTR() && WL_CONFIG_SMP())) {
+-  skb->prev = NULL;
+ 
+   TXQ_LOCK(wl);
+ 
+-- 
+1.9.1
+

Copied: broadcom-wl-dkms/repos/community-testing-x86_64/002-rdtscl.patch (from 
rev 723749, broadcom-wl-dkms/trunk/002-rdtscl.patch)
===
--- community-testing-x86_64/002-rdtscl.patch   (rev 0)
+++ community-testing-x86_64/002-rdtscl.patch   2020-10-12 21:40:03 UTC (rev 
723750)
@@ -0,0 +1,22 @@
+Since Linux 4.3, rdtscl() is no longer available and native_read_tsc()
+is renamed to rdtsc(). Move the macro contents in-line and call the
+new function. References:
+

[arch-commits] Commit in broadcom-wl-dkms/trunk (3 files)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:39:06
  Author: heftig
Revision: 723748

6.30.223.271-23: add patch for linux 5.9

Added:
  broadcom-wl-dkms/trunk/011-linux59.patch
Modified:
  broadcom-wl-dkms/trunk/PKGBUILD
  broadcom-wl-dkms/trunk/dkms.conf.in

---+
 011-linux59.patch |   36 
 PKGBUILD  |8 
 dkms.conf.in  |1 +
 3 files changed, 41 insertions(+), 4 deletions(-)

Added: 011-linux59.patch
===
--- 011-linux59.patch   (rev 0)
+++ 011-linux59.patch   2020-10-12 21:39:06 UTC (rev 723748)
@@ -0,0 +1,36 @@
+diff -u -r a/src/wl/sys/wl_cfg80211_hybrid.c b/src/wl/sys/wl_cfg80211_hybrid.c
+--- a/src/wl/sys/wl_cfg80211_hybrid.c  2015-09-18 22:47:30.0 +
 b/src/wl/sys/wl_cfg80211_hybrid.c  2020-10-12 21:20:05.200372484 +
+@@ -450,7 +450,7 @@
+   ifr.ifr_data = (caddr_t)
+ 
+   fs = get_fs();
+-  set_fs(get_ds());
++  set_fs(KERNEL_DS);
+ #if defined(WL_USE_NETDEV_OPS)
+   err = dev->netdev_ops->ndo_do_ioctl(dev, , SIOCDEVPRIVATE);
+ #else
+diff -u -r a/src/wl/sys/wl_iw.c b/src/wl/sys/wl_iw.c
+--- a/src/wl/sys/wl_iw.c   2015-09-18 22:47:30.0 +
 b/src/wl/sys/wl_iw.c   2020-10-12 21:19:51.426836804 +
+@@ -117,7 +117,7 @@
+   ifr.ifr_data = (caddr_t) 
+ 
+   fs = get_fs();
+-  set_fs(get_ds());
++  set_fs(KERNEL_DS);
+ #if defined(WL_USE_NETDEV_OPS)
+   ret = dev->netdev_ops->ndo_do_ioctl(dev, , SIOCDEVPRIVATE);
+ #else
+diff -u -r a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
+--- a/src/wl/sys/wl_linux.c2020-10-12 21:19:15.256305165 +
 b/src/wl/sys/wl_linux.c2020-10-12 21:20:38.687530895 +
+@@ -1643,7 +1643,7 @@
+   goto done2;
+   }
+ 
+-  if (segment_eq(get_fs(), KERNEL_DS))
++  if (get_fs().seg == KERNEL_DS.seg)
+   buf = ioc.buf;
+ 
+   else if (ioc.buf) {

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:35:45 UTC (rev 723747)
+++ PKGBUILD2020-10-12 21:39:06 UTC (rev 723748)
@@ -6,7 +6,7 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=22
+pkgrel=23
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=(x86_64)
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -26,9 +26,10 @@
 '008-linux415.patch'
 '009-fix_mac_profile_discrepancy.patch'
 '010-linux56.patch'
+'011-linux59.patch'
 
"https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-${pkgver//./_}.tar.gz;)
 sha256sums=('b97bc588420d1542f73279e71975ccb5d81d75e534e7b5717e01d6e6adf6a283'
-'7edf519dad569ac121996addb8cfbd513337bc5a856ac47393265d078f6e5b90'
+'4bcd3db9008e1bd615788a5a9c8d040d303135cb9d9ff88379a5ec32691e0573'
 '32e505a651fdb9fd5e4870a9d6de21dd703dead768c2b3340a2ca46671a5852f'
 '4ea03f102248beb8963ad00bd3e36e67519a90fa39244db065e74038c98360dd'
 '30ce1d5e8bf78aee487d0f3ac76756e1060777f70ed1a9cf95215c3a52cfbe2e'
@@ -39,6 +40,7 @@
 '08c24157cf3b93b60e67e600d1d90223447361990df09acfb00281d79813d167'
 '4e73e50653bb612946edd34bf31ca5a0b80f632d47a08766ae6042880927c98d'
 'f1300bcce93363088481671150ff2bbd6957e12ba11098980b9f428c7a171812'
+'8983c8ae73ad5853a37d98aa42bed1c52a2bd27d0d4991283cf92010cab22212'
 '5f79774d5beec8f7636b59c0fb07a03108eef1e3fd3245638b20858c714144be')
 
 prepare() {
@@ -46,8 +48,6 @@
   sed -i -e "/EXTRA_LDFLAGS/s|\$(src)/lib|/usr/lib/$pkgname|" Makefile
   sed -e "s/@PACKAGE_VERSION@/$pkgver/" dkms.conf.in > dkms.conf
   sed -n -e '/Copyright/,/SOFTWARE\./{s/^ \* //;p}' src/wl/sys/wl_linux.c
-  sed -i 's/get_ds()/KERNEL_DS/g' src/wl/sys/wl_iw.c
-  sed -i 's/get_ds()/KERNEL_DS/g' src/wl/sys/wl_cfg80211_hybrid.c
   sed -i '/GE_49 :=/s|:= .*|:= 1|' Makefile
 }
 

Modified: dkms.conf.in
===
--- dkms.conf.in2020-10-12 21:35:45 UTC (rev 723747)
+++ dkms.conf.in2020-10-12 21:39:06 UTC (rev 723748)
@@ -11,4 +11,5 @@
 PATCH[6]="007-linux412.patch"
 PATCH[7]="008-linux415.patch"
 PATCH[8]="010-linux56.patch"
+PATCH[9]="011-linux59.patch"
 AUTOINSTALL="yes"


[arch-commits] Commit in bpftrace/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Anatol Pomozov via arch-commits
Date: Monday, October 12, 2020 @ 21:35:45
  Author: anatolik
Revision: 723747

archrelease: copy trunk to community-x86_64

Added:
  bpftrace/repos/community-x86_64/PKGBUILD
(from rev 723746, bpftrace/trunk/PKGBUILD)
Deleted:
  bpftrace/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 21:35:26 UTC (rev 723746)
+++ PKGBUILD2020-10-12 21:35:45 UTC (rev 723747)
@@ -1,30 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Tommaso Sardelli 
-
-pkgname=bpftrace
-pkgver=0.11.0
-pkgrel=2
-pkgdesc='High-level tracing language for Linux eBPF'
-arch=('x86_64')
-url='https://github.com/iovisor/bpftrace'
-license=('Apache')
-depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc')
-makedepends=('cmake' 'llvm' 'git')
-optdepends=('libbpf: BTF support - required at compile time')
-source=("https://github.com/iovisor/bpftrace/archive/v${pkgver}.tar.gz;)
-sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
-
-build() {
-  cd bpftrace-$pkgver
-
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
-  make
-}
-
-package() {
-  cd bpftrace-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bpftrace/repos/community-x86_64/PKGBUILD (from rev 723746, 
bpftrace/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 21:35:45 UTC (rev 723747)
@@ -0,0 +1,30 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Tommaso Sardelli 
+
+pkgname=bpftrace
+pkgver=0.11.0
+pkgrel=3
+pkgdesc='High-level tracing language for Linux eBPF'
+arch=('x86_64')
+url='https://github.com/iovisor/bpftrace'
+license=('Apache')
+depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
+makedepends=('cmake' 'llvm' 'git')
+optdepends=('libbpf: BTF support - required at compile time')
+source=("https://github.com/iovisor/bpftrace/archive/v${pkgver}.tar.gz;)
+sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
+
+build() {
+  cd bpftrace-$pkgver
+
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
+  make
+}
+
+package() {
+  cd bpftrace-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2020-10-12 Thread Anatol Pomozov via arch-commits
Date: Monday, October 12, 2020 @ 21:35:26
  Author: anatolik
Revision: 723746

upgpkg: bpftrace 0.11.0-3: FS#68228: enable libbpf support

Modified:
  bpftrace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:23:12 UTC (rev 723745)
+++ PKGBUILD2020-10-12 21:35:26 UTC (rev 723746)
@@ -3,12 +3,12 @@
 
 pkgname=bpftrace
 pkgver=0.11.0
-pkgrel=2
+pkgrel=3
 pkgdesc='High-level tracing language for Linux eBPF'
 arch=('x86_64')
 url='https://github.com/iovisor/bpftrace'
 license=('Apache')
-depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc')
+depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
 makedepends=('cmake' 'llvm' 'git')
 optdepends=('libbpf: BTF support - required at compile time')
 source=("https://github.com/iovisor/bpftrace/archive/v${pkgver}.tar.gz;)


[arch-commits] Commit in virtualbox/trunk (021-kernel-5.9.patch PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:23:12
  Author: heftig
Revision: 723745

6.1.14-2: add patch for linux 5.9

Added:
  virtualbox/trunk/021-kernel-5.9.patch
Modified:
  virtualbox/trunk/PKGBUILD

--+
 021-kernel-5.9.patch |  189 +
 PKGBUILD |8 +-
 2 files changed, 194 insertions(+), 3 deletions(-)

Added: 021-kernel-5.9.patch
===
--- 021-kernel-5.9.patch(rev 0)
+++ 021-kernel-5.9.patch2020-10-12 21:23:12 UTC (rev 723745)
@@ -0,0 +1,189 @@
+This patch file contains the changes needed to compile the VirtualBox
+modules for kernel 5.9.0+.
+
+The changes are as follows:
+1. The kernel headers no longer define HAVE_UNLOCKED_IOCTL; however,
+   this symbol is needed for compilation of VB.
+2. The calling sequence for get_user_pages_remote() is changed.
+3. Routine sched_setscheduler() is replaced by sched_set_fifo_low().
+4. The type of vbox_master_set() is changed from int to void.
+5. Routine drm_gem_object_put_unlocked() is replaced by drm_gem_object_put().
+6. Member offset is removed from struct ttm_buffer_object.
+
+Index: VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
 VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
+@@ -137,7 +137,10 @@
+ #include 
+ #include 
+ #include 
+-#ifndef HAVE_UNLOCKED_IOCTL /* linux/fs.h defines this */
++#if RTLNX_VER_MIN(5, 9, 0)
++#define HAVE_UNLOCKED_IOCTL 1 /* defined in linux/fs.h for kernels before 5.9 
*/
++#endif
++#ifndef HAVE_UNLOCKED_IOCTL
+ # include 
+ #endif
+ /* For the shared folders module */
+Index: VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
 VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
+@@ -1181,7 +1181,9 @@ DECLHIDDEN(int) rtR0MemObjNativeLockUser
+  */
+ else
+ rc = get_user_pages_remote(
++#ifRTLNX_VER_MAX(5, 9, 0)
+ pTask,  /* Task for fault 
accounting. */
++#endif
+ pTask->mm,  /* Whose pages. */
+ R3Ptr,  /* Where from. */
+ cPages, /* How many pages. */
+Index: VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
 VirtualBox-6.1.14/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
+@@ -92,8 +92,12 @@ DECLHIDDEN(int) rtThreadNativeSetPriorit
+ return VERR_INVALID_PARAMETER;
+ }
+ 
++#if RTLNX_VER_MAX(5, 9, 0)
+ sched_setscheduler(current, iSchedClass, );
+ #else
++sched_set_fifo_low(current);
++#endif
++#else
+ RT_NOREF_PV(enmType);
+ #endif
+ RT_NOREF_PV(pThread);
+Index: VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_drv.c
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Additions/linux/drm/vbox_drv.c
 VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_drv.c
+@@ -262,8 +262,13 @@ static const struct file_operations vbox
+   .read = drm_read,
+ };
+ 
++#if RTLNX_VER_MAX(5, 9, 0)
+ static int vbox_master_set(struct drm_device *dev,
+  struct drm_file *file_priv, bool from_open)
++#else
++static void vbox_master_set(struct drm_device *dev,
++  struct drm_file *file_priv, bool from_open)
++#endif
+ {
+   struct vbox_private *vbox = dev->dev_private;
+ 
+Index: VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_fb.c
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Additions/linux/drm/vbox_fb.c
 VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_fb.c
+@@ -405,7 +405,11 @@ void vbox_fbdev_fini(struct drm_device *
+   vbox_bo_unpin(bo);
+   vbox_bo_unreserve(bo);
+   }
++#if RTLNX_VER_MIN(5, 9, 0)
++  drm_gem_object_put(afb->obj);
++#else
+   drm_gem_object_put_unlocked(afb->obj);
++#endif
+   afb->obj = NULL;
+   }
+   drm_fb_helper_fini(>helper);
+Index: VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_main.c
+===
+--- VirtualBox-6.1.14.orig/src/VBox/Additions/linux/drm/vbox_main.c
 VirtualBox-6.1.14/src/VBox/Additions/linux/drm/vbox_main.c
+@@ -40,14 +40,19 @@
+ #include 
+ 
+ #include "hgsmi_channels.h"
++#include 

[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:22:16
  Author: heftig
Revision: 723744

6.1.14-10: linux 5.9.arch1-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

--+
 PKGBUILD |   20 +---
 1 file changed, 1 insertion(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:17:07 UTC (rev 723743)
+++ PKGBUILD2020-10-12 21:22:16 UTC (rev 723744)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.14
-pkgrel=9
+pkgrel=10
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'
@@ -36,21 +36,3 @@
   printf '%s\n' vboxdrv vboxnetadp vboxnetflt |
 install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
 }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-


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

2020-10-12 Thread David Runge via arch-commits
Date: Monday, October 12, 2020 @ 21:17:00
  Author: dvzrv
Revision: 723742

upgpkg: libwebsockets 4.1.3-1: Upgrade to 4.1.3.

Modified:
  libwebsockets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:11 UTC (rev 723741)
+++ PKGBUILD2020-10-12 21:17:00 UTC (rev 723742)
@@ -3,7 +3,7 @@
 # Contributor: Jingbei Li 
 
 pkgname=libwebsockets
-pkgver=4.1.2
+pkgver=4.1.3
 pkgrel=1
 pkgdesc="C library for websocket clients and servers"
 arch=('x86_64')
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'glib2' 'libcap')
 provides=('libwebsockets.so')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/warmcat/libwebsockets/archive/v$pkgver.tar.gz;)
-sha512sums=('1aeb105191191c55eb01f0cf565d7d16e32e8239af3a3ee653dfb4b5dfc42302490dfbdeac9c9cab0759e016a4a1c8c05938f26ce62a024e0d50600cdd86')
-b2sums=('9b65217d799ffa6637dc79630224f3ec9e8c7e8075b7eebfc55a111d9ade534b912059c170bc4f435d2d8424340d5ccda75f3a8992a45ef128ea82bfc789391f')
+sha512sums=('33b23aaecb85c2bf87dce04fc16c6d8b08520d6273d94debfd9e9a7660501254d9dacd2a570d160dfa8bbadf28ccee43938be15ed7309f733a4f4720c1d3a41b')
+b2sums=('31913cb1f4d77618c9f9686e7355dbcc67bed56e8d5ea145ac948bc28e3a99ba4907f428260e2b9221f9cbefd46ceb9fd37aae5e5797ecd0137e4c63dcd255c9')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in libwebsockets/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread David Runge via arch-commits
Date: Monday, October 12, 2020 @ 21:17:07
  Author: dvzrv
Revision: 723743

archrelease: copy trunk to community-x86_64

Added:
  libwebsockets/repos/community-x86_64/PKGBUILD
(from rev 723742, libwebsockets/trunk/PKGBUILD)
Deleted:
  libwebsockets/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 21:17:00 UTC (rev 723742)
+++ PKGBUILD2020-10-12 21:17:07 UTC (rev 723743)
@@ -1,61 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: David Runge 
-# Contributor: Jingbei Li 
-
-pkgname=libwebsockets
-pkgver=4.1.2
-pkgrel=1
-pkgdesc="C library for websocket clients and servers"
-arch=('x86_64')
-url="https://libwebsockets.org;
-license=('MIT')
-depends=('glibc' 'openssl' 'libuv' 'libev' 'zlib')
-makedepends=('cmake' 'glib2' 'libcap')
-provides=('libwebsockets.so')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/warmcat/libwebsockets/archive/v$pkgver.tar.gz;)
-sha512sums=('1aeb105191191c55eb01f0cf565d7d16e32e8239af3a3ee653dfb4b5dfc42302490dfbdeac9c9cab0759e016a4a1c8c05938f26ce62a024e0d50600cdd86')
-b2sums=('9b65217d799ffa6637dc79630224f3ec9e8c7e8075b7eebfc55a111d9ade534b912059c170bc4f435d2d8424340d5ccda75f3a8992a45ef128ea82bfc789391f')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cmake -D CMAKE_INSTALL_PREFIX=/usr \
--D CMAKE_BUILD_TYPE='None' \
--D LWS_WITH_HTTP2=ON \
--D LWS_IPV6=ON \
--D LWS_WITH_GLIB=ON \
--D LWS_WITH_ZIP_FOPS=ON \
--D LWS_WITH_SOCKS5=ON \
--D LWS_WITH_RANGES=ON \
--D LWS_WITH_ACME=ON \
--D LWS_WITH_LIBUV=ON \
--D LWS_WITH_LIBEV=ON \
--D LWS_WITH_LIBEVENT=OFF \
--D LWS_WITH_FTS=ON \
--D LWS_WITH_THREADPOOL=ON \
--D LWS_UNIX_SOCK=ON \
--D LWS_WITH_HTTP_PROXY=ON \
--D LWS_WITH_DISKCACHE=ON \
--D LWS_WITH_LWSAC=ON \
--D LWS_LINK_TESTAPPS_DYNAMIC=ON \
--D LWS_WITHOUT_BUILTIN_GETIFADDRS=ON \
--D LWS_WITHOUT_BUILTIN_SHA1=ON \
--D LWS_WITH_STATIC=OFF \
--D LWS_WITHOUT_CLIENT=OFF \
--D LWS_WITHOUT_SERVER=OFF \
--D LWS_WITHOUT_TESTAPPS=ON \
--D LWS_WITHOUT_TEST_SERVER=OFF \
--D LWS_WITHOUT_TEST_SERVER_EXTPOLL=ON \
--D LWS_WITHOUT_TEST_PING=ON \
--D LWS_WITHOUT_TEST_CLIENT=ON \
--Wno-dev \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=('libcap.so' 'libglib-2.0.so')
-  cd "$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: libwebsockets/repos/community-x86_64/PKGBUILD (from rev 723742, 
libwebsockets/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 21:17:07 UTC (rev 723743)
@@ -0,0 +1,61 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: David Runge 
+# Contributor: Jingbei Li 
+
+pkgname=libwebsockets
+pkgver=4.1.3
+pkgrel=1
+pkgdesc="C library for websocket clients and servers"
+arch=('x86_64')
+url="https://libwebsockets.org;
+license=('MIT')
+depends=('glibc' 'openssl' 'libuv' 'libev' 'zlib')
+makedepends=('cmake' 'glib2' 'libcap')
+provides=('libwebsockets.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/warmcat/libwebsockets/archive/v$pkgver.tar.gz;)
+sha512sums=('33b23aaecb85c2bf87dce04fc16c6d8b08520d6273d94debfd9e9a7660501254d9dacd2a570d160dfa8bbadf28ccee43938be15ed7309f733a4f4720c1d3a41b')
+b2sums=('31913cb1f4d77618c9f9686e7355dbcc67bed56e8d5ea145ac948bc28e3a99ba4907f428260e2b9221f9cbefd46ceb9fd37aae5e5797ecd0137e4c63dcd255c9')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_BUILD_TYPE='None' \
+-D LWS_WITH_HTTP2=ON \
+-D LWS_IPV6=ON \
+-D LWS_WITH_GLIB=ON \
+-D LWS_WITH_ZIP_FOPS=ON \
+-D LWS_WITH_SOCKS5=ON \
+-D LWS_WITH_RANGES=ON \
+-D LWS_WITH_ACME=ON \
+-D LWS_WITH_LIBUV=ON \
+-D LWS_WITH_LIBEV=ON \
+-D LWS_WITH_LIBEVENT=OFF \
+-D LWS_WITH_FTS=ON \
+-D LWS_WITH_THREADPOOL=ON \
+-D LWS_UNIX_SOCK=ON \
+-D LWS_WITH_HTTP_PROXY=ON \
+-D LWS_WITH_DISKCACHE=ON \
+-D LWS_WITH_LWSAC=ON \
+-D LWS_LINK_TESTAPPS_DYNAMIC=ON \
+-D LWS_WITHOUT_BUILTIN_GETIFADDRS=ON \
+-D LWS_WITHOUT_BUILTIN_SHA1=ON \
+-D LWS_WITH_STATIC=OFF \
+-D LWS_WITHOUT_CLIENT=OFF \
+-D LWS_WITHOUT_SERVER=OFF \
+-D LWS_WITHOUT_TESTAPPS=ON \
+-D LWS_WITHOUT_TEST_SERVER=OFF \
+-D LWS_WITHOUT_TEST_SERVER_EXTPOLL=ON \
+-D LWS_WITHOUT_TEST_PING=ON \
+-D LWS_WITHOUT_TEST_CLIENT=ON \
+-Wno-dev \
+-B build \
+-S 

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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:09
  Author: heftig
Revision: 398085

455.28-6: linux 5.9.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:06:00 UTC (rev 398084)
+++ PKGBUILD2020-10-12 21:09:09 UTC (rev 398085)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=455.28
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;
@@ -42,3 +42,4 @@
 
 
 
+


[arch-commits] Commit in vhba-module/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:07
  Author: heftig
Revision: 723739

20200106-78: linux 5.9.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:05 UTC (rev 723738)
+++ PKGBUILD2020-10-12 21:09:07 UTC (rev 723739)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=77
+pkgrel=78
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:03
  Author: heftig
Revision: 723736

0.43-242: linux 5.9.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:01 UTC (rev 723735)
+++ PKGBUILD2020-10-12 21:09:03 UTC (rev 723736)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=241
+pkgrel=242
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:04
  Author: heftig
Revision: 723737

0.8-355: linux 5.9.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:03 UTC (rev 723736)
+++ PKGBUILD2020-10-12 21:09:04 UTC (rev 723737)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=354
+pkgrel=355
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:05
  Author: heftig
Revision: 723738

8.048.03-34: linux 5.9.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:04 UTC (rev 723737)
+++ PKGBUILD2020-10-12 21:09:05 UTC (rev 723738)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=33
+pkgrel=34
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in deepin-anything-arch/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:11
  Author: heftig
Revision: 723741

5.0.1-115: linux 5.9.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:08 UTC (rev 723740)
+++ PKGBUILD2020-10-12 21:09:11 UTC (rev 723741)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=114
+pkgrel=115
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:08
  Author: heftig
Revision: 723740

1.1.0-354: linux 5.9.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 21:09:07 UTC (rev 723739)
+++ PKGBUILD2020-10-12 21:09:08 UTC (rev 723740)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=353
+pkgrel=354
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')
@@ -56,3 +56,4 @@
 
 
 
+


[arch-commits] Commit in netfilter-fullconenat/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:09:01
  Author: heftig
Revision: 723735

r73.0cf3b48-54: linux 5.9.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:56:30 UTC (rev 723734)
+++ PKGBUILD2020-10-12 21:09:01 UTC (rev 723735)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=53
+pkgrel=54
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;


[arch-commits] Commit in linux/trunk (PKGBUILD config)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 21:06:00
  Author: heftig
Revision: 398084

5.9.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 -
 config   |  164 ++---
 2 files changed, 115 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 19:58:31 UTC (rev 398083)
+++ PKGBUILD2020-10-12 21:06:00 UTC (rev 398084)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.8.14.arch1
+pkgver=5.9.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'40c80a5e6ef76702021abd10e5a9bf07c68530cb2c4868154c1b5adf4bf3b917'
+'36439a90c9d2f860298d90e141f3bf9d897dd8ece9e21cd46508f4ed7b2151bb'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-10-12 19:58:31 UTC (rev 398083)
+++ config  2020-10-12 21:06:00 UTC (rev 398084)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.8.14-arch1 Kernel Configuration
+# Linux/x86 5.9.0-arch1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y
@@ -29,12 +29,14 @@
 CONFIG_HAVE_KERNEL_XZ=y
 CONFIG_HAVE_KERNEL_LZO=y
 CONFIG_HAVE_KERNEL_LZ4=y
+CONFIG_HAVE_KERNEL_ZSTD=y
 # CONFIG_KERNEL_GZIP is not set
 # CONFIG_KERNEL_BZIP2 is not set
 # CONFIG_KERNEL_LZMA is not set
-CONFIG_KERNEL_XZ=y
+# CONFIG_KERNEL_XZ is not set
 # CONFIG_KERNEL_LZO is not set
 # CONFIG_KERNEL_LZ4 is not set
+CONFIG_KERNEL_ZSTD=y
 CONFIG_DEFAULT_INIT=""
 CONFIG_DEFAULT_HOSTNAME="archlinux"
 CONFIG_SWAP=y
@@ -80,6 +82,8 @@
 CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
 CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
 CONFIG_GENERIC_CMOS_UPDATE=y
+CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y
+CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y
 
 #
 # Timers subsystem
@@ -106,7 +110,6 @@
 # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
 CONFIG_IRQ_TIME_ACCOUNTING=y
 CONFIG_HAVE_SCHED_AVG_IRQ=y
-# CONFIG_SCHED_THERMAL_PRESSURE is not set
 CONFIG_BSD_PROCESS_ACCT=y
 CONFIG_BSD_PROCESS_ACCT_V3=y
 CONFIG_TASKSTATS=y
@@ -207,6 +210,7 @@
 CONFIG_RD_XZ=y
 CONFIG_RD_LZO=y
 CONFIG_RD_LZ4=y
+CONFIG_RD_ZSTD=y
 CONFIG_BOOT_CONFIG=y
 CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
@@ -541,7 +545,6 @@
 CONFIG_ACPI_SPCR_TABLE=y
 CONFIG_ACPI_LPIT=y
 CONFIG_ACPI_SLEEP=y
-# CONFIG_ACPI_PROCFS_POWER is not set
 CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
 CONFIG_ACPI_EC_DEBUGFS=y
 CONFIG_ACPI_AC=m
@@ -745,6 +748,7 @@
 CONFIG_KVM_COMPAT=y
 CONFIG_HAVE_KVM_IRQ_BYPASS=y
 CONFIG_HAVE_KVM_NO_POLL=y
+CONFIG_KVM_XFER_TO_GUEST_WORK=y
 CONFIG_VIRTUALIZATION=y
 CONFIG_KVM=m
 CONFIG_KVM_WERROR=y
@@ -763,6 +767,7 @@
 CONFIG_CRASH_CORE=y
 CONFIG_KEXEC_CORE=y
 CONFIG_HOTPLUG_SMT=y
+CONFIG_GENERIC_ENTRY=y
 CONFIG_OPROFILE=m
 # CONFIG_OPROFILE_EVENT_MULTIPLEX is not set
 CONFIG_HAVE_OPROFILE=y
@@ -817,7 +822,6 @@
 CONFIG_SECCOMP_FILTER=y
 CONFIG_HAVE_ARCH_STACKLEAK=y
 CONFIG_HAVE_STACKPROTECTOR=y
-CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
 CONFIG_STACKPROTECTOR=y
 CONFIG_STACKPROTECTOR_STRONG=y
 CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
@@ -839,7 +843,6 @@
 CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
 CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
 CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
-CONFIG_HAVE_COPY_THREAD_TLS=y
 CONFIG_HAVE_STACK_VALIDATION=y
 CONFIG_HAVE_RELIABLE_STACKTRACE=y
 CONFIG_ISA_BUS_API=y
@@ -995,7 +998,6 @@
 CONFIG_SPARSEMEM_MANUAL=y
 CONFIG_SPARSEMEM=y
 CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
 CONFIG_SPARSEMEM_EXTREME=y
 CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
 CONFIG_SPARSEMEM_VMEMMAP=y
@@ -1194,8 +1196,8 @@
 CONFIG_IPV6_RPL_LWTUNNEL=y
 CONFIG_NETLABEL=y
 CONFIG_MPTCP=y
+CONFIG_INET_MPTCP_DIAG=m
 CONFIG_MPTCP_IPV6=y
-# CONFIG_MPTCP_HMAC_TEST is not set
 CONFIG_NETWORK_SECMARK=y
 CONFIG_NET_PTP_CLASSIFY=y
 CONFIG_NETWORK_PHY_TIMESTAMPING=y
@@ -1618,6 +1620,7 @@
 CONFIG_NET_DSA_TAG_EDSA=m
 CONFIG_NET_DSA_TAG_MTK=m
 CONFIG_NET_DSA_TAG_KSZ=m
+CONFIG_NET_DSA_TAG_RTL4_A=m
 CONFIG_NET_DSA_TAG_OCELOT=m
 CONFIG_NET_DSA_TAG_QCA=m
 CONFIG_NET_DSA_TAG_LAN9303=m
@@ -1698,6 +1701,7 @@
 # CONFIG_DEFAULT_FQ is not set
 # CONFIG_DEFAULT_CODEL is not set
 CONFIG_DEFAULT_FQ_CODEL=y
+# CONFIG_DEFAULT_FQ_PIE is not set
 # CONFIG_DEFAULT_SFQ is not set
 # CONFIG_DEFAULT_PFIFO_FAST is not set
 CONFIG_DEFAULT_NET_SCH="fq_codel"
@@ -2075,6 +2079,7 @@
 CONFIG_NET_DEVLINK=y
 CONFIG_PAGE_POOL=y
 CONFIG_FAILOVER=m
+CONFIG_ETHTOOL_NETLINK=y
 CONFIG_HAVE_EBPF_JIT=y
 
 #
@@ -2162,6 +2167,9 @@
 CONFIG_PCIE_CADENCE_PLAT=y
 CONFIG_PCIE_CADENCE_PLAT_HOST=y
 CONFIG_PCIE_CADENCE_PLAT_EP=y
+CONFIG_PCI_J721E=y
+CONFIG_PCI_J721E_HOST=y
+CONFIG_PCI_J721E_EP=y
 # end of Cadence PCIe 

[arch-commits] Commit in tmuxp/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread David Runge via arch-commits
Date: Monday, October 12, 2020 @ 20:56:30
  Author: dvzrv
Revision: 723734

archrelease: copy trunk to community-any

Added:
  tmuxp/repos/community-any/PKGBUILD
(from rev 723733, tmuxp/trunk/PKGBUILD)
Deleted:
  tmuxp/repos/community-any/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 20:54:43 UTC (rev 723733)
+++ PKGBUILD2020-10-12 20:56:30 UTC (rev 723734)
@@ -1,47 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=tmuxp
-pkgver=1.5.5
-pkgrel=1
-pkgdesc="Tmux session manager built on libtmux"
-arch=('any')
-url="https://tmuxp.git-pull.com/en/latest/;
-license=('MIT')
-depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
-checkdepends=('python-pytest' 'python-pytest-rerunfailures')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('afb82e20db9ab6c6ce1f1f2cc1ad959a5ede53999cb5ad6e20c376e239472e1389dca61221f41ea76e695db58732966b5b786783f51745f1f1b0f979a024787c')
-b2sums=('7f4c62ce27e422750e00d37c22b9d69eeb3f296c05775bf2ee90772144e8e7963e3fb93818f5fb13111a80d5e3177987cce7948a0122f5770ff5d66f2391d613')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # remove all hard version pinning:
-  # https://github.com/tmux-python/tmuxp/issues/432
-  sed -e 's/==/>=/g' -i requirements/*.txt
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # test_workspacebuilder.py::test_pane_order does not return:
-  # https://github.com/tmux-python/tmuxp/issues/377
-  pytest -v -k "not test_pane_order"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---root="${pkgdir}/"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {CHANGES,README.rst}
-}
-
-# vim:set ts=2 sw=2 et:}

Copied: tmuxp/repos/community-any/PKGBUILD (from rev 723733, 
tmuxp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 20:56:30 UTC (rev 723734)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+pkgname=tmuxp
+pkgver=1.5.6
+pkgrel=1
+pkgdesc="Tmux session manager built on libtmux"
+arch=('any')
+url="https://tmuxp.git-pull.com/en/latest/;
+license=('MIT')
+depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
+checkdepends=('python-pytest' 'python-pytest-rerunfailures')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a1e52a44c33fd3b0fdb79299ea97033514300b98d9f739f6cad7a843825b45a3e4b44bcd3fb1d4464e075e6045013a017026b90314aa07660ef97c8d0774fcd1')
+b2sums=('08e063fc39890e87dcc582a21de4217738367f7ffe7850befcd5494e2093232f1b8de9445bd5f51f90a4142900aed808bccbfe6b76e2a2d7f4f77faec8e8e0ed')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # remove all hard version pinning:
+  # https://github.com/tmux-python/tmuxp/issues/432
+  sed -e 's/==/>=/g' -i requirements/*.txt
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # test_workspacebuilder.py::test_pane_order does not return:
+  # https://github.com/tmux-python/tmuxp/issues/377
+  pytest -v -k "not test_pane_order"
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}/"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {CHANGES,README.rst}
+}
+
+# vim:set ts=2 sw=2 et:}


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

2020-10-12 Thread David Runge via arch-commits
Date: Monday, October 12, 2020 @ 20:54:43
  Author: dvzrv
Revision: 723733

upgpkg: tmuxp 1.5.6-1: Upgrade to 1.5.6.

Modified:
  tmuxp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:50:55 UTC (rev 723732)
+++ PKGBUILD2020-10-12 20:54:43 UTC (rev 723733)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=tmuxp
-pkgver=1.5.5
+pkgver=1.5.6
 pkgrel=1
 pkgdesc="Tmux session manager built on libtmux"
 arch=('any')
@@ -10,8 +10,8 @@
 depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 
'python-libtmux')
 checkdepends=('python-pytest' 'python-pytest-rerunfailures')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('afb82e20db9ab6c6ce1f1f2cc1ad959a5ede53999cb5ad6e20c376e239472e1389dca61221f41ea76e695db58732966b5b786783f51745f1f1b0f979a024787c')
-b2sums=('7f4c62ce27e422750e00d37c22b9d69eeb3f296c05775bf2ee90772144e8e7963e3fb93818f5fb13111a80d5e3177987cce7948a0122f5770ff5d66f2391d613')
+sha512sums=('a1e52a44c33fd3b0fdb79299ea97033514300b98d9f739f6cad7a843825b45a3e4b44bcd3fb1d4464e075e6045013a017026b90314aa07660ef97c8d0774fcd1')
+b2sums=('08e063fc39890e87dcc582a21de4217738367f7ffe7850befcd5494e2093232f1b8de9445bd5f51f90a4142900aed808bccbfe6b76e2a2d7f4f77faec8e8e0ed')
 
 prepare() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in python-pastedeploy/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Felix Yan via arch-commits
Date: Monday, October 12, 2020 @ 20:50:55
  Author: felixonmars
Revision: 723732

archrelease: copy trunk to community-any

Added:
  python-pastedeploy/repos/community-any/PKGBUILD
(from rev 723731, python-pastedeploy/trunk/PKGBUILD)
Deleted:
  python-pastedeploy/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 20:50:46 UTC (rev 723731)
+++ PKGBUILD2020-10-12 20:50:55 UTC (rev 723732)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pastedeploy
-pkgver=2.1.0
-pkgrel=2
-pkgdesc="Load, configure, and compose WSGI applications and servers"
-arch=('any')
-license=('MIT')
-url="http://pythonpaste.org/deploy/;
-depends=('python-setuptools')
-makedepends=('python-setuptools' 'python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Pylons/pastedeploy/archive/$pkgver.tar.gz;)
-sha512sums=('2c639b5ad07faee013ff3fe37d0e3c6ca7b56ed0960dbcaf133c05d51a7f29d6a2f35118bd8faea4d9aca90438c43d8046a340833878e4b925f32142df169c97')
-
-build() {
-  cd "$srcdir"/pastedeploy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/pastedeploy-$pkgver
-  python setup.py pytest
-}
-
-package() {
-
-  cd pastedeploy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}

Copied: python-pastedeploy/repos/community-any/PKGBUILD (from rev 723731, 
python-pastedeploy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 20:50:55 UTC (rev 723732)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pastedeploy
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Load, configure, and compose WSGI applications and servers"
+arch=('any')
+license=('MIT')
+url="http://pythonpaste.org/deploy/;
+depends=('python-setuptools')
+makedepends=('python-setuptools' 'python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Pylons/pastedeploy/archive/$pkgver.tar.gz;)
+sha512sums=('0109e30cb5ae9bdd7f06a79f6236c90f96c3bcfe507258572b1329796a1821486d9762d954673ccbac76ee63c6a69e64fe5e2cae5402fecf4a5affe88cf46930')
+
+build() {
+  cd "$srcdir"/pastedeploy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/pastedeploy-$pkgver
+  python setup.py pytest
+}
+
+package() {
+
+  cd pastedeploy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


[arch-commits] Commit in python-pastedeploy/trunk (PKGBUILD)

2020-10-12 Thread Felix Yan via arch-commits
Date: Monday, October 12, 2020 @ 20:50:46
  Author: felixonmars
Revision: 723731

upgpkg: python-pastedeploy 2.1.1-1

Modified:
  python-pastedeploy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:22:07 UTC (rev 723730)
+++ PKGBUILD2020-10-12 20:50:46 UTC (rev 723731)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pastedeploy
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.1.1
+pkgrel=1
 pkgdesc="Load, configure, and compose WSGI applications and servers"
 arch=('any')
 license=('MIT')
@@ -10,7 +10,7 @@
 depends=('python-setuptools')
 makedepends=('python-setuptools' 'python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Pylons/pastedeploy/archive/$pkgver.tar.gz;)
-sha512sums=('2c639b5ad07faee013ff3fe37d0e3c6ca7b56ed0960dbcaf133c05d51a7f29d6a2f35118bd8faea4d9aca90438c43d8046a340833878e4b925f32142df169c97')
+sha512sums=('0109e30cb5ae9bdd7f06a79f6236c90f96c3bcfe507258572b1329796a1821486d9762d954673ccbac76ee63c6a69e64fe5e2cae5402fecf4a5affe88cf46930')
 
 build() {
   cd "$srcdir"/pastedeploy-$pkgver


[arch-commits] Commit in nano-syntax-highlighting/repos/community-any (2 files)

2020-10-12 Thread Morten Linderud via arch-commits
Date: Monday, October 12, 2020 @ 20:22:07
  Author: foxboron
Revision: 723730

archrelease: copy trunk to community-any

Added:
  nano-syntax-highlighting/repos/community-any/PKGBUILD
(from rev 723729, nano-syntax-highlighting/trunk/PKGBUILD)
Deleted:
  nano-syntax-highlighting/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 20:21:59 UTC (rev 723729)
+++ PKGBUILD2020-10-12 20:22:07 UTC (rev 723730)
@@ -1,27 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: American_Jesus 
-
-pkgname=nano-syntax-highlighting
-pkgver=2020.1.25
-pkgrel=1
-pkgdesc="Nano editor syntax highlighting enhancements"
-url="https://github.com/scopatz/nanorc;
-license=('GPL3')
-arch=('any')
-depends=('nano')
-source=("https://github.com/scopatz/nanorc/releases/download/$pkgver/nanorc-$pkgver.tar.gz;)
-sha256sums=('a7466a712315391559b010c224de0dc814e7fb4227853f66692ce9c4347ece7e')
-
-build() {
-   cd "nanorc-$pkgver"
-   find *.nanorc -type f | sed "s@${srcdir}\/nanorc@include 
\/usr\/share\/$pkgname@" > nanorc.sample
-}
-
-package() {
-   cd "nanorc-$pkgver"
-   mkdir -p "$pkgdir/usr/share/$pkgname"
-   find . -name '*.nanorc' | xargs install -D -m644 -t 
"$pkgdir/usr/share/$pkgname/"
-   install -D -m644 "nanorc.sample" 
"$pkgdir/usr/share/$pkgname/nanorc.sample"
-} 
-
-

Copied: nano-syntax-highlighting/repos/community-any/PKGBUILD (from rev 723729, 
nano-syntax-highlighting/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 20:22:07 UTC (rev 723730)
@@ -0,0 +1,27 @@
+# Maintainer: Morten Linderud 
+# Contributor: American_Jesus 
+
+pkgname=nano-syntax-highlighting
+pkgver=2020.10.10
+pkgrel=1
+pkgdesc="Nano editor syntax highlighting enhancements"
+url="https://github.com/scopatz/nanorc;
+license=('GPL3')
+arch=('any')
+depends=('nano')
+source=("https://github.com/scopatz/nanorc/releases/download/$pkgver/nanorc-$pkgver.tar.gz;)
+sha256sums=('cd674e9eb230e4ba306b418c22d1891d93a3d2ffdf22234748d3398da50dfe64')
+
+build() {
+   cd "nanorc-$pkgver"
+   find *.nanorc -type f | sed "s@${srcdir}\/nanorc@include 
\/usr\/share\/$pkgname@" > nanorc.sample
+}
+
+package() {
+   cd "nanorc-$pkgver"
+   mkdir -p "$pkgdir/usr/share/$pkgname"
+   find . -name '*.nanorc' | xargs install -D -m644 -t 
"$pkgdir/usr/share/$pkgname/"
+   install -D -m644 "nanorc.sample" 
"$pkgdir/usr/share/$pkgname/nanorc.sample"
+} 
+
+


[arch-commits] Commit in nano-syntax-highlighting/trunk (PKGBUILD)

2020-10-12 Thread Morten Linderud via arch-commits
Date: Monday, October 12, 2020 @ 20:21:59
  Author: foxboron
Revision: 723729

upgpkg: nano-syntax-highlighting 2020.10.10-1

Modified:
  nano-syntax-highlighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:18:17 UTC (rev 723728)
+++ PKGBUILD2020-10-12 20:21:59 UTC (rev 723729)
@@ -2,7 +2,7 @@
 # Contributor: American_Jesus 
 
 pkgname=nano-syntax-highlighting
-pkgver=2020.1.25
+pkgver=2020.10.10
 pkgrel=1
 pkgdesc="Nano editor syntax highlighting enhancements"
 url="https://github.com/scopatz/nanorc;
@@ -10,7 +10,7 @@
 arch=('any')
 depends=('nano')
 
source=("https://github.com/scopatz/nanorc/releases/download/$pkgver/nanorc-$pkgver.tar.gz;)
-sha256sums=('a7466a712315391559b010c224de0dc814e7fb4227853f66692ce9c4347ece7e')
+sha256sums=('cd674e9eb230e4ba306b418c22d1891d93a3d2ffdf22234748d3398da50dfe64')
 
 build() {
cd "nanorc-$pkgver"


[arch-commits] Commit in gif2png/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, October 12, 2020 @ 20:18:17
  Author: jlichtblau
Revision: 723728

archrelease: copy trunk to community-x86_64

Added:
  gif2png/repos/community-x86_64/PKGBUILD
(from rev 723727, gif2png/trunk/PKGBUILD)
Deleted:
  gif2png/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   91 +
 1 file changed, 56 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 20:18:08 UTC (rev 723727)
+++ PKGBUILD2020-10-12 20:18:17 UTC (rev 723728)
@@ -1,35 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Giovanni Scafora 
-# Contributor: eric 
-# Contributor: Andrew Rose 
-
-pkgname=gif2png
-pkgver=2.5.14
-pkgrel=2
-pkgdesc="A GIF to PNG image format converter"
-arch=('x86_64')
-url="http://www.catb.org/~esr/gif2png/;
-license=('ZLIB')
-depends=('libpng')
-optdepends=('python2: for using web2png')
-source=(http://www.catb.org/~esr/$pkgname/$pkgname-$pkgver.tar.gz
-http://www.catb.org/~esr/gif2png/COPYING)
-sha256sums=('f7584dc0d15b8186182e47dcf6190924a3ba6d669acfce33be8512a79ae6fe20'
-'c92396cd96373bf1bdaa08e028214479216be7278fe7732b59cd1df1632fe335')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  sed -i 's#env python#env python2#' web2png
-
-#  ./configure --prefix=/usr \
-#  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  make install prefix="${pkgdir}"/usr
-  install -Dm644 "${srcdir}"/COPYING 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gif2png/repos/community-x86_64/PKGBUILD (from rev 723727, 
gif2png/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 20:18:17 UTC (rev 723728)
@@ -0,0 +1,56 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Morten Linderud 
+# Contributor: Giovanni Scafora 
+# Contributor: eric 
+# Contributor: Andrew Rose 
+
+pkgname=gif2png
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="A GIF to PNG image format converter"
+arch=('x86_64')
+url="http://www.catb.org/~esr/gif2png/;
+license=('ZLIB')
+depends=('libpng')
+makedepends=('go' 'git')
+optdepends=('python2: for using web2png')
+# https://github.com/golang/crypto/tree/release-branch.go1.15
+_crypto_commit=75b288015ac94e66e3d6715fb68a9b41bf046ec2
+# https://github.com/golang/sys/tree/release-branch.go1.15
+_sys_commit=bc7a7d42d5c30f4d0fe808715c002826ce2c624e
+source=(http://www.catb.org/~esr/$pkgname/$pkgname-$pkgver.tar.gz
+http://www.catb.org/~esr/gif2png/COPYING
+git+https://github.com/golang/crypto#commit=$_crypto_commit
+git+https://github.com/golang/sys#commit=$_sys_commit)
+sha256sums=('98e185fa62d8d5b355a8b3980db0025b2fbdea991bd9f78547a1e0bc08b81d3a'
+'c92396cd96373bf1bdaa08e028214479216be7278fe7732b59cd1df1632fe335'
+'SKIP'
+'SKIP')
+
+prepare() {
+  mkdir -p src/golang.org/x build
+  cp -r sys crypto src/golang.org/x/
+  mkdir -p src/gitlab.com/esr
+  ln -rTsf "$pkgname-$pkgver" "src/gitlab.com/esr/${pkgname}"
+  cd "src/gitlab.com/esr/${pkgname}"
+  sed -i 's#env python#env python2#' web2png
+  sed -i 's#GOFLAGS=.*##' Makefile
+  sed -i 's#$(GOFLAGS)##' Makefile
+}
+
+build() {
+  cd "src/gitlab.com/esr/${pkgname}"
+  export GOPATH="$srcdir"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -gcflags=-N -gcflags=-l"
+  make
+}
+
+package() {
+  cd "src/gitlab.com/esr/${pkgname}"
+  make install prefix="${pkgdir}"/usr
+  install -Dm644 "${srcdir}"/COPYING 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-10-12 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, October 12, 2020 @ 20:18:08
  Author: jlichtblau
Revision: 723727

upgpkg: gif2png 3.0.0-1 - new upstream release

Modified:
  gif2png/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:17:28 UTC (rev 723726)
+++ PKGBUILD2020-10-12 20:18:08 UTC (rev 723727)
@@ -1,35 +1,56 @@
 # Maintainer: Jaroslav Lichtblau 
+# Contributor: Morten Linderud 
 # Contributor: Giovanni Scafora 
 # Contributor: eric 
 # Contributor: Andrew Rose 
 
 pkgname=gif2png
-pkgver=2.5.14
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 pkgdesc="A GIF to PNG image format converter"
 arch=('x86_64')
 url="http://www.catb.org/~esr/gif2png/;
 license=('ZLIB')
 depends=('libpng')
+makedepends=('go' 'git')
 optdepends=('python2: for using web2png')
+# https://github.com/golang/crypto/tree/release-branch.go1.15
+_crypto_commit=75b288015ac94e66e3d6715fb68a9b41bf046ec2
+# https://github.com/golang/sys/tree/release-branch.go1.15
+_sys_commit=bc7a7d42d5c30f4d0fe808715c002826ce2c624e
 source=(http://www.catb.org/~esr/$pkgname/$pkgname-$pkgver.tar.gz
-http://www.catb.org/~esr/gif2png/COPYING)
-sha256sums=('f7584dc0d15b8186182e47dcf6190924a3ba6d669acfce33be8512a79ae6fe20'
-'c92396cd96373bf1bdaa08e028214479216be7278fe7732b59cd1df1632fe335')
+http://www.catb.org/~esr/gif2png/COPYING
+git+https://github.com/golang/crypto#commit=$_crypto_commit
+git+https://github.com/golang/sys#commit=$_sys_commit)
+sha256sums=('98e185fa62d8d5b355a8b3980db0025b2fbdea991bd9f78547a1e0bc08b81d3a'
+'c92396cd96373bf1bdaa08e028214479216be7278fe7732b59cd1df1632fe335'
+'SKIP'
+'SKIP')
 
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
+prepare() {
+  mkdir -p src/golang.org/x build
+  cp -r sys crypto src/golang.org/x/
+  mkdir -p src/gitlab.com/esr
+  ln -rTsf "$pkgname-$pkgver" "src/gitlab.com/esr/${pkgname}"
+  cd "src/gitlab.com/esr/${pkgname}"
   sed -i 's#env python#env python2#' web2png
+  sed -i 's#GOFLAGS=.*##' Makefile
+  sed -i 's#$(GOFLAGS)##' Makefile
+}
 
-#  ./configure --prefix=/usr \
-#  --mandir=/usr/share/man
+build() {
+  cd "src/gitlab.com/esr/${pkgname}"
+  export GOPATH="$srcdir"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -gcflags=-N -gcflags=-l"
   make
 }
 
 package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
+  cd "src/gitlab.com/esr/${pkgname}"
   make install prefix="${pkgdir}"/usr
   install -Dm644 "${srcdir}"/COPYING 
"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
 }


[arch-commits] Commit in lib32-clang/repos (3 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 20:17:28
  Author: foutrelis
Revision: 723726

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-clang/repos/multilib-staging-x86_64/
  lib32-clang/repos/multilib-staging-x86_64/PKGBUILD
(from rev 723725, lib32-clang/trunk/PKGBUILD)
  lib32-clang/repos/multilib-staging-x86_64/enable-SSP-and-PIE-by-default.patch
(from rev 723725, lib32-clang/trunk/enable-SSP-and-PIE-by-default.patch)

-+
 PKGBUILD|   93 +
 enable-SSP-and-PIE-by-default.patch |  336 ++
 2 files changed, 429 insertions(+)

Copied: lib32-clang/repos/multilib-staging-x86_64/PKGBUILD (from rev 723725, 
lib32-clang/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2020-10-12 20:17:28 UTC (rev 723726)
@@ -0,0 +1,93 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+
+pkgname=lib32-clang
+pkgver=11.0.0
+pkgrel=1
+pkgdesc="C language family frontend for LLVM (32-bit)"
+arch=('x86_64')
+url="https://clang.llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+depends=('lib32-llvm-libs' 'gcc-multilib')
+makedepends=('lib32-llvm' 'cmake' 'ninja' 'python')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/clang-$pkgver.src.tar.xz{,.sig}
+$_source_base/llvm-$pkgver.src.tar.xz{,.sig}
+enable-SSP-and-PIE-by-default.patch)
+sha256sums=('0f96acace1e8326b39f220ba19e055ba99b0ab21c2475042dbc6a482649c5209'
+'SKIP'
+'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
+'SKIP'
+'248a0e8609b00689e82ce5e05e1de58b7c8ae09a35bbb9625e9069e1f13d2fec')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+# Utilizing LLVM_DISTRIBUTION_COMPONENTS to avoid
+# installing static libraries; inspired by Gentoo
+_get_distribution_components() {
+  local target
+  ninja -t targets | grep -Po 'install-\K.*(?=-stripped:)' | while read -r 
target; do
+case $target in
+  clang-libraries|distribution)
+continue
+;;
+  clang-tidy-headers)
+continue
+;;
+  clang|clangd|clang-*)
+;;
+  clang*|findAllSymbols)
+continue
+;;
+esac
+echo $target
+  done
+}
+
+prepare() {
+  cd "$srcdir/clang-$pkgver.src"
+  mkdir build
+  patch -Np2 -i ../enable-SSP-and-PIE-by-default.patch
+}
+
+build() {
+  cd "$srcdir/clang-$pkgver.src/build"
+
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  local cmake_args=(
+-G Ninja
+-DCMAKE_BUILD_TYPE=Release
+-DCMAKE_INSTALL_PREFIX=/usr
+-DPYTHON_EXECUTABLE=/usr/bin/python
+-DLLVM_LIBDIR_SUFFIX=32
+-DCMAKE_C_FLAGS:STRING=-m32
+-DCMAKE_CXX_FLAGS:STRING=-m32
+-DLLVM_CONFIG="/usr/bin/llvm-config32"
+-DLLVM_LINK_LLVM_DYLIB=ON
+-DCLANG_LINK_CLANG_DYLIB=ON
+-DLLVM_ENABLE_RTTI=ON
+-DLLVM_BUILD_TESTS=OFF
+-DLLVM_INCLUDE_DOCS=OFF
+-DLLVM_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src"
+  )
+
+  cmake .. "${cmake_args[@]}"
+  local distribution_components=$(_get_distribution_components | paste -sd\;)
+  test -n "$distribution_components"
+  cmake_args+=(-DLLVM_DISTRIBUTION_COMPONENTS="$distribution_components")
+
+  cmake .. "${cmake_args[@]}"
+  ninja
+}
+
+package() {
+  cd "$srcdir/clang-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install-distribution
+  rm -rf "$pkgdir"/usr/{bin,include,libexec,share}
+
+  install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
lib32-clang/repos/multilib-staging-x86_64/enable-SSP-and-PIE-by-default.patch 
(from rev 723725, lib32-clang/trunk/enable-SSP-and-PIE-by-default.patch)
===
--- multilib-staging-x86_64/enable-SSP-and-PIE-by-default.patch 
(rev 0)
+++ multilib-staging-x86_64/enable-SSP-and-PIE-by-default.patch 2020-10-12 
20:17:28 UTC (rev 723726)
@@ -0,0 +1,336 @@
+From bb7bdc61f8a80db9aa16370d9c9fd0ae7be825cc Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Mon, 12 Oct 2020 16:40:41 +0300
+Subject: [PATCH] Enable SSP and PIE by default
+
+This is a minimal set of changes needed to make clang use SSP and PIE by
+default on Arch Linux. Tests that were easy to adjust have been changed
+accordingly; only test/Driver/linux-ld.c has been marked as "expected
+failure" due to the number of changes it would require (mostly replacing
+crtbegin.o with crtbeginS.o).
+
+Doing so is needed in order to align clang with the new default GCC
+behavior in Arch which generates PIE executables by default and also
+defaults to -fstack-protector-strong. It is not meant to be a long 

[arch-commits] Commit in lib32-clang/trunk (2 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 20:17:24
  Author: foutrelis
Revision: 723725

upgpkg: lib32-clang 11.0.0-1: new upstream release

Modified:
  lib32-clang/trunk/PKGBUILD
  lib32-clang/trunk/enable-SSP-and-PIE-by-default.patch

-+
 PKGBUILD|   22 ++---
 enable-SSP-and-PIE-by-default.patch |   42 +-
 2 files changed, 29 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 20:09:41 UTC (rev 723724)
+++ PKGBUILD2020-10-12 20:17:24 UTC (rev 723725)
@@ -2,12 +2,12 @@
 # Contributor: Jan "heftig" Steffens 
 
 pkgname=lib32-clang
-pkgver=10.0.1
+pkgver=11.0.0
 pkgrel=1
 pkgdesc="C language family frontend for LLVM (32-bit)"
 arch=('x86_64')
 url="https://clang.llvm.org/;
-license=('custom:Apache 2.0 with LLVM Execption')
+license=('custom:Apache 2.0 with LLVM Exception')
 depends=('lib32-llvm-libs' 'gcc-multilib')
 makedepends=('lib32-llvm' 'cmake' 'ninja' 'python')
 
_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
@@ -14,11 +14,11 @@
 source=($_source_base/clang-$pkgver.src.tar.xz{,.sig}
 $_source_base/llvm-$pkgver.src.tar.xz{,.sig}
 enable-SSP-and-PIE-by-default.patch)
-sha256sums=('f99afc382b88e622c689b6d96cadfa6241ef55dca90e87fc170352e12ddb2b24'
+sha256sums=('0f96acace1e8326b39f220ba19e055ba99b0ab21c2475042dbc6a482649c5209'
 'SKIP'
-'c5d8e30b57cbded7128d78e5e8dad811bff97a8d471896812f57fa99ee82cdf3'
+'913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
 'SKIP'
-'9e557a18f3ca96cc5cc9b62d2e308b993025523b2aca0735248118a928c8c3ff')
+'248a0e8609b00689e82ce5e05e1de58b7c8ae09a35bbb9625e9069e1f13d2fec')
 validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

 validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

 
@@ -31,6 +31,9 @@
   clang-libraries|distribution)
 continue
 ;;
+  clang-tidy-headers)
+continue
+;;
   clang|clangd|clang-*)
 ;;
   clang*|findAllSymbols)
@@ -45,15 +48,6 @@
   cd "$srcdir/clang-$pkgver.src"
   mkdir build
   patch -Np2 -i ../enable-SSP-and-PIE-by-default.patch
-
-  if [[ $pkgver != 10.* ]]; then
-echo "Remove libclangHandleLLVM hack!"
-return 1
-  fi
-  # Remove libclangHandleLLVM; breaks zig (https://reviews.llvm.org/D75579)
-  # (copied from extra/clang; might not apply here but better safe than sorry)
-  sed -i '/add_clang_subdirectory(handle-llvm)/d' \
-tools/clang-fuzzer/CMakeLists.txt
 }
 
 build() {

Modified: enable-SSP-and-PIE-by-default.patch
===
--- enable-SSP-and-PIE-by-default.patch 2020-10-12 20:09:41 UTC (rev 723724)
+++ enable-SSP-and-PIE-by-default.patch 2020-10-12 20:17:24 UTC (rev 723725)
@@ -1,6 +1,6 @@
-From 9641fc2459b07c806c1e4d2a2345213ee6c2bafd Mon Sep 17 00:00:00 2001
+From bb7bdc61f8a80db9aa16370d9c9fd0ae7be825cc Mon Sep 17 00:00:00 2001
 From: Evangelos Foutras 
-Date: Sat, 11 Apr 2020 06:52:09 +0300
+Date: Mon, 12 Oct 2020 16:40:41 +0300
 Subject: [PATCH] Enable SSP and PIE by default
 
 This is a minimal set of changes needed to make clang use SSP and PIE by
@@ -33,10 +33,10 @@
  13 files changed, 50 insertions(+), 35 deletions(-)
 
 diff --git a/clang/lib/Driver/ToolChains/Linux.cpp 
b/clang/lib/Driver/ToolChains/Linux.cpp
-index bff1ab1009b..da54a08657d 100644
+index 180350476c3..119f32ceec6 100644
 --- a/clang/lib/Driver/ToolChains/Linux.cpp
 +++ b/clang/lib/Driver/ToolChains/Linux.cpp
-@@ -917,8 +917,18 @@ void Linux::AddIAMCUIncludeArgs(const ArgList ,
+@@ -819,8 +819,18 @@ void Linux::AddIAMCUIncludeArgs(const ArgList ,
  }
  
  bool Linux::isPIEDefault() const {
@@ -58,10 +58,10 @@
  
  bool Linux::isNoExecStackDefault() const {
 diff --git a/clang/lib/Driver/ToolChains/Linux.h 
b/clang/lib/Driver/ToolChains/Linux.h
-index f5518eac218..2d4973cf40c 100644
+index 6b16b0e6499..d0024110aef 100644
 --- a/clang/lib/Driver/ToolChains/Linux.h
 +++ b/clang/lib/Driver/ToolChains/Linux.h
-@@ -37,6 +37,7 @@ public:
+@@ -39,6 +39,7 @@ public:
bool isPIEDefault() const override;
bool isNoExecStackDefault() const override;
bool IsMathErrnoDefault() const override;
@@ -131,10 +131,10 @@
  // CHECK-LD-32: 
"-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0/../../../../i386-unknown-linux/lib"
  // CHECK-LD-32: "-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0/../../.."
 diff --git a/clang/test/Driver/fsanitize.c b/clang/test/Driver/fsanitize.c
-index f02f94d8c5a..358917588c7 100644
+index 7340bfb35e4..681bb90b50e 100644
 --- a/clang/test/Driver/fsanitize.c
 +++ b/clang/test/Driver/fsanitize.c
-@@ -328,15 +328,15 @@
+@@ -329,15 +329,15 @@
  // RUN: %clang -target x86_64-linux-gnu -fsanitize=vptr -fno-sanitize=vptr 

[arch-commits] Commit in fzf/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Morten Linderud via arch-commits
Date: Monday, October 12, 2020 @ 20:09:41
  Author: foxboron
Revision: 723724

archrelease: copy trunk to community-x86_64

Added:
  fzf/repos/community-x86_64/PKGBUILD
(from rev 723723, fzf/trunk/PKGBUILD)
Deleted:
  fzf/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 20:09:34 UTC (rev 723723)
+++ PKGBUILD2020-10-12 20:09:41 UTC (rev 723724)
@@ -1,65 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Maintainer: Morten Linderud 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Pierre Neidhardt 
-# Contributor: Hermann Zahnweh (eigengrau)
-# Contributor: Andy Weidenbaum 
-# Contributor: foalsrock 
-# Contributor: jebaum 
-
-pkgname=fzf
-pkgver=0.23.0
-pkgrel=1
-pkgdesc='Command-line fuzzy finder'
-arch=('x86_64')
-url='https://github.com/junegunn/fzf'
-license=('MIT')
-depends=('bash')
-makedepends=('git' 'go')
-optdepends=('fish: fish keybindings'
-'tmux: fzf-tmux script for launching fzf in a tmux pane'
-'vim: plugin'
-'zsh: zsh keybindings')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('e33b2cb5b734eae2a5dc8e3ab54b026976fcddb7f8eb84501a4be225ddc6b135cfab4e99561ad17993253d92f9cb2ab28ddf97bd18f16dd83bb482cd1d17e25f')
-
-export CGO_LDFLAGS="${LDFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   go build -o fzf .
-}
-
-check() {
-   cd "${pkgname}-${pkgver}"
-   go test ./...
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-
-   ## Man page
-   install -Dm644 man/man1/fzf.1 "$pkgdir"/usr/share/man/man1/fzf.1
-
-   ## License
-   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/fzf/LICENSE
-
-   ## Binaries
-   install -dm755 "$pkgdir"/usr/bin
-   install -m755 fzf bin/fzf-tmux "$pkgdir"/usr/bin/
-
-   ## Completion and keybindings
-   install -dm755 "$pkgdir"/usr/share/fzf
-   install -m644 shell/*.bash shell/*.zsh "$pkgdir"/usr/share/fzf
-
-   ## Fish keybindings
-   install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish
-
-   ## Vim plugin
-   install -Dm644 plugin/fzf.vim 
"$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
-}
-

Copied: fzf/repos/community-x86_64/PKGBUILD (from rev 723723, 
fzf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 20:09:41 UTC (rev 723724)
@@ -0,0 +1,65 @@
+# Maintainer: Thore Bödecker 
+# Maintainer: Morten Linderud 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Pierre Neidhardt 
+# Contributor: Hermann Zahnweh (eigengrau)
+# Contributor: Andy Weidenbaum 
+# Contributor: foalsrock 
+# Contributor: jebaum 
+
+pkgname=fzf
+pkgver=0.23.1
+pkgrel=1
+pkgdesc='Command-line fuzzy finder'
+arch=('x86_64')
+url='https://github.com/junegunn/fzf'
+license=('MIT')
+depends=('bash')
+makedepends=('git' 'go')
+optdepends=('fish: fish keybindings'
+'tmux: fzf-tmux script for launching fzf in a tmux pane'
+'vim: plugin'
+'zsh: zsh keybindings')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('e501e69c8026952d478caf488014565f5eb518278bc8735ed6bc0443cc854c1ee43cd8227f11e7d31c4d5c8714bc8095c6c84a70f865b8e1a08b15516d197e19')
+
+export CGO_LDFLAGS="${LDFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   go build -o fzf .
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+   go test ./...
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+
+   ## Man page
+   install -Dm644 man/man1/fzf.1 "$pkgdir"/usr/share/man/man1/fzf.1
+
+   ## License
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/fzf/LICENSE
+
+   ## Binaries
+   install -dm755 "$pkgdir"/usr/bin
+   install -m755 fzf bin/fzf-tmux "$pkgdir"/usr/bin/
+
+   ## Completion and keybindings
+   install -dm755 "$pkgdir"/usr/share/fzf
+   install -m644 shell/*.bash shell/*.zsh "$pkgdir"/usr/share/fzf
+
+   ## Fish keybindings
+   install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish
+
+   ## Vim plugin
+   install -Dm644 plugin/fzf.vim 
"$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
+}
+


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

2020-10-12 Thread Morten Linderud via arch-commits
Date: Monday, October 12, 2020 @ 20:09:34
  Author: foxboron
Revision: 723723

upgpkg: fzf 0.23.1-1

Modified:
  fzf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 19:58:57 UTC (rev 723722)
+++ PKGBUILD2020-10-12 20:09:34 UTC (rev 723723)
@@ -8,7 +8,7 @@
 # Contributor: jebaum 
 
 pkgname=fzf
-pkgver=0.23.0
+pkgver=0.23.1
 pkgrel=1
 pkgdesc='Command-line fuzzy finder'
 arch=('x86_64')
@@ -21,7 +21,7 @@
 'vim: plugin'
 'zsh: zsh keybindings')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('e33b2cb5b734eae2a5dc8e3ab54b026976fcddb7f8eb84501a4be225ddc6b135cfab4e99561ad17993253d92f9cb2ab28ddf97bd18f16dd83bb482cd1d17e25f')
+sha512sums=('e501e69c8026952d478caf488014565f5eb518278bc8735ed6bc0443cc854c1ee43cd8227f11e7d31c4d5c8714bc8095c6c84a70f865b8e1a08b15516d197e19')
 
 export CGO_LDFLAGS="${LDFLAGS}"
 export CGO_CFLAGS="${CFLAGS}"


[arch-commits] Commit in lib32-llvm/repos (2 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 19:58:57
  Author: foutrelis
Revision: 723722

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-llvm/repos/multilib-staging-x86_64/
  lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD
(from rev 723721, lib32-llvm/trunk/PKGBUILD)

--+
 PKGBUILD |  101 +
 1 file changed, 101 insertions(+)

Copied: lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD (from rev 723721, 
lib32-llvm/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2020-10-12 19:58:57 UTC (rev 723722)
@@ -0,0 +1,101 @@
+# Maintainer: Laurent Carlier 
+# Contributor: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+
+pkgname=('lib32-llvm' 'lib32-llvm-libs')
+pkgver=11.0.0
+pkgrel=1
+arch=('x86_64')
+url="https://llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+makedepends=('cmake' 'ninja' 'lib32-libffi' 'lib32-zlib' 'python' 
'gcc-multilib'
+ 'lib32-libxml2')
+options=('staticlibs')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/llvm-$pkgver.src.tar.xz{,.sig})
+sha256sums=('913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
+'SKIP')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/llvm-$pkgver.src"
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_LIBDIR_SUFFIX=32 \
+-DCMAKE_C_FLAGS:STRING=-m32 \
+-DCMAKE_CXX_FLAGS:STRING=-m32 \
+-DLLVM_TARGET_ARCH:STRING=i686 \
+-DLLVM_HOST_TRIPLE=$CHOST \
+-DLLVM_DEFAULT_TARGETS_TRIPLE="i686-pc-linux-gnu" \
+-DLLVM_BUILD_LLVM_DYLIB=ON \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_ENABLE_RTTI=ON \
+-DLLVM_ENABLE_FFI=ON \
+-DLLVM_BUILD_DOCS=OFF \
+-DLLVM_ENABLE_SPHINX=OFF \
+-DLLVM_ENABLE_DOXYGEN=OFF \
+-DLLVM_BINUTILS_INCDIR=/usr/include
+
+  ninja all
+}
+
+package_lib32-llvm() {
+  pkgdesc="Collection of modular and reusable compiler and toolchain 
technologies (32-bit)"
+  depends=('lib32-llvm-libs' 'llvm')
+
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+
+  # The runtime library goes into lib32-llvm-libs
+  mv "$pkgdir"/usr/lib32/lib{LLVM,LTO,Remarks}*.so* "$srcdir"
+  mv -f "$pkgdir"/usr/lib32/LLVMgold.so "$srcdir"
+
+  # Fix permissions of static libs
+  chmod -x "$pkgdir"/usr/lib32/*.a
+
+  mv "$pkgdir/usr/bin/llvm-config" "$pkgdir/usr/lib32/llvm-config"
+  mv "$pkgdir/usr/include/llvm/Config/llvm-config.h" \
+"$pkgdir/usr/lib32/llvm-config-32.h"
+
+  rm -rf "$pkgdir"/usr/{bin,include,share/{doc,man,llvm,opt-viewer}}
+
+  # Needed for multilib (https://bugs.archlinux.org/task/29951)
+  # Header stub is taken from Fedora
+  install -d "$pkgdir/usr/include/llvm/Config"
+  mv "$pkgdir/usr/lib32/llvm-config-32.h" "$pkgdir/usr/include/llvm/Config/"
+
+  mkdir "$pkgdir"/usr/bin
+  mv "$pkgdir/usr/lib32/llvm-config" "$pkgdir/usr/bin/llvm-config32"
+
+  install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lib32-llvm-libs() {
+  pkgdesc="Low Level Virtual Machine (runtime library)(32-bit) "
+  depends=('lib32-libffi' 'lib32-zlib' 'lib32-ncurses' 'lib32-libxml2' 
'lib32-gcc-libs')
+
+  install -d "$pkgdir/usr/lib32"
+
+  cp -P \
+"$srcdir"/lib{LLVM,LTO,Remarks}*.so* \
+"$srcdir"/LLVMgold.so \
+"$pkgdir/usr/lib32/"
+
+  # Symlink LLVMgold.so from /usr/lib/bfd-plugins
+  # https://bugs.archlinux.org/task/28479
+  install -d "$pkgdir/usr/lib32/bfd-plugins"
+  ln -s ../LLVMgold.so "$pkgdir/usr/lib32/bfd-plugins/LLVMgold.so"
+
+  install -Dm644 llvm-$pkgver.src/LICENSE.TXT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in lib32-llvm/trunk (PKGBUILD)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 19:58:52
  Author: foutrelis
Revision: 723721

upgpkg: lib32-llvm 11.0.0-1: new upstream release

Modified:
  lib32-llvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 19:42:47 UTC (rev 723720)
+++ PKGBUILD2020-10-12 19:58:52 UTC (rev 723721)
@@ -3,17 +3,17 @@
 # Contributor: Jan "heftig" Steffens 
 
 pkgname=('lib32-llvm' 'lib32-llvm-libs')
-pkgver=10.0.1
+pkgver=11.0.0
 pkgrel=1
 arch=('x86_64')
 url="https://llvm.org/;
-license=('custom:Apache 2.0 with LLVM Execption')
+license=('custom:Apache 2.0 with LLVM Exception')
 makedepends=('cmake' 'ninja' 'lib32-libffi' 'lib32-zlib' 'python' 
'gcc-multilib'
  'lib32-libxml2')
 options=('staticlibs')
 
_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
 source=($_source_base/llvm-$pkgver.src.tar.xz{,.sig})
-sha256sums=('c5d8e30b57cbded7128d78e5e8dad811bff97a8d471896812f57fa99ee82cdf3'
+sha256sums=('913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469'
 'SKIP')
 validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

 validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

@@ -41,7 +41,6 @@
 -DLLVM_LINK_LLVM_DYLIB=ON \
 -DLLVM_ENABLE_RTTI=ON \
 -DLLVM_ENABLE_FFI=ON \
--DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=AVR \
 -DLLVM_BUILD_DOCS=OFF \
 -DLLVM_ENABLE_SPHINX=OFF \
 -DLLVM_ENABLE_DOXYGEN=OFF \


[arch-commits] Commit in gnome-builder/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 19:58:31
  Author: heftig
Revision: 398083

archrelease: copy trunk to staging-x86_64

Added:
  gnome-builder/repos/staging-x86_64/
  gnome-builder/repos/staging-x86_64/PKGBUILD
(from rev 398082, gnome-builder/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: gnome-builder/repos/staging-x86_64/PKGBUILD (from rev 398082, 
gnome-builder/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-12 19:58:31 UTC (rev 398083)
@@ -0,0 +1,51 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.38.0
+pkgrel=3
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang sysprof
+ desktop-file-utils ctags libpeas vte3 vala python-jedi 
autoconf-archive
+ flatpak-builder gspell libdazzle template-glib jsonrpc-glib
+ python-sphinx webkit2gtk glade python-lxml meson libportal)
+makedepends=(llvm gobject-introspection gtk-doc yelp-tools appstream-glib git 
mm-common
+ python-sphinx_rtd_theme)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-code-assistance: Legacy assistance services')
+groups=(gnome-extra)
+_commit=a891fe37c22248c6594a5772d127ed7ba62c5a1c  # tags/3.38.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D docs=true \
+-D help=true
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libgladeui-2.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in gnome-builder/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 19:58:18
  Author: heftig
Revision: 398082

3.38.0-3: clang 11

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 18:39:29 UTC (rev 398081)
+++ PKGBUILD2020-10-12 19:58:18 UTC (rev 398082)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-builder
 pkgver=3.38.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder;
 arch=(x86_64)


[arch-commits] Commit in llpp/repos/community-x86_64 (6 files)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Monday, October 12, 2020 @ 19:42:47
  Author: eschwartz
Revision: 723720

archrelease: copy trunk to community-x86_64

Added:
  llpp/repos/community-x86_64/GNUmakefile
(from rev 723719, llpp/trunk/GNUmakefile)
  llpp/repos/community-x86_64/PKGBUILD
(from rev 723719, llpp/trunk/PKGBUILD)
  llpp/repos/community-x86_64/no-quit-on-escape.patch
(from rev 723719, llpp/trunk/no-quit-on-escape.patch)
Deleted:
  llpp/repos/community-x86_64/GNUmakefile
  llpp/repos/community-x86_64/PKGBUILD
  llpp/repos/community-x86_64/no-quit-on-escape.patch

-+
 GNUmakefile |  190 +++---
 PKGBUILD|  140 -
 no-quit-on-escape.patch |   68 
 3 files changed, 199 insertions(+), 199 deletions(-)

Deleted: GNUmakefile
===
--- GNUmakefile 2020-10-12 19:42:27 UTC (rev 723719)
+++ GNUmakefile 2020-10-12 19:42:47 UTC (rev 723720)
@@ -1,95 +0,0 @@
-MAKEFLAGS := -r
-
-VERSION = $(shell test -d .git && git describe --tags --dirty 2>/dev/null)
-ifeq ($(VERSION),)
-VERSION = 31
-endif
-
-# paths
-PREFIX ?= /usr/local
-bindir ?= $(PREFIX)/bin
-datarootdir ?= $(PREFIX)/share
-mandir ?= $(datarootdir)/man
-
-# includes and libs
-PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
-override CPPFLAGS += -D_GNU_SOURCE -DFFP
-override CFLAGS += -g -std=c99 -pedantic -Wall -Wextra -Wshadow $(shell 
pkg-config --cflags $(PKGCONF_DEPS))
-LDLIBS := -lpthread -lmupdf -lmupdf-third -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
-
-# ocaml
-override OCAMLFLAGS += -g -w +a -safe-string
-
-# Some source files are stored in an OS-specific directory here.
-# Divert them to the main srcdir.
-ifeq ($(shell uname -s),Linux)
-VPATH := wsi/x11
-else
-VPATH := wsi/cocoa # Darwin
-endif
-
-# Ensure main.cmx is last in this list:
-OCAML_OBJ := utils.cmx wsi.cmx confstruct.cmx parser.cmx config.cmx ffi.cmx 
glutils.cmx keys.cmx utf8syms.cmx listview.cmx help.cmx main.cmx
-C_OBJ := cutils.o keysym2ucs.o link.o xlib.o version.o
-MODULES := unix.cmxa str.cmxa lablgl.cmxa
-SRCMANS = $(wildcard adoc/*.adoc)
-MANS = $(SRCMANS:.adoc=.1)
-
-OCAMLC := ocamlopt
-COMPILE.ocaml = $(OCAMLC) $(OCAMLFLAGS) -c
-LINK.ocaml = $(OCAMLC) $(OCAMLFLAGS)
-
-all: llpp $(MANS)
-
-# dependency ordering
-main.cmx: private OCAMLFLAGS += -thread -I +lablGL
-main.cmx: main.cmi utils.cmx config.cmx glutils.cmx listview.cmx ffi.cmx 
help.cmx
-config.cmx: wsi.cmx confstruct.cmx parser.cmx
-confstruct.cmx: wsi.cmx
-parser.cmx: utils.cmx
-wsi.cmx: keys.cmx utils.cmx
-listview.cmx: private OCAMLFLAGS += -I +lablGL
-listview.cmx: utf8syms.cmx glutils.cmx
-glutils.cmx: private OCAMLFLAGS += -I +lablGL
-glutils.cmx: ffi.cmx
-ffi.cmx: config.cmx
-help.cmx: help.cmi utils.cmx ffi.cmx config.cmx
-help.cmi: config.cmx
-
-link.o: glfont.c
-version.o: private CPPFLAGS += -DLLPP_VERSION=$(VERSION)
-
-# ordinary targets
-llpp: private OCAMLFLAGS += -I +lablGL
-llpp: $(OCAML_OBJ) $(C_OBJ)
-   $(LINK.ocaml) $(OUTPUT_OPTION) $(C_OBJ) -ccopt '$(LDFLAGS)' -cclib 
'$(LDLIBS)' $(MODULES) $(OCAML_OBJ)
-
-confstruct.ml: genconfstr.sh
-   sh $< > $@
-
-# pattern rules
-%.o: %.c
-   $(COMPILE.ocaml) $(OUTPUT_OPTION) -cc '$(CC)' -ccopt '$(CFLAGS) 
$(CPPFLAGS)' $<
-
-%.cmx: %.ml
-   $(COMPILE.ocaml) $(OUTPUT_OPTION) $<
-
-%.cmi: %.mli
-   $(COMPILE.ocaml) $(OUTPUT_OPTION) $<
-
-%.1: %.adoc adoc/asciidoc.conf
-   a2x -d manpage -f manpage --asciidoc-opts="-f adoc/asciidoc.conf 
--out-file=$@.xml" $<
-
-# special targets
-clean:
-   $(RM) llpp confstruct.ml $(C_OBJ) $(OCAML_OBJ) $(OCAML_OBJ:.cmx=.cmi) 
$(OCAML_OBJ:.cmx=.o) $(MANS) $(MANS:.1=.xml)
-
-install:
-   install -Dm755 llpp "$(DESTDIR)$(bindir)"/llpp
-   install -Dm644 -t "$(DESTDIR)$(mandir)"/man1 $(MANS)
-   install -Dm755 misc/llppac "$(DESTDIR)$(bindir)"/llppac
-   install -Dm755 misc/llpp.inotify "$(DESTDIR)$(bindir)"/llpp.inotify
-   install -Dm755 misc/llpphtml "$(DESTDIR)$(bindir)"/llpphtml
-   install -Dm644 misc/llpp.desktop 
"$(DESTDIR)$(datarootdir)"/applications/llpp.desktop
-
-.PHONY: all clean install

Copied: llpp/repos/community-x86_64/GNUmakefile (from rev 723719, 
llpp/trunk/GNUmakefile)
===
--- GNUmakefile (rev 0)
+++ GNUmakefile 2020-10-12 19:42:47 UTC (rev 723720)
@@ -0,0 +1,95 @@
+MAKEFLAGS := -r
+
+VERSION = $(shell test -d .git && git describe --tags --dirty 2>/dev/null)
+ifeq ($(VERSION),)
+VERSION = 31
+endif
+
+# paths
+PREFIX ?= /usr/local
+bindir ?= $(PREFIX)/bin
+datarootdir ?= $(PREFIX)/share
+mandir ?= $(datarootdir)/man
+
+# includes and libs
+PKGCONF_DEPS := gumbo freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
+override CPPFLAGS += -D_GNU_SOURCE -DFFP
+override CFLAGS := $(CFLAGS) -g -std=c99 -pedantic -Wall -Wextra -Wshadow 
$(shell pkg-config 

[arch-commits] Commit in llpp/trunk (GNUmakefile PKGBUILD)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Monday, October 12, 2020 @ 19:42:27
  Author: eschwartz
Revision: 723719

upgpkg: llpp 33-1: upstream release

- manpages switched upstream from asciidoc to asciidoctor
- mupdf rebuild now depends on gumbo-parser, and due to the wonders of no
  pkg-config file and static libraries, we need to adapt linker flags

Modified:
  llpp/trunk/GNUmakefile
  llpp/trunk/PKGBUILD

-+
 GNUmakefile |6 +++---
 PKGBUILD|   12 ++--
 2 files changed, 9 insertions(+), 9 deletions(-)

Modified: GNUmakefile
===
--- GNUmakefile 2020-10-12 19:13:36 UTC (rev 723718)
+++ GNUmakefile 2020-10-12 19:42:27 UTC (rev 723719)
@@ -12,7 +12,7 @@
 mandir ?= $(datarootdir)/man
 
 # includes and libs
-PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
+PKGCONF_DEPS := gumbo freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
 override CPPFLAGS += -D_GNU_SOURCE -DFFP
 override CFLAGS := $(CFLAGS) -g -std=c99 -pedantic -Wall -Wextra -Wshadow 
$(shell pkg-config --cflags $(PKGCONF_DEPS))
 LDLIBS := -lpthread -lmupdf -lmupdf-third -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
@@ -77,8 +77,8 @@
 %.cmi: %.mli
$(COMPILE.ocaml) $(OUTPUT_OPTION) $<
 
-%.1: %.adoc adoc/asciidoc.conf
-   a2x -d manpage -f manpage --asciidoc-opts="-f adoc/asciidoc.conf 
--out-file=$@.xml" $<
+%.1: %.adoc
+   asciidoctor -b manpage -o $@ $<
 
 # special targets
 clean:

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 19:13:36 UTC (rev 723718)
+++ PKGBUILD2020-10-12 19:42:27 UTC (rev 723719)
@@ -2,15 +2,15 @@
 # Contributor: earnestly
 
 pkgname=llpp
-pkgver=32
+pkgver=33
 # Often breaks with mupdf, which means I'll occasionally need to pin a 
specific commit.
-_commit=74e6f8d66132636958f72bf1840d36de7a409ee1
-pkgrel=2
+_commit=3fb41e63167a01638c1bf808e876e2380fe7a1f6
+pkgrel=1
 pkgdesc='opengl accelerated pdf viewer based on mupdf'
 arch=('x86_64')
 url="https://github.com/moosotc/${pkgname};
 license=('GPL3')
-depends=('libgl' 'openjpeg2' 'jbig2dec' 'libjpeg-turbo' 'freetype2')
+depends=('libgl' 'openjpeg2' 'jbig2dec' 'libjpeg-turbo' 'freetype2' 
'gumbo-parser')
 optdepends=('djvulibre: llppac djvu conversion'
 'ghostscript: llppac ps, dvi, and djvu conversion'
 'unoconv: llppac office conversion'
@@ -17,7 +17,7 @@
 'librsvg: llppac svg conversion'
 'imagemagick: llppac image conversion'
 'inotify-tools: for the llpp.inotify autoreload wrapper')
-makedepends=('git' 'asciidoc' 'ocaml' 'ocaml-lablgl' 'libmupdf')
+makedepends=('git' 'asciidoctor' 'ocaml' 'ocaml-lablgl' 'libmupdf')
 
 # llpp seems to go through build systems like fasion, holomorph has provided a
 # very nice Makefile for building this software which has served well for
@@ -36,7 +36,7 @@
 'GNUmakefile')
 sha256sums=('SKIP'
 '5814846ad19d9ddd8e1412bf36d4c2dc1a32186261126ec63cdf19f308396458'
-'b764e6cc084ee472704faad2591f086beaf79c3c04dbf6f12711e050d9167028')
+'5771cc554407ff32ddd8c8982e8260687f31af37a4cb5e32875897ff5426a91f')
 
 pkgver() {
 cd "${srcdir}"/${pkgname}


[arch-commits] Commit in gitlab/repos (14 files)

2020-10-12 Thread Anatol Pomozov via arch-commits
Date: Monday, October 12, 2020 @ 19:13:36
  Author: anatolik
Revision: 723718

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab/repos/community-testing-x86_64/
  gitlab/repos/community-testing-x86_64/PKGBUILD
(from rev 723717, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-testing-x86_64/build_fix.patch
(from rev 723717, gitlab/trunk/build_fix.patch)
  gitlab/repos/community-testing-x86_64/configs.patch
(from rev 723717, gitlab/trunk/configs.patch)
  gitlab/repos/community-testing-x86_64/environment
(from rev 723717, gitlab/trunk/environment)
  gitlab/repos/community-testing-x86_64/gitlab-backup.service
(from rev 723717, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-testing-x86_64/gitlab-backup.timer
(from rev 723717, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-testing-x86_64/gitlab-mailroom.service
(from rev 723717, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-testing-x86_64/gitlab-puma.service
(from rev 723717, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-testing-x86_64/gitlab-sidekiq.service
(from rev 723717, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-testing-x86_64/gitlab.install
(from rev 723717, gitlab/trunk/gitlab.install)
  gitlab/repos/community-testing-x86_64/gitlab.logrotate
(from rev 723717, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-testing-x86_64/gitlab.target
(from rev 723717, gitlab/trunk/gitlab.target)
  gitlab/repos/community-testing-x86_64/gitlab.tmpfiles.d
(from rev 723717, gitlab/trunk/gitlab.tmpfiles.d)

-+
 PKGBUILD|  185 +++
 build_fix.patch |   23 +++
 configs.patch   |  309 ++
 environment |3 
 gitlab-backup.service   |   19 ++
 gitlab-backup.timer |   10 +
 gitlab-mailroom.service |   21 +++
 gitlab-puma.service |   34 +
 gitlab-sidekiq.service  |   30 
 gitlab.install  |   34 +
 gitlab.logrotate|6 
 gitlab.target   |7 +
 gitlab.tmpfiles.d   |1 
 13 files changed, 682 insertions(+)

Copied: gitlab/repos/community-testing-x86_64/PKGBUILD (from rev 723717, 
gitlab/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-12 19:13:36 UTC (rev 723718)
@@ -0,0 +1,185 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Jonas Heinrich 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+# Contributor: Caleb Maclennan 
+
+pkgname=gitlab
+pkgver=13.4.3
+pkgrel=1
+pkgdesc="Project management and code hosting application"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-foss;
+license=('MIT')
+options=(!buildflags)
+depends=('ruby' 'ruby-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs' 'openssl')
+makedepends=('cmake' 'postgresql' 'yarn' 'go' 'nodejs')
+optdepends=('postgresql: database backend'
+'python-docutils: reStructuredText markup language support'
+'smtp-server: mail server in order to receive mail notifications')
+backup=("etc/webapps/gitlab/database.yml"
+"etc/webapps/gitlab/gitlab.yml"
+"etc/webapps/gitlab/resque.yml"
+"etc/webapps/gitlab/puma.rb"
+"etc/webapps/gitlab/smtp_settings.rb"
+"etc/logrotate.d/gitlab")
+source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
+configs.patch
+build_fix.patch
+environment
+gitlab-puma.service
+gitlab-sidekiq.service
+gitlab-backup.service
+gitlab-mailroom.service
+gitlab-backup.timer
+gitlab.target
+gitlab.tmpfiles.d
+gitlab.logrotate)
+install='gitlab.install'
+sha512sums=('SKIP'
+
'8b8c06b44bfe4897b8499547a6d18cdf3d12b313c0e9887b1ca209f1c4f93718ff92ee48f5d6e7546a89dc61c4b3ddcbe73e619e609782a9412fc5dab43b6000'
+
'249b9aa00479bcbd6b41f14402e70fe5655e06f593ebc0ecae0fc4075bf3421f93cb8b5302bc8ca0e542c1a85f25c3fb957bdc79b3c09a3f393119777b687e63'
+
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
+
'75bf9e5ad238a862dfc2638101fb74101227d88958a5f0fdf1ced3833e403f91b6a5908dfb97c5172f75748737212bf87d05b7d39bbe90ed5d3a6c248c1c1ab6'
+
'18f4a31935d0626c26d1be1942b715128cf3edcb114f672af16e4a145d8ac693e1afc7d59094cae3702e47e4c6c4cb4a62a009bafcbec500e69120a2dd400a2a'
+
'8afffb8caafdaa7a39991a4e694efc5133af1dc201ae07f3dc3989dbabb983339941011ffdd1f97c63033c94a02a3a7a6eb3722001aa3e7155c16f6743aec4c8'
+

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

2020-10-12 Thread Anatol Pomozov via arch-commits
Date: Monday, October 12, 2020 @ 19:12:34
  Author: anatolik
Revision: 723717

upgpkg: gitlab 13.4.3-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 18:59:16 UTC (rev 723716)
+++ PKGBUILD2020-10-12 19:12:34 UTC (rev 723717)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=13.4.1
+pkgver=13.4.3
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')


[arch-commits] Commit in ldc/repos/community-staging-x86_64 (3 files)

2020-10-12 Thread Evangelos Foutras via arch-commits
Date: Monday, October 12, 2020 @ 18:59:16
  Author: foutrelis
Revision: 723716

archrelease: copy trunk to community-staging-x86_64

Added:
  ldc/repos/community-staging-x86_64/PKGBUILD
(from rev 723715, ldc/trunk/PKGBUILD)
Deleted:
  ldc/repos/community-staging-x86_64/PKGBUILD
  ldc/repos/community-staging-x86_64/fix-llvm_prefetch-for-LLVM-10.patch

-+
 PKGBUILD|  221 +-
 fix-llvm_prefetch-for-LLVM-10.patch |   55 
 2 files changed, 113 insertions(+), 163 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 18:59:12 UTC (rev 723715)
+++ PKGBUILD2020-10-12 18:59:16 UTC (rev 723716)
@@ -1,108 +0,0 @@
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasuns 
-# Contributor: Sven-Hendrik Haase 
-
-pkgname=('ldc' 'liblphobos')
-groups=('dlang' 'dlang-ldc')
-pkgver=1.23.0
-_pkgcommit=a83dc56ad5a6ba87023756c05b54b5824053da96
-_dversion=2.093.1
-_clangversion=10.0.1 # related to where ldc2 looks for compiler-rt sanitizers
-epoch=2
-pkgrel=2
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
-arch=('x86_64')
-url="https://github.com/ldc-developers/ldc;
-license=('BSD')
-makedepends=('git' 'cmake' 'llvm10' 'ldc')
-
-source=(
-"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
-"ldc-druntime::git+https://github.com/ldc-developers/druntime.git;
-"ldc-phobos::git+https://github.com/ldc-developers/phobos.git;
-"ldc-testsuite::git+https://github.com/ldc-developers/dmd-testsuite.git;
-)
-
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-cd "$srcdir/ldc"
-
-git submodule init
-git config submodule.druntime.url "$srcdir/ldc-druntime"
-git config submodule.phobos.url "$srcdir/ldc-phobos"
-git config submodule.tests/d2/dmd-testsuite.url "$srcdir/ldc-testsuite"
-git submodule update
-
-# Set version used for path construction in getFullClangCompilerRTLibPath()
-sed -i "s/ldc::llvm_version_base/\"$_clangversion\"/" driver/linker-gcc.cpp
-}
-
-build() {
-cd "$srcdir/ldc"
-
-mkdir -p build && cd build
-
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
--DBUILD_SHARED_LIBS=BOTH \
--DBUILD_LTO_LIBS=ON \
--DLDC_WITH_LLD=OFF \
--DD_COMPILER_FLAGS="-link-defaultlib-shared=false -linker=gold -flto=full" 
\
--DADDITIONAL_DEFAULT_LDC_SWITCHES="\"-link-defaultlib-shared\"" \
-..
-make
-}
-
-check() {
-cd "$srcdir/ldc/build"
-make all-test-runners
-}
-
-package_ldc() {
-depends=('liblphobos' 'llvm10-libs' 'gcc' 'compiler-rt')
-backup=('etc/ldc2.conf')
-provides=("d-compiler=$_dversion")
-
-cd "$srcdir/ldc/build"
-make install DESTDIR="$pkgdir"
-
-# move bash-completion
-mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
-mv "$pkgdir/etc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/"
-rm -rf "$pkgdir/etc/bash_completion.d"
-
-# remove liblphobos files
-rm -rf "$pkgdir/usr/include"
-rm -rf "$pkgdir/usr/lib"
-
-# symlinks
-ln -s /usr/share/bash-completion/completions/ldc2 
"$pkgdir/usr/share/bash-completion/completions/ldc"
-ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
-ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_liblphobos() {
-provides=('d-runtime' 'd-stdlib')
-depends=('curl')
-options=('staticlibs')
-
-cd "$srcdir/ldc/build"
-make install DESTDIR="$pkgdir"
-
-# remove ldc files
-rm -rf "$pkgdir/usr/bin/"
-rm -rf "$pkgdir/etc/"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ldc/repos/community-staging-x86_64/PKGBUILD (from rev 723715, 
ldc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 18:59:16 UTC (rev 723716)
@@ -0,0 +1,113 @@
+# Maintainer: Dan Printzell 
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.23.0
+_pkgcommit=a83dc56ad5a6ba87023756c05b54b5824053da96
+_dversion=2.093.1
+_clangversion=11.0.0 # related to where ldc2 looks for compiler-rt sanitizers
+epoch=2
+pkgrel=3
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc;
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'ldc')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
+

[arch-commits] Commit in prometheus-blackbox-exporter/repos/extra-x86_64 (4 files)

2020-10-12 Thread Jelle van der Waa via arch-commits
Date: Monday, October 12, 2020 @ 18:39:29
  Author: jelle
Revision: 398081

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
(from rev 398080, prometheus-blackbox-exporter/trunk/PKGBUILD)
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service
(from rev 398080, 
prometheus-blackbox-exporter/trunk/prometheus-blackbox-exporter.service)
Deleted:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service

--+
 PKGBUILD |   82 -
 prometheus-blackbox-exporter.service |   56 +++---
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 18:39:23 UTC (rev 398080)
+++ PKGBUILD2020-10-12 18:39:29 UTC (rev 398081)
@@ -1,41 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=prometheus-blackbox-exporter
-pkgver=0.17.0
-pkgrel=1
-pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
-arch=('x86_64')
-url="https://github.com/prometheus/blackbox_exporter;
-license=('Apache')
-depends=(glibc)
-makedepends=(go git)
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
-sha512sums=('9e79d083c5c8caebbc19b6feef04dd189bc91a72dcb3aa946a96543fbe28ae2c49cafeed3f42618747661421897adc17988ffc6cf0d7054cf0a385b85eeafc61'
-
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
-
-check() {
-  cd blackbox_exporter-$pkgver
-  go test ./...
-}
-
-build() {
-  cd blackbox_exporter-$pkgver
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-package() {
-  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
-  cd blackbox_exporter-$pkgver
-  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
-}

Copied: prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD (from rev 
398080, prometheus-blackbox-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 18:39:29 UTC (rev 398081)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=prometheus-blackbox-exporter
+pkgver=0.18.0
+pkgrel=1
+pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
+arch=('x86_64')
+url="https://github.com/prometheus/blackbox_exporter;
+license=('Apache')
+depends=(glibc)
+makedepends=(go git)
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
+sha512sums=('6579d190c755515d4e5f05e2b6ed4d811010874dba1e16eaf6052e97c655f87aec33550f22ff173d2f3bbc77d091fb4fccad059f62ca6fbb33a372d48ae692f0'
+
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
+
+check() {
+  cd blackbox_exporter-$pkgver
+  go test ./...
+}
+
+build() {
+  cd blackbox_exporter-$pkgver
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+  -X github.com/prometheus/common/version.Version=$pkgver \
+  -X github.com/prometheus/common/version.Revision=$pkgver \
+  -X github.com/prometheus/common/version.Branch=tarball \
+  -X github.com/prometheus/common/version.BuildUser=someone@builder \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+.
+}
+
+package() {
+  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
+  cd blackbox_exporter-$pkgver
+  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
+}

Deleted: prometheus-blackbox-exporter.service
===
--- prometheus-blackbox-exporter.service2020-10-12 18:39:23 UTC (rev 
398080)
+++ prometheus-blackbox-exporter.service2020-10-12 18:39:29 UTC (rev 
398081)
@@ -1,28 +0,0 @@

[arch-commits] Commit in prometheus-blackbox-exporter/trunk (PKGBUILD)

2020-10-12 Thread Jelle van der Waa via arch-commits
Date: Monday, October 12, 2020 @ 18:39:23
  Author: jelle
Revision: 398080

upgpkg: prometheus-blackbox-exporter 0.18.0-1

Modified:
  prometheus-blackbox-exporter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 18:02:42 UTC (rev 398079)
+++ PKGBUILD2020-10-12 18:39:23 UTC (rev 398080)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=prometheus-blackbox-exporter
-pkgver=0.17.0
+pkgver=0.18.0
 pkgrel=1
 pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=(glibc)
 makedepends=(go git)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
-sha512sums=('9e79d083c5c8caebbc19b6feef04dd189bc91a72dcb3aa946a96543fbe28ae2c49cafeed3f42618747661421897adc17988ffc6cf0d7054cf0a385b85eeafc61'
+sha512sums=('6579d190c755515d4e5f05e2b6ed4d811010874dba1e16eaf6052e97c655f87aec33550f22ff173d2f3bbc77d091fb4fccad059f62ca6fbb33a372d48ae692f0'
 
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
 
 check() {


[arch-commits] Commit in (js185)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 18:39:11
  Author: archange
Revision: 723714

Finally remove js185 now that CouchDB moved to newer versions

Deleted:
  js185/


[arch-commits] Commit in couchdb/repos/community-x86_64 (11 files)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 18:33:34
  Author: archange
Revision: 723712

archrelease: copy trunk to community-x86_64

Added:
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 723711, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 723711, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.sysusers
(from rev 723711, couchdb/trunk/couchdb.sysusers)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 723711, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-x86_64/datadirs.ini
(from rev 723711, couchdb/trunk/datadirs.ini)
Deleted:
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/couchdb-erlang22.patch
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.sysusers
  couchdb/repos/community-x86_64/couchdb.tmpfiles
  couchdb/repos/community-x86_64/datadirs.ini

+
 PKGBUILD   |  115 ++-
 couchdb-erlang22.patch |   49 
 couchdb.service|   62 -
 couchdb.sysusers   |2 
 couchdb.tmpfiles   |6 +-
 datadirs.ini   |6 +-
 6 files changed, 94 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 18:32:51 UTC (rev 723711)
+++ PKGBUILD2020-10-12 18:33:34 UTC (rev 723712)
@@ -1,59 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Sergej Pupykin 
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-# Contributor: Michael Fellinger 
-
-pkgname=couchdb
-pkgver=2.3.1
-pkgrel=4
-pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
-arch=('x86_64')
-url="https://couchdb.apache.org;
-license=('APACHE')
-depends=('icu' 'js185' 'zlib')
-makedepends=('erlang-nox')
-backup=('etc/couchdb/local.ini'
-'etc/couchdb/vm.args')
-source=("https://www-eu.apache.org/dist/couchdb/source/${pkgver}/apache-couchdb-${pkgver}.tar.gz"{,.asc}
-'couchdb.service'
-'couchdb.sysusers'
-'couchdb.tmpfiles'
-'datadirs.ini'
-'couchdb-erlang22.patch')
-sha256sums=('43eb8cec41eb52871bf22d35f3e2c2ce5b806ebdbce3594cf6b0438f2534227d'
-'SKIP'
-'293fe7ce16de6feb5927bf151360c7441f427f1d6bec73bc9ecb1e530be2b93a'
-'3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8'
-'0ce806cbc5e18e60b17be9fd2cdbd4c7f12cc84ca95b079efdede16ddb5f3efd'
-'937ca3498aab47b3f2226d027fa8a1a95de55cbb463373099e28cb9a6c7046ac'
-'b2342e84a6b2b79d732b4b701d54723d20f552a6b412eca039373a7b21a35e3c')
-validpgpkeys=('2EC788AE3F239FA13E82D215CDE711289384AE37'  # Joan Touzet (CODE 
SIGNING KEY) 
-  'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4') # Jan Lehnardt 

-
-prepare() {
-cd apache-couchdb-${pkgver}
-sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/files/couchdb.in
-patch -p1 -i ../couchdb-erlang22.patch # Support erlang 22
-}
-
-build() {
-cd apache-couchdb-${pkgver}
-./configure
-make release
-}
-
-package() {
-cd apache-couchdb-${pkgver}
-install -dm755 "${pkgdir}"/usr/lib/
-install -dm755 "${pkgdir}"/etc/couchdb/
-
-cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
-mv "${pkgdir}"/usr/lib/couchdb/etc/local.ini 
"${pkgdir}"/etc/couchdb/local.ini
-mv "${pkgdir}"/usr/lib/couchdb/etc/vm.args "${pkgdir}"/etc/couchdb/vm.args
-
-cd "${srcdir}"
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 datadirs.ini -t "${pkgdir}"/usr/lib/couchdb/etc/
-}

Copied: couchdb/repos/community-x86_64/PKGBUILD (from rev 723711, 
couchdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 18:33:34 UTC (rev 723712)
@@ -0,0 +1,56 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Sergej Pupykin 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+# Contributor: Michael Fellinger 
+
+pkgname=couchdb
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
+arch=(x86_64)
+url="https://couchdb.apache.org;
+license=(Apache)
+depends=(icu js68 zlib)
+makedepends=(erlang22-nox)
+backup=('etc/couchdb/local.ini'
+'etc/couchdb/vm.args')
+source=("https://www-eu.apache.org/dist/couchdb/source/${pkgver}/apache-couchdb-${pkgver}.tar.gz"{,.asc}
+couchdb.service
+couchdb.sysusers
+couchdb.tmpfiles
+datadirs.ini)
+sha256sums=(8ffe766bba2ba39a7b49689a0732afacf69caffdf8e2d95447e82fb173c78ca3
+SKIP
+

[arch-commits] Commit in couchdb/trunk (PKGBUILD couchdb-erlang22.patch)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 18:32:51
  Author: archange
Revision: 723711

upgpkg: couchdb 3.1.1-1

Also fixes FS#68106.

Modified:
  couchdb/trunk/PKGBUILD
Deleted:
  couchdb/trunk/couchdb-erlang22.patch

+
 PKGBUILD   |   73 ++-
 couchdb-erlang22.patch |   49 ---
 2 files changed, 35 insertions(+), 87 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 18:28:10 UTC (rev 723710)
+++ PKGBUILD2020-10-12 18:32:51 UTC (rev 723711)
@@ -4,56 +4,53 @@
 # Contributor: Michael Fellinger 
 
 pkgname=couchdb
-pkgver=2.3.1
-pkgrel=4
-pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
-arch=('x86_64')
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
+arch=(x86_64)
 url="https://couchdb.apache.org;
-license=('APACHE')
-depends=('icu' 'js185' 'zlib')
-makedepends=('erlang-nox')
+license=(Apache)
+depends=(icu js68 zlib)
+makedepends=(erlang22-nox)
 backup=('etc/couchdb/local.ini'
 'etc/couchdb/vm.args')
 
source=("https://www-eu.apache.org/dist/couchdb/source/${pkgver}/apache-couchdb-${pkgver}.tar.gz"{,.asc}
-'couchdb.service'
-'couchdb.sysusers'
-'couchdb.tmpfiles'
-'datadirs.ini'
-'couchdb-erlang22.patch')
-sha256sums=('43eb8cec41eb52871bf22d35f3e2c2ce5b806ebdbce3594cf6b0438f2534227d'
-'SKIP'
-'293fe7ce16de6feb5927bf151360c7441f427f1d6bec73bc9ecb1e530be2b93a'
-'3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8'
-'0ce806cbc5e18e60b17be9fd2cdbd4c7f12cc84ca95b079efdede16ddb5f3efd'
-'937ca3498aab47b3f2226d027fa8a1a95de55cbb463373099e28cb9a6c7046ac'
-'b2342e84a6b2b79d732b4b701d54723d20f552a6b412eca039373a7b21a35e3c')
-validpgpkeys=('2EC788AE3F239FA13E82D215CDE711289384AE37'  # Joan Touzet (CODE 
SIGNING KEY) 
-  'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4') # Jan Lehnardt 

+couchdb.service
+couchdb.sysusers
+couchdb.tmpfiles
+datadirs.ini)
+sha256sums=(8ffe766bba2ba39a7b49689a0732afacf69caffdf8e2d95447e82fb173c78ca3
+SKIP
+293fe7ce16de6feb5927bf151360c7441f427f1d6bec73bc9ecb1e530be2b93a
+3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8
+0ce806cbc5e18e60b17be9fd2cdbd4c7f12cc84ca95b079efdede16ddb5f3efd
+937ca3498aab47b3f2226d027fa8a1a95de55cbb463373099e28cb9a6c7046ac)
+validpgpkeys=(2EC788AE3F239FA13E82D215CDE711289384AE37  # Joan Touzet (CODE 
SIGNING KEY) 
+  D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4) # Jan Lehnardt 

 
 prepare() {
-cd apache-couchdb-${pkgver}
-sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/files/couchdb.in
-patch -p1 -i ../couchdb-erlang22.patch # Support erlang 22
+  cd apache-couchdb-${pkgver}
+  sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/files/couchdb.in
 }
 
 build() {
-cd apache-couchdb-${pkgver}
-./configure
-make release
+  cd apache-couchdb-${pkgver}
+  ./configure --spidermonkey-version 68
+  make release
 }
 
 package() {
-cd apache-couchdb-${pkgver}
-install -dm755 "${pkgdir}"/usr/lib/
-install -dm755 "${pkgdir}"/etc/couchdb/
+  cd apache-couchdb-${pkgver}
+  install -dm755 "${pkgdir}"/usr/lib/
+  install -dm755 "${pkgdir}"/etc/couchdb/
 
-cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
-mv "${pkgdir}"/usr/lib/couchdb/etc/local.ini 
"${pkgdir}"/etc/couchdb/local.ini
-mv "${pkgdir}"/usr/lib/couchdb/etc/vm.args "${pkgdir}"/etc/couchdb/vm.args
+  cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
+  mv "${pkgdir}"/usr/lib/couchdb/etc/local.ini 
"${pkgdir}"/etc/couchdb/local.ini
+  mv "${pkgdir}"/usr/lib/couchdb/etc/vm.args "${pkgdir}"/etc/couchdb/vm.args
 
-cd "${srcdir}"
-install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-install -Dm644 datadirs.ini -t "${pkgdir}"/usr/lib/couchdb/etc/
+  cd "${srcdir}"
+  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+  install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+  install -Dm644 datadirs.ini -t "${pkgdir}"/usr/lib/couchdb/etc/
 }

Deleted: couchdb-erlang22.patch
===
--- couchdb-erlang22.patch  2020-10-12 18:28:10 UTC (rev 723710)
+++ couchdb-erlang22.patch  2020-10-12 18:32:51 UTC (rev 723711)
@@ -1,49 +0,0 @@
-From 61fc0868699805733a8f4357783bcdd06629d708 Mon Sep 17 00:00:00 2001

[arch-commits] Commit in llpp/trunk (GNUmakefile)

2020-10-12 Thread Eli Schwartz via arch-commits
Date: Monday, October 12, 2020 @ 18:28:10
  Author: eschwartz
Revision: 723710

llpp: makefile: expand cflags once, upfront

optimization: ensure := is used to avoid running subprocesses once per target

Modified:
  llpp/trunk/GNUmakefile

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

Modified: GNUmakefile
===
--- GNUmakefile 2020-10-12 18:25:11 UTC (rev 723709)
+++ GNUmakefile 2020-10-12 18:28:10 UTC (rev 723710)
@@ -14,7 +14,7 @@
 # includes and libs
 PKGCONF_DEPS := freetype2 harfbuzz libopenjp2 libjpeg x11 zlib
 override CPPFLAGS += -D_GNU_SOURCE -DFFP
-override CFLAGS += -g -std=c99 -pedantic -Wall -Wextra -Wshadow $(shell 
pkg-config --cflags $(PKGCONF_DEPS))
+override CFLAGS := $(CFLAGS) -g -std=c99 -pedantic -Wall -Wextra -Wshadow 
$(shell pkg-config --cflags $(PKGCONF_DEPS))
 LDLIBS := -lpthread -lmupdf -lmupdf-third -ljbig2dec $(shell pkg-config --libs 
$(PKGCONF_DEPS))
 
 # ocaml


[arch-commits] Commit in hugo/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-12 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, October 12, 2020 @ 18:25:11
  Author: jlichtblau
Revision: 723709

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 723708, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 18:25:01 UTC (rev 723708)
+++ PKGBUILD2020-10-12 18:25:11 UTC (rev 723709)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.76.3
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets'
-'python-docutils: reStructuredText support')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('48e9d1f54063e00e1e7282f3e812c512303a929c4dd75b63d39a668a867829c293dd26867c6012223eed9c6630b54494b23f15b0cd1f79c92a865bcaabd542de')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -tags extended 
-  ./hugo gen man
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 723708, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 18:25:11 UTC (rev 723709)
@@ -0,0 +1,36 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.76.4
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets'
+'python-docutils: reStructuredText support')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('7a9e8714a485e26705365d3de495812d45cf7f7f6aed5929d055c8bf8f7ead98348d1154bb84d6e408b4af2fa87d510a5e86547a75e7e83e06286066c349dae7')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -tags extended 
+  ./hugo gen man
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+}


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

2020-10-12 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, October 12, 2020 @ 18:25:01
  Author: jlichtblau
Revision: 723708

upgpkg: hugo 0.76.4-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 17:37:42 UTC (rev 723707)
+++ PKGBUILD2020-10-12 18:25:01 UTC (rev 723708)
@@ -4,7 +4,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.76.3
+pkgver=0.76.4
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 optdepends=('pygmentize: syntax-highlight code snippets'
 'python-docutils: reStructuredText support')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('48e9d1f54063e00e1e7282f3e812c512303a929c4dd75b63d39a668a867829c293dd26867c6012223eed9c6630b54494b23f15b0cd1f79c92a865bcaabd542de')
+sha512sums=('7a9e8714a485e26705365d3de495812d45cf7f7f6aed5929d055c8bf8f7ead98348d1154bb84d6e408b4af2fa87d510a5e86547a75e7e83e06286066c349dae7')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}


[arch-commits] Commit in firefox-i18n/trunk (PKGBUILD)

2020-10-12 Thread Jan Steffens via arch-commits
Date: Monday, October 12, 2020 @ 18:02:42
  Author: heftig
Revision: 398079

81.0.2-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 17:15:29 UTC (rev 398078)
+++ PKGBUILD2020-10-12 18:02:42 UTC (rev 398079)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=81.0.1
+pkgver=81.0.2
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -136,99 +136,99 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('b80545063b8332af0bc57ac7bbdcf1598f7cb0fe881daa08be62f07c16ca'
-'bc4c202c2b437d6b489365178947bbc21bad1bd70fdc6f690e43e25ed18c5ff4'
-'a1378f766d8046a0caa9dce32766a039a37e91b2ef4e0f47c78413d2457bf6d2'
-'76f41e2629c8cdf86e71d8142e365fefd758629b281697f338d330110f10ad12'
-'1d50c6af6f1983cdfbaf1f1c842b25b327fd09e391fe93a64315291a2c1cefe6'
-'bcd145faa471f3bd2b663983596b66c6b7c92feac39529d461f7d880598d23ff'
-'34d311aa6818d532ac951ab079e1b6dbd676c290ff02f4e14f8b78ba37cea4d2'
-'42e72d45c69e72af03568d89e3ca2f5d8f7ee1ce40c32e78f580f4fb058ac748'
-'bd236745ec2bd3f6df17e3e61c50836c07a390297bffd544cde179a2ac66d8f1'
-'b607f84d2a59c0a6b7e3d0b188913e764793619fb45ecf3527877f714e50df66'
-'9a580d4872f0eb9ee515085f649c9b15f16e17b7ea68e0c2f66b817471a4511b'
-'5c365a320f0bd9a51171372b33465cfca9da05d85d6c6cacceb830f94312618d'
-'cdfff130f713350ef14425f5cb9afa2eb44c64b8e89f81f8cce3f40f20507f54'
-'9399773cbe866e19858446057f40c72863d0d129c4703bb56bbcffd7e75b5b36'
-'f44bd602e7e444f75d10c09ee634ea4e3528f872101628726efce1bf8fb39b89'
-'9ea51ece2e73c8c605b9e170d3a43db2275dee843d66c1823b4afc0ca06c0bf7'
-'c4a46d0b8f85d6326b1d27cb52f1ff754d50500449bb39f42c8f4af2022714c9'
-'cbb416d5a3eab1564651ea5d502ee86edc3c2976e68564b1f981526347b1b40d'
-'09bbcda63c0b12a889d256bc5c6ad19a6cef5b97230d34d3d8566f9aa7cb83e7'
-'593367f1901c894d4c9815f6d58ae84bc7ca452894d7756b9e1abc40c400c7fa'
-'84fbfc3d0929818073ddb5925cf999573221de9fb624f9dd2ad0723c737dbb36'
-'33d50b336e056249a2bc29f7bc2c702ca850f9f7c258ddcb0dbbabefdaf87b82'
-'0f74caf4c29a02e208465933f478cc6890d41b0f99c30172f4aa96fbbab3588b'
-'59ebb5c63a45fd8043f84d5c988ec764e187f6eccc6b5e271596c2c9fc05273b'
-'529363768807660dde4131d13c047d653dabba28a62f2716160c183ec430b73c'
-'1aad703e2c5c9f044925d101b323e70011c98305771b1b1a6744a81ffb8b22d3'
-'927dc690a463cec0fed9031b5e08b4600edf9dfb852861d04faf5aacac22936f'
-'fb308252d0ff4e304ab64ef1e2ed1731aace62962443e74eaa1cb0a09f950429'
-'d5ae7855411c7ddd5091ced66d384340a07532ce4770dcfe3aa4a4cfb7690e94'
-'73e0d7e4fdfed95165172046e2a4fef7999a2803fd28b67dca2534b5e27e534d'
-'d9faed065ae81181d0a9579ebb4af1d917ddba7ecb5edc10718052018abe8f93'
-'44c9132438c65df3b1626c0e7b503c14451f64b0d4d399cbfeb3566d13adb113'
-'b381858f0de13484f4247492b51e427d6d47f3eac40497ca5c92eca519c2b667'
-'78248e48306af49a48ef5c4264a1070ac701d4c809124012f57e3129dee19412'
-'6d0858efddfaa0da0a86d8c63d712e0ce2847028d6f9e7a7f0d192e0566aea9c'
-'bb53aaef0fd59176380642440952dfdefdb3c5c78b75105bd58cc140d503ffbd'
-'be125a2e8936e9bd3d4686d0f20e23a36bb9be3037a513a509742c44dc7d83d0'
-'3a3dc9e63033b2494b2d5255bda4b66ff1c8f93bbc3639d6b1175d9e1064445c'
-'2f7c0b8ef90905085fb551f027c7a8a82ac76db3aee477e6e338a33c8eeba041'
-'77711737c8ce30ed94ace4f7013136ec80a915862d664e79a7ddf5487fff9d49'
-'350e51f845666cfe19ee82eba4e462942dcbdf20bbaa6039a544006a1bb9646c'
-'6691850fd3cd59bd7de7f3e48127a9e4f0ffe2bcf2bf6572be10ff5fcf682e90'
-'71ea39c72fc2fc106a49252c9fdfb115ce0196a7672c4b82eb25aaa7a5244139'
-'bbf0ff350333598230ca634633d5defb28e92c77e7803e6e11483b87806b6d6b'
-'32484150f3804f724e2dd0f3db438c3cd2d4be573506faff5267d4f30dd434b2'
-'bd0691593ee3bc5bda3f22b8f2fcb5a314c878ff3ecedd454329729cb739aaba'
-'91e63d40fd4ecb3ebfeb80578750007cc62daf8a7a834681a2930d5c6c3164e3'
-'bc21bd7455f51fa6a654ab60576897cfc5d70148b75d3d5f18723ae491556232'
-'b998ac36f4d845c4cf2b36d8305dc77118d35fffbba26596e7fd2e8e7e55dca1'
-'1bcb05fa7ed3ee0d90dc476176942617e3199c5d1ff6531091a88f7078ae4570'
-'ac10f964db908ac2455a8bbe80b8d6bb17cf5174a533e80b62476104e130565f'
-'f831597b1bfbc908695bf6b71c2dcdac9f46e0840045d3a7cd36438c4faaf3e2'
-'74bd3b8eb4f372e8e67417558e8558b4ecb25d61330160186ff5c46cede5ec26'
-   

[arch-commits] Commit in performous/repos (7 files)

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Monday, October 12, 2020 @ 17:37:42
  Author: arojas
Revision: 723707

archrelease: copy trunk to community-staging-x86_64

Added:
  performous/repos/community-staging-x86_64/
  performous/repos/community-staging-x86_64/PKGBUILD
(from rev 723706, performous/trunk/PKGBUILD)
  performous/repos/community-staging-x86_64/boost-1.67.patch
(from rev 723706, performous/trunk/boost-1.67.patch)
  performous/repos/community-staging-x86_64/performous-boost-1.69.patch
(from rev 723706, performous/trunk/performous-boost-1.69.patch)
  performous/repos/community-staging-x86_64/performous-boost-1.70.patch
(from rev 723706, performous/trunk/performous-boost-1.70.patch)
  performous/repos/community-staging-x86_64/performous-libswresample.patch
(from rev 723706, performous/trunk/performous-libswresample.patch)
  performous/repos/community-staging-x86_64/performous-opencv4.patch
(from rev 723706, performous/trunk/performous-opencv4.patch)

+
 PKGBUILD   |   52 +
 boost-1.67.patch   |   22 ++
 performous-boost-1.69.patch|   22 ++
 performous-boost-1.70.patch|   10 +
 performous-libswresample.patch |  380 +++
 performous-opencv4.patch   |   41 
 6 files changed, 527 insertions(+)

Copied: performous/repos/community-staging-x86_64/PKGBUILD (from rev 723706, 
performous/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-12 17:37:42 UTC (rev 723707)
@@ -0,0 +1,52 @@
+# Maintainer : Laurent Carlier 
+# Contributor: Christoph Zeiler 
+
+pkgname=performous
+pkgver=1.1
+pkgrel=26
+pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"'
+arch=('x86_64')
+url="https://performous.org/;
+license=('GPL')
+depends=('boost-libs' 'libepoxy' 'libxml++2.6' 'portaudio' 'portmidi' 
'librsvg' 'ffmpeg' 'opencv' 'sdl2')
+makedepends=('cmake' 'pkgconfig' 'help2man' 'boost' 'mesa')
+optdepends=('performous-freesongs: free songs for performous')
+source=($pkgname-$pkgver.tar.gz::https://github.com/performous/${pkgname}/archive/${pkgver}.tar.gz
+boost-1.67.patch
+performous-libswresample.patch
+performous-opencv4.patch
+performous-boost-1.69.patch
+performous-boost-1.70.patch)
+sha512sums=('6659aa03960e68d7af65b072e179e42b122d2a39d25229c6daf765146379a115a52e51c1dc2bc69081ea17fe7a22f1d7007b7cf9e09bc32d134c3ad8e3444dd1'
+
'dde4ac66d92a5a269237abb27fc5140bf87fd07b1d1e333d0e47c13b05a66b08347883380a575f0635c871236519710e791d99d3bd06700dd48341f5e50fd8b1'
+
'f85b9a5c1b1bf0f1f5df7fb13945856cbca19bc5e49e3bb6f3cff302110b08275e97496ec70f23a8e9c77246b92ddde82652888d6a4c2e888a8bae311f17'
+
'854d969de951a5f380ddd1523b3d66639ef19b16af161466dfef3c697280c95884a3e34258dc86bb7eef1143ca24de44ae2dfccb5ce76fd333784b62f0762f56'
+
'6e2d619ba55294ad901f84e3d3a30fe08f092521b4e19041ce4eb19dddc3d8021dfd5697947489a8312246c71ff7b544af4562fa4dfc744f9c27c7bc59b8e9bd'
+
'7a4a11f0150930ea0527067519487629e714bc732eb111c1d4ca9b13cd8d0775182b22f8a96093223f7aab8524f63bdf901886169e6559adcd5e6b6a9b14edb4')
+
+prepare() {
+  cd performous-${pkgver}
+  patch -Np1 -i ../boost-1.67.patch
+  patch -Np1 -i ../performous-libswresample.patch
+  patch -p1 -i ../performous-opencv4.patch # Fix build with openCV 4
+  patch -p1 -i ../performous-boost-1.69.patch # Fix build with boost 1.69
+  patch -p1 -i ../performous-boost-1.70.patch # Fix build with boost 1.70
+}
+
+build() {
+  cd performous-${pkgver}
+
+  mkdir -p build
+  cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_CXX_FLAGS="${CXXFLAGS} -I/usr/include/harfbuzz" # Workaround build 
failure with pango 1.44
+  make
+}
+
+package() {
+  cd performous-${pkgver}/build
+
+  make DESTDIR="$pkgdir" install
+}

Copied: performous/repos/community-staging-x86_64/boost-1.67.patch (from rev 
723706, performous/trunk/boost-1.67.patch)
===
--- community-staging-x86_64/boost-1.67.patch   (rev 0)
+++ community-staging-x86_64/boost-1.67.patch   2020-10-12 17:37:42 UTC (rev 
723707)
@@ -0,0 +1,22 @@
+Only in performous-1.1: build
+diff -upr performous-1.1.orig/game/audio.cc performous-1.1/game/audio.cc
+--- performous-1.1.orig/game/audio.cc  2016-01-23 12:40:01.0 +0200
 performous-1.1/game/audio.cc   2018-06-03 03:29:35.251425495 +0300
+@@ -77,7 +77,7 @@ class AudioClock {
+   static ptime getTime() { return microsec_clock::universal_time(); }
+   // Conversion helpers
+   static double getSeconds(time_duration t) { return 1e-6 * 
t.total_microseconds(); }
+-  static time_duration getDuration(double seconds) { return 
microseconds(1e6 * seconds); }
++  static time_duration getDuration(double seconds) { 

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

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Monday, October 12, 2020 @ 17:37:25
  Author: arojas
Revision: 723706

opencv 4.5 rebuild

Modified:
  performous/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 17:35:32 UTC (rev 723705)
+++ PKGBUILD2020-10-12 17:37:25 UTC (rev 723706)
@@ -3,7 +3,7 @@
 
 pkgname=performous
 pkgver=1.1
-pkgrel=25
+pkgrel=26
 pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"'
 arch=('x86_64')
 url="https://performous.org/;


[arch-commits] Commit in nomacs/repos (3 files)

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Monday, October 12, 2020 @ 17:35:32
  Author: arojas
Revision: 723705

archrelease: copy trunk to community-staging-x86_64

Added:
  nomacs/repos/community-staging-x86_64/
  nomacs/repos/community-staging-x86_64/PKGBUILD
(from rev 723704, nomacs/trunk/PKGBUILD)
  nomacs/repos/community-staging-x86_64/nomacs-3.17.2206-quazip-1.0.0.patch
(from rev 723704, nomacs/trunk/nomacs-3.17.2206-quazip-1.0.0.patch)

-+
 PKGBUILD|   54 +++
 nomacs-3.17.2206-quazip-1.0.0.patch |  479 ++
 2 files changed, 533 insertions(+)

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


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

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Monday, October 12, 2020 @ 17:35:16
  Author: arojas
Revision: 723704

opencv 4.5 rebuild

Modified:
  nomacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 17:31:26 UTC (rev 723703)
+++ PKGBUILD2020-10-12 17:35:16 UTC (rev 723704)
@@ -4,7 +4,7 @@
 _plugins_pkgver=3.16
 pkgname=nomacs
 pkgver=3.17.2206
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A Qt image viewer"
 arch=('x86_64')


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

2020-10-12 Thread Antonio Rojas via arch-commits
Date: Monday, October 12, 2020 @ 17:31:14
  Author: arojas
Revision: 723702

opencv 4.5 rebuild

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-12 17:29:18 UTC (rev 723701)
+++ PKGBUILD2020-10-12 17:31:14 UTC (rev 723702)
@@ -7,7 +7,7 @@
 pkgbase=gmic
 pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic digikam-plugin-gmic)
 pkgver=2.9.2
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 url="https://gmic.eu/;
 license=(custom:CeCILL)


  1   2   3   >