[Git][archlinux/packaging/packages/zls][main] 2 commits: Bump for Zig 0.12.0

2024-04-28 Thread Daurnimator (@daurnimator)


Daurnimator pushed to branch main at Arch Linux / Packaging / Packages / zls


Commits:
73d6d196 by Daurnimator at 2024-04-29T15:58:05+10:00
Bump for Zig 0.12.0

- - - - -
0e1aa3cf by Daurnimator at 2024-04-29T15:58:08+10:00
upgpkg: 0.12.0-1

- - - - -


2 changed files:

- + .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,16 @@
+pkgbase = zls
+   pkgdesc = A language server for Zig
+   pkgver = 0.12.0
+   pkgrel = 1
+   url = https://github.com/zigtools/zls
+   arch = x86_64
+   license = MIT
+   depends = zig
+   source = 
zls-0.12.0.tar.gz::https://github.com/zigtools/zls/archive/refs/tags/0.12.0.tar.gz
+   source = 
known-folders-bf79988adcfce166f848e4b11e718c1966365329.tar.gz::https://github.com/ziglibs/known-folders/archive/bf79988adcfce166f848e4b11e718c1966365329.tar.gz
+   source = 
diffz-e10bf15962e45affb3fcd7d9a950977a69c901b3.tar.gz::https://github.com/ziglibs/diffz/archive/e10bf15962e45affb3fcd7d9a950977a69c901b3.tar.gz
+   sha256sums = 
c8c59dc6a708f3857ffbc1f593db4f6409e50e5ff1319b84dc65b84271e5a3d8
+   sha256sums = 
f93ef6c14192bf79fba608f3c37bc31e85c4c7370fb855e9afa930a17cd85ff2
+   sha256sums = 
b7978837f68c73d46f3f3ec6d12420d9ee52999d9da09cfa833ed974a7ad20e0
+
+pkgname = zls


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: Chocobo1 
 
 pkgname=zls
-pkgver=0.11.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="A language server for Zig"
 arch=('x86_64')
@@ -13,41 +13,28 @@ depends=('zig')
 source=(
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/zigtools/zls/archive/refs/tags/${pkgver}.tar.gz;
   # From build.zig.zon
-  
"known-folders-fa75e1bc672952efa0cf06160bbd942b47f6d59b.tar.gz::https://github.com/ziglibs/known-folders/archive/fa75e1bc672952efa0cf06160bbd942b47f6d59b.tar.gz;
-  
"diffz-90353d401c59e2ca5ed0abe5444c29ad3d7489aa.tar.gz::https://github.com/ziglibs/diffz/archive/90353d401c59e2ca5ed0abe5444c29ad3d7489aa.tar.gz;
-  
"binned_allocator-6c3321e0969ff2463f8335da5601986cf2108690.tar.gz::https://gist.github.com/antlilja/8372900fcc09e38d7b0b6bbaddad3904/archive/6c3321e0969ff2463f8335da5601986cf2108690.tar.gz;
+  
"known-folders-bf79988adcfce166f848e4b11e718c1966365329.tar.gz::https://github.com/ziglibs/known-folders/archive/bf79988adcfce166f848e4b11e718c1966365329.tar.gz;
+  
"diffz-e10bf15962e45affb3fcd7d9a950977a69c901b3.tar.gz::https://github.com/ziglibs/diffz/archive/e10bf15962e45affb3fcd7d9a950977a69c901b3.tar.gz;
 )
-sha256sums=('09fee5720fed9f3e1f494236ba88bf9176d3a01304feaa355b9f4726a574431b'
-'3b7a616c365cee0610997f6be9dbde7e3fdfb072fe49ad87cc65821eaf85c20f'
-'a7748f06df7f026412b0bc31a99529b6d4a4529eaca46d1d07014801172031a3'
-'7315c84a2bf85da1797e734b04c16e8d32b88034210a10c63cfc8632239e9ff7')
+sha256sums=('c8c59dc6a708f3857ffbc1f593db4f6409e50e5ff1319b84dc65b84271e5a3d8'
+'f93ef6c14192bf79fba608f3c37bc31e85c4c7370fb855e9afa930a17cd85ff2'
+'b7978837f68c73d46f3f3ec6d12420d9ee52999d9da09cfa833ed974a7ad20e0')
 
 prepare() {
-  mkdir -p zig-global-cache/p/
-  mv known-folders-fa75e1bc672952efa0cf06160bbd942b47f6d59b 
zig-global-cache/p/122048992ca58a78318b6eba4f65c692564be5af3b30fbef50cd4abeda981b2e7fa5
-  mv diffz-90353d401c59e2ca5ed0abe5444c29ad3d7489aa 
zig-global-cache/p/122089a8247a693cad53beb161bde6c30f71376cd4298798d45b32740c3581405864
-  mv 8372900fcc09e38d7b0b6bbaddad3904-6c3321e0969ff2463f8335da5601986cf2108690 
zig-global-cache/p/1220363c7e27b2d3f39de6ff6e90f9537a0634199860fea237a55ddb1e1717f5d6a5
+  zig fetch --global-cache-dir ./zig-global-cache 
known-folders-bf79988adcfce166f848e4b11e718c1966365329
+  zig fetch --global-cache-dir ./zig-global-cache 
diffz-e10bf15962e45affb3fcd7d9a950977a69c901b3
 }
 
 build() {
-  export ZIG_GLOBAL_CACHE_DIR="${srcdir}/zig-global-cache"
   cd "${pkgname}-${pkgver}"
   DESTDIR="build" zig build \
+--summary all \
+--global-cache-dir ../zig-global-cache \
+--system ../zig-global-cache/p \
 --prefix /usr \
---search-prefix /usr \
--Dtarget=native-linux.5.15-gnu \
+--release=safe \
+-Dtarget=native-linux.6.1-gnu.2.38 \
 -Dcpu=baseline \
--Doptimize=ReleaseSafe \
--Dpie=true
-}
-
-check() {
-  export ZIG_GLOBAL_CACHE_DIR="${srcdir}/zig-global-cache"
-  cd "${pkgname}-${pkgver}"
-  zig build test \
--Dtarget=native-linux.5.15-gnu \
--Dcpu=baseline \
--Doptimize=ReleaseSafe \
 -Dpie=true
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zls/-/compare/af062bdf3a681f87150f34757345547e2cb75660...0e1aa3cfb57a78e341528a521f2f8da7e9066aa7

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zls/-/compare/af062bdf3a681f87150f34757345547e2cb75660...0e1aa3cfb57a78e341528a521f2f8da7e9066aa7
You're 

[Git][archlinux/packaging/packages/zls] Pushed new tag 0.12.0-1

2024-04-28 Thread Daurnimator (@daurnimator)


Daurnimator pushed new tag 0.12.0-1 at Arch Linux / Packaging / Packages / zls

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zls/-/tree/0.12.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pytorch] Pushed new tag 2.3.0-2

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 2.3.0-2 at Arch Linux / Packaging / Packages / 
python-pytorch

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pytorch/-/tree/2.3.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pytorch][main] upgpkg: 2.3.0-2: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
python-pytorch


Commits:
feca9648 by Jakub Klinkovský at 2024-04-29T07:46:00+02:00
upgpkg: 2.3.0-2: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pytorch
pkgdesc = Tensors and Dynamic neural networks in Python with strong GPU 
acceleration
pkgver = 2.3.0
-   pkgrel = 1
+   pkgrel = 2
url = https://pytorch.org
arch = x86_64
license = BSD


=
PKGBUILD
=
@@ -7,7 +7,7 @@ pkgbase="python-${_pkgname}"
 pkgname=("${pkgbase}" "${pkgbase}-opt" "${pkgbase}-cuda" "${pkgbase}-opt-cuda" 
"${pkgbase}-rocm" "${pkgbase}-opt-rocm")
 pkgver=2.3.0
 _pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 _pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
 pkgdesc="${_pkgdesc}"
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pytorch/-/commit/feca964800a4f5b35c002c78ffd0b66c2bfcdd24

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pytorch/-/commit/feca964800a4f5b35c002c78ffd0b66c2bfcdd24
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/syndicationd] Pushed new tag 0.2.3-1

2024-04-28 Thread @orhun


Orhun Parmaksız pushed new tag 0.2.3-1 at Arch Linux / Packaging / Packages / 
syndicationd

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/syndicationd/-/tree/0.2.3-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/syndicationd][main] upgpkg: 0.2.3-1: upstream release

2024-04-28 Thread @orhun


Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / 
syndicationd


Commits:
4d500f51 by Orhun Parmaksız at 2024-04-29T07:59:17+03:00
upgpkg: 0.2.3-1: upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = syndicationd
pkgdesc = A TUI feed viewer
-   pkgver = 0.2.2
+   pkgver = 0.2.3
pkgrel = 1
url = https://github.com/ymgyt/syndicationd
arch = x86_64
@@ -9,7 +9,7 @@ pkgbase = syndicationd
makedepends = cargo
depends = gcc-libs
options = !lto
-   source = 
syndicationd-0.2.2.tar.gz::https://github.com/ymgyt/syndicationd/archive/synd-term-v0.2.2.tar.gz
-   sha256sums = 
a7e42160bb934c269d928d74eac37adf95fa9315cde70aa65e86b374deb837e5
+   source = 
syndicationd-0.2.3.tar.gz::https://github.com/ymgyt/syndicationd/archive/synd-term-v0.2.3.tar.gz
+   sha256sums = 
eeec5f2e035aca135098e1fc2beb9dd0225a67f6376dbd99b70d9b707e62
 
 pkgname = syndicationd


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=syndicationd
 _pkgname=synd-term
-pkgver=0.2.2
+pkgver=0.2.3
 pkgrel=1
 pkgdesc="A TUI feed viewer"
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('MIT' 'Apache-2.0')
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$_pkgname-v$pkgver.tar.gz")
-sha256sums=('a7e42160bb934c269d928d74eac37adf95fa9315cde70aa65e86b374deb837e5')
+sha256sums=('eeec5f2e035aca135098e1fc2beb9dd0225a67f6376dbd99b70d9b707e62')
 options=('!lto')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/syndicationd/-/commit/4d500f5183b16058332b47c769d81049c652e388

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/syndicationd/-/commit/4d500f5183b16058332b47c769d81049c652e388
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/klayout][main] upgpkg: 0.29.0-4

2024-04-28 Thread Felix Yan (@felixonmars)


Felix Yan pushed to branch main at Arch Linux / Packaging / Packages / klayout


Commits:
eb696aeb by Felix Yan at 2024-04-29T04:42:25+00:00
upgpkg: 0.29.0-4

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = klayout
pkgdesc = High Performance Layout Viewer And Editor. Support of GDS and 
OASIS files.
pkgver = 0.29.0
-   pkgrel = 3
+   pkgrel = 4
url = https://www.klayout.de
arch = x86_64
license = GPL


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=klayout
 pkgver=0.29.0
-pkgrel=3
+pkgrel=4
 pkgdesc="High Performance Layout Viewer And Editor. Support of GDS and OASIS 
files."
 arch=('x86_64')
 url="https://www.klayout.de;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/klayout/-/commit/eb696aebb23bf79f7dd2ac2195eef82b191c548d

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/klayout/-/commit/eb696aebb23bf79f7dd2ac2195eef82b191c548d
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/klayout] Pushed new tag 0.29.0-4

2024-04-28 Thread Felix Yan (@felixonmars)


Felix Yan pushed new tag 0.29.0-4 at Arch Linux / Packaging / Packages / klayout

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/klayout/-/tree/0.29.0-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zig][main] upgpkg: 0.12.0-1

2024-04-28 Thread Daurnimator (@daurnimator)


Daurnimator pushed to branch main at Arch Linux / Packaging / Packages / zig


Commits:
9db4dbc7 by Daurnimator at 2024-04-29T14:14:20+10:00
upgpkg: 0.12.0-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,20 +1,22 @@
 pkgbase = zig
pkgdesc = a general-purpose programming language and toolchain for 
maintaining robust, optimal, and reusable software
-   pkgver = 0.11.0
-   pkgrel = 2
+   pkgver = 0.12.0
+   pkgrel = 1
url = https://ziglang.org/
arch = x86_64
license = MIT
checkdepends = lib32-glibc
makedepends = cmake
-   makedepends = llvm16
-   depends = clang16
-   depends = lld16
-   depends = llvm16-libs
+   makedepends = llvm
+   depends = clang
+   depends = lld
+   depends = llvm-libs
options = !lto
-   source = https://ziglang.org/download/0.11.0/zig-0.11.0.tar.xz
+   source = https://ziglang.org/download/0.12.0/zig-0.12.0.tar.xz
+   source = 
zig-19800.patch::https://github.com/ziglang/zig/pull/19800.patch
source = skip-localhost-test.patch
-   sha256sums = 
ead029cfe474d9bf0413332d0e9d3bdfb5990cadce238f44f35ba32d92169295
+   sha256sums = 
a6744ef84b6716f976dad923075b2f54dc4f785f200ae6c8ea07997bd9d9bd9a
+   sha256sums = 
aba93c54fc7e6048f97060d9bd3158ff5557bf3fb898707242b09883fe20211e
sha256sums = 
eeb5f0f72035c52bf558ffc77a171a3ddf93eac7d663ef0c82826007763717a8
 
 pkgname = zig


