[Git][archlinux/packaging/packages/blueman] Pushed new tag 2.4.1-2

2024-04-09 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.4.1-2 at Arch Linux / Packaging / Packages / 
blueman

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/blueman/-/tree/2.4.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/blueman][main] upgpkg: 2.4.1-1: New upstream release + Switch to auto-generated source tarball

2024-04-09 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
blueman


Commits:
a94b2e8b by Robin Candau at 2024-04-09T12:25:49+02:00
upgpkg: 2.4.1-1: New upstream release + Switch to auto-generated source tarball

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = blueman
pkgdesc = GTK+ Bluetooth Manager
-   pkgver = 2.4
-   pkgrel = 2
+   pkgver = 2.4.1
+   pkgrel = 1
url = https://github.com/blueman-project/blueman
arch = x86_64
license = GPL-3.0-or-later
@@ -18,7 +18,7 @@ pkgbase = blueman
optdepends = iproute2: Network Access Point (NAP) support
optdepends = networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support
optdepends = pulseaudio-bluetooth: audio devices support
-   source = 
https://github.com/blueman-project/blueman/releases/download/2.4/blueman-2.4.tar.xz
-   sha256sums = 
19fa776e9590bb2d30ea905c1c9682232a347d7ebaab0a9d4b3d60bafe49fae1
+   source = 
blueman-2.4.1.tar.gz::https://github.com/blueman-project/blueman/archive/refs/tags/2.4.1.tar.gz
+   sha256sums = 
89a8cd453152c8cabbb63ad91432c68263dec15cd17f1ea14d56aec24cf25949
 
 pkgname = blueman


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 # Contributor: Martin Wimpress 
 
 pkgname=blueman
-pkgver=2.4
-pkgrel=2
+pkgver=2.4.1
+pkgrel=1
 pkgdesc="GTK+ Bluetooth Manager"
 arch=('x86_64')
 url="https://github.com/blueman-project/blueman;
@@ -16,28 +16,28 @@ optdepends=('dnsmasq: Network Access Point (NAP) support'
 'iproute2: Network Access Point (NAP) support'
 'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
 'pulseaudio-bluetooth: audio devices support')
-source=(https://github.com/blueman-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('19fa776e9590bb2d30ea905c1c9682232a347d7ebaab0a9d4b3d60bafe49fae1')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
+sha256sums=('89a8cd453152c8cabbb63ad91432c68263dec15cd17f1ea14d56aec24cf25949')
 
 prepare() {
-  cd $pkgname-$pkgver
-
-  # Use correct D-Bus config location
-  sed -i '/^dbusdir =/ s/sysconfdir/datadir/' data/configs/Makefile.{am,in}
+   cd "${pkgname}-${pkgver}"
+   ./autogen.sh
+   # Use correct D-Bus config location
+   sed -i '/^dbusdir =/ s/sysconfdir/datadir/' 
data/configs/Makefile.{am,in}
 }
 
 build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
---disable-schemas-compile \
---with-dhcp-config='/etc/dhcpd.conf'
-  make
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/"${pkgname}" \
+ --disable-schemas-compile \
+ --with-dhcp-config='/etc/dhcpd.conf'
+   make
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/blueman/-/commit/a94b2e8b1956e27cb63096cb82a9c7d8dcc59908

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/blueman/-/commit/a94b2e8b1956e27cb63096cb82a9c7d8dcc59908
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/blueman] Pushed new tag 2.4.1-1

2024-04-09 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.4.1-1 at Arch Linux / Packaging / Packages / 
blueman

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/blueman/-/tree/2.4.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/redshift][main] upgpkg: 1.12-10: Move 'configure' to build()

2024-04-09 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
redshift


Commits:
93a09632 by Robin Candau at 2024-04-09T11:55:20+02:00
upgpkg: 1.12-10: Move configure to build()

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = redshift
pkgdesc = Adjusts the color temperature of your screen according to 
your surroundings.
pkgver = 1.12
-   pkgrel = 9
+   pkgrel = 10
url = http://jonls.dk/redshift/
arch = x86_64
license = GPL-3.0-only


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 
 pkgname=redshift
 pkgver=1.12
-pkgrel=9
+pkgrel=10
 pkgdesc='Adjusts the color temperature of your screen according to your 
surroundings.'
 arch=('x86_64')
 url='http://jonls.dk/redshift/'
@@ -24,12 +24,12 @@ 
sha256sums=('dd816df79765f87a0838b1568fbc40c3e8bdb4aef0e77712c85623afe34a29ad')
 prepare() {
cd "${pkgname}-${pkgver}"
./bootstrap
-   ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode 
--enable-geoclue2 \
-   --with-systemduserunitdir=/usr/lib/systemd/user
 }
 
 build() {
cd "${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode 
--enable-geoclue2 \
+   --with-systemduserunitdir=/usr/lib/systemd/user
make
 }
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/commit/93a0963299445cc72f9154977bfb036afafcc6f0

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/commit/93a0963299445cc72f9154977bfb036afafcc6f0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/redshift] Pushed new tag 1.12-10

2024-04-09 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.12-10 at Arch Linux / Packaging / Packages / 
redshift

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/tree/1.12-10
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pymupdf] Pushed new tag 1.24.1-2

2024-04-08 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.24.1-2 at Arch Linux / Packaging / Packages / 
python-pymupdf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pymupdf/-/tree/1.24.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pymupdf][main] upgpkg: 1.24.1-2: Python 3.12 rebuild

2024-04-08 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-pymupdf


Commits:
e5d03470 by Robin Candau at 2024-04-08T18:26:56+02:00
upgpkg: 1.24.1-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pymupdf
pkgdesc = Python bindings for MuPDF's rendering library
pkgver = 1.24.1
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/pymupdf/PyMuPDF
arch = x86_64
license = AGPL-3.0-or-later


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 _name=PyMuPDF
 pkgname=python-pymupdf
 pkgver=1.24.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python bindings for MuPDF's rendering library"
 arch=(x86_64)
 url="https://github.com/pymupdf/PyMuPDF;



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pymupdf/-/commit/e5d03470e10ebdbc53acc96b7244e729720581de
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/urlwatch][main] upgpkg: 2.28-3: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
urlwatch


Commits:
112afc16 by Robin Candau at 2024-04-07T20:50:40+02:00
upgpkg: 2.28-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = urlwatch
pkgdesc = Tool for monitoring webpages for updates
pkgver = 2.28
-   pkgrel = 2
+   pkgrel = 3
url = https://thp.io/2008/urlwatch/
arch = any
license = BSD-3-Clause


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 
 pkgname=urlwatch
 pkgver=2.28
-pkgrel=2
+pkgrel=3
 pkgdesc='Tool for monitoring webpages for updates'
 arch=('any')
 url=https://thp.io/2008/urlwatch/



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/urlwatch/-/commit/112afc16dfe6eeb0187e2141faaa9ecb173dbdef

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/urlwatch/-/commit/112afc16dfe6eeb0187e2141faaa9ecb173dbdef
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/urlwatch] Pushed new tag 2.28-3

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.28-3 at Arch Linux / Packaging / Packages / 
urlwatch

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/urlwatch/-/tree/2.28-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/redshift][main] upgpkg: 1.12-9: Add .nvchecker.toml + Switch license to SPDX identifier +...

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
redshift


Commits:
a9489974 by Robin Candau at 2024-04-07T20:48:15+02:00
upgpkg: 1.12-9: Add .nvchecker.toml + Switch license to SPDX identifier + 
Switch to auto-generated source tarball + Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,20 @@
+pkgbase = redshift
+   pkgdesc = Adjusts the color temperature of your screen according to 
your surroundings.
+   pkgver = 1.12
+   pkgrel = 9
+   url = http://jonls.dk/redshift/
+   arch = x86_64
+   license = GPL-3.0-only
+   makedepends = intltool
+   makedepends = python
+   depends = libdrm
+   depends = libxcb
+   depends = libxxf86vm
+   optdepends = python-gobject: for redshift-gtk
+   optdepends = python-xdg: for redshift-gtk
+   optdepends = gtk3: for redshift-gtk
+   optdepends = geoclue: for automatic location based on GeoClue2
+   source = 
redshift-1.12.tar.gz::https://github.com/jonls/redshift/archive/refs/tags/v1.12.tar.gz
+   sha256sums = 
dd816df79765f87a0838b1568fbc40c3e8bdb4aef0e77712c85623afe34a29ad
+
+pkgname = redshift


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[redshit]
+source = "github"
+github = "jonls/redshift"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -7,30 +7,33 @@
 
 pkgname=redshift
 pkgver=1.12
-pkgrel=8
+pkgrel=9
 pkgdesc='Adjusts the color temperature of your screen according to your 
surroundings.'
 arch=('x86_64')
 url='http://jonls.dk/redshift/'
-license=('GPL3')
+license=('GPL-3.0-only')
 depends=('libdrm' 'libxcb' 'libxxf86vm')
 optdepends=('python-gobject: for redshift-gtk'
 'python-xdg: for redshift-gtk'
 'gtk3: for redshift-gtk'
 'geoclue: for automatic location based on GeoClue2') 
 makedepends=('intltool' 'python')
-source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('5d04f2413dacdf3434cb86f373842462')
-sha256sums=('d2f8c5300e3ce2a84fe6584d2f1483aa9eadc668ab1951b2c2b8a03ece3a22ba')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jonls/redshift/archive/refs/tags/v${pkgver}.tar.gz;)
+sha256sums=('dd816df79765f87a0838b1568fbc40c3e8bdb4aef0e77712c85623afe34a29ad')
 
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+prepare() {
+   cd "${pkgname}-${pkgver}"
+   ./bootstrap
+   ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode 
--enable-geoclue2 \
+   --with-systemduserunitdir=/usr/lib/systemd/user
+}
 
-  ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode 
--enable-geoclue2 \
---with-systemduserunitdir=/usr/lib/systemd/user
-  make
+build() {
+   cd "${pkgname}-${pkgver}"
+   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/commit/a94899746f51e85a9e152b99fbd4762648ab27c7

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/commit/a94899746f51e85a9e152b99fbd4762648ab27c7
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/redshift] Pushed new tag 1.12-9

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.12-9 at Arch Linux / Packaging / Packages / 
redshift

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/redshift/-/tree/1.12-9
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-tabulate][main] upgpkg: 0.9.0-3: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-tabulate


Commits:
2673c3c3 by Robin Candau at 2024-04-07T20:30:45+02:00
upgpkg: 0.9.0-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,26 @@
+pkgbase = python-tabulate
+   pkgdesc = Pretty-print tabular data in Python, a library and a 
command-line utility.
+   pkgver = 0.9.0
+   pkgrel = 3
+   url = https://github.com/astanin/python-tabulate
+   arch = any
+   license = MIT
+   checkdepends = python-nose
+   checkdepends = python-numpy
+   checkdepends = python-pandas
+   checkdepends = python-pytest
+   checkdepends = python-wcwidth
+   makedepends = python-build
+   makedepends = python-installer
+   makedepends = python-setuptools-scm
+   makedepends = python-toml
+   makedepends = python-wheel
+   depends = python
+   optdepends = python-numpy: NumPy array support
+   optdepends = python-pandas: pandas.DataFrame support
+   optdepends = python-wcwidth: wide-character support
+   source = 
https://files.pythonhosted.org/packages/source/t/tabulate/tabulate-0.9.0.tar.gz
+   sha512sums = 
042a6b34ea6e5b6324cb40112b3078b62e6f1f6186401262e7b06a5b96dd118d4b70e259a96121e383ac1fe53f3953c27532206af9825b97db9f41fe1e5f3934
+   b2sums = 
5912f173002428df2e5ff899cff8322e9bcec76e5ba0cbe2e3321d4b2e54ba110c84b8bb112b1a9b4e032b35eb5695604181474884154af1379c6226120b84b2
+
+pkgname = python-tabulate


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[python-tabulate]
+source = "github"
+github = "astanin/python-tabulate"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,9 +1,10 @@
 # Maintainer: David Runge 
+# Maintainer: Robin Candau 
 
 _name=tabulate
 pkgname=python-tabulate
 pkgver=0.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Pretty-print tabular data in Python, a library and a command-line 
utility."
 arch=(any)
 url="https://github.com/astanin/python-tabulate;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-tabulate/-/commit/2673c3c33378a483b161c7e7a198583c6e071a17

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-tabulate/-/commit/2673c3c33378a483b161c7e7a198583c6e071a17
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-tabulate] Pushed new tag 0.9.0-3

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.9.0-3 at Arch Linux / Packaging / Packages / 
python-tabulate

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-tabulate/-/tree/0.9.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/powerline][main] upgpkg: 2.8.3-4: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
powerline


Commits:
6b7f8b63 by Robin Candau at 2024-04-07T20:23:23+02:00
upgpkg: 2.8.3-4: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = powerline
pkgdesc = Statusline plugin for vim, and provides statuslines and 
prompts for several other applications, including zsh, bash, tmux, IPython, 
Awesome, i3 and Qtile
pkgver = 2.8.3
-   pkgrel = 3
+   pkgrel = 4
url = https://github.com/powerline/powerline
arch = x86_64
license = MIT


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[powerline]
+source = "github"
+github = "powerline/powerline"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -11,7 +11,7 @@ pkgbase="powerline"
 pkgname=("powerline" "python-powerline" "powerline-common" "powerline-vim" 
"powerline-fonts")
 pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
 pkgver=2.8.3
-pkgrel=3
+pkgrel=4
 url="https://github.com/${_pkgname}/${_pkgname};
 license=('MIT')
 arch=('x86_64')



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/powerline/-/commit/6b7f8b63e343d6bec23be89c01aef052e3ae64fe
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/powerline] Pushed new tag 2.8.3-4

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.8.3-4 at Arch Linux / Packaging / Packages / 
powerline

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/powerline/-/tree/2.8.3-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-omemo-dr][main] upgpkg: 1.0.1-2: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-omemo-dr


