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

2022-09-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 8, 2022 @ 21:04:22
  Author: anatolik
Revision: 1296916

archrelease: copy trunk to community-x86_64

Added:
  crystal/repos/community-x86_64/PKGBUILD
(from rev 1296915, crystal/trunk/PKGBUILD)
Deleted:
  crystal/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  132 ++---
 1 file changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-08 21:04:02 UTC (rev 1296915)
+++ PKGBUILD2022-09-08 21:04:22 UTC (rev 1296916)
@@ -1,66 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=1.5.0
-pkgrel=2
-pkgdesc='The Crystal Programming Language'
-arch=(x86_64)
-url='https://crystal-lang.org'
-license=(Apache)
-depends=(gc pcre libevent llvm-libs)
-makedepends=(libxml2 llvm crystal) # to compile version N we need crystal 
compiler of N-1 version
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('f53e459ef6c7227df922a76fb62e350c90d52d30bfaa84b90feda9731bb98655')
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 interpreter=1 \
-   FLAGS="--release --no-debug" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-  return # tests require too much RAM, disable it temporary
-
-  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal" \
-PATH=".build:$PATH"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib" "$pkgdir/usr/share/man/man1"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r docs "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 man/crystal.1 "$pkgdir/usr/share/man/man1/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-x86_64/PKGBUILD (from rev 1296915, 
crystal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-08 21:04:22 UTC (rev 1296916)
@@ -0,0 +1,66 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='The Crystal Programming Language'
+arch=(x86_64)
+url='https://crystal-lang.org'
+license=(Apache)
+depends=(gc pcre libevent llvm-libs)
+makedepends=(libxml2 llvm crystal) # to compile version N we need crystal 
compiler of N-1 version
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+sha256sums=('d6d2ed257c688a81c68bad63a9796d34aab3a5667f7e3a86d22f9fce2f8c56fc')
+
+build() {
+  cd $pkgname-$pkgver
+
+  make release=1 interpreter=1 \
+   FLAGS="--release --no-debug" \
+   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+   CRYSTAL_CONFIG_VERSION="$pkgver" \
+   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
+   CRYSTAL_CACHE_DIR="/tmp/crystal"
+  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
+}
+
+check() {
+  cd $pkgname-$pkgver
+  return # tests require too much RAM, disable it temporary
+
+  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+CRYSTAL_CONFIG_VERSION="$pkgver" \
+CRYSTAL_CACHE_DIR="/tmp/crystal" \
+PATH=".build:$PATH"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # /usr/bin/crystalcompiled executable
+  # /usr/lib/crystal/   compiler src & core libs
+  # /usr/share/doc/crystal/api  api docs
+  # /usr/share/doc/crystal/samples/ samples
+
+  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
+
+  install -dm755 "$pkgdir/usr/lib" "$pkgdir/usr/share/man/man1"
+  cp -r src "$pkgdir/

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

2022-09-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 8, 2022 @ 21:04:02
  Author: anatolik
Revision: 1296915

upgpkg: crystal 1.5.1-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-08 21:02:08 UTC (rev 1296914)
+++ PKGBUILD2022-09-08 21:04:02 UTC (rev 1296915)
@@ -2,8 +2,8 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=1.5.0
-pkgrel=2
+pkgver=1.5.1
+pkgrel=1
 pkgdesc='The Crystal Programming Language'
 arch=(x86_64)
 url='https://crystal-lang.org'
@@ -16,7 +16,7 @@
 'gmp: For BigInt support'
 'libxml2: For XML support')
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('f53e459ef6c7227df922a76fb62e350c90d52d30bfaa84b90feda9731bb98655')
+sha256sums=('d6d2ed257c688a81c68bad63a9796d34aab3a5667f7e3a86d22f9fce2f8c56fc')
 
 build() {
   cd $pkgname-$pkgver



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

2022-09-07 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 7, 2022 @ 21:52:22
  Author: anatolik
Revision: 1296126

archrelease: copy trunk to community-x86_64

Added:
  cartridge-cli/repos/community-x86_64/
  cartridge-cli/repos/community-x86_64/PKGBUILD
(from rev 1296125, cartridge-cli/trunk/PKGBUILD)

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

Copied: cartridge-cli/repos/community-x86_64/PKGBUILD (from rev 1296125, 
cartridge-cli/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-09-07 21:52:22 UTC (rev 1296126)
@@ -0,0 +1,30 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=cartridge-cli
+pkgrel=1
+pkgver=2.12.2
+pkgdesc='Tarantool Cartridge command-line utility'
+arch=(x86_64)
+url="https://tarantool.io/";
+license=(BSD)
+options=(!lto) # due to go 'relocation target _cgo_yield not defined' error
+depends=(glibc)
+makedepends=(go mage)
+source=(cartridge-cli-$pkgver.tar.gz::https://github.com/tarantool/cartridge-cli/archive/refs/tags/$pkgver.tar.gz)
+sha256sums=('d16cd3daac51214b67fb42a971424e5cc5dff76f9f3322085c3d1dbab433fd2a')
+
+build() { 
+  cd $pkgname-$pkgver
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  mage build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 ./cartridge "$pkgdir"/usr/bin/cartridge
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in (4 files)

2022-09-07 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 7, 2022 @ 21:51:55
  Author: anatolik
Revision: 1296125

Add tarantool cartridge CLI tool to [community]

Added:
  cartridge-cli/
  cartridge-cli/repos/
  cartridge-cli/trunk/
  cartridge-cli/trunk/PKGBUILD

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

Added: cartridge-cli/trunk/PKGBUILD
===
--- cartridge-cli/trunk/PKGBUILD(rev 0)
+++ cartridge-cli/trunk/PKGBUILD2022-09-07 21:51:55 UTC (rev 1296125)
@@ -0,0 +1,30 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=cartridge-cli
+pkgrel=1
+pkgver=2.12.2
+pkgdesc='Tarantool Cartridge command-line utility'
+arch=(x86_64)
+url="https://tarantool.io/";
+license=(BSD)
+options=(!lto) # due to go 'relocation target _cgo_yield not defined' error
+depends=(glibc)
+makedepends=(go mage)
+source=(cartridge-cli-$pkgver.tar.gz::https://github.com/tarantool/cartridge-cli/archive/refs/tags/$pkgver.tar.gz)
+sha256sums=('d16cd3daac51214b67fb42a971424e5cc5dff76f9f3322085c3d1dbab433fd2a')
+
+build() { 
+  cd $pkgname-$pkgver
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  mage build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 ./cartridge "$pkgdir"/usr/bin/cartridge
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-09-06 Thread Anatol Pomozov via arch-commits
Date: Tuesday, September 6, 2022 @ 17:28:01
  Author: anatolik
Revision: 1294465

archrelease: copy trunk to community-x86_64

Added:
  mage/repos/community-x86_64/
  mage/repos/community-x86_64/PKGBUILD
(from rev 1294464, mage/trunk/PKGBUILD)

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

Copied: mage/repos/community-x86_64/PKGBUILD (from rev 1294464, 
mage/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-09-06 17:28:01 UTC (rev 1294465)
@@ -0,0 +1,43 @@
+# Contributor: Sven Greb 
+# Contributor: Arctic Ice Studio 
+
+pkgname=mage
+pkgver=1.13.0
+pkgrel=2
+pkgdesc="A Make/rake-like build tool using Go"
+arch=("x86_64")
+url="https://magefile.org";
+license=("Apache")
+makedepends=(go)
+source=($pkgname-$pkgver.tar.gz::https://github.com/magefile/mage/archive/refs/tags/v$pkgver.tar.gz)
+sha256sums=('afe6e764b605ce010cde732abc799ef19bb7f0b6b77bfa97091701a8b86a9af6')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # mage is build with mage itself, therefore we simluate the execution of the 
provided `bootstrap.go` installation
+  # file that is recommended by the author.
+  # The file builds mage when mage itself is not installed on the target 
system yet and included metadata information
+  # for the binary.
+
+  # References:
+  #   1. https://github.com/magefile/mage/blob/fe9f9420/.goreleaser.yml#L27
+  #   2. https://github.com/magefile/mage/blob/fe9f9420/.goreleaser.yml#L10
+  export CGO_ENABLED=0
+  local BUILD_DATE="$(date --rfc-3339=date 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}")"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X \"github.com/magefile/mage/mage.timestamp=${BUILD_DATE}\" \
+  -X \"github.com/magefile/mage/mage.gitTag=v$pkgver\" \
+  -extldflags \"${LDFLAGS}\"" \
+-o build/"$pkgname" .
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm755 build/"$pkgname" -t "$pkgdir/usr/bin/"
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2022-09-06 Thread Anatol Pomozov via arch-commits
Date: Tuesday, September 6, 2022 @ 17:25:21
  Author: anatolik
Revision: 1294464

mage: move the package from AUR to [community]

Added:
  mage/
  mage/repos/
  mage/trunk/
  mage/trunk/PKGBUILD

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

Added: mage/trunk/PKGBUILD
===
--- mage/trunk/PKGBUILD (rev 0)
+++ mage/trunk/PKGBUILD 2022-09-06 17:25:21 UTC (rev 1294464)
@@ -0,0 +1,43 @@
+# Contributor: Sven Greb 
+# Contributor: Arctic Ice Studio 
+
+pkgname=mage
+pkgver=1.13.0
+pkgrel=2
+pkgdesc="A Make/rake-like build tool using Go"
+arch=("x86_64")
+url="https://magefile.org";
+license=("Apache")
+makedepends=(go)
+source=($pkgname-$pkgver.tar.gz::https://github.com/magefile/mage/archive/refs/tags/v$pkgver.tar.gz)
+sha256sums=('afe6e764b605ce010cde732abc799ef19bb7f0b6b77bfa97091701a8b86a9af6')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # mage is build with mage itself, therefore we simluate the execution of the 
provided `bootstrap.go` installation
+  # file that is recommended by the author.
+  # The file builds mage when mage itself is not installed on the target 
system yet and included metadata information
+  # for the binary.
+
+  # References:
+  #   1. https://github.com/magefile/mage/blob/fe9f9420/.goreleaser.yml#L27
+  #   2. https://github.com/magefile/mage/blob/fe9f9420/.goreleaser.yml#L10
+  export CGO_ENABLED=0
+  local BUILD_DATE="$(date --rfc-3339=date 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}")"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-X \"github.com/magefile/mage/mage.timestamp=${BUILD_DATE}\" \
+  -X \"github.com/magefile/mage/mage.gitTag=v$pkgver\" \
+  -extldflags \"${LDFLAGS}\"" \
+-o build/"$pkgname" .
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm755 build/"$pkgname" -t "$pkgdir/usr/bin/"
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2022-09-02 Thread Anatol Pomozov via arch-commits
Date: Friday, September 2, 2022 @ 15:22:45
  Author: anatolik
Revision: 1290917

archrelease: copy trunk to community-x86_64

Added:
  tarantool/repos/community-x86_64/PKGBUILD
(from rev 1290916, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-x86_64/tarantool.sysusers
(from rev 1290916, tarantool/trunk/tarantool.sysusers)
Deleted:
  tarantool/repos/community-x86_64/PKGBUILD
  tarantool/repos/community-x86_64/tarantool.sysusers

+
 PKGBUILD   |  226 +--
 tarantool.sysusers |4 
 2 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-02 15:22:22 UTC (rev 1290916)
+++ PKGBUILD2022-09-02 15:22:45 UTC (rev 1290917)
@@ -1,113 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=tarantool
-pkgver=2.10.1
-pkgrel=1
-pkgdesc='Lua application server integrated with a database management system'
-arch=(x86_64)
-url='https://www.tarantool.org'
-license=(BSD)
-depends=(readline ncurses zlib libyaml openssl libunwind icu)
-makedepends=(git cmake systemd)
-checkdepends=(python-gevent python-tarantool)
-source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
-git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
-git+https://github.com/tarantool/libyaml.git
-git+https://github.com/tarantool/msgpuck.git
-git+https://github.com/luafun/luafun.git
-git+https://github.com/tarantool/test-run.git
-git+https://github.com/tarantool/small.git
-git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.3-tarantool
-git+https://github.com/tarantool/decNumber.git
-git+https://github.com/tarantool/curl.git
-git+https://github.com/tarantool/c-ares.git
-git+https://github.com/tarantool/xxHash
-git+https://github.com/tarantool/c-dt.git
-git+https://github.com/tarantool/lua-zlib.git
-git+https://github.com/tarantool/luazip.git
-git+https://github.com/tarantool/nghttp2.git
-
git+https://github.com/tarantool/libunwind.git#branch=libunwind-1.6.2-tarantool
-git+https://github.com/tarantool/tz.git
-tarantool.sysusers)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
-
-prepare() {
-  cd tarantool
-
-  git submodule init
-  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
-  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
-  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
-  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
-  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
-  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
-  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
-  git config -f .gitmodules 'submodule.third_party/luarocks.url' 
"$srcdir/luarocks"
-  git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
-  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
-  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
-  git config -f .gitmodules 'submodule.third_party/xxHash.url' "$srcdir/xxHash"
-  git config -f .gitmodules 'submodule.third_party/c-dt.url' "$srcdir/c-dt"
-  git config -f .gitmodules 'submodule.third_party/lua-zlib.url' 
"$srcdir/lua-zlib"
-  git config -f .gitmodules 'submodule.third_party/luazip.url' "$srcdir/luazip"
-  git config -f .gitmodules 'submodule.third_party/nghttp2.url' 
"$srcdir/nghttp2"
-  git config -f .gitmodules 'submodule.third_party/libunwind.url' 
"$srcdir/libunwind"
-  git config -f .gitmodules 'submodule.third_party/tz.url' "$srcdir/tz"
-
-  git submodule sync
-  git submodule update
-}
-
-build() {
-  cd tarantool
-
-  # tarantool uses git submodule, handle this
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_BACKTRACE:BOOL=ON \
--DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
--DENABLE_LTO:BOOL=ON \
-.
-  make
-}
-
-check() {
-  cd "$srcdir/tarantool/test"
-  python test-run.py --suite box
-}
-
-package() {
-  cd tarantool
-  make install DESTDIR="$pkgdir"
-
-  sed 's|/var/run/|/run/|' -i "$pkgd

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

2022-09-02 Thread Anatol Pomozov via arch-commits
Date: Friday, September 2, 2022 @ 15:22:22
  Author: anatolik
Revision: 1290916

upgpkg: tarantool 2.10.2-1

Modified:
  tarantool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-02 14:11:08 UTC (rev 1290915)
+++ PKGBUILD2022-09-02 15:22:22 UTC (rev 1290916)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.10.1
+pkgver=2.10.2
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)



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

2022-09-01 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 1, 2022 @ 17:40:28
  Author: anatolik
Revision: 1290390

archrelease: copy trunk to community-x86_64

Added:
  rocksdb/repos/community-x86_64/PKGBUILD
(from rev 1290389, rocksdb/trunk/PKGBUILD)
Deleted:
  rocksdb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-01 17:40:08 UTC (rev 1290389)
+++ PKGBUILD2022-09-01 17:40:28 UTC (rev 1290390)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: László Várady 
-
-pkgname=rocksdb
-pkgver=7.4.5
-pkgrel=1
-pkgdesc='Embedded key-value store for fast storage'
-arch=(x86_64)
-url="https://rocksdb.org/";
-license=(GPL2 Apache)
-depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
-makedepends=(python)
-source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
-sha256sums=('af237cbdde7b7b7a0ee8a5858e9d49ed71964801cf768052ce0cdfd302943cc2')
-
-build() {
-  cd rocksdb-$pkgver
-  PORTABLE=1 USE_RTTI=1 make shared_lib
-}
-
-check() {
-  cd rocksdb-$pkgver
-  # make check # fails due to https://github.com/facebook/rocksdb/issues/8974
-}
-
-package() {
-  cd rocksdb-$pkgver
-  make install-shared DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: rocksdb/repos/community-x86_64/PKGBUILD (from rev 1290389, 
rocksdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-09-01 17:40:28 UTC (rev 1290390)
@@ -0,0 +1,29 @@
+# Maintainer: Anatol Pomozov
+# Contributor: László Várady 
+
+pkgname=rocksdb
+pkgver=7.5.3
+pkgrel=1
+pkgdesc='Embedded key-value store for fast storage'
+arch=(x86_64)
+url="https://rocksdb.org/";
+license=(GPL2 Apache)
+depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
+makedepends=(python)
+source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
+sha256sums=('c9f8cb3f14622a9bb2ead81093720d0660784352f7f53f44a990dc850a0caca1')
+
+build() {
+  cd rocksdb-$pkgver
+  PORTABLE=1 USE_RTTI=1 make shared_lib
+}
+
+check() {
+  cd rocksdb-$pkgver
+  # make check # fails due to https://github.com/facebook/rocksdb/issues/8974
+}
+
+package() {
+  cd rocksdb-$pkgver
+  make install-shared DESTDIR="$pkgdir" PREFIX=/usr
+}



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

2022-09-01 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 1, 2022 @ 17:40:08
  Author: anatolik
Revision: 1290389

upgpkg: rocksdb 7.5.3-1

Modified:
  rocksdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-09-01 17:24:07 UTC (rev 1290388)
+++ PKGBUILD2022-09-01 17:40:08 UTC (rev 1290389)
@@ -2,7 +2,7 @@
 # Contributor: László Várady 
 
 pkgname=rocksdb
-pkgver=7.4.5
+pkgver=7.5.3
 pkgrel=1
 pkgdesc='Embedded key-value store for fast storage'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
 makedepends=(python)
 
source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
-sha256sums=('af237cbdde7b7b7a0ee8a5858e9d49ed71964801cf768052ce0cdfd302943cc2')
+sha256sums=('c9f8cb3f14622a9bb2ead81093720d0660784352f7f53f44a990dc850a0caca1')
 
 build() {
   cd rocksdb-$pkgver



[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 1, 2022 @ 00:52:33
  Author: anatolik
Revision: 1289751

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  370 
 configs.patch   |  696 +++---
 environment |6 
 fixes.patch |   40 +-
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +-
 gitlab-puma.service |   68 ++--
 gitlab-sidekiq.service  |   60 +--
 gitlab.install  |   68 ++--
 gitlab.logrotate|   12 
 gitlab.target   |   14 
 gitlab.tmpfiles.d   |2 
 13 files changed, 718 insertions(+), 718 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-09-01 00:51:24 UTC (rev 1289750)
+++ PKGBUILD2022-09-01 00:52:33 UTC (rev 1289751)
@@ -1,185 +0,0 @@
-# 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=15.3.1
-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=('ruby2.7' '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
-fixes.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'
-
'cd93f745f908800237034f639f1776e4d3111c4375d93e3d44be9b4b25f2e3a39ffaa43c70c3d32e1b534cbc968694288e742ff4052e5f2091cb74cf441170c6'
-
'3eb5058d6edc2d16f5558a3ee485ba796aa64fb4b9eb7595390322344b809fcb47a45be9d7fe36c822ac2724aeecb2905a0ea9a868a56349ac2bc5c8c9f070e3'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-
'451a030940f124bccd6d29c1924861b361d52db32cff6e745c144286c2afc7065e117f825721145ed2dd

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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 1, 2022 @ 00:51:24
  Author: anatolik
Revision: 1289750

upgpkg: gitlab 15.3.2-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-31 23:03:41 UTC (rev 1289749)
+++ PKGBUILD2022-09-01 00:51:24 UTC (rev 1289750)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=15.3.1
+pkgver=15.3.2
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:36:09
  Author: anatolik
Revision: 1289169

archrelease: copy trunk to community-x86_64

Added:
  bpftrace/repos/community-x86_64/PKGBUILD
(from rev 1289168, bpftrace/trunk/PKGBUILD)
  bpftrace/repos/community-x86_64/bcc-025.patch
(from rev 1289168, bpftrace/trunk/bcc-025.patch)
  bpftrace/repos/community-x86_64/binutils-239.patch
(from rev 1289168, bpftrace/trunk/binutils-239.patch)
Deleted:
  bpftrace/repos/community-x86_64/PKGBUILD
  bpftrace/repos/community-x86_64/bcc-025.patch
  bpftrace/repos/community-x86_64/binutils-239.patch

+
 PKGBUILD   |   66 ---
 bcc-025.patch  |  176 +--
 binutils-239.patch |  164 +++
 3 files changed, 198 insertions(+), 208 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-31 15:35:42 UTC (rev 1289168)
+++ PKGBUILD2022-08-31 15:36:09 UTC (rev 1289169)
@@ -1,38 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Tommaso Sardelli 
-
-pkgname=bpftrace
-pkgver=0.15.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' 'llvm13-libs' 'clang13' 'bcc' 'libbpf')
-makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
- 'asciidoctor' 'xxd')
-options=(!strip)
-source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";
-binutils-239.patch
-bcc-025.patch)
-sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a'
-
'49d168b4a40898eef688196dfed12423392cd56635c63c2a32e3c5a5fb4a8757fee3f4b31df9ba43736d7c0a3ad38a14d6ceb07cdfc73d8598b48d6c17727ba2'
-
'22ef3d05790416b4286ea9931646c3940877da8cf02b9645edbc753a4adb75e90f233b533d0c2c790eb62592c6af6487c02a502ecca8d547ec3d329a2aa71f64')
-
-prepare() {
-  cd bpftrace-$pkgver
-  patch -p1 < ../bcc-025.patch # 
https://github.com/iovisor/bpftrace/issues/2340
-  patch -p1 < ../binutils-239.patch # 
https://github.com/iovisor/bpftrace/pull/2287
-}
-
-build() {
-  cd bpftrace-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DLLVM_DIR=/usr/lib/llvm13/lib/cmake/llvm/ -G Ninja -B build
-  ninja -C build
-}
-
-package() {
-  cd bpftrace-$pkgver
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: bpftrace/repos/community-x86_64/PKGBUILD (from rev 1289168, 
bpftrace/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-31 15:36:09 UTC (rev 1289169)
@@ -0,0 +1,28 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Tommaso Sardelli 
+
+pkgname=bpftrace
+pkgver=0.16.0
+pkgrel=1
+pkgdesc='High-level tracing language for Linux eBPF'
+arch=('x86_64')
+url='https://github.com/iovisor/bpftrace'
+license=('Apache')
+depends=('libelf' 'zlib' 'llvm13-libs' 'clang13' 'bcc' 'libbpf')
+makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
+ 'asciidoctor' 'xxd')
+options=(!strip)
+source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";)
+sha512sums=('52ca4fea4e2f8d2cbf0f9f1bc69af0ee3408201f019006dd2e838b9458cfc01761eba3df24c39e05cf93220d85d0cecc69bb44ec72f9f44cec0eb94479bff734')
+
+build() {
+  cd bpftrace-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DLLVM_DIR=/usr/lib/llvm13/lib/cmake/llvm/ -G Ninja -B build
+  ninja -C build
+}
+
+package() {
+  cd bpftrace-$pkgver
+  DESTDIR="$pkgdir" ninja -C build install
+}

Deleted: bcc-025.patch
===
--- bcc-025.patch   2022-08-31 15:35:42 UTC (rev 1289168)
+++ bcc-025.patch   2022-08-31 15:36:09 UTC (rev 1289169)
@@ -1,88 +0,0 @@
-From f86c3bde84d9e75ec2780a51a1ca7dc20a4740e6 Mon Sep 17 00:00:00 2001
-From: Dominique Martinet 
-Date: Thu, 25 Aug 2022 21:47:30 +0900
-Subject: [PATCH] Fix builds against bcc >= 0.25.0
-
-libbpf 1.0.0 removed bpf_load_program_attr in
-https://github.com/libbpf/libbpf/commit/9476dce6fe905a6bf1d4c483f7b2b8575c4ffb2d
-and bcc 0.25.0 in turn changed bcc_prog_load_xattr to use
-bpf_prog_load_opts instead in
-https://github.com/iovisor/bcc/commit/185143bdec6134255363446f644acd766ffb3825
-
-Add a compile check to use the appropriate version
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c5c4c39630d2..f23b2ba52740 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -138,7 +138,7 @@ check_symbol_exists(bpf_attach_kfunc 
"${LIBBCC_INCLUDE_DIRS}/bcc/libbpf.h" HAVE_
- check_symbol_exists(bcc_usdt_addsem_probe 
"${LIBBCC_INCLUDE_DIRS}/bcc/bcc_usdt.h" HAVE_BCC_USDT_ADDSEM)
- check_symbol_exists(bcc_procutils_which_so 
"${LIBBCC_INCLUDE_DIRS}/bc

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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:35:42
  Author: anatolik
Revision: 1289168

upgpkg: bpftrace 0.16.0-1

Modified:
  bpftrace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-31 15:21:08 UTC (rev 1289167)
+++ PKGBUILD2022-08-31 15:35:42 UTC (rev 1289168)
@@ -2,8 +2,8 @@
 # Contributor: Tommaso Sardelli 
 
 pkgname=bpftrace
-pkgver=0.15.0
-pkgrel=3
+pkgver=0.16.0
+pkgrel=1
 pkgdesc='High-level tracing language for Linux eBPF'
 arch=('x86_64')
 url='https://github.com/iovisor/bpftrace'
@@ -12,19 +12,9 @@
 makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
  'asciidoctor' 'xxd')
 options=(!strip)
-source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";
-binutils-239.patch
-bcc-025.patch)
-sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a'
-
'49d168b4a40898eef688196dfed12423392cd56635c63c2a32e3c5a5fb4a8757fee3f4b31df9ba43736d7c0a3ad38a14d6ceb07cdfc73d8598b48d6c17727ba2'
-
'22ef3d05790416b4286ea9931646c3940877da8cf02b9645edbc753a4adb75e90f233b533d0c2c790eb62592c6af6487c02a502ecca8d547ec3d329a2aa71f64')
+source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";)
+sha512sums=('52ca4fea4e2f8d2cbf0f9f1bc69af0ee3408201f019006dd2e838b9458cfc01761eba3df24c39e05cf93220d85d0cecc69bb44ec72f9f44cec0eb94479bff734')
 
-prepare() {
-  cd bpftrace-$pkgver
-  patch -p1 < ../bcc-025.patch # 
https://github.com/iovisor/bpftrace/issues/2340
-  patch -p1 < ../binutils-239.patch # 
https://github.com/iovisor/bpftrace/pull/2287
-}
-
 build() {
   cd bpftrace-$pkgver
 



[arch-commits] Commit in pound/repos/community-x86_64 (9 files)

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:21:08
  Author: anatolik
Revision: 1289167

archrelease: copy trunk to community-x86_64

Added:
  pound/repos/community-x86_64/PKGBUILD
(from rev 1289165, pound/trunk/PKGBUILD)
  pound/repos/community-x86_64/keys/
  pound/repos/community-x86_64/pound-3.0-runtime_dir.patch
(from rev 1289165, pound/trunk/pound-3.0-runtime_dir.patch)
  pound/repos/community-x86_64/pound.service
(from rev 1289165, pound/trunk/pound.service)
  pound/repos/community-x86_64/pound.yaml
(from rev 1289165, pound/trunk/pound.yaml)
Deleted:
  pound/repos/community-x86_64/PKGBUILD
  pound/repos/community-x86_64/pound-3.0-runtime_dir.patch
  pound/repos/community-x86_64/pound.service
  pound/repos/community-x86_64/pound.yaml

-+
 PKGBUILD|  140 +-
 pound-3.0-runtime_dir.patch |  132 -
 pound.service   |   74 -
 pound.yaml  |  322 +-
 4 files changed, 334 insertions(+), 334 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-31 15:21:00 UTC (rev 1289166)
+++ PKGBUILD2022-08-31 15:21:08 UTC (rev 1289167)
@@ -1,70 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Sergej Pupykin 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Roberto Alsina 
-
-_name=Pound
-pkgname=pound
-pkgver=3.0.2
-pkgrel=2
-pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
-arch=(x86_64)
-url="https://www.apsis.ch/pound.html";
-license=(GPL3)
-depends=(gcc-libs glibc libyaml nanomsg pcre2)
-makedepends=(cmake gperftools mbedtls uthash)
-backup=("etc/${pkgname}/${pkgname}.yaml")
-source=("http://www.apsis.ch/${pkgname}/${_name}-${pkgver}.tgz";
-
"${_name}-${pkgver}.tgz.asc::http://www.apsis.ch/${pkgname}/${_name}-${pkgver}.asc";
-"${pkgname}-3.0-runtime_dir.patch"
-"${pkgname}.service"
-"${pkgname}.yaml")
-sha512sums=('4c96a93df2b340049778ed7782377e521fbdd7b6ccaa157748b05941ac7a825b2688f37f3081a7e577b2fa1ec4f64d68a25d27af2210f59da5be0dc10d1391e9'
-'SKIP'
-
'25db5c13750c2770ae5a91d850f2f00e888474a05b2464c6f03ebe4dc628c86edf8df640daa96e9dcb7240de43537a731671376f20e0dfb599ef5fc2eaf6c053'
-
'887ebace94fb6974b34e096c3f9d85e7e45186f816f8a0b4218ffecf2bf041702bc5d40547ca5883691e1d5f959e28b8ce3aac0f12c877760c0e80d8319f57e9'
-
'329fb0064f9720cc41332894d3e96e098ffd789d13bcb3b35d67dd9f7b4c0667d1b4cf1d93df9427b4e867d5f0b5857be412ae8d34abed5aa3c2774a499b3292')
-b2sums=('0e3f2dc69771a1d1f3de00a721f02cdc4ff31f4d17ab81f64c368668f03c0c1f12484e2d40e7c1d2d203b033488f2bad57cafd8da5022dfe680a09cdc6b73bec'
-'SKIP'
-
'eba66845b02eff8cea9353f1617f9fcbce040609ea22a1061d98a69c109fed1aaaf6fb338cde1c969153df383def7ae5e3231f281140d32702acfb8c628fa0e4'
-
'886e7218d0098f86edfde32b0d8ccdf47f7a8d6a3417144bbd9279cac14d51065fe72b312844ff6a24be6d16183a3b4a44b0d012c1d08808d07ea96d660ff69f'
-
'a7ebb7714abf8bc7c2c0f627f6fdcc226a293277a98455bd52340536754ef3a5aef75340b8535402c78a9a754f78d4793c1d7b0c15b0b8d393fd3760a6398858')
-validpgpkeys=('8BB562A0F1DB703FB7EB1E95AB72C62A8691DD02') # Robert Segall 

-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # set runtime dir to /run/pound
-  patch -Np1 -i "../${pkgname}-3.0-runtime_dir.patch"
-  # remove vendored uthash so we build with the packaged version
-  rm -v include/ut{hash,array}.h
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE='None' \
--Wno-dev \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=(libmbedtls.so libmbedcrypto.so libmbedx509.so
-  libtcmalloc.so)
-
-  cd "${pkgname}-${pkgver}"
-  # cmake setup has no install target :(
-  install -vDm 755 build/"${pkgname}" -t "${pkgdir}/usr/bin/"
-  # configuration
-  install -vDm 644 "../${pkgname}.yaml" -t "${pkgdir}/etc/${pkgname}/"
-  # systemd service
-  install -vDm 644 "../${pkgname}.service" \
--t "${pkgdir}/usr/lib/systemd/system/"
-  # man page
-  install -vDm 644 man/${pkgname}.8 -t "${pkgdir}/usr/share/man/man8/"
-  # docs
-  install -vDm 644 README.md \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: pound/repos/community-x86_64/PKGBUILD (from rev 1289165, 
pound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-31 15:21:08 UTC (rev 1289167)
@@ -0,0 +1,70 @@
+# Maintainer: David Runge 
+# Contributor: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Roberto Alsina 
+
+_name=Pound
+pkgname=pound
+pkgver=3.0.2
+pkgrel=3
+pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
+arch=(x86_64)
+url="https://www.apsis.ch/pound.html";
+license=(GPL3)
+depends=(gcc-libs glibc libyaml 

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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:20:32
  Author: anatolik
Revision: 1289165

upgpkg: pound 3.0.2-3: Rebuild against nanomsg-1.2

Modified:
  pound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-31 15:16:44 UTC (rev 1289164)
+++ PKGBUILD2022-08-31 15:20:32 UTC (rev 1289165)
@@ -6,7 +6,7 @@
 _name=Pound
 pkgname=pound
 pkgver=3.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
 arch=(x86_64)
 url="https://www.apsis.ch/pound.html";



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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:09:56
  Author: anatolik
Revision: 1289162

archrelease: copy trunk to community-staging-x86_64

Added:
  nanomsg/repos/community-staging-x86_64/
  nanomsg/repos/community-staging-x86_64/PKGBUILD
(from rev 1289161, nanomsg/trunk/PKGBUILD)

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

Copied: nanomsg/repos/community-staging-x86_64/PKGBUILD (from rev 1289161, 
nanomsg/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-31 15:09:56 UTC (rev 1289162)
@@ -0,0 +1,33 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: KokaKiwi 
+# Contributor: James Bulmer 
+
+pkgname=nanomsg
+pkgver=1.2
+pkgrel=1
+pkgdesc='Simple high-performance implementation of several "scalability 
protocols"'
+url='https://nanomsg.org/'
+license=(MIT)
+arch=(x86_64)
+depends=(glibc)
+makedepends=(cmake)
+source=(nanomsg-$pkgver.tar.gz::https://github.com/nanomsg/nanomsg/archive/$pkgver.tar.gz)
+sha1sums=('810f26d8fb2943e5a4c34d751bc8cdaf544ba9fe')
+
+
+build() {
+  cd nanomsg-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+check() {
+  cd nanomsg-$pkgver
+  ctest
+}
+
+package() {
+  cd nanomsg-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2022-08-31 Thread Anatol Pomozov via arch-commits
Date: Wednesday, August 31, 2022 @ 15:09:39
  Author: anatolik
Revision: 1289161

upgpkg: nanomsg 1.2-1

Modified:
  nanomsg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-31 14:09:14 UTC (rev 1289160)
+++ PKGBUILD2022-08-31 15:09:39 UTC (rev 1289161)
@@ -3,8 +3,8 @@
 # Contributor: James Bulmer 
 
 pkgname=nanomsg
-pkgver=1.1.5
-pkgrel=2
+pkgver=1.2
+pkgrel=1
 pkgdesc='Simple high-performance implementation of several "scalability 
protocols"'
 url='https://nanomsg.org/'
 license=(MIT)
@@ -12,7 +12,7 @@
 depends=(glibc)
 makedepends=(cmake)
 
source=(nanomsg-$pkgver.tar.gz::https://github.com/nanomsg/nanomsg/archive/$pkgver.tar.gz)
-sha1sums=('c7008c63ad4ab4a015e893673acaac098922cb40')
+sha1sums=('810f26d8fb2943e5a4c34d751bc8cdaf544ba9fe')
 
 
 build() {



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

2022-08-30 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 30, 2022 @ 22:15:41
  Author: anatolik
Revision: 1289087

archrelease: copy trunk to community-x86_64

Added:
  ninja/repos/community-x86_64/PKGBUILD
(from rev 1289086, ninja/trunk/PKGBUILD)
Deleted:
  ninja/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 22:15:21 UTC (rev 1289086)
+++ PKGBUILD2022-08-30 22:15:41 UTC (rev 1289087)
@@ -1,46 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Filip Brcic 
-# Contributor: Mika Fischer 
-# Contributor: Gergely Imreh 
-
-pkgname=ninja
-pkgver=1.11.0
-pkgrel=1
-pkgdesc='Small build system with a focus on speed'
-arch=(x86_64)
-url='https://ninja-build.org/'
-license=(Apache)
-depends=(gcc-libs)
-makedepends=(python re2c emacs-nox)
-source=($pkgname-$pkgver.zip::https://github.com/martine/ninja/archive/v$pkgver.zip)
-sha1sums=('e2de757c4dfa38985b348863b43e2609b56ad305')
-
-build() {
-  cd ninja-$pkgver
-
-  python configure.py --bootstrap
-  emacs -Q --batch -f batch-byte-compile misc/ninja-mode.el
-}
-
-check() {
-  cd ninja-$pkgver
-
-  python ./configure.py
-  ./ninja ninja_test
-  ./ninja_test
-}
-
-package() {
-  cd ninja-$pkgver
-
-  install -m755 -D ninja "$pkgdir/usr/bin/ninja"
-  install -m644 -D doc/manual.asciidoc 
"$pkgdir/usr/share/doc/ninja/manual.asciidoc"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
-  install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
-  install -m644 -D misc/ninja.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/ninja.vim"
-
-  install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
-  install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"
-}

Copied: ninja/repos/community-x86_64/PKGBUILD (from rev 1289086, 
ninja/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 22:15:41 UTC (rev 1289087)
@@ -0,0 +1,47 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Filip Brcic 
+# Contributor: Mika Fischer 
+# Contributor: Gergely Imreh 
+
+pkgname=ninja
+pkgver=1.11.1
+pkgrel=1
+pkgdesc='Small build system with a focus on speed'
+arch=(x86_64)
+url='https://ninja-build.org/'
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(python re2c emacs-nox)
+source=($pkgname-$pkgver.zip::https://github.com/martine/ninja/archive/v$pkgver.zip)
+sha1sums=('fbcb284b7280335835c3f085fb825e6f1514396e')
+
+build() {
+  cd ninja-$pkgver
+
+  python configure.py --bootstrap
+  emacs -Q --batch -f batch-byte-compile misc/ninja-mode.el
+}
+
+check() {
+  cd ninja-$pkgver
+
+  python ./configure.py
+  ./ninja ninja_test
+  ./ninja_test
+}
+
+package() {
+  cd ninja-$pkgver
+
+  install -m755 -D ninja "$pkgdir/usr/bin/ninja"
+  install -m644 -D doc/manual.asciidoc 
"$pkgdir/usr/share/doc/ninja/manual.asciidoc"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
+  install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
+  install -m644 -D misc/ninja.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/ninja.vim"
+  install -m644 -D misc/ninja_syntax.py 
"$pkgdir/usr/lib/python3.10/site-packages/ninja_syntax.py"
+
+  install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
+  install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"
+}



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

2022-08-30 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 30, 2022 @ 22:15:21
  Author: anatolik
Revision: 1289086

upgpkg: ninja 1.11.1-1

FS#71311: add experimental python ninja_syntax support

Modified:
  ninja/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 21:48:40 UTC (rev 1289085)
+++ PKGBUILD2022-08-30 22:15:21 UTC (rev 1289086)
@@ -4,7 +4,7 @@
 # Contributor: Gergely Imreh 
 
 pkgname=ninja
-pkgver=1.11.0
+pkgver=1.11.1
 pkgrel=1
 pkgdesc='Small build system with a focus on speed'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(gcc-libs)
 makedepends=(python re2c emacs-nox)
 
source=($pkgname-$pkgver.zip::https://github.com/martine/ninja/archive/v$pkgver.zip)
-sha1sums=('e2de757c4dfa38985b348863b43e2609b56ad305')
+sha1sums=('fbcb284b7280335835c3f085fb825e6f1514396e')
 
 build() {
   cd ninja-$pkgver
@@ -40,6 +40,7 @@
   install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
   install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
   install -m644 -D misc/ninja.vim 
"$pkgdir/usr/share/vim/vimfiles/syntax/ninja.vim"
+  install -m644 -D misc/ninja_syntax.py 
"$pkgdir/usr/lib/python3.10/site-packages/ninja_syntax.py"
 
   install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
   install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"



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

2022-08-30 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 30, 2022 @ 20:08:17
  Author: anatolik
Revision: 1288997

archrelease: copy trunk to community-x86_64

Added:
  fio/repos/community-x86_64/PKGBUILD
(from rev 1288996, fio/trunk/PKGBUILD)
Deleted:
  fio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-30 20:07:57 UTC (rev 1288996)
+++ PKGBUILD2022-08-30 20:08:17 UTC (rev 1288997)
@@ -1,47 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Mariusz Libera 
-# Contributor: John Williams 
-
-pkgname=fio
-pkgver=3.31
-pkgrel=1
-pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
-arch=(x86_64)
-url='https://github.com/axboe/fio'
-license=(GPL2)
-# TODO: enable rdma, need to move the libraries from AUR
-depends=(bash libaio python numactl glusterfs gperftools)
-makedepends=(gtk2 curl)
-optdepends=(
-  'gtk2: for gfio - fio GUI frontend' 
-  'curl: for gfio - fio GUI frontend'
-  'gnuplot: generating plots using fio_generate_plots'
-)
-source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
-sha256sums=('a6ea31a70372af5ff7c51cdea71fecc821def8fc24e84886bb69acb234b7ddcd')
-
-prepare() {
-  cd fio-fio-$pkgver
-  sed -e 's|#!/usr/bin/python2.7$|#!/usr/bin/python|' -i 
tools/{fio_jsonplus_clat2csv,fiologparser.py,hist/fiologparser_hist.py,hist/half-bins.py,plot/fio2gnuplot}
-}
-
-build() {
-  cd fio-fio-$pkgver
-  ./configure --disable-native --enable-gfio --extra-cflags="$CFLAGS"
-  make
-}
-
-package() {
-  cd fio-fio-$pkgver
-  make DESTDIR="$pkgdir" prefix=/usr mandir=/usr/share/man install
-
-  # documentation
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
-  install -m644 HOWTO.rst README.rst REPORTING-BUGS SERVER-TODO 
"$pkgdir/usr/share/doc/$pkgname"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -Dm644 MORAL-LICENSE 
"$pkgdir/usr/share/licenses/$pkgname/MORAL-LICENSE"
-
-  # examples
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
-  install -m644 examples/* "$pkgdir/usr/share/doc/$pkgname/examples"
-}

Copied: fio/repos/community-x86_64/PKGBUILD (from rev 1288996, 
fio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-30 20:08:17 UTC (rev 1288997)
@@ -0,0 +1,47 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Mariusz Libera 
+# Contributor: John Williams 
+
+pkgname=fio
+pkgver=3.32
+pkgrel=1
+pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
+arch=(x86_64)
+url='https://github.com/axboe/fio'
+license=(GPL2)
+# TODO: enable rdma, need to move the libraries from AUR
+depends=(bash libaio python numactl glusterfs gperftools)
+makedepends=(gtk2 curl)
+optdepends=(
+  'gtk2: for gfio - fio GUI frontend' 
+  'curl: for gfio - fio GUI frontend'
+  'gnuplot: generating plots using fio_generate_plots'
+)
+source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
+sha256sums=('1391ba9c49ba627470c1582b14988af313cf886c20e7fd8502d69a2b48b029de')
+
+prepare() {
+  cd fio-fio-$pkgver
+  sed -e 's|#!/usr/bin/python2.7$|#!/usr/bin/python|' -i 
tools/{fio_jsonplus_clat2csv,fiologparser.py,hist/fiologparser_hist.py,hist/half-bins.py,plot/fio2gnuplot}
+}
+
+build() {
+  cd fio-fio-$pkgver
+  ./configure --disable-native --enable-gfio --extra-cflags="$CFLAGS"
+  make
+}
+
+package() {
+  cd fio-fio-$pkgver
+  make DESTDIR="$pkgdir" prefix=/usr mandir=/usr/share/man install
+
+  # documentation
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 HOWTO.rst README.rst REPORTING-BUGS SERVER-TODO 
"$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 MORAL-LICENSE 
"$pkgdir/usr/share/licenses/$pkgname/MORAL-LICENSE"
+
+  # examples
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
+  install -m644 examples/* "$pkgdir/usr/share/doc/$pkgname/examples"
+}



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

2022-08-30 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 30, 2022 @ 20:07:57
  Author: anatolik
Revision: 1288996

upgpkg: fio 3.32-1

Modified:
  fio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-30 19:50:58 UTC (rev 1288995)
+++ PKGBUILD2022-08-30 20:07:57 UTC (rev 1288996)
@@ -3,7 +3,7 @@
 # Contributor: John Williams 
 
 pkgname=fio
-pkgver=3.31
+pkgver=3.32
 pkgrel=1
 pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
 arch=(x86_64)
@@ -18,7 +18,7 @@
   'gnuplot: generating plots using fio_generate_plots'
 )
 source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
-sha256sums=('a6ea31a70372af5ff7c51cdea71fecc821def8fc24e84886bb69acb234b7ddcd')
+sha256sums=('1391ba9c49ba627470c1582b14988af313cf886c20e7fd8502d69a2b48b029de')
 
 prepare() {
   cd fio-fio-$pkgver



[arch-commits] Commit in aws-sdk-cpp/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 19:55:15
  Author: anatolik
Revision: 1285753

archrelease: copy trunk to community-x86_64

Added:
  aws-sdk-cpp/repos/community-x86_64/PKGBUILD
(from rev 1285752, aws-sdk-cpp/trunk/PKGBUILD)
Deleted:
  aws-sdk-cpp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 19:55:06 UTC (rev 1285752)
+++ PKGBUILD2022-08-29 19:55:15 UTC (rev 1285753)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-sdk-cpp
-pkgver=1.9.241
-pkgrel=1
-pkgdesc='AWS SDK for C++'
-arch=(x86_64)
-url='https://github.com/aws/aws-sdk-cpp'
-license=(Apache)
-depends=(openssl curl zlib util-linux-libs aws-c-common aws-c-event-stream 
libpulse aws-crt-cpp)
-makedepends=(cmake ninja)
-source=(aws-sdk-cpp-$pkgver.zip::https://github.com/aws/aws-sdk-cpp/archive/$pkgver.zip)
-sha256sums=('85d06ed0dcac0869e89e1f00e84a63aa2fff8aef6bd1a743c652c020a2dd4772')
-
-build() {
-  cd aws-sdk-cpp-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DCUSTOM_MEMORY_MANAGEMENT=OFF -DENABLE_TESTING=OFF -DBUILD_DEPS=OFF \
-  -DCMAKE_MODULE_PATH=/usr/lib/cmake \
-  -S . -B build -G Ninja
-  ninja -C build -j 2 # the build is so heavy that it gets OOM killed even at 
powerful machines
-}
-
-package() {
-  cd aws-sdk-cpp-$pkgver
-
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-sdk-cpp/repos/community-x86_64/PKGBUILD (from rev 1285752, 
aws-sdk-cpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 19:55:15 UTC (rev 1285753)
@@ -0,0 +1,29 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-sdk-cpp
+pkgver=1.9.334
+pkgrel=1
+pkgdesc='AWS SDK for C++'
+arch=(x86_64)
+url='https://github.com/aws/aws-sdk-cpp'
+license=(Apache)
+depends=(openssl curl zlib util-linux-libs aws-c-common aws-c-event-stream 
libpulse aws-crt-cpp)
+makedepends=(cmake ninja)
+source=(aws-sdk-cpp-$pkgver.zip::https://github.com/aws/aws-sdk-cpp/archive/$pkgver.zip)
+sha256sums=('7a523a226f1ab03795da11bf2d0119b14225578605d584dfe33bbee045168097')
+
+build() {
+  cd aws-sdk-cpp-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DCUSTOM_MEMORY_MANAGEMENT=OFF -DENABLE_TESTING=OFF -DBUILD_DEPS=OFF \
+  -DCMAKE_MODULE_PATH=/usr/lib/cmake \
+  -S . -B build -G Ninja
+  ninja -C build -j 2 # the build is so heavy that it gets OOM killed even at 
powerful machines
+}
+
+package() {
+  cd aws-sdk-cpp-$pkgver
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-sdk-cpp/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 19:54:55
  Author: anatolik
Revision: 1285751

upgpkg: aws-sdk-cpp 1.9.334-1

Modified:
  aws-sdk-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 19:54:51 UTC (rev 1285750)
+++ PKGBUILD2022-08-29 19:54:55 UTC (rev 1285751)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-sdk-cpp
-pkgver=1.9.241
+pkgver=1.9.334
 pkgrel=1
 pkgdesc='AWS SDK for C++'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(openssl curl zlib util-linux-libs aws-c-common aws-c-event-stream 
libpulse aws-crt-cpp)
 makedepends=(cmake ninja)
 
source=(aws-sdk-cpp-$pkgver.zip::https://github.com/aws/aws-sdk-cpp/archive/$pkgver.zip)
-sha256sums=('85d06ed0dcac0869e89e1f00e84a63aa2fff8aef6bd1a743c652c020a2dd4772')
+sha256sums=('7a523a226f1ab03795da11bf2d0119b14225578605d584dfe33bbee045168097')
 
 build() {
   cd aws-sdk-cpp-$pkgver



[arch-commits] Commit in aws-crt-cpp/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:58:02
  Author: anatolik
Revision: 1285516

archrelease: copy trunk to community-x86_64

Added:
  aws-crt-cpp/repos/community-x86_64/PKGBUILD
(from rev 1285515, aws-crt-cpp/trunk/PKGBUILD)
Deleted:
  aws-crt-cpp/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:57:42 UTC (rev 1285515)
+++ PKGBUILD2022-08-29 17:58:02 UTC (rev 1285516)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-crt-cpp
-pkgver=0.17.27
-pkgrel=1
-pkgdesc='C++ wrapper around the aws-c-* libraries. Provides Cross-Platform 
Transport Protocols and SSL/TLS implementations for C++.'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-crt-cpp'
-license=(Apache)
-depends=(gcc-libs aws-c-common aws-c-http aws-c-mqtt aws-c-auth aws-c-s3 
aws-c-event-stream)
-makedepends=(cmake)
-source=(aws-crt-cpp-$pkgver.zip::https://github.com/awslabs/aws-crt-cpp/archive/v$pkgver.zip)
-sha256sums=('907420357ec135241a3df145ba852f6e61b1ff3aeb637f2d305100ae14c93ee2')
-
-build() {
-  cd aws-crt-cpp-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DBUILD_DEPS=OFF -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-crt-cpp-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-crt-cpp-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-crt-cpp/repos/community-x86_64/PKGBUILD (from rev 1285515, 
aws-crt-cpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:58:02 UTC (rev 1285516)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-crt-cpp
+pkgver=0.18.3
+pkgrel=1
+pkgdesc='C++ wrapper around the aws-c-* libraries. Provides Cross-Platform 
Transport Protocols and SSL/TLS implementations for C++.'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-crt-cpp'
+license=(Apache)
+depends=(gcc-libs aws-c-common aws-c-http aws-c-mqtt aws-c-auth aws-c-s3 
aws-c-event-stream)
+makedepends=(cmake)
+source=(aws-crt-cpp-$pkgver.zip::https://github.com/awslabs/aws-crt-cpp/archive/v$pkgver.zip)
+sha256sums=('f05996ce08b2102d17f609595424f9e806c882b405821981b713b2840f14f635')
+
+build() {
+  cd aws-crt-cpp-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DBUILD_DEPS=OFF -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-crt-cpp-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-crt-cpp-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-crt-cpp/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:57:42
  Author: anatolik
Revision: 1285515

upgpkg: aws-crt-cpp 0.18.3-1

Modified:
  aws-crt-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:57:28 UTC (rev 1285514)
+++ PKGBUILD2022-08-29 17:57:42 UTC (rev 1285515)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-crt-cpp
-pkgver=0.17.27
+pkgver=0.18.3
 pkgrel=1
 pkgdesc='C++ wrapper around the aws-c-* libraries. Provides Cross-Platform 
Transport Protocols and SSL/TLS implementations for C++.'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(gcc-libs aws-c-common aws-c-http aws-c-mqtt aws-c-auth aws-c-s3 
aws-c-event-stream)
 makedepends=(cmake)
 
source=(aws-crt-cpp-$pkgver.zip::https://github.com/awslabs/aws-crt-cpp/archive/v$pkgver.zip)
-sha256sums=('907420357ec135241a3df145ba852f6e61b1ff3aeb637f2d305100ae14c93ee2')
+sha256sums=('f05996ce08b2102d17f609595424f9e806c882b405821981b713b2840f14f635')
 
 build() {
   cd aws-crt-cpp-$pkgver



[arch-commits] Commit in aws-c-mqtt/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:49:34
  Author: anatolik
Revision: 1285510

archrelease: copy trunk to community-x86_64

Added:
  aws-c-mqtt/repos/community-x86_64/PKGBUILD
(from rev 1285509, aws-c-mqtt/trunk/PKGBUILD)
Deleted:
  aws-c-mqtt/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:49:14 UTC (rev 1285509)
+++ PKGBUILD2022-08-29 17:49:34 UTC (rev 1285510)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-mqtt
-pkgver=0.7.10
-pkgrel=1
-pkgdesc='C99 implementation of the MQTT 3.1.1 specification'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-mqtt'
-license=(Apache)
-depends=(aws-c-common aws-c-http)
-makedepends=(cmake)
-source=(aws-c-mqtt-$pkgver.zip::https://github.com/awslabs/aws-c-mqtt/archive/v$pkgver.zip)
-sha256sums=('bc9c41dcf48ed3bb1a66bece0013c78df8954b0045a9927ee92df86edfc21c0e')
-
-build() {
-  cd aws-c-mqtt-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-mqtt-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-mqtt-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-mqtt/repos/community-x86_64/PKGBUILD (from rev 1285509, 
aws-c-mqtt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:49:34 UTC (rev 1285510)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-mqtt
+pkgver=0.7.12
+pkgrel=1
+pkgdesc='C99 implementation of the MQTT 3.1.1 specification'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-mqtt'
+license=(Apache)
+depends=(aws-c-common aws-c-http)
+makedepends=(cmake)
+source=(aws-c-mqtt-$pkgver.zip::https://github.com/awslabs/aws-c-mqtt/archive/v$pkgver.zip)
+sha256sums=('c0d65abbf132c552dc1099de36325ce5aafe15c69691d801cbe338b36f7a49c2')
+
+build() {
+  cd aws-c-mqtt-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-mqtt-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-mqtt-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-mqtt/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:49:14
  Author: anatolik
Revision: 1285509

upgpkg: aws-c-mqtt 0.7.12-1

Modified:
  aws-c-mqtt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:48:29 UTC (rev 1285508)
+++ PKGBUILD2022-08-29 17:49:14 UTC (rev 1285509)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-mqtt
-pkgver=0.7.10
+pkgver=0.7.12
 pkgrel=1
 pkgdesc='C99 implementation of the MQTT 3.1.1 specification'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-c-http)
 makedepends=(cmake)
 
source=(aws-c-mqtt-$pkgver.zip::https://github.com/awslabs/aws-c-mqtt/archive/v$pkgver.zip)
-sha256sums=('bc9c41dcf48ed3bb1a66bece0013c78df8954b0045a9927ee92df86edfc21c0e')
+sha256sums=('c0d65abbf132c552dc1099de36325ce5aafe15c69691d801cbe338b36f7a49c2')
 
 build() {
   cd aws-c-mqtt-$pkgver



[arch-commits] Commit in aws-c-s3/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:47:40
  Author: anatolik
Revision: 1285506

archrelease: copy trunk to community-x86_64

Added:
  aws-c-s3/repos/community-x86_64/PKGBUILD
(from rev 1285505, aws-c-s3/trunk/PKGBUILD)
Deleted:
  aws-c-s3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:47:20 UTC (rev 1285505)
+++ PKGBUILD2022-08-29 17:47:40 UTC (rev 1285506)
@@ -1,33 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-s3
-pkgver=0.1.38
-pkgrel=1
-pkgdesc='C99 library implementation for communicating with the S3 service, 
designed for maximizing throughput on high bandwidth EC2 instances'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-s3'
-license=(Apache)
-depends=(aws-c-common aws-c-auth aws-checksums)
-makedepends=(cmake)
-source=(aws-c-s3-$pkgver.zip::https://github.com/awslabs/aws-c-s3/archive/v$pkgver.zip)
-sha256sums=('bbe8c473748c693fc9b142a6013b68ec9a7f25d4735a2f55868bb06eca40b32f')
-
-build() {
-  cd aws-c-s3-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-s3-$pkgver
-  # A lot of tests failing
-  # cmake --build build --target test
-}
-
-package() {
-  cd aws-c-s3-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-s3/repos/community-x86_64/PKGBUILD (from rev 1285505, 
aws-c-s3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:47:40 UTC (rev 1285506)
@@ -0,0 +1,33 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-s3
+pkgver=0.1.46
+pkgrel=1
+pkgdesc='C99 library implementation for communicating with the S3 service, 
designed for maximizing throughput on high bandwidth EC2 instances'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-s3'
+license=(Apache)
+depends=(aws-c-common aws-c-auth aws-checksums)
+makedepends=(cmake)
+source=(aws-c-s3-$pkgver.zip::https://github.com/awslabs/aws-c-s3/archive/v$pkgver.zip)
+sha256sums=('bd7c6860e163c03e14e8a49f50876c8f266ab61b3ad14bd965ca6cbeeadc7364')
+
+build() {
+  cd aws-c-s3-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-s3-$pkgver
+  # A lot of tests failing
+  # cmake --build build --target test
+}
+
+package() {
+  cd aws-c-s3-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-s3/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:47:20
  Author: anatolik
Revision: 1285505

upgpkg: aws-c-s3 0.1.46-1

Modified:
  aws-c-s3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:43:35 UTC (rev 1285504)
+++ PKGBUILD2022-08-29 17:47:20 UTC (rev 1285505)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-s3
-pkgver=0.1.38
+pkgver=0.1.46
 pkgrel=1
 pkgdesc='C99 library implementation for communicating with the S3 service, 
designed for maximizing throughput on high bandwidth EC2 instances'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-c-auth aws-checksums)
 makedepends=(cmake)
 
source=(aws-c-s3-$pkgver.zip::https://github.com/awslabs/aws-c-s3/archive/v$pkgver.zip)
-sha256sums=('bbe8c473748c693fc9b142a6013b68ec9a7f25d4735a2f55868bb06eca40b32f')
+sha256sums=('bd7c6860e163c03e14e8a49f50876c8f266ab61b3ad14bd965ca6cbeeadc7364')
 
 build() {
   cd aws-c-s3-$pkgver



[arch-commits] Commit in aws-c-auth/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:43:23
  Author: anatolik
Revision: 1285491

archrelease: copy trunk to community-x86_64

Added:
  aws-c-auth/repos/community-x86_64/PKGBUILD
(from rev 1285490, aws-c-auth/trunk/PKGBUILD)
Deleted:
  aws-c-auth/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:43:04 UTC (rev 1285490)
+++ PKGBUILD2022-08-29 17:43:23 UTC (rev 1285491)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-auth
-pkgver=0.6.11
-pkgrel=1
-pkgdesc='C99 library implementation of AWS client-side authentication: 
standard credentials providers and signing'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-auth'
-license=(Apache)
-depends=(aws-c-common aws-c-http aws-c-sdkutils)
-makedepends=(cmake)
-source=(aws-c-auth-$pkgver.zip::https://github.com/awslabs/aws-c-auth/archive/v$pkgver.zip)
-sha256sums=('9c2e1904aad2e475a095307a1bb32ccc7bb49cb30552f62064cd717f96b45239')
-
-build() {
-  cd aws-c-auth-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-auth-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-auth-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-auth/repos/community-x86_64/PKGBUILD (from rev 1285490, 
aws-c-auth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:43:23 UTC (rev 1285491)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-auth
+pkgver=0.6.16
+pkgrel=1
+pkgdesc='C99 library implementation of AWS client-side authentication: 
standard credentials providers and signing'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-auth'
+license=(Apache)
+depends=(aws-c-common aws-c-http aws-c-sdkutils)
+makedepends=(cmake)
+source=(aws-c-auth-$pkgver.zip::https://github.com/awslabs/aws-c-auth/archive/v$pkgver.zip)
+sha256sums=('6e77ccbfa90615d5f3138fec64111089d55284f93894e38019c2f928be22ee71')
+
+build() {
+  cd aws-c-auth-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-auth-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-auth-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-auth/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:43:04
  Author: anatolik
Revision: 1285490

upgpkg: aws-c-auth 0.6.16-1

Modified:
  aws-c-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:42:42 UTC (rev 1285489)
+++ PKGBUILD2022-08-29 17:43:04 UTC (rev 1285490)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-auth
-pkgver=0.6.11
+pkgver=0.6.16
 pkgrel=1
 pkgdesc='C99 library implementation of AWS client-side authentication: 
standard credentials providers and signing'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-c-http aws-c-sdkutils)
 makedepends=(cmake)
 
source=(aws-c-auth-$pkgver.zip::https://github.com/awslabs/aws-c-auth/archive/v$pkgver.zip)
-sha256sums=('9c2e1904aad2e475a095307a1bb32ccc7bb49cb30552f62064cd717f96b45239')
+sha256sums=('6e77ccbfa90615d5f3138fec64111089d55284f93894e38019c2f928be22ee71')
 
 build() {
   cd aws-c-auth-$pkgver



[arch-commits] Commit in aws-c-http/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:38:02
  Author: anatolik
Revision: 1285477

archrelease: copy trunk to community-x86_64

Added:
  aws-c-http/repos/community-x86_64/PKGBUILD
(from rev 1285476, aws-c-http/trunk/PKGBUILD)
Deleted:
  aws-c-http/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:37:42 UTC (rev 1285476)
+++ PKGBUILD2022-08-29 17:38:02 UTC (rev 1285477)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-http
-pkgver=0.6.14
-pkgrel=1
-pkgdesc='C99 implementation of the HTTP/1.1 and HTTP/2 specifications'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-http'
-license=(Apache)
-depends=(aws-c-common aws-c-compression aws-c-io)
-makedepends=(cmake)
-source=(aws-c-http-$pkgver.zip::https://github.com/awslabs/aws-c-http/archive/v$pkgver.zip)
-sha256sums=('72dd15ad60eac4515553681599ddff22a7f1f29967d04e903faacbae150db067')
-
-build() {
-  cd aws-c-http-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-http-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-http-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-http/repos/community-x86_64/PKGBUILD (from rev 1285476, 
aws-c-http/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:38:02 UTC (rev 1285477)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-http
+pkgver=0.6.20
+pkgrel=1
+pkgdesc='C99 implementation of the HTTP/1.1 and HTTP/2 specifications'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-http'
+license=(Apache)
+depends=(aws-c-common aws-c-compression aws-c-io)
+makedepends=(cmake)
+source=(aws-c-http-$pkgver.zip::https://github.com/awslabs/aws-c-http/archive/v$pkgver.zip)
+sha256sums=('e4ab22fb9fd6d2909c7ec10bbbecf583f62bf5cd6949cfafee9a58949d2ce775')
+
+build() {
+  cd aws-c-http-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-http-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-http-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-http/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:37:42
  Author: anatolik
Revision: 1285476

upgpkg: aws-c-http 0.6.20-1

Modified:
  aws-c-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:35:28 UTC (rev 1285475)
+++ PKGBUILD2022-08-29 17:37:42 UTC (rev 1285476)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-http
-pkgver=0.6.14
+pkgver=0.6.20
 pkgrel=1
 pkgdesc='C99 implementation of the HTTP/1.1 and HTTP/2 specifications'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-c-compression aws-c-io)
 makedepends=(cmake)
 
source=(aws-c-http-$pkgver.zip::https://github.com/awslabs/aws-c-http/archive/v$pkgver.zip)
-sha256sums=('72dd15ad60eac4515553681599ddff22a7f1f29967d04e903faacbae150db067')
+sha256sums=('e4ab22fb9fd6d2909c7ec10bbbecf583f62bf5cd6949cfafee9a58949d2ce775')
 
 build() {
   cd aws-c-http-$pkgver



[arch-commits] Commit in aws-c-sdkutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:33:29
  Author: anatolik
Revision: 1285471

archrelease: copy trunk to community-x86_64

Added:
  aws-c-sdkutils/repos/community-x86_64/PKGBUILD
(from rev 1285470, aws-c-sdkutils/trunk/PKGBUILD)
Deleted:
  aws-c-sdkutils/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:33:16 UTC (rev 1285470)
+++ PKGBUILD2022-08-29 17:33:29 UTC (rev 1285471)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-sdkutils
-pkgver=0.1.2
-pkgrel=1
-pkgdesc='AWS SDK utility library'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-sdkutils'
-license=(Apache)
-depends=(aws-c-common)
-makedepends=(cmake)
-source=(aws-c-sdkutils-$pkgver.zip::https://github.com/awslabs/aws-c-sdkutils/archive/v$pkgver.zip)
-sha256sums=('72b03e8e3d15479fe1a2807a3dc65ad87ea3c33495ea3aafb57fc83927b4061c')
-
-build() {
-  cd aws-c-sdkutils-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-sdkutils-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-sdkutils-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-sdkutils/repos/community-x86_64/PKGBUILD (from rev 1285470, 
aws-c-sdkutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:33:29 UTC (rev 1285471)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-sdkutils
+pkgver=0.1.3
+pkgrel=1
+pkgdesc='AWS SDK utility library'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-sdkutils'
+license=(Apache)
+depends=(aws-c-common)
+makedepends=(cmake)
+source=(aws-c-sdkutils-$pkgver.zip::https://github.com/awslabs/aws-c-sdkutils/archive/v$pkgver.zip)
+sha256sums=('9a02ba92e4d29aebbf945971321fa9b20eef567c23ec87f873c925166f2b7733')
+
+build() {
+  cd aws-c-sdkutils-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-sdkutils-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-sdkutils-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-sdkutils/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:33:09
  Author: anatolik
Revision: 1285469

upgpkg: aws-c-sdkutils 0.1.3-1

Modified:
  aws-c-sdkutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:33:02 UTC (rev 1285468)
+++ PKGBUILD2022-08-29 17:33:09 UTC (rev 1285469)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-sdkutils
-pkgver=0.1.2
+pkgver=0.1.3
 pkgrel=1
 pkgdesc='AWS SDK utility library'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common)
 makedepends=(cmake)
 
source=(aws-c-sdkutils-$pkgver.zip::https://github.com/awslabs/aws-c-sdkutils/archive/v$pkgver.zip)
-sha256sums=('72b03e8e3d15479fe1a2807a3dc65ad87ea3c33495ea3aafb57fc83927b4061c')
+sha256sums=('9a02ba92e4d29aebbf945971321fa9b20eef567c23ec87f873c925166f2b7733')
 
 build() {
   cd aws-c-sdkutils-$pkgver



[arch-commits] Commit in aws-c-compression/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:32:53
  Author: anatolik
Revision: 1285467

archrelease: copy trunk to community-x86_64

Added:
  aws-c-compression/repos/community-x86_64/PKGBUILD
(from rev 1285466, aws-c-compression/trunk/PKGBUILD)
Deleted:
  aws-c-compression/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:32:32 UTC (rev 1285466)
+++ PKGBUILD2022-08-29 17:32:53 UTC (rev 1285467)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-compression
-pkgver=0.2.14
-pkgrel=1
-pkgdesc='C99 implementation of huffman encoding/decoding'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-compression'
-license=(Apache)
-depends=(aws-c-common)
-makedepends=(cmake)
-source=(aws-c-compression-$pkgver.zip::https://github.com/awslabs/aws-c-compression/archive/v$pkgver.zip)
-sha256sums=('8495e7758407ea478a35c6b86989c4ff3cb248245c2f9b8fb83dd388e2ac8d3e')
-
-build() {
-  cd aws-c-compression-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-compression-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-compression-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-compression/repos/community-x86_64/PKGBUILD (from rev 1285466, 
aws-c-compression/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:32:53 UTC (rev 1285467)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-compression
+pkgver=0.2.15
+pkgrel=1
+pkgdesc='C99 implementation of huffman encoding/decoding'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-compression'
+license=(Apache)
+depends=(aws-c-common)
+makedepends=(cmake)
+source=(aws-c-compression-$pkgver.zip::https://github.com/awslabs/aws-c-compression/archive/v$pkgver.zip)
+sha256sums=('949850cde6df3a4dc58aa8afb81283232a2670701c6260060fa819a66aed72b3')
+
+build() {
+  cd aws-c-compression-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-compression-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-compression-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-compression/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:32:32
  Author: anatolik
Revision: 1285466

upgpkg: aws-c-compression 0.2.15-1

Modified:
  aws-c-compression/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:30:55 UTC (rev 1285465)
+++ PKGBUILD2022-08-29 17:32:32 UTC (rev 1285466)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-compression
-pkgver=0.2.14
+pkgver=0.2.15
 pkgrel=1
 pkgdesc='C99 implementation of huffman encoding/decoding'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common)
 makedepends=(cmake)
 
source=(aws-c-compression-$pkgver.zip::https://github.com/awslabs/aws-c-compression/archive/v$pkgver.zip)
-sha256sums=('8495e7758407ea478a35c6b86989c4ff3cb248245c2f9b8fb83dd388e2ac8d3e')
+sha256sums=('949850cde6df3a4dc58aa8afb81283232a2670701c6260060fa819a66aed72b3')
 
 build() {
   cd aws-c-compression-$pkgver



[arch-commits] Commit in aws-c-event-stream/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:30:55
  Author: anatolik
Revision: 1285465

archrelease: copy trunk to community-x86_64

Added:
  aws-c-event-stream/repos/community-x86_64/PKGBUILD
(from rev 1285464, aws-c-event-stream/trunk/PKGBUILD)
Deleted:
  aws-c-event-stream/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:30:42 UTC (rev 1285464)
+++ PKGBUILD2022-08-29 17:30:55 UTC (rev 1285465)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-event-stream
-pkgver=0.2.14
-pkgrel=1
-pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-event-stream'
-license=(Apache)
-depends=(aws-c-common aws-checksums aws-c-io)
-makedepends=(cmake)
-source=(aws-c-event-stream-$pkgver.zip::https://github.com/awslabs/aws-c-event-stream/archive/v$pkgver.zip)
-sha256sums=('6ef81804177e955de7a51dcb7978cc923e25e4483631bb78b08b4577d645df9d')
-
-build() {
-  cd aws-c-event-stream-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-event-stream-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-event-stream-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-event-stream/repos/community-x86_64/PKGBUILD (from rev 1285464, 
aws-c-event-stream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:30:55 UTC (rev 1285465)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-event-stream
+pkgver=0.2.14
+pkgrel=2
+pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-event-stream'
+license=(Apache)
+depends=(aws-c-common aws-checksums aws-c-io)
+makedepends=(cmake)
+source=(aws-c-event-stream-$pkgver.zip::https://github.com/awslabs/aws-c-event-stream/archive/v$pkgver.zip)
+sha256sums=('6ef81804177e955de7a51dcb7978cc923e25e4483631bb78b08b4577d645df9d')
+
+build() {
+  cd aws-c-event-stream-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-event-stream-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-event-stream-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-event-stream/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:30:35
  Author: anatolik
Revision: 1285463

upgpkg: aws-c-event-stream 0.2.14-2: Rebuild against aws-checksums-0.1.13

Modified:
  aws-c-event-stream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:30:26 UTC (rev 1285462)
+++ PKGBUILD2022-08-29 17:30:35 UTC (rev 1285463)
@@ -2,7 +2,7 @@
 
 pkgname=aws-c-event-stream
 pkgver=0.2.14
-pkgrel=1
+pkgrel=2
 pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
 arch=(x86_64)
 url='https://github.com/awslabs/aws-c-event-stream'



[arch-commits] Commit in aws-c-event-stream/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:28:24
  Author: anatolik
Revision: 1285459

archrelease: copy trunk to community-x86_64

Added:
  aws-c-event-stream/repos/community-x86_64/PKGBUILD
(from rev 1285458, aws-c-event-stream/trunk/PKGBUILD)
Deleted:
  aws-c-event-stream/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:28:01 UTC (rev 1285458)
+++ PKGBUILD2022-08-29 17:28:24 UTC (rev 1285459)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-event-stream
-pkgver=0.2.7
-pkgrel=1
-pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-event-stream'
-license=(Apache)
-depends=(aws-c-common aws-checksums aws-c-io)
-makedepends=(cmake)
-source=(aws-c-event-stream-$pkgver.zip::https://github.com/awslabs/aws-c-event-stream/archive/v$pkgver.zip)
-sha256sums=('d7543e29334d6268b7530264e682b39aabbc459cf8cf0c393fa4816fe82bf346')
-
-build() {
-  cd aws-c-event-stream-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-event-stream-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-event-stream-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-event-stream/repos/community-x86_64/PKGBUILD (from rev 1285458, 
aws-c-event-stream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:28:24 UTC (rev 1285459)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-event-stream
+pkgver=0.2.14
+pkgrel=1
+pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-event-stream'
+license=(Apache)
+depends=(aws-c-common aws-checksums aws-c-io)
+makedepends=(cmake)
+source=(aws-c-event-stream-$pkgver.zip::https://github.com/awslabs/aws-c-event-stream/archive/v$pkgver.zip)
+sha256sums=('6ef81804177e955de7a51dcb7978cc923e25e4483631bb78b08b4577d645df9d')
+
+build() {
+  cd aws-c-event-stream-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-event-stream-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-event-stream-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-event-stream/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:28:01
  Author: anatolik
Revision: 1285458

upgpkg: aws-c-event-stream 0.2.14-1

Modified:
  aws-c-event-stream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:27:35 UTC (rev 1285457)
+++ PKGBUILD2022-08-29 17:28:01 UTC (rev 1285458)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-event-stream
-pkgver=0.2.7
+pkgver=0.2.14
 pkgrel=1
 pkgdesc='C99 implementation of the vnd.amazon.eventstream content-type'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-checksums aws-c-io)
 makedepends=(cmake)
 
source=(aws-c-event-stream-$pkgver.zip::https://github.com/awslabs/aws-c-event-stream/archive/v$pkgver.zip)
-sha256sums=('d7543e29334d6268b7530264e682b39aabbc459cf8cf0c393fa4816fe82bf346')
+sha256sums=('6ef81804177e955de7a51dcb7978cc923e25e4483631bb78b08b4577d645df9d')
 
 build() {
   cd aws-c-event-stream-$pkgver



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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:26:40
  Author: anatolik
Revision: 1285455

archrelease: copy trunk to community-x86_64

Added:
  aws-checksums/repos/community-x86_64/PKGBUILD
(from rev 1285454, aws-checksums/trunk/PKGBUILD)
Deleted:
  aws-checksums/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:26:20 UTC (rev 1285454)
+++ PKGBUILD2022-08-29 17:26:40 UTC (rev 1285455)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-checksums
-pkgver=0.1.12
-pkgrel=1
-pkgdesc='Cross-Platform HW accelerated CRC32c and CRC32 with fallback to 
efficient SW implementations.'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-checksums'
-license=(Apache)
-depends=(aws-c-common)
-makedepends=(cmake)
-source=(aws-checksums-$pkgver.zip::https://github.com/awslabs/aws-checksums/archive/v$pkgver.zip)
-sha256sums=('51611c906160a144c8789a6ae32c1e2a6d8aaae188e2c045be00ec4d13b36d74')
-
-build() {
-  cd aws-checksums-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-checksums-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-checksums-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-checksums/repos/community-x86_64/PKGBUILD (from rev 1285454, 
aws-checksums/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:26:40 UTC (rev 1285455)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-checksums
+pkgver=0.1.13
+pkgrel=1
+pkgdesc='Cross-Platform HW accelerated CRC32c and CRC32 with fallback to 
efficient SW implementations.'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-checksums'
+license=(Apache)
+depends=(aws-c-common)
+makedepends=(cmake)
+source=(aws-checksums-$pkgver.zip::https://github.com/awslabs/aws-checksums/archive/v$pkgver.zip)
+sha256sums=('2821f786a4dd01105449aa3e6faf80088861ecb2a10fbb006b78bd26e2c3cfb8')
+
+build() {
+  cd aws-checksums-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-checksums-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-checksums-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:26:20
  Author: anatolik
Revision: 1285454

upgpkg: aws-checksums 0.1.13-1

Modified:
  aws-checksums/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:24:02 UTC (rev 1285453)
+++ PKGBUILD2022-08-29 17:26:20 UTC (rev 1285454)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-checksums
-pkgver=0.1.12
+pkgver=0.1.13
 pkgrel=1
 pkgdesc='Cross-Platform HW accelerated CRC32c and CRC32 with fallback to 
efficient SW implementations.'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common)
 makedepends=(cmake)
 
source=(aws-checksums-$pkgver.zip::https://github.com/awslabs/aws-checksums/archive/v$pkgver.zip)
-sha256sums=('51611c906160a144c8789a6ae32c1e2a6d8aaae188e2c045be00ec4d13b36d74')
+sha256sums=('2821f786a4dd01105449aa3e6faf80088861ecb2a10fbb006b78bd26e2c3cfb8')
 
 build() {
   cd aws-checksums-$pkgver



[arch-commits] Commit in aws-c-io/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:24:02
  Author: anatolik
Revision: 1285453

archrelease: copy trunk to community-x86_64

Added:
  aws-c-io/repos/community-x86_64/PKGBUILD
(from rev 1285451, aws-c-io/trunk/PKGBUILD)
Deleted:
  aws-c-io/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:23:56 UTC (rev 1285452)
+++ PKGBUILD2022-08-29 17:24:02 UTC (rev 1285453)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-io
-pkgver=0.10.22
-pkgrel=1
-pkgdesc='AWS SDK module to handle all IO and TLS work for application 
protocols'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-io'
-license=(Apache)
-depends=(aws-c-common aws-c-cal s2n-tls)
-makedepends=(cmake)
-source=(aws-c-io-$pkgver.zip::https://github.com/awslabs/aws-c-io/archive/v$pkgver.zip)
-sha256sums=('75b73182ad252b85bf2e177cd228ae76cbd55a8a5acee66b38dbd1735cf1bf8c')
-
-build() {
-  cd aws-c-io-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-io-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-io-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-io/repos/community-x86_64/PKGBUILD (from rev 1285451, 
aws-c-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:24:02 UTC (rev 1285453)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-io
+pkgver=0.13.2
+pkgrel=1
+pkgdesc='AWS SDK module to handle all IO and TLS work for application 
protocols'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-io'
+license=(Apache)
+depends=(aws-c-common aws-c-cal s2n-tls)
+makedepends=(cmake)
+source=(aws-c-io-$pkgver.zip::https://github.com/awslabs/aws-c-io/archive/v$pkgver.zip)
+sha256sums=('f3f664f8db82fe38e3613c61126a023ecf013bc11c90bf21c23fe3dc4e2b6d88')
+
+build() {
+  cd aws-c-io-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-io-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-io-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-io/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:23:43
  Author: anatolik
Revision: 1285451

upgpkg: aws-c-io 0.13.2-1

Modified:
  aws-c-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:23:42 UTC (rev 1285450)
+++ PKGBUILD2022-08-29 17:23:43 UTC (rev 1285451)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-io
-pkgver=0.10.22
+pkgver=0.13.2
 pkgrel=1
 pkgdesc='AWS SDK module to handle all IO and TLS work for application 
protocols'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common aws-c-cal s2n-tls)
 makedepends=(cmake)
 
source=(aws-c-io-$pkgver.zip::https://github.com/awslabs/aws-c-io/archive/v$pkgver.zip)
-sha256sums=('75b73182ad252b85bf2e177cd228ae76cbd55a8a5acee66b38dbd1735cf1bf8c')
+sha256sums=('f3f664f8db82fe38e3613c61126a023ecf013bc11c90bf21c23fe3dc4e2b6d88')
 
 build() {
   cd aws-c-io-$pkgver



[arch-commits] Commit in aws-c-cal/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:17:10
  Author: anatolik
Revision: 1285437

archrelease: copy trunk to community-x86_64

Added:
  aws-c-cal/repos/community-x86_64/PKGBUILD
(from rev 1285435, aws-c-cal/trunk/PKGBUILD)
Deleted:
  aws-c-cal/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:17:03 UTC (rev 1285436)
+++ PKGBUILD2022-08-29 17:17:10 UTC (rev 1285437)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-cal
-pkgver=0.5.17
-pkgrel=1
-pkgdesc='AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for 
cryptography primitives'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-cal'
-license=(Apache)
-depends=(aws-c-common openssl)
-makedepends=(cmake)
-source=(aws-c-cal-$pkgver.zip::https://github.com/awslabs/aws-c-cal/archive/v$pkgver.zip)
-sha256sums=('d3e8d058658061712c17a75be5c5b1f19462aed2d2d7a2c9116c2766c2682b7b')
-
-build() {
-  cd aws-c-cal-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-cal-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-cal-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-cal/repos/community-x86_64/PKGBUILD (from rev 1285435, 
aws-c-cal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:17:10 UTC (rev 1285437)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-cal
+pkgver=0.5.19
+pkgrel=1
+pkgdesc='AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for 
cryptography primitives'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-cal'
+license=(Apache)
+depends=(aws-c-common openssl)
+makedepends=(cmake)
+source=(aws-c-cal-$pkgver.zip::https://github.com/awslabs/aws-c-cal/archive/v$pkgver.zip)
+sha256sums=('4bf0bfa2728fbf55f70f4016536c04cf9efef4be853f7f30f7597924dff1f0b6')
+
+build() {
+  cd aws-c-cal-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-cal-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-cal-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-cal/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:16:49
  Author: anatolik
Revision: 1285435

upgpkg: aws-c-cal 0.5.19-1

Modified:
  aws-c-cal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:16:49 UTC (rev 1285434)
+++ PKGBUILD2022-08-29 17:16:49 UTC (rev 1285435)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-cal
-pkgver=0.5.17
+pkgver=0.5.19
 pkgrel=1
 pkgdesc='AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for 
cryptography primitives'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(aws-c-common openssl)
 makedepends=(cmake)
 
source=(aws-c-cal-$pkgver.zip::https://github.com/awslabs/aws-c-cal/archive/v$pkgver.zip)
-sha256sums=('d3e8d058658061712c17a75be5c5b1f19462aed2d2d7a2c9116c2766c2682b7b')
+sha256sums=('4bf0bfa2728fbf55f70f4016536c04cf9efef4be853f7f30f7597924dff1f0b6')
 
 build() {
   cd aws-c-cal-$pkgver



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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:09:11
  Author: anatolik
Revision: 1285433

archrelease: copy trunk to community-x86_64

Added:
  bpftrace/repos/community-x86_64/PKGBUILD
(from rev 1285432, bpftrace/trunk/PKGBUILD)
  bpftrace/repos/community-x86_64/bcc-025.patch
(from rev 1285432, bpftrace/trunk/bcc-025.patch)
  bpftrace/repos/community-x86_64/binutils-239.patch
(from rev 1285432, bpftrace/trunk/binutils-239.patch)
Deleted:
  bpftrace/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |   66 ++
 bcc-025.patch  |   88 +++
 binutils-239.patch |   82 +++
 3 files changed, 208 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:08:45 UTC (rev 1285432)
+++ PKGBUILD2022-08-29 17:09:11 UTC (rev 1285433)
@@ -1,28 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Tommaso Sardelli 
-
-pkgname=bpftrace
-pkgver=0.15.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' 'llvm13-libs' 'clang13' 'bcc' 'libbpf')
-makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
- 'asciidoctor' 'xxd')
-options=(!strip)
-source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";)
-sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a')
-
-build() {
-  cd bpftrace-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DLLVM_DIR=/usr/lib/llvm13/lib/cmake/llvm/ -G Ninja -B build
-  ninja -C build
-}
-
-package() {
-  cd bpftrace-$pkgver
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: bpftrace/repos/community-x86_64/PKGBUILD (from rev 1285432, 
bpftrace/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:09:11 UTC (rev 1285433)
@@ -0,0 +1,38 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Tommaso Sardelli 
+
+pkgname=bpftrace
+pkgver=0.15.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' 'llvm13-libs' 'clang13' 'bcc' 'libbpf')
+makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
+ 'asciidoctor' 'xxd')
+options=(!strip)
+source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";
+binutils-239.patch
+bcc-025.patch)
+sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a'
+
'49d168b4a40898eef688196dfed12423392cd56635c63c2a32e3c5a5fb4a8757fee3f4b31df9ba43736d7c0a3ad38a14d6ceb07cdfc73d8598b48d6c17727ba2'
+
'22ef3d05790416b4286ea9931646c3940877da8cf02b9645edbc753a4adb75e90f233b533d0c2c790eb62592c6af6487c02a502ecca8d547ec3d329a2aa71f64')
+
+prepare() {
+  cd bpftrace-$pkgver
+  patch -p1 < ../bcc-025.patch # 
https://github.com/iovisor/bpftrace/issues/2340
+  patch -p1 < ../binutils-239.patch # 
https://github.com/iovisor/bpftrace/pull/2287
+}
+
+build() {
+  cd bpftrace-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DLLVM_DIR=/usr/lib/llvm13/lib/cmake/llvm/ -G Ninja -B build
+  ninja -C build
+}
+
+package() {
+  cd bpftrace-$pkgver
+  DESTDIR="$pkgdir" ninja -C build install
+}

Copied: bpftrace/repos/community-x86_64/bcc-025.patch (from rev 1285432, 
bpftrace/trunk/bcc-025.patch)
===
--- bcc-025.patch   (rev 0)
+++ bcc-025.patch   2022-08-29 17:09:11 UTC (rev 1285433)
@@ -0,0 +1,88 @@
+From f86c3bde84d9e75ec2780a51a1ca7dc20a4740e6 Mon Sep 17 00:00:00 2001
+From: Dominique Martinet 
+Date: Thu, 25 Aug 2022 21:47:30 +0900
+Subject: [PATCH] Fix builds against bcc >= 0.25.0
+
+libbpf 1.0.0 removed bpf_load_program_attr in
+https://github.com/libbpf/libbpf/commit/9476dce6fe905a6bf1d4c483f7b2b8575c4ffb2d
+and bcc 0.25.0 in turn changed bcc_prog_load_xattr to use
+bpf_prog_load_opts instead in
+https://github.com/iovisor/bcc/commit/185143bdec6134255363446f644acd766ffb3825
+
+Add a compile check to use the appropriate version
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index c5c4c39630d2..f23b2ba52740 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -138,7 +138,7 @@ check_symbol_exists(bpf_attach_kfunc 
"${LIBBCC_INCLUDE_DIRS}/bcc/libbpf.h" HAVE_
+ check_symbol_exists(bcc_usdt_addsem_probe 
"${LIBBCC_INCLUDE_DIRS}/bcc/bcc_usdt.h" HAVE_BCC_USDT_ADDSEM)
+ check_symbol_exists(bcc_procutils_which_so 
"${LIBBCC_INCLUDE_DIRS}/bcc/bcc_proc.

[arch-commits] Commit in bpftrace/trunk (PKGBUILD bcc-025.patch binutils-239.patch)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:08:45
  Author: anatolik
Revision: 1285432

FS#75718: rebuild against the latest bcc and binutils

Added:
  bpftrace/trunk/bcc-025.patch
  bpftrace/trunk/binutils-239.patch
Modified:
  bpftrace/trunk/PKGBUILD

+
 PKGBUILD   |   16 +++--
 bcc-025.patch  |   88 +++
 binutils-239.patch |   82 +++
 3 files changed, 183 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 17:04:44 UTC (rev 1285431)
+++ PKGBUILD2022-08-29 17:08:45 UTC (rev 1285432)
@@ -3,7 +3,7 @@
 
 pkgname=bpftrace
 pkgver=0.15.0
-pkgrel=2
+pkgrel=3
 pkgdesc='High-level tracing language for Linux eBPF'
 arch=('x86_64')
 url='https://github.com/iovisor/bpftrace'
@@ -12,9 +12,19 @@
 makedepends=('cmake' 'llvm13' 'git' 'linux-headers' 'ninja' 'gtest' 'cereal'
  'asciidoctor' 'xxd')
 options=(!strip)
-source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";)
-sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a')
+source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz";
+binutils-239.patch
+bcc-025.patch)
+sha512sums=('916e9afeab301e62472e570ef77a3b9b27b43251880b64f1c5f151583c59a6c61e9ede50f3607044b27c5a6ce1a654f290153bf3f9237ebc0a823b5e6356187a'
+
'49d168b4a40898eef688196dfed12423392cd56635c63c2a32e3c5a5fb4a8757fee3f4b31df9ba43736d7c0a3ad38a14d6ceb07cdfc73d8598b48d6c17727ba2'
+
'22ef3d05790416b4286ea9931646c3940877da8cf02b9645edbc753a4adb75e90f233b533d0c2c790eb62592c6af6487c02a502ecca8d547ec3d329a2aa71f64')
 
+prepare() {
+  cd bpftrace-$pkgver
+  patch -p1 < ../bcc-025.patch # 
https://github.com/iovisor/bpftrace/issues/2340
+  patch -p1 < ../binutils-239.patch # 
https://github.com/iovisor/bpftrace/pull/2287
+}
+
 build() {
   cd bpftrace-$pkgver
 

Added: bcc-025.patch
===
--- bcc-025.patch   (rev 0)
+++ bcc-025.patch   2022-08-29 17:08:45 UTC (rev 1285432)
@@ -0,0 +1,88 @@
+From f86c3bde84d9e75ec2780a51a1ca7dc20a4740e6 Mon Sep 17 00:00:00 2001
+From: Dominique Martinet 
+Date: Thu, 25 Aug 2022 21:47:30 +0900
+Subject: [PATCH] Fix builds against bcc >= 0.25.0
+
+libbpf 1.0.0 removed bpf_load_program_attr in
+https://github.com/libbpf/libbpf/commit/9476dce6fe905a6bf1d4c483f7b2b8575c4ffb2d
+and bcc 0.25.0 in turn changed bcc_prog_load_xattr to use
+bpf_prog_load_opts instead in
+https://github.com/iovisor/bcc/commit/185143bdec6134255363446f644acd766ffb3825
+
+Add a compile check to use the appropriate version
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index c5c4c39630d2..f23b2ba52740 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -138,7 +138,7 @@ check_symbol_exists(bpf_attach_kfunc 
"${LIBBCC_INCLUDE_DIRS}/bcc/libbpf.h" HAVE_
+ check_symbol_exists(bcc_usdt_addsem_probe 
"${LIBBCC_INCLUDE_DIRS}/bcc/bcc_usdt.h" HAVE_BCC_USDT_ADDSEM)
+ check_symbol_exists(bcc_procutils_which_so 
"${LIBBCC_INCLUDE_DIRS}/bcc/bcc_proc.h" HAVE_BCC_WHICH_SO)
+ 
+-# bcc_prog_load_xattr needs struct bpf_load_program_attr,
++# bcc_prog_load_xattr needs struct bpf_prog_load_opts or 
bpf_load_program_attr,
+ # which is defined in libbpf
+ if (LIBBPF_FOUND)
+   check_symbol_exists(bcc_prog_load_xattr 
"${LIBBCC_INCLUDE_DIRS}/bcc/libbpf.h" HAVE_BCC_PROG_LOAD_XATTR)
+@@ -236,6 +236,10 @@ if(LIBBCC_ATTACH_UPROBE_SEVEN_ARGS_SIGNATURE)
+   set(BPFTRACE_FLAGS "${BPFTRACE_FLAGS}" 
LIBBCC_ATTACH_UPROBE_SEVEN_ARGS_SIGNATURE)
+ endif(LIBBCC_ATTACH_UPROBE_SEVEN_ARGS_SIGNATURE)
+ 
++if(LIBBCC_PROG_LOAD_XATTRS_WITH_OPTS)
++  set(BPFTRACE_FLAGS "${BPFTRACE_FLAGS}" LIBBCC_PROG_LOAD_XATTRS_WITH_OPTS)
++endif(LIBBCC_PROG_LOAD_XATTRS_WITH_OPTS)
++
+ if (HAVE_BCC_KFUNC)
+   set(BPFTRACE_FLAGS "${BPFTRACE_FLAGS}" HAVE_BCC_KFUNC)
+ endif(HAVE_BCC_KFUNC)
+diff --git a/cmake/FindLibBcc.cmake b/cmake/FindLibBcc.cmake
+index 7b4f12835786..20d2e68cd75f 100644
+--- a/cmake/FindLibBcc.cmake
 b/cmake/FindLibBcc.cmake
+@@ -85,6 +85,16 @@ int main(void) {
+   return 0;
+ }
+ " LIBBCC_ATTACH_UPROBE_SEVEN_ARGS_SIGNATURE)
++CHECK_CXX_SOURCE_COMPILES("
++#include 
++
++int main(void) {
++  struct bpf_prog_load_opts *opts = (struct bpf_prog_load_opts*) 1;
++
++  bcc_prog_load_xattr(BPF_PROG_TYPE_UNSPEC, 0, 0, 0, opts, 0, 0, 0, true);
++  return 0;
++}
++" LIBBCC_PROG_LOAD_XATTRS_WITH_OPTS)
+ SET(CMAKE_REQUIRED_INCLUDES)
+ 
+ SET(CMAKE_REQUIRED_LIBRARIES ${LIBBCC_BPF_LIBRARIES})
+diff --git a/src/attached_probe.cpp b/src/attached_probe.cpp
+index 60778e53ce44..dd46f15fd8d2 100644
+--- a/src/attached_probe.cpp
 b/src/attached_probe.cpp
+@@ -731,7 +731,24 @@ void AttachedProbe::load_prog()
+ continue;
+   }
+ 
+-#ifdef HAVE_BCC_

[arch-commits] Commit in aws-c-common/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:03:25
  Author: anatolik
Revision: 1285429

archrelease: copy trunk to community-x86_64

Added:
  aws-c-common/repos/community-x86_64/PKGBUILD
(from rev 1285428, aws-c-common/trunk/PKGBUILD)
Deleted:
  aws-c-common/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 17:03:05 UTC (rev 1285428)
+++ PKGBUILD2022-08-29 17:03:25 UTC (rev 1285429)
@@ -1,32 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=aws-c-common
-pkgver=0.6.20
-pkgrel=1
-pkgdesc='Core c99 package for AWS SDK for C. Includes cross-platform 
primitives, configuration, data structures, and error handling.'
-arch=(x86_64)
-url='https://github.com/awslabs/aws-c-common'
-license=(Apache)
-depends=(glibc)
-makedepends=(cmake)
-source=(aws-c-common-$pkgver.zip::https://github.com/awslabs/aws-c-common/archive/v$pkgver.zip)
-sha256sums=('33db39600d714527dca2a57770bb589d76fd8c8ac73a95bc6c87c402165a5748')
-
-build() {
-  cd aws-c-common-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd aws-c-common-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd aws-c-common-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: aws-c-common/repos/community-x86_64/PKGBUILD (from rev 1285428, 
aws-c-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 17:03:25 UTC (rev 1285429)
@@ -0,0 +1,32 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=aws-c-common
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='Core c99 package for AWS SDK for C. Includes cross-platform 
primitives, configuration, data structures, and error handling.'
+arch=(x86_64)
+url='https://github.com/awslabs/aws-c-common'
+license=(Apache)
+depends=(glibc)
+makedepends=(cmake)
+source=(aws-c-common-$pkgver.zip::https://github.com/awslabs/aws-c-common/archive/v$pkgver.zip)
+sha256sums=('a200fadaaffa5e4dc0f5600e93c88b74c49b381661194bed76829ec1e483510b')
+
+build() {
+  cd aws-c-common-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd aws-c-common-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd aws-c-common-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in aws-c-common/trunk (PKGBUILD)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 17:03:05
  Author: anatolik
Revision: 1285428

upgpkg: aws-c-common 0.8.1-1

Modified:
  aws-c-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 16:58:24 UTC (rev 1285427)
+++ PKGBUILD2022-08-29 17:03:05 UTC (rev 1285428)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=aws-c-common
-pkgver=0.6.20
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='Core c99 package for AWS SDK for C. Includes cross-platform 
primitives, configuration, data structures, and error handling.'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(glibc)
 makedepends=(cmake)
 
source=(aws-c-common-$pkgver.zip::https://github.com/awslabs/aws-c-common/archive/v$pkgver.zip)
-sha256sums=('33db39600d714527dca2a57770bb589d76fd8c8ac73a95bc6c87c402165a5748')
+sha256sums=('a200fadaaffa5e4dc0f5600e93c88b74c49b381661194bed76829ec1e483510b')
 
 build() {
   cd aws-c-common-$pkgver



[arch-commits] Commit in s2n-tls/repos/community-x86_64 (4 files)

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 16:58:24
  Author: anatolik
Revision: 1285427

archrelease: copy trunk to community-x86_64

Added:
  s2n-tls/repos/community-x86_64/PKGBUILD
(from rev 1285426, s2n-tls/trunk/PKGBUILD)
  s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch
(from rev 1285426, s2n-tls/trunk/missing_symbol_workaround.patch)
Deleted:
  s2n-tls/repos/community-x86_64/PKGBUILD
  s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch

-+
 PKGBUILD|   72 +++---
 missing_symbol_workaround.patch |   26 ++---
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-29 16:58:01 UTC (rev 1285426)
+++ PKGBUILD2022-08-29 16:58:24 UTC (rev 1285427)
@@ -1,36 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=s2n-tls
-pkgver=1.3.19
-pkgrel=1
-pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
-arch=(x86_64)
-url='https://github.com/aws/s2n-tls'
-license=(Apache)
-provides=(s2n) # upstream renamed the project from s2n to s2n-tls
-conflicts=(s2n)
-replaces=(s2n)
-depends=(openssl gcc-libs)
-makedepends=(cmake)
-source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
-sha256sums=('507b8a1487ee630af5cc754d3cdc403e2e54de546da8cd83914fbf4a064c2f1e')
-
-build() {
-  cd s2n-tls-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF \
-  -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd s2n-tls-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd s2n-tls-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: s2n-tls/repos/community-x86_64/PKGBUILD (from rev 1285426, 
s2n-tls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-29 16:58:24 UTC (rev 1285427)
@@ -0,0 +1,36 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=s2n-tls
+pkgver=1.3.20
+pkgrel=1
+pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
+arch=(x86_64)
+url='https://github.com/aws/s2n-tls'
+license=(Apache)
+provides=(s2n) # upstream renamed the project from s2n to s2n-tls
+conflicts=(s2n)
+replaces=(s2n)
+depends=(openssl gcc-libs)
+makedepends=(cmake)
+source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
+sha256sums=('0f42321a631f53b7cc03cbc19fda41e8c22d9ef891ad7581c95a5bb46871')
+
+build() {
+  cd s2n-tls-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF \
+  -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd s2n-tls-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd s2n-tls-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: missing_symbol_workaround.patch
===
--- missing_symbol_workaround.patch 2022-08-29 16:58:01 UTC (rev 1285426)
+++ missing_symbol_workaround.patch 2022-08-29 16:58:24 UTC (rev 1285427)
@@ -1,13 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a93d51f5..8d2806ad 100755
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -177,7 +177,7 @@ set(CMAKE_C_FLAGS_DEBUGOPT "")
- 
- target_compile_options(${PROJECT_NAME} PRIVATE -pedantic -std=gnu99 -Wall 
-Werror -Wimplicit -Wunused -Wcomment -Wchar-subscripts
- -Wuninitialized -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings 
-Wno-deprecated-declarations -Wno-unknown-pragmas -Wformat-security
---Wno-missing-braces -fvisibility=hidden -DS2N_EXPORTS)
-+-Wno-missing-braces -DS2N_EXPORTS)
- 
- if(S2N_NO_PQ)
- target_compile_options(${PROJECT_NAME} PUBLIC -DS2N_NO_PQ)

Copied: s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch (from 
rev 1285426, s2n-tls/trunk/missing_symbol_workaround.patch)
===
--- missing_symbol_workaround.patch (rev 0)
+++ missing_symbol_workaround.patch 2022-08-29 16:58:24 UTC (rev 1285427)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a93d51f5..8d2806ad 100755
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -177,7 +177,7 @@ set(CMAKE_C_FLAGS_DEBUGOPT "")
+ 
+ target_compile_options(${PROJECT_NAME} PRIVATE -pedantic -std=gnu99 -Wall 
-Werror -Wimplicit -Wunused -Wcomment -Wchar-subscripts
+ -Wuninitialized -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings 
-Wno-d

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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 16:58:01
  Author: anatolik
Revision: 1285426

upgpkg: s2n-tls 1.3.20-1

Modified:
  s2n-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 16:54:20 UTC (rev 1285425)
+++ PKGBUILD2022-08-29 16:58:01 UTC (rev 1285426)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=s2n-tls
-pkgver=1.3.19
+pkgver=1.3.20
 pkgrel=1
 pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(openssl gcc-libs)
 makedepends=(cmake)
 
source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
-sha256sums=('507b8a1487ee630af5cc754d3cdc403e2e54de546da8cd83914fbf4a064c2f1e')
+sha256sums=('0f42321a631f53b7cc03cbc19fda41e8c22d9ef891ad7581c95a5bb46871')
 
 build() {
   cd s2n-tls-$pkgver



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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 16:38:33
  Author: anatolik
Revision: 454709

archrelease: copy trunk to testing-x86_64

Added:
  libatomic_ops/repos/testing-x86_64/
  libatomic_ops/repos/testing-x86_64/PKGBUILD
(from rev 454708, libatomic_ops/trunk/PKGBUILD)

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

Copied: libatomic_ops/repos/testing-x86_64/PKGBUILD (from rev 454708, 
libatomic_ops/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-29 16:38:33 UTC (rev 454709)
@@ -0,0 +1,34 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Jan de Groot 
+# Contributor: Adam Walters 
+# Contributor: William Rea 
+# Contributor: Rémy Oudompheng 
+
+pkgname=libatomic_ops
+pkgver=7.6.14
+pkgrel=1
+pkgdesc='Provides semi-portable access to hardware provided atomic memory 
operations'
+arch=(x86_64)
+url='https://github.com/ivmai/libatomic_ops'
+depends=(glibc)
+license=(GPL2 MIT)
+options=(!docs)
+source=($url/releases/download/v$pkgver/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('390f244d424714735b7050d056567615b3b8f29008a663c262fb548f1802d292')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --enable-shared
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 doc/LICENSING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-08-29 Thread Anatol Pomozov via arch-commits
Date: Monday, August 29, 2022 @ 16:38:16
  Author: anatolik
Revision: 454708

upgpkg: libatomic_ops 7.6.14-1

Modified:
  libatomic_ops/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-29 16:22:58 UTC (rev 454707)
+++ PKGBUILD2022-08-29 16:38:16 UTC (rev 454708)
@@ -5,7 +5,7 @@
 # Contributor: Rémy Oudompheng 
 
 pkgname=libatomic_ops
-pkgver=7.6.12
+pkgver=7.6.14
 pkgrel=1
 pkgdesc='Provides semi-portable access to hardware provided atomic memory 
operations'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 license=(GPL2 MIT)
 options=(!docs)
 source=($url/releases/download/v$pkgver/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('f0ab566e25fce08b560e1feab6a3db01db4a38e5bc687804334ef3920c549f3e')
+sha256sums=('390f244d424714735b7050d056567615b3b8f29008a663c262fb548f1802d292')
 
 build() {
   cd $pkgname-$pkgver



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

2022-08-24 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 25, 2022 @ 01:45:35
  Author: anatolik
Revision: 454489

archrelease: copy trunk to testing-x86_64

Added:
  booster/repos/testing-x86_64/
  booster/repos/testing-x86_64/PKGBUILD
(from rev 454488, booster/trunk/PKGBUILD)

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

Copied: booster/repos/testing-x86_64/PKGBUILD (from rev 454488, 
booster/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-25 01:45:35 UTC (rev 454489)
@@ -0,0 +1,65 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=booster
+pkgver=0.9
+pkgrel=1
+pkgdesc='Fast and secure initramfs generator'
+arch=(x86_64)
+url='https://github.com/anatol/booster'
+license=(MIT)
+depends=(bash)
+makedepends=(go ruby-ronn-ng)
+#checkdepends=(qemu-headless linux tang)
+optdepends=(
+  'busybox: to enable emergency shell at the boot time'
+  'yubikey-personalization: for clevis Yubikey challenge-response support'
+  'libfido2: for systemd-enroll with FIDO2'
+)
+backup=(etc/booster.yaml)
+provides=(initramfs)
+source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
+sha512sums=('1c7f00fb5a5d6682927506390e858efc09f46dc85d519d51455235cc558c9f957b9049cd628ef0f74054c67e01a4b9440ef206f94c06fe0cd43dbf496b059236')
+
+build() {
+  cd booster-$pkgver
+
+  cd generator
+  CGO_CPPFLAGS="${CPPFLAGS}" CGO_CFLAGS="${CFLAGS}" CGO_CXXFLAGS="${CXXFLAGS}" 
CGO_LDFLAGS="${LDFLAGS}" \
+go build -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags "-linkmode external -extldflags \"${LDFLAGS}\""
+
+  cd ../init
+  CGO_ENABLED=0 go build -trimpath -mod=readonly -modcacherw
+
+  cd ..
+  ronn docs/manpage.md
+}
+
+check() {
+  cd booster-$pkgver
+
+  # (cd init; go test)
+  # (cd generator; go test)
+
+  # arch chroot does not allow access to KVM
+  # TEST_DISABLE_KVM=1 go test -v # disable integration tests for now as it 
require a lot of time and space to build 10G images
+}
+
+package() {
+  cd booster-$pkgver
+  mkdir "$pkgdir/etc/"
+  touch "$pkgdir/etc/booster.yaml"
+  install -Dp -m755 generator/generator "$pkgdir/usr/bin/booster"
+  install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1"
+  install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init"
+  install -Dp -m755 packaging/arch/regenerate_images 
"$pkgdir/usr/lib/booster/regenerate_images"
+
+  install -Dp -m644 packaging/arch/90-booster-install.hook 
"$pkgdir/usr/share/libalpm/hooks/90-booster-install.hook"
+  install -Dp -m755 packaging/arch/booster-install 
"$pkgdir/usr/share/libalpm/scripts/booster-install"
+  install -Dp -m644 packaging/arch/60-booster-remove.hook 
"$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook"
+  install -Dp -m755 packaging/arch/booster-remove 
"$pkgdir/usr/share/libalpm/scripts/booster-remove"
+  install -Dp -m755 contrib/completion/bash 
"$pkgdir/usr/share/bash-completion/completions/booster"
+}



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

2022-08-24 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 25, 2022 @ 01:45:15
  Author: anatolik
Revision: 454488

upgpkg: booster 0.9-1

Modified:
  booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 21:36:45 UTC (rev 454487)
+++ PKGBUILD2022-08-25 01:45:15 UTC (rev 454488)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=booster
-pkgver=0.8
+pkgver=0.9
 pkgrel=1
 pkgdesc='Fast and secure initramfs generator'
 arch=(x86_64)
@@ -18,7 +18,7 @@
 backup=(etc/booster.yaml)
 provides=(initramfs)
 
source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
-sha512sums=('41c189e59db9ed4ca654e2916843c51bcaa98a42b8cda355fa2ac8a806250b851dc460d150401b3a9c1ac79828f0dbb9d96bab796f8ba298c900360e593bf6a6')
+sha512sums=('1c7f00fb5a5d6682927506390e858efc09f46dc85d519d51455235cc558c9f957b9049cd628ef0f74054c67e01a4b9440ef206f94c06fe0cd43dbf496b059236')
 
 build() {
   cd booster-$pkgver



[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2022-08-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 23, 2022 @ 16:49:53
  Author: anatolik
Revision: 1275549

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 1275543, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/configs.patch
(from rev 1275543, gitlab/trunk/configs.patch)
  gitlab/repos/community-x86_64/environment
(from rev 1275544, gitlab/trunk/environment)
  gitlab/repos/community-x86_64/fixes.patch
(from rev 1275544, gitlab/trunk/fixes.patch)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 1275544, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 1275545, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 1275545, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-puma.service
(from rev 1275545, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 1275545, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 1275545, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 1275546, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 1275546, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 1275546, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/configs.patch
  gitlab/repos/community-x86_64/environment
  gitlab/repos/community-x86_64/fixes.patch
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-puma.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  370 
 configs.patch   |  696 +++---
 environment |6 
 fixes.patch |   40 +-
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +-
 gitlab-puma.service |   68 ++--
 gitlab-sidekiq.service  |   60 +--
 gitlab.install  |   68 ++--
 gitlab.logrotate|   12 
 gitlab.target   |   14 
 gitlab.tmpfiles.d   |2 
 13 files changed, 718 insertions(+), 718 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 16:49:53 UTC (rev 1275548)
+++ PKGBUILD2022-08-23 16:49:53 UTC (rev 1275549)
@@ -1,185 +0,0 @@
-# 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=15.3.0
-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=('ruby2.7' '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
-fixes.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'
-
'cd93f745f908800237034f639f1776e4d3111c4375d93e3d44be9b4b25f2e3a39ffaa43c70c3d32e1b534cbc968694288e742ff4052e5f2091cb74cf441170c6'
-
'3eb5058d6edc2d16f5558a3ee485ba796aa64fb4b9eb7595390322344b809fcb47a45be9d7fe36c822ac2724aeecb2905a0ea9a868a56349ac2bc5c8c9f070e3'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-
'451a030940f124bccd6d29c1924861b361d52db32cff6e745c144286c2afc7065e117f825721145ed2dd440

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

2022-08-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 23, 2022 @ 16:48:47
  Author: anatolik
Revision: 1275542

upgpkg: gitlab 15.3.1-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 16:48:44 UTC (rev 1275541)
+++ PKGBUILD2022-08-23 16:48:47 UTC (rev 1275542)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=15.3.0
+pkgver=15.3.1
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2022-08-22 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 23, 2022 @ 04:24:50
  Author: anatolik
Revision: 1274904

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  370 
 configs.patch   |  696 +++---
 environment |6 
 fixes.patch |   40 +-
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +-
 gitlab-puma.service |   68 ++--
 gitlab-sidekiq.service  |   60 +--
 gitlab.install  |   68 ++--
 gitlab.logrotate|   12 
 gitlab.target   |   14 
 gitlab.tmpfiles.d   |2 
 13 files changed, 718 insertions(+), 718 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 02:50:41 UTC (rev 1274903)
+++ PKGBUILD2022-08-23 04:24:50 UTC (rev 1274904)
@@ -1,185 +0,0 @@
-# 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=15.3.0
-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=('ruby2.7' '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
-fixes.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'
-
'cd93f745f908800237034f639f1776e4d3111c4375d93e3d44be9b4b25f2e3a39ffaa43c70c3d32e1b534cbc968694288e742ff4052e5f2091cb74cf441170c6'
-
'3eb5058d6edc2d16f5558a3ee485ba796aa64fb4b9eb7595390322344b809fcb47a45be9d7fe36c822ac2724aeecb2905a0ea9a868a56349ac2bc5c8c9f070e3'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-
'451a030940f124bccd6d29c1924861b361d52db32cff6e745c144286c2afc7065e117f825721145ed2dd440

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

2022-08-22 Thread Anatol Pomozov via arch-commits
Date: Monday, August 22, 2022 @ 19:28:34
  Author: anatolik
Revision: 454429

archrelease: copy trunk to testing-x86_64

Added:
  ethtool/repos/testing-x86_64/
  ethtool/repos/testing-x86_64/PKGBUILD
(from rev 454428, ethtool/trunk/PKGBUILD)
  ethtool/repos/testing-x86_64/keys/

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

Copied: ethtool/repos/testing-x86_64/PKGBUILD (from rev 454428, 
ethtool/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-22 19:28:34 UTC (rev 454429)
@@ -0,0 +1,34 @@
+# Maintainer : Ionut Biru 
+# Contributor: Paul Mattal 
+# Contributor: Martin Kemp 
+
+pkgname=ethtool
+pkgver=5.19
+pkgrel=1
+epoch=1
+pkgdesc="Utility for controlling network drivers and hardware"
+arch=('x86_64')
+url="https://www.kernel.org/pub/software/network/ethtool/";
+license=('GPL')
+depends=('glibc' 'libmnl')
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha1sums=('00bfe4a24c7d8ddf94d87407cc54a58e9c8947d5'
+  'SKIP')
+validpgpkeys=(CE4A4D080F0D304F23B9EBDD972D5BF4DC613806  # John W. Linville 

+  D2CB120AB45957B721CD9596F4554567B91DE934) # Michal Kubecek 

+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr --mandir=/usr/share/man --sbindir=/usr/bin
+make
+}
+
+check() {
+cd $pkgname-$pkgver
+make check
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}



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

2022-08-22 Thread Anatol Pomozov via arch-commits
Date: Monday, August 22, 2022 @ 19:28:13
  Author: anatolik
Revision: 454428

upgpkg: ethtool 1:5.19-1

Modified:
  ethtool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-22 19:27:53 UTC (rev 454427)
+++ PKGBUILD2022-08-22 19:28:13 UTC (rev 454428)
@@ -3,7 +3,7 @@
 # Contributor: Martin Kemp 
 
 pkgname=ethtool
-pkgver=5.18
+pkgver=5.19
 pkgrel=1
 epoch=1
 pkgdesc="Utility for controlling network drivers and hardware"
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('glibc' 'libmnl')
 
source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha1sums=('742a81e812f4ed3aea5eeb9268afe527ee1f9592'
+sha1sums=('00bfe4a24c7d8ddf94d87407cc54a58e9c8947d5'
   'SKIP')
 validpgpkeys=(CE4A4D080F0D304F23B9EBDD972D5BF4DC613806  # John W. Linville 

   D2CB120AB45957B721CD9596F4554567B91DE934) # Michal Kubecek 




[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2022-08-22 Thread Anatol Pomozov via arch-commits
Date: Monday, August 22, 2022 @ 19:19:20
  Author: anatolik
Revision: 1274860

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  370 
 configs.patch   |  696 +++---
 environment |6 
 fixes.patch |   40 +-
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +-
 gitlab-puma.service |   68 ++--
 gitlab-sidekiq.service  |   60 +--
 gitlab.install  |   68 ++--
 gitlab.logrotate|   12 
 gitlab.target   |   14 
 gitlab.tmpfiles.d   |2 
 13 files changed, 718 insertions(+), 718 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-22 19:18:14 UTC (rev 1274859)
+++ PKGBUILD2022-08-22 19:19:20 UTC (rev 1274860)
@@ -1,185 +0,0 @@
-# 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=15.2.2
-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=('ruby2.7' '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
-fixes.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'
-
'cd93f745f908800237034f639f1776e4d3111c4375d93e3d44be9b4b25f2e3a39ffaa43c70c3d32e1b534cbc968694288e742ff4052e5f2091cb74cf441170c6'
-
'3eb5058d6edc2d16f5558a3ee485ba796aa64fb4b9eb7595390322344b809fcb47a45be9d7fe36c822ac2724aeecb2905a0ea9a868a56349ac2bc5c8c9f070e3'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-
'451a030940f124bccd6d29c1924861b361d52db32cff6e745c144286c2afc7065e117f825721145ed2dd4406

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

2022-08-22 Thread Anatol Pomozov via arch-commits
Date: Monday, August 22, 2022 @ 19:18:14
  Author: anatolik
Revision: 1274859

upgpkg: gitlab 15.3.0-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-22 18:53:54 UTC (rev 1274858)
+++ PKGBUILD2022-08-22 19:18:14 UTC (rev 1274859)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=15.2.2
+pkgver=15.3.0
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



[arch-commits] Commit in libopencm3/repos/community-any (4 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:23:53
  Author: anatolik
Revision: 1271497

archrelease: copy trunk to community-any

Added:
  
libopencm3/repos/community-any/0001-Revert-Drop-install-target-and-documentation.patch
(from rev 1271496, 
libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
  libopencm3/repos/community-any/PKGBUILD
(from rev 1271496, libopencm3/trunk/PKGBUILD)
Deleted:
  
libopencm3/repos/community-any/0001-Revert-Drop-install-target-and-documentation.patch
  libopencm3/repos/community-any/PKGBUILD

-+
 0001-Revert-Drop-install-target-and-documentation.patch |  106 +++---
 PKGBUILD|   84 +--
 2 files changed, 95 insertions(+), 95 deletions(-)

Deleted: 0001-Revert-Drop-install-target-and-documentation.patch
===
--- 0001-Revert-Drop-install-target-and-documentation.patch 2022-08-21 
01:23:29 UTC (rev 1271496)
+++ 0001-Revert-Drop-install-target-and-documentation.patch 2022-08-21 
01:23:53 UTC (rev 1271497)
@@ -1,53 +0,0 @@
-commit 33f456aad9313bfc42e5ae7ef47e7976b0572a71
-Author: Anatol Pomozov 
-Date:   Sun Jan 10 18:58:44 2016 -0800
-
-Revert "Drop "install" target and documentation."
-
-This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
-
-diff --git a/Makefile b/Makefile
-index 20f878fa..97f63933 100644
 a/Makefile
-+++ b/Makefile
-@@ -22,6 +22,13 @@ PREFIX  ?= arm-none-eabi-
- STYLECHECK  := scripts/checkpatch.pl
- STYLECHECKFLAGS := --no-tree -f --terse --mailback
- 
-+DESTDIR   ?= /usr/local
-+
-+INCDIR:= $(DESTDIR)/$(PREFIX)/include
-+LIBDIR:= $(DESTDIR)/$(PREFIX)/lib
-+SHAREDIR  := $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
-+INSTALL   := install
-+
- TARGETS ?=stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
-   stm32/l0 stm32/l1 stm32/l4 \
-   stm32/g0 stm32/g4 \
-@@ -80,6 +87,20 @@ lib: $(LIB_DIRS)
-   done;
-   $(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || 
true;
- 
-+install: lib
-+  @printf "  INSTALL headers\n"
-+  $(Q)$(INSTALL) -d $(INCDIR)/libopencm3
-+  $(Q)$(INSTALL) -d $(INCDIR)/libopencmsis
-+  $(Q)$(INSTALL) -d $(LIBDIR)
-+  $(Q)$(INSTALL) -d $(SHAREDIR)
-+  $(Q)cp -r include/libopencm3/* $(INCDIR)/libopencm3
-+  $(Q)cp -r include/libopencmsis/* $(INCDIR)/libopencmsis
-+  @printf "  INSTALL libs\n"
-+  $(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR)
-+  @printf "  INSTALL ldscripts\n"
-+  $(Q)$(INSTALL) -m 0644 lib/*.ld $(LIBDIR)
-+
-+
- html doc:
-   $(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
- 
-@@ -125,4 +146,4 @@ genlinktests.clean:
-   fi;
- 
- 
--.PHONY: build lib $(LIB_DIRS) doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean
-+.PHONY: build lib $(LIB_DIRS) install doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean

Copied: 
libopencm3/repos/community-any/0001-Revert-Drop-install-target-and-documentation.patch
 (from rev 1271496, 
libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
===
--- 0001-Revert-Drop-install-target-and-documentation.patch 
(rev 0)
+++ 0001-Revert-Drop-install-target-and-documentation.patch 2022-08-21 
01:23:53 UTC (rev 1271497)
@@ -0,0 +1,53 @@
+commit e0edbe707d3941e22114b8d770117bb585b54437
+Author: Anatol Pomozov 
+Date:   Sun Jan 10 18:58:44 2016 -0800
+
+Revert "Drop "install" target and documentation."
+
+This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
+
+diff --git a/Makefile b/Makefile
+index 6de524a6..4f37dcc7 100644
+--- a/Makefile
 b/Makefile
+@@ -22,6 +22,13 @@ PREFIX  ?= arm-none-eabi-
+ STYLECHECK  := scripts/checkpatch.pl
+ STYLECHECKFLAGS := --no-tree -f --terse --mailback
+ 
++DESTDIR   ?= /usr/local
++
++INCDIR:= $(DESTDIR)/$(PREFIX)/include
++LIBDIR:= $(DESTDIR)/$(PREFIX)/lib
++SHAREDIR  := $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
++INSTALL   := install
++
+ TARGETS ?=stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
+   stm32/l0 stm32/l1 stm32/l4 \
+   stm32/g0 stm32/g4 \
+@@ -81,6 +88,20 @@ lib: $(LIB_DIRS)
+   done;
+   $(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || 
true;
+ 
++install: lib
++  @printf "  INSTALL headers\n"
++  $(Q)$(INSTALL) -d $(INCDIR)/libopencm3
++  $(Q)$(INSTALL) -d $(INCDIR)/libopencmsis
++  $(Q)$(INSTALL) -d $(LIBDIR)
++  $(Q)$(INSTALL) -d $(SHAREDIR)
++  $(Q)cp -r include/libopencm3/* $(INCDIR)/libopencm3
++  $(Q)cp -r include/libopencmsis/* $(INCDIR)/libopencmsis
++  @print

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

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:23:29
  Author: anatolik
Revision: 1271496

upgpkg: libopencm3 r2815.44e142d4-1

Modified:
  libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch
  libopencm3/trunk/PKGBUILD

-+
 0001-Revert-Drop-install-target-and-documentation.patch |   16 +++---
 PKGBUILD|8 +++
 2 files changed, 12 insertions(+), 12 deletions(-)

Modified: 0001-Revert-Drop-install-target-and-documentation.patch
===
--- 0001-Revert-Drop-install-target-and-documentation.patch 2022-08-21 
01:11:23 UTC (rev 1271495)
+++ 0001-Revert-Drop-install-target-and-documentation.patch 2022-08-21 
01:23:29 UTC (rev 1271496)
@@ -1,4 +1,4 @@
-commit 33f456aad9313bfc42e5ae7ef47e7976b0572a71
+commit e0edbe707d3941e22114b8d770117bb585b54437
 Author: Anatol Pomozov 
 Date:   Sun Jan 10 18:58:44 2016 -0800
 
@@ -7,7 +7,7 @@
 This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
 
 diff --git a/Makefile b/Makefile
-index 20f878fa..97f63933 100644
+index 6de524a6..4f37dcc7 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -22,6 +22,13 @@ PREFIX  ?= arm-none-eabi-
@@ -24,7 +24,7 @@
  TARGETS ?=stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
stm32/l0 stm32/l1 stm32/l4 \
stm32/g0 stm32/g4 \
-@@ -80,6 +87,20 @@ lib: $(LIB_DIRS)
+@@ -81,6 +88,20 @@ lib: $(LIB_DIRS)
done;
$(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || 
true;
  
@@ -45,9 +45,9 @@
  html doc:
$(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
  
-@@ -125,4 +146,4 @@ genlinktests.clean:
-   fi;
+@@ -128,4 +149,4 @@ genlinktests.clean:
+ list-targets:
+   @echo $(TARGETS)
  
- 
--.PHONY: build lib $(LIB_DIRS) doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean
-+.PHONY: build lib $(LIB_DIRS) install doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean
+-.PHONY: build lib $(LIB_DIRS) doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean list-targets
++.PHONY: build lib $(LIB_DIRS) install doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean list-targets

Modified: PKGBUILD
===
--- PKGBUILD2022-08-21 01:11:23 UTC (rev 1271495)
+++ PKGBUILD2022-08-21 01:23:29 UTC (rev 1271496)
@@ -1,8 +1,8 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=libopencm3
-_commit=470a1394a838fe308d886f6880b7054bab4aa5eb
-pkgver=r2768.470a1394
+_commit=44e142d4f97863e669737707a1a22bf40ed49bbc
+pkgver=r2815.44e142d4
 pkgrel=1
 pkgdesc='Open Source firmware library for various ARM Cortex microcontrollers'
 arch=('any')
@@ -11,10 +11,10 @@
 depends=('arm-none-eabi-newlib')
 makedepends=('git' 'arm-none-eabi-gcc' 'python-yaml')
 options=(!strip staticlibs !buildflags)
-source=("git://github.com/libopencm3/libopencm3.git#commit=$_commit"
+source=("git+https://github.com/libopencm3/libopencm3.git#commit=$_commit";
 '0001-Revert-Drop-install-target-and-documentation.patch')
 sha512sums=('SKIP'
-
'90454277085d38657730970f8cefbd0e9f166486313824e74a144b69917b952dcca5a949699402d90391e4ebeecc6593e644ef3f4088a87999ec2d60840a219e')
+
'743ea321311d391473581c9a8d8120c50132de05f2055b3addb014244584711ef289521409898f8f5832c36f30f1fc3721703971ffc6dc2343af5abb3c9f71e4')
 
 pkgver() {
   cd $pkgname



[arch-commits] Commit in avr-gcc/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:11:23
  Author: anatolik
Revision: 1271495

archrelease: copy trunk to community-x86_64

Added:
  avr-gcc/repos/community-x86_64/PKGBUILD
(from rev 1271494, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-x86_64/keys/
Deleted:
  avr-gcc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  220 ++---
 1 file changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-21 01:10:56 UTC (rev 1271494)
+++ PKGBUILD2022-08-21 01:11:23 UTC (rev 1271495)
@@ -1,110 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Brad Fanella 
-# Contributor: Corrado Primier 
-# Contributor: danst0 
-
-# Build order: avr-binutils -> avr-gcc -> avr-libc
-
-_target=avr
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=7-20180125
-pkgdesc='The GNU AVR Compiler Collection'
-arch=(x86_64)
-license=(GPL LGPL FDL custom)
-url='http://gcc.gnu.org/'
-depends=($_target-binutils gcc-libs libmpc libisl zstd)
-optdepends=('avr-libc: Standard C library for Atmel AVR development')
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.xz
-   )
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "${_snapshot}" ]; then
-  _basedir=gcc-${_snapshot}
-else
-  _basedir=gcc-${pkgver}
-fi
-
-prepare() {
-cd ${_basedir}
-}
-
-build() {
-cd "${srcdir}"/${_basedir} 
-
-echo ${pkgver} > gcc/BASE-VER
-
-cd "${srcdir}"
-mkdir gcc-build && cd gcc-build
-
-export CFLAGS_FOR_TARGET='-O2 -pipe'
-export CXXFLAGS_FOR_TARGET='-O2 -pipe'
-
-# Credits @allanmcrae
-# 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-# TODO: properly deal with the build issues resulting from this
-CFLAGS=${CFLAGS/-Werror=format-security/}
-CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-# --disable-linker-build-id   https://bugs.archlinux.org/task/34902
-# --disable-__cxa_atexit   https://bugs.archlinux.org/task/50848
-"${srcdir}"/${_basedir}/configure \
---disable-install-libiberty \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-libunwind-exceptions \
---disable-linker-build-id \
---disable-nls \
---disable-werror \
---disable-__cxa_atexit \
---enable-checking=release \
---enable-clocale=gnu \
---enable-gnu-unique-object \
---enable-gold \
---enable-languages=c,c++ \
---enable-ld=default \
---enable-lto \
---enable-plugin \
---enable-shared \
---infodir=/usr/share/info \
---libdir=/usr/lib \
---libexecdir=/usr/lib \
---mandir=/usr/share/man \
---prefix=/usr \
---target=$_target \
---with-as=/usr/bin/$_target-as \
---with-gnu-as \
---with-gnu-ld \
---with-ld=/usr/bin/$_target-ld \
---with-plugin-ld=ld.gold \
---with-system-zlib \
---with-isl \
---enable-gnu-indirect-function
-
-make
-}
-
-package() {
-cd "${srcdir}"/gcc-build
-
-make -j1 DESTDIR="${pkgdir}" install
-
-# Strip debug symbols from libraries; without this, the package size 
balloons to ~500MB.
-find "${pkgdir}"/usr/lib -type f -name "*.a" \
--exec /usr/bin/$_target-strip --strip-debug '{}' \;
-
-# Install Runtime Library Exception
-install -Dm644 "${srcdir}"/${_basedir}/COPYING.RUNTIME \
-"${pkgdir}"/usr/share/licenses/$_target-gcc/RUNTIME.LIBRARY.EXCEPTION
-
-rm -r "${pkgdir}"/usr/share/man/man7
-rm -r "${pkgdir}"/usr/share/info
-rm "${pkgdir}"/usr/lib/libcc1.*
-}

Copied: avr-gcc/repos/community-x86_64/PKGBUILD (from rev 1271494, 
avr-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-21 01:11:23 UTC (rev 1271495)
@@ -0,0 +1,110 @@
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+_target=avr
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=7-20180125
+pkgdesc='The GNU AVR Compiler Collection'
+arch=(x86

[arch-commits] Commit in avr-gcc/trunk (6 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:10:56
  Author: anatolik
Revision: 1271494

upgpkg: avr-gcc 12.2.0-1

Added:
  avr-gcc/trunk/keys/
  avr-gcc/trunk/keys/pgp/
  avr-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
  avr-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
  avr-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
Modified:
  avr-gcc/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc |1 +
 keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc |1 +
 keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc |1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-21 01:10:43 UTC (rev 1271493)
+++ PKGBUILD2022-08-21 01:10:56 UTC (rev 1271494)
@@ -7,7 +7,7 @@
 
 _target=avr
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=7-20180125
 pkgdesc='The GNU AVR Compiler Collection'
@@ -20,7 +20,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.xz
)
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
+sha256sums=('e549cf9cf3594a00e27b6589d4322d70e0720cdd213f39beb4181e06926230ff'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 


Added: keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
(Binary files differ)

Index: avr-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
--- keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-21 
01:10:43 UTC (rev 1271493)
+++ keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-21 
01:10:56 UTC (rev 1271494)

Property changes on: 
avr-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
(Binary files differ)

Index: avr-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
--- keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-21 
01:10:43 UTC (rev 1271493)
+++ keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-21 
01:10:56 UTC (rev 1271494)

Property changes on: 
avr-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
(Binary files differ)

Index: avr-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
--- keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-21 
01:10:43 UTC (rev 1271493)
+++ keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-21 
01:10:56 UTC (rev 1271494)

Property changes on: 
avr-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in arm-none-eabi-gcc/repos/community-x86_64 (3 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:10:43
  Author: anatolik
Revision: 1271493

archrelease: copy trunk to community-x86_64

Added:
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD
(from rev 1271492, arm-none-eabi-gcc/trunk/PKGBUILD)
  arm-none-eabi-gcc/repos/community-x86_64/keys/
Deleted:
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  248 ++---
 1 file changed, 124 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-21 01:10:17 UTC (rev 1271492)
+++ PKGBUILD2022-08-21 01:10:43 UTC (rev 1271493)
@@ -1,124 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=arm-none-eabi
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=('arm-none-eabi-newlib: Standard C library optimized for embedded 
systems')
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
-'SKIP')
-validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-
-  mkdir "$srcdir"/build-{gcc,gcc-nano}
-}
-
-_build_gcc() {
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-plugins \
---disable-decimal-float \
---disable-libffi \
---disable-libgomp \
---disable-libmudflap \
---disable-libquadmath \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-threads \
---disable-tls \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-newlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-arm-none-eabi \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' 
\
---with-pkgversion='Arch Repository' \
---with-bugurl='https://bugs.archlinux.org/' \
---with-multilib-list=rmprofile
-
-  make INHIBIT_LIBC_CFLAGS='-DUSE_TM_CLONE_REGISTRY=0'
-}
-
-build() {
-  # Credits @allanmcrae
-  # 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-  # TODO: properly deal with the build issues resulting from this
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  cd "$srcdir"/build-gcc
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  _build_gcc
-
-  # Build libstdc++ without exceptions support (the 'nano' variant)
-  cd "$srcdir"/build-gcc-nano
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'  
-  _build_gcc
-}
-
-package() {
-  cd "$srcdir"/build-gcc
-  make DESTDIR="$pkgdir" install -j1
-
-  cd "$srcdir"/build-gcc-nano
-  make DESTDIR="$pkgdir.nano" install -j1
-  # we need only libstdc nano files
-  multilibs=( $("$pkgdir"/usr/bin/$_target-gcc -print-multi-lib 2>/dev/null) )
-  for multilib in "${multilibs[@]}"; do
-dir="${multilib%%;*}"
-from_dir="$pkgdir".nano/usr/$_target/lib/"$dir"
-to_dir="$pkgdir"/usr/$_target/lib/"$dir"
-cp -f "$from_dir"/libstdc++.a "$to_dir"/libstdc++_nano.a
-cp -f "$from_dir"/libsupc++.a "$to_dir"/libsupc++_nano.a
-  done
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib -type 
f -and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R 
.note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R 
.debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' 
\;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r

[arch-commits] Commit in arm-none-eabi-gcc/trunk (6 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Sunday, August 21, 2022 @ 01:10:17
  Author: anatolik
Revision: 1271492

upgpkg: arm-none-eabi-gcc 12.2.0-1

Added:
  arm-none-eabi-gcc/trunk/keys/
  arm-none-eabi-gcc/trunk/keys/pgp/
  arm-none-eabi-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
  arm-none-eabi-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
  arm-none-eabi-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
Modified:
  arm-none-eabi-gcc/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc |1 +
 keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc |1 +
 keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc |1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-21 00:34:10 UTC (rev 1271491)
+++ PKGBUILD2022-08-21 01:10:17 UTC (rev 1271492)
@@ -3,7 +3,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
@@ -16,7 +16,7 @@
 options=(!emptydirs !strip !lto)
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
+sha256sums=('e549cf9cf3594a00e27b6589d4322d70e0720cdd213f39beb4181e06926230ff'
 'SKIP')
 validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

   D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 


Added: keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
(Binary files differ)

Index: 
arm-none-eabi-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
--- keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-21 
00:34:10 UTC (rev 1271491)
+++ keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-21 
01:10:17 UTC (rev 1271492)

Property changes on: 
arm-none-eabi-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
(Binary files differ)

Index: 
arm-none-eabi-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
--- keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-21 
00:34:10 UTC (rev 1271491)
+++ keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-21 
01:10:17 UTC (rev 1271492)

Property changes on: 
arm-none-eabi-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
(Binary files differ)

Index: 
arm-none-eabi-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
--- keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-21 
00:34:10 UTC (rev 1271491)
+++ keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-21 
01:10:17 UTC (rev 1271492)

Property changes on: 
arm-none-eabi-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in aarch64-linux-gnu-gcc/repos/community-x86_64 (3 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 20, 2022 @ 23:56:35
  Author: anatolik
Revision: 1271489

archrelease: copy trunk to community-x86_64

Added:
  aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD
(from rev 1271488, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
  aarch64-linux-gnu-gcc/repos/community-x86_64/keys/
Deleted:
  aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  198 ++---
 1 file changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-20 23:56:09 UTC (rev 1271488)
+++ PKGBUILD2022-08-20 23:56:35 UTC (rev 1271489)
@@ -1,99 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Maintainer: Eli Schwartz 
-
-_target=aarch64-linux-gnu
-pkgname=$_target-gcc
-pkgver=12.1.0
-pkgrel=1
-#_snapshot=8-20190111
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils $_target-glibc libmpc zlib libisl zstd)
-makedepends=(gmp mpfr)
-options=(!emptydirs !strip staticlibs !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
-#https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  rm -rf "$srcdir"/gcc-build
-  mkdir "$srcdir"/gcc-build
-}
-
-build() {
-  cd gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  # Credits @allanmcrae
-  # 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-  # TODO: properly deal with the build issues resulting from this
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  "$srcdir"/$_basedir/configure \
-  --prefix=/usr \
-  --program-prefix=$_target- \
-  --with-local-prefix=/usr/$_target \
-  --with-sysroot=/usr/$_target \
-  --with-build-sysroot=/usr/$_target \
-  --with-native-system-header-dir=/include \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --target=$_target --host=$CHOST --build=$CHOST \
-  --disable-nls --enable-default-pie \
-  --enable-languages=c,c++,fortran \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --with-isl --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --disable-libssp \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --enable-lto --enable-plugin --enable-install-libiberty \
-  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
-  --disable-multilib --disable-werror \
-  --enable-checking=release
-
-  make
-}
-
-package() {
-  cd gcc-build
-
-  make DESTDIR="$pkgdir" install-gcc 
install-target-{libgcc,libstdc++-v3,libgomp,libgfortran,libquadmath,libatomic}
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/ "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R 
.debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( 
-executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm -r "$pkgdir"/usr/share/gcc-$pkgver
-}

Copied: aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD (from rev 
1271488, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-20 23:56:35 UTC (rev 1271489)
@@ -0,0 +1,99 @@
+# Maintainer: Anatol Pomozov 
+# Maintainer: Eli Schwartz 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gcc
+pkgver=12.2.0
+pkgrel=1
+#_snapshot=8-20190111
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils $_target-glibc libmpc zlib libisl zstd)
+makedepends=(gmp mpfr)
+options=(!emptydirs !strip staticlib

[arch-commits] Commit in aarch64-linux-gnu-gcc/trunk (6 files)

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 20, 2022 @ 23:56:09
  Author: anatolik
Revision: 1271488

upgpkg: aarch64-linux-gnu-gcc 12.2.0-1

Added:
  aarch64-linux-gnu-gcc/trunk/keys/
  aarch64-linux-gnu-gcc/trunk/keys/pgp/
  
aarch64-linux-gnu-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
  
aarch64-linux-gnu-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
  
aarch64-linux-gnu-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
Modified:
  aarch64-linux-gnu-gcc/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc |1 +
 keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc |1 +
 keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc |1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-20 23:39:09 UTC (rev 1271487)
+++ PKGBUILD2022-08-20 23:56:09 UTC (rev 1271488)
@@ -3,7 +3,7 @@
 
 _target=aarch64-linux-gnu
 pkgname=$_target-gcc
-pkgver=12.1.0
+pkgver=12.2.0
 pkgrel=1
 #_snapshot=8-20190111
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
@@ -15,7 +15,7 @@
 options=(!emptydirs !strip staticlibs !lto)
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
 #https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
+sha256sums=('e549cf9cf3594a00e27b6589d4322d70e0720cdd213f39beb4181e06926230ff'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 


Added: keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
(Binary files differ)

Index: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
===
--- keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-20 
23:39:09 UTC (rev 1271487)
+++ keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc   2022-08-20 
23:56:09 UTC (rev 1271488)

Property changes on: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/13975A70E63C361C73AE69EF6EEB81F8981C74C7.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
(Binary files differ)

Index: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
===
--- keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-20 
23:39:09 UTC (rev 1271487)
+++ keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc   2022-08-20 
23:56:09 UTC (rev 1271488)

Property changes on: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/33C235A34C46AA3FFB293709A328C3A2C3C45C06.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
(Binary files differ)

Index: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
===
--- keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-20 
23:39:09 UTC (rev 1271487)
+++ keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc   2022-08-20 
23:56:09 UTC (rev 1271488)

Property changes on: 
aarch64-linux-gnu-gcc/trunk/keys/pgp/D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 20, 2022 @ 23:39:09
  Author: anatolik
Revision: 1271487

archrelease: copy trunk to community-any

Added:
  codespell/repos/community-any/PKGBUILD
(from rev 1271486, codespell/trunk/PKGBUILD)
Deleted:
  codespell/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-20 23:38:49 UTC (rev 1271486)
+++ PKGBUILD2022-08-20 23:39:09 UTC (rev 1271487)
@@ -1,28 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=codespell
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='Fix common misspellings in source code'
-arch=(any)
-url='https://github.com/codespell-project/codespell'
-license=(GPL2)
-depends=(python)
-checkdepends=(python-nose python-pytest)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('bfd42e7b0428403be60758b0bd48bae7b9163e39')
-
-build() {
-  cd codespell-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd codespell-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd codespell-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: codespell/repos/community-any/PKGBUILD (from rev 1271486, 
codespell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-20 23:39:09 UTC (rev 1271487)
@@ -0,0 +1,28 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=codespell
+pkgver=2.2.1
+pkgrel=1
+pkgdesc='Fix common misspellings in source code'
+arch=(any)
+url='https://github.com/codespell-project/codespell'
+license=(GPL2)
+depends=(python)
+checkdepends=(python-nose python-pytest)
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
+sha1sums=('3661e24343ccd535f48e1b5b1a663485eed72a62')
+
+build() {
+  cd codespell-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd codespell-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd codespell-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2022-08-20 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 20, 2022 @ 23:38:49
  Author: anatolik
Revision: 1271486

upgpkg: codespell 2.2.1-1

Modified:
  codespell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-20 23:18:32 UTC (rev 1271485)
+++ PKGBUILD2022-08-20 23:38:49 UTC (rev 1271486)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=codespell
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc='Fix common misspellings in source code'
 arch=(any)
@@ -10,7 +10,7 @@
 depends=(python)
 checkdepends=(python-nose python-pytest)
 source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('bfd42e7b0428403be60758b0bd48bae7b9163e39')
+sha1sums=('3661e24343ccd535f48e1b5b1a663485eed72a62')
 
 build() {
   cd codespell-$pkgver



[arch-commits] Commit in riscv64-linux-gnu-glibc/repos/community-any (3 files)

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:57:05
  Author: anatolik
Revision: 1268387

archrelease: copy trunk to community-any

Added:
  riscv64-linux-gnu-glibc/repos/community-any/PKGBUILD
(from rev 1268386, riscv64-linux-gnu-glibc/trunk/PKGBUILD)
  riscv64-linux-gnu-glibc/repos/community-any/keys/
Deleted:
  riscv64-linux-gnu-glibc/repos/community-any/PKGBUILD

--+
 PKGBUILD |  172 ++---
 1 file changed, 86 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-18 18:56:41 UTC (rev 1268386)
+++ PKGBUILD2022-08-18 18:57:05 UTC (rev 1268387)
@@ -1,86 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Anatol Pomozov 
-
-_target=riscv64-linux-gnu
-pkgname=$_target-glibc
-pkgver=2.32
-pkgrel=1
-pkgdesc='GNU C Library RISCV target'
-arch=(any)
-url='https://www.gnu.org/software/libc/'
-license=(GPL LGPL)
-depends=($_target-gcc $_target-linux-api-headers)
-groups=(risc-v)
-makedepends=(python)
-options=(!buildflags !strip staticlibs)
-source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
-sha512sums=('8460c155b7003e04f18dabece4ed9ad77445fa2288a7dc08e80a8fc4c418828af29e0649951bd71a54ea2ad2d4da7570aafd9bdfe4a37e9951b772b442afe50b'
-'SKIP')
-validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
-  BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar 

-
-prepare() {
-  mkdir -p glibc-build
-}
-
-build() {
-  cd glibc-build
-
-  echo 'slibdir=/lib' >> configparms
-  echo 'rtlddir=/lib' >> configparms
-  echo 'sbindir=/bin' >> configparms
-  echo 'rootsbindir=/bin' >> configparms
-
-  # remove hardening options for building libraries
-  export CFLAGS="-U_FORTIFY_SOURCE -O2"
-  export CPPFLAGS="-U_FORTIFY_SOURCE -O2"
-  unset LD_LIBRARY_PATH
-
-  export BUILD_CC=gcc
-  export CC=${_target}-gcc
-  export CXX=${_target}-g++
-  export AR=${_target}-ar
-  export RANLIB=${_target}-ranlib
-
-  ../glibc-$pkgver/configure \
-  --prefix=/usr \
-  --target=$_target \
-  --host=$_target \
-  --build=$CHOST \
-  --libdir=/usr/lib \
-  --libexecdir=/usr/lib \
-  --with-headers=/usr/$_target/include \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-kernel=2.6.32 \
-  --enable-add-ons \
-  --enable-bind-now \
-  --disable-profile \
-  --enable-stackguard-randomization \
-  --enable-lock-elision \
-  --disable-werror
-
-  echo 'build-programs=no' >> configparms
-  make
-}
-
-package() {
-  cd glibc-build
-
-  make install_root="$pkgdir"/usr/$_target install
-  # make install_root=$pkgdir/usr/$_target install-headers 
install-bootstrap-headers=yes
-  # make csu/subdir_lib
-  # mkdir -p $pkgdir/usr/$_target/lib $pkgdir/usr/$_target/include/gnu
-  # cp csu/crt1.o csu/crti.o csu/crtn.o $pkgdir/usr/$_target/lib
-  # $_target-gcc \
-  #   -nostdlib \
-  #   -nostartfiles \
-  #   -shared \
-  #   -x c /dev/null \
-  #   -o $pkgdir/usr/$_target/lib/libc.so
-  # touch $pkgdir/usr/$_target/include/gnu/stubs.h
-
-  rm -rf "$pkgdir"/usr/$_target/{bin,sbin,etc,share,var}
-}
-
-# vim: ts=2 sw=2 et:

Copied: riscv64-linux-gnu-glibc/repos/community-any/PKGBUILD (from rev 1268386, 
riscv64-linux-gnu-glibc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-18 18:57:05 UTC (rev 1268387)
@@ -0,0 +1,86 @@
+# Maintainer: Felix Yan 
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Anatol Pomozov 
+
+_target=riscv64-linux-gnu
+pkgname=$_target-glibc
+pkgver=2.36
+pkgrel=1
+pkgdesc='GNU C Library RISCV target'
+arch=(any)
+url='https://www.gnu.org/software/libc/'
+license=(GPL LGPL)
+depends=($_target-gcc $_target-linux-api-headers)
+groups=(risc-v)
+makedepends=(python)
+options=(!buildflags !strip staticlibs)
+source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
+sha512sums=('9ea0bbda32f83a85b7da0c34f169607fb8a102f0a11a914e6bf531be47d1bef4f5307128286cffa1e2dc5879f0e6ccaef527dd353486883fa332a0b44bde8b3e'
+'SKIP')
+validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
+  BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar 

+
+prepare() {
+  mkdir -p glibc-build
+}
+
+build() {
+  cd glibc-build
+
+  echo 'slibdir=/lib' >> configparms
+  echo 'rtlddir=/lib' >> configparms
+  echo 'sbindir=/bin' >> configparms
+  echo 'rootsbindir=/bin' >> configparms
+
+  # remove hardening options for building libraries
+  export CFLAGS="-U_FORTIFY_SOURCE -O2"
+  export CPPFLAGS="-U_FORTIFY_SOURCE -O2"
+  unset LD_LIBRARY_PATH
+
+  export BUILD_CC=gcc
+  export CC=${_target}-gcc
+  export CXX=${_target}-g++
+  export AR=${_target}-ar
+  export RANLIB=${_target}-ranlib
+
+  ../glibc-$pkgver/configure \
+  --prefix=/usr \
+  --target=$_target \
+  --host=$

[arch-commits] Commit in riscv64-linux-gnu-glibc/trunk (5 files)

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:56:41
  Author: anatolik
Revision: 1268386

upgpkg: riscv64-linux-gnu-glibc 2.36-1

Added:
  riscv64-linux-gnu-glibc/trunk/keys/
  riscv64-linux-gnu-glibc/trunk/keys/pgp/
  
riscv64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
  
riscv64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
Modified:
  riscv64-linux-gnu-glibc/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc |1 +
 keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc |1 +
 3 files changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-18 18:55:37 UTC (rev 1268385)
+++ PKGBUILD2022-08-18 18:56:41 UTC (rev 1268386)
@@ -4,7 +4,7 @@
 
 _target=riscv64-linux-gnu
 pkgname=$_target-glibc
-pkgver=2.32
+pkgver=2.36
 pkgrel=1
 pkgdesc='GNU C Library RISCV target'
 arch=(any)
@@ -15,7 +15,7 @@
 makedepends=(python)
 options=(!buildflags !strip staticlibs)
 source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
-sha512sums=('8460c155b7003e04f18dabece4ed9ad77445fa2288a7dc08e80a8fc4c418828af29e0649951bd71a54ea2ad2d4da7570aafd9bdfe4a37e9951b772b442afe50b'
+sha512sums=('9ea0bbda32f83a85b7da0c34f169607fb8a102f0a11a914e6bf531be47d1bef4f5307128286cffa1e2dc5879f0e6ccaef527dd353486883fa332a0b44bde8b3e'
 'SKIP')
 validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
   BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar 


Added: keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
===
(Binary files differ)

Index: 
riscv64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
===
--- keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc   2022-08-18 
18:55:37 UTC (rev 1268385)
+++ keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc   2022-08-18 
18:56:41 UTC (rev 1268386)

Property changes on: 
riscv64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
===
(Binary files differ)

Index: 
riscv64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
===
--- keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc   2022-08-18 
18:55:37 UTC (rev 1268385)
+++ keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc   2022-08-18 
18:56:41 UTC (rev 1268386)

Property changes on: 
riscv64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in aarch64-linux-gnu-glibc/repos/community-any (3 files)

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:53:46
  Author: anatolik
Revision: 1268383

archrelease: copy trunk to community-any

Added:
  aarch64-linux-gnu-glibc/repos/community-any/PKGBUILD
(from rev 1268381, aarch64-linux-gnu-glibc/trunk/PKGBUILD)
  aarch64-linux-gnu-glibc/repos/community-any/keys/
Deleted:
  aarch64-linux-gnu-glibc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-18 18:53:43 UTC (rev 1268382)
+++ PKGBUILD2022-08-18 18:53:46 UTC (rev 1268383)
@@ -1,74 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Maintainer: Eli Schwartz 
-
-_target=aarch64-linux-gnu
-pkgname=$_target-glibc
-pkgver=2.35
-pkgrel=1
-pkgdesc="GNU C Library ARM64 target"
-arch=(any)
-url='https://www.gnu.org/software/libc/'
-license=('GPL' 'LGPL')
-depends=($_target-gcc $_target-linux-api-headers)
-makedepends=(python)
-options=(!buildflags !strip staticlibs)
-source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
-sha256sums=('5123732f6b67ccd319305efd399971d58592122bcc2a6518a1bd2510dd0cf52e'
-'SKIP')
-validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
-  BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
-
-prepare() {
-  mkdir -p glibc-build
-}
-
-build() {
-  cd glibc-build
-
-  echo "slibdir=/lib" >> configparms
-  echo "rtlddir=/lib" >> configparms
-  echo "sbindir=/bin" >> configparms
-  echo "rootsbindir=/bin" >> configparms
-
-  # remove hardening options for building libraries
-  export CFLAGS="-U_FORTIFY_SOURCE -mlittle-endian -O2"
-  export CPPFLAGS="-U_FORTIFY_SOURCE -O2"
-  unset LD_LIBRARY_PATH
-
-  export BUILD_CC=gcc
-  export CC=${_target}-gcc
-  export CXX=${_target}-g++
-  export AR=${_target}-ar
-  export RANLIB=${_target}-ranlib
-
-  ../glibc-$pkgver/configure \
-  --prefix=/usr \
-  --target=$_target \
-  --host=$_target \
-  --build=$CHOST \
-  --includedir=/include \
-  --libdir=/lib \
-  --libexecdir=/lib \
-  --with-headers=/usr/$_target/include \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-add-ons \
-  --enable-obsolete-rpc \
-  --enable-kernel=2.6.32 \
-  --enable-bind-now \
-  --disable-profile \
-  --enable-stackguard-randomization \
-  --enable-lock-elision \
-  --enable-multi-arch \
-  --disable-werror
-
-  echo "build-programs=no" >> configparms
-  make
-}
-
-package() {
-  cd glibc-build
-
-  make install_root="$pkgdir"/usr/$_target install
-
-  rm -r "$pkgdir"/usr/$_target/{etc,usr/share,var}
-}

Copied: aarch64-linux-gnu-glibc/repos/community-any/PKGBUILD (from rev 1268381, 
aarch64-linux-gnu-glibc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-18 18:53:46 UTC (rev 1268383)
@@ -0,0 +1,74 @@
+# Maintainer: Anatol Pomozov
+# Maintainer: Eli Schwartz 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-glibc
+pkgver=2.36
+pkgrel=1
+pkgdesc="GNU C Library ARM64 target"
+arch=(any)
+url='https://www.gnu.org/software/libc/'
+license=('GPL' 'LGPL')
+depends=($_target-gcc $_target-linux-api-headers)
+makedepends=(python)
+options=(!buildflags !strip staticlibs)
+source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
+sha256sums=('1c959fea240906226062cb4b1e7ebce71a9f0e3c0836c09e7e3423d434fcfe75'
+'SKIP')
+validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
+  BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
+
+prepare() {
+  mkdir -p glibc-build
+}
+
+build() {
+  cd glibc-build
+
+  echo 'slibdir=/lib' >> configparms
+  echo 'rtlddir=/lib' >> configparms
+  echo 'sbindir=/bin' >> configparms
+  echo 'rootsbindir=/bin' >> configparms
+
+  # remove hardening options for building libraries
+  export CFLAGS="-U_FORTIFY_SOURCE -mlittle-endian -O2"
+  export CPPFLAGS="-U_FORTIFY_SOURCE -O2"
+  unset LD_LIBRARY_PATH
+
+  export BUILD_CC=gcc
+  export CC=${_target}-gcc
+  export CXX=${_target}-g++
+  export AR=${_target}-ar
+  export RANLIB=${_target}-ranlib
+
+  ../glibc-$pkgver/configure \
+  --prefix=/usr \
+  --target=$_target \
+  --host=$_target \
+  --build=$CHOST \
+  --includedir=/include \
+  --libdir=/lib \
+  --libexecdir=/lib \
+  --with-headers=/usr/$_target/include \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-add-ons \
+  --enable-obsolete-rpc \
+  --enable-kernel=2.6.32 \
+  --enable-bind-now \
+  --disable-profile \
+  --enable-stackguard-randomization \
+  --enable-lock-elision \
+  --enable-multi-arch \
+  --disable-werror
+
+  echo 'build-programs=no' >> configparms
+  make
+}
+
+package() {
+  cd glibc-build
+
+  make install_root="$p

[arch-commits] Commit in aarch64-linux-gnu-glibc/trunk (5 files)

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:53:21
  Author: anatolik
Revision: 1268380

upgpkg: aarch64-linux-gnu-glibc 2.36-1

Added:
  aarch64-linux-gnu-glibc/trunk/keys/
  aarch64-linux-gnu-glibc/trunk/keys/pgp/
  
aarch64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
  
aarch64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
Modified:
  aarch64-linux-gnu-glibc/trunk/PKGBUILD

---+
 PKGBUILD  |   14 +++---
 keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc |1 +
 keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc |1 +
 3 files changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-18 18:52:38 UTC (rev 1268379)
+++ PKGBUILD2022-08-18 18:53:21 UTC (rev 1268380)
@@ -3,7 +3,7 @@
 
 _target=aarch64-linux-gnu
 pkgname=$_target-glibc
-pkgver=2.35
+pkgver=2.36
 pkgrel=1
 pkgdesc="GNU C Library ARM64 target"
 arch=(any)
@@ -13,7 +13,7 @@
 makedepends=(python)
 options=(!buildflags !strip staticlibs)
 source=(https://ftp.gnu.org/gnu/libc/glibc-$pkgver.tar.xz{,.sig})
-sha256sums=('5123732f6b67ccd319305efd399971d58592122bcc2a6518a1bd2510dd0cf52e'
+sha256sums=('1c959fea240906226062cb4b1e7ebce71a9f0e3c0836c09e7e3423d434fcfe75'
 'SKIP')
 validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8  # "Carlos O'Donell 
"
   BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
@@ -25,10 +25,10 @@
 build() {
   cd glibc-build
 
-  echo "slibdir=/lib" >> configparms
-  echo "rtlddir=/lib" >> configparms
-  echo "sbindir=/bin" >> configparms
-  echo "rootsbindir=/bin" >> configparms
+  echo 'slibdir=/lib' >> configparms
+  echo 'rtlddir=/lib' >> configparms
+  echo 'sbindir=/bin' >> configparms
+  echo 'rootsbindir=/bin' >> configparms
 
   # remove hardening options for building libraries
   export CFLAGS="-U_FORTIFY_SOURCE -mlittle-endian -O2"
@@ -61,7 +61,7 @@
   --enable-multi-arch \
   --disable-werror
 
-  echo "build-programs=no" >> configparms
+  echo 'build-programs=no' >> configparms
   make
 }
 

Added: keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
===
(Binary files differ)

Index: 
aarch64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
===
--- keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc   2022-08-18 
18:52:38 UTC (rev 1268379)
+++ keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc   2022-08-18 
18:53:21 UTC (rev 1268380)

Property changes on: 
aarch64-linux-gnu-glibc/trunk/keys/pgp/7273542B39962DF7B299931416792B4EA25340F8.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
===
(Binary files differ)

Index: 
aarch64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
===
--- keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc   2022-08-18 
18:52:38 UTC (rev 1268379)
+++ keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc   2022-08-18 
18:53:21 UTC (rev 1268380)

Property changes on: 
aarch64-linux-gnu-glibc/trunk/keys/pgp/BC7C7372637EC10C57D7AA6579C43DFBF1CF2187.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:46:38
  Author: anatolik
Revision: 1268375

archrelease: copy trunk to community-any

Added:
  codespell/repos/community-any/PKGBUILD
(from rev 1268373, codespell/trunk/PKGBUILD)
Deleted:
  codespell/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-18 18:46:34 UTC (rev 1268374)
+++ PKGBUILD2022-08-18 18:46:38 UTC (rev 1268375)
@@ -1,28 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=codespell
-pkgver=2.1.0
-pkgrel=2
-pkgdesc='Fix common misspellings in source code'
-arch=(any)
-url='https://github.com/codespell-project/codespell'
-license=(GPL2)
-depends=(python)
-checkdepends=(python-nose python-pytest)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('864291779befb5fdd777e8141f6fabf13524ea59')
-
-build() {
-  cd codespell-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd codespell-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd codespell-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: codespell/repos/community-any/PKGBUILD (from rev 1268373, 
codespell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-18 18:46:38 UTC (rev 1268375)
@@ -0,0 +1,28 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=codespell
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Fix common misspellings in source code'
+arch=(any)
+url='https://github.com/codespell-project/codespell'
+license=(GPL2)
+depends=(python)
+checkdepends=(python-nose python-pytest)
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
+sha1sums=('bfd42e7b0428403be60758b0bd48bae7b9163e39')
+
+build() {
+  cd codespell-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd codespell-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd codespell-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2022-08-18 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 18, 2022 @ 18:46:18
  Author: anatolik
Revision: 1268372

upgpkg: codespell 2.2.0-1

Modified:
  codespell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-18 18:46:10 UTC (rev 1268371)
+++ PKGBUILD2022-08-18 18:46:18 UTC (rev 1268372)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=codespell
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc='Fix common misspellings in source code'
 arch=(any)
 url='https://github.com/codespell-project/codespell'
@@ -10,7 +10,7 @@
 depends=(python)
 checkdepends=(python-nose python-pytest)
 source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('864291779befb5fdd777e8141f6fabf13524ea59')
+sha1sums=('bfd42e7b0428403be60758b0bd48bae7b9163e39')
 
 build() {
   cd codespell-$pkgver



[arch-commits] Commit in rubygems/repos/community-any (6 files)

2022-08-16 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 16, 2022 @ 16:22:29
  Author: anatolik
Revision: 1266639

archrelease: copy trunk to community-any

Added:
  rubygems/repos/community-any/PKGBUILD
(from rev 1266638, rubygems/trunk/PKGBUILD)
  rubygems/repos/community-any/gemrc
(from rev 1266638, rubygems/trunk/gemrc)
  rubygems/repos/community-any/stop_so_duplication.patch
(from rev 1266638, rubygems/trunk/stop_so_duplication.patch)
Deleted:
  rubygems/repos/community-any/PKGBUILD
  rubygems/repos/community-any/gemrc
  rubygems/repos/community-any/stop_so_duplication.patch

---+
 PKGBUILD  |   90 ++--
 gemrc |   10 ++--
 stop_so_duplication.patch |   52 -
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-16 16:22:01 UTC (rev 1266638)
+++ PKGBUILD2022-08-16 16:22:29 UTC (rev 1266639)
@@ -1,45 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=rubygems
-pkgdesc='Package management framework for Ruby'
-pkgver=3.3.15
-pkgrel=1
-arch=(any)
-url='https://rubygems.org/'
-license=(MIT)
-# To avoid circular dependency with ruby, move it to makedepends
-makedepends=(ruby)
-backup=(etc/gemrc)
-checkdepends=(rake)
-source=(rubygems-$pkgver.zip::https://github.com/rubygems/rubygems/archive/v${pkgver}.zip
-stop_so_duplication.patch
-   gemrc)
-sha512sums=('0d1c14ab45d9cad026596c5680dc54708e0229baf05b9d5966acc2adf0f65edfa52f3913d2241b4036c399944f8b9f14a4cc3c1da73ed8455a4df2b8bfd73419'
-
'9919490bbf7dba979a1df7543e62eb3fca48e8a516e6b6ab0a73080952e1b58599b7f233259d122dc66bf93f032b434d70e0dd448a1cb86513f01acb51b2120e'
-
'8cafd14d414ee3c16aa94f79072bc6c100262f925dc1300e785846c3faffc1356b8e2223af5684e3340c55032d41231179ffa948bb12e01dbae0f4131911')
-
-prepare() {
-  cd rubygems-${pkgver}
-  patch -p1 < ../stop_so_duplication.patch
-}
-
-check() {
-  cd rubygems-${pkgver}
-
-  # disable as it requires a lot of ruby-* dependencies
-  #rake test
-}
-
-package() {
-  depends+=(ruby)
-  cd rubygems-${pkgver}
-
-  install -D -m644 "${srcdir}"/gemrc "${pkgdir}/etc/gemrc"
-
-  local rubyver=$(ruby --version | sed -r 's|^ruby 
([[:digit:]]+\.[[:digit:]]+\.).*$|\1|')0
-
-  install -d "${pkgdir}/usr/lib/ruby/${rubyver}/"
-  install -D -m755 bin/gem "${pkgdir}/usr/bin/gem"
-  cp -r lib/* "${pkgdir}/usr/lib/ruby/${rubyver}/"
-  install -D -m644 MIT.txt "${pkgdir}/usr/share/licenses/rubygems/MIT.txt"
-}

Copied: rubygems/repos/community-any/PKGBUILD (from rev 1266638, 
rubygems/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-16 16:22:29 UTC (rev 1266639)
@@ -0,0 +1,45 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=rubygems
+pkgdesc='Package management framework for Ruby'
+pkgver=3.3.19
+pkgrel=1
+arch=(any)
+url='https://rubygems.org/'
+license=(MIT)
+# To avoid circular dependency with ruby, move it to makedepends
+makedepends=(ruby)
+backup=(etc/gemrc)
+checkdepends=(rake)
+source=(rubygems-$pkgver.zip::https://github.com/rubygems/rubygems/archive/v${pkgver}.zip
+stop_so_duplication.patch
+   gemrc)
+sha512sums=('a4f113ac98f736cdc2f8dedf627f3908c6636bb35e51f8f121bba0a7afb639d0bda9ec8194537cca6be4c504845aaabdfefce8a834eb4d3b0f5e64bc4967d070'
+
'9919490bbf7dba979a1df7543e62eb3fca48e8a516e6b6ab0a73080952e1b58599b7f233259d122dc66bf93f032b434d70e0dd448a1cb86513f01acb51b2120e'
+
'8cafd14d414ee3c16aa94f79072bc6c100262f925dc1300e785846c3faffc1356b8e2223af5684e3340c55032d41231179ffa948bb12e01dbae0f4131911')
+
+prepare() {
+  cd rubygems-${pkgver}
+  patch -p1 < ../stop_so_duplication.patch
+}
+
+check() {
+  cd rubygems-${pkgver}
+
+  # disable as it requires a lot of ruby-* dependencies
+  #rake test
+}
+
+package() {
+  depends+=(ruby)
+  cd rubygems-${pkgver}
+
+  install -D -m644 "${srcdir}"/gemrc "${pkgdir}/etc/gemrc"
+
+  local rubyver=$(ruby --version | sed -r 's|^ruby 
([[:digit:]]+\.[[:digit:]]+\.).*$|\1|')0
+
+  install -d "${pkgdir}/usr/lib/ruby/${rubyver}/"
+  install -D -m755 bin/gem "${pkgdir}/usr/bin/gem"
+  cp -r lib/* "${pkgdir}/usr/lib/ruby/${rubyver}/"
+  install -D -m644 MIT.txt "${pkgdir}/usr/share/licenses/rubygems/MIT.txt"
+}

Deleted: gemrc
===
--- gemrc   2022-08-16 16:22:01 UTC (rev 1266638)
+++ gemrc   2022-08-16 16:22:29 UTC (rev 1266639)
@@ -1,5 +0,0 @@
-# Read about the gemrc format at 
http://guides.rubygems.org/command-reference/#gem-environment
-
-# --user-install is used to install to $HOME/.gem/ by default since we want to 
separate
-#pacman installed gems and gem installed gems
-gem: --user-install

Copied: rubygems/repos/community-any/gemrc (from rev 1266638, 
rubygems/trunk/gemrc)
=

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

2022-08-16 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 16, 2022 @ 16:22:01
  Author: anatolik
Revision: 1266638

upgpkg: rubygems 3.3.19-1

Modified:
  rubygems/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-16 15:10:09 UTC (rev 1266637)
+++ PKGBUILD2022-08-16 16:22:01 UTC (rev 1266638)
@@ -2,7 +2,7 @@
 
 pkgname=rubygems
 pkgdesc='Package management framework for Ruby'
-pkgver=3.3.15
+pkgver=3.3.19
 pkgrel=1
 arch=(any)
 url='https://rubygems.org/'
@@ -14,7 +14,7 @@
 
source=(rubygems-$pkgver.zip::https://github.com/rubygems/rubygems/archive/v${pkgver}.zip
 stop_so_duplication.patch
gemrc)
-sha512sums=('0d1c14ab45d9cad026596c5680dc54708e0229baf05b9d5966acc2adf0f65edfa52f3913d2241b4036c399944f8b9f14a4cc3c1da73ed8455a4df2b8bfd73419'
+sha512sums=('a4f113ac98f736cdc2f8dedf627f3908c6636bb35e51f8f121bba0a7afb639d0bda9ec8194537cca6be4c504845aaabdfefce8a834eb4d3b0f5e64bc4967d070'
 
'9919490bbf7dba979a1df7543e62eb3fca48e8a516e6b6ab0a73080952e1b58599b7f233259d122dc66bf93f032b434d70e0dd448a1cb86513f01acb51b2120e'
 
'8cafd14d414ee3c16aa94f79072bc6c100262f925dc1300e785846c3faffc1356b8e2223af5684e3340c55032d41231179ffa948bb12e01dbae0f4131911')
 



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

2022-08-13 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 19:36:53
  Author: anatolik
Revision: 1265999

archrelease: copy trunk to community-x86_64

Added:
  tarantool/repos/community-x86_64/PKGBUILD
(from rev 1265998, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-x86_64/tarantool.sysusers
(from rev 1265998, tarantool/trunk/tarantool.sysusers)
Deleted:
  tarantool/repos/community-x86_64/PKGBUILD
  tarantool/repos/community-x86_64/tarantool.sysusers

+
 PKGBUILD   |  226 +--
 tarantool.sysusers |4 
 2 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-13 19:36:29 UTC (rev 1265998)
+++ PKGBUILD2022-08-13 19:36:53 UTC (rev 1265999)
@@ -1,113 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=tarantool
-pkgver=2.10.0
-pkgrel=1
-pkgdesc='Lua application server integrated with a database management system'
-arch=(x86_64)
-url='https://www.tarantool.org'
-license=(BSD)
-depends=(readline ncurses zlib libyaml openssl libunwind icu)
-makedepends=(git cmake systemd)
-checkdepends=(python-gevent python-tarantool)
-source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
-git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
-git+https://github.com/tarantool/libyaml.git
-git+https://github.com/tarantool/msgpuck.git
-git+https://github.com/luafun/luafun.git
-git+https://github.com/tarantool/test-run.git
-git+https://github.com/tarantool/small.git
-git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
-git+https://github.com/tarantool/decNumber.git
-git+https://github.com/tarantool/curl.git
-git+https://github.com/tarantool/c-ares.git
-git+https://github.com/tarantool/xxHash
-git+https://github.com/tarantool/c-dt.git
-git+https://github.com/tarantool/lua-zlib.git
-git+https://github.com/tarantool/luazip.git
-git+https://github.com/tarantool/nghttp2.git
-
git+https://github.com/tarantool/libunwind.git#branch=libunwind-1.6.2-tarantool
-git+https://github.com/tarantool/tz.git
-tarantool.sysusers)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
-
-prepare() {
-  cd tarantool
-
-  git submodule init
-  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
-  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
-  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
-  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
-  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
-  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
-  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
-  git config -f .gitmodules 'submodule.third_party/luarocks.url' 
"$srcdir/luarocks"
-  git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
-  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
-  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
-  git config -f .gitmodules 'submodule.third_party/xxHash.url' "$srcdir/xxHash"
-  git config -f .gitmodules 'submodule.third_party/c-dt.url' "$srcdir/c-dt"
-  git config -f .gitmodules 'submodule.third_party/lua-zlib.url' 
"$srcdir/lua-zlib"
-  git config -f .gitmodules 'submodule.third_party/luazip.url' "$srcdir/luazip"
-  git config -f .gitmodules 'submodule.third_party/nghttp2.url' 
"$srcdir/nghttp2"
-  git config -f .gitmodules 'submodule.third_party/libunwind.url' 
"$srcdir/libunwind"
-  git config -f .gitmodules 'submodule.third_party/tz.url' "$srcdir/tz"
-
-  git submodule sync
-  git submodule update
-}
-
-build() {
-  cd tarantool
-
-  # tarantool uses git submodule, handle this
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_BACKTRACE:BOOL=ON \
--DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
--DENABLE_LTO:BOOL=ON \
-.
-  make
-}
-
-check() {
-  cd "$srcdir/tarantool/test"
-  python test-run.py --suite box
-}
-
-package() {
-  cd tarantool
-  make install DESTDIR="$pkgdir"
-
-  sed 's|/var/run/|/run/|' -i "$pkgd

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

2022-08-13 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 19:36:29
  Author: anatolik
Revision: 1265998

upgpkg: tarantool 2.10.1-1

Modified:
  tarantool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-13 19:21:54 UTC (rev 1265997)
+++ PKGBUILD2022-08-13 19:36:29 UTC (rev 1265998)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.10.0
+pkgver=2.10.1
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -18,7 +18,7 @@
 git+https://github.com/tarantool/test-run.git
 git+https://github.com/tarantool/small.git
 git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
+
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.3-tarantool
 git+https://github.com/tarantool/decNumber.git
 git+https://github.com/tarantool/curl.git
 git+https://github.com/tarantool/c-ares.git



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 00:04:06
  Author: anatolik
Revision: 452639

archrelease: copy trunk to testing-x86_64

Added:
  strace/repos/testing-x86_64/
  strace/repos/testing-x86_64/PKGBUILD
(from rev 452638, strace/trunk/PKGBUILD)
  strace/repos/testing-x86_64/keys/

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

Copied: strace/repos/testing-x86_64/PKGBUILD (from rev 452638, 
strace/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-13 00:04:06 UTC (rev 452639)
@@ -0,0 +1,33 @@
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=strace
+pkgver=5.19
+pkgrel=1
+pkgdesc='A diagnostic, debugging and instructional userspace tracer'
+arch=(x86_64)
+url='https://strace.io/'
+license=(BSD)
+depends=(perl libunwind)
+source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc})
+sha1sums=('dc34c0d7c3ab0d0adb227f751c016da2c415eb2e'
+  'SKIP')
+validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-libunwind --enable-mpers=no
+  make
+}
+
+check() {
+  # tests do not work in chroot environment. TODO: fixit.
+  # make -C $pkgname-$pkgver check
+  true
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Saturday, August 13, 2022 @ 00:03:05
  Author: anatolik
Revision: 452638

upgpkg: strace 5.19-1

Modified:
  strace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 20:08:53 UTC (rev 452637)
+++ PKGBUILD2022-08-13 00:03:05 UTC (rev 452638)
@@ -2,7 +2,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=strace
-pkgver=5.18
+pkgver=5.19
 pkgrel=1
 pkgdesc='A diagnostic, debugging and instructional userspace tracer'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(perl libunwind)
 
source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc})
-sha1sums=('e038ea9fc29366ce6119cde27d8cf16ac554a353'
+sha1sums=('dc34c0d7c3ab0d0adb227f751c016da2c415eb2e'
   'SKIP')
 validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin 

 



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 23:26:23
  Author: anatolik
Revision: 1265835

Stript osquery binaries

Modified:
  osquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 23:25:33 UTC (rev 1265834)
+++ PKGBUILD2022-08-12 23:26:23 UTC (rev 1265835)
@@ -7,9 +7,7 @@
 arch=(x86_64)
 url='https://osquery.io'
 license=(Apache GPL2)
-depends=()
 makedepends=(cmake ninja clang python gcc-libs git libunwind)
-options=(!strip)
 source=(git+https://github.com/osquery/osquery.git#tag=$pkgver
 fixes.patch
rocksdb.patch



[arch-commits] Commit in osquery/trunk (PKGBUILD fixes.patch rocksdb.patch)

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 23:25:33
  Author: anatolik
Revision: 1265834

Switch to osquery upstream repo

store the https://github.com/anatol/osquery patches as .patch files here, at 
the Arch repo

Added:
  osquery/trunk/fixes.patch
  osquery/trunk/rocksdb.patch
Modified:
  osquery/trunk/PKGBUILD

---+
 PKGBUILD  |   15 +-
 fixes.patch   |  347 
 rocksdb.patch |  117 ++
 3 files changed, 476 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 22:12:38 UTC (rev 1265833)
+++ PKGBUILD2022-08-12 23:25:33 UTC (rev 1265834)
@@ -10,12 +10,14 @@
 depends=()
 makedepends=(cmake ninja clang python gcc-libs git libunwind)
 options=(!strip)
-# following commit represents osquery $pkgver with some Arch-specific patches
-_commit=d98afcb43ded6bfb27e6f86c2861447a27c647d5
-source=(git+https://github.com/anatol/osquery.git#commit=$_commit
+source=(git+https://github.com/osquery/osquery.git#tag=$pkgver
+fixes.patch
+   rocksdb.patch
 ebpf-common.patch
 libaudit.patch)
 sha256sums=('SKIP'
+'3ecea1c2f6d082d7bc15f4010db716dc76c03c959c8356a3d901d0230bf6b74f'
+'fa259e94effbf3d415974045409bfef8ae19c6a96eea888991759ef4bbf6963b'
 '88cba2eebd12079bf3a4a8c5ba4ed34b1b5ccd9f9ac3fa518f159139617d'
 '96218ef5b7d6d6deb3a7b4b3dfed8068b7e4d10acd5b19372b9882f89d4478a8')
 
@@ -22,6 +24,13 @@
 prepare() {
   cd osquery
 
+  # the patches come from https://github.com/anatol/osquery
+  patch -p1 < ../fixes.patch
+  patch -p1 < ../rocksdb.patch
+  # git does not pick .gitmodules changes for some reason. add the submodule 
explicitly.
+  #mkdir libraries/cmake/source/snappy/src
+  git submodule add https://github.com/google/snappy 
libraries/cmake/source/snappy/src
+
   git submodule update --init --recursive
 
   (cd $srcdir/osquery/libraries/cmake/source/libaudit/src && patch -p1 < 
$srcdir/libaudit.patch)

Added: fixes.patch
===
--- fixes.patch (rev 0)
+++ fixes.patch 2022-08-12 23:25:33 UTC (rev 1265834)
@@ -0,0 +1,347 @@
+commit a9532e1b3191b41595e0f205187b03918ec2bc0a
+Author: Anatol Pomozov 
+Date:   Tue Sep 21 09:46:53 2021 -0700
+
+Arch Linux specific fixes
+
+diff --git a/cmake/flags.cmake b/cmake/flags.cmake
+index fddf045fa..87906c42e 100644
+--- a/cmake/flags.cmake
 b/cmake/flags.cmake
+@@ -84,11 +84,9 @@ function(setupBuildFlags)
+   -Woverloaded-virtual
+   -Wnon-virtual-dtor
+   -Weffc++
+-  -stdlib=libc++
+ )
+ 
+ set(posix_cxx_link_options
+-  -stdlib=libc++
+   -ldl
+ )
+ 
+@@ -179,7 +177,6 @@ function(setupBuildFlags)
+   )
+ 
+   set(linux_cxx_link_libraries
+-c++abi
+ rt
+ dl
+   )
+@@ -228,7 +225,6 @@ function(setupBuildFlags)
+   )
+ 
+   set(macos_cxx_link_options
+--stdlib=libc++
+ -lresolv
+   )
+ 
+@@ -237,7 +233,6 @@ function(setupBuildFlags)
+ cups
+ bsm
+ xar
+-c++abi
+ "-framework AppKit"
+ "-framework Foundation"
+ "-framework CoreServices"
+diff --git 
a/libraries/cmake/source/augeas/generated/linux/x86_64/config/config.h 
b/libraries/cmake/source/augeas/generated/linux/x86_64/config/config.h
+index 412fea1cd..3bafa9462 100644
+--- a/libraries/cmake/source/augeas/generated/linux/x86_64/config/config.h
 b/libraries/cmake/source/augeas/generated/linux/x86_64/config/config.h
+@@ -914,9 +914,6 @@
+ /* Define to 1 if you have the  header file. */
+ /* #undef HAVE_WS2TCPIP_H */
+ 
+-/* Define to 1 if you have the  header file. */
+-#define HAVE_XLOCALE_H 1
+-
+ /* Define to 1 if the system has the type `_Bool'. */
+ #define HAVE__BOOL 1
+ 
+@@ -1570,4 +1567,4 @@
+ 
+ 
+ /* Define to an unsigned 32-bit type if  lacks this type. */
+-/* #undef useconds_t */
+\ No newline at end of file
++/* #undef useconds_t */
+diff --git 
a/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/config/config.h 
b/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/config/config.h
+index 412fea1cd..3bafa9462 100644
+--- 
a/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/config/config.h
 
b/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/config/config.h
+@@ -914,9 +914,6 @@
+ /* Define to 1 if you have the  header file. */
+ /* #undef HAVE_WS2TCPIP_H */
+ 
+-/* Define to 1 if you have the  header file. */
+-#define HAVE_XLOCALE_H 1
+-
+ /* Define to 1 if the system has the type `_Bool'. */
+ #define HAVE__BOOL 1
+ 
+@@ -1570,4 +1567,4 @@
+ 
+ 
+ /* Define to an unsigned 32-bit type if  lacks this type. */
+-/* #undef useconds_t */
+\ No newline at end of file
++/* #undef useconds_t */
+diff --git 
a/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h 
b/libr

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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 19:17:01
  Author: anatolik
Revision: 1265720

Drop unused zlib depenency

Modified:
  osquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 19:12:51 UTC (rev 1265719)
+++ PKGBUILD2022-08-12 19:17:01 UTC (rev 1265720)
@@ -7,7 +7,7 @@
 arch=(x86_64)
 url='https://osquery.io'
 license=(Apache GPL2)
-depends=(zlib)
+depends=()
 makedepends=(cmake ninja clang python gcc-libs git libunwind)
 options=(!strip)
 # following commit represents osquery $pkgver with some Arch-specific patches



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 19:12:36
  Author: anatolik
Revision: 1265717

archrelease: copy trunk to community-x86_64

Added:
  osquery/repos/community-x86_64/PKGBUILD
(from rev 1265716, osquery/trunk/PKGBUILD)
  osquery/repos/community-x86_64/ebpf-common.patch
(from rev 1265716, osquery/trunk/ebpf-common.patch)
  osquery/repos/community-x86_64/libaudit.patch
(from rev 1265716, osquery/trunk/libaudit.patch)
Deleted:
  osquery/repos/community-x86_64/PKGBUILD
  osquery/repos/community-x86_64/ebpf-common.patch
  osquery/repos/community-x86_64/libaudit.patch

---+
 PKGBUILD  |  100 ++--
 ebpf-common.patch |   72 ++---
 libaudit.patch|   24 ++--
 3 files changed, 98 insertions(+), 98 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 19:12:09 UTC (rev 1265716)
+++ PKGBUILD2022-08-12 19:12:36 UTC (rev 1265717)
@@ -1,50 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=osquery
-pkgver=5.3.0
-pkgrel=2
-pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
-arch=(x86_64)
-url='https://osquery.io'
-license=(Apache GPL2)
-depends=(zlib)
-makedepends=(cmake ninja clang python gcc-libs git libunwind)
-options=(!strip)
-# following commit represents osquery $pkgver with some Arch-specific patches
-_commit=279553bf33ebe62c98923be19826fe4bd29cced2
-source=(git+https://github.com/anatol/osquery.git#commit=$_commit
-ebpf-common.patch
-libaudit.patch)
-sha256sums=('SKIP'
-'88cba2eebd12079bf3a4a8c5ba4ed34b1b5ccd9f9ac3fa518f159139617d'
-'96218ef5b7d6d6deb3a7b4b3dfed8068b7e4d10acd5b19372b9882f89d4478a8')
-
-prepare() {
-  cd osquery
-
-  git submodule update --init --recursive
-
-  (cd $srcdir/osquery/libraries/cmake/source/libaudit/src && patch -p1 < 
$srcdir/libaudit.patch)
-  (cd $srcdir/osquery/libraries/cmake/source/ebpfpub/src/ && git submodule 
update --init && cd libraries/ebpf-common/src/ && patch -p1 < 
$srcdir/ebpf-common.patch)
-}
-
-build() {
-  cd osquery
-
-  CC=clang CXX=clang++ cmake \
-  -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DOSQUERY_VERSION=$pkgver \
-  -G Ninja -S . -B build
-
-  ninja -C build
-}
-
-package() {
-  cd osquery
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 tools/deployment/osquery.example.conf 
"$pkgdir/etc/osquery/osquery.conf"
-  install -Dm644 tools/deployment/linux_packaging/osqueryd.sysconfig 
"$pkgdir/etc/sysconfig/osqueryd"
-  install -Dm644 tools/deployment/linux_packaging/rpm/osqueryd.service 
"$pkgdir/usr/lib/systemd/system/osqueryd.service"
-  rm -r $pkgdir/control
-}

Copied: osquery/repos/community-x86_64/PKGBUILD (from rev 1265716, 
osquery/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 19:12:36 UTC (rev 1265717)
@@ -0,0 +1,50 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=osquery
+pkgver=5.4.0
+pkgrel=1
+pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
+arch=(x86_64)
+url='https://osquery.io'
+license=(Apache GPL2)
+depends=(zlib)
+makedepends=(cmake ninja clang python gcc-libs git libunwind)
+options=(!strip)
+# following commit represents osquery $pkgver with some Arch-specific patches
+_commit=d98afcb43ded6bfb27e6f86c2861447a27c647d5
+source=(git+https://github.com/anatol/osquery.git#commit=$_commit
+ebpf-common.patch
+libaudit.patch)
+sha256sums=('SKIP'
+'88cba2eebd12079bf3a4a8c5ba4ed34b1b5ccd9f9ac3fa518f159139617d'
+'96218ef5b7d6d6deb3a7b4b3dfed8068b7e4d10acd5b19372b9882f89d4478a8')
+
+prepare() {
+  cd osquery
+
+  git submodule update --init --recursive
+
+  (cd $srcdir/osquery/libraries/cmake/source/libaudit/src && patch -p1 < 
$srcdir/libaudit.patch)
+  (cd $srcdir/osquery/libraries/cmake/source/ebpfpub/src/ && git submodule 
update --init && cd libraries/ebpf-common/src/ && patch -p1 < 
$srcdir/ebpf-common.patch)
+}
+
+build() {
+  cd osquery
+
+  CC=clang CXX=clang++ cmake \
+  -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DOSQUERY_VERSION=$pkgver \
+  -G Ninja -S . -B build
+
+  ninja -C build
+}
+
+package() {
+  cd osquery
+
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 tools/deployment/osquery.example.conf 
"$pkgdir/etc/osquery/osquery.conf"
+  install -Dm644 tools/deployment/linux_packaging/osqueryd.sysconfig 
"$pkgdir/etc/sysconfig/osqueryd"
+  install -Dm644 tools/deployment/linux_packaging/rpm/osqueryd.service 
"$pkgdir/usr/lib/systemd/system/osqueryd.service"
+  rm -r $pkgdir/control
+}

Deleted: ebpf-common.patch
===

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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 19:12:09
  Author: anatolik
Revision: 1265716

upgpkg: osquery 5.4.0-1

Modified:
  osquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 19:11:33 UTC (rev 1265715)
+++ PKGBUILD2022-08-12 19:12:09 UTC (rev 1265716)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=osquery
-pkgver=5.3.0
-pkgrel=2
+pkgver=5.4.0
+pkgrel=1
 pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
 arch=(x86_64)
 url='https://osquery.io'
@@ -11,7 +11,7 @@
 makedepends=(cmake ninja clang python gcc-libs git libunwind)
 options=(!strip)
 # following commit represents osquery $pkgver with some Arch-specific patches
-_commit=279553bf33ebe62c98923be19826fe4bd29cced2
+_commit=d98afcb43ded6bfb27e6f86c2861447a27c647d5
 source=(git+https://github.com/anatol/osquery.git#commit=$_commit
 ebpf-common.patch
 libaudit.patch)



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 19:11:33
  Author: anatolik
Revision: 1265715

archrelease: copy trunk to community-x86_64

Added:
  dpdk/repos/community-x86_64/PKGBUILD
(from rev 1265714, dpdk/trunk/PKGBUILD)
Deleted:
  dpdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 19:11:22 UTC (rev 1265714)
+++ PKGBUILD2022-08-12 19:11:33 UTC (rev 1265715)
@@ -1,26 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=dpdk
-pkgver=22.03
-pkgrel=1
-pkgdesc='A set of libraries and drivers for fast packet processing'
-arch=(x86_64)
-url='http://dpdk.org'
-license=(BSD)
-options=(staticlibs)
-depends=(numactl libelf libpcap libbpf libbsd dtc jansson libarchive)
-makedepends=(linux-headers python-pyelftools meson ninja)
-source=(http://fast.dpdk.org/rel/dpdk-$pkgver.tar.xz)
-sha256sums=('b2de5f08bcd5733f90d4d7e6c032515908dad8fc8d267ac6a253442d9b83a7c5')
-
-build() {
-  cd dpdk-$pkgver
-  CFLAGS+=' -ffat-lto-objects' \
-  meson build --prefix=/usr
-  ninja -C build
-}
-
-package() {
-  cd dpdk-$pkgver
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: dpdk/repos/community-x86_64/PKGBUILD (from rev 1265714, 
dpdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 19:11:33 UTC (rev 1265715)
@@ -0,0 +1,26 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=dpdk
+pkgver=22.07
+pkgrel=1
+pkgdesc='A set of libraries and drivers for fast packet processing'
+arch=(x86_64)
+url='http://dpdk.org'
+license=(BSD)
+options=(staticlibs)
+depends=(numactl libelf libpcap libbpf libbsd dtc jansson libarchive)
+makedepends=(linux-headers python-pyelftools meson ninja)
+source=(http://fast.dpdk.org/rel/dpdk-$pkgver.tar.xz)
+sha256sums=('9f64dfde075fdb5708cb62de838b8ffb891575fed1e1d2aeb266baca3dfc9bea')
+
+build() {
+  cd dpdk-$pkgver
+  CFLAGS+=' -ffat-lto-objects' \
+  meson build --prefix=/usr
+  ninja -C build
+}
+
+package() {
+  cd dpdk-$pkgver
+  DESTDIR="$pkgdir" ninja -C build install
+}



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 19:11:12
  Author: anatolik
Revision: 1265712

upgpkg: dpdk 22.07-1

Modified:
  dpdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 19:10:29 UTC (rev 1265711)
+++ PKGBUILD2022-08-12 19:11:12 UTC (rev 1265712)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=dpdk
-pkgver=22.03
+pkgver=22.07
 pkgrel=1
 pkgdesc='A set of libraries and drivers for fast packet processing'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(numactl libelf libpcap libbpf libbsd dtc jansson libarchive)
 makedepends=(linux-headers python-pyelftools meson ninja)
 source=(http://fast.dpdk.org/rel/dpdk-$pkgver.tar.xz)
-sha256sums=('b2de5f08bcd5733f90d4d7e6c032515908dad8fc8d267ac6a253442d9b83a7c5')
+sha256sums=('9f64dfde075fdb5708cb62de838b8ffb891575fed1e1d2aeb266baca3dfc9bea')
 
 build() {
   cd dpdk-$pkgver



[arch-commits] Commit in s2n-tls/repos/community-x86_64 (4 files)

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 17:37:47
  Author: anatolik
Revision: 1265598

archrelease: copy trunk to community-x86_64

Added:
  s2n-tls/repos/community-x86_64/PKGBUILD
(from rev 1265597, s2n-tls/trunk/PKGBUILD)
  s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch
(from rev 1265597, s2n-tls/trunk/missing_symbol_workaround.patch)
Deleted:
  s2n-tls/repos/community-x86_64/PKGBUILD
  s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch

-+
 PKGBUILD|   72 +++---
 missing_symbol_workaround.patch |   26 ++---
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-12 17:37:24 UTC (rev 1265597)
+++ PKGBUILD2022-08-12 17:37:47 UTC (rev 1265598)
@@ -1,36 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=s2n-tls
-pkgver=1.3.11
-pkgrel=1
-pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
-arch=(x86_64)
-url='https://github.com/aws/s2n-tls'
-license=(Apache)
-provides=(s2n) # upstream renamed the project from s2n to s2n-tls
-conflicts=(s2n)
-replaces=(s2n)
-depends=(openssl)
-makedepends=(cmake)
-source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
-sha256sums=('cb47b55f4e05d2bb4ee83484659677b5a9ef1f9ebad5233c94eed8c5d5044f75')
-
-build() {
-  cd s2n-tls-$pkgver
-
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF \
-  -S . -B build
-  cmake --build build
-}
-
-check() {
-  cd s2n-tls-$pkgver
-  cmake --build build --target test
-}
-
-package() {
-  cd s2n-tls-$pkgver
-
-  cmake --build build --target install -- DESTDIR="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: s2n-tls/repos/community-x86_64/PKGBUILD (from rev 1265597, 
s2n-tls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-12 17:37:47 UTC (rev 1265598)
@@ -0,0 +1,36 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=s2n-tls
+pkgver=1.3.19
+pkgrel=1
+pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
+arch=(x86_64)
+url='https://github.com/aws/s2n-tls'
+license=(Apache)
+provides=(s2n) # upstream renamed the project from s2n to s2n-tls
+conflicts=(s2n)
+replaces=(s2n)
+depends=(openssl gcc-libs)
+makedepends=(cmake)
+source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
+sha256sums=('507b8a1487ee630af5cc754d3cdc403e2e54de546da8cd83914fbf4a064c2f1e')
+
+build() {
+  cd s2n-tls-$pkgver
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
-DBUILD_SHARED_LIBS=ON -DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF \
+  -S . -B build
+  cmake --build build
+}
+
+check() {
+  cd s2n-tls-$pkgver
+  cmake --build build --target test
+}
+
+package() {
+  cd s2n-tls-$pkgver
+
+  cmake --build build --target install -- DESTDIR="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: missing_symbol_workaround.patch
===
--- missing_symbol_workaround.patch 2022-08-12 17:37:24 UTC (rev 1265597)
+++ missing_symbol_workaround.patch 2022-08-12 17:37:47 UTC (rev 1265598)
@@ -1,13 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a93d51f5..8d2806ad 100755
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -177,7 +177,7 @@ set(CMAKE_C_FLAGS_DEBUGOPT "")
- 
- target_compile_options(${PROJECT_NAME} PRIVATE -pedantic -std=gnu99 -Wall 
-Werror -Wimplicit -Wunused -Wcomment -Wchar-subscripts
- -Wuninitialized -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings 
-Wno-deprecated-declarations -Wno-unknown-pragmas -Wformat-security
---Wno-missing-braces -fvisibility=hidden -DS2N_EXPORTS)
-+-Wno-missing-braces -DS2N_EXPORTS)
- 
- if(S2N_NO_PQ)
- target_compile_options(${PROJECT_NAME} PUBLIC -DS2N_NO_PQ)

Copied: s2n-tls/repos/community-x86_64/missing_symbol_workaround.patch (from 
rev 1265597, s2n-tls/trunk/missing_symbol_workaround.patch)
===
--- missing_symbol_workaround.patch (rev 0)
+++ missing_symbol_workaround.patch 2022-08-12 17:37:47 UTC (rev 1265598)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a93d51f5..8d2806ad 100755
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -177,7 +177,7 @@ set(CMAKE_C_FLAGS_DEBUGOPT "")
+ 
+ target_compile_options(${PROJECT_NAME} PRIVATE -pedantic -std=gnu99 -Wall 
-Werror -Wimplicit -Wunused -Wcomment -Wchar-subscripts
+ -Wuninitialized -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings 
-Wno-deprecated

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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 17:37:24
  Author: anatolik
Revision: 1265597

upgpkg: s2n-tls 1.3.19-1

Modified:
  s2n-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 17:36:58 UTC (rev 1265596)
+++ PKGBUILD2022-08-12 17:37:24 UTC (rev 1265597)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=s2n-tls
-pkgver=1.3.11
+pkgver=1.3.19
 pkgrel=1
 pkgdesc='A C99 implementation of the TLS/SSL protocols that is designed to be 
simple, small, fast, and with security as a priority'
 arch=(x86_64)
@@ -10,10 +10,10 @@
 provides=(s2n) # upstream renamed the project from s2n to s2n-tls
 conflicts=(s2n)
 replaces=(s2n)
-depends=(openssl)
+depends=(openssl gcc-libs)
 makedepends=(cmake)
 
source=(s2n-tls-$pkgver.zip::https://github.com/aws/s2n-tls/archive/v$pkgver.zip)
-sha256sums=('cb47b55f4e05d2bb4ee83484659677b5a9ef1f9ebad5233c94eed8c5d5044f75')
+sha256sums=('507b8a1487ee630af5cc754d3cdc403e2e54de546da8cd83914fbf4a064c2f1e')
 
 build() {
   cd s2n-tls-$pkgver



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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 17:03:46
  Author: anatolik
Revision: 1265488

archrelease: copy trunk to community-testing-x86_64

Added:
  tinygo/repos/community-testing-x86_64/
  tinygo/repos/community-testing-x86_64/PKGBUILD
(from rev 1265487, tinygo/trunk/PKGBUILD)
  tinygo/repos/community-testing-x86_64/disable_static_llvm.patch
(from rev 1265487, tinygo/trunk/disable_static_llvm.patch)

---+
 PKGBUILD  |   85 
 disable_static_llvm.patch |   32 
 2 files changed, 117 insertions(+)

Copied: tinygo/repos/community-testing-x86_64/PKGBUILD (from rev 1265487, 
tinygo/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-08-12 17:03:46 UTC (rev 1265488)
@@ -0,0 +1,85 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=tinygo
+pkgver=0.25.0
+pkgrel=1
+pkgdesc='Go compiler for small places. Microcontrollers, WebAssembly, and 
command-line tools. Based on LLVM.'
+arch=(x86_64)
+url='https://github.com/tinygo-org/tinygo'
+license=(BSD)
+options=(!strip !lto)
+# TODO: re-add these deps when switching back to system LLVM
+#depends=(llvm-libs clang lld)
+# TODO: add llvm + remove cmake/ninja/python from build deps
+makedepends=(go git cmake ninja python)
+# use git as we need to fetch submodules
+source=(git+https://github.com/tinygo-org/tinygo#tag=v$pkgver
+git+https://github.com/NordicSemiconductor/nrfx.git
+git+https://github.com/ARM-software/CMSIS.git
+git+https://github.com/avr-rust/avr-mcu.git
+git+https://github.com/tinygo-org/cmsis-svd
+git+https://github.com/CraneStation/wasi-libc
+git+https://github.com/keith-packard/picolibc.git
+git+https://github.com/tinygo-org/stm32-svd
+git://git.musl-libc.org/musl
+git+https://github.com/WebAssembly/binaryen.git
+git+https://github.com/mingw-w64/mingw-w64.git
+git+https://github.com/aykevl/macos-minimal-sdk.git
+
git+https://github.com/tinygo-org/llvm-project#branch=xtensa_release_14.0.0-patched
+disable_static_llvm.patch)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'d50593810cff1857e24adf537a624d79f128573d177f4f6da404da1539eaa967')
+
+prepare() {
+  cd tinygo
+
+  git submodule init
+  git config -f .gitmodules 'submodule.lib/nrfx.url' "$srcdir/nrfx"
+  git config -f .gitmodules 'submodule.lib/CMSIS.url' "$srcdir/CMSIS"
+  git config -f .gitmodules 'submodule.lib/avr.url' "$srcdir/avr-mcu"
+  git config -f .gitmodules 'submodule.lib/cmsis-svd.url' "$srcdir/cmsis-svd"
+  git config -f .gitmodules 'submodule.lib/wasi-libc.url' "$srcdir/wasi-libc"
+  git config -f .gitmodules 'submodule.lib/picolibc.url' "$srcdir/picolibc"
+  git config -f .gitmodules 'submodule.lib/stm32-svd.url' "$srcdir/stm32-svd"
+  git config -f .gitmodules 'submodule.lib/musl.url' "$srcdir/musl"
+  git config -f .gitmodules 'submodule.lib/binaryen.url' "$srcdir/binaryen"
+  git config -f .gitmodules 'submodule.lib/mingw-w64.url' "$srcdir/mingw-w64"
+  git config -f .gitmodules 'submodule.lib/macos-minimal-sdk.url' 
"$srcdir/macos-minimal-sdk"
+
+  git submodule sync
+  git submodule update
+
+  ln -sf ../llvm-project
+}
+
+build() {
+  cd tinygo
+  make llvm-build
+  make build/release
+}
+
+check() {
+  cd tinygo
+  # it reqreires a lot of dependencies. todo enable the tests
+  # make test tinygo-test smoketest
+}
+
+package() {
+  cd tinygo
+
+  install -d "$pkgdir"/usr/bin "$pkgdir"/usr/lib/tinygo
+  mv build/release/tinygo/* "$pkgdir"/usr/lib/tinygo
+  ln -s /usr/lib/tinygo/bin/tinygo "$pkgdir"/usr/bin/tinygo
+}

Copied: tinygo/repos/community-testing-x86_64/disable_static_llvm.patch (from 
rev 1265487, tinygo/trunk/disable_static_llvm.patch)
===
--- community-testing-x86_64/disable_static_llvm.patch  
(rev 0)
+++ community-testing-x86_64/disable_static_llvm.patch  2022-08-12 17:03:46 UTC 
(rev 1265488)
@@ -0,0 +1,32 @@
+commit 897aa65fb711444ccaa1abcfac4d7640f796aa04
+Author: Anatol Pomozov 
+Date:   Fri Oct 16 09:05:27 2020 -0700
+
+Arch linux build changes
+
+diff --git a/Makefile b/Makefile
+index aebf635..a2d0891 100644
+--- a/Makefile
 b/Makefile
+@@ -173,11 +173,10 @@ lib/wasi-libc/sysroot/lib/wasm32-wasi/libc.a:
+ 
+ # Build the Go compiler.
+ tinygo:
+-  @if [ ! -f "$(LLVM_BUILDDIR)/bin/llvm-config" ]; then echo "Fetch and 
build LLVM first by running:"; echo "  make llvm-source"; echo "  make 
$(LLVM_BUILDDIR)"; exit 1; fi
+-  CGO_CPPFLAGS="$(CGO_CPPFLAGS)" CGO_CXXFLAGS="$(CGO_CXXFLAGS)" 
CGO_LDFLAGS="$(

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

2022-08-12 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 17:03:25
  Author: anatolik
Revision: 1265487

upgpkg: tinygo 0.25.0-1

Modified:
  tinygo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 17:03:23 UTC (rev 1265486)
+++ PKGBUILD2022-08-12 17:03:25 UTC (rev 1265487)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tinygo
-pkgver=0.24.0
+pkgver=0.25.0
 pkgrel=1
 pkgdesc='Go compiler for small places. Microcontrollers, WebAssembly, and 
command-line tools. Based on LLVM.'
 arch=(x86_64)



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

2022-08-11 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 04:20:03
  Author: anatolik
Revision: 1265312

archrelease: copy trunk to community-testing-x86_64

Added:
  bcc/repos/community-testing-x86_64/
  bcc/repos/community-testing-x86_64/PKGBUILD
(from rev 1265311, bcc/trunk/PKGBUILD)

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

Copied: bcc/repos/community-testing-x86_64/PKGBUILD (from rev 1265311, 
bcc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-08-12 04:20:03 UTC (rev 1265312)
@@ -0,0 +1,89 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Gordian Edenhofer 
+# Contributor: Troy Engel 
+
+pkgbase=bcc
+pkgname=('bcc' 'bcc-tools' 'python-bcc')
+pkgver=0.25.0
+pkgrel=1
+pkgdesc='BPF Compiler Collection'
+arch=('x86_64')
+url='https://github.com/iovisor/bcc'
+license=('Apache')
+makedepends=('cmake' 'clang' 'llvm' 'flex' 'bison' 'python')
+checkdepends=('netperf' 'iperf')
+source=("bcc-$pkgver.tar.gz"::"https://github.com/iovisor/bcc/releases/download/v$pkgver/bcc-src-with-submodule.tar.gz";)
+sha512sums=('842e0957dd3a7cbb60e8aba497ae0841bfa564306ba27effca5348466dae6735557dc0a871d63a2519e3bba105632bcb279af7cfacf378dff9de2638484dac63')
+
+build() {
+  mkdir -p bcc/build
+  cd bcc/build
+  export CFLAGS+=" -ffat-lto-objects"
+  export CXXFLAGS+=" -ffat-lto-objects"
+
+  # The python version is irrelevant at this stage
+  cmake -DREVISION=$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib .. \
+-DENABLE_LLVM_SHARED=1   # FS#71163
+
+  make
+}
+
+package_bcc() {
+  pkgdesc='BPF Compiler Collection - C library and examples'
+  depends=('clang' 'libelf')
+  optdepends=('linux-headers: build modules against the Arch kernel'
+'linux-lts-headers: build modules against the LTS kernel'
+'linux-zen-headers: build modules against the ZEN kernel'
+'linux-hardened-headers: build modules against the HARDENED kernel'
+'bcc-tools: Python utilites using the BCC library'
+'python-bcc: Python 3 bindings for BCC')
+  provides=('bcc' 'libbcc')
+
+  cd bcc/build
+
+  # Install the kitchen sink
+  make DESTDIR="$pkgdir" install
+
+  # These go in a split package python*-bcc
+  rm -rf "$pkgdir"/usr/lib/python*
+
+  # These go in a split package bcc-tools
+  rm -rf "$pkgdir"/usr/share/bcc/{tools,man}
+}
+
+package_bcc-tools() {
+  pkgdesc='BPF Compiler Collection - Tools'
+  depends=('bcc' 'libedit' 'ethtool')
+  optdepends=(
+   'python-bcc: Python 3 bindings for BCC'
+'luajit: Lua bindings for BCC'
+  )
+
+  cd bcc/build
+
+  make -C tools DESTDIR="$pkgdir" install
+  make -C man DESTDIR="$pkgdir" install
+}
+
+package_python-bcc() {
+  pkgdesc='BPF Compiler Collection - Python 3 bindings'
+  depends=('bcc' 'python')
+  optdepends=(
+   'python-netaddr: Network address representation and manipulation'
+'python-pyroute2: Netlink and Linux network configuration'
+  )
+
+  cd bcc/build
+
+  # Force a quick python3 binding build (C library is already built)
+  cmake -DREVISION=$pkgver \
+-DPYTHON_CMD="python" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib ..
+  make -C "src/python"
+
+  # Install just those bindings
+  make -C "src/python" DESTDIR="$pkgdir" install
+}



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

2022-08-11 Thread Anatol Pomozov via arch-commits
Date: Friday, August 12, 2022 @ 04:19:45
  Author: anatolik
Revision: 1265311

upgpkg: bcc 0.25.0-1

Modified:
  bcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-12 01:37:31 UTC (rev 1265310)
+++ PKGBUILD2022-08-12 04:19:45 UTC (rev 1265311)
@@ -4,8 +4,8 @@
 
 pkgbase=bcc
 pkgname=('bcc' 'bcc-tools' 'python-bcc')
-pkgver=0.24.0
-pkgrel=2
+pkgver=0.25.0
+pkgrel=1
 pkgdesc='BPF Compiler Collection'
 arch=('x86_64')
 url='https://github.com/iovisor/bcc'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'clang' 'llvm' 'flex' 'bison' 'python')
 checkdepends=('netperf' 'iperf')
 
source=("bcc-$pkgver.tar.gz"::"https://github.com/iovisor/bcc/releases/download/v$pkgver/bcc-src-with-submodule.tar.gz";)
-sha512sums=('6d3c2d415abcf515f6d4afc480d0f0ea8ee8692bee1d0e774c1a1afe76ade03993a57c7242ba937af707f3a237a4149631b9f293223b5e27b2b7552a66398970')
+sha512sums=('842e0957dd3a7cbb60e8aba497ae0841bfa564306ba27effca5348466dae6735557dc0a871d63a2519e3bba105632bcb279af7cfacf378dff9de2638484dac63')
 
 build() {
   mkdir -p bcc/build



  1   2   3   4   5   6   7   8   9   10   >