=
PKGBUILD
=
@@ -2,24 +2,27 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.11.0
-pkgrel=2
+pkgver=0.12.0
+pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
 url='https://ziglang.org/'
 license=('MIT')
 options=('!lto')
-depends=('clang16' 'lld16' 'llvm16-libs')
-makedepends=('cmake' 'llvm16')
+depends=('clang' 'lld' 'llvm-libs')
+makedepends=('cmake' 'llvm')
 checkdepends=('lib32-glibc')
 source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
+"zig-19800.patch::https://github.com/ziglang/zig/pull/19800.patch;
 "skip-localhost-test.patch")
-sha256sums=('72014e700e50c0d3528cef3adf80b76b26ab27730133e8202716a187a799e951'
+sha256sums=('a6744ef84b6716f976dad923075b2f54dc4f785f200ae6c8ea07997bd9d9bd9a'
+'aba93c54fc7e6048f97060d9bd3158ff5557bf3fb898707242b09883fe20211e'
 'eeb5f0f72035c52bf558ffc77a171a3ddf93eac7d663ef0c82826007763717a8')
 
 prepare() {
 cd "$pkgname-$pkgver"
 
+patch -p1 -i ../zig-19800.patch
 patch -p1 -i ../skip-localhost-test.patch
 }
 
@@ -28,14 +31,16 @@ build() {
 
 local cmake_vars=(
 CMAKE_INSTALL_PREFIX=/usr
-CMAKE_PREFIX_PATH=/usr/lib/llvm16
 
 # The zig CMakeLists uses build type Debug if not set
 # override it back to None so makepkg env vars are respected
 CMAKE_BUILD_TYPE=None
 
+ZIG_PIE=ON
 ZIG_SHARED_LLVM=ON
+ZIG_USE_LLVM_CONFIG=ON
 
+ZIG_TARGET_TRIPLE=native-linux.6.1-gnu.2.38
 ZIG_TARGET_MCPU=baseline
 )
 cmake -B build "${cmake_vars[@]/#/-D}" .



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zig/-/commit/9db4dbc7109c4aac4e8aa2d7527b00d82e0612cb

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zig/-/commit/9db4dbc7109c4aac4e8aa2d7527b00d82e0612cb
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zig] Pushed new tag 0.12.0-1

2024-04-28 Thread Daurnimator (@daurnimator)


Daurnimator pushed new tag 0.12.0-1 at Arch Linux / Packaging / Packages / zig

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zig/-/tree/0.12.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/kwin][main] Drop python dependency

2024-04-28 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / kwin


Commits:
75204de3 by Antonio Rojas at 2024-04-28T23:59:42+02:00
Drop python dependency

Fixes https://gitlab.archlinux.org/archlinux/packaging/packages/kwin/-/issues/5

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -57,7 +57,6 @@ depends=(breeze
  libxkbcommon-x11
  mesa
  pipewire-session-manager
- python
  libplasma
  qt6-5compat
  qt6-base



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kwin/-/commit/75204de37f2bfa1cf478f81194a59fad18718e39

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/kwin/-/commit/75204de37f2bfa1cf478f81194a59fad18718e39
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/root] Pushed new tag 6.30.04-3

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 6.30.04-3 at Arch Linux / Packaging / Packages 
/ root

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/root/-/tree/6.30.04-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/root][main] upgpkg: 6.30.04-3: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
root


Commits:
60dbf56d by Jakub Klinkovský at 2024-04-28T23:51:56+02:00
upgpkg: 6.30.04-3: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = root
pkgdesc = C++ data analysis framework and interpreter from CERN
pkgver = 6.30.04
-   pkgrel = 2
+   pkgrel = 3
url = https://root.cern
arch = x86_64
license = LGPL2.1


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 pkgbase=root
 pkgname=('root' 'root-cuda')
 pkgver=6.30.04
-pkgrel=2
+pkgrel=3
 pkgdesc='C++ data analysis framework and interpreter from CERN'
 arch=('x86_64')
 url='https://root.cern'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/root/-/commit/60dbf56da1e246ec8b7ae16a92865d4696326c4a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/root/-/commit/60dbf56da1e246ec8b7ae16a92865d4696326c4a
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/opencv] Pushed new tag 4.9.0-5

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 4.9.0-5 at Arch Linux / Packaging / Packages / 
opencv

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/opencv/-/tree/4.9.0-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/opencv][main] upgpkg: 4.9.0-5: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
opencv


Commits:
d593c0f1 by Jakub Klinkovský at 2024-04-28T23:40:57+02:00
upgpkg: 4.9.0-5: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = opencv
pkgdesc = Open Source Computer Vision Library
pkgver = 4.9.0
-   pkgrel = 4
+   pkgrel = 5
url = https://opencv.org/
arch = x86_64
license = Apache-2.0


=
PKGBUILD
=
@@ -8,7 +8,7 @@ pkgname=(opencv
  python-opencv
  opencv-cuda)
 pkgver=4.9.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Open Source Computer Vision Library'
 arch=(x86_64)
 license=(Apache-2.0)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/opencv/-/commit/d593c0f1b246c5dd0fd104e9fc544d0073c24dd7

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/opencv/-/commit/d593c0f1b246c5dd0fd104e9fc544d0073c24dd7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jmol][main] upgpkg: 16.2.11-1: Update to 16.2.11

2024-04-28 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / jmol


Commits:
a52dd296 by Antonio Rojas at 2024-04-28T23:29:55+02:00
upgpkg: 16.2.11-1: Update to 16.2.11

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,12 @@
 pkgbase = jmol
-   pkgver = 16.2.9
+   pkgver = 16.2.11
pkgrel = 1
url = https://jmol.sourceforge.net
arch = any
license = LGPL-2.1-only
makedepends = unzip
-   source = 
https://sourceforge.net/projects/jmol/files/Jmol/Version%2016.2/Jmol%2016.2.9/Jmol-16.2.9-binary.zip
-   sha256sums = 
45b27b6f0bb8d28abc397dae18422f398d0a7e5dcd71253255e01c89cf999168
+   source = 
https://sourceforge.net/projects/jmol/files/Jmol/Version%2016.2/Jmol%2016.2.11/Jmol-16.2.11-binary.zip
+   sha256sums = 
99b12f4ae927d268be9b7d0eaa098c32a2bb90824dcb4161a65c42679f71599c
 
 pkgname = jmol
pkgdesc = A Java 3D viewer for chemical structures


=
PKGBUILD
=
@@ -4,14 +4,14 @@
 pkgbase=jmol
 pkgname=(jmol
  jsmol)
-pkgver=16.2.9
+pkgver=16.2.11
 pkgrel=1
 arch=(any)
 url='https://jmol.sourceforge.net'
 license=(LGPL-2.1-only)
 makedepends=(unzip)
 
source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
-sha256sums=('45b27b6f0bb8d28abc397dae18422f398d0a7e5dcd71253255e01c89cf999168')
+sha256sums=('99b12f4ae927d268be9b7d0eaa098c32a2bb90824dcb4161a65c42679f71599c')
 
 package_jmol() {
   pkgdesc='A Java 3D viewer for chemical structures'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jmol/-/commit/a52dd296b3f8c87c81f171fd5bf564d9413f7fc8

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jmol/-/commit/a52dd296b3f8c87c81f171fd5bf564d9413f7fc8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jmol] Pushed new tag 16.2.11-1

2024-04-28 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed new tag 16.2.11-1 at Arch Linux / Packaging / Packages / 
jmol

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jmol/-/tree/16.2.11-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/avogadrolibs][main] upgpkg: 1.99.0-3: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
avogadrolibs


Commits:
675d6241 by Jakub Klinkovský at 2024-04-28T23:22:39+02:00
upgpkg: 1.99.0-3: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = avogadrolibs
pkgdesc = Libraries that provide 3D rendering, visualization, analysis 
and data processing useful in computational chemistry, molecular modeling, 
bioinformatics, materials science, and related areas
pkgver = 1.99.0
-   pkgrel = 2
+   pkgrel = 3
url = https://www.openchemistry.org/
arch = x86_64
license = custom


=
PKGBUILD
=
@@ -4,7 +4,7 @@ pkgbase=avogadrolibs
 pkgname=(avogadrolibs
  avogadrolibs-qt5)
 pkgver=1.99.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Libraries that provide 3D rendering, visualization, analysis and data 
processing useful in computational chemistry, molecular modeling, 
bioinformatics, materials science, and related areas'
 arch=(x86_64)
 url='https://www.openchemistry.org/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/avogadrolibs/-/commit/675d6241a4745191045e26323c36c85f8c603848

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/avogadrolibs/-/commit/675d6241a4745191045e26323c36c85f8c603848
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/avogadrolibs] Pushed new tag 1.99.0-3

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.99.0-3 at Arch Linux / Packaging / Packages / 
avogadrolibs

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/avogadrolibs/-/tree/1.99.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/onnxruntime] Pushed new tag 1.16.3-9

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.16.3-9 at Arch Linux / Packaging / Packages / 
onnxruntime

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/onnxruntime/-/tree/1.16.3-9
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/onnxruntime][main] upgpkg: 1.16.3-9: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
onnxruntime


Commits:
d9db0ad1 by Jakub Klinkovský at 2024-04-28T23:17:37+02:00
upgpkg: 1.16.3-9: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = onnxruntime
pkgver = 1.16.3
-   pkgrel = 8
+   pkgrel = 9
url = https://github.com/microsoft/onnxruntime
arch = x86_64
license = MIT
@@ -12,6 +12,7 @@ pkgbase = onnxruntime
makedepends = chrono-date
makedepends = eigen
makedepends = cxxopts
+   makedepends = openmpi
makedepends = python-setuptools
makedepends = python-installer
makedepends = python-wheel
@@ -36,7 +37,6 @@ pkgbase = onnxruntime
makedepends = python-packaging
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -72,7 +72,6 @@ pkgname = onnxruntime-rocm
pkgdesc = Cross-platform, high performance scoring engine for ML models 
(with ROCm)
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -86,7 +85,6 @@ pkgname = onnxruntime-opt-rocm
pkgdesc = Cross-platform, high performance scoring engine for ML models 
(with ROCm and AVX2 CPU optimizations)
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -100,7 +98,6 @@ pkgname = python-onnxruntime
pkgdesc = Cross-platform, high performance scoring engine for ML models
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -125,7 +122,6 @@ pkgname = python-onnxruntime-opt
pkgdesc = Cross-platform, high performance scoring engine for ML models 
(with AVX2 CPU optimizations)
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -152,7 +148,6 @@ pkgname = python-onnxruntime-rocm
pkgdesc = Cross-platform, high performance scoring engine for ML models 
(with ROCm)
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl
@@ -175,7 +170,6 @@ pkgname = python-onnxruntime-opt-rocm
pkgdesc = Cross-platform, high performance scoring engine for ML models 
(with ROCm and AVX2 CPU optimizations)
depends = abseil-cpp
depends = boost
-   depends = openmpi
depends = nsync
depends = onednn
depends = intel-oneapi-mkl


=
PKGBUILD
=
@@ -8,16 +8,16 @@ pkgname=("${pkgbase}" "${pkgbase}-opt"  "${pkgbase}-rocm" 
"${pkgbase}-opt-rocm"
  "python-${pkgbase}-rocm" "python-${pkgbase}-opt-rocm")
 pkgver=1.16.3
 _pkgdesc='Cross-platform, high performance scoring engine for ML models'
-pkgrel=8
+pkgrel=9
 arch=('x86_64')
 url='https://github.com/microsoft/onnxruntime'
 license=('MIT')
-depends=('abseil-cpp' 'boost' 'openmpi' 'nsync' 'onednn' 'intel-oneapi-mkl')
+depends=('abseil-cpp' 'boost' 'nsync' 'onednn' 'intel-oneapi-mkl')
 # 
https://github.com/microsoft/onnxruntime/blob/main/onnxruntime/python/tools/transformers/requirements.txt
 _pydepends=('python-onnx' 'python-numpy' 'python-coloredlogs' 'python-psutil'
 'python-py-cpuinfo' 'python-sympy' 'python-scipy' 'python-pillow'
 'python-flatbuffers' 'python-protobuf' 'python-packaging')