Commits:
6ddf734c by Robin Candau at 2024-04-07T20:18:28+02:00
upgpkg: 1.0.1-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-omemo-dr
pkgdesc = OMEMO Crypto Library
pkgver = 1.0.1
-   pkgrel = 1
+   pkgrel = 2
url = https://dev.gajim.org/gajim/omemo-dr
arch = x86_64
license = GPL3


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[python-omemo-dr]
+source = "gitlab"
+host = "dev.gajim.org"
+gitlab = "gajim/omemo-dr"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 pkgname='python-omemo-dr'
 _pkgname="${pkgname#python-}"
 pkgver=1.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="OMEMO Crypto Library"
 arch=('x86_64')
 url="https://dev.gajim.org/gajim/omemo-dr;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-omemo-dr/-/commit/6ddf734cd3c1d15130f69cc8940f4bff0f81a31b

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-omemo-dr/-/commit/6ddf734cd3c1d15130f69cc8940f4bff0f81a31b
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-omemo-dr] Pushed new tag 1.0.1-2

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.0.1-2 at Arch Linux / Packaging / Packages / 
python-omemo-dr

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-omemo-dr/-/tree/1.0.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[arch-announce] Increasing the default vm.max_map_count value

2024-04-07 Thread Arch Linux: Recent news updates: Robin Candau
The [vm.max_map_count][1] paramater will be increased from the default `65530` 
value to `1048576`.

This change should help address performance, crash or start-up issues for a 
number of memory intensive applications, particularly for (but not limited to) 
[some Windows games][2] played through Wine/Steam Proton. Overall, end users 
should have a smoother experience out of the box with no expressed concerns 
about potential downsides in [the related proposal on arch-dev-public mailing 
list][3].

This `vm.max_map_count` increase is introduced in the `2024.04.07-1` release of 
the [filesystem package][4] and will be effective right after the upgrade.

Before upgrading, in case you are already setting your own value for that 
parameter in a `sysctl.d` configuration file, either remove it (to switch to 
the new default value) or make sure your configuration file will be read [with 
a higher priority][5] than the `/usr/lib/sysctl.d/10-arch.conf` file (to 
supersede the new default value).

[1]: https://docs.kernel.org/admin-guide/sysctl/vm.html#max-map-count
[2]: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2057792/comments/5
[3]: 
https://lists.archlinux.org/archives/list/arch-dev-pub...@lists.archlinux.org/thread/5GU7ZUFI25T2IRXIQ62YYERQKIPE3U6E/
[4]: https://archlinux.org/packages/core/any/filesystem/
[5]: https://man.archlinux.org/man/sysctl.8#SYSTEM_FILE_PRECEDENCE

URL: https://archlinux.org/news/increasing-the-default-vmmax_map_count-value/


[Git][archlinux/packaging/packages/mupdf] Pushed new tag 1.24.1-2

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.24.1-2 at Arch Linux / Packaging / Packages / 
mupdf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mupdf/-/tree/1.24.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/mupdf][main] upgpkg: 1.24.1-2: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / mupdf


Commits:
f9a8c098 by Robin Candau at 2024-04-07T19:52:01+02:00
upgpkg: 1.24.1-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = mupdf
pkgdesc = Lightweight PDF and XPS viewer
pkgver = 1.24.1
-   pkgrel = 1
+   pkgrel = 2
url = https://mupdf.com/
arch = x86_64
license = AGPL-3.0-or-later


=
PKGBUILD
=
@@ -9,7 +9,7 @@
 pkgbase=mupdf
 pkgname=(libmupdf mupdf mupdf-gl mupdf-tools python-mupdf)
 pkgver=1.24.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('x86_64')
 url='https://mupdf.com/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mupdf/-/commit/f9a8c098c7d2b031e735e0d520f53502a24635fa

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mupdf/-/commit/f9a8c098c7d2b031e735e0d520f53502a24635fa
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/piper][main] upgpkg: 0.7-3: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / piper


Commits:
8aac454f by Robin Candau at 2024-04-07T19:38:20+02:00
upgpkg: 0.7-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,25 @@
+pkgbase = piper
+   pkgdesc = GTK application to configure gaming mice
+   pkgver = 0.7
+   pkgrel = 3
+   url = https://github.com/libratbag/piper
+   arch = any
+   license = GPL-2.0-only
+   makedepends = git
+   makedepends = meson
+   makedepends = flake8
+   makedepends = appstream
+   depends = python
+   depends = python-gobject
+   depends = libratbag
+   depends = python-evdev
+   depends = python-lxml
+   depends = python-cairo
+   source = git+https://github.com/libratbag/piper#tag=0.7?signed
+   validpgpkeys = 3DCE51D60930EBA47858BA4146F633CBB0EB4BF2
+   validpgpkeys = 3C2C43D9447D5938EF4551EBE23B7E70B467F0BF
+   validpgpkeys = 2F2670AC164DB36F
+   validpgpkeys = BB45B0B3FF561BDBD45EE8A9B35B49EA5D563EFE
+   sha256sums = 
ec031b6c440c1308cafd8d2d2756a1e9550ce65ae66464f1c8d2d8c62b250084
+
+pkgname = piper


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[piper]
+source = "github"
+github = "libratbag/piper"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,12 +1,13 @@
 # Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Robin Candau 
 
 pkgname=piper
 pkgver=0.7
-pkgrel=2
+pkgrel=3
 pkgdesc='GTK application to configure gaming mice'
 arch=('any')
 url='https://github.com/libratbag/piper'
-license=('GPL')
+license=('GPL-2.0-only')
 depends=('python' 'python-gobject' 'libratbag' 'python-evdev' 'python-lxml' 
'python-cairo')
 makedepends=('git' 'meson' 'flake8' 'appstream')
 validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2'  # Filipe Laíns 
(FFY00) 
@@ -14,7 +15,7 @@ validpgpkeys=('3DCE51D60930EBA47858BA4146F633CBB0EB4BF2'  # 
Filipe Laíns (FFY00
   '2F2670AC164DB36F'  # Benjamin Tissoires 

   'BB45B0B3FF561BDBD45EE8A9B35B49EA5D563EFE') # 
stephanlach...@protonmail.com 
 source=("git+$url#tag=$pkgver?signed")
-sha512sums=('SKIP')
+sha256sums=('ec031b6c440c1308cafd8d2d2756a1e9550ce65ae66464f1c8d2d8c62b250084')
 
 prepare() {
   cd $pkgname



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/piper/-/commit/8aac454ff3dc7d1524920fa7eef46db70b96c2cf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/piper/-/commit/8aac454ff3dc7d1524920fa7eef46db70b96c2cf
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/piper] Pushed new tag 0.7-3

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.7-3 at Arch Linux / Packaging / Packages / piper

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/piper/-/tree/0.7-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-evdev][main] upgpkg: 1.7.0-3: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-evdev


Commits:
baaad1f9 by Robin Candau at 2024-04-07T19:31:59+02:00
upgpkg: 1.7.0-3: Python 3.12 rebuild
[200~https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-evdev
pkgdesc = Python bindings for the Linux input subsystem
pkgver = 1.7.0
-   pkgrel = 2
+   pkgrel = 3
url = https://python-evdev.readthedocs.io/en/latest/
arch = x86_64
license = BSD-3-Clause


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=python-evdev
 pkgver=1.7.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Python bindings for the Linux input subsystem"
 url="https://python-evdev.readthedocs.io/en/latest/;
 arch=(x86_64)



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-evdev/-/commit/baaad1f947e79e3d6de12e7e1be57c8bbafaa6c0
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-evdev] Pushed new tag 1.7.0-3

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.7.0-3 at Arch Linux / Packaging / Packages / 
python-evdev

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-evdev/-/tree/1.7.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview][main] upgpkg: 2.0.1-3: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
nfoview


Commits:
fca84a12 by Robin Candau at 2024-04-07T19:24:17+02:00
upgpkg: 2.0.1-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = nfoview
pkgdesc = Simple NFO file viewer in GTK+ 3
pkgver = 2.0.1
-   pkgrel = 2
+   pkgrel = 3
url = https://otsaloma.io/nfoview/
arch = any
license = GPL-3.0-or-later


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[nfoview]
+source = "github"
+github = "otsaloma/nfoview"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=nfoview
 pkgver=2.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple NFO file viewer in GTK+ 3"
 arch=('any')
 url="https://otsaloma.io/nfoview/;



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/fca84a125127eb7b0cd6457993dc5da0d52a2dd1

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/fca84a125127eb7b0cd6457993dc5da0d52a2dd1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview] Pushed new tag 2.0.1-3

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.0.1-3 at Arch Linux / Packaging / Packages / 
nfoview

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/tree/2.0.1-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-invoke] Pushed new tag 2.2.0-2

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.2.0-2 at Arch Linux / Packaging / Packages / 
python-invoke

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-invoke/-/tree/2.2.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-invoke][main] upgpkg: 2.2.0-2: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-invoke


Commits:
fe401d93 by Robin Candau at 2024-04-07T19:12:00+02:00
upgpkg: 2.2.0-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-invoke
pkgdesc = Pythonic task execution
pkgver = 2.2.0
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/pyinvoke/invoke
arch = any
license = BSD


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 
 pkgname=python-invoke
 pkgver=2.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Pythonic task execution"
 url="https://github.com/pyinvoke/invoke;
 license=('BSD')



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-invoke/-/commit/fe401d93652d63a07c8657d148ed92d9a06f53ba
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/firewalld] Pushed new tag 2.1.1-2

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.1.1-2 at Arch Linux / Packaging / Packages / 
firewalld

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/firewalld/-/tree/2.1.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/firewalld][main] upgpkg: 2.1.1-2: Python 3.12 rebuild

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
firewalld


Commits:
0f8e96ce by Robin Candau at 2024-04-07T19:08:30+02:00
upgpkg: 2.1.1-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = firewalld
pkgdesc = Firewall daemon with D-Bus interface
pkgver = 2.1.1
-   pkgrel = 1
+   pkgrel = 2
url = https://firewalld.org/
arch = any
license = GPL-2.0-or-later


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[firewalld]
+source = "github"
+github = "firewalld/firewalld"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=firewalld
 pkgver=2.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Firewall daemon with D-Bus interface'
 arch=(any)
 url=https://firewalld.org/



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/firewalld/-/commit/0f8e96ce91b97795b46a1050a7d9cd7980753d0f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fastfetch][main] upgpkg: 2.9.1-1: New upstream release

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
fastfetch


Commits:
3e1e65cc by Robin Candau at 2024-04-07T18:49:06+02:00
upgpkg: 2.9.1-1: New upstream release
https://github.com/fastfetch-cli/fastfetch/releases/tag/2.9.1

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = fastfetch
pkgdesc = Like Neofetch, but much faster because written in C
-   pkgver = 2.9.0
+   pkgver = 2.9.1
pkgrel = 1
url = https://github.com/fastfetch-cli/fastfetch
arch = x86_64
@@ -42,7 +42,7 @@ pkgbase = fastfetch
optdepends = xfconf: Needed for XFWM theme and XFCE Terminal font
optdepends = zlib: Faster image output when using kitty graphics 
protocol
optdepends = libdrm: Displays detection
-   source = 
fastfetch-2.9.0.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.9.0.tar.gz
-   sha256sums = 
ae0b0d0bf4d4569fb5dff6b1d67bc8d2091ed4a9aec6ab43c2c73430dff1f9dc
+   source = 
fastfetch-2.9.1.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.9.1.tar.gz
+   sha256sums = 
f22bb197095ea80c4aa17e1d4b5e0dd6e79234f4a18f427691c7e6f93a812ac8
 
 pkgname = fastfetch


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Mark Wagie 
 
 pkgname=fastfetch
-pkgver=2.9.0
+pkgver=2.9.1
 pkgrel=1
 pkgdesc="Like Neofetch, but much faster because written in C"
 arch=('x86_64')
@@ -50,7 +50,7 @@ optdepends=(
   'libdrm: Displays detection'
 )
 
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
-sha256sums=('ae0b0d0bf4d4569fb5dff6b1d67bc8d2091ed4a9aec6ab43c2c73430dff1f9dc')
+sha256sums=('f22bb197095ea80c4aa17e1d4b5e0dd6e79234f4a18f427691c7e6f93a812ac8')
 
 build() {
cmake -B build -S "${pkgname}-${pkgver}" \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/commit/3e1e65cc55dc02cfcbf7f2f9ee455d26e9660c23

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/commit/3e1e65cc55dc02cfcbf7f2f9ee455d26e9660c23
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fastfetch] Pushed new tag 2.9.1-1

2024-04-07 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.9.1-1 at Arch Linux / Packaging / Packages / 
fastfetch

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/tree/2.9.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/containerd][main] upgpkg: 1.7.15-1: New upstream release

2024-04-06 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
containerd


Commits:
e8570826 by Robin Candau at 2024-04-06T09:21:00+02:00
upgpkg: 1.7.15-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = containerd
pkgdesc = An open and reliable container runtime
-   pkgver = 1.7.14
+   pkgver = 1.7.15
pkgrel = 1
url = https://containerd.io/
arch = x86_64
@@ -13,8 +13,8 @@ pkgbase = containerd
makedepends = go-md2man
depends = runc
provides = container-runtime
-   source = 
git+https://github.com/containerd/containerd.git#tag=v1.7.14?signed
+   source = 
git+https://github.com/containerd/containerd.git#tag=v1.7.15?signed
validpgpkeys = 8C7A111C21105794B0E8A27BF58C5D0A4405ACDB
-   sha256sums = SKIP
+   sha256sums = 
1a166e01f7b5efbb9497e10caef500901471b3649df928631781e7a3b940ff75
 
 pkgname = containerd


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 # Contributor: Iwan Timmer 
 
 pkgname=containerd
-pkgver=1.7.14
+pkgver=1.7.15
 pkgrel=1
 pkgdesc='An open and reliable container runtime'
 url='https://containerd.io/'
@@ -16,7 +16,7 @@ arch=('x86_64')
 license=("Apache-2.0")
 