-makedepends=('git' 'cmake' 'ninja' 'pybind11' 'nlohmann-json' 'chrono-date' 
'eigen' 'cxxopts'
+makedepends=('git' 'cmake' 'ninja' 'pybind11' 'nlohmann-json' 'chrono-date' 
'eigen' 'cxxopts' 'openmpi'
  'python-setuptools' 'python-installer' 'python-wheel' 
'python-build'
  'cuda' 'cudnn' 'nccl' 'rocm-hip-sdk' 'hipify-clang' 
'rocm-smi-lib' 'roctracer')
 makedepends+=("${_pydepends[@]}")



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/onnxruntime/-/commit/d9db0ad1681ed8b22e27b8104d1d3b48d99aebc2

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/onnxruntime/-/commit/d9db0ad1681ed8b22e27b8104d1d3b48d99aebc2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freecad] Pushed new tag 0.21.2-18

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 0.21.2-18 at Arch Linux / Packaging / Packages 
/ freecad

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freecad/-/tree/0.21.2-18
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freecad][main] upgpkg: 0.21.2-18: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
freecad


Commits:
a46f2512 by Jakub Klinkovský at 2024-04-28T23:04:47+02:00
upgpkg: 0.21.2-18: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = freecad
pkgdesc = Feature based parametric 3D CAD modeler
pkgver = 0.21.2
-   pkgrel = 17
+   pkgrel = 18
url = https://freecadweb.org/
arch = x86_64
license = LGPL


=
PKGBUILD
=
@@ -12,7 +12,7 @@
 
 pkgname=freecad
 pkgver=0.21.2
-pkgrel=17
+pkgrel=18
 pkgdesc='Feature based parametric 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freecad/-/commit/a46f25129ee89186c6d713f57159b81aa97dab81

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freecad/-/commit/a46f25129ee89186c6d713f57159b81aa97dab81
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dbmail][main] replace nogroup to nobody and create /var/log/dbmail

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
dbmail


Commits:
fbe3d1cb by Sergej Pupykin at 2024-04-28T23:57:44+03:00
replace nogroup to nobody and create /var/log/dbmail

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=dbmail
 pkgver=3.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast and scalable sql based mail services"
 arch=('x86_64')
 url="https://github.com/dbmail/dbmail;
@@ -46,6 +46,7 @@ 
sha256sums=('eb11ec7c1a09b206a6b1816f18bb53aa41600a8de6e169ab61effa856a621e4e'
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 < ../noop-fetch-response-fix2.patch
+  sed -i 's|nogroup|nobody|g' dbmail.conf
   cp ../dbmail-sieved.txt ./man/
   sed -i \
 -e 's|@runstatedir@|/run|g' \
@@ -83,6 +84,7 @@ package() {
   install -dm0755 "$pkgdir"/usr/lib/systemd/system
   install -dm0755 "$pkgdir"/usr/lib/tmpfiles.d
   install -dm0755 "$pkgdir"/usr/share/dbmail
+  install -dm0755 "$pkgdir"/var/log/dbmail
   make DESTDIR="$pkgdir" install
 
   install -Dm644 dbmail.conf "$pkgdir"/etc/dbmail.conf.sample



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dbmail/-/commit/fbe3d1cb1d025fa569f5fa8cafa6b6e19a8dfe00

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dbmail/-/commit/fbe3d1cb1d025fa569f5fa8cafa6b6e19a8dfe00
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lxc] Pushed new tag 1-6.0.0-4

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 1-6.0.0-4 at Arch Linux / Packaging / Packages / 
lxc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/tree/1-6.0.0-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lxc][main] upgpkg: 1:6.0.0-4

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / lxc


Commits:
9e0b5afb by Sergej Pupykin at 2024-04-28T23:46:50+03:00
upgpkg: 1:6.0.0-4
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/issues/1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = lxc
pkgdesc = Linux Containers
pkgver = 6.0.0
-   pkgrel = 3
+   pkgrel = 4
epoch = 1
url = https://linuxcontainers.org
arch = x86_64


=
PKGBUILD
=
@@ -8,7 +8,7 @@
 pkgname=lxc
 epoch=1
 pkgver=6.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Linux Containers"
 arch=('x86_64')
 url="https://linuxcontainers.org;
@@ -41,7 +41,10 @@ prepare() {
 
 build() {
   cd "$pkgname-${pkgver/_/-}"
-  arch-meson build -Dtools=false -Dtools-multicall=true
+  # https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/issues/1
+  # lxd conflicts with tools-multicall
+#  arch-meson build -Dtools=false -Dtools-multicall=true
+  arch-meson build -Dtools=true -Dtools-multicall=false
   meson compile -C build -v
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/commit/9e0b5afb5576199f623bbbceaf4267fd70b10053

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/commit/9e0b5afb5576199f623bbbceaf4267fd70b10053
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jujutsu][main] upgpkg: 0.16.0-4: Rebuild with libgit2-1.8

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
jujutsu


Commits:
2bec9119 by Caleb Maclennan at 2024-04-28T23:34:33+03:00
upgpkg: 0.16.0-4: Rebuild with libgit2-1.8

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = jujutsu
pkgdesc = Git-compatible VCS that is both simple and powerful
pkgver = 0.16.0
-   pkgrel = 3
+   pkgrel = 4
url = https://github.com/martinvonz/jj
arch = x86_64
license = Apache-2.0


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgname=jujutsu
 _pkgname=jj
 pkgver=0.16.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Git-compatible VCS that is both simple and powerful'
 arch=(x86_64)
 url="https://github.com/martinvonz/$_pkgname;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/commit/2bec91190d8fd10c981d7f71e5eff83122d41c56

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/commit/2bec91190d8fd10c981d7f71e5eff83122d41c56
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jujutsu] Pushed new tag 0.16.0-4

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 0.16.0-4 at Arch Linux / Packaging / Packages / 
jujutsu

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/tree/0.16.0-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jujutsu][main] upgpkg: 0.16.0-3: Replace now deleted AUR bin package

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
jujutsu


Commits:
0d99e802 by Caleb Maclennan at 2024-04-28T23:26:16+03:00
upgpkg: 0.16.0-3: Replace now deleted AUR bin package

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = jujutsu
pkgdesc = Git-compatible VCS that is both simple and powerful
pkgver = 0.16.0
-   pkgrel = 2
+   pkgrel = 3
url = https://github.com/martinvonz/jj
arch = x86_64
license = Apache-2.0
@@ -12,6 +12,7 @@ pkgbase = jujutsu
depends = libgit2
depends = libgit2.so
depends = zstd
+   replaces = jujutsu-bin
source = 
https://github.com/martinvonz/jj/archive/refs/tags/v0.16.0/jj-0.16.0.tar.gz
sha256sums = 
e6094982c8e5902c33b0505bbb0e4e4c35c249f2a36108655002dc7d06de7d4a
 


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgname=jujutsu
 _pkgname=jj
 pkgver=0.16.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Git-compatible VCS that is both simple and powerful'
 arch=(x86_64)
 url="https://github.com/martinvonz/$_pkgname;
@@ -16,6 +16,7 @@ depends=(gcc-libs # libgcc_s.so
  openssl
  libgit2 libgit2.so
  zstd)
+replaces=("$pkgname-bin")
 makedepends=(cargo)
 _archive="$_pkgname-$pkgver"
 source=("$url/archive/refs/tags/v$pkgver/$_archive.tar.gz")



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/commit/0d99e802dc4eff1c2f82e11bd7446f01189b1953

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/commit/0d99e802dc4eff1c2f82e11bd7446f01189b1953
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jujutsu] Pushed new tag 0.16.0-3

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 0.16.0-3 at Arch Linux / Packaging / Packages / 
jujutsu

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jujutsu/-/tree/0.16.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hplip][main] upgpkg: 1:3.23.12-5

2024-04-28 Thread Christian Heusel (@gromit)


Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / 
hplip


Commits:
694b4720 by Christian Heusel at 2024-04-28T22:25:08+02:00
upgpkg: 1:3.23.12-5

fixes https://gitlab.archlinux.org/archlinux/packaging/packages/hplip/-/issues/3

- - - - -


3 changed files:

- .SRCINFO
- PKGBUILD
- + hplip-1_3_23_12-4-python3_12-fix.patch


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = hplip
pkgdesc = Drivers for HP DeskJet, OfficeJet, Photosmart, Business 
Inkjet and some LaserJet
pkgver = 3.23.12
-   pkgrel = 4
+   pkgrel = 5
epoch = 1
url = https://hplipopensource.com
arch = x86_64
@@ -57,6 +57,7 @@ pkgbase = hplip
source = hplip-configure-python.patch
source = python3.diff
source = reproducible-gzip.patch
+   source = hplip-1_3_23_12-4-python3_12-fix.patch
validpgpkeys = 4ABA2F66DBD5A95894910E0673D770CDA59047B9
sha512sums = 
7461ffec38be68421e4204021f53d2b1641e7a67c14f205390d45f487a1af90956fd221f7e1561635508103ae944f19e04d6052d3f8928f2c9685fdcdcf515df
sha512sums = SKIP
@@ -68,5 +69,6 @@ pkgbase = hplip
sha512sums = 
089c102357ea5fd55d81ae76aaff62713f780fd84500c3b92ecd6b2bb11ccdc3a162978548e9a5f9e98a8354a5be3997e416c52daa18eda4621ed79a29d6fea8
sha512sums = 
b8a4c860e90a52ec566ca5a9c7f3a5ecb7386ae76e17b2c6c878073e60eeaf0cb63883b740b4725794be9914e1ab8fc91313efb288395f3095f599c07f54cf14
sha512sums = 
379fcbe9dc2986da828a174a0ac4e71a1da43a98408894d5e713e09d7d9cba1e9fac30f9602b81d48d992abe6b65b6402b8a07664efe97400c5d839be33cf15f
+   sha512sums = 
d8c9918a5559fb4cc968607aae9c2b67814240f4d81f703a15e1a23cca0bedd21b3c79c29363bd361f8b4bed169336d2a9e152eb8ca6309bd725dc2aa6a24509
 
 pkgname = hplip


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.23.12
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -44,7 +44,8 @@ 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.a
 # use the one from Fedora
 hplip-configure-python.patch
 python3.diff
-reproducible-gzip.patch)
+reproducible-gzip.patch
+hplip-1_3_23_12-4-python3_12-fix.patch)
 
sha512sums=('7461ffec38be68421e4204021f53d2b1641e7a67c14f205390d45f487a1af90956fd221f7e1561635508103ae944f19e04d6052d3f8928f2c9685fdcdcf515df'
 'SKIP'
 
'a12aaeece5285ffb86bdbc24871bf512fbc1f29da44ae51ded314378032662074a42b8aca23bebb378bf78ed15bb7f99da59bfb4cd456f3458e7a5ef42a900f8'
@@ -54,7 +55,8 @@ 
sha512sums=('7461ffec38be68421e4204021f53d2b1641e7a67c14f205390d45f487a1af90956f
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'089c102357ea5fd55d81ae76aaff62713f780fd84500c3b92ecd6b2bb11ccdc3a162978548e9a5f9e98a8354a5be3997e416c52daa18eda4621ed79a29d6fea8'
 
'b8a4c860e90a52ec566ca5a9c7f3a5ecb7386ae76e17b2c6c878073e60eeaf0cb63883b740b4725794be9914e1ab8fc91313efb288395f3095f599c07f54cf14'
-
'379fcbe9dc2986da828a174a0ac4e71a1da43a98408894d5e713e09d7d9cba1e9fac30f9602b81d48d992abe6b65b6402b8a07664efe97400c5d839be33cf15f')
+
'379fcbe9dc2986da828a174a0ac4e71a1da43a98408894d5e713e09d7d9cba1e9fac30f9602b81d48d992abe6b65b6402b8a07664efe97400c5d839be33cf15f'
+
'd8c9918a5559fb4cc968607aae9c2b67814240f4d81f703a15e1a23cca0bedd21b3c79c29363bd361f8b4bed169336d2a9e152eb8ca6309bd725dc2aa6a24509')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -80,6 +82,9 @@ prepare() {
  # make gzip creation reproducible by removing the timestamp
  patch -Np1 -i ../reproducible-gzip.patch
 
+ # https://gitlab.archlinux.org/archlinux/packaging/packages/hplip/-/issues/3
+ patch -Np1 -i ../hplip-1_3_23_12-4-python3_12-fix.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }


=
hplip-1_3_23_12-4-python3_12-fix.patch
=
@@ -0,0 +1,35 @@
+From eb5e88152538a36e74ea8d7085a54baf48e06103 Mon Sep 17 00:00:00 2001
+From: Zdenek Dohnal 
+Date: Jul 17 2023 16:43:31 +
+Subject: 2221311 - [python3.12] hplip tools/binaries crash due depending on 
removed configparser.readfp()
+
+
+---
+
+diff --git a/base/g.py b/base/g.py
+index 0aa0e2e..96b3131 100644
+--- a/base/g.py
 b/base/g.py