source=("git+https://github.com/containerd/containerd.git#tag=v${pkgver}?signed;)
 validpgpkeys=("8C7A111C21105794B0E8A27BF58C5D0A4405ACDB") # Derek McGowan
-sha256sums=('SKIP')
+sha256sums=('1a166e01f7b5efbb9497e10caef500901471b3649df928631781e7a3b940ff75')
 
 prepare() {
   # fix paths in service



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containerd/-/commit/e8570826ddb23f96654c57d31f395469cc9bd605

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containerd/-/commit/e8570826ddb23f96654c57d31f395469cc9bd605
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/containerd] Pushed new tag 1.7.15-1

2024-04-06 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.7.15-1 at Arch Linux / Packaging / Packages / 
containerd

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/containerd/-/tree/1.7.15-1
You're receiving this email because of your account on gitlab.archlinux.org.




News draft: Increasing the default vm.max_map_count value

2024-04-05 Thread Robin Candau

MD pad available at https://md.archlinux.org/xl4oBGN9SDWRXnfvHuLhgg?both



# Increasing the default vm.max_map_count value

As per [this 
proposal](https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/5GU7ZUFI25T2IRXIQ62YYERQKIPE3U6E/), 
we decided to increase the 
[vm.max_map_count](https://docs.kernel.org/admin-guide/sysctl/vm.html#max-map-count) 
value from the default `65530` to `1048576`, based on the same change 
that multiple distributions already did on their respective side.


This change should help addressing performance, crash or start-up issues 
for some memory intensive applications, particularly for (but not 
limited to) [some Windows 
games](https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2057792/comments/5) 
played through Wine/Steam Proton.
Overall, it goes forward a smoother user experience out of the box with 
no expressed concerns about potential downsides in the related proposal.


This `vm.max_map_count` increase is introduced in the `2024.04.07` 
release of the [filesystem 
package](https://archlinux.org/packages/core/any/filesystem/) and will 
be effective right after the upgrade.
Before upgrading, in case you're already providing your own value for 
that parameter in a `sysctl` config file, either remove it (to switch to 
the new default value) or make sure your config file will be read [with 
a higher 
priority](https://man7.org/linux/man-pages/man8/sysctl.8.html#SYSTEM_FILE_PRECEDENCE) 
than the `/usr/lib/sysctl.d/10-arch.conf` file (to supersede the new 
default value).


--
Regards,
Robin Candau / Antiz


OpenPGP_0xFDC3040B92ACA748.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


[Git][archlinux/packaging/packages/lutris] Pushed new tag 0.5.16-2

2024-04-05 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.5.16-2 at Arch Linux / Packaging / Packages / 
lutris

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lutris/-/tree/0.5.16-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/lutris][main] upgpkg: 0.5.16-2: Add .nvchecker.toml + Switch license to SPDX identifier +...

2024-04-05 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / lutris


Commits:
65ca0398 by Robin Candau at 2024-04-05T08:58:52+02:00
upgpkg: 0.5.16-2: Add .nvchecker.toml + Switch license to SPDX identifier + 
Switch to pkgver based sources + Add a temporary patch to fix an issue when 
refreshing Steam library

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,10 +1,10 @@
 pkgbase = lutris
pkgdesc = Open Gaming Platform
pkgver = 0.5.16
-   pkgrel = 1
+   pkgrel = 2
url = https://lutris.net
arch = any
-   license = GPL3
+   license = GPL-3.0-only
checkdepends = python-nose-cover3
checkdepends = xorg-server-xvfb
checkdepends = xterm
@@ -56,7 +56,9 @@ pkgbase = lutris
optdepends = vulkan-tools: Vulkan support
optdepends = wine: Windows support
optdepends = xorg-xgamma: Restore gamma on game exit
-   source = 
git+https://github.com/lutris/lutris.git#tag=85871982bc0b2852b4875374271547536fa1f6b1
-   b2sums = SKIP
+   source = git+https://github.com/lutris/lutris.git#tag=v0.5.16
+   source = 
fix_refresh_steam_library.patch::https://github.com/lutris/lutris/commit/d6faf75fb370a004b80539466a7cd0beedcf5e5c.patch
+   sha256sums = 
eb675cd7c1f172ad93b8230fa270c800a0402b17bfcad1a6565d4dd95c91d4fd
+   sha256sums = 
f6564979af07a343aebb475b304fad54f3fd512ba367667d334b1288bbf5dc91
 
 pkgname = lutris


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[lutris]
+source = "github"
+github = "lutris/lutris"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -5,11 +5,11 @@
 
 pkgname=lutris
 pkgver=0.5.16
-pkgrel=1
+pkgrel=2
 pkgdesc='Open Gaming Platform'
 arch=(any)
 url=https://lutris.net
-license=(GPL3)
+license=(GPL-3.0-only)
 depends=(
   cabextract
   curl
@@ -69,13 +69,16 @@ optdepends=(
   'wine: Windows support'
   'xorg-xgamma: Restore gamma on game exit'
 )
-_tag=85871982bc0b2852b4875374271547536fa1f6b1
-source=(git+https://github.com/lutris/lutris.git#tag=${_tag})
-b2sums=('SKIP')
+source=("git+https://github.com/lutris/lutris.git#tag=v${pkgver};
+
fix_refresh_steam_library.patch::https://github.com/lutris/lutris/commit/d6faf75fb370a004b80539466a7cd0beedcf5e5c.patch)
+sha256sums=('eb675cd7c1f172ad93b8230fa270c800a0402b17bfcad1a6565d4dd95c91d4fd'
+'f6564979af07a343aebb475b304fad54f3fd512ba367667d334b1288bbf5dc91')
 
-pkgver() {
+prepare() {
   cd lutris
-  git describe --tags | sed 's/^v//'
+  # Temporary patch to fix an issue when trying to refresh Steam library
+  # See https://github.com/lutris/lutris/issues/5248
+  patch -Np1 < "${srcdir}/fix_refresh_steam_library.patch"
 }
 
 build() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lutris/-/commit/65ca03986402f25044129e80b80505db52a58785

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lutris/-/commit/65ca03986402f25044129e80b80505db52a58785
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-precis_i18n][main] upgpkg: 1.1.0-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-precis_i18n


Commits:
0810cbb3 by Robin Candau at 2024-04-04T15:53:37+02:00
upgpkg: 1.1.0-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-precis_i18n
pkgdesc = PRECIS framework (RFC 8264, RFC 8265, RFC 8266)
pkgver = 1.1.0
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/byllyfish/precis_i18n
arch = any
license = MIT


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 _pkgname=precis_i18n
 pkgname=python-precis_i18n
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='PRECIS framework (RFC 8264, RFC 8265, RFC 8266)'
 url='https://github.com/byllyfish/precis_i18n'
 arch=('any')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-precis_i18n/-/commit/0810cbb37150c88c54fe85efd3b7f5ce5ec5ec6b

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-precis_i18n/-/commit/0810cbb37150c88c54fe85efd3b7f5ce5ec5ec6b
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-precis_i18n] Pushed new tag 1.1.0-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.1.0-2 at Arch Linux / Packaging / Packages / 
python-precis_i18n

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-precis_i18n/-/tree/1.1.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-precis_i18n][main] upgpkg: 1.1.0-1: New upstream release + Switch to PEP 517 + Add .nvchecker.toml

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-precis_i18n


Commits:
ff58686d by Robin Candau at 2024-04-04T15:40:17+02:00
upgpkg: 1.1.0-1: New upstream release + Switch to PEP 517 + Add .nvchecker.toml

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,18 @@
+pkgbase = python-precis_i18n
+   pkgdesc = PRECIS framework (RFC 8264, RFC 8265, RFC 8266)
+   pkgver = 1.1.0
+   pkgrel = 1
+   url = https://github.com/byllyfish/precis_i18n
+   arch = any
+   license = MIT
+   checkdepends = python-pytest
+   makedepends = python-setuptools
+   makedepends = python-build
+   makedepends = python-installer
+   makedepends = python-wheel
+   depends = python
+   source = 
https://github.com/byllyfish/precis_i18n/archive/v1.1.0/python-precis_i18n-1.1.0.tar.gz
+   sha512sums = 
b208f09ff13de45df1796dc3aea87d432e9e1fc1702ba9be65375c5bf410f0548947568abdfc9ddbbfa67fea27b5452e7bc53a8f054696808dc3fc680473ff1a
+   b2sums = 
0da630b1790f5aeb3a81467b29522745e77e6aed349b077b49f9bc9046b92e2bbc43b5e059a2b52a5a602c21a374dcb4af91f0c57357a3984fa92dcfafee36bb
+
+pkgname = python-precis_i18n


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[python-precis_i18n]
+source = "github"
+github = "byllyfish/precis_i18n"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,34 +1,36 @@
 # Maintainer: Levente Polyak 
+# Maintainer: Robin Candau 
 
 _pkgname=precis_i18n
 pkgname=python-precis_i18n
-pkgver=1.0.5
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='PRECIS framework (RFC 8264, RFC 8265, RFC 8266)'
 url='https://github.com/byllyfish/precis_i18n'
 arch=('any')
 license=('MIT')
 depends=('python')
-makedepends=('python-setuptools')
+makedepends=('python-setuptools' 'python-build' 'python-installer' 
'python-wheel')
+checkdepends=('python-pytest')
 source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('0cc6281d206d5d682ba905a8f383b710a3eb39410a57477fd0d7bb24adc05d4ab2cab8475ac6617c473480a5f10a6e13396455237612e294ca4fb4de5b20af5b')
-b2sums=('6f1b07e461adedf8345b943145d75447111240f0c9f45a1b7f866f4247c7aac8b3a914ea4a712fc712eeebdccd363513c2ac2b1541139ddc29e83308bf5e0412')
+sha512sums=('b208f09ff13de45df1796dc3aea87d432e9e1fc1702ba9be65375c5bf410f0548947568abdfc9ddbbfa67fea27b5452e7bc53a8f054696808dc3fc680473ff1a')
+b2sums=('0da630b1790f5aeb3a81467b29522745e77e6aed349b077b49f9bc9046b92e2bbc43b5e059a2b52a5a602c21a374dcb4af91f0c57357a3984fa92dcfafee36bb')
 
 build() {
   cd ${_pkgname}-${pkgver}
-  python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
   cd ${_pkgname}-${pkgver}
-  python setup.py test
+  pytest
 }
 
 package() {
   cd ${_pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst CHANGELOG.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
 }
 
 # vim: ts=2 sw=2 et:



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-precis_i18n/-/commit/ff58686de7d3bb8ef2eded8a9803b69d2baafe10
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-precis_i18n] Pushed new tag 1.1.0-1

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.1.0-1 at Arch Linux / Packaging / Packages / 
python-precis_i18n

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-precis_i18n/-/tree/1.1.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-zabbix-api][main] upgpkg: 0.5.6-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-zabbix-api


Commits:
6d19c62e by Robin Candau at 2024-04-04T15:12:23+02:00
upgpkg: 0.5.6-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,13 @@
+pkgbase = python-zabbix-api
+   pkgdesc = Python Zabbix API
+   pkgver = 0.5.6
+   pkgrel = 2
+   url = https://pypi.org/project/zabbix-api
+   arch = any
+   license = LGPL-2.1-only
+   makedepends = python-setuptools
+   depends = python
+   source = 
https://files.pythonhosted.org/packages/source/z/zabbix-api/zabbix-api-0.5.6.tar.gz
+   sha512sums = 
4076c1259ffcc97bf7c0b4cb2006c9f4b6852922afac134647274261cade0d0d66950cf4a498b341fe3af2bed402c9887f16295324448e29a8e2461218d23240
+
+pkgname = python-zabbix-api


=
.nvchecker.toml
=
@@ -0,0 +1,5 @@
+[python-zabbix-api]
+source = "pypi"
+pypi = "zabbix-api"
+prefix = "v"
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,13 +1,15 @@
-# Maintainer: Jelle van der Waa 
+# Maintainer: Florian Pritz 
+# Maintainer: Robin Candau 
+# Contributor: Jelle van der Waa 
 
 _name=zabbix-api
 pkgname=python-zabbix-api
 pkgver=0.5.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Python Zabbix API"
 arch=(any)
 url="https://pypi.org/project/zabbix-api;
-license=('LGPL')
+license=('LGPL-2.1-only')
 depends=('python')
 makedepends=('python-setuptools')
 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-zabbix-api/-/commit/6d19c62eb7c5a10b817a7d619b15b74f614334f3

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-zabbix-api/-/commit/6d19c62eb7c5a10b817a7d619b15b74f614334f3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-zabbix-api] Pushed new tag 0.5.6-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.5.6-2 at Arch Linux / Packaging / Packages / 
python-zabbix-api

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-zabbix-api/-/tree/0.5.6-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-sentry_sdk][main] upgpkg: 1.44.1-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-sentry_sdk


Commits:
a4af6936 by Robin Candau at 2024-04-04T15:06:16+02:00
upgpkg: 1.44.1-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-sentry_sdk
pkgdesc = The official Python SDK for Sentry.io
pkgver = 1.44.1
-   pkgrel = 1
+   pkgrel = 2
url = https://sentry.io/for/python
arch = any
license = MIT
@@ -30,7 +30,7 @@ pkgbase = python-sentry_sdk
optdepends = python-tornado: adds support for the Tornado Web Framework
optdepends = python-pure-eval: for richer stacktraces & additional 
variables
optdepends = python-executing: for richer stacktraces & better function 
names
-   source = 
https://github.com/getsentry/sentry-python/releases/download/1.44.1/sentry-sdk-1.44.1.tar.gz
-   sha256sums = 
24e6a53eeabffd2f95d952aa35ca52f0f4201d17f820ac9d3ff7244c665aaf68
+   source = 
python-sentry_sdk-1.44.1.tar.gz::https://github.com/getsentry/sentry-python/archive/refs/tags/1.44.1.tar.gz
+   sha256sums = 
f41f61356eaac2bd398b6f70efc88838080141588abc069392bc7880a7f2c3c4
 
 pkgname = python-sentry_sdk


=
PKGBUILD
=
@@ -2,9 +2,9 @@
 # Contributor: Mark Wagie 
 
 pkgname=python-sentry_sdk
-_pkgname=sentry-sdk
+_pkgname=sentry-python
 pkgver=1.44.1
-pkgrel=1
+pkgrel=2
 pkgdesc="The official Python SDK for Sentry.io"
 arch=('any')
 url="https://sentry.io/for/python;
@@ -30,8 +30,8 @@ optdepends=('python-aiohttp: adds support for the 
AIOHTTP-Server Web Framework'
 'python-tornado: adds support for the Tornado Web Framework'
 'python-pure-eval: for richer stacktraces & additional variables'
 'python-executing: for richer stacktraces & better function names')
-source=("https://github.com/getsentry/sentry-python/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('24e6a53eeabffd2f95d952aa35ca52f0f4201d17f820ac9d3ff7244c665aaf68')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getsentry/sentry-python/archive/refs/tags/${pkgver}.tar.gz;)
+sha256sums=('f41f61356eaac2bd398b6f70efc88838080141588abc069392bc7880a7f2c3c4')
 
 build() {
cd "${_pkgname}-${pkgver}"



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-sentry_sdk/-/commit/a4af693626d3bc2d141336f7184da7695b3b33b6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-sentry_sdk] Pushed new tag 1.44.1-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.44.1-2 at Arch Linux / Packaging / Packages / 
python-sentry_sdk

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-sentry_sdk/-/tree/1.44.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-mistune][main] upgpkg: 1:3.0.2-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-mistune


Commits:
9ff8f5b5 by Robin Candau at 2024-04-04T14:49:37+02:00
upgpkg: 1:3.0.2-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-mistune
pkgdesc = A fast yet powerful Python Markdown parser with renderers and 
plugins
pkgver = 3.0.2
-   pkgrel = 1
+   pkgrel = 2
epoch = 1
url = https://mistune.lepture.com
arch = any


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[python-mistune]
+source = "github"
+github = "lepture/mistune"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgname=python-mistune
 _pkgname=mistune
 pkgver=3.0.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A fast yet powerful Python Markdown parser with renderers and plugins"
 arch=('any')
@@ -15,7 +15,7 @@ license=('BSD-3-Clause')
 depends=('python')
 makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 checkdepends=('python-pytest')
-source=("https://github.com/lepture/mistune/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+source=("https://github.com/lepture/mistune/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('c3075f5834e200a900f31478eb652745e3cce4e9cbc25796b65fe3998bdfa05eef327bb851aefd7128577660c3f48982d36bb2cec2d8d2a6fbb64dee2516b57b')
 
b2sums=('c8e24d4af55cc4ba2fd4288b3296d1846a56f15f04f252325ff01be566b0e1eae830bda59a387d4ef3d95f5d0ee9c75561664fcf0211b48c1f62692a0d414bf6')
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mistune/-/commit/9ff8f5b556e70e26e2a855ac95b855376ae51a38

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mistune/-/commit/9ff8f5b556e70e26e2a855ac95b855376ae51a38
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-mistune] Pushed new tag 1-3.0.2-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1-3.0.2-2 at Arch Linux / Packaging / Packages / 
python-mistune

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-mistune/-/tree/1-3.0.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gnupg][main] upgpkg: 0.5.2-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-gnupg