+@@ -128,7 +128,7 @@ class ConfigBase(object):
+ try:
+ fp = open(self.filename, "r")
+ try:
+-self.conf.readfp(fp)
++self.conf.read_file(fp, self.filename)
+ except configparser.MissingSectionHeaderError:
+ print("")
+   

[Git][archlinux/packaging/packages/hplip] Pushed new tag 1-3.23.12-5

2024-04-28 Thread Christian Heusel (@gromit)


Christian Heusel pushed new tag 1-3.23.12-5 at Arch Linux / Packaging / 
Packages / hplip

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hplip/-/tree/1-3.23.12-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/apr-util][main] Use SPDX license identifier

2024-04-28 Thread Anatol Pomozov (@anatolik)


Anatol Pomozov pushed to branch main at Arch Linux / Packaging / Packages / 
apr-util


Commits:
0e2d0c13 by shijie.chen at 2024-02-12T21:17:20+08:00
Use SPDX license identifier

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -20,7 +20,7 @@ optdepends=(
   'nss: enable nss crypto support'
   'openssl: enable openssl crypto support'
 )
-license=('APACHE')
+license=('Apache-2.0')
 source=(https://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2{,.asc}
 disable_failing_test.patch   # TODO: figure out why dbm test fails
 buildconf_config.guess_sub_location.patch)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/apr-util/-/commit/0e2d0c13cc149d8c680794c4a752226254199c58

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/apr-util/-/commit/0e2d0c13cc149d8c680794c4a752226254199c58
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ninja][main] upgpkg: 1.12.0-2

2024-04-28 Thread Anatol Pomozov (@anatolik)


Anatol Pomozov pushed to branch main at Arch Linux / Packaging / Packages / 
ninja


Commits:
f982da8b by Anatol Pomozov at 2024-04-28T13:22:09-07:00
upgpkg: 1.12.0-2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,10 +1,11 @@
 pkgbase = ninja
pkgdesc = Small build system with a focus on speed
pkgver = 1.12.0
-   pkgrel = 1
+   pkgrel = 2
url = https://ninja-build.org/
arch = x86_64
license = Apache-2.0
+   checkdepends = gtest
makedepends = cmake
makedepends = python
makedepends = re2c


=
PKGBUILD
=
@@ -5,13 +5,14 @@
 
 pkgname=ninja
 pkgver=1.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Small build system with a focus on speed'
 arch=(x86_64)
 url='https://ninja-build.org/'
 license=(Apache-2.0)
 depends=(gcc-libs)
 makedepends=(cmake python re2c emacs-nox)
+checkdepends=(gtest)
 
source=($pkgname-$pkgver.zip::https://github.com/ninja-build/ninja/archive/v$pkgver.zip)
 sha1sums=('53e759ea6ed7895d71ce9f60915b37b20327da55')
 sha256sums=('47411d1c95a91f416efc6f1bfb22477047c7a91951711af6123ab68ab11d6fcf')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ninja/-/commit/f982da8bf961bc785120fce258e2280188d7394f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ninja/-/commit/f982da8bf961bc785120fce258e2280188d7394f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ninja] Pushed new tag 1.12.0-2

2024-04-28 Thread Anatol Pomozov (@anatolik)


Anatol Pomozov pushed new tag 1.12.0-2 at Arch Linux / Packaging / Packages / 
ninja

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ninja/-/tree/1.12.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/selene][main] upgpkg: 0.27.1-1

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages / 
selene


Commits:
7168924c by Caleb Maclennan at 2024-04-28T23:13:52+03:00
upgpkg: 0.27.1-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = selene
pkgdesc = Blazing-fast modern Lua linter written in Rust
-   pkgver = 0.26.1
-   pkgrel = 2
+   pkgver = 0.27.1
+   pkgrel = 1
url = https://github.com/Kampfkarren/selene
arch = x86_64
license = MPL-2.0
@@ -13,7 +13,7 @@ pkgbase = selene
conflicts = selene-linter
replaces = selene-linter
options = !lto
-   source = git+https://github.com/Kampfkarren/selene.git#tag=0.26.1
-   b2sums = 
06ae554b3197c73e1ec2ec392c8ff673e488e506bb5cd089e55e174370b2ff79361524b9a6f391922c8849946cd2f96624f35d6115f80844e46a15e6110e81de
+   source = git+https://github.com/Kampfkarren/selene.git#tag=0.27.1
+   b2sums = 
b6773d6766145355c080d4807e31854b3b56a0d47ee43f68edf205842a39b5c00edacfe93f5ccf07aa27b471614975cbdea631e3f361e5e6ef5ed37ab040ef00
 
 pkgname = selene


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 # Maintainer: Caleb Maclennan 
 
 pkgname=selene
-pkgver=0.26.1
-pkgrel=2
+pkgver=0.27.1
+pkgrel=1
 pkgdesc='Blazing-fast modern Lua linter written in Rust'
 arch=('x86_64')
 url=https://github.com/Kampfkarren/selene
@@ -14,7 +14,7 @@ conflicts=("$pkgname-linter")
 replaces=("$pkgname-linter")
 options=('!lto')
 source=("git+$url.git#tag=$pkgver")
-b2sums=('06ae554b3197c73e1ec2ec392c8ff673e488e506bb5cd089e55e174370b2ff79361524b9a6f391922c8849946cd2f96624f35d6115f80844e46a15e6110e81de')
+b2sums=('b6773d6766145355c080d4807e31854b3b56a0d47ee43f68edf205842a39b5c00edacfe93f5ccf07aa27b471614975cbdea631e3f361e5e6ef5ed37ab040ef00')
 
 prepare() {
   cd $pkgname



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/selene/-/commit/7168924cb6e5b577ba06337ed8d729c05dfc325e

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/selene/-/commit/7168924cb6e5b577ba06337ed8d729c05dfc325e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/selene] Pushed new tag 0.27.1-1

2024-04-28 Thread Caleb Maclennan (@alerque)


Caleb Maclennan pushed new tag 0.27.1-1 at Arch Linux / Packaging / Packages / 
selene

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/selene/-/tree/0.27.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/klayout][main] Install missing files

2024-04-28 Thread Felix Yan (@felixonmars)


Felix Yan pushed to branch main at Arch Linux / Packaging / Packages / klayout


Commits:
a3d42799 by Antonio Rojas at 2024-04-28T19:47:40+00:00
Install missing files

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -26,12 +26,7 @@ package() {
   install -D -m 644 klayoutViewer.desktop 
"$pkgdir"/usr/share/applications/klayoutViewer.desktop
   cd klayout-$pkgver
   install -D -m 644 etc/logo.png 
"$pkgdir"/usr/share/icons/hicolor/32x32/apps/klayout.png
-  install -D -m 755 build-release/klayout "$pkgdir"/usr/bin/klayout
-  cd bin-release
-  for lib in `find . -type f | grep so`; do
-install -D -m 755 $lib "$pkgdir"/usr/lib/$lib
-  done
-  for lib in `find . -type l | grep so`; do
-cp -a $lib "$pkgdir"/usr/lib/$lib
-  done
+  install -D -m 755 bin-release/{klayout,strm*} -t "$pkgdir"/usr/bin/
+  cp -ar bin-release "$pkgdir"/usr/lib/
+  rm "$pkgdir"/usr/lib/{klayout,strm*}
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/klayout/-/commit/a3d42799041f2f85c863d1482c5f79ff1287ca04

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/klayout/-/commit/a3d42799041f2f85c863d1482c5f79ff1287ca04
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vtk][main] upgpkg: 9.3.0-14: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
vtk


Commits:
49358c57 by Jakub Klinkovský at 2024-04-28T21:43:59+02:00
upgpkg: 9.3.0-14: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = vtk
pkgdesc = Software system for 3D computer graphics, image processing, 
and visualization
pkgver = 9.3.0
-   pkgrel = 13
+   pkgrel = 14
url = https://www.vtk.org
arch = x86_64
license = BSD-3-Clause


=
PKGBUILD
=
@@ -8,7 +8,7 @@
 pkgname=vtk
 # May need bootstrapping on upgrades due to circular vtk <-> opencascade 
dependency
 pkgver=9.3.0
-pkgrel=13
+pkgrel=14
 pkgdesc="Software system for 3D computer graphics, image processing, and 
visualization"
 arch=(x86_64)
 url="https://www.vtk.org;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vtk/-/commit/49358c5732d07519a7a02aa48dd472b191463137

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vtk/-/commit/49358c5732d07519a7a02aa48dd472b191463137
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vtk] Pushed new tag 9.3.0-14

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 9.3.0-14 at Arch Linux / Packaging / Packages / 
vtk

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vtk/-/tree/9.3.0-14
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xorg-xconsole][main] upgpkg: 1.1.0-1; SPDX license

2024-04-28 Thread Andreas Radke (@andyrtr)


Andreas Radke pushed to branch main at Arch Linux / Packaging / Packages / 
xorg-xconsole


Commits:
0e8c00a6 by Andreas Radke at 2024-04-28T21:35:22+02:00
upgpkg: 1.1.0-1; SPDX license

- - - - -


2 changed files:

- + .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,20 @@
+pkgbase = xorg-xconsole
+   pkgdesc = Monitor system console messages with X
+   pkgver = 1.1.0
+   pkgrel = 1
+   url = https://xorg.freedesktop.org/
+   arch = x86_64
+   license = MIT-open-group
+   makedepends = xorg-util-macros
+   depends = libxaw
+   depends = libxmu
+   depends = libxt
+   depends = libx11
+   depends = glibc
+   source = 
https://xorg.freedesktop.org/archive/individual/app/xconsole-1.1.0.tar.xz
+   source = 
https://xorg.freedesktop.org/archive/individual/app/xconsole-1.1.0.tar.xz.sig
+   validpgpkeys = 4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E
+   sha512sums = 
1b5b1e1e15e3b988c159e924ac5c51734c4e37ed112815fc6bf6e36f80e840ccd904a4f0b0f27191e0dbf656d367a38873fd493a266887daa111e5266eebf37e
+   sha512sums = SKIP
+
+pkgname = xorg-xconsole


=
PKGBUILD
=
@@ -2,16 +2,16 @@
 # Contributor: Jan de Groot 
 
 pkgname=xorg-xconsole
-pkgver=1.0.8
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="Monitor system console messages with X"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxaw' 'libxmu' 'libxt' 'libx11')
+license=('MIT-open-group')
+depends=('libxaw' 'libxmu' 'libxt' 'libx11' 'glibc')
 makedepends=('xorg-util-macros')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xconsole-${pkgver}.tar.xz{,.sig})
-sha512sums=('93fd8527abed4faaf0f6a3804ab08dbcb926b0aaf67fd814c003b6b1102e2f643be5362a020c7028ae928925ffd423df6eb456d4ed48cf30a4c5f00a7ce648fa'
+sha512sums=('1b5b1e1e15e3b988c159e924ac5c51734c4e37ed112815fc6bf6e36f80e840ccd904a4f0b0f27191e0dbf656d367a38873fd493a266887daa111e5266eebf37e'
 'SKIP')
 #validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xorg-xconsole/-/commit/0e8c00a692fe5949d079d5746f2dc6d7c98bf780

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xorg-xconsole/-/commit/0e8c00a692fe5949d079d5746f2dc6d7c98bf780
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xorg-xconsole] Pushed new tag 1.1.0-1

2024-04-28 Thread Andreas Radke (@andyrtr)


Andreas Radke pushed new tag 1.1.0-1 at Arch Linux / Packaging / Packages / 
xorg-xconsole

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xorg-xconsole/-/tree/1.1.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xorg-xconsole][main] add nvchecker.toml

2024-04-28 Thread Andreas Radke (@andyrtr)


Andreas Radke pushed to branch main at Arch Linux / Packaging / Packages / 
xorg-xconsole


Commits:
98ec5ad1 by Andreas Radke at 2024-04-28T21:31:11+02:00
add nvchecker.toml

- - - - -


1 changed file:

- + .nvchecker.toml


Changes:

=
.nvchecker.toml
=
@@ -0,0 +1,11 @@
+[xorg-xconsole]
+source = "gitlab"
+gitlab = "xorg/app/xconsole"
+host = "gitlab.freedesktop.org"
+use_max_tag = true
+
+include_regex = ".*xconsole-.*"
+prefix = "xconsole-"
+#source = "regex"
+#regex = "xconsole-([\\d.]+)\\."
+#url = "https://gitlab.freedesktop.org/xorg/xserver/-/tags;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xorg-xconsole/-/commit/98ec5ad16c47adde0438863185eb0672e200bb74

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xorg-xconsole/-/commit/98ec5ad16c47adde0438863185eb0672e200bb74
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vivaldi][main] upgpkg: 6.7.3329.21-1

2024-04-28 Thread Ike Devolder (@idevolder)


Ike Devolder pushed to branch main at Arch Linux / Packaging / Packages / 
vivaldi


Commits:
a54611a2 by Ike Devolder at 2024-04-28T21:29:26+02:00
upgpkg: 6.7.3329.21-1