Commits:
c8e03934 by Robin Candau at 2024-04-04T14:39:45+02:00
upgpkg: 0.5.2-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-gnupg
pkgdesc = A wrapper for the Gnu Privacy Guard (GPG or GnuPG)
pkgver = 0.5.2
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/vsajip/python-gnupg/
arch = any
license = BSD-3-Clause


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[python-gnupg]
+source = "github"
+github = "vsajip/python-gnupg"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,11 +1,12 @@
-# Maintainer: David Runge 
+# Maintainer: Robin Candau 
+# Contributor: David Runge 
 # Contributor: NicoHood 
 # Contributor: Sven Klomp 
 
 pkgname=python-gnupg
 pkgdesc="A wrapper for the Gnu Privacy Guard (GPG or GnuPG)"
 pkgver=0.5.2
-pkgrel=1
+pkgrel=2
 arch=(any)
 url="https://github.com/vsajip/python-gnupg/;
 license=(BSD-3-Clause)



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gnupg/-/commit/c8e039348c23ee96c4d92d401eb6554ea81eb997
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-gnupg] Pushed new tag 0.5.2-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.5.2-2 at Arch Linux / Packaging / Packages / 
python-gnupg

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-gnupg/-/tree/0.5.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/py3status] Pushed new tag 3.57-4

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 3.57-4 at Arch Linux / Packaging / Packages / 
py3status

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/py3status/-/tree/3.57-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/py3status][main] upgpkg: 3.57-4: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
py3status


Commits:
38dc209f by Robin Candau at 2024-04-04T14:18:40+02:00
upgpkg: 3.57-4: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = py3status
pkgdesc = An extensible i3status replacement/wrapper written in python
pkgver = 3.57
-   pkgrel = 3
+   pkgrel = 4
url = https://ultrabug.github.io/py3status/
arch = any
license = BSD-3-Clause


=
PKGBUILD
=
@@ -7,7 +7,7 @@
 
 pkgname=py3status
 pkgver=3.57
-pkgrel=3
+pkgrel=4
 pkgdesc="An extensible i3status replacement/wrapper written in python"
 url="https://ultrabug.github.io/py3status/;
 arch=('any')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/py3status/-/commit/38dc209f851265712f346553fcbb880ec74c9799

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/py3status/-/commit/38dc209f851265712f346553fcbb880ec74c9799
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hyfetch][main] upgpkg: 1.4.11-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
hyfetch


Commits:
47b8bf6d by Robin Candau at 2024-04-04T14:05:37+02:00
upgpkg: 1.4.11-2: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,13 +1,12 @@
 pkgbase = hyfetch
pkgdesc = Neofetch with LGBTQ+ pride flags!
pkgver = 1.4.11
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/hykilpikonna/hyfetch
arch = any
license = MIT
depends = python-setuptools
depends = python-typing_extensions
-   depends = python-importlib-metadata
source = 
hyfetch-1.4.11.tar.gz::https://github.com/hykilpikonna/hyfetch/archive/1.4.11.tar.gz
sha256sums = 
79cd6706a681fa7c05754b35d9338abf96bebce222c27376a4155e94d6a5350d
 


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[hyfetch]
+source = "github"
+github = "hykilpikonna/hyfetch"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -3,12 +3,12 @@
 
 pkgname=hyfetch
 pkgver=1.4.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Neofetch with LGBTQ+ pride flags!"
 arch=('any')
 url='https://github.com/hykilpikonna/hyfetch'
 license=('MIT')
-depends=('python-setuptools' 'python-typing_extensions' 
'python-importlib-metadata')
+depends=('python-setuptools' 'python-typing_extensions')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
 sha256sums=('79cd6706a681fa7c05754b35d9338abf96bebce222c27376a4155e94d6a5350d')
 



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hyfetch/-/commit/47b8bf6dbe505de69aade1e8a95e6b1913e5a21f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hyfetch/-/commit/47b8bf6dbe505de69aade1e8a95e6b1913e5a21f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hyfetch] Pushed new tag 1.4.11-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.4.11-2 at Arch Linux / Packaging / Packages / 
hyfetch

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hyfetch/-/tree/1.4.11-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/glances][main] upgpkg: 3.4.0.5-3: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
glances


Commits:
8c71c2f2 by Robin Candau at 2024-04-04T13:42:31+02:00
upgpkg: 3.4.0.5-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = glances
pkgdesc = CLI curses-based monitoring tool
pkgver = 3.4.0.5
-   pkgrel = 2
+   pkgrel = 3
url = https://nicolargo.github.io/glances/
arch = any
license = LGPL-3.0-or-later
@@ -22,7 +22,7 @@ pkgbase = glances
optdepends = python-zeroconf: for the autodiscover mode
optdepends = python-pystache: templating engine
optdepends = python-prometheus_client: for the Prometheus export module
-   source = 
glances-3.4.0.5-2.tar.gz::https://github.com/nicolargo/glances/archive/v3.4.0.5.tar.gz
+   source = 
glances-3.4.0.5-3.tar.gz::https://github.com/nicolargo/glances/archive/v3.4.0.5.tar.gz
source = glances.service
sha512sums = 
aca140fedc2acc97ae4901722e0406acb8bea6eac5295d95499860a522e74d29ecbc4cfb28fecfd4a2879f4ee44175bd4efd2429b9d7e302b4a182caabd6a5f8
sha512sums = 
49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=glances
 pkgver=3.4.0.5
-pkgrel=2
+pkgrel=3
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
 url='https://nicolargo.github.io/glances/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/glances/-/commit/8c71c2f2e478e3d05650065d00d5b16090f60b32

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/glances/-/commit/8c71c2f2e478e3d05650065d00d5b16090f60b32
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/glances] Pushed new tag 3.4.0.5-3

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 3.4.0.5-3 at Arch Linux / Packaging / Packages / 
glances

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/glances/-/tree/3.4.0.5-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview][main] upgpkg: 2.0.1-2: Fix build

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
nfoview


Commits:
d0b61991 by Robin Candau at 2024-04-04T13:35:41+02:00
upgpkg: 2.0.1-2: Fix build

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = nfoview
pkgdesc = Simple NFO file viewer in GTK+ 3
pkgver = 2.0.1
-   pkgrel = 1
+   pkgrel = 2
url = https://otsaloma.io/nfoview/
arch = any
license = GPL-3.0-or-later


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=nfoview
 pkgver=2.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple NFO file viewer in GTK+ 3"
 arch=('any')
 url="https://otsaloma.io/nfoview/;
@@ -37,7 +37,7 @@ validpgpkeys=('8DD6B3FCDAB33C91EA915B913A584A9504CACA67') # 
Osmo Salomaa https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/d0b61991e893daeac52851ec3d94a970229bdb6c

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/d0b61991e893daeac52851ec3d94a970229bdb6c
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview] Pushed new tag 2.0.1-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.0.1-2 at Arch Linux / Packaging / Packages / 
nfoview

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/tree/2.0.1-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ansible][main] upgpkg: 9.4.0-3: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
ansible


Commits:
61e61e4a by Robin Candau at 2024-04-04T13:05:45+02:00
upgpkg: 9.4.0-3: Python 3.12 rebuild
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ansible
pkgdesc = Official assortment of Ansible collections
pkgver = 9.4.0
-   pkgrel = 2
+   pkgrel = 3
url = https://pypi.org/project/ansible/
arch = any
license = GPL-3.0-or-later


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=ansible
 pkgver=9.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Official assortment of Ansible collections'
 arch=('any')
 url='https://pypi.org/project/ansible/'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/commit/61e61e4aa27cab52a715884beeb4d9071c36d61e

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/commit/61e61e4aa27cab52a715884beeb4d9071c36d61e
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/ansible] Pushed new tag 9.4.0-3

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 9.4.0-3 at Arch Linux / Packaging / Packages / 
ansible

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible/-/tree/9.4.0-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/remmina][main] upgpkg: 1:1.4.35-4: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
remmina


Commits:
be2bb7ef by Robin Candau at 2024-04-04T12:56:52+02:00
upgpkg: 1:1.4.35-4: Python 3.12 rebuild
https://archlinux.org/todo/python-312-rebuild-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = remmina
pkgdesc = remote desktop client written in GTK+
pkgver = 1.4.35
-   pkgrel = 3
+   pkgrel = 4
epoch = 1
url = https://www.remmina.org/
arch = x86_64


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 pkgname=remmina
 epoch=1
 pkgver=1.4.35
-pkgrel=3
+pkgrel=4
 pkgdesc="remote desktop client written in GTK+"
 url="https://www.remmina.org/;
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/commit/be2bb7efcb3ac7ba702f3efd6895fe717ec1fe93

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/commit/be2bb7efcb3ac7ba702f3efd6895fe717ec1fe93
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/remmina] Pushed new tag 1-1.4.35-4

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1-1.4.35-4 at Arch Linux / Packaging / Packages / 
remmina

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/tree/1-1.4.35-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hexchat][main] upgpkg: 2.16.2-2: Python 3.12 rebuild

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
hexchat


Commits:
60249bd6 by Robin Candau at 2024-04-04T12:54:01+02:00
upgpkg: 2.16.2-2: Python 3.12 rebuild
https://archlinux.org/todo/python-312-rebuild-part-1/

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = hexchat
pkgdesc = A popular and easy to use graphical IRC (chat) client
pkgver = 2.16.2
-   pkgrel = 1
+   pkgrel = 2
url = https://hexchat.github.io/
arch = x86_64
license = GPL-2.0-or-later
@@ -12,6 +12,7 @@ pkgbase = hexchat
makedepends = meson
makedepends = perl
makedepends = python-cffi
+   makedepends = python-setuptools
depends = dbus-glib
depends = desktop-file-utils
depends = gdk-pixbuf2
@@ -27,6 +28,6 @@ pkgbase = hexchat
optdepends = perl: Perl plugin
optdepends = python-cffi: Python plugin
source = git+https://github.com/hexchat/hexchat.git#tag=v2.16.2
-   sha256sums = SKIP
+   sha256sums = 
5d9e457ba10ac756b96561db098bbb2bc7e63de4e1552be570f1b5175eddf313
 
 pkgname = hexchat


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[hexchat]
+source = "github"
+github = "hexchat/hexchat"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -5,21 +5,21 @@
 
 pkgname=hexchat
 pkgver=2.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A popular and easy to use graphical IRC (chat) client'
 arch=('x86_64')
 url='https://hexchat.github.io/'
 license=('GPL-2.0-or-later')
 depends=('dbus-glib' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk2'
  'libcanberra' 'openssl' 'pango' 'pciutils')
-makedepends=('git' 'intltool' 'iso-codes' 'lua' 'meson' 'perl' 'python-cffi')
+makedepends=('git' 'intltool' 'iso-codes' 'lua' 'meson' 'perl' 'python-cffi' 
'python-setuptools')
 optdepends=('enchant: Spell check'
 'iso-codes: Display language names instead of codes'
 'lua: Lua plugin'
 'perl: Perl plugin'
 'python-cffi: Python plugin')
 source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver};)
-sha256sums=('SKIP')
+sha256sums=('5d9e457ba10ac756b96561db098bbb2bc7e63de4e1552be570f1b5175eddf313')
 
 build() {
   arch-meson hexchat build \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hexchat/-/commit/60249bd6129e14004dfddc7dfcdd383f2b1a2160

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hexchat/-/commit/60249bd6129e14004dfddc7dfcdd383f2b1a2160
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/hexchat] Pushed new tag 2.16.2-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.16.2-2 at Arch Linux / Packaging / Packages / 
hexchat

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hexchat/-/tree/2.16.2-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview][main] upgpkg: 2.0.1-1: New upstream release

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
nfoview


Commits:
fd857e29 by Robin Candau at 2024-04-04T12:16:13+02:00
upgpkg: 2.0.1-1: New upstream release
https://github.com/otsaloma/nfoview/releases/tag/2.0.1

- - - - -


2 changed files:

- + .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,26 @@
+pkgbase = nfoview
+   pkgdesc = Simple NFO file viewer in GTK+ 3
+   pkgver = 2.0.1
+   pkgrel = 1
+   url = https://otsaloma.io/nfoview/
+   arch = any
+   license = GPL-3.0-or-later
+   checkdepends = python-pytest
+   checkdepends = xorg-server-xvfb
+   makedepends = git
+   makedepends = python-build
+   makedepends = python-installer
+   makedepends = python-setuptools
+   makedepends = python-wheel
+   depends = gobject-introspection-runtime
+   depends = gtk4
+   depends = hicolor-icon-theme
+   depends = pango
+   depends = python
+   depends = python-gobject
+   optdepends = ttf-cascadia-code: recommended font
+   source = git+https://github.com/otsaloma/nfoview.git?signed#tag=2.0.1
+   validpgpkeys = 8DD6B3FCDAB33C91EA915B913A584A9504CACA67
+   sha256sums = 
9d75dcbc2dade5c8225cc47dc6ee9c97773da8c5e54920867a7990f4d9b2c53b
+
+pkgname = nfoview


=
PKGBUILD
=
@@ -1,14 +1,14 @@
-# Maintainer: David Runge 
+# Maintainer: Robin Candau 
+# Contributor: David Runge 
 # Contributor: Ray Rashif 
 # Contributor: Wes Brewer 
 # Contributor: VuDu 
 
 pkgname=nfoview