Add optdep on `org.freedesktop.secret`
Fixes #1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = vivaldi
pkgdesc = An advanced browser made with the power user in mind.
-   pkgver = 6.7.3329.17
+   pkgver = 6.7.3329.21
pkgrel = 1
url = https://vivaldi.com
arch = x86_64
@@ -14,15 +14,17 @@ pkgbase = vivaldi
depends = desktop-file-utils
depends = shared-mime-info
depends = hicolor-icon-theme
-   optdepends = vivaldi-ffmpeg-codecs: playback of proprietary video/audio
+   optdepends = org.freedesktop.secrets: better secret storage in 
gnome-keyring or kwallet
optdepends = libnotify: native notifications
+   optdepends = vivaldi-ffmpeg-codecs: playback of proprietary video/audio
optdepends = gtk3: gtk3 integration
+   optdepends = qt5-base: qt5 integration
optdepends = qt6-base: qt6 integration
options = !strip
options = !zipman
-   source = 
https://downloads.vivaldi.com/stable/vivaldi-stable-6.7.3329.17-1.x86_64.rpm
+   source = 
https://downloads.vivaldi.com/stable/vivaldi-stable-6.7.3329.21-1.x86_64.rpm
source = 0001-add-support-for-user-flags.patch
-   sha512sums = 
685d22a0947bcbdc907c5d0d6918ba641836c51325c4b16205c5c9edb040d2ef21ed86d83edb947a4584965e3dd33f8cbb1db4ec3292f60de354c07a6377ad6c
+   sha512sums = 
5b41453da6167771783b34b3dcd29b25aec258bf5846fbb33a609556b360d11ca493afcd59af25307375e073c69d2eea8265fa3a32cdb648f62ac1aa24495d6f
sha512sums = 
334db2056114fdbf07407b1cee24284f019df7a15acd711ed016bab1a1ab211abf3884ed848f3496486e7c78056108ccf1e88547e22b787bc4f548c6785f64d2
 
 pkgname = vivaldi


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 # Contributor: TZ86
 
 pkgname=vivaldi
-_rpmversion=6.7.3329.17-1
-pkgver=6.7.3329.17
+_rpmversion=6.7.3329.21-1
+pkgver=6.7.3329.21
 pkgrel=1
 pkgdesc='An advanced browser made with the power user in mind.'
 url="https://vivaldi.com;
@@ -13,14 +13,16 @@ arch=('x86_64')
 depends=('libcups' 'nss' 'alsa-lib' 'libxss' 'ttf-font' 'desktop-file-utils' 
'shared-mime-info' 'hicolor-icon-theme')
 makedepends=('w3m')
 optdepends=(
-'vivaldi-ffmpeg-codecs: playback of proprietary video/audio'
+'org.freedesktop.secrets: better secret storage in gnome-keyring or 
kwallet'
 'libnotify: native notifications'
+'vivaldi-ffmpeg-codecs: playback of proprietary video/audio'
 'gtk3: gtk3 integration'
+'qt5-base: qt5 integration'
 'qt6-base: qt6 integration'
 )
 
source=("https://downloads.vivaldi.com/stable/vivaldi-stable-${_rpmversion}.x86_64.rpm;
 '0001-add-support-for-user-flags.patch')
-sha512sums=('685d22a0947bcbdc907c5d0d6918ba641836c51325c4b16205c5c9edb040d2ef21ed86d83edb947a4584965e3dd33f8cbb1db4ec3292f60de354c07a6377ad6c'
+sha512sums=('5b41453da6167771783b34b3dcd29b25aec258bf5846fbb33a609556b360d11ca493afcd59af25307375e073c69d2eea8265fa3a32cdb648f62ac1aa24495d6f'
 
'334db2056114fdbf07407b1cee24284f019df7a15acd711ed016bab1a1ab211abf3884ed848f3496486e7c78056108ccf1e88547e22b787bc4f548c6785f64d2')
 
 package() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vivaldi/-/commit/a54611a2f17fa72faa85f26f96e89e2c26625fcb

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vivaldi/-/commit/a54611a2f17fa72faa85f26f96e89e2c26625fcb
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/vivaldi] Pushed new tag 6.7.3329.21-1

2024-04-28 Thread Ike Devolder (@idevolder)


Ike Devolder pushed new tag 6.7.3329.21-1 at Arch Linux / Packaging / Packages 
/ vivaldi

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/vivaldi/-/tree/6.7.3329.21-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fwupd][main] enable amdgpu plugin

2024-04-28 Thread Frederik Schwan (@freswa)


Frederik Schwan pushed to branch main at Arch Linux / Packaging / Packages / 
fwupd


Commits:
375a1dbc by Frederik Schwan at 2024-04-28T21:18:29+02:00
enable amdgpu plugin

fixes #6

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -51,6 +51,7 @@ makedepends=(
   gi-docgen
   gnu-efi-libs
   gobject-introspection
+  libdrm
   meson
   noto-fonts
   noto-fonts-cjk
@@ -91,8 +92,6 @@ build() {
 -D docs=enabled
 -D efi_binary=false
 -D launchd=disabled
--D plugin_amdgpu=disabled
--D plugin_intel_spi=true
 -D supported_build=enabled
 -D systemd_unit_user=fwupd
   )



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fwupd/-/commit/375a1dbc93ff126987a0de6cddc6c04d46aa2fe5

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fwupd/-/commit/375a1dbc93ff126987a0de6cddc6c04d46aa2fe5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libarchive][main] upgpkg: 3.7.4-1: new upstream release, update dependencies

2024-04-28 Thread Christian Hesse (@eworm)


Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / 
libarchive


Commits:
ec3393f0 by Christian Hesse at 2024-04-28T21:15:28+02:00
upgpkg: 3.7.4-1: new upstream release, update dependencies

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,28 +1,31 @@
 pkgbase = libarchive
pkgdesc = Multi-format archive and compression library
-   pkgver = 3.7.3
-   pkgrel = 3
+   pkgver = 3.7.4
+   pkgrel = 1
url = https://libarchive.org/
arch = x86_64
license = BSD
depends = acl
depends = libacl.so
depends = bzip2
-   depends = expat
+   depends = libbz2.so
+   depends = libxml2
+   depends = libxml2.so
depends = lz4
depends = openssl
depends = libcrypto.so
depends = xz
+   depends = liblzma.so
depends = zlib
+   depends = libz.so
depends = zstd
+   depends = libzstd.so
provides = libarchive.so
-   source = 
https://github.com/libarchive/libarchive/releases/download/v3.7.3/libarchive-3.7.3.tar.xz
-   source = 
https://github.com/libarchive/libarchive/releases/download/v3.7.3/libarchive-3.7.3.tar.xz.asc
-   source = 
libarchive-fix-OOB-in-rar-e8-filter-2135.patch::https://github.com/libarchive/libarchive/commit/eb7939b24a681a04648a59cdebd386b1e9dc9237.patch
+   source = 
https://github.com/libarchive/libarchive/releases/download/v3.7.4/libarchive-3.7.4.tar.xz
+   source = 
https://github.com/libarchive/libarchive/releases/download/v3.7.4/libarchive-3.7.4.tar.xz.asc
validpgpkeys = A5A45B12AD92D964B89EEE2DEC560C81CEC2276E
validpgpkeys = DB2C7CF1B4C265FAEF56E3FC5848A18B8F14184B
-   sha256sums = 
63e7a7174638fc7d6b79b4c8b0ad954e0f4f45abe7239c1ecb200232aa9a43d2
+   sha256sums = 
f887755c434a736a609cbd28d87ddbfbe9d6a3bb5b703c22c02f6af80a802735
sha256sums = SKIP
-   sha256sums = 
78b62ba75f4f6254ae6a80528ecfc429eb2d9ce01924c4ef5ee7a91fd284bea8
 
 pkgname = libarchive


=
PKGBUILD
=
@@ -2,34 +2,32 @@
 # Maintainer: Dan McGee 
 
 pkgname=libarchive
-pkgver=3.7.3
-pkgrel=3
+pkgver=3.7.4
+pkgrel=1
 pkgdesc='Multi-format archive and compression library'
 arch=('x86_64')
 url='https://libarchive.org/'
 license=('BSD')
-depends=('acl' 'libacl.so' 'bzip2' 'expat' 'lz4' 'openssl' 'libcrypto.so' 'xz'
- 'zlib' 'zstd')
+depends=('acl' 'libacl.so'
+ 'bzip2' 'libbz2.so'
+ 'libxml2' 'libxml2.so'
+ 'lz4'
+ 'openssl' 'libcrypto.so'
+ 'xz' 'liblzma.so'
+ 'zlib' 'libz.so'
+ 'zstd' 'libzstd.so')
 provides=('libarchive.so')
 validpgpkeys=('A5A45B12AD92D964B89EEE2DEC560C81CEC2276E'  # Martin Matuska 

   'DB2C7CF1B4C265FAEF56E3FC5848A18B8F14184B') # Martin Matuska 

-source=("https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
-
'libarchive-fix-OOB-in-rar-e8-filter-2135.patch::https://github.com/libarchive/libarchive/commit/eb7939b24a681a04648a59cdebd386b1e9dc9237.patch')
-sha256sums=('63e7a7174638fc7d6b79b4c8b0ad954e0f4f45abe7239c1ecb200232aa9a43d2'
-'SKIP'
-'78b62ba75f4f6254ae6a80528ecfc429eb2d9ce01924c4ef5ee7a91fd284bea8')
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  patch -Np1 < ../libarchive-fix-OOB-in-rar-e8-filter-2135.patch
-}
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=('f887755c434a736a609cbd28d87ddbfbe9d6a3bb5b703c22c02f6af80a802735'
+'SKIP')
 
 build() {
   cd "${pkgname}-${pkgver}"
 
   ./configure \
   --prefix=/usr \
-  --without-xml2 \
   --without-nettle \
   --disable-static
   make



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libarchive/-/commit/ec3393f0601402ecbb473d2d1c4f758be0113140

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libarchive/-/commit/ec3393f0601402ecbb473d2d1c4f758be0113140
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libarchive] Pushed new tag 3.7.4-1

2024-04-28 Thread Christian Hesse (@eworm)


Christian Hesse pushed new tag 3.7.4-1 at Arch Linux / Packaging / Packages / 
libarchive

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libarchive/-/tree/3.7.4-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/paraview][main] upgpkg: 5.12.0-7: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
paraview


Commits:
0c8b3add by Jakub Klinkovský at 2024-04-28T21:14:51+02:00
upgpkg: 5.12.0-7: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = paraview
pkgdesc = Parallel Visualization application using VTK (openmpi version)
pkgver = 5.12.0
-   pkgrel = 6
+   pkgrel = 7
url = https://www.paraview.org
arch = x86_64
license = BSD


=
PKGBUILD
=
@@ -8,7 +8,7 @@ _mpi=openmpi
 pkgname=${_pkg}
 #-${_mpi}
 pkgver=5.12.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
 arch=(x86_64)
 url="https://www.paraview.org;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/paraview/-/commit/0c8b3addea65df3f624587d77f5ed24d10e0301f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/paraview/-/commit/0c8b3addea65df3f624587d77f5ed24d10e0301f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/paraview] Pushed new tag 5.12.0-7

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 5.12.0-7 at Arch Linux / Packaging / Packages / 
paraview

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/paraview/-/tree/5.12.0-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ginkgo-hpc][main] upgpkg: 1.7.0-5: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
ginkgo-hpc


Commits:
520c8c27 by Jakub Klinkovský at 2024-04-28T21:06:29+02:00
upgpkg: 1.7.0-5: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ginkgo-hpc
pkgdesc = Numerical linear algebra software package
pkgver = 1.7.0
-   pkgrel = 4
+   pkgrel = 5
url = https://ginkgo-project.github.io/
arch = x86_64
license = BSD-3-Clause


=
PKGBUILD
=
@@ -4,7 +4,7 @@ _pkgname=ginkgo
 pkgbase=ginkgo-hpc
 pkgname=(ginkgo-hpc ginkgo-hpc-docs ginkgo-hpc-cuda ginkgo-hpc-hip)
 pkgver=1.7.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Numerical linear algebra software package"
 arch=(x86_64)
 url=https://ginkgo-project.github.io/



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ginkgo-hpc/-/commit/520c8c27acaf62af70123bfa5dd8cde4d0f37b62

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ginkgo-hpc/-/commit/520c8c27acaf62af70123bfa5dd8cde4d0f37b62
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ginkgo-hpc] Pushed new tag 1.7.0-5

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.7.0-5 at Arch Linux / Packaging / Packages / 
ginkgo-hpc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ginkgo-hpc/-/tree/1.7.0-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lxc] Pushed new tag 1-6.0.0-3

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 1-6.0.0-3 at Arch Linux / Packaging / Packages / 
lxc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/tree/1-6.0.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lxc][main] upgpkg: 1:6.0.0-3

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / lxc


Commits:
6beb69a8 by Sergej Pupykin at 2024-04-28T21:48:22+03:00
upgpkg: 1:6.0.0-3
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/issues/1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = lxc
pkgdesc = Linux Containers
pkgver = 6.0.0
-   pkgrel = 2
+   pkgrel = 3
epoch = 1
url = https://linuxcontainers.org
arch = x86_64


=
PKGBUILD
=
@@ -8,7 +8,7 @@
 pkgname=lxc
 epoch=1
 pkgver=6.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Linux Containers"
 arch=('x86_64')
 url="https://linuxcontainers.org;
@@ -41,7 +41,7 @@ prepare() {
 
 build() {
   cd "$pkgname-${pkgver/_/-}"
-  arch-meson build
+  arch-meson build -Dtools=false -Dtools-multicall=true
   meson compile -C build -v
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/commit/6beb69a8bcb24b231d7fee11b810617c76c38706

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lxc/-/commit/6beb69a8bcb24b231d7fee11b810617c76c38706
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/rocalution][main] upgpkg: 6.0.2-2: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
rocalution


Commits:
aa20edd1 by Jakub Klinkovský at 2024-04-28T20:31:23+02:00
upgpkg: 6.0.2-2: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = rocalution
pkgdesc = Next generation library for iterative sparse solvers for ROCm 
platform
pkgver = 6.0.2
-   pkgrel = 1
+   pkgrel = 2
url = https://rocm.docs.amd.com/projects/rocALUTION/en/latest/index.html
arch = x86_64
license = MIT


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Markus Näther 
 pkgname=rocalution
 pkgver=6.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Next generation library for iterative sparse solvers for ROCm 
platform'
 arch=('x86_64')
 url='https://rocm.docs.amd.com/projects/rocALUTION/en/latest/index.html'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rocalution/-/commit/aa20edd104eebae6a07c3e4eb026696ab6da26ff

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rocalution/-/commit/aa20edd104eebae6a07c3e4eb026696ab6da26ff
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/rocalution] Pushed new tag 6.0.2-2

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 6.0.2-2 at Arch Linux / Packaging / Packages / 
rocalution

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/rocalution/-/tree/6.0.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hdf5-openmpi] Pushed new tag 1.14.3-3

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.14.3-3 at Arch Linux / Packaging / Packages / 
hdf5-openmpi

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hdf5-openmpi/-/tree/1.14.3-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hdf5-openmpi][main] upgpkg: 1.14.3-3: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
hdf5-openmpi


Commits:
dbaf958a by Jakub Klinkovský at 2024-04-28T20:28:27+02:00
upgpkg: 1.14.3-3: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = hdf5-openmpi
pkgdesc = General purpose library and file format for storing 
scientific data (openmpi version)
pkgver = 1.14.3
-   pkgrel = 2
+   pkgrel = 3
url = https://www.hdfgroup.org/hdf5
arch = x86_64
license = custom


=
PKGBUILD
=
@@ -10,7 +10,7 @@ _pkgname=hdf5
 _mpi=openmpi
 pkgname=${_pkgname}-${_mpi}
 pkgver=1.14.3
-pkgrel=2
+pkgrel=3
 pkgdesc="General purpose library and file format for storing scientific data 
(${_mpi} version)"
 arch=(x86_64)
 url="https://www.hdfgroup.org/hdf5;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hdf5-openmpi/-/commit/dbaf958a5a6fd5db65f747e27e46e87d92168576

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hdf5-openmpi/-/commit/dbaf958a5a6fd5db65f747e27e46e87d92168576
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-greeter][main] upgpkg: 3.0.3-8: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
ukui-greeter


Commits:
1955d07f by Jakub Klinkovský at 2024-04-28T20:26:01+02:00
upgpkg: 3.0.3-8: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ukui-greeter
pkgdesc = Lightdm greeter for UKUI
pkgver = 3.0.3
-   pkgrel = 7
+   pkgrel = 8
url = https://github.com/ukui/ukui-greeter
arch = x86_64
groups = ukui


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=ukui-greeter
 pkgver=3.0.3
-pkgrel=7
+pkgrel=8
 pkgdesc="Lightdm greeter for UKUI"
 arch=('x86_64')
 license=('GPL')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-greeter/-/commit/1955d07fe9f3f35498c7b7ceeadcdbe6ce02353f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-greeter/-/commit/1955d07fe9f3f35498c7b7ceeadcdbe6ce02353f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ukui-greeter] Pushed new tag 3.0.3-8

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.0.3-8 at Arch Linux / Packaging / Packages / 
ukui-greeter

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ukui-greeter/-/tree/3.0.3-8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/adios2][main] upgpkg: 2.10.0-2: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
adios2


Commits:
028b0f2b by Jakub Klinkovský at 2024-04-28T20:24:14+02:00
upgpkg: 2.10.0-2: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = adios2
pkgdesc = The Adaptable Input/Output System version 2
pkgver = 2.10.0
-   pkgrel = 1
+   pkgrel = 2
url = https://adios2.readthedocs.io/en/latest/
arch = x86_64
license = Apache


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=adios2
 pkgver=2.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The Adaptable Input/Output System version 2"
 arch=(x86_64)
 url="https://adios2.readthedocs.io/en/latest/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/adios2/-/commit/028b0f2bdf214f0d0f50fab99a838c0531fa9591

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/adios2/-/commit/028b0f2bdf214f0d0f50fab99a838c0531fa9591
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/adios2] Pushed new tag 2.10.0-2

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 2.10.0-2 at Arch Linux / Packaging / Packages / 
adios2

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/adios2/-/tree/2.10.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/sundials][main] upgpkg: 7.0.0-2: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
sundials


Commits:
6e07511c by Jakub Klinkovský at 2024-04-28T20:21:40+02:00
upgpkg: 7.0.0-2: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = sundials
pkgdesc = Suite of nonlinear differential/algebraic equation solvers
pkgver = 7.0.0
-   pkgrel = 1
+   pkgrel = 2
url = https://computing.llnl.gov/projects/sundials
arch = x86_64
license = BSD


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=sundials
 pkgver=7.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Suite of nonlinear differential/algebraic equation solvers'
 arch=(x86_64)
 url='https://computing.llnl.gov/projects/sundials'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/sundials/-/commit/6e07511c8d3dd79e7a497d323b6ab45cc50ddc15

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/sundials/-/commit/6e07511c8d3dd79e7a497d323b6ab45cc50ddc15
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/sundials] Pushed new tag 7.0.0-2

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 7.0.0-2 at Arch Linux / Packaging / Packages / 
sundials

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/sundials/-/tree/7.0.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/arpack] Pushed new tag 3.9.1-3

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.9.1-3 at Arch Linux / Packaging / Packages / 
arpack

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/arpack/-/tree/3.9.1-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/arpack][main] upgpkg: 3.9.1-3: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
arpack


Commits:
4bec3144 by Jakub Klinkovský at 2024-04-28T20:18:13+02:00
upgpkg: 3.9.1-3: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = arpack
pkgdesc = Fortran77 subroutines for solving large scale eigenvalue 
problems
pkgver = 3.9.1
-   pkgrel = 2
+   pkgrel = 3
url = https://github.com/opencollab/arpack-ng
arch = x86_64
license = BSD


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 
 pkgname=arpack
 pkgver=3.9.1
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 pkgdesc='Fortran77 subroutines for solving large scale eigenvalue problems'
 url='https://github.com/opencollab/arpack-ng'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/arpack/-/commit/4bec3144043990f5687e0e088ebf4d05cfbbe8bc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/arpack/-/commit/4bec3144043990f5687e0e088ebf4d05cfbbe8bc
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ospray][main] upgpkg: 3.1.0-2: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
ospray


Commits:
339fdcae by Jakub Klinkovský at 2024-04-28T20:16:28+02:00
upgpkg: 3.1.0-2: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ospray
pkgdesc = Ray Tracing Based Rendering Engine for High-Fidelity 
Visualization
pkgver = 3.1.0
-   pkgrel = 1
+   pkgrel = 2
url = https://www.ospray.org/
arch = x86_64
license = Apache


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=ospray
 pkgver=3.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Ray Tracing Based Rendering Engine for High-Fidelity Visualization"
 arch=(x86_64)
 url="https://www.ospray.org/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ospray/-/commit/339fdcaea9a29f42fbd6894d2b1fc4c12a4884f0

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ospray/-/commit/339fdcaea9a29f42fbd6894d2b1fc4c12a4884f0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ospray] Pushed new tag 3.1.0-2

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.1.0-2 at Arch Linux / Packaging / Packages / 
ospray

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ospray/-/tree/3.1.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-mpi4py][main] upgpkg: 3.1.5-5: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
python-mpi4py


Commits:
0ffd126a by Jakub Klinkovský at 2024-04-28T20:15:41+02:00
upgpkg: 3.1.5-5: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-mpi4py
pkgdesc = Python bindings for the Message Passing Interface (MPI) 
standard
pkgver = 3.1.5
-   pkgrel = 4
+   pkgrel = 5
url = https://github.com/mpi4py/mpi4py
arch = x86_64
license = BSD-2-Clause


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 _pkg=mpi4py
 pkgname=python-${_pkg}
 pkgver=3.1.5
-pkgrel=4
+pkgrel=5
 pkgdesc="Python bindings for the Message Passing Interface (MPI) standard"
 arch=(x86_64)
 url="https://github.com/mpi4py/mpi4py;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mpi4py/-/commit/0ffd126a26e9dddc30cf07b1dfa03d5974e6603c

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mpi4py/-/commit/0ffd126a26e9dddc30cf07b1dfa03d5974e6603c
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-mpi4py] Pushed new tag 3.1.5-5

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.1.5-5 at Arch Linux / Packaging / Packages / 
python-mpi4py

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mpi4py/-/tree/3.1.5-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fftw][main] upgpkg: 3.3.10-7: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
fftw


Commits:
94e3aab4 by Jakub Klinkovský at 2024-04-28T20:11:09+02:00
upgpkg: 3.3.10-7: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = fftw
pkgdesc = A library for computing the discrete Fourier transform (DFT)
pkgver = 3.3.10
-   pkgrel = 6
+   pkgrel = 7
url = http://www.fftw.org/
arch = x86_64
license = GPL-2.0-or-later


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgbase=fftw
 pkgname=(fftw fftw-openmpi)
 pkgver=3.3.10
-pkgrel=6
+pkgrel=7
 pkgdesc="A library for computing the discrete Fourier transform (DFT)"
 arch=(x86_64)
 url="http://www.fftw.org/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fftw/-/commit/94e3aab45a2fa6839af5b4ca658692de2c214a14

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fftw/-/commit/94e3aab45a2fa6839af5b4ca658692de2c214a14
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fftw] Pushed new tag 3.3.10-7

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.3.10-7 at Arch Linux / Packaging / Packages / 
fftw

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fftw/-/tree/3.3.10-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dmtcp] Pushed new tag 2.6.1rc1-4

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 2.6.1rc1-4 at Arch Linux / Packaging / Packages 
/ dmtcp

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dmtcp/-/tree/2.6.1rc1-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/dmtcp][main] upgpkg: 2.6.1rc1-4: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
dmtcp


Commits:
d6e7ce27 by Jakub Klinkovský at 2024-04-28T20:10:09+02:00
upgpkg: 2.6.1rc1-4: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = dmtcp
pkgdesc = Distributed MultiThreaded CheckPointing
pkgver = 2.6.1rc1
-   pkgrel = 3
+   pkgrel = 4
url = http://dmtcp.sourceforge.net
arch = x86_64
license = LGPL


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=dmtcp
 pkgver=2.6.1rc1
-pkgrel=3
+pkgrel=4
 pkgdesc='Distributed MultiThreaded CheckPointing'
 url='http://dmtcp.sourceforge.net'
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dmtcp/-/commit/d6e7ce271637f4f5ecaec6718f540d5b8aa0a85e

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/dmtcp/-/commit/d6e7ce271637f4f5ecaec6718f540d5b8aa0a85e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/pnetcdf-openmpi] Pushed new tag 1.12.3-5

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.12.3-5 at Arch Linux / Packaging / Packages / 
pnetcdf-openmpi

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/pnetcdf-openmpi/-/tree/1.12.3-5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/pnetcdf-openmpi][main] upgpkg: 1.12.3-5: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
pnetcdf-openmpi


Commits:
1af0ebbf by Jakub Klinkovský at 2024-04-28T20:05:21+02:00
upgpkg: 1.12.3-5: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = pnetcdf-openmpi
pkgdesc = Parallel I/O Library for NetCDF File Access (openmpi version)
pkgver = 1.12.3
-   pkgrel = 4
+   pkgrel = 5
url = https://parallel-netcdf.github.io/
arch = x86_64
license = custom