-pkgver=1.99
-_commit=839fbd127765b1d608e3587321e0464d97adb4a2  # refs/tags/1.99
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc="Simple NFO file viewer in GTK+ 3"
-arch=(any)
+arch=('any')
 url="https://otsaloma.io/nfoview/;
 license=(GPL-3.0-or-later)
 depends=(
@@ -31,27 +31,22 @@ makedepends=(
   python-wheel
 )
 optdepends=('ttf-cascadia-code: recommended font')
-source=($pkgname::git+https://github.com/otsaloma/$pkgname.git#tag=$_commit?signed)
-sha512sums=('SKIP')
+source=("git+https://github.com/otsaloma/${pkgname}.git?signed#tag=${pkgver};)
+sha256sums=('9d75dcbc2dade5c8225cc47dc6ee9c97773da8c5e54920867a7990f4d9b2c53b')
 validpgpkeys=('8DD6B3FCDAB33C91EA915B913A584A9504CACA67') # Osmo Salomaa 

 
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
 build() {
-  make -C $pkgname
+   cd "${pkgname}"
+   make
 }
 
 check() {
-  cd $pkgname
-  xvfb-run pytest -v $pkgname
+   cd "${pkgname}"
+   xvfb-run pytest -v "${pkgname}"
 }
 
 package() {
-  make DESTDIR="$pkgdir" PREFIX=/usr install -C $pkgname
-  install -vDm 644 $pkgname/{AUTHORS,NEWS,README}.md -t 
"$pkgdir/usr/share/doc/$pkgname/"
+   cd "${pkgname}"
+   make PREFIX=/usr DESTDIR="${pkgdir}" install
+   install -Dm 644 {AUTHORS,NEWS,README}.md -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
 }
-
-# vim:set ts=2 sw=2 et:



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/fd857e29b4cc185776c6c860dfa473aea7ee1701

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/commit/fd857e29b4cc185776c6c860dfa473aea7ee1701
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/nfoview] Pushed new tag 2.0.1-1

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.0.1-1 at Arch Linux / Packaging / Packages / 
nfoview

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/nfoview/-/tree/2.0.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libcgif][main] upgpkg: 0.4.0-1: New upstream release

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
libcgif


Commits:
fcc9cdbc by Robin Candau at 2024-04-04T11:57:34+02:00
upgpkg: 0.4.0-1: New upstream release
https://github.com/dloebl/cgif/releases/tag/v0.4.0

- - - - -


3 changed files:

- + .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -0,0 +1,13 @@
+pkgbase = libcgif
+   pkgdesc = A fast and lightweight GIF encoding library
+   pkgver = 0.4.0
+   pkgrel = 1
+   url = https://github.com/dloebl/cgif
+   arch = x86_64
+   license = MIT
+   makedepends = meson
+   depends = glibc
+   source = 
libcgif-0.4.0.tar.gz::https://github.com/dloebl/cgif/archive/v0.4.0.tar.gz
+   sha256sums = 
130ff8a604f047449e81f818bd0e03826b5f468e989b02726b16b7d4742e
+
+pkgname = libcgif


=
.nvchecker.toml
=
@@ -0,0 +1,6 @@
+[libcgif]
+source = "github"
+github = "dloebl/cgif"
+prefix = "V"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Daniel Löbl 
 
 pkgname=libcgif
-pkgver=0.3.2
+pkgver=0.4.0
 pkgrel=1
 pkgdesc='A fast and lightweight GIF encoding library'
 arch=('x86_64')
@@ -10,8 +10,8 @@ url="https://github.com/dloebl/cgif;
 license=('MIT')
 depends=('glibc')
 makedepends=('meson')
-source=(https://github.com/dloebl/cgif/archive/V${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('0abf83b7617f4793d9ab3a4d581f4e8d7548b56a29e3f95b0505f842cbfd7f95')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('130ff8a604f047449e81f818bd0e03826b5f468e989b02726b16b7d4742e')
 
 build() {
meson build "cgif-${pkgver}" --prefix=/usr



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcgif/-/commit/fcc9cdbcd51a16e328ae33a754fb98caafd4d6a6

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcgif/-/commit/fcc9cdbcd51a16e328ae33a754fb98caafd4d6a6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/libcgif] Pushed new tag 0.4.0-1

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.4.0-1 at Arch Linux / Packaging / Packages / 
libcgif

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libcgif/-/tree/0.4.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fastfetch][main] upgpkg: 2.9.0-1: New upstream release

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
fastfetch


Commits:
54729cb1 by Robin Candau at 2024-04-04T11:36:42+02:00
upgpkg: 2.9.0-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = fastfetch
pkgdesc = Like Neofetch, but much faster because written in C
-   pkgver = 2.8.10
-   pkgrel = 2
+   pkgver = 2.9.0
+   pkgrel = 1
url = https://github.com/fastfetch-cli/fastfetch
arch = x86_64
license = MIT
@@ -19,7 +19,6 @@ pkgbase = fastfetch
makedepends = mesa
makedepends = ocl-icd
makedepends = opencl-headers
-   makedepends = pciutils
makedepends = vulkan-headers
makedepends = vulkan-icd-loader
makedepends = wayland
@@ -38,12 +37,12 @@ pkgbase = fastfetch
optdepends = mesa: Needed by the OpenGL module for gl context creation.
optdepends = libxrandr: Multi monitor support
optdepends = ocl-icd: OpenCL module
-   optdepends = pciutils: GPU output
+   optdepends = hwdata: GPU output
optdepends = vulkan-icd-loader: Vulkan module & fallback for GPU output
optdepends = xfconf: Needed for XFWM theme and XFCE Terminal font
optdepends = zlib: Faster image output when using kitty graphics 
protocol
optdepends = libdrm: Displays detection
-   source = 
fastfetch-2.8.10.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.8.10.tar.gz
-   sha256sums = 
e3ea8388d79cc02ed1a6e45b8e5fec4068507ca03923386bdc9a7b3ff02d2a52
+   source = 
fastfetch-2.9.0.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.9.0.tar.gz
+   sha256sums = 
ae0b0d0bf4d4569fb5dff6b1d67bc8d2091ed4a9aec6ab43c2c73430dff1f9dc
 
 pkgname = fastfetch


=
PKGBUILD
=
@@ -2,8 +2,8 @@
 # Contributor: Mark Wagie 
 
 pkgname=fastfetch
-pkgver=2.8.10
-pkgrel=2
+pkgver=2.9.0
+pkgrel=1
 pkgdesc="Like Neofetch, but much faster because written in C"
 arch=('x86_64')
 url="https://github.com/fastfetch-cli/fastfetch;
@@ -24,7 +24,6 @@ makedepends=(
   'mesa'
   'ocl-icd'
   'opencl-headers'
-  'pciutils'
   'vulkan-headers'
   'vulkan-icd-loader'
   'wayland'
@@ -44,14 +43,14 @@ optdepends=(
   'mesa: Needed by the OpenGL module for gl context creation.'
   'libxrandr: Multi monitor support'
   'ocl-icd: OpenCL module'
-  'pciutils: GPU output'
+  'hwdata: GPU output'
   'vulkan-icd-loader: Vulkan module & fallback for GPU output'
   'xfconf: Needed for XFWM theme and XFCE Terminal font'
   'zlib: Faster image output when using kitty graphics protocol'
   'libdrm: Displays detection'
 )
 
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
-sha256sums=('e3ea8388d79cc02ed1a6e45b8e5fec4068507ca03923386bdc9a7b3ff02d2a52')
+sha256sums=('ae0b0d0bf4d4569fb5dff6b1d67bc8d2091ed4a9aec6ab43c2c73430dff1f9dc')
 
 build() {
cmake -B build -S "${pkgname}-${pkgver}" \



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/commit/54729cb1f5d41daf404a15ab6e2af5ba056d029f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/commit/54729cb1f5d41daf404a15ab6e2af5ba056d029f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/fastfetch] Pushed new tag 2.9.0-1

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.9.0-1 at Arch Linux / Packaging / Packages / 
fastfetch

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/fastfetch/-/tree/2.9.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-ps][main] upgpkg: 0.2.7-6: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-ps


Commits:
6574bb10 by Robin Candau at 2024-04-04T11:20:27+02:00
upgpkg: 0.2.7-6: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura-ps
pkgdesc = Adds ps support to zathura by using the libspectre library
pkgver = 0.2.7
-   pkgrel = 5
+   pkgrel = 6
url = https://pwmt.org/projects/zathura-ps
arch = x86_64
license = Zlib
@@ -10,7 +10,7 @@ pkgbase = zathura-ps
depends = libspectre
depends = zathura
depends = desktop-file-utils
-   source = 
zathura-ps-0.2.7.tar.gz::https://github.com/pwmt/zathura-ps/archive/0.2.7.tar.gz
+   source = 
zathura-ps-0.2.7.tar.gz::https://git.pwmt.org/pwmt/zathura-ps/-/archive/0.2.7/zathura-ps-0.2.7.tar.gz
sha512sums = 
b7074d941180938cc5ab3756c587d2bb7e6a87a04707c04eb9707664966ef6fb2f2b8e7b60cb5be0a2548ebb8ab4d2759aa9727f02085946fe6c66a0c559639d
 
 pkgname = zathura-ps


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[zathura-ps]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/zathura-ps"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -5,23 +5,24 @@
 
 pkgname=zathura-ps
 pkgver=0.2.7
-pkgrel=5
+pkgrel=6
 pkgdesc="Adds ps support to zathura by using the libspectre library"
 url="https://pwmt.org/projects/zathura-ps;
 arch=('x86_64')
 license=('Zlib')
 depends=('libspectre' 'zathura' 'desktop-file-utils')
 makedepends=('meson' 'ninja')
-source=(zathura-ps-$pkgver.tar.gz::https://github.com/pwmt/zathura-ps/archive/$pkgver.tar.gz)
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('b7074d941180938cc5ab3756c587d2bb7e6a87a04707c04eb9707664966ef6fb2f2b8e7b60cb5be0a2548ebb8ab4d2759aa9727f02085946fe6c66a0c559639d')
 
-build(){
-  cd zathura-ps-$pkgver
-  arch-meson build
-  ninja -C build
+build() {
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
-package(){
-  DESTDIR="$pkgdir" ninja -C zathura-ps-$pkgver/build install
-  install -Dm0644 zathura-ps-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+package() {
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-ps/-/commit/6574bb109a1276bdf199468dfaff7f6e56618e29

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-ps/-/commit/6574bb109a1276bdf199468dfaff7f6e56618e29
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-ps] Pushed new tag 0.2.7-6

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.2.7-6 at Arch Linux / Packaging / Packages / 
zathura-ps

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-ps/-/tree/0.2.7-6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-djvu][main] upgpkg: 0.2.9-6: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-djvu


Commits:
923bc6c0 by Robin Candau at 2024-04-04T11:15:39+02:00
upgpkg: 0.2.9-6: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura-djvu
pkgdesc = DjVu support for Zathura
pkgver = 0.2.9
-   pkgrel = 5
+   pkgrel = 6
url = https://pwmt.org/projects/zathura-djvu/
arch = x86_64
license = Zlib
@@ -10,7 +10,7 @@ pkgbase = zathura-djvu
depends = djvulibre
depends = zathura
depends = desktop-file-utils
-   source = 
zathura-djvu-0.2.9.tar.gz::https://github.com/pwmt/zathura-djvu/archive/0.2.9.tar.gz
-   sha256sums = 
84fae6da42e7cdc2e49ed4cd4f0315ac09716e95358b9c7487803a2cff47dbca
+   source = 
zathura-djvu-0.2.9.tar.gz::https://git.pwmt.org/pwmt/zathura-djvu/-/archive/0.2.9/zathura-djvu-0.2.9.tar.gz
+   sha512sums = 
54fca6bac30b73caf5ba882b2a52538845b9f2c5bcdc671071b2324ba6e1844510a400c87f17ea91ee5dbb768bc94a989df6657ee701041c924607fa846ba3f7
 
 pkgname = zathura-djvu


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[zathura-djvu]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/zathura-djvu"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,24 +6,24 @@
 
 pkgname=zathura-djvu
 pkgver=0.2.9
-pkgrel=5
+pkgrel=6
 pkgdesc="DjVu support for Zathura"
 url="https://pwmt.org/projects/zathura-djvu/;
 arch=('x86_64')
 license=('Zlib')
 depends=('djvulibre' 'zathura' 'desktop-file-utils')
 makedepends=('meson' 'ninja')
-source=(zathura-djvu-$pkgver.tar.gz::https://github.com/pwmt/zathura-djvu/archive/$pkgver.tar.gz)
-sha256sums=('84fae6da42e7cdc2e49ed4cd4f0315ac09716e95358b9c7487803a2cff47dbca')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('54fca6bac30b73caf5ba882b2a52538845b9f2c5bcdc671071b2324ba6e1844510a400c87f17ea91ee5dbb768bc94a989df6657ee701041c924607fa846ba3f7')
 
-build(){
-  cd zathura-djvu-$pkgver
-  arch-meson build
-  ninja -C build
+build() {
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
-package(){
-  DESTDIR="$pkgdir" ninja -C zathura-djvu-$pkgver/build install
-  install -Dm0644 zathura-djvu-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+package() {
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
-



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-djvu/-/commit/923bc6c0c1c908171de0d6aae16fcb40e99ac9f5

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-djvu/-/commit/923bc6c0c1c908171de0d6aae16fcb40e99ac9f5
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-djvu] Pushed new tag 0.2.9-6

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.2.9-6 at Arch Linux / Packaging / Packages / 
zathura-djvu

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-djvu/-/tree/0.2.9-6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-cb][main] upgpkg: 0.1.10-6: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-cb


Commits:
dd4ee0fd by Robin Candau at 2024-04-04T11:12:53+02:00
upgpkg: 0.1.10-6: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura-cb
pkgdesc = Adds comic book support to zathura
pkgver = 0.1.10
-   pkgrel = 5
+   pkgrel = 6
url = https://pwmt.org/projects/zathura-cb/
arch = x86_64
license = Zlib
@@ -10,7 +10,7 @@ pkgbase = zathura-cb
depends = zathura
depends = libarchive
depends = desktop-file-utils
-   source = 
zathura-cb-0.1.10.tar.gz::https://pwmt.org/projects/zathura-cb/download/zathura-cb-0.1.10.tar.xz
-   sha256sums = 
89b0ca17a80cba1ea9fd1b3b72f3a7173f0aad3a06a8c364d865c4999c18bbc8
+   source = 
zathura-cb-0.1.10.tar.gz::https://git.pwmt.org/pwmt/zathura-cb/-/archive/0.1.10/zathura-cb-0.1.10.tar.gz
+   sha512sums = 
5f0de7b6991ca35996b9fc1d32527618b3d0df813d7803ceb7bfcd24762262ab780b01cc8f8aac5ffeb7ca42fac2ba65fd90f74000c9b1bc686d4c4af6ad2a69
 
 pkgname = zathura-cb


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[zathura-cb]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/zathura-cb"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -1,29 +1,27 @@
 # Maintainer: Johannes Löthberg 
 # Maintainer: Robin Candau 
 # Contributor: Lex Black 
+
 pkgname=zathura-cb
 pkgver=0.1.10
-pkgrel=5
+pkgrel=6
 pkgdesc="Adds comic book support to zathura"
 url="https://pwmt.org/projects/zathura-cb/;
 arch=('x86_64')
 license=('Zlib')
 depends=('zathura' 'libarchive' 'desktop-file-utils')
 makedepends=('meson' 'ninja')
-source=(zathura-cb-$pkgver.tar.gz::https://pwmt.org/projects/zathura-cb/download/zathura-cb-$pkgver.tar.xz)
-sha256sums=('89b0ca17a80cba1ea9fd1b3b72f3a7173f0aad3a06a8c364d865c4999c18bbc8')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5f0de7b6991ca35996b9fc1d32527618b3d0df813d7803ceb7bfcd24762262ab780b01cc8f8aac5ffeb7ca42fac2ba65fd90f74000c9b1bc686d4c4af6ad2a69')
 
 build() {
-  cd zathura-cb-$pkgver
-  arch-meson build
-
-  cd build
-  ninja
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
 package() {
-  cd zathura-cb-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-  install -Dm664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-cb/-/commit/dd4ee0fd5ef4d46d7ee3a9eeb207aa62703ac5c3

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-cb/-/commit/dd4ee0fd5ef4d46d7ee3a9eeb207aa62703ac5c3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-cb] Pushed new tag 0.1.10-6

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.1.10-6 at Arch Linux / Packaging / Packages / 
zathura-cb

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-cb/-/tree/0.1.10-6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-poppler][main] upgpkg: 0.3.2-4: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-pdf-poppler


Commits:
914ccc8c by Robin Candau at 2024-04-04T11:02:27+02:00
upgpkg: 0.3.2-4: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura-pdf-poppler
pkgdesc = Adds pdf support to zathura by using the poppler engine
pkgver = 0.3.2
-   pkgrel = 3
+   pkgrel = 4
url = https://pwmt.org/projects/zathura-pdf-poppler/
arch = x86_64
license = Zlib
@@ -10,7 +10,7 @@ pkgbase = zathura-pdf-poppler
depends = poppler-glib
depends = zathura
depends = desktop-file-utils
-   source = 
zathura-pdf-poppler-0.3.2.tar.gz::https://github.com/pwmt/zathura-pdf-poppler/archive/0.3.2.tar.gz
-   sha256sums = 
2e64e59ed46b0d93fbad70eca9a77cc720c5909c988b0b6637333504da52b23d
+   source = 
zathura-pdf-poppler-0.3.2.tar.gz::https://git.pwmt.org/pwmt/zathura-pdf-poppler/-/archive/0.3.2/zathura-pdf-poppler-0.3.2.tar.gz
+   sha512sums = 
5e6d748f9dfcc9e318ee7947d3a4d9acbbb30d6b45810a7c2fd2d0572d98872f5d594add8683b6579791fb82846a3d7854e84239ac5167c0541e700518a31043
 
 pkgname = zathura-pdf-poppler


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[zathura-pdf-poppler]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/zathura-pdf-poppler"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,23 +6,24 @@
 
 pkgname=zathura-pdf-poppler
 pkgver=0.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Adds pdf support to zathura by using the poppler engine"
 url="https://pwmt.org/projects/zathura-pdf-poppler/;
 arch=('x86_64')
 license=('Zlib')
 depends=('poppler-glib' 'zathura' 'desktop-file-utils')
 makedepends=('meson' 'ninja')
-source=(zathura-pdf-poppler-$pkgver.tar.gz::https://github.com/pwmt/zathura-pdf-poppler/archive/$pkgver.tar.gz)
-sha256sums=('2e64e59ed46b0d93fbad70eca9a77cc720c5909c988b0b6637333504da52b23d')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5e6d748f9dfcc9e318ee7947d3a4d9acbbb30d6b45810a7c2fd2d0572d98872f5d594add8683b6579791fb82846a3d7854e84239ac5167c0541e700518a31043')
 
 build() {
-  cd zathura-pdf-poppler-$pkgver
-  arch-meson build
-  ninja -C build
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
-package(){
-  DESTDIR="$pkgdir" ninja -C zathura-pdf-poppler-$pkgver/build install
-  install -Dm0644 zathura-pdf-poppler-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+package() {
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-poppler/-/commit/914ccc8ce329f656212edc600ee4e367172d640f

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-poppler/-/commit/914ccc8ce329f656212edc600ee4e367172d640f
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-poppler] Pushed new tag 0.3.2-4

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.3.2-4 at Arch Linux / Packaging / Packages / 
zathura-pdf-poppler

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-poppler/-/tree/0.3.2-4
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-mupdf][main] Switch to sha512sums

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-pdf-mupdf


Commits:
ae289fc5 by Robin Candau at 2024-04-04T10:57:46+02:00
Switch to sha512sums

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -19,7 +19,7 @@ pkgbase = zathura-pdf-mupdf
conflicts = zathura-pdf-poppler
source = 
zathura-pdf-mupdf-0.4.1.tar.gz::https://git.pwmt.org/pwmt/zathura-pdf-mupdf/-/archive/0.4.1/zathura-pdf-mupdf-0.4.1.tar.gz
source = 0001-Remove-mupdf-linking-detection.patch
-   sha256sums = 
3cf142bfd189ee2cd0130d18a6c202bbc188f172695642a46556e824bd78b9aa
-   sha256sums = 
b72a21f697ffb6183345db62c3e7f97974ac7747a34587e0c84a4e5b87848af0
+   sha512sums = 
bf3360cdf6195af3cace4c769536a49f1cf2167c70a65b560410db1a0098119d726e73baeea98ca7100653c17248056c484fc436558e52a8dc12e7b83ce789b1
+   sha512sums = 
4a6dff37fd25714b85118bf0161bfe83d337ac0fe486560c520fe7f1b56be54edc80e26851c031aa899a8435eee5baf3870d3fe7a6f4207d894931c10efd4835
 
 pkgname = zathura-pdf-mupdf


=
PKGBUILD
=
@@ -16,8 +16,8 @@ depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 
'libmupdf' 'openjpeg2' 'ope
 makedepends=('meson' 'ninja' 'git')
 
source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
 0001-Remove-mupdf-linking-detection.patch)
-sha256sums=('3cf142bfd189ee2cd0130d18a6c202bbc188f172695642a46556e824bd78b9aa'
-'b72a21f697ffb6183345db62c3e7f97974ac7747a34587e0c84a4e5b87848af0')
+sha512sums=('bf3360cdf6195af3cace4c769536a49f1cf2167c70a65b560410db1a0098119d726e73baeea98ca7100653c17248056c484fc436558e52a8dc12e7b83ce789b1'
+
'4a6dff37fd25714b85118bf0161bfe83d337ac0fe486560c520fe7f1b56be54edc80e26851c031aa899a8435eee5baf3870d3fe7a6f4207d894931c10efd4835')
 
 prepare() {
 cd "${pkgname}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/ae289fc5a9f76dba7177d3867ff318d05dc3ba70

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/ae289fc5a9f76dba7177d3867ff318d05dc3ba70
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/girara][main] Harmonise every zathura related PKGBUILD

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / girara


Commits:
8d20bb8d by Robin Candau at 2024-04-04T10:55:01+02:00
Harmonise every zathura related PKGBUILD

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -21,20 +21,18 @@ 
source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/arc
 
sha512sums=('0dcde66101f5779c879f5847e8cb9d5777c6fa803733b6fe9c05e17385b608cc02f2e119d456aa4810f623290057e9344bbcc6a64b4b36b4733b60b7e8d885b6')
 
 build() {
-   cd "${pkgname}-${pkgver}"
-   arch-meson build
-
-   cd build
-   ninja
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
 check() {
-   cd "${pkgname}-${pkgver}/build"
-   ninja test
+cd "${pkgname}-${pkgver}"
+ninja -C build test
 }
 
 package() {
-   cd "${pkgname}-${pkgver}/build"
-   DESTDIR="${pkgdir}/" ninja install
-   install -Dm 664 ../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/commit/8d20bb8d16eac21104316fa8a47836721319d2d8

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/commit/8d20bb8d16eac21104316fa8a47836721319d2d8
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-mupdf][main] Harmonise every zathura related PKGBUILD

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-pdf-mupdf


Commits:
82fbdbbd by Robin Candau at 2024-04-04T10:51:10+02:00
Harmonise every zathura related PKGBUILD

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -14,7 +14,7 @@ license=('Zlib')
 conflicts=('zathura-pdf-poppler')
 depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'libmupdf' 'openjpeg2' 
'openssl' 'zathura')
 makedepends=('meson' 'ninja' 'git')
-source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/zathura-pdf-mupdf/-/archive/${pkgver}/zathura-pdf-mupdf-${pkgver}.tar.gz;
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
 0001-Remove-mupdf-linking-detection.patch)
 sha256sums=('3cf142bfd189ee2cd0130d18a6c202bbc188f172695642a46556e824bd78b9aa'
 'b72a21f697ffb6183345db62c3e7f97974ac7747a34587e0c84a4e5b87848af0')
@@ -30,7 +30,8 @@ build() {
 ninja -C build
 }
 
-package(){
-   DESTDIR="${pkgdir}" ninja -C "${pkgname}-${pkgver}/build" install
-   install -Dm 644 "${pkgname}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+package() {
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/82fbdbbd2af0121f4901ad45a20006938b6bbcda

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/82fbdbbd2af0121f4901ad45a20006938b6bbcda
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura][main] Harmonise every zathura related PKGBUILD

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura


Commits:
d7bc0617 by Robin Candau at 2024-04-04T10:47:21+02:00
Harmonise every zathura related PKGBUILD

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -23,20 +23,18 @@ 
source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/arc
 
sha512sums=('b26e5987c54361d15710c48c2ad54dd49d986c0629871d86fdfe91aae26662501ae8f620ebec5cad9078b25ee7bf46d3aa53764c16afee18c450b1142c429558')
 
 build() {
-   cd "${pkgname}-${pkgver}"
-   arch-meson build
-
-   cd build
-   ninja
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
 check() {
-   cd "${pkgname}-${pkgver}/build"
-   ninja test
+cd "${pkgname}-${pkgver}"
+ninja -C build test
 }
 
 package() {
-   cd "${pkgname}-${pkgver}/build"
-   DESTDIR="${pkgdir}/" ninja install
-   install -Dm 664 ../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+cd "${pkgname}-${pkgver}"
+DESTDIR="${pkgdir}" ninja -C build install
+install -Dm 664 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura/-/commit/d7bc0617819c85153914cffbe831e783844152be

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura/-/commit/d7bc0617819c85153914cffbe831e783844152be
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura][main] upgpkg: 0.5.5-2: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura


Commits:
a30d07ce by Robin Candau at 2024-04-04T10:27:38+02:00
upgpkg: 0.5.5-2: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura
pkgdesc = Minimalistic document viewer
pkgver = 0.5.5
-   pkgrel = 1
+   pkgrel = 2
url = https://pwmt.org/projects/zathura/
arch = x86_64
license = Zlib
@@ -24,7 +24,7 @@ pkgbase = zathura
optdepends = zathura-pdf-mupdf: PDF support using MuPDF
optdepends = zathura-ps: PostScript support
optdepends = zathura-cb: Comic book support
-   source = 
zathura-0.5.5.tar.gz::https://deb.debian.org/debian/pool/main/z/zathura/zathura_0.5.5.orig.tar.xz
-   sha256sums = 
eb5d7af54bb0fc88f5f03f6be3fc3a18bfddd28d93ed9e6136bbdb8ff3baf88f
+   source = 
zathura-0.5.5.tar.gz::https://git.pwmt.org/pwmt/zathura/-/archive/0.5.5/zathura-0.5.5.tar.gz
+   sha512sums = 
b26e5987c54361d15710c48c2ad54dd49d986c0629871d86fdfe91aae26662501ae8f620ebec5cad9078b25ee7bf46d3aa53764c16afee18c450b1142c429558
 
 pkgname = zathura


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[zathura]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/zathura"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=zathura
 pkgver=0.5.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Minimalistic document viewer"
 url="https://pwmt.org/projects/zathura/;
 arch=('x86_64')
@@ -19,29 +19,24 @@ optdepends=('zathura-djvu: DjVu support'
 'zathura-pdf-mupdf: PDF support using MuPDF'
 'zathura-ps: PostScript support'
 'zathura-cb: Comic book support')
-# Temporarily switch sources while waiting for upstream to fix sources 
uploading on the pwmt.org website
-# See https://git.pwmt.org/pwmt/zathura/-/issues/407#note_2414
-source=(zathura-$pkgver.tar.gz::https://deb.debian.org/debian/pool/main/z/zathura/zathura_$pkgver.orig.tar.xz)
-#source=(zathura-$pkgver.tar.gz::https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.xz)
-sha256sums=('eb5d7af54bb0fc88f5f03f6be3fc3a18bfddd28d93ed9e6136bbdb8ff3baf88f')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b26e5987c54361d15710c48c2ad54dd49d986c0629871d86fdfe91aae26662501ae8f620ebec5cad9078b25ee7bf46d3aa53764c16afee18c450b1142c429558')
 
 build() {
-  cd zathura-$pkgver
-  arch-meson build
+   cd "${pkgname}-${pkgver}"
+   arch-meson build
 
-  cd build
-  ninja
+   cd build
+   ninja
 }
 
 check() {
-  cd zathura-$pkgver/build
-
-  ninja test
+   cd "${pkgname}-${pkgver}/build"
+   ninja test
 }
 
 package() {
-  cd zathura-$pkgver/build
-  DESTDIR="$pkgdir" ninja install
-
-  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+   cd "${pkgname}-${pkgver}/build"
+   DESTDIR="${pkgdir}/" ninja install
+   install -Dm 664 ../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura/-/commit/a30d07cecd718bff8ec93a7bba899c57f719ce10

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura/-/commit/a30d07cecd718bff8ec93a7bba899c57f719ce10
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura] Pushed new tag 0.5.5-2

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.5.5-2 at Arch Linux / Packaging / Packages / 
zathura

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura/-/tree/0.5.5-2
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/girara][main] Use pkgname var in source

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / girara


Commits:
0e026f4b by Robin Candau at 2024-04-04T10:25:32+02:00
Use pkgname var in source
That allows the source to be portable to all zathura related packages

- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -17,7 +17,7 @@ conflicts=('girara-gtk3' 'girara-common')
 depends=('gtk3' 'glib2' 'json-glib' 'pango' 'glibc')
 makedepends=('meson' 'ninja' 'doxygen' 'check')
 checkdepends=('xorg-server-xvfb')
-source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/girara/-/archive/${pkgver}/girara-${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('0dcde66101f5779c879f5847e8cb9d5777c6fa803733b6fe9c05e17385b608cc02f2e119d456aa4810f623290057e9344bbcc6a64b4b36b4733b60b7e8d885b6')
 
 build() {



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/commit/0e026f4b49402d77fe66718e64cff94e0becb1d6
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/girara][main] upgpkg: 0.4.3-3: Add .nvchecker.toml + Switch to auto generated source tarball

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / girara


Commits:
cef71bbb by Robin Candau at 2024-04-04T10:15:20+02:00
upgpkg: 0.4.3-3: Add .nvchecker.toml + Switch to auto generated source tarball

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = girara
pkgdesc = User interface library focused on simplicity and minimalism
pkgver = 0.4.3
-   pkgrel = 2
+   pkgrel = 3
url = https://pwmt.org/projects/girara
arch = x86_64
license = Zlib
@@ -21,7 +21,7 @@ pkgbase = girara
conflicts = girara-common
replaces = girara-gtk3
replaces = girara-common
-   source = 
girara-0.4.3.tar.gz::https://github.com/pwmt/girara/archive/0.4.3.tar.gz
+   source = 
girara-0.4.3.tar.gz::https://git.pwmt.org/pwmt/girara/-/archive/0.4.3/girara-0.4.3.tar.gz
sha512sums = 
0dcde66101f5779c879f5847e8cb9d5777c6fa803733b6fe9c05e17385b608cc02f2e119d456aa4810f623290057e9344bbcc6a64b4b36b4733b60b7e8d885b6
 
 pkgname = girara


=
.nvchecker.toml
=
@@ -0,0 +1,7 @@
+[girara]
+source = "gitlab"
+host = "git.pwmt.org"
+gitlab = "pwmt/girara"
+prefix = "v"
+use_max_tag = true
+exclude_regex = ".*(pre|a|alpha|b|beta|r|rc).*"


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=girara
 pkgver=0.4.3
-pkgrel=2
+pkgrel=3
 pkgdesc="User interface library focused on simplicity and minimalism"
 url="https://pwmt.org/projects/girara;
 arch=('x86_64')
@@ -17,28 +17,24 @@ conflicts=('girara-gtk3' 'girara-common')
 depends=('gtk3' 'glib2' 'json-glib' 'pango' 'glibc')
 makedepends=('meson' 'ninja' 'doxygen' 'check')
 checkdepends=('xorg-server-xvfb')
-
-source=(girara-$pkgver.tar.gz::https://github.com/pwmt/girara/archive/$pkgver.tar.gz)
-
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/girara/-/archive/${pkgver}/girara-${pkgver}.tar.gz;)
 
sha512sums=('0dcde66101f5779c879f5847e8cb9d5777c6fa803733b6fe9c05e17385b608cc02f2e119d456aa4810f623290057e9344bbcc6a64b4b36b4733b60b7e8d885b6')
 
 build() {
-  cd girara-$pkgver
-  arch-meson build
+   cd "${pkgname}-${pkgver}"
+   arch-meson build
 
-  cd build
-  ninja
+   cd build
+   ninja
 }
 
 check() {
-  cd girara-$pkgver/build
-
-  ninja test
+   cd "${pkgname}-${pkgver}/build"
+   ninja test
 }
 
 package() {
-  cd girara-$pkgver/build
-  DESTDIR="$pkgdir/" ninja install
-
-  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+   cd "${pkgname}-${pkgver}/build"
+   DESTDIR="${pkgdir}/" ninja install
+   install -Dm 664 ../LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/commit/cef71bbb5ed24b3229ccbd5c7afc2b215bdbd715

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/commit/cef71bbb5ed24b3229ccbd5c7afc2b215bdbd715
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/girara] Pushed new tag 0.4.3-3

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.4.3-3 at Arch Linux / Packaging / Packages / 
girara

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/girara/-/tree/0.4.3-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/remmina][main] upgpkg: 1:1.4.35-3: Add python as explicit dependency

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
remmina


Commits:
06186a47 by Robin Candau at 2024-04-04T10:04:04+02:00
upgpkg: 1:1.4.35-3: Add python as explicit dependency

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = remmina
pkgdesc = remote desktop client written in GTK+
pkgver = 1.4.35
-   pkgrel = 2
+   pkgrel = 3
epoch = 1
url = https://www.remmina.org/
arch = x86_64
@@ -35,6 +35,7 @@ pkgbase = remmina
depends = libx11
depends = openssl
depends = pango
+   depends = python
depends = vte3
optdepends = freerdp: RDP plugin
optdepends = libsecret: Secret plugin


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 pkgname=remmina
 epoch=1
 pkgver=1.4.35
-pkgrel=2
+pkgrel=3
 pkgdesc="remote desktop client written in GTK+"
 url="https://www.remmina.org/;
 arch=('x86_64')
@@ -27,6 +27,7 @@ depends=(
   'libx11'
   'openssl'
   'pango'
+  'python'
   'vte3'
 )
 makedepends=(



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/commit/06186a47e920fdf42f84d123a4dc4bd695c9f16c

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/commit/06186a47e920fdf42f84d123a4dc4bd695c9f16c
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/remmina] Pushed new tag 1-1.4.35-3

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1-1.4.35-3 at Arch Linux / Packaging / Packages / 
remmina

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/remmina/-/tree/1-1.4.35-3
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pymupdf][main] upgpkg: 1.24.1-1: New upstream release

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-pymupdf


Commits:
0edce659 by Robin Candau at 2024-04-04T09:51:07+02:00
upgpkg: 1.24.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-pymupdf
pkgdesc = Python bindings for MuPDF's rendering library
-   pkgver = 1.24.0
-   pkgrel = 2
+   pkgver = 1.24.1
+   pkgrel = 1
url = https://github.com/pymupdf/PyMuPDF
arch = x86_64
license = AGPL-3.0-or-later
@@ -24,11 +24,11 @@ pkgbase = python-pymupdf
depends = python-mupdf
optdepends = python-fonttools: for building font subsets using fontTools
optdepends = python-pillow: for image file saving using pillow
-   source = 
PyMuPDF-1.24.0.tar.gz::https://github.com/pymupdf/PyMuPDF/archive/refs/tags/1.24.0.tar.gz
+   source = 
PyMuPDF-1.24.1.tar.gz::https://github.com/pymupdf/PyMuPDF/archive/refs/tags/1.24.1.tar.gz
source = remove-clang-and-swig-dependencies.patch
-   sha512sums = 
2980701e47d01e20a582abdf9a18f9c67bf887834a0e3e7217f963bfe9e35e62836b9bea5591e5194159f907b95d09cebe63ea8d7bbe0177bae637d247f52e03
+   sha512sums = 
98a9e4be1eca4bdd1b75c654e307ce6a9dfc28f9d1defa20a8c98f288d1ff11a96fc62af7df1741fff5567a1b9a21771e5ac80202afdc26da92ef5f7fa11f852
sha512sums = 
fb2da9db1ba9b34ecfe6556d912659c36f9603eefeaa9836d2b692f42952955a6de10d8629a8f2bafd813aaf678782aca12033031b6ccc52c1bc1a4ee5fb897c
-   b2sums = 
c313c7ffc8a127b5ac5e642b77b86ef07c594808d2c3ada8e66e8d4ddd5aa5d1268edc9d8ab11cd211b7ad86ecae6e0c860ff4d49b5d6b4fad33179a6dd1fc01
+   b2sums = 
697e2c0a0e2ecb80505bcb63df6373de4aba1f39160608347fb0d38b3a1c8b67c18a969a89d7d9c0c3919a63aae50c9797588e8a6959157c8013eb4db690bedf
b2sums = 
8c4f93146385bd2e74b8245b4b8d8ece390ef97ad369602adcfcc56c8f9858f4c754886e290f0f6bfea1727fca6897715f3e8eeb961609fdad6fadf57493e354
 
 pkgname = python-pymupdf


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 _name=PyMuPDF
 pkgname=python-pymupdf
-pkgver=1.24.0
-pkgrel=2
+pkgver=1.24.1
+pkgrel=1
 pkgdesc="Python bindings for MuPDF's rendering library"
 arch=(x86_64)
 url="https://github.com/pymupdf/PyMuPDF;
@@ -41,9 +41,9 @@ source=(
   $_name-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz
   remove-clang-and-swig-dependencies.patch
 )
-sha512sums=('2980701e47d01e20a582abdf9a18f9c67bf887834a0e3e7217f963bfe9e35e62836b9bea5591e5194159f907b95d09cebe63ea8d7bbe0177bae637d247f52e03'
+sha512sums=('98a9e4be1eca4bdd1b75c654e307ce6a9dfc28f9d1defa20a8c98f288d1ff11a96fc62af7df1741fff5567a1b9a21771e5ac80202afdc26da92ef5f7fa11f852'
 
'fb2da9db1ba9b34ecfe6556d912659c36f9603eefeaa9836d2b692f42952955a6de10d8629a8f2bafd813aaf678782aca12033031b6ccc52c1bc1a4ee5fb897c')
-b2sums=('c313c7ffc8a127b5ac5e642b77b86ef07c594808d2c3ada8e66e8d4ddd5aa5d1268edc9d8ab11cd211b7ad86ecae6e0c860ff4d49b5d6b4fad33179a6dd1fc01'
+b2sums=('697e2c0a0e2ecb80505bcb63df6373de4aba1f39160608347fb0d38b3a1c8b67c18a969a89d7d9c0c3919a63aae50c9797588e8a6959157c8013eb4db690bedf'
 
'8c4f93146385bd2e74b8245b4b8d8ece390ef97ad369602adcfcc56c8f9858f4c754886e290f0f6bfea1727fca6897715f3e8eeb961609fdad6fadf57493e354')
 
 prepare() {
@@ -97,6 +97,8 @@ check() {
 --deselect tests/test_general.py::test_subset_fonts
 # we do not care about flake8
 --deselect tests/test_flake8.py::test_flake8
+# no point testing code quality on our side
+--deselect tests/test_pylint.py::test_pylint
   )
   local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
 



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pymupdf/-/commit/0edce65927b7476c8f49f3bb47f2c25223e71d43
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-pymupdf] Pushed new tag 1.24.1-1

2024-04-04 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.24.1-1 at Arch Linux / Packaging / Packages / 
python-pymupdf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pymupdf/-/tree/1.24.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-sentry_sdk][main] upgpkg: 1.44.1-1: New upstream release

2024-04-03 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-sentry_sdk


Commits:
93df08e9 by Robin Candau at 2024-04-03T18:35:22+02:00
upgpkg: 1.44.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-sentry_sdk
pkgdesc = The official Python SDK for Sentry.io
-   pkgver = 1.44.0
-   pkgrel = 2
+   pkgver = 1.44.1
+   pkgrel = 1
url = https://sentry.io/for/python
arch = any
license = MIT
@@ -30,7 +30,7 @@ pkgbase = python-sentry_sdk
optdepends = python-tornado: adds support for the Tornado Web Framework
optdepends = python-pure-eval: for richer stacktraces & additional 
variables
optdepends = python-executing: for richer stacktraces & better function 
names
-   source = 
https://github.com/getsentry/sentry-python/releases/download/1.44.0/sentry-sdk-1.44.0.tar.gz
-   sha256sums = 
f7125a9235795811962d52ff796dc032cd1d0dd98b59beaced8380371cd9c13c
+   source = 
https://github.com/getsentry/sentry-python/releases/download/1.44.1/sentry-sdk-1.44.1.tar.gz
+   sha256sums = 
24e6a53eeabffd2f95d952aa35ca52f0f4201d17f820ac9d3ff7244c665aaf68
 
 pkgname = python-sentry_sdk


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 pkgname=python-sentry_sdk
 _pkgname=sentry-sdk
-pkgver=1.44.0
-pkgrel=2
+pkgver=1.44.1
+pkgrel=1
 pkgdesc="The official Python SDK for Sentry.io"
 arch=('any')
 url="https://sentry.io/for/python;
@@ -31,7 +31,7 @@ optdepends=('python-aiohttp: adds support for the 
AIOHTTP-Server Web Framework'
 'python-pure-eval: for richer stacktraces & additional variables'
 'python-executing: for richer stacktraces & better function names')
 
source=("https://github.com/getsentry/sentry-python/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.gz;)
-sha256sums=('f7125a9235795811962d52ff796dc032cd1d0dd98b59beaced8380371cd9c13c')
+sha256sums=('24e6a53eeabffd2f95d952aa35ca52f0f4201d17f820ac9d3ff7244c665aaf68')
 
 build() {
cd "${_pkgname}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-sentry_sdk/-/commit/93df08e97ca76e50add4e4aafac4bc3fc6a263dc

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-sentry_sdk/-/commit/93df08e97ca76e50add4e4aafac4bc3fc6a263dc
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-sentry_sdk] Pushed new tag 1.44.1-1

2024-04-03 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 1.44.1-1 at Arch Linux / Packaging / Packages / 
python-sentry_sdk

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-sentry_sdk/-/tree/1.44.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/font-awesome][main] upgpkg: 6.5.2-1: New upstream release

2024-04-03 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
font-awesome


Commits:
c87fe846 by Robin Candau at 2024-04-03T18:32:23+02:00
upgpkg: 6.5.2-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,12 @@
 pkgbase = font-awesome
pkgdesc = Iconic font designed for Bootstrap
-   pkgver = 6.5.1
+   pkgver = 6.5.2
pkgrel = 1
url = https://fontawesome.com/
arch = any
-   license = custom:OFL
-   source = 
ttf-font-awesome-6.5.1.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/6.5.1.tar.gz
-   sha256sums = 
4cc4c537892e9b774ecdf070e0592ce0971b8f8a1b0649448133967977409d46
+   license = LicenseRef-OFL
+   source = 
ttf-font-awesome-6.5.2.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/6.5.2.tar.gz
+   sha256sums = 
e65e5bb2c7e27d8f3c69d1277bc33ede27c3fe950c5de20500a4ab726dfd
 
 pkgname = ttf-font-awesome
 


=
PKGBUILD
=
@@ -4,14 +4,14 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=6.5.1
+pkgver=6.5.2
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="https://fontawesome.com/;
-license=('custom:OFL')
+license=('LicenseRef-OFL')
 arch=('any')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('4cc4c537892e9b774ecdf070e0592ce0971b8f8a1b0649448133967977409d46')
+sha256sums=('e65e5bb2c7e27d8f3c69d1277bc33ede27c3fe950c5de20500a4ab726dfd')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/font-awesome/-/commit/c87fe8463558b8368ee5c33f4a0b48364d704019

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/font-awesome/-/commit/c87fe8463558b8368ee5c33f4a0b48364d704019
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/font-awesome] Pushed new tag 6.5.2-1

2024-04-03 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 6.5.2-1 at Arch Linux / Packaging / Packages / 
font-awesome

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/font-awesome/-/tree/6.5.2-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jenkins] Pushed new tag 2.452-1

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 2.452-1 at Arch Linux / Packaging / Packages / 
jenkins

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jenkins/-/tree/2.452-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/jenkins][main] upgpkg: 2.452-1: New upstream release

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
jenkins


Commits:
ce5bad17 by Robin Candau at 2024-04-02T22:31:36+02:00
upgpkg: 2.452-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = jenkins
pkgdesc = Extendable continuous integration server (latest)
-   pkgver = 2.451
-   pkgrel = 2
+   pkgver = 2.452
+   pkgrel = 1
url = https://jenkins.io
install = jenkins.install
arch = any
@@ -16,13 +16,13 @@ pkgbase = jenkins
conflicts = jenkins-ci
replaces = jenkins-ci
backup = etc/conf.d/jenkins
-   source = 
https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-2.451.tar.gz
+   source = 
https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-2.452.tar.gz
source = jenkins.conf
source = jenkins.service
source = jenkins.tmpfiles
source = jenkins.sysusers
source = skip-failing-test.patch
-   sha512sums = 
5a63d4a6f2edd3e5e49ae544f8bc196bf19ba1cff3e2fc4ea25b77978ffd723eef5afa89647249054080c83074caddfef0e3b5b467b7d05ca6528f9f9b3237d9
+   sha512sums = 
86c827dc67c426c2c8c5edc8ff29725186424ffaefabdca36b3586542362b7cd1c685a2dd4411524d1d310280ab7c6bcb47c6b67e5b1cd53709c518b92f59486
sha512sums = 
482b642988027b623995e0488cc00011be5bbe9890a6d40dd6979197fa50794889ff731f798891106b367962cf60cb59b0260caadfcee9685b358a966f759553
sha512sums = 
c1e9a542bfd3db54ea0ef57acdac47ad5180330f9ffab44296762b0e69e75ce595d85a77d46025586fb507aedce4f1a032379dcd16b7b886fe475a99849fa4b2
sha512sums = 
a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90


=
PKGBUILD
=
@@ -5,8 +5,8 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.451
-pkgrel=2
+pkgver=2.452
+pkgrel=1
 _java=17
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@ 
source=("https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-${pkgver
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'skip-failing-test.patch')
-sha512sums=('5a63d4a6f2edd3e5e49ae544f8bc196bf19ba1cff3e2fc4ea25b77978ffd723eef5afa89647249054080c83074caddfef0e3b5b467b7d05ca6528f9f9b3237d9'
+sha512sums=('86c827dc67c426c2c8c5edc8ff29725186424ffaefabdca36b3586542362b7cd1c685a2dd4411524d1d310280ab7c6bcb47c6b67e5b1cd53709c518b92f59486'
 
'482b642988027b623995e0488cc00011be5bbe9890a6d40dd6979197fa50794889ff731f798891106b367962cf60cb59b0260caadfcee9685b358a966f759553'
 
'c1e9a542bfd3db54ea0ef57acdac47ad5180330f9ffab44296762b0e69e75ce595d85a77d46025586fb507aedce4f1a032379dcd16b7b886fe475a99849fa4b2'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jenkins/-/commit/ce5bad17b5c5c03be433a11325417bbb82343f57

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/jenkins/-/commit/ce5bad17b5c5c03be433a11325417bbb82343f57
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-fastapi] Pushed new tag 0.110.1-1

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.110.1-1 at Arch Linux / Packaging / Packages / 
python-fastapi

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-fastapi/-/tree/0.110.1-1
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/python-fastapi][main] upgpkg: 0.110.1-1: New upstream release

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
python-fastapi


Commits:
c791c12a by Robin Candau at 2024-04-02T21:44:26+02:00
upgpkg: 0.110.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = python-fastapi
pkgdesc = FastAPI framework, high performance, easy to learn, fast to 
code, ready for production
-   pkgver = 0.110.0
+   pkgver = 0.110.1
pkgrel = 1
url = https://github.com/tiangolo/fastapi
arch = any
@@ -38,7 +38,7 @@ pkgbase = python-fastapi
depends = python-pydantic-extra-types
depends = python-pydantic-settings
depends = python-starlette
-   depends = python-typing-extensions
+   depends = python-typing_extensions
optdepends = hypercorn: for Hypercorn as ASGI server
optdepends = python-email-validator: for email validation
optdepends = python-itsdangerous: for SessionMiddleware support
@@ -49,8 +49,8 @@ pkgbase = python-fastapi
optdepends = python-httpx: for TestClient support
optdepends = python-ujson: for faster JSON parsing and UJSONResponse
optdepends = uvicorn: for Uvicorn as ASGI server
-   source = 
fastapi-0.110.0.tar.gz::https://github.com/tiangolo/fastapi/archive/0.110.0.tar.gz
-   sha512sums = 
41b86829ee562e922efabdb0f175015d1312ce935b5723f084ce4ee8b1626a6c00a8a51b4a19f352e0584db259f967160558fd79833e84e040a1c8c174d6d9ef
-   b2sums = 
02dfc9c44585a6b4a8da077fe782c6694a0710dc58bfb63240d5c50ddc5177afaee650bbaa07cfaabba068ea25d253c43121f469db776a2c2b1dae56d79e55aa
+   source = 
fastapi-0.110.1.tar.gz::https://github.com/tiangolo/fastapi/archive/0.110.1.tar.gz
+   sha512sums = 
8bd09a2f6826a0afde0bc9b9d9e495407f4af6a9fb42ac582d584d1aff818ec1f398bd68db734b4c1318177c801c48ca814adcf3bee9841fe178fe18ec3c1eb8
+   b2sums = 
eec674731030e3611f200104c6ca40d27d93b394b2c5a0b51a2149002d0be5ce4e66a5fba98e585a53181547eb359e3fd3b60111aa4744f667b0a718e5c7796b
 
 pkgname = python-fastapi


=
PKGBUILD
=
@@ -1,9 +1,10 @@
 # Maintainer: David Runge 
 # Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Robin Candau 
 
 _name=fastapi
 pkgname=python-$_name
-pkgver=0.110.0
+pkgver=0.110.1
 pkgrel=1
 pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
 arch=(any)
@@ -67,8 +68,8 @@ optdepends=(
   'uvicorn: for Uvicorn as ASGI server'
 )
 source=($_name-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-sha512sums=('41b86829ee562e922efabdb0f175015d1312ce935b5723f084ce4ee8b1626a6c00a8a51b4a19f352e0584db259f967160558fd79833e84e040a1c8c174d6d9ef')
-b2sums=('02dfc9c44585a6b4a8da077fe782c6694a0710dc58bfb63240d5c50ddc5177afaee650bbaa07cfaabba068ea25d253c43121f469db776a2c2b1dae56d79e55aa')
+sha512sums=('8bd09a2f6826a0afde0bc9b9d9e495407f4af6a9fb42ac582d584d1aff818ec1f398bd68db734b4c1318177c801c48ca814adcf3bee9841fe178fe18ec3c1eb8')
+b2sums=('eec674731030e3611f200104c6ca40d27d93b394b2c5a0b51a2149002d0be5ce4e66a5fba98e585a53181547eb359e3fd3b60111aa4744f667b0a718e5c7796b')
 
 prepare() {
   cd $_name-$pkgver



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

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/python-fastapi/-/commit/c791c12ab799e3bcec0316c26a66f1a32dfaee61
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-mupdf][main] upgpkg: 0.4.1-19: Rebuild against mupdf 1.24.1 + Switch to auto generated source tarball

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
zathura-pdf-mupdf


Commits:
67545d9a by Robin Candau at 2024-04-02T21:35:59+02:00
upgpkg: 0.4.1-19: Rebuild against mupdf 1.24.1 + Switch to auto generated 
source tarball

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = zathura-pdf-mupdf
pkgdesc = PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, 
and OpenXPS)
pkgver = 0.4.1
-   pkgrel = 18
+   pkgrel = 19
url = https://pwmt.org/projects/zathura-pdf-mupdf/
arch = x86_64
license = Zlib
@@ -17,9 +17,9 @@ pkgbase = zathura-pdf-mupdf
depends = openssl
depends = zathura
conflicts = zathura-pdf-poppler
-   source = 
zathura-pdf-mupdf-0.4.1.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-0.4.1.tar.xz
+   source = 
zathura-pdf-mupdf-0.4.1.tar.gz::https://git.pwmt.org/pwmt/zathura-pdf-mupdf/-/archive/0.4.1/zathura-pdf-mupdf-0.4.1.tar.gz
source = 0001-Remove-mupdf-linking-detection.patch
-   sha256sums = 
f982a01d6523fa25669381184c06a625edbfd7961cbdb0711dccfdb9c402ac2f
+   sha256sums = 
3cf142bfd189ee2cd0130d18a6c202bbc188f172695642a46556e824bd78b9aa
sha256sums = 
b72a21f697ffb6183345db62c3e7f97974ac7747a34587e0c84a4e5b87848af0
 
 pkgname = zathura-pdf-mupdf


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 
 pkgname=zathura-pdf-mupdf
 pkgver=0.4.1
-pkgrel=18
+pkgrel=19
 pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
 url="https://pwmt.org/projects/zathura-pdf-mupdf/;
 arch=('x86_64')
@@ -14,23 +14,23 @@ license=('Zlib')
 conflicts=('zathura-pdf-poppler')
 depends=('cairo' 'gumbo-parser' 'jbig2dec' 'libjpeg' 'libmupdf' 'openjpeg2' 
'openssl' 'zathura')
 makedepends=('meson' 'ninja' 'git')
-source=(zathura-pdf-mupdf-$pkgver.tar.gz::https://pwmt.org/projects/zathura-pdf-mupdf/download/zathura-pdf-mupdf-$pkgver.tar.xz
+source=("${pkgname}-${pkgver}.tar.gz::https://git.pwmt.org/pwmt/zathura-pdf-mupdf/-/archive/${pkgver}/zathura-pdf-mupdf-${pkgver}.tar.gz;
 0001-Remove-mupdf-linking-detection.patch)
-sha256sums=('f982a01d6523fa25669381184c06a625edbfd7961cbdb0711dccfdb9c402ac2f'
+sha256sums=('3cf142bfd189ee2cd0130d18a6c202bbc188f172695642a46556e824bd78b9aa'
 'b72a21f697ffb6183345db62c3e7f97974ac7747a34587e0c84a4e5b87848af0')
 
 prepare() {
-  cd zathura-pdf-mupdf-$pkgver
-  patch -p1 <"$srcdir"/0001-Remove-mupdf-linking-detection.patch
+cd "${pkgname}-${pkgver}"
+patch -p1 < "${srcdir}/0001-Remove-mupdf-linking-detection.patch"
 }
 
 build() {
-  cd zathura-pdf-mupdf-$pkgver
-  arch-meson build
-  ninja -C build
+cd "${pkgname}-${pkgver}"
+arch-meson build
+ninja -C build
 }
 
 package(){
-  DESTDIR="$pkgdir" ninja -C zathura-pdf-mupdf-$pkgver/build install
-  install -Dm0644 zathura-pdf-mupdf-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+   DESTDIR="${pkgdir}" ninja -C "${pkgname}-${pkgver}/build" install
+   install -Dm 644 "${pkgname}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/67545d9ae95ae32126787f7a39548eb754b158cd

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/commit/67545d9ae95ae32126787f7a39548eb754b158cd
You're receiving this email because of your account on gitlab.archlinux.org.




[Git][archlinux/packaging/packages/zathura-pdf-mupdf] Pushed new tag 0.4.1-19

2024-04-02 Thread Robin Candau (@antiz)


Robin Candau pushed new tag 0.4.1-19 at Arch Linux / Packaging / Packages / 
zathura-pdf-mupdf

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zathura-pdf-mupdf/-/tree/0.4.1-19
You're receiving this email because of your account on gitlab.archlinux.org.




<    4   5   6   7   8   9   10   11   12   13   >