=
PKGBUILD
=
@@ -4,7 +4,7 @@ _pkg=pnetcdf
 _mpi=openmpi
 pkgname=${_pkg}-${_mpi}
 pkgver=1.12.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Parallel I/O Library for NetCDF File Access (${_mpi} version)"
 arch=(x86_64)
 url="https://parallel-netcdf.github.io/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/pnetcdf-openmpi/-/commit/1af0ebbfa13b5a1cad2191f8920d83eb08a12e44

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/pnetcdf-openmpi/-/commit/1af0ebbfa13b5a1cad2191f8920d83eb08a12e44
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/med-openmpi][main] upgpkg: 4.1.1-8: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
med-openmpi


Commits:
2e9b9f37 by Jakub Klinkovský at 2024-04-28T19:59:39+02:00
upgpkg: 4.1.1-8: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = med-openmpi
pkgdesc = Library for reading and writing MED files
pkgver = 4.1.1
-   pkgrel = 7
+   pkgrel = 8
url = https://github.com/chennes/med
arch = x86_64
license = LGPL


=
PKGBUILD
=
@@ -12,7 +12,7 @@
 
 pkgname=med-openmpi
 pkgver=4.1.1
-pkgrel=7
+pkgrel=8
 pkgdesc='Library for reading and writing MED files'
 url='https://github.com/chennes/med'
 license=(LGPL)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/med-openmpi/-/commit/2e9b9f37e0df2a5f268493060eaf3d0860ad3e9b

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/med-openmpi/-/commit/2e9b9f37e0df2a5f268493060eaf3d0860ad3e9b
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/med-openmpi] Pushed new tag 4.1.1-8

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 4.1.1-8 at Arch Linux / Packaging / Packages / 
med-openmpi

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/med-openmpi/-/tree/4.1.1-8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xdebug] Pushed new tag 3.3.2-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 3.3.2-1 at Arch Linux / Packaging / Packages / 
xdebug

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xdebug/-/tree/3.3.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/xdebug][main] upgpkg: 3.3.2-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
xdebug


Commits:
ee14cf48 by Sergej Pupykin at 2024-04-28T20:57:34+03:00
upgpkg: 3.3.2-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,15 +1,15 @@
 pkgbase = xdebug
pkgdesc = PHP debugging extension
-   pkgver = 3.3.1
-   pkgrel = 2
+   pkgver = 3.3.2
+   pkgrel = 1
url = https://www.xdebug.org
arch = x86_64
license = GPL
depends = php
backup = etc/php/conf.d/xdebug.ini
-   source = https://xdebug.org/files/xdebug-3.3.1.tgz
+   source = https://xdebug.org/files/xdebug-3.3.2.tgz
source = xdebug.ini
-   sha256sums = 
4eb4ee270bbcc5f14195c38f6ee58580e007cf4886ce32e11430318ab5bc2315
+   sha256sums = 
15545b8311bedb5e7df08fd90d6653d9bf33629791e8119e70350475df932c55
sha256sums = 
2d0227f47d844cec9f3513a8d91c14f4f34d7c634e86c2f79eab4e3017cc95a5
 
 pkgname = xdebug


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=3.3.1
-pkgrel=2
+pkgver=3.3.2
+pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('x86_64')
 url="https://www.xdebug.org;
@@ -14,7 +14,7 @@ depends=('php')
 backup=('etc/php/conf.d/xdebug.ini')
 source=("https://xdebug.org/files/$pkgname-${pkgver}.tgz;
  'xdebug.ini')
-sha256sums=('4eb4ee270bbcc5f14195c38f6ee58580e007cf4886ce32e11430318ab5bc2315'
+sha256sums=('15545b8311bedb5e7df08fd90d6653d9bf33629791e8119e70350475df932c55'
 '2d0227f47d844cec9f3513a8d91c14f4f34d7c634e86c2f79eab4e3017cc95a5')
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xdebug/-/commit/ee14cf4884774e35b5976d8d08c0c6dee80e6198

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/xdebug/-/commit/ee14cf4884774e35b5976d8d08c0c6dee80e6198
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/slurm-llnl][main] upgpkg: 23.11.3.1-4: openpmix 5.0.2 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
slurm-llnl


Commits:
ca4c75d5 by Jakub Klinkovský at 2024-04-28T19:56:51+02:00
upgpkg: 23.11.3.1-4: openpmix 5.0.2 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = slurm-llnl
pkgdesc = Simple Linux Utility for Resource Management
pkgver = 23.11.3.1
-   pkgrel = 3
+   pkgrel = 4
url = https://www.schedmd.com
arch = x86_64
license = GPL-2.0-or-later


=
PKGBUILD
=
@@ -9,7 +9,7 @@ pkgver=23.11.3.1
 # Hyphens (-) are prohibited however they are used by the package author
 # therefore it is necessary to invoke ${pkgver} like ${pkgver//./-}
 # this will substitute any full stops (.) with hyphens
-pkgrel=3
+pkgrel=4
 pkgdesc="Simple Linux Utility for Resource Management"
 arch=('x86_64')
 url="https://www.schedmd.com;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/slurm-llnl/-/commit/ca4c75d5e4c595e0fb83abf8e100def0712d38b6

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/slurm-llnl/-/commit/ca4c75d5e4c595e0fb83abf8e100def0712d38b6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/slurm-llnl] Pushed new tag 23.11.3.1-4

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 23.11.3.1-4 at Arch Linux / Packaging / 
Packages / slurm-llnl

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/slurm-llnl/-/tree/23.11.3.1-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/unrealircd][main] upgpkg: 6.1.5-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
unrealircd


Commits:
fcc9d1c3 by Sergej Pupykin at 2024-04-28T20:56:09+03:00
upgpkg: 6.1.5-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = unrealircd
pkgdesc = Open Source IRC Server
-   pkgver = 6.1.4
+   pkgver = 6.1.5
pkgrel = 1
url = https://www.unrealircd.org
install = unrealircd.install
@@ -17,15 +17,15 @@ pkgbase = unrealircd
provides = ircd
conflicts = ircd
backup = etc/unrealircd/unrealircd.conf
-   source = https://www.unrealircd.org/unrealircd4/unrealircd-6.1.4.tar.gz
-   source = 
https://www.unrealircd.org/unrealircd4/unrealircd-6.1.4.tar.gz.asc
+   source = https://www.unrealircd.org/unrealircd4/unrealircd-6.1.5.tar.gz
+   source = 
https://www.unrealircd.org/unrealircd4/unrealircd-6.1.5.tar.gz.asc
source = unrealircd.service
source = unrealircd.tmpfiles.d
source = unrealircd.sysusers.d
source = install.pl
source = source-date-epoch.patch
validpgpkeys = 1D2D2B03A0B68ED11D68A24BA7A21B0A108FF4A9
-   sha256sums = 
628892362345bfe27fc40e4c0c775d879c2200f134b8f401b4ca633005928809
+   sha256sums = 
38baea9335395b12fc63673226f8b19203d25b6284de8894c3993d5c9ecf6ee8
sha256sums = SKIP
sha256sums = 
5bb6016c379e6f040d8c625e3339c096ff66c4450aa024ca5b13ad3dec47c38e
sha256sums = 
91b5e1d623b51ffd4734d73e35cead09be596460c41b9440406f92c9e2b4b9b1


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Zerial 
 
 pkgname=unrealircd
-pkgver=6.1.4
+pkgver=6.1.5
 pkgrel=1
 pkgdesc="Open Source IRC Server"
 arch=('x86_64')
@@ -20,7 +20,7 @@ 
source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz{,.asc}
unrealircd.sysusers.d
install.pl
source-date-epoch.patch)
-sha256sums=('628892362345bfe27fc40e4c0c775d879c2200f134b8f401b4ca633005928809'
+sha256sums=('38baea9335395b12fc63673226f8b19203d25b6284de8894c3993d5c9ecf6ee8'
 'SKIP'
 '5bb6016c379e6f040d8c625e3339c096ff66c4450aa024ca5b13ad3dec47c38e'
 '91b5e1d623b51ffd4734d73e35cead09be596460c41b9440406f92c9e2b4b9b1'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/unrealircd/-/commit/fcc9d1c302b62131d805bbc445232fbaa37d12d7

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/unrealircd/-/commit/fcc9d1c302b62131d805bbc445232fbaa37d12d7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/unrealircd] Pushed new tag 6.1.5-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 6.1.5-1 at Arch Linux / Packaging / Packages / 
unrealircd

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/unrealircd/-/tree/6.1.5-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/recoll][main] upgpkg: 1.37.5-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
recoll


Commits:
d43e5360 by Sergej Pupykin at 2024-04-28T20:54:27+03:00
upgpkg: 1.37.5-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,8 +1,8 @@
 pkgbase = recoll
pkgdesc = Full text search tool based on Xapian backend
-   pkgver = 1.37.4
-   pkgrel = 4
-   url = https://www.lesbonscomptes.com/recoll/
+   pkgver = 1.37.5
+   pkgrel = 1
+   url = https://www.recoll.org
arch = x86_64
license = GPL
makedepends = python
@@ -29,7 +29,7 @@ pkgbase = recoll
optdepends = python-lxml: indexing spreadsheets
optdepends = python-pychm: CHM filter
optdepends = aspell-en: English stemming support
-   source = https://www.lesbonscomptes.com/recoll/recoll-1.37.4.tar.gz
-   sha512sums = 
9e5af5d00191658f23e6a5916718014827f12f4553d9429fe385c0bd1c72f2f49ae97e7d7b8121cb174b299ffe482aa547e4a3aabf2da92e9773bf9eb0f57814
+   source = https://www.recoll.org/recoll-1.37.5.tar.gz
+   sha512sums = 
594a81de809a2f2f08986ef1220ea2d7df8292923f55cf41c5813eb50be9ca63aa9f77c38bd27466486e72b030f2df28a093bca32dae1682d514acbb11a76382
 
 pkgname = recoll


=
PKGBUILD
=
@@ -5,8 +5,8 @@
 # Contributor: Robert Emil Berge 
 
 pkgname=recoll
-pkgver=1.37.4
-pkgrel=4
+pkgver=1.37.5
+pkgrel=1
 pkgdesc="Full text search tool based on Xapian backend"
 arch=('x86_64')
 url="https://www.recoll.org;
@@ -34,7 +34,7 @@ optdepends=('libxslt: for XML based formats (fb2,etc)'
 #  'krunner5: KDE plugins'
'aspell-en: English stemming support')
 source=("https://www.recoll.org/$pkgname-${pkgver/_/}.tar.gz;)
-sha512sums=('9e5af5d00191658f23e6a5916718014827f12f4553d9429fe385c0bd1c72f2f49ae97e7d7b8121cb174b299ffe482aa547e4a3aabf2da92e9773bf9eb0f57814')
+sha512sums=('594a81de809a2f2f08986ef1220ea2d7df8292923f55cf41c5813eb50be9ca63aa9f77c38bd27466486e72b030f2df28a093bca32dae1682d514acbb11a76382')
 
 prepare() {
   cd "$srcdir/$pkgname-${pkgver/_/}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/recoll/-/commit/d43e5360a8e7e1010f506179aa8e6bab0b75e710

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/recoll/-/commit/d43e5360a8e7e1010f506179aa8e6bab0b75e710
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/recoll] Pushed new tag 1.37.5-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 1.37.5-1 at Arch Linux / Packaging / Packages / 
recoll

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/recoll/-/tree/1.37.5-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/perl-datetime-locale][main] upgpkg: 1.42-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
perl-datetime-locale


Commits:
f876af03 by Sergej Pupykin at 2024-04-28T20:51:35+03:00
upgpkg: 1.42-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = perl-datetime-locale
pkgdesc = Localization support for DateTime.pm
-   pkgver = 1.41
+   pkgver = 1.42
pkgrel = 1
url = https://search.cpan.org/dist/DateTime-Locale
arch = any
@@ -11,7 +11,7 @@ pkgbase = perl-datetime-locale
depends = perl-file-sharedir
depends = perl-file-sharedir-install
options = !emptydirs
-   source = 
https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-1.41.tar.gz
-   sha256sums = 
d928902b13262c998ac06c0a7f9911cc869014a0db2e72d2138fa5ab3c10dac2
+   source = 
https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-1.42.tar.gz
+   sha256sums = 
7d8a138fa32faf24af30a1dbdee4dd11988ddb6a129138004d220b6cc4053cb0
 
 pkgname = perl-datetime-locale


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-datetime-locale
-pkgver=1.41
+pkgver=1.42
 pkgrel=1
 pkgdesc="Localization support for DateTime.pm "
 arch=(any)
@@ -12,7 +12,7 @@ depends=('perl-params-validate' 'perl-list-moreutils'
 'perl-file-sharedir' 'perl-file-sharedir-install')
 options=('!emptydirs')
 
source=(https://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-$pkgver.tar.gz)
-sha256sums=('d928902b13262c998ac06c0a7f9911cc869014a0db2e72d2138fa5ab3c10dac2')
+sha256sums=('7d8a138fa32faf24af30a1dbdee4dd11988ddb6a129138004d220b6cc4053cb0')
 
 build() {
   cd  "$srcdir"/DateTime-Locale-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/perl-datetime-locale/-/commit/f876af03478941d7e500b765e2081c5225349539

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/perl-datetime-locale/-/commit/f876af03478941d7e500b765e2081c5225349539
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/perl-datetime-locale] Pushed new tag 1.42-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 1.42-1 at Arch Linux / Packaging / Packages / 
perl-datetime-locale

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/perl-datetime-locale/-/tree/1.42-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/john][main] upgpkg: 1.9.0.jumbo1-11: openmpi 5.0.3 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
john


Commits:
66e5e2c2 by Jakub Klinkovský at 2024-04-28T19:47:20+02:00
upgpkg: 1.9.0.jumbo1-11: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = john
pkgdesc = John the Ripper password cracker
pkgver = 1.9.0.jumbo1
-   pkgrel = 10
+   pkgrel = 11
url = https://www.openwall.com/john
arch = x86_64
license = GPL2


=
PKGBUILD
=
@@ -10,7 +10,7 @@ pkgname=john
 _jumbover=1
 _johnver=1.9.0
 pkgver=${_johnver}.jumbo${_jumbover}
-pkgrel=10
+pkgrel=11
 pkgdesc='John the Ripper password cracker'
 url='https://www.openwall.com/john'
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/john/-/commit/66e5e2c28aaaed440029c73190802cd26e7440ad

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/john/-/commit/66e5e2c28aaaed440029c73190802cd26e7440ad
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/john] Pushed new tag 1.9.0.jumbo1-11

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 1.9.0.jumbo1-11 at Arch Linux / Packaging / 
Packages / john

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/john/-/tree/1.9.0.jumbo1-11
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gsoap][main] upgpkg: 2.8.134-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed to branch main at Arch Linux / Packaging / Packages / 
gsoap


Commits:
6963a96e by Sergej Pupykin at 2024-04-28T20:45:59+03:00
upgpkg: 2.8.134-1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = gsoap
pkgdesc = Offers an XML language binding to ease the development of 
SOAP/XML Web services in C and C/C++
-   pkgver = 2.8.133
+   pkgver = 2.8.134
pkgrel = 1
url = https://www.cs.fsu.edu/~engelen/soap.html
arch = x86_64
@@ -12,7 +12,7 @@ pkgbase = gsoap
depends = zlib
depends = gcc-libs
options = staticlibs
-   source = https://prdownloads.sourceforge.net/gsoap2/gsoap_2.8.133.zip
-   sha256sums = 
93e124302c5775e115e661af2bf4e1f07fa05aef14f58ce65b5c27c833afe279
+   source = https://prdownloads.sourceforge.net/gsoap2/gsoap_2.8.134.zip
+   sha256sums = 
63478e555c0ccde0164f055ff605b02805db0abc6712a04bcb14cb617b047218
 
 pkgname = gsoap


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 # Contributor: Lee.MaRS 
 
 pkgname=gsoap
-pkgver=2.8.133
+pkgver=2.8.134
 pkgrel=1
 pkgdesc="Offers an XML language binding to ease the development of SOAP/XML 
Web services in C and C/C++"
 url="https://www.cs.fsu.edu/~engelen/soap.html;
@@ -13,7 +13,7 @@ depends=('openssl' 'zlib' 'gcc-libs')
 makedepends=('autoconf' 'automake')
 options=('staticlibs')
 source=("https://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip;)
-sha256sums=('93e124302c5775e115e661af2bf4e1f07fa05aef14f58ce65b5c27c833afe279')
+sha256sums=('63478e555c0ccde0164f055ff605b02805db0abc6712a04bcb14cb617b047218')
 
 prepare() {
   cd "$srcdir"/gsoap-2.8



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gsoap/-/commit/6963a96eed5ad735077e6b8f0866a40b57f97a9b

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gsoap/-/commit/6963a96eed5ad735077e6b8f0866a40b57f97a9b
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/gsoap] Pushed new tag 2.8.134-1

2024-04-28 Thread Sergej Pupykin (@spupykin)


Sergej Pupykin pushed new tag 2.8.134-1 at Arch Linux / Packaging / Packages / 
gsoap

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gsoap/-/tree/2.8.134-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/boost][main] upgpkg: 1.83.0-7: openmpi 5.0.3 rebuild

2024-04-28 Thread Evangelos Foutras (@foutrelis)


Evangelos Foutras pushed to branch main at Arch Linux / Packaging / Packages / 
boost


Commits:
ff5ec15a by Evangelos Foutras at 2024-04-28T20:34:13+03:00
upgpkg: 1.83.0-7: openmpi 5.0.3 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = boost
pkgdesc = Free peer-reviewed portable C++ source libraries
pkgver = 1.83.0
-   pkgrel = 6
+   pkgrel = 7
url = https://www.boost.org/
arch = x86_64
license = custom


=
PKGBUILD
=
@@ -11,7 +11,7 @@
 
 pkgname=('boost' 'boost-libs')
 pkgver=1.83.0
-pkgrel=6
+pkgrel=7
 _srcname=boost_${pkgver//./_}
 pkgdesc="Free peer-reviewed portable C++ source libraries"
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/boost/-/commit/ff5ec15a3c9513160bc813b900566f2e045d0553

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/boost/-/commit/ff5ec15a3c9513160bc813b900566f2e045d0553
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/boost] Pushed new tag 1.83.0-7

2024-04-28 Thread Evangelos Foutras (@foutrelis)


Evangelos Foutras pushed new tag 1.83.0-7 at Arch Linux / Packaging / Packages 
/ boost

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/boost/-/tree/1.83.0-7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/intel-oneapi-dpcpp-cpp] Pushed new tag 2024.0.2-1

2024-04-28 Thread @tpkessler


Torsten Keßler pushed new tag 2024.0.2-1 at Arch Linux / Packaging / Packages / 
intel-oneapi-dpcpp-cpp

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/intel-oneapi-dpcpp-cpp/-/tree/2024.0.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/intel-oneapi-dpcpp-cpp][main] upgpkg: 2024.0.2-1

2024-04-28 Thread @tpkessler


Torsten Keßler pushed to branch main at Arch Linux / Packaging / Packages / 
intel-oneapi-dpcpp-cpp


Commits:
0de68e4a by Torsten Keßler at 2024-04-28T19:30:45+02:00
upgpkg: 2024.0.2-1

- - - - -


2 changed files:

- + .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,24 @@
+pkgbase = intel-oneapi-dpcpp-cpp
+   pkgdesc = Intel oneAPI DPC++/C++ Compiler
+   pkgver = 2024.0.2
+   pkgrel = 1
+   url = 
https://software.intel.com/content/www/us/en/develop/tools/oneapi.html
+   arch = x86_64
+   license = LicenseRef-Intel-EULA-Developer-Tools
+   depends = intel-oneapi-compiler-dpcpp-cpp-common
+   depends = intel-oneapi-compiler-dpcpp-cpp-runtime
+   depends = intel-oneapi-compiler-shared-runtime
+   depends = intel-oneapi-compiler-shared
+   depends = intel-oneapi-tbb
+   depends = intel-oneapi-dev-utilities
+   depends = intel-oneapi-common
+   depends = gcc-libs
+   depends = glibc
+   depends = bash
+   depends = zlib
+   conflicts = intel-oneapi-basekit
+   noextract = intel-oneapi-dpcpp-cpp-2024.0-2024.0.2-49895_amd64.deb
+   source = 
https://apt.repos.intel.com/oneapi/pool/main/intel-oneapi-dpcpp-cpp-2024.0-2024.0.2-49895_amd64.deb
+   b2sums = 
e69c35e8106d63fafb9648473b60058bc8c8be5b5b63374784bee13177a720d655924ff3cdeb14a9d13d13ddb7629699040f14db9c457c22ddff27db92019edb
+
+pkgname = intel-oneapi-dpcpp-cpp


=
PKGBUILD
=
@@ -1,28 +1,30 @@
 # Maintainer: Torsten Keßler 
 
 pkgname="intel-oneapi-dpcpp-cpp"
-pkgver='2023.2.0'
+_pkgver=2024.0
+pkgver=2024.0.2
 # Figure out new _debpkgrel value using
 # curl -L 
https://apt.repos.intel.com/oneapi/dists/all/main/binary-amd64/Packages | grep 
dpcpp-cpp
-_debpkgrel='49495'
+_debpkgrel=49895
 pkgrel=1
 pkgdesc="Intel oneAPI DPC++/C++ Compiler"
 arch=('x86_64')
 url='https://software.intel.com/content/www/us/en/develop/tools/oneapi.html'
-license=("custom")
-source=("https://apt.repos.intel.com/oneapi/pool/main/${pkgname}-${pkgver}-${pkgver}-${_debpkgrel}_amd64.deb;)
-b2sums=('91b13b305a06fbc7bb1fdabef7477bb9a636f1fbe553e1f8dce76cb1c4456f6949d34d634de89c6d9635d99bba2f6aaaf33717c7c2b564884e26ac5b9662ee77')
+license=("LicenseRef-Intel-EULA-Developer-Tools")
+source=("https://apt.repos.intel.com/oneapi/pool/main/${pkgname}-${_pkgver}-${pkgver}-${_debpkgrel}_amd64.deb;)
+b2sums=('e69c35e8106d63fafb9648473b60058bc8c8be5b5b63374784bee13177a720d655924ff3cdeb14a9d13d13ddb7629699040f14db9c457c22ddff27db92019edb')
 noextract=(
-"${pkgname}-${pkgver}-${pkgver}-${_debpkgrel}_amd64.deb"
+"${pkgname}-${_pkgver}-${pkgver}-${_debpkgrel}_amd64.deb"
 )
 depends=('intel-oneapi-compiler-dpcpp-cpp-common' 
'intel-oneapi-compiler-dpcpp-cpp-runtime'
  'intel-oneapi-compiler-shared-runtime' 'intel-oneapi-compiler-shared'
- 'intel-oneapi-tbb' 'intel-oneapi-dev-utilities' 'intel-oneapi-common')
+ 'intel-oneapi-tbb' 'intel-oneapi-dev-utilities' 'intel-oneapi-common'
+ 'gcc-libs' 'glibc' 'bash' 'zlib')
 conflicts=('intel-oneapi-basekit')
 
 package() {
 cd "${srcdir}"
-ar x "${srcdir}/${pkgname}-${pkgver}-${pkgver}-${_debpkgrel}_amd64.deb"
+ar x "${srcdir}/${pkgname}-${_pkgver}-${pkgver}-${_debpkgrel}_amd64.deb"
 tar xvf data.tar.xz -C "${pkgdir}"
 rm data.tar.xz
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/intel-oneapi-dpcpp-cpp/-/commit/0de68e4ab96cd74a2f86ab4c508375048ef49071

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/intel-oneapi-dpcpp-cpp/-/commit/0de68e4ab96cd74a2f86ab4c508375048ef49071
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/intel-oneapi-mkl] Pushed new tag 2024.0.0-1

2024-04-28 Thread @tpkessler


Torsten Keßler pushed new tag 2024.0.0-1 at Arch Linux / Packaging / Packages / 
intel-oneapi-mkl

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/intel-oneapi-mkl/-/tree/2024.0.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/prrte][main] upgpkg: 3.0.5-3: openpmix 5.0.2 rebuild

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / 
prrte


Commits:
07197b08 by Jakub Klinkovský at 2024-04-28T19:23:43+02:00
upgpkg: 3.0.5-3: openpmix 5.0.2 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = prrte
pkgdesc = PMIx Reference RunTime Environment
pkgver = 3.0.5
-   pkgrel = 2
+   pkgrel = 3
url = https://github.com/openpmix/prrte
arch = x86_64
license = BSD-3-Clause


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 pkgbase=prrte
 pkgname=(prrte{,-docs})
 pkgver=3.0.5
-pkgrel=2
+pkgrel=3
 pkgdesc="PMIx Reference RunTime Environment"
 arch=(x86_64)
 url="https://github.com/openpmix/prrte;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/prrte/-/commit/07197b085eef62e269723a7f48f2190ccf9dca61

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/prrte/-/commit/07197b085eef62e269723a7f48f2190ccf9dca61
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/prrte] Pushed new tag 3.0.5-3

2024-04-28 Thread @lahwaacz


Jakub Klinkovský pushed new tag 3.0.5-3 at Arch Linux / Packaging / Packages / 
prrte

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/prrte/-/tree/3.0.5-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/freeciv] Pushed new tag 3.1.1-1

2024-04-28 Thread Antonio Rojas (@arojas)


Antonio Rojas pushed new tag 3.1.1-1 at Arch Linux / Packaging / Packages / 
freeciv

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/freeciv/-/tree/3.1.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




  1   2   3   4   >