[Git][archlinux/packaging/packages/python-dasbus] Pushed new tag 1.7-3

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


Robin Candau pushed new tag 1.7-3 at Arch Linux / Packaging / Packages / 
python-dasbus

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




[Git][archlinux/packaging/packages/python-dasbus] Pushed new branch main

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


Robin Candau pushed new branch main at Arch Linux / Packaging / Packages / 
python-dasbus

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




[Git][archlinux/packaging/packages/python-dasbus] Pushed new tag 1.7-2

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


Robin Candau pushed new tag 1.7-2 at Arch Linux / Packaging / Packages / 
python-dasbus

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




Re: REXX vs other languages

2024-04-21 Thread Robin Vowels

On 2024-04-22 02:13, Paul Gilmartin wrote:

On Mon, 22 Apr 2024 01:52:14 +1000, Robin Vowels wrote:o

   ...
One would not use as variable such common keywords as mentioned above.

The real advantage is that one doesn't need to keep in mind
all those uncommonly-used words that might be used as variable names,


somewhat the opposite.  If the keywords are reserved, the processor 
will

inform the programmer of misuse.


Probably, but why waste time and effort changing the program
and re-compiling?

Another advantage of unreserved words is that the addition of a new 
keyword

into the language does not invalidate any existing program.


 A processor can have an "oracle" that
always correctly divines the programmer's intent, as PL/I does.  But
in a single Rexx program, the same symbol can be a variable in one
instruction but a keyword in the next, with no syntax error but
unexpected result.


Doesn't sound like sensible design.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: REXX vs other languages

2024-04-21 Thread Robin Vowels

On 2024-04-22 00:05, Seymour J Metz wrote:
While PL/I has no reserved words, it is considered bad form to use a 
keyword as an entry or variable name. The same principle applies to 
Rexx; using, e.g., DO, ELSE, END, EXIT, IF, ITERATE, OTHERWISE, 
PROCEDURE, THEN, WHEN, as a variable name can make the code hard to 
read.


One would not use as variable such common keywords as mentioned above.

The real advantage is that one doesn't need to keep in mind
all those uncommonly-used words that might be used as variable names,

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


[gentoo-commits] repo/gentoo:master commit in: sys-block/blktrace/

2024-04-21 Thread Robin H. Johnson
commit: a8638768e9f8db85d28d34727c768bd3d5cb7249
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Apr 21 15:08:42 2024 +
Commit:     Robin H. Johnson  gentoo  org>
CommitDate: Sun Apr 21 15:09:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8638768

sys-block/blktrace: missing doc dep

Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://bugs.gentoo.org/874858

 sys-block/blktrace/blktrace-1.3.0-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild 
b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
index 9f6d161916e2..cfd56e795983 100644
--- a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
+++ b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
@@ -16,11 +16,13 @@ IUSE="doc"
 
 RDEPEND="dev-libs/libaio"
 # This is a Linux specific app!
+# dev-texlive/texlive-latexextra for placeins.sty
 DEPEND="${RDEPEND}
sys-kernel/linux-headers
doc? (
virtual/latex-base
>=app-text/texlive-core-2014
+   dev-texlive/texlive-latexextra
)
 "
 



[gentoo-commits] repo/gentoo:master commit in: sys-block/blktrace/

2024-04-21 Thread Robin H. Johnson
commit: f2d465249bb54366d84f6c4c9689dbc6cc5cc80f
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Apr 21 15:05:40 2024 +
Commit:     Robin H. Johnson  gentoo  org>
CommitDate: Sun Apr 21 15:09:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d46524

sys-block/blktrace: QA direct cc call

Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://bugs.gentoo.org/930357

 sys-block/blktrace/blktrace-1.3.0-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild 
b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
index f894d58430b3..9f6d161916e2 100644
--- a/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
+++ b/sys-block/blktrace/blktrace-1.3.0-r1.ebuild
@@ -32,12 +32,13 @@ src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}"
if use doc; then
export VARTEXFONTS="${T}/fonts"
-   emake docs
+   emake docs CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}"
fi
 }
 
 src_install() {
-   emake install DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man"
+   # Do not remove the CC/FLAGS here; bug 930357
+   emake install DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" 
CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}"
einstalldocs
use doc && dodoc doc/blktrace.pdf btt/doc/btt.pdf
 }



Re: REXX vs other languages

2024-04-21 Thread Robin Vowels

On 2024-04-21 04:22, Paul Gilmartin wrote:

On Sat, 20 Apr 2024 19:50:56 +0200, Rony G. Flatscher wrote:

   ...
There are *no* reserved words in Rexx like in many other languages. 
(This alleviates one to have to
learn them by heart. But more importantly, should the language get 
additional keywords over time


I disagree.  Although it's context-sensitive.  But ITERATE and LEAVE 
are

keywords within DO loops,


Are you confusing reserved words and keywords?
Keywords can be reserved words that cannot be used for other purposes,
as in COBOL.

In some languages, such as PL/I, keywords still have a meaning in the
language, but can be used for other purposes such as identifiers.
Such words are not reserved words.


which may not be intuitively obvious.  Otherwise
they would be commands.  RETURN is generally a keyword.  And THEN
is a keyword in an IF.

they would not break existing Rexx programs that happen to use them 
already,

unlike other programming languages.)


Not true.  When I first learned Rexx, A='XYZ'B was legal.  Later, it 
became

a syntax error.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: REXX vs other languages WAS: Rexx numeric digits and scientific notation question

2024-04-21 Thread Robin Vowels

On 2024-04-21 15:38, Paul Gilmartin wrote:

On Sat, 20 Apr 2024 23:58:18 -0500, Bruce Hewson wrote:


I use "cnt" for my loop counters. I stopped using FORTRAN style single 
character variable names when I started coding in REXX.



I thought FORTRAN allowed six.


It did.  Now it allows many more.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


[Git][archlinux/packaging/packages/swaync] Pushed new tag 0.10.1-2

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


Robin Candau pushed new tag 0.10.1-2 at Arch Linux / Packaging / Packages / 
swaync

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




[Git][archlinux/packaging/packages/swaync] Pushed new branch main

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


Robin Candau pushed new branch main at Arch Linux / Packaging / Packages / 
swaync

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




[Git][archlinux/packaging/packages/hugo] Pushed new tag 0.125.2-1

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


Robin Candau pushed new tag 0.125.2-1 at Arch Linux / Packaging / Packages / 
hugo

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




[Git][archlinux/packaging/packages/hugo][main] upgpkg: 0.125.2-1: New upstream release

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


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


Commits:
2e42e344 by Robin Candau at 2024-04-20T20:28:21+02:00
upgpkg: 0.125.2-1: New upstream release
https://github.com/gohugoio/hugo/releases/tag/v0.125.2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = hugo
pkgdesc = Fast and Flexible Static Site Generator in Go
-   pkgver = 0.125.1
+   pkgver = 0.125.2
pkgrel = 1
url = https://gohugo.io/
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = hugo
depends = glibc
depends = gcc-libs
optdepends = python-docutils: reStructuredText support
-   source = 
hugo-0.125.1.tar.gz::https://github.com/gohugoio/hugo/archive/v0.125.1.tar.gz
-   sha512sums = 
9aaa4d1bfb1fcd9238a3774b749494af035974fdee52f8959ece08cd4e7ae1e37c351af593ab0b6d2a7407823656373e15a08e8e0f196c32ec69fe8d32e7978d
+   source = 
hugo-0.125.2.tar.gz::https://github.com/gohugoio/hugo/archive/v0.125.2.tar.gz
+   sha512sums = 
b7a9cef961ebd29f38fb5dcb3e1961e3b9bfffa16c9cbe7b1261445310134246b85614e69c86e78a2125cba51ebcdf1adce093b9fb16d404e685d2d0b9e47c69
 
 pkgname = hugo


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.125.1
+pkgver=0.125.2
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@ depends=('glibc' 'gcc-libs')
 makedepends=('go' 'git')
 optdepends=('python-docutils: reStructuredText support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('9aaa4d1bfb1fcd9238a3774b749494af035974fdee52f8959ece08cd4e7ae1e37c351af593ab0b6d2a7407823656373e15a08e8e0f196c32ec69fe8d32e7978d')
+sha512sums=('b7a9cef961ebd29f38fb5dcb3e1961e3b9bfffa16c9cbe7b1261445310134246b85614e69c86e78a2125cba51ebcdf1adce093b9fb16d404e685d2d0b9e47c69')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

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




[LAD] Re: Update of zita-at1

2024-04-20 Thread Robin Gareus

Hi Fons,

it's great to see you have not lot your edge! :)

On 2024-04-20 11:50, Fons Adriaensen wrote:

> The new Retuner class can probably be used without changes
> in the x42-autotuner plugin.
I had a quick look and and sadly it's not that simple. The plugin 
already has a low latency mode, and supports for per note microtuning.


Either I have to backport your bug-fixes, or add the missing features to 
your new version. Then I will have to check that the behavior of 0.8.2 
does not alter the sound of existing sessions using the plugin.


Can you elaborate on the bug fixes that you made?

I'm already looking forward to zita-at2! That will have to be a new 
plugin. So perhaps there is also an option to wait for that to drop.


Thanks for your hard work on this.

--
robin


OpenPGP_signature.asc
Description: OpenPGP digital signature
___
Linux-audio-dev mailing list -- linux-audio-dev@lists.linuxaudio.org
To unsubscribe send an email to linux-audio-dev-le...@lists.linuxaudio.org


Re: [PATCH] RISC-V: Add xfail test case for wv insn highest overlap

2024-04-20 Thread Robin Dapp
LGTM.

Regards
 Robin



New attachment viewer for macOS

2024-04-20 Thread Robin Sommer


Hi all,

I used run `qlmanage` to view attachments and HTML bodies on my Mac
but that has always been feeling a bit clumsy. So a little while ago I
ended up trying to write a replacement: a little standalone document
previewer wrapping macOS' *Quick View* for easy use with mutt (and,
more generally, from the command line). I did this originally mostly
as an exercise in SwiftUI but ended up quite liking it, so I figured
I'd send a pointer here in case anybody else is looking for
alternatives.

It's on GitHub at https://github.com/rsmmr/qlview. You can either
build it yourself through Xcode or download a pre-built binary, see
the `README`. There's also some more information on possible ways to
integrate it with mutt through `mailcap` and a macro. This is all a bit
in-progress still too, so feel free to send suggestions or even patches.

Best,

Robin

-- 
Robin Sommer * ICSI * ro...@icir.org * www.icir.org/robin


[Git][archlinux/packaging/packages/limine] Pushed new tag 7.4.0-1

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


Robin Candau pushed new tag 7.4.0-1 at Arch Linux / Packaging / Packages / 
limine

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




[Git][archlinux/packaging/packages/limine][main] upgpkg: 7.4.0-1: New upstream release

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


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


Commits:
c9f29c81 by Robin Candau at 2024-04-20T04:39:55+02:00
upgpkg: 7.4.0-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = limine
pkgdesc = An advanced, portable, multiprotocol bootloader
-   pkgver = 7.3.1
+   pkgver = 7.4.0
pkgrel = 1
url = https://limine-bootloader.org/
arch = x86_64
@@ -12,7 +12,7 @@ pkgbase = limine
makedepends = lld
makedepends = clang
depends = glibc
-   source = git+https://github.com/limine-bootloader/limine.git#tag=v7.3.1
-   sha256sums = 
e29a46566efd2221fd06537c23767511baaddadd0c1b2dc486d2f195566c26f6
+   source = git+https://github.com/limine-bootloader/limine.git#tag=v7.4.0
+   sha256sums = 
8bfa1153bc50e0dd6673b608f007b124089eff0075d83af821a4aee3ce44daff
 
 pkgname = limine


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Mintsuki 
 
 pkgname=limine
-pkgver=7.3.1
+pkgver=7.4.0
 pkgrel=1
 pkgdesc="An advanced, portable, multiprotocol bootloader"
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('BSD-2-Clause')
 depends=('glibc')
 makedepends=('git' 'nasm' 'mtools' 'llvm' 'lld' 'clang')
 source=("git+https://github.com/limine-bootloader/limine.git#tag=v${pkgver};)
-sha256sums=('e29a46566efd2221fd06537c23767511baaddadd0c1b2dc486d2f195566c26f6')
+sha256sums=('8bfa1153bc50e0dd6673b608f007b124089eff0075d83af821a4aee3ce44daff')
 
 prepare() {
cd "${pkgname}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/limine/-/commit/c9f29c8109a79da297a9d6e6c7bfe7fa91778dff

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




Re: [Evergreen-documentation] [Last Minute] Call for Pet Pics!

2024-04-19 Thread Robin Fitch via Evergreen-documentation
Hi, Debbie,

Here's a pic of Charlie :)

Robin

On Fri, Apr 19, 2024 at 3:18 PM Deborah Luchenbill via
Evergreen-documentation 
wrote:

> Hi Documenters!
>
> Every year at the Evergreen International Conference, the Documentation
> Interest Group does a lightning talk about DIG and what we do. Since pet
> show & tell has become an integral part of our meetings, I like to include
> our pet friends on the slideshow! (See last year's slides at
> https://drive.google.com/file/d/1zgFACVHIpMA0YbCWPQ3UOAOrI8P57pUR/view)
>
> If you'd like to have any new photos of your pets included--or you're new
> to DIG this year and haven't had pet pics in the presentation--please send
> them my way by Tuesday, 4/23, 5 p.m. ET!
>
> See you at the conference!
>
> Best,
> Debbie
>
> Debbie Luchenbill
> Associate Director, Open Source Initiatives
> MOBIUS
> 2511 Broadway Bluffs, Ste. 101
> Columbia, MO  65201
> deb...@mobiusconsortium.org 
> 573-234-4914
> https://mobiusconsortium.org <http://mobiusconsortium.org>
> MOSS Help Desk: h...@mobiusconsortium.org / 877-312-3517
> Pronouns: She/Her or She/They (see https://pronouns.org/ to learn more)
> Input | Maximizer | Intellection | Relator | Adaptability
> ___
> Evergreen-documentation mailing list
> Evergreen-documentation@list.evergreen-ils.org
>
> http://list.evergreen-ils.org/cgi-bin/mailman/listinfo/evergreen-documentation
>


-- 

Robin S. Fitch (she/her)
Part-time Cataloger

rfi...@biblio.org

» Help Desk: Open or Check a Ticket <https://helpdesk.biblio.org>

[image: Stylized turquoise book with blue swirl around it, above text
reading Bibliomation: Libraries Sharing Computerized Services]
<https://biblio.org/>
___
Evergreen-documentation mailing list
Evergreen-documentation@list.evergreen-ils.org
http://list.evergreen-ils.org/cgi-bin/mailman/listinfo/evergreen-documentation


Re: [PATCH v1] RISC-V: Revert RVV wv instructions overlap and xfail tests

2024-04-19 Thread Robin Dapp
Hi Pan,

> The RVV register overlap requires both the dest, and src operands.
> Thus the rigister filter in constraint cannot cover the fully sematics
> of the vector register overlap.

I'm not sure I'm following.  Did we miss something that should have been
covered?  Like only an overlap on the srcs but not the dest?
Are there testcases that fail?  If so we should definitely have one.

If something is broken then indeed we should revert it.

But...

> Thus, revert these overlap patches list and xfail the related test
> cases.  This patch would like to revert *b3b2799b872*, and the full
> picture of related series are listed as below.

... why not just revert everything and xfail all the tests in a
follow up?  Your patch is essentially a revert but doesn't look like
it.  I'd rather we let a revert be a revert and adjust the tests
separately so it becomes clear. 

Regards
 Robin



[Git][archlinux/packaging/packages/python-fastapi][main] upgpkg: 0.110.2-2: Rebuild Python 3.12

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


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


Commits:
fe28f981 by Robin Candau at 2024-04-19T08:52:13+02:00
upgpkg: 0.110.2-2: Rebuild Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-fastapi
pkgdesc = FastAPI framework, high performance, easy to learn, fast to 
code, ready for production
pkgver = 0.110.2
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/tiangolo/fastapi
arch = any
license = MIT


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 _name=fastapi
 pkgname=python-$_name
 pkgver=0.110.2
-pkgrel=1
+pkgrel=2
 pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
 arch=(any)
 url="https://github.com/tiangolo/fastapi;



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

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




[Git][archlinux/packaging/packages/python-fastapi] Pushed new tag 0.110.2-2

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


Robin Candau pushed new tag 0.110.2-2 at Arch Linux / Packaging / Packages / 
python-fastapi

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




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

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


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

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




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

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


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


Commits:
2ff45ce5 by Robin Candau at 2024-04-19T08:50:04+02:00
upgpkg: 0.110.2-1: New upstream release
https://github.com/tiangolo/fastapi/releases/tag/0.110.2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = python-fastapi
pkgdesc = FastAPI framework, high performance, easy to learn, fast to 
code, ready for production
-   pkgver = 0.110.1
-   pkgrel = 3
+   pkgver = 0.110.2
+   pkgrel = 1
url = https://github.com/tiangolo/fastapi
arch = any
license = MIT
@@ -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.1.tar.gz::https://github.com/tiangolo/fastapi/archive/0.110.1.tar.gz
-   sha512sums = 
8bd09a2f6826a0afde0bc9b9d9e495407f4af6a9fb42ac582d584d1aff818ec1f398bd68db734b4c1318177c801c48ca814adcf3bee9841fe178fe18ec3c1eb8
-   b2sums = 
eec674731030e3611f200104c6ca40d27d93b394b2c5a0b51a2149002d0be5ce4e66a5fba98e585a53181547eb359e3fd3b60111aa4744f667b0a718e5c7796b
+   source = 
fastapi-0.110.2.tar.gz::https://github.com/tiangolo/fastapi/archive/0.110.2.tar.gz
+   sha512sums = 
dc183c2986d33dc0d71f7e695969403eac7dccd1fc5ec3350318369423c3cca96e180aaa48774862cd1f0ff487cd64bef0d1a44a10b8b309accc483c9e7256c4
+   b2sums = 
1d7015e4a5cceb8650ee6e4598b191ad0fad94debd6b75c5a1ed53d7ae0d31ef89195cf9e22d127cdcdf923c29ca3eb63f468dd201e63793c2e3460101e65e08
 
 pkgname = python-fastapi


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 
 _name=fastapi
 pkgname=python-$_name
-pkgver=0.110.1
-pkgrel=3
+pkgver=0.110.2
+pkgrel=1
 pkgdesc='FastAPI framework, high performance, easy to learn, fast to code, 
ready for production'
 arch=(any)
 url="https://github.com/tiangolo/fastapi;
@@ -68,8 +68,8 @@ optdepends=(
   'uvicorn: for Uvicorn as ASGI server'
 )
 source=($_name-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-sha512sums=('8bd09a2f6826a0afde0bc9b9d9e495407f4af6a9fb42ac582d584d1aff818ec1f398bd68db734b4c1318177c801c48ca814adcf3bee9841fe178fe18ec3c1eb8')
-b2sums=('eec674731030e3611f200104c6ca40d27d93b394b2c5a0b51a2149002d0be5ce4e66a5fba98e585a53181547eb359e3fd3b60111aa4744f667b0a718e5c7796b')
+sha512sums=('dc183c2986d33dc0d71f7e695969403eac7dccd1fc5ec3350318369423c3cca96e180aaa48774862cd1f0ff487cd64bef0d1a44a10b8b309accc483c9e7256c4')
+b2sums=('1d7015e4a5cceb8650ee6e4598b191ad0fad94debd6b75c5a1ed53d7ae0d31ef89195cf9e22d127cdcdf923c29ca3eb63f468dd201e63793c2e3460101e65e08')
 
 prepare() {
   cd $_name-$pkgver



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

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




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

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


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

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




[Git][archlinux/packaging/packages/yyjson][main] upgpkg: 0.9.0-3: Add so provides for libyyjson.so

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


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


Commits:
8bd9b5c3 by Robin Candau at 2024-04-19T08:43:47+02:00
upgpkg: 0.9.0-3: Add so provides for libyyjson.so

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,13 @@
 pkgbase = yyjson
pkgdesc = A high performance JSON library written in ANSI C
pkgver = 0.9.0
-   pkgrel = 2
+   pkgrel = 3
url = https://ibireme.github.io/yyjson
arch = x86_64
license = MIT
makedepends = cmake
depends = glibc
+   provides = libyyjson.so
source = 
yyjson-0.9.0.tar.gz::https://github.com/ibireme/yyjson/archive/refs/tags/0.9.0.tar.gz
sha256sums = 
59902bea55585d870fd7681eabe6091fbfd1a8776d1950f859d2dbbd510c74bd
 


=
PKGBUILD
=
@@ -4,13 +4,14 @@
 
 pkgname=yyjson
 pkgver=0.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A high performance JSON library written in ANSI C"
 arch=('x86_64')
 url="https://ibireme.github.io/yyjson;
 license=('MIT')
 depends=('glibc')
 makedepends=('cmake')
+provides=('libyyjson.so')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ibireme/yyjson/archive/refs/tags/${pkgver}.tar.gz;)
 sha256sums=('59902bea55585d870fd7681eabe6091fbfd1a8776d1950f859d2dbbd510c74bd')
 



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

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




[Git][archlinux/packaging/packages/mpv][main] Remove youtube-dl from optdepends

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


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


Commits:
c79e3c11 by Hanabishi Recca at 2024-04-18T15:29:38+00:00
Remove youtube-dl from optdepends

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -78,7 +78,6 @@ pkgbase = mpv
depends = wayland
depends = zlib
optdepends = yt-dlp: for video-sharing websites playback
-   optdepends = youtube-dl: for video-sharing websites playback
provides = libmpv.so
options = !emptydirs
source = git+https://github.com/mpv-player/mpv.git#tag=v0.38.0?signed


=
PKGBUILD
=
@@ -23,8 +23,7 @@ depends=('alsa-lib' 'libasound.so' 'desktop-file-utils' 
'ffmpeg' 'libavcodec.so'
  'openal' 'uchardet' 'vapoursynth' 'vulkan-icd-loader' 'wayland' 
'zlib')
 makedepends=('git' 'meson' 'python-docutils' 'ladspa' 'wayland-protocols'
  'ffnvcodec-headers' 'vulkan-headers')
-optdepends=('yt-dlp: for video-sharing websites playback'
-'youtube-dl: for video-sharing websites playback')
+optdepends=('yt-dlp: for video-sharing websites playback')
 provides=('libmpv.so')
 options=('!emptydirs')
 validpgpkeys=('145077D82501AA20152CACCE8D769208D5E31419') # sfan5 




View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mpv/-/commit/c79e3c11733f78ca416bee1f6114d7fcaf598574

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




[Git][archlinux/packaging/packages/hugo][main] upgpkg: 0.125.1-1: New upstream release

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


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


Commits:
518a0c0f by Robin Candau at 2024-04-18T11:13:08+02:00
upgpkg: 0.125.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = hugo
pkgdesc = Fast and Flexible Static Site Generator in Go
-   pkgver = 0.125.0
+   pkgver = 0.125.1
pkgrel = 1
url = https://gohugo.io/
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = hugo
depends = glibc
depends = gcc-libs
optdepends = python-docutils: reStructuredText support
-   source = 
hugo-0.125.0.tar.gz::https://github.com/gohugoio/hugo/archive/v0.125.0.tar.gz
-   sha512sums = 
e1f8ce535ead2d2094702414516c48cfc59c175cadfb1b7368f3db7d6cbd1640efc938b0def7ae4cecbb477a6284d60622acfef4d3b4f48384bc730f69994b63
+   source = 
hugo-0.125.1.tar.gz::https://github.com/gohugoio/hugo/archive/v0.125.1.tar.gz
+   sha512sums = 
9aaa4d1bfb1fcd9238a3774b749494af035974fdee52f8959ece08cd4e7ae1e37c351af593ab0b6d2a7407823656373e15a08e8e0f196c32ec69fe8d32e7978d
 
 pkgname = hugo


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.125.0
+pkgver=0.125.1
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@ depends=('glibc' 'gcc-libs')
 makedepends=('go' 'git')
 optdepends=('python-docutils: reStructuredText support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('e1f8ce535ead2d2094702414516c48cfc59c175cadfb1b7368f3db7d6cbd1640efc938b0def7ae4cecbb477a6284d60622acfef4d3b4f48384bc730f69994b63')
+sha512sums=('9aaa4d1bfb1fcd9238a3774b749494af035974fdee52f8959ece08cd4e7ae1e37c351af593ab0b6d2a7407823656373e15a08e8e0f196c32ec69fe8d32e7978d')
 
 build() {
   cd "${pkgname}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hugo/-/commit/518a0c0f094034d5ad63ad5eb15fabc37e899e0e

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




[Git][archlinux/packaging/packages/hugo] Pushed new tag 0.125.1-1

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


Robin Candau pushed new tag 0.125.1-1 at Arch Linux / Packaging / Packages / 
hugo

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




[Git][archlinux/packaging/packages/mpv][main] upgpkg: 1:0.38.0-2: Rebuild without shaderc as deps

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


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


Commits:
e23324a1 by Robin Candau at 2024-04-18T08:33:54+02:00
upgpkg: 1:0.38.0-2: Rebuild without shaderc as deps
See 
https://github.com/mpv-player/mpv/commit/60a31a8a284e539043c47a33ff90f3d55aade6a8
  
https://gitlab.archlinux.org/archlinux/packaging/packages/mpv/-/merge_requests/2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = mpv
pkgdesc = a free, open source, and cross-platform media player
pkgver = 0.38.0
-   pkgrel = 1
+   pkgrel = 2
epoch = 1
url = https://mpv.io/
arch = x86_64
@@ -71,8 +71,6 @@ pkgbase = mpv
depends = libpipewire
depends = rubberband
depends = librubberband.so
-   depends = shaderc
-   depends = libshaderc_shared.so
depends = openal
depends = uchardet
depends = vapoursynth


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 pkgname=mpv
 epoch=1
 pkgver=0.38.0
-pkgrel=1
+pkgrel=2
 pkgdesc='a free, open source, and cross-platform media player'
 arch=('x86_64')
 license=('GPL-2.0-or-later AND LGPL-2.1-or-later')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/mpv/-/commit/e23324a140fecbef10b61a0489b943c0c87f1e24

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




[Git][archlinux/packaging/packages/mpv] Pushed new tag 1-0.38.0-2

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


Robin Candau pushed new tag 1-0.38.0-2 at Arch Linux / Packaging / Packages / 
mpv

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




[Git][archlinux/packaging/packages/mpv][main] Remove shaderc from dependencies

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


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


Commits:
3d637edc by Hanabishi Recca at 2024-04-17T22:20:41+00:00
Remove shaderc from dependencies
- - - - -


1 changed file:

- PKGBUILD


Changes:

=
PKGBUILD
=
@@ -19,8 +19,8 @@ depends=('alsa-lib' 'libasound.so' 'desktop-file-utils' 
'ffmpeg' 'libavcodec.so'
  'libjpeg' 'libjpeg.so' 'libplacebo' 'libplacebo.so' 'libpulse' 
'libpulse.so' 'libsixel'
  'libva' 'libva.so' 'libva-drm.so' 'libva-wayland.so' 'libva-x11.so' 
'libvdpau' 'libx11'
  'libxext' 'libxkbcommon' 'libxkbcommon.so' 'libxpresent' 'libxrandr' 
'libxss'
- 'libxv' 'luajit' 'mesa' 'mujs' 'libpipewire' 'rubberband' 
'librubberband.so' 'shaderc'
- 'libshaderc_shared.so' 'openal' 'uchardet' 'vapoursynth' 
'vulkan-icd-loader' 'wayland' 'zlib')
+ 'libxv' 'luajit' 'mesa' 'mujs' 'libpipewire' 'rubberband' 
'librubberband.so'
+ 'openal' 'uchardet' 'vapoursynth' 'vulkan-icd-loader' 'wayland' 
'zlib')
 makedepends=('git' 'meson' 'python-docutils' 'ladspa' 'wayland-protocols'
  'ffnvcodec-headers' 'vulkan-headers')
 optdepends=('yt-dlp: for video-sharing websites playback'



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

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




[mnemosyne-proj-users] Looking for a base for a test prep app

2024-04-17 Thread Robin McCown
Hi, I have done test prep writing and tutoring for over 20 years, and I'm 
looking into developing an app for a niche that has no apps under $100 (!). 
Can I use mnemosyne for this? It would be fully flashcard based (at least 
at first).

I know very little about app development, and just enough about python to 
know that I need help! First, though, I'd like to know if this is even an 
avenue I should explore. Thoughts?

-- 
You received this message because you are subscribed to the Google Groups 
"mnemosyne-proj-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mnemosyne-proj-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mnemosyne-proj-users/45997852-52ac-4fe4-a2bf-2ce27e34ec10n%40googlegroups.com.


Re: Delayed turns etc

2024-04-17 Thread Robin Bannister

Peter Mayes wrote:

On 16/04/2024 23:33, Knute Snortum wrote:


3. How to stop the second line being justified out to the right?
In the fuller score, something like this is followed by a page
break and more music, but there is a natural break at this double
bar, and it looks very "stretched out". I tried various "ragged"
keywords, but none of them just operated on the one line.


Is this not what you want?

\paper {
  ragged-last = ##t
}

That works for the last line of the whole score. The line I want to be
"ragged" is the last line of a page. with more music on the next page.



A similar question last year got several answers:
https://lists.gnu.org/archive/html/lilypond-user/2023-06/msg00148.html

If you want to try pseudoIndent, I have appended the latest version.


Cheers,
Robin
 PSEUDOINDENT FUNCTIONS 

% these two functions are for indenting individual systems
% - to left-indent a system, apply \pseudoIndent before the music continues
% - \pseudoIndents is similar, but lets you also indent on the right
% - both provide an option for changing that system's instrument names

% N.B. these functions 
% - assume application to non-ragged lines (generally the default)
% - include a manual \break to ensure application at line start 
% - misbehave if called more than once at the same line start

% the parameters of the (full) pseudoIndents function are:
% 1: name-tweaks
%  usually omitted; accepts replacement \markup for instrument names 
%  as an ordered list; starred elements leave their i-names unchanged.
% 2: left-indent 
%  additional left-indentation, in staff-space units; can be negative, 
%  but avoid a total indentation which implies (unsupported) stretching. 
% 3: right-indent 
%  amount of right-indentation, in staff-space units; can be negative. 
%  - not offered by the (reduced) pseudoIndent function


pseudoIndents = % inline alternative to a new \score, also with right-indent
#(define-music-function (name-tweaks left-indent right-indent) 
  ((markup-list? '()) number? number?)
  (define (warn-stretched p1 p2) (ly:input-warning (*location*) (G_
" pseudoIndents ~s ~s is stretching staff; expect distorted layout") p1 p2))
  (let* ( 
(narrowing (+ left-indent right-indent)) ; of staff implied by args

(set-staffsymbol! (lambda (staffsymbol-grob) ; change staff to new width 
  (let* (
(left-bound (ly:spanner-bound staffsymbol-grob LEFT))
(left-moment (ly:grob-property left-bound 'when))
(capo? (moment<=? left-moment ZERO-MOMENT)) ; in first system of score
(layout (ly:grob-layout staffsymbol-grob))
(lw (ly:output-def-lookup layout 'line-width)) ; debugging info
(indent (ly:output-def-lookup layout (if capo? 'indent 'short-indent)))
(old-stil (ly:staff-symbol::print staffsymbol-grob))
(staffsymbol-x-ext (ly:stencil-extent old-stil X))
;; >=2.19.16's first system has old-stil already narrowed [2]
;; compensate for this (ie being not pristine) when calculating 
;; - old leftmost-x (its value is needed when setting so-called 'width) 
;; - the new width and position (via local variable narrowing_) 
(ss-t (ly:staff-symbol-line-thickness staffsymbol-grob))
(pristine? (<= 0 (car staffsymbol-x-ext) ss-t)) ; would expect half
(leftmost-x (+ indent (if pristine? 0 narrowing))) 
(narrowing_ (if pristine? narrowing 0)) ; uses 0 if already narrowed
(old-width (+ (interval-length staffsymbol-x-ext) ss-t))
(new-width (- old-width narrowing_))
(new-rightmost-x (+ leftmost-x new-width)) ; and set! this immediately
(junk (ly:grob-set-property! staffsymbol-grob 'width new-rightmost-x))
(in-situ-stil (ly:staff-symbol::print staffsymbol-grob))
(new-stil (ly:stencil-translate-axis in-situ-stil narrowing_ X))
   ;(new-stil (stencil-with-color new-stil red)) ; for when debugging
(new-x-ext (ly:stencil-extent new-stil X)))
  (ly:grob-set-property! staffsymbol-grob 'stencil new-stil)
  (ly:grob-set-property! staffsymbol-grob 'X-extent new-x-ext)
  )))

(set-X-offset! (lambda (margin-grob) ; move grob across to line start 
  (let* (
(old (ly:grob-property-data margin-grob 'X-offset)) 
(new (lambda (grob) (+ (if (procedure? old) (old grob) old) narrowing
  (ly:grob-set-property! margin-grob 'X-offset new

(tweak-text! (lambda (i-name-grob mkup) ; tweak both instrumentname texts   
  (if (and (markup? mkup) (not (string=? (markup->string mkup) "*")))
  (begin 
(ly:grob-set-property! i-name-grob 'long-text mkup)
(ly:grob-set-property! i-name-grob 'text mkup)
 ; else retain existing text 

(install-narrowing (lambda (leftedge-grob) ; on staves, + adapt left margin
  (d

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

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


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

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




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

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


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


Commits:
e73a1802 by Robin Candau at 2024-04-16T18:17:29+02:00
upgpkg: 2.454-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = jenkins
pkgdesc = Extendable continuous integration server (latest)
-   pkgver = 2.453
+   pkgver = 2.454
pkgrel = 1
url = https://jenkins.io
install = jenkins.install
@@ -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.453.tar.gz
+   source = 
https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-2.454.tar.gz
source = jenkins.conf
source = jenkins.service
source = jenkins.tmpfiles
source = jenkins.sysusers
source = skip-failing-test.patch
-   sha512sums = 
9bce0555ace1a6e534c37371314ad3cd7921628b3093fd3be16fea80c829264f62f97f2e17f57c173e3bb151eb64bd5c2171e7e5d933bee49734c582aff6
+   sha512sums = 
cfcc999ea3edcc7ab8b42caf4cba57cbd8cc361f682b3e7b2e519e71434f8603f9b950a1eb6731e4b74e478d04a038c25004572357317f7c3627b6f1b33a5bf7
sha512sums = 
482b642988027b623995e0488cc00011be5bbe9890a6d40dd6979197fa50794889ff731f798891106b367962cf60cb59b0260caadfcee9685b358a966f759553
sha512sums = 
c1e9a542bfd3db54ea0ef57acdac47ad5180330f9ffab44296762b0e69e75ce595d85a77d46025586fb507aedce4f1a032379dcd16b7b886fe475a99849fa4b2
sha512sums = 
a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.453
+pkgver=2.454
 pkgrel=1
 _java=17
 pkgdesc='Extendable continuous integration server (latest)'
@@ -25,7 +25,7 @@ 
source=("https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-${pkgver
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'skip-failing-test.patch')
-sha512sums=('9bce0555ace1a6e534c37371314ad3cd7921628b3093fd3be16fea80c829264f62f97f2e17f57c173e3bb151eb64bd5c2171e7e5d933bee49734c582aff6'
+sha512sums=('cfcc999ea3edcc7ab8b42caf4cba57cbd8cc361f682b3e7b2e519e71434f8603f9b950a1eb6731e4b74e478d04a038c25004572357317f7c3627b6f1b33a5bf7'
 
'482b642988027b623995e0488cc00011be5bbe9890a6d40dd6979197fa50794889ff731f798891106b367962cf60cb59b0260caadfcee9685b358a966f759553'
 
'c1e9a542bfd3db54ea0ef57acdac47ad5180330f9ffab44296762b0e69e75ce595d85a77d46025586fb507aedce4f1a032379dcd16b7b886fe475a99849fa4b2'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'



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

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




[Git][archlinux/packaging/packages/hugo][main] upgpkg: 0.125.0-1: New upstream release

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


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


Commits:
c0d8b983 by Robin Candau at 2024-04-16T17:59:13+02:00
upgpkg: 0.125.0-1: New upstream release
https://github.com/gohugoio/hugo/releases/tag/v0.125.0

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = hugo
pkgdesc = Fast and Flexible Static Site Generator in Go
-   pkgver = 0.124.1
+   pkgver = 0.125.0
pkgrel = 1
url = https://gohugo.io/
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = hugo
depends = glibc
depends = gcc-libs
optdepends = python-docutils: reStructuredText support
-   source = 
hugo-0.124.1.tar.gz::https://github.com/gohugoio/hugo/archive/v0.124.1.tar.gz
-   sha512sums = 
29f51a08f9e757a716c2f7845efc08b1ca3b0bf8e70fd06491735a123ca7da8e169116fa003c147be08d2d5f9752473e9a569085728ec0a9ed7850bd57ba8f93
+   source = 
hugo-0.125.0.tar.gz::https://github.com/gohugoio/hugo/archive/v0.125.0.tar.gz
+   sha512sums = 
e1f8ce535ead2d2094702414516c48cfc59c175cadfb1b7368f3db7d6cbd1640efc938b0def7ae4cecbb477a6284d60622acfef4d3b4f48384bc730f69994b63
 
 pkgname = hugo


=
PKGBUILD
=
@@ -6,7 +6,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.124.1
+pkgver=0.125.0
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@ depends=('glibc' 'gcc-libs')
 makedepends=('go' 'git')
 optdepends=('python-docutils: reStructuredText support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('29f51a08f9e757a716c2f7845efc08b1ca3b0bf8e70fd06491735a123ca7da8e169116fa003c147be08d2d5f9752473e9a569085728ec0a9ed7850bd57ba8f93')
+sha512sums=('e1f8ce535ead2d2094702414516c48cfc59c175cadfb1b7368f3db7d6cbd1640efc938b0def7ae4cecbb477a6284d60622acfef4d3b4f48384bc730f69994b63')
 
 build() {
   cd "${pkgname}-${pkgver}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/hugo/-/commit/c0d8b9838e6ddfc70a5d1368e5ce2b0c9ca4013e

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




[Git][archlinux/packaging/packages/hugo] Pushed new tag 0.125.0-1

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


Robin Candau pushed new tag 0.125.0-1 at Arch Linux / Packaging / Packages / 
hugo

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




Permission to contribute to Apache Kafka Project

2024-04-16 Thread Robin Han
Hi there,

My Jira ID is 'robinhan' and I'd like to ask permission to contribute to
the Apache Kafka Project.


I have encountered an error when upgrading from version 3.4.0 to 3.7.0 in
Kraft mode. I would like to fix this issue by submitting a Jira Ticket and
a Github PR. Unfortunately, I don't have the permission to create a Jira
Ticket at the moment.
[image: image.png]

---
Robin Han


[cayugabirds-l] Phoebe empty-nesters

2024-04-16 Thread Robin Cisne
Asking for a friend (no, really!):

"I'm going to have my house pressure washed and re-stained this summer.  I
don't want to interrupt my Phoebe's nesting/fledging but I have to give
these companies a date.  Do you  have any idea when would be a post-fledge
time for this?

Thanks for your help,
Robin

--

(copy & paste any URL below, then modify any text "_DOT_" to a period ".")

Cayugabirds-L List Info:
NortheastBirding_DOT_com/CayugabirdsWELCOME_DOT_htm
NortheastBirding_DOT_com/CayugabirdsRULES_DOT_htm
NortheastBirding_DOT_com/CayugabirdsSubscribeConfigurationLeave_DOT_htm

ARCHIVES:
1) mail-archive_DOT_com/cayugabirds-l@cornell_DOT_edu/maillist_DOT_html
2) surfbirds_DOT_com/birdingmail/Group/Cayugabirds
3) aba_DOT_org/birding-news/

Please submit your observations to eBird:
ebird_DOT_org/content/ebird/

--

[Git][archlinux/packaging/packages/fastfetch][main] upgpkg: 2.9.2-1: New upstream release + use our yyjson package/lib (instead of...

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


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


Commits:
6667ee7d by Robin Candau at 2024-04-16T11:50:03+02:00
upgpkg: 2.9.2-1: New upstream release + use our yyjson package/lib (instead of 
the embedeed/3rd party one)

- - - - -


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.1
+   pkgver = 2.9.2
pkgrel = 1
url = https://github.com/fastfetch-cli/fastfetch
arch = x86_64
@@ -25,6 +25,7 @@ pkgbase = fastfetch
makedepends = xfconf
makedepends = zlib
depends = glibc
+   depends = yyjson
optdepends = chafa: Image output as ascii art
optdepends = dbus: Bluetooth, Player & Media detection
optdepends = dconf: Needed for values that are only stored in DConf + 
Fallback for GSettings
@@ -42,7 +43,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.1.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.9.1.tar.gz
-   sha256sums = 
f22bb197095ea80c4aa17e1d4b5e0dd6e79234f4a18f427691c7e6f93a812ac8
+   source = 
fastfetch-2.9.2.tar.gz::https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.9.2.tar.gz
+   sha256sums = 
3ca9e48ed30c49fc50d5f64a2ce327a9f00ce4497feac01865c50086cc43e5ce
 
 pkgname = fastfetch


=
PKGBUILD
=
@@ -2,13 +2,13 @@
 # Contributor: Mark Wagie 
 
 pkgname=fastfetch
-pkgver=2.9.1
+pkgver=2.9.2
 pkgrel=1
 pkgdesc="Like Neofetch, but much faster because written in C"
 arch=('x86_64')
 url="https://github.com/fastfetch-cli/fastfetch;
 license=('MIT')
-depends=('glibc')
+depends=('glibc' 'yyjson')
 makedepends=(
   'chafa'
   'cmake'
@@ -50,18 +50,17 @@ optdepends=(
   'libdrm: Displays detection'
 )
 
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
-sha256sums=('f22bb197095ea80c4aa17e1d4b5e0dd6e79234f4a18f427691c7e6f93a812ac8')
+sha256sums=('3ca9e48ed30c49fc50d5f64a2ce327a9f00ce4497feac01865c50086cc43e5ce')
 
 build() {
cmake -B build -S "${pkgname}-${pkgver}" \
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX='/usr' \
-   -DCMAKE_BUILD_TYPE='RelWithDebInfo' \
-DBUILD_TESTS='ON' \
-DENABLE_SQLITE3='OFF' \
-DENABLE_RPM='OFF' \
-DENABLE_IMAGEMAGICK6='OFF' \
-   -DENABLE_DDCUTIL='ON' \
+   -DENABLE_SYSTEM_YYJSON='ON' \
-Wno-dev
cmake --build build
 }



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

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




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

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


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

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




[Desktop-packages] [Bug 2059847] Re: Input lag or freezes on Nvidia desktops with X11 after logging "MetaSyncRing: Sync object is not ready -- were events handled properly?"

2024-04-16 Thread Robin Bonicel
I opened a similar bug and @vanvugt advised me to come here. 
I read everything and will try the PPA if need be. 

But I'm using a driver that nobody mentioned, which was selected by Dell who 
assembled the machine and installed the OS.
On Nvidia driver section, I'm using "Set the power ondemand mode by default 
from oem-fix-gfx-nvidia-ondemandmode". I also have drives 535 and 470 available 
in the menu, but when I install them, my default setting disappears. I had to 
fully reinstall the OS to get it back. Nvidia themselves advise on their 
download page to not necessarily use their proprietary drivers on some Linux 
distribs, so I stuck with my default driver. 

Will the PPA and the mutter downgrade be of use with this default setting ?
Also, installing proprietary pilot from the Software & update menu raised an 
error, so I aborted the process.

I'm running :

- Ubuntu 22.4.04 LTS
- GNOME 42.9 (latest official update)
- X11
- NVIDIA T400 4GB  

Thank you

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/2059847

Title:
  Input lag or freezes on Nvidia desktops with X11 after logging
  "MetaSyncRing: Sync object is not ready -- were events handled
  properly?"

Status in Mutter:
  Fix Released
Status in mutter package in Ubuntu:
  In Progress
Status in mutter source package in Jammy:
  In Progress
Status in mutter source package in Mantic:
  In Progress
Status in mutter source package in Noble:
  In Progress

Bug description:
  [ Impact ]

  Input or the entire screen may freeze at times on systems using the
  Nvidia Xorg driver with GNOME.

  [ Test Plan ]

  0. Set up a desktop with Nvidia driver 545 or 550.
  1. Log into Ubuntu, ensuring it's a Xorg session.
  2. Open a Terminal, resize it vigorously, and type several lines of text.
  3. Run: journalctl -b0 | grep MetaSyncRing
  4. Verify the above command does NOT show "MetaSyncRing" messages such as:

  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Too many reboots -- disabling

  [ Where problems could occur ]

  Anywhere in Nvidia (proprietary driver) Xorg sessions since the code
  being modified is only used with that driver.

  [ Original Description ]

  There is a noticeable delay in input while using the native terminal.
  I belive it was caused by a recent software update, as this issue is
  relatively new.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubiquity (not installed)
  ProcVersionSignature: Ubuntu 6.5.0-26.26~22.04.1-generic 6.5.13
  Uname: Linux 6.5.0-26-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia wl
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Mar 30 19:57:13 2024
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
  InstallationDate: Installed on 2024-03-30 (0 days ago)
  InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 
(20240220)
  SourcePackage: ubiquity
  Symptom: installation
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/2059847/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 2059847] Re: Input lag or freezes on Nvidia desktops with X11 after logging "MetaSyncRing: Sync object is not ready -- were events handled properly?"

2024-04-16 Thread Robin Bonicel
I opened a similar bug and @vanvugt advised me to come here. 
I read everything and will try the PPA if need be. 

But I'm using a driver that nobody mentioned, which was selected by Dell who 
assembled the machine and installed the OS.
On Nvidia driver section, I'm using "Set the power ondemand mode by default 
from oem-fix-gfx-nvidia-ondemandmode". I also have drives 535 and 470 available 
in the menu, but when I install them, my default setting disappears. I had to 
fully reinstall the OS to get it back. Nvidia themselves advise on their 
download page to not necessarily use their proprietary drivers on some Linux 
distribs, so I stuck with my default driver. 

Will the PPA and the mutter downgrade be of use with this default setting ?
Also, installing proprietary pilot from the Software & update menu raised an 
error, so I aborted the process.

I'm running :

- Ubuntu 22.4.04 LTS
- GNOME 42.9 (latest official update)
- X11
- NVIDIA T400 4GB  

Thank you

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2059847

Title:
  Input lag or freezes on Nvidia desktops with X11 after logging
  "MetaSyncRing: Sync object is not ready -- were events handled
  properly?"

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/2059847/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2059847] Re: Input lag or freezes on Nvidia desktops with X11 after logging "MetaSyncRing: Sync object is not ready -- were events handled properly?"

2024-04-16 Thread Robin Bonicel
I opened a similar bug and @vanvugt advised me to come here. 
I read everything and will try the PPA if need be. 

But I'm using a driver that nobody mentioned, which was selected by Dell who 
assembled the machine and installed the OS.
On Nvidia driver section, I'm using "Set the power ondemand mode by default 
from oem-fix-gfx-nvidia-ondemandmode". I also have drives 535 and 470 available 
in the menu, but when I install them, my default setting disappears. I had to 
fully reinstall the OS to get it back. Nvidia themselves advise on their 
download page to not necessarily use their proprietary drivers on some Linux 
distribs, so I stuck with my default driver. 

Will the PPA and the mutter downgrade be of use with this default setting ?
Also, installing proprietary pilot from the Software & update menu raised an 
error, so I aborted the process.

I'm running :

- Ubuntu 22.4.04 LTS
- GNOME 42.9 (latest official update)
- X11
- NVIDIA T400 4GB  

Thank you

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/2059847

Title:
  Input lag or freezes on Nvidia desktops with X11 after logging
  "MetaSyncRing: Sync object is not ready -- were events handled
  properly?"

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/2059847/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Git][archlinux/packaging/packages/yyjson] Pushed new tag 0.9.0-2

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


Robin Candau pushed new tag 0.9.0-2 at Arch Linux / Packaging / Packages / 
yyjson

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




[Git][archlinux/packaging/packages/yyjson] Pushed new branch main

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


Robin Candau pushed new branch main at Arch Linux / Packaging / Packages / 
yyjson

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




[Git][archlinux/packaging/packages/ansible-core] Pushed new tag 2.16.6-2

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


Robin Candau pushed new tag 2.16.6-2 at Arch Linux / Packaging / Packages / 
ansible-core

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




[Git][archlinux/packaging/packages/ansible-core][main] upgpkg: 2.16.6-2: Rebuild Python 3.12

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


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


Commits:
ab24e080 by Robin Candau at 2024-04-16T08:43:54+02:00
upgpkg: 2.16.6-2: Rebuild Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ansible-core
pkgdesc = Radically simple IT automation platform
pkgver = 2.16.6
-   pkgrel = 1
+   pkgrel = 2
url = https://www.ansible.com
arch = any
license = GPL-3.0-or-later AND BSD-2-Clause AND PSF-2.0 AND MIT AND 
Apache-2.0


=
PKGBUILD
=
@@ -10,7 +10,7 @@
 pkgname=ansible-core
 _pkgname=ansible
 pkgver=2.16.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
 url='https://www.ansible.com'



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

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




[Git][archlinux/packaging/packages/ansible-core] Pushed new tag 2.16.6-1

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


Robin Candau pushed new tag 2.16.6-1 at Arch Linux / Packaging / Packages / 
ansible-core

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




[Git][archlinux/packaging/packages/ansible-core][main] upgpkg: 2.16.6-1: New upstream release

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


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


Commits:
c75e1a30 by Robin Candau at 2024-04-16T08:39:39+02:00
upgpkg: 2.16.6-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ansible-core
pkgdesc = Radically simple IT automation platform
-   pkgver = 2.16.5
-   pkgrel = 3
+   pkgver = 2.16.6
+   pkgrel = 1
url = https://www.ansible.com
arch = any
license = GPL-3.0-or-later AND BSD-2-Clause AND PSF-2.0 AND MIT AND 
Apache-2.0
@@ -44,8 +44,8 @@ pkgbase = ansible-core
provides = python-ansible
provides = ansible-base
replaces = ansible-base
-   source = 
ansible-core-2.16.5.tar.gz::https://github.com/ansible/ansible/archive/refs/tags/v2.16.5.tar.gz
-   sha512sums = 
ba4964759910df18104bb1770b9eac7edc5f141c7b95ea21145b55e1cbda9c3cd4fc6f79b0b2767f798570dbb413e33992716d7423de5aaed149aaa81297c982
-   b2sums = 
9bdcc678d7cf26c1a1a6e21ab0b860141ddb729f82fdb91f6f0b8e0b17053360f3508fa43badb5b60fa3e0715c03c67ff3222efdbad60ed131f9eaa21747c57c
+   source = 
ansible-core-2.16.6.tar.gz::https://github.com/ansible/ansible/archive/refs/tags/v2.16.6.tar.gz
+   sha512sums = 
5a9d50f098878f08211f205b776fcb109bc348d6a095bf6e502c1f06c2e148a711720cdbd656bf868f95e7afe2d701c25b5cbcbf1531906eb32f5abdca73fdd7
+   b2sums = 
8a6585749de09ff5b0846b67bbce492e049efbaffedc4f8c4a334a9a6ccc1522dba6273cc2272d1c5eed8e9d7f345013a65aa86ab466b053f27a6fcc08cea0c6
 
 pkgname = ansible-core


=
PKGBUILD
=
@@ -9,8 +9,8 @@
 
 pkgname=ansible-core
 _pkgname=ansible
-pkgver=2.16.5
-pkgrel=3
+pkgver=2.16.6
+pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
 url='https://www.ansible.com'
@@ -63,8 +63,8 @@ optdepends=(
 provides=('python-ansible' 'ansible-base')
 replaces=('ansible-base')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ansible/ansible/archive/refs/tags/v${pkgver}.tar.gz;)
-sha512sums=('ba4964759910df18104bb1770b9eac7edc5f141c7b95ea21145b55e1cbda9c3cd4fc6f79b0b2767f798570dbb413e33992716d7423de5aaed149aaa81297c982')
-b2sums=('9bdcc678d7cf26c1a1a6e21ab0b860141ddb729f82fdb91f6f0b8e0b17053360f3508fa43badb5b60fa3e0715c03c67ff3222efdbad60ed131f9eaa21747c57c')
+sha512sums=('5a9d50f098878f08211f205b776fcb109bc348d6a095bf6e502c1f06c2e148a711720cdbd656bf868f95e7afe2d701c25b5cbcbf1531906eb32f5abdca73fdd7')
+b2sums=('8a6585749de09ff5b0846b67bbce492e049efbaffedc4f8c4a334a9a6ccc1522dba6273cc2272d1c5eed8e9d7f345013a65aa86ab466b053f27a6fcc08cea0c6')
 
 build() {
   cd "${_pkgname}-${pkgver}"



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

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




[Git][archlinux/packaging/packages/gitea][main] upgpkg: 1.21.11-1: New upstream release

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


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


Commits:
f48245e6 by Robin Candau at 2024-04-16T08:34:33+02:00
upgpkg: 1.21.11-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = gitea
pkgdesc = Painless self-hosted Git service, community managed.
-   pkgver = 1.21.10
-   pkgrel = 2
+   pkgver = 1.21.11
+   pkgrel = 1
url = https://gitea.io
arch = x86_64
license = MIT
@@ -20,7 +20,7 @@ pkgbase = gitea
optdepends = sqlite: SQLite support
options = !lto
backup = etc/gitea/app.ini
-   source = git+https://github.com/go-gitea/gitea.git#tag=v1.21.10?signed
+   source = git+https://github.com/go-gitea/gitea.git#tag=v1.21.11?signed
source = gitea.tmpfiles
source = gitea.service
source = gitea.sysusers
@@ -31,7 +31,7 @@ pkgbase = gitea
validpgpkeys = D2CF76DA95F201E9901532AB3CDE74631F13A748
validpgpkeys = 82A110A44DF1A28D50C093BFB853ADA5DA7BBF7A
validpgpkeys = FE7C3EAEB8CD8290390B12AD3DECE05F6D9A647C
-   sha256sums = 
81b94cd82da75c1f4493791eb6853c67d0c2b8f02c330dac04a41cbe9693015c
+   sha256sums = 
be306c135bc72b33afdd2eac1f375de03a98a21b45901af33f106b67a9f8b851
sha256sums = 
1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba
sha256sums = 
0725aa3d9c556229b473ee5a12a922a1ebbb88aeb02cffd0252756c8bd531959
sha256sums = 
7e7b798b8ce035c1fb55993ece41c5efb6cad5922708866804fa50ada0cf9fa5


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 # Contributor: Frederik Schwan 
 
 pkgname=gitea
-pkgver=1.21.10
-pkgrel=2
+pkgver=1.21.11
+pkgrel=1
 pkgdesc="Painless self-hosted Git service, community managed."
 arch=(x86_64)
 url="https://gitea.io;
@@ -28,7 +28,7 @@ 
source=(git+https://github.com/go-gitea/gitea.git#tag=v${pkgver}?signed
 gitea.tmpfiles
 gitea.service
 gitea.sysusers)
-sha256sums=('81b94cd82da75c1f4493791eb6853c67d0c2b8f02c330dac04a41cbe9693015c'
+sha256sums=('be306c135bc72b33afdd2eac1f375de03a98a21b45901af33f106b67a9f8b851'
 '1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba'
 '0725aa3d9c556229b473ee5a12a922a1ebbb88aeb02cffd0252756c8bd531959'
 '7e7b798b8ce035c1fb55993ece41c5efb6cad5922708866804fa50ada0cf9fa5')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/gitea/-/commit/f48245e6b2afac31c2439b2db10acc833d1d8e88

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




[Git][archlinux/packaging/packages/gitea] Pushed new tag 1.21.11-1

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


Robin Candau pushed new tag 1.21.11-1 at Arch Linux / Packaging / Packages / 
gitea

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




[Bug 2061585] [NEW] Everything laggy, file browsing in nautilus and terminal completion

2024-04-15 Thread Robin Bonicel
Public bug reported:

I reinstalled Ubuntu22.04 as it was in factory settings, and everything
ran smoothly and fast. I then installed 1.3Go of updates, including the
gnome-42-2204 update and everything started to run slow, and nautilus
started freezing.

I tried to look online for a fix, and everyone pointed to gnome
0+git.510a601 being the issue. I also updated my core22 to version
20240111.

This page is an example of the issue I'm having :
https://discourse.ubuntu.com/t/very-lagging-slow-after-latest-kernel-
gnome-upgrade-22-04-3/37881/9

I'm on Ubuntu 20.04.4 LTS with a brand new machine : 64Go RAM, Intel
Xeon w7-2495X x 48.

I haven't change any additional driver.

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-shell 42.9-0ubuntu2
ProcVersionSignature: Ubuntu 6.5.0-1019.20-oem 6.5.13
Uname: Linux 6.5.0-1019-oem x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 15 17:28:14 2024
DisplayManager: gdm3
DistributionChannelDescriptor:
 # This is the distribution channel descriptor for the OEM CDs
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-jammy-amd64-20220504-33
InstallationDate: Installed on 2024-04-15 (0 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - 
somerville-jammy-amd64-20220504-33
RelatedPackageVersions: mutter-common 42.9-0ubuntu7
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2061585

Title:
  Everything laggy, file browsing in nautilus and terminal completion

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2061585/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Desktop-packages] [Bug 2061585] [NEW] Everything laggy, file browsing in nautilus and terminal completion

2024-04-15 Thread Robin Bonicel
Public bug reported:

I reinstalled Ubuntu22.04 as it was in factory settings, and everything
ran smoothly and fast. I then installed 1.3Go of updates, including the
gnome-42-2204 update and everything started to run slow, and nautilus
started freezing.

I tried to look online for a fix, and everyone pointed to gnome
0+git.510a601 being the issue. I also updated my core22 to version
20240111.

This page is an example of the issue I'm having :
https://discourse.ubuntu.com/t/very-lagging-slow-after-latest-kernel-
gnome-upgrade-22-04-3/37881/9

I'm on Ubuntu 20.04.4 LTS with a brand new machine : 64Go RAM, Intel
Xeon w7-2495X x 48.

I haven't change any additional driver.

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-shell 42.9-0ubuntu2
ProcVersionSignature: Ubuntu 6.5.0-1019.20-oem 6.5.13
Uname: Linux 6.5.0-1019-oem x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 15 17:28:14 2024
DisplayManager: gdm3
DistributionChannelDescriptor:
 # This is the distribution channel descriptor for the OEM CDs
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-jammy-amd64-20220504-33
InstallationDate: Installed on 2024-04-15 (0 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - 
somerville-jammy-amd64-20220504-33
RelatedPackageVersions: mutter-common 42.9-0ubuntu7
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy third-party-packages

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2061585

Title:
  Everything laggy, file browsing in nautilus and terminal completion

Status in gnome-shell package in Ubuntu:
  New

Bug description:
  I reinstalled Ubuntu22.04 as it was in factory settings, and
  everything ran smoothly and fast. I then installed 1.3Go of updates,
  including the gnome-42-2204 update and everything started to run slow,
  and nautilus started freezing.

  I tried to look online for a fix, and everyone pointed to gnome
  0+git.510a601 being the issue. I also updated my core22 to version
  20240111.

  This page is an example of the issue I'm having :
  https://discourse.ubuntu.com/t/very-lagging-slow-after-latest-kernel-
  gnome-upgrade-22-04-3/37881/9

  I'm on Ubuntu 20.04.4 LTS with a brand new machine : 64Go RAM, Intel
  Xeon w7-2495X x 48.

  I haven't change any additional driver.

  Thanks

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gnome-shell 42.9-0ubuntu2
  ProcVersionSignature: Ubuntu 6.5.0-1019.20-oem 6.5.13
  Uname: Linux 6.5.0-1019-oem x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Apr 15 17:28:14 2024
  DisplayManager: gdm3
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-jammy-amd64-20220504-33
  InstallationDate: Installed on 2024-04-15 (0 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - 
somerville-jammy-amd64-20220504-33
  RelatedPackageVersions: mutter-common 42.9-0ubuntu7
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2061585/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 2061585] [NEW] Everything laggy, file browsing in nautilus and terminal completion

2024-04-15 Thread Robin Bonicel
Public bug reported:

I reinstalled Ubuntu22.04 as it was in factory settings, and everything
ran smoothly and fast. I then installed 1.3Go of updates, including the
gnome-42-2204 update and everything started to run slow, and nautilus
started freezing.

I tried to look online for a fix, and everyone pointed to gnome
0+git.510a601 being the issue. I also updated my core22 to version
20240111.

This page is an example of the issue I'm having :
https://discourse.ubuntu.com/t/very-lagging-slow-after-latest-kernel-
gnome-upgrade-22-04-3/37881/9

I'm on Ubuntu 20.04.4 LTS with a brand new machine : 64Go RAM, Intel
Xeon w7-2495X x 48.

I haven't change any additional driver.

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-shell 42.9-0ubuntu2
ProcVersionSignature: Ubuntu 6.5.0-1019.20-oem 6.5.13
Uname: Linux 6.5.0-1019-oem x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 15 17:28:14 2024
DisplayManager: gdm3
DistributionChannelDescriptor:
 # This is the distribution channel descriptor for the OEM CDs
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-jammy-amd64-20220504-33
InstallationDate: Installed on 2024-04-15 (0 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - 
somerville-jammy-amd64-20220504-33
RelatedPackageVersions: mutter-common 42.9-0ubuntu7
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/2061585

Title:
  Everything laggy, file browsing in nautilus and terminal completion

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2061585/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[gentoo-commits] repo/gentoo:master commit in: sys-apps/clrngd/files/, sys-apps/clrngd/

2024-04-15 Thread Robin H. Johnson
commit: 92d715d96d8618e6f5538e1ca6739ef584bd5a2d
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Apr 14 16:35:02 2024 +
Commit:     Robin H. Johnson  gentoo  org>
CommitDate: Mon Apr 15 15:02:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92d715d9

sys-apps/clrngd: cleanup init

Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://bugs.gentoo.org/484696

 sys-apps/clrngd/clrngd-1.0.3-r2.ebuild | 35 ++
 sys-apps/clrngd/files/clrngd-init.d-r2 | 14 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-apps/clrngd/clrngd-1.0.3-r2.ebuild 
b/sys-apps/clrngd/clrngd-1.0.3-r2.ebuild
new file mode 100644
index ..8f8098302781
--- /dev/null
+++ b/sys-apps/clrngd/clrngd-1.0.3-r2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Clock randomness gathering daemon"
+HOMEPAGE="http://echelon.pl/pubs/;
+SRC_URI="http://echelon.pl/pubs/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.0.3-implicit-func-declaration.patch
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   econf --bindir="${EPREFIX}"/usr/sbin
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}"/${PN}-init.d-r2 ${PN}
+   newconfd "${FILESDIR}"/${PN}-conf.d ${PN}
+}

diff --git a/sys-apps/clrngd/files/clrngd-init.d-r2 
b/sys-apps/clrngd/files/clrngd-init.d-r2
new file mode 100644
index ..5a7bc5be924d
--- /dev/null
+++ b/sys-apps/clrngd/files/clrngd-init.d-r2
@@ -0,0 +1,14 @@
+#!/sbin/openrc-run
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+name='clrngd'
+command='/usr/sbin/clrngd'
+command_args="${clrngd_opts:-${DELAYTIME}}"
+description="Clock entropy for RNG"
+
+depend() {
+   after random
+   before net
+   provide entropy
+}



[gcc r14-9972] RISC-V: Add VLS to mask vec_extract [PR114668].

2024-04-15 Thread Robin Dapp via Gcc-cvs
https://gcc.gnu.org/g:02cc8f3e68f9af96d484d9946ceaa9e3eed38151

commit r14-9972-g02cc8f3e68f9af96d484d9946ceaa9e3eed38151
Author: Robin Dapp 
Date:   Mon Apr 15 12:44:56 2024 +0200

RISC-V: Add VLS to mask vec_extract [PR114668].

This adds the missing VLS modes to the mask extract expanders.

gcc/ChangeLog:

PR target/114668

* config/riscv/autovec.md: Add VLS.

gcc/testsuite/ChangeLog:

* gcc.target/riscv/rvv/autovec/pr114668.c: New test.

Diff:
---
 gcc/config/riscv/autovec.md|  4 +--
 .../gcc.target/riscv/rvv/autovec/pr114668.c| 35 ++
 2 files changed, 37 insertions(+), 2 deletions(-)

diff --git a/gcc/config/riscv/autovec.md b/gcc/config/riscv/autovec.md
index 3b32369f68c..aa1ae0fe075 100644
--- a/gcc/config/riscv/autovec.md
+++ b/gcc/config/riscv/autovec.md
@@ -1427,7 +1427,7 @@
 (define_expand "vec_extractqi"
   [(set (match_operand:QI0 "register_operand")
  (vec_select:QI
-   (match_operand:VB 1 "register_operand")
+   (match_operand:VB_VLS 1 "register_operand")
(parallel
 [(match_operand  2 "nonmemory_operand")])))]
   "TARGET_VECTOR"
@@ -1453,7 +1453,7 @@
 (define_expand "vec_extractbi"
   [(set (match_operand:QI0 "register_operand")
  (vec_select:QI
-   (match_operand:VB 1 "register_operand")
+   (match_operand:VB_VLS 1 "register_operand")
(parallel
 [(match_operand  2 "nonmemory_operand")])))]
   "TARGET_VECTOR"
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c 
b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c
new file mode 100644
index 000..3a13c3c0012
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c
@@ -0,0 +1,35 @@
+/* { dg-do run } */
+/* { dg-require-effective-target riscv_v } */
+/* { dg-options { -O3 -fno-vect-cost-model -march=rv64gcv -mabi=lp64d  } } */
+
+char a;
+int b;
+short e[14];
+char f[4][12544];
+_Bool c[4][5];
+
+__attribute__ ((noipa))
+void foo (int a)
+{
+  if (a != 1)
+__builtin_abort ();
+}
+
+int main ()
+{
+  for (int i = 0; i < 4; ++i)
+for (int l = 0; l < 15; ++l)
+  for (int m = 0; m < 15; ++m)
+   f[i][l * m] = 3;
+  for (int j = 0; j < 4; j += 1)
+for (int k = 3; k < 13; k += 3)
+  for (_Bool l = 0; l < 1; l = 1)
+   for (int m = 0; m < 4; m += 1)
+ {
+   a = 0;
+   b -= e[k];
+   c[j][m] = f[j][6];
+ }
+  for (long i = 2; i < 4; ++i)
+foo (c[3][3]);
+}


[PATCH] RISC-V: Add VLS to mask vec_extract [PR114668].

2024-04-15 Thread Robin Dapp
Hi,

this adds the missing VLS modes to the mask extract expanders.
I found a dump scan difficult to create reliably so I just
kept the PR's run test case.

Regtested on rv64gcv. 

Regards
 Robin

gcc/ChangeLog:

PR target/114668

* config/riscv/autovec.md: Add VLS.

gcc/testsuite/ChangeLog:

* gcc.target/riscv/rvv/autovec/pr114668.c: New test.
---
 gcc/config/riscv/autovec.md   |  4 +--
 .../gcc.target/riscv/rvv/autovec/pr114668.c   | 35 +++
 2 files changed, 37 insertions(+), 2 deletions(-)
 create mode 100644 gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c

diff --git a/gcc/config/riscv/autovec.md b/gcc/config/riscv/autovec.md
index 3b32369f68c..aa1ae0fe075 100644
--- a/gcc/config/riscv/autovec.md
+++ b/gcc/config/riscv/autovec.md
@@ -1427,7 +1427,7 @@ (define_expand "vec_extract"
 (define_expand "vec_extractqi"
   [(set (match_operand:QI0 "register_operand")
  (vec_select:QI
-   (match_operand:VB 1 "register_operand")
+   (match_operand:VB_VLS 1 "register_operand")
(parallel
 [(match_operand  2 "nonmemory_operand")])))]
   "TARGET_VECTOR"
@@ -1453,7 +1453,7 @@ (define_expand "vec_extractqi"
 (define_expand "vec_extractbi"
   [(set (match_operand:QI0 "register_operand")
  (vec_select:QI
-   (match_operand:VB 1 "register_operand")
+   (match_operand:VB_VLS 1 "register_operand")
(parallel
 [(match_operand  2 "nonmemory_operand")])))]
   "TARGET_VECTOR"
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c 
b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c
new file mode 100644
index 000..3a13c3c0012
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr114668.c
@@ -0,0 +1,35 @@
+/* { dg-do run } */
+/* { dg-require-effective-target riscv_v } */
+/* { dg-options { -O3 -fno-vect-cost-model -march=rv64gcv -mabi=lp64d  } } */
+
+char a;
+int b;
+short e[14];
+char f[4][12544];
+_Bool c[4][5];
+
+__attribute__ ((noipa))
+void foo (int a)
+{
+  if (a != 1)
+__builtin_abort ();
+}
+
+int main ()
+{
+  for (int i = 0; i < 4; ++i)
+for (int l = 0; l < 15; ++l)
+  for (int m = 0; m < 15; ++m)
+   f[i][l * m] = 3;
+  for (int j = 0; j < 4; j += 1)
+for (int k = 3; k < 13; k += 3)
+  for (_Bool l = 0; l < 1; l = 1)
+   for (int m = 0; m < 4; m += 1)
+ {
+   a = 0;
+   b -= e[k];
+   c[j][m] = f[j][6];
+ }
+  for (long i = 2; i < 4; ++i)
+foo (c[3][3]);
+}
-- 
2.44.0


[cayugabirds-l] FOY GBH!

2024-04-13 Thread Robin Cisne
WOOHOO!  Flying over the top of Snyder Hill.  

--

(copy & paste any URL below, then modify any text "_DOT_" to a period ".")

Cayugabirds-L List Info:
NortheastBirding_DOT_com/CayugabirdsWELCOME_DOT_htm
NortheastBirding_DOT_com/CayugabirdsRULES_DOT_htm
NortheastBirding_DOT_com/CayugabirdsSubscribeConfigurationLeave_DOT_htm

ARCHIVES:
1) mail-archive_DOT_com/cayugabirds-l@cornell_DOT_edu/maillist_DOT_html
2) surfbirds_DOT_com/birdingmail/Group/Cayugabirds
3) aba_DOT_org/birding-news/

Please submit your observations to eBird:
ebird_DOT_org/content/ebird/

--

[Git][archlinux/packaging/packages/firewalld][main] upgpkg: 2.1.2-2: Rebuild Python 3.12

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


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


Commits:
29aa4b11 by Robin Candau at 2024-04-13T10:36:15+02:00
upgpkg: 2.1.2-2: Rebuild Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

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


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=firewalld
 pkgver=2.1.2
-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/29aa4b11aa46793a5b26a1fa624864ad6250f696

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




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

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


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

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




[Git][archlinux/packaging/packages/firewalld] Pushed new tag 2.1.2-1

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


Robin Candau pushed new tag 2.1.2-1 at Arch Linux / Packaging / Packages / 
firewalld

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




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

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


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

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




[Git][archlinux/packaging/packages/libplacebo] Pushed new tag 6.338.2-6

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


Robin Candau pushed new tag 6.338.2-6 at Arch Linux / Packaging / Packages / 
libplacebo

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




[Git][archlinux/packaging/packages/libplacebo][main] upgpkg: 6.338.2-6: Rebuild Python 3.12

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


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


Commits:
2a14c8d1 by Robin Candau at 2024-04-12T10:33:35+02:00
upgpkg: 6.338.2-6: Rebuild Python 3.12

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = libplacebo
pkgdesc = Reusable library for GPU-accelerated video/image rendering 
primitives
pkgver = 6.338.2
-   pkgrel = 5
+   pkgrel = 6
url = https://github.com/haasn/libplacebo
arch = x86_64
license = LGPL-2.1-or-later


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=libplacebo
 pkgver=6.338.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Reusable library for GPU-accelerated video/image rendering primitives'
 url='https://github.com/haasn/libplacebo'
 arch=('x86_64')



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

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




[Git][archlinux/packaging/packages/libplacebo] Pushed new tag 6.338.2-5

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


Robin Candau pushed new tag 6.338.2-5 at Arch Linux / Packaging / Packages / 
libplacebo

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




[Git][archlinux/packaging/packages/libplacebo][main] upgpkg: 6.338.2-5: Rebuild against gslang 14.1.0

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


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


Commits:
49d847af by Robin Candau at 2024-04-12T10:30:15+02:00
upgpkg: 6.338.2-5: Rebuild against gslang 14.1.0

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = libplacebo
pkgdesc = Reusable library for GPU-accelerated video/image rendering 
primitives
pkgver = 6.338.2
-   pkgrel = 4
+   pkgrel = 5
url = https://github.com/haasn/libplacebo
arch = x86_64
license = LGPL-2.1-or-later


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=libplacebo
 pkgver=6.338.2
-pkgrel=4
+pkgrel=5
 pkgdesc='Reusable library for GPU-accelerated video/image rendering primitives'
 url='https://github.com/haasn/libplacebo'
 arch=('x86_64')



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libplacebo/-/commit/49d847afc9b3a4a0908c74cfd5266d55ea985f6b

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




[Git][archlinux/packaging/packages/libplacebo] Pushed new tag 6.338.2-4

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


Robin Candau pushed new tag 6.338.2-4 at Arch Linux / Packaging / Packages / 
libplacebo

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




[Git][archlinux/packaging/packages/libplacebo][main] upgpkg: 6.338.2-4: Adding libglvnd as a makedepends

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


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


Commits:
a767d829 by Robin Candau at 2024-04-12T10:27:34+02:00
upgpkg: 6.338.2-4: Adding libglvnd as a makedepends
Fixes 
https://gitlab.archlinux.org/archlinux/packaging/packages/libplacebo/-/issues/2

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = libplacebo
pkgdesc = Reusable library for GPU-accelerated video/image rendering 
primitives
pkgver = 6.338.2
-   pkgrel = 3
+   pkgrel = 4
url = https://github.com/haasn/libplacebo
arch = x86_64
license = LGPL-2.1-or-later
@@ -15,6 +15,7 @@ pkgbase = libplacebo
makedepends = python-mako
makedepends = python-markupsafe
makedepends = python-jinja
+   makedepends = libglvnd
depends = vulkan-icd-loader
depends = glslang
depends = lcms2


=
PKGBUILD
=
@@ -3,7 +3,7 @@
 
 pkgname=libplacebo
 pkgver=6.338.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Reusable library for GPU-accelerated video/image rendering primitives'
 url='https://github.com/haasn/libplacebo'
 arch=('x86_64')
@@ -13,6 +13,7 @@ depends=('vulkan-icd-loader' 'glslang' 'lcms2' 'shaderc'
 makedepends=(
   'meson' 'ninja' 'vulkan-headers' 'glad' 'nuklear'
   'python' 'python-setuptools' 'python-mako' 'python-markupsafe' 'python-jinja'
+  'libglvnd'
 )
 provides=('libplacebo.so')
 
source=(https://code.videolan.org/videolan/libplacebo/-/archive/v${pkgver}/libplacebo-v${pkgver}.tar.gz)



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/libplacebo/-/commit/a767d8295915f6e30183fef34ece2da9e8e27b5a

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




[Git][archlinux/packaging/packages/pdfjs-legacy][main] upgpkg: 4.1.392-1: New upstream release

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


Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
pdfjs-legacy


Commits:
d5b1fe86 by Robin Candau at 2024-04-12T09:25:59+02:00
upgpkg: 4.1.392-1: New upstream release
https://github.com/mozilla/pdf.js/releases/tag/v4.1.392

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,12 @@
 pkgbase = pdfjs-legacy
pkgdesc = PDF reader in javascript - legacy distribution
-   pkgver = 4.0.379
+   pkgver = 4.1.392
pkgrel = 1
url = https://mozilla.github.io/pdf.js/
arch = any
-   license = Apache
+   license = Apache-2.0
conflicts = pdfjs
-   source = 
https://github.com/mozilla/pdf.js/releases/download/v4.0.379/pdfjs-4.0.379-legacy-dist.zip
-   sha256sums = 
b8ca6bb6edc9f9b525dd8670f150862413b562e50ad58870598c93cffa66ad92
+   source = 
https://github.com/mozilla/pdf.js/releases/download/v4.1.392/pdfjs-4.1.392-legacy-dist.zip
+   sha256sums = 
90dab92eeae4698500fe4dc21c25ba0a7ccbb888d42d830677c795b795705eed
 
 pkgname = pdfjs-legacy


=
PKGBUILD
=
@@ -4,15 +4,15 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=pdfjs-legacy
-pkgver=4.0.379
+pkgver=4.1.392
 pkgrel=1
 pkgdesc="PDF reader in javascript - legacy distribution"
 conflicts=(pdfjs)
 arch=('any')
 url="https://mozilla.github.io/pdf.js/;
-license=('Apache')
+license=('Apache-2.0')
 
source=("https://github.com/mozilla/pdf.js/releases/download/v${pkgver}/pdfjs-${pkgver}-legacy-dist.zip;)
-sha256sums=('b8ca6bb6edc9f9b525dd8670f150862413b562e50ad58870598c93cffa66ad92')
+sha256sums=('90dab92eeae4698500fe4dc21c25ba0a7ccbb888d42d830677c795b795705eed')
 
 package() {
   mkdir -p "$pkgdir/usr/share/pdf.js"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/pdfjs-legacy/-/commit/d5b1fe869031631e061d53eeada5d6753171421d

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




[Git][archlinux/packaging/packages/pdfjs-legacy] Pushed new tag 4.1.392-1

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


Robin Candau pushed new tag 4.1.392-1 at Arch Linux / Packaging / Packages / 
pdfjs-legacy

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




[Git][archlinux/packaging/packages/pdfjs][main] upgpkg: 4.1.392-1: New upstream release

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


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


Commits:
5294cc8b by Robin Candau at 2024-04-12T09:17:23+02:00
upgpkg: 4.1.392-1: New upstream release
https://github.com/mozilla/pdf.js/releases/tag/v4.1.392

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,12 +1,12 @@
 pkgbase = pdfjs
pkgdesc = PDF reader in javascript
-   pkgver = 4.0.379
+   pkgver = 4.1.392
pkgrel = 1
url = https://mozilla.github.io/pdf.js/
arch = any
-   license = Apache
+   license = Apache-2.0
conflicts = pdfjs-legacy
-   source = 
https://github.com/mozilla/pdf.js/releases/download/v4.0.379/pdfjs-4.0.379-dist.zip
-   sha256sums = 
11e5e00cf620e73f4b0b832d662b37d6a0cd25b3d0c817acfffec8516bc922dc
+   source = 
https://github.com/mozilla/pdf.js/releases/download/v4.1.392/pdfjs-4.1.392-dist.zip
+   sha256sums = 
3d3af681d7b6b6e5927df10f98220db830cdff4a3117c2320a9d611ab4299356
 
 pkgname = pdfjs


=
PKGBUILD
=
@@ -4,15 +4,15 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=pdfjs
-pkgver=4.0.379
+pkgver=4.1.392
 pkgrel=1
 pkgdesc="PDF reader in javascript"
 conflicts=(pdfjs-legacy)
 arch=('any')
 url="https://mozilla.github.io/pdf.js/;
-license=('Apache')
+license=('Apache-2.0')
 
source=("https://github.com/mozilla/pdf.js/releases/download/v${pkgver}/pdfjs-${pkgver}-dist.zip;)
-sha256sums=('11e5e00cf620e73f4b0b832d662b37d6a0cd25b3d0c817acfffec8516bc922dc')
+sha256sums=('3d3af681d7b6b6e5927df10f98220db830cdff4a3117c2320a9d611ab4299356')
 
 package() {
   mkdir -p "$pkgdir/usr/share/pdf.js"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/pdfjs/-/commit/5294cc8b068e2c0ff09d3f86a34ba79a0267132c

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




[Git][archlinux/packaging/packages/pdfjs] Pushed new tag 4.1.392-1

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


Robin Candau pushed new tag 4.1.392-1 at Arch Linux / Packaging / Packages / 
pdfjs

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




Re: [PATCH] treewide: Fix common grammar mistake "the the"

2024-04-11 Thread Robin Murphy

On 11/04/2024 4:04 pm, Thorsten Blum wrote:

Use `find . -type f -exec sed -i 's/\/the/g' {} +` to find all
occurrences of "the the" and replace them with a single "the".


[...]

diff --git a/arch/arm/include/asm/unwind.h b/arch/arm/include/asm/unwind.h
index d60b09a5acfc..a75da9a01f91 100644
--- a/arch/arm/include/asm/unwind.h
+++ b/arch/arm/include/asm/unwind.h
@@ -10,7 +10,7 @@
  
  #ifndef __ASSEMBLY__
  
-/* Unwind reason code according the the ARM EABI documents */

+/* Unwind reason code according the ARM EABI documents */


Well, that's clearly still not right... repeated words aren't *always* 
redundant, sometimes they're meant to be other words ;)


Thanks,
Robin.


Re: [PATCH] treewide: Fix common grammar mistake "the the"

2024-04-11 Thread Robin Murphy

On 11/04/2024 4:04 pm, Thorsten Blum wrote:

Use `find . -type f -exec sed -i 's/\/the/g' {} +` to find all
occurrences of "the the" and replace them with a single "the".


[...]

diff --git a/arch/arm/include/asm/unwind.h b/arch/arm/include/asm/unwind.h
index d60b09a5acfc..a75da9a01f91 100644
--- a/arch/arm/include/asm/unwind.h
+++ b/arch/arm/include/asm/unwind.h
@@ -10,7 +10,7 @@
  
  #ifndef __ASSEMBLY__
  
-/* Unwind reason code according the the ARM EABI documents */

+/* Unwind reason code according the ARM EABI documents */


Well, that's clearly still not right... repeated words aren't *always* 
redundant, sometimes they're meant to be other words ;)


Thanks,
Robin.


[Git][archlinux/packaging/packages/limine][main] upgpkg: 7.3.1-1: New upstream release

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


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


Commits:
b1659c16 by Robin Candau at 2024-04-11T08:52:40+02:00
upgpkg: 7.3.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = limine
pkgdesc = An advanced, portable, multiprotocol bootloader
-   pkgver = 7.3.0
+   pkgver = 7.3.1
pkgrel = 1
url = https://limine-bootloader.org/
arch = x86_64
@@ -12,7 +12,7 @@ pkgbase = limine
makedepends = lld
makedepends = clang
depends = glibc
-   source = git+https://github.com/limine-bootloader/limine.git#tag=v7.3.0
-   sha256sums = 
2872ca981b4174bf97dbdf460a35ebaf7c7180960f441bfe8b20cc37a2465f19
+   source = git+https://github.com/limine-bootloader/limine.git#tag=v7.3.1
+   sha256sums = 
e29a46566efd2221fd06537c23767511baaddadd0c1b2dc486d2f195566c26f6
 
 pkgname = limine


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Contributor: Mintsuki 
 
 pkgname=limine
-pkgver=7.3.0
+pkgver=7.3.1
 pkgrel=1
 pkgdesc="An advanced, portable, multiprotocol bootloader"
 arch=('x86_64')
@@ -11,7 +11,7 @@ license=('BSD-2-Clause')
 depends=('glibc')
 makedepends=('git' 'nasm' 'mtools' 'llvm' 'lld' 'clang')
 source=("git+https://github.com/limine-bootloader/limine.git#tag=v${pkgver};)
-sha256sums=('2872ca981b4174bf97dbdf460a35ebaf7c7180960f441bfe8b20cc37a2465f19')
+sha256sums=('e29a46566efd2221fd06537c23767511baaddadd0c1b2dc486d2f195566c26f6')
 
 prepare() {
cd "${pkgname}"



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/limine/-/commit/b1659c16b56c68f55844ff5ec78b6ee580f7de3d

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




[Git][archlinux/packaging/packages/limine] Pushed new tag 7.3.1-1

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


Robin Candau pushed new tag 7.3.1-1 at Arch Linux / Packaging / Packages / 
limine

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




[Git][archlinux/packaging/packages/lutris][main] upgpkg: 0.5.17-2: Rebuild Python 3.12

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


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


Commits:
e9fe374c by Robin Candau at 2024-04-11T08:50:14+02:00
upgpkg: 0.5.17-2: Rebuild Python 3.12
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = lutris
pkgdesc = Open Gaming Platform
pkgver = 0.5.17
-   pkgrel = 1
+   pkgrel = 2
url = https://lutris.net
arch = any
license = GPL-3.0-only


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=lutris
 pkgver=0.5.17
-pkgrel=1
+pkgrel=2
 pkgdesc='Open Gaming Platform'
 arch=(any)
 url=https://lutris.net



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

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




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

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


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

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




[Git][archlinux/packaging/packages/lutris][main] upgpkg: 0.5.17-1: New upstream release

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


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


Commits:
ca0f2555 by Robin Candau at 2024-04-11T08:48:38+02:00
upgpkg: 0.5.17-1: New upstream release
https://github.com/lutris/lutris/releases/tag/v0.5.17

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = lutris
pkgdesc = Open Gaming Platform
-   pkgver = 0.5.16
-   pkgrel = 3
+   pkgver = 0.5.17
+   pkgrel = 1
url = https://lutris.net
arch = any
license = GPL-3.0-only
@@ -56,9 +56,7 @@ 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=v0.5.16
-   source = 
fix_refresh_steam_library.patch::https://github.com/lutris/lutris/commit/d6faf75fb370a004b80539466a7cd0beedcf5e5c.patch
-   sha256sums = 
eb675cd7c1f172ad93b8230fa270c800a0402b17bfcad1a6565d4dd95c91d4fd
-   sha256sums = 
f6564979af07a343aebb475b304fad54f3fd512ba367667d334b1288bbf5dc91
+   source = git+https://github.com/lutris/lutris.git#tag=v0.5.17
+   sha256sums = 
fd80281d0bc0e0b3f077184313bb774d93309c32b93d8591da9fb05ec757d2ce
 
 pkgname = lutris


=
PKGBUILD
=
@@ -4,8 +4,8 @@
 # Contributor: Frederik “Freso” S. Olesen 
 
 pkgname=lutris
-pkgver=0.5.16
-pkgrel=3
+pkgver=0.5.17
+pkgrel=1
 pkgdesc='Open Gaming Platform'
 arch=(any)
 url=https://lutris.net
@@ -69,17 +69,8 @@ optdepends=(
   'wine: Windows support'
   'xorg-xgamma: Restore gamma on game exit'
 )
-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')
-
-prepare() {
-  cd lutris
-  # 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"
-}
+source=("git+https://github.com/lutris/lutris.git#tag=v${pkgver};)
+sha256sums=('fd80281d0bc0e0b3f077184313bb774d93309c32b93d8591da9fb05ec757d2ce')
 
 build() {
   arch-meson lutris build



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

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




[Git][archlinux/packaging/packages/lutris] Pushed new tag 0.5.17-1

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


Robin Candau pushed new tag 0.5.17-1 at Arch Linux / Packaging / Packages / 
lutris

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




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

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


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


Commits:
08413062 by Robin Candau at 2024-04-10T16:08:37+02:00
upgpkg: 1.45.0-2: Rebuild Python 3.12
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.45.0
-   pkgrel = 1
+   pkgrel = 2
url = https://sentry.io/for/python
arch = any
license = MIT


=
PKGBUILD
=
@@ -4,7 +4,7 @@
 pkgname=python-sentry_sdk
 _pkgname=sentry-python
 pkgver=1.45.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The official Python SDK for Sentry.io"
 arch=('any')
 url="https://sentry.io/for/python;



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

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




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

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


Robin Candau pushed new tag 1.45.0-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.45.0-2
You're receiving this email because of your account on gitlab.archlinux.org.




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

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


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


Commits:
b86b1270 by Robin Candau at 2024-04-10T16:06:47+02:00
upgpkg: 1.45.0-1: New upstream release
https://github.com/getsentry/sentry-python/releases/tag/1.45.0

- - - - -


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 = 2
+   pkgver = 1.45.0
+   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 = 
python-sentry_sdk-1.44.1.tar.gz::https://github.com/getsentry/sentry-python/archive/refs/tags/1.44.1.tar.gz
-   sha256sums = 
f41f61356eaac2bd398b6f70efc88838080141588abc069392bc7880a7f2c3c4
+   source = 
python-sentry_sdk-1.45.0.tar.gz::https://github.com/getsentry/sentry-python/archive/refs/tags/1.45.0.tar.gz
+   sha256sums = 
98c9ff0874110c5601945d7fe7177e157506c02c40e33b8a180ec14d7ae0cde3
 
 pkgname = python-sentry_sdk


=
PKGBUILD
=
@@ -3,8 +3,8 @@
 
 pkgname=python-sentry_sdk
 _pkgname=sentry-python
-pkgver=1.44.1
-pkgrel=2
+pkgver=1.45.0
+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=("${pkgname}-${pkgver}.tar.gz::https://github.com/getsentry/sentry-python/archive/refs/tags/${pkgver}.tar.gz;)
-sha256sums=('f41f61356eaac2bd398b6f70efc88838080141588abc069392bc7880a7f2c3c4')
+sha256sums=('98c9ff0874110c5601945d7fe7177e157506c02c40e33b8a180ec14d7ae0cde3')
 
 build() {
cd "${_pkgname}-${pkgver}"
@@ -41,6 +41,5 @@ build() {
 package() {
cd "${_pkgname}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
-
install -Dm 644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }



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

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




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

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


Robin Candau pushed new tag 1.45.0-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.45.0-1
You're receiving this email because of your account on gitlab.archlinux.org.




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

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


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

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




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

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


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


Commits:
fe3694c2 by Robin Candau at 2024-04-10T10:03:30+02:00
upgpkg: 2.453-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = jenkins
pkgdesc = Extendable continuous integration server (latest)
-   pkgver = 2.452
+   pkgver = 2.453
pkgrel = 1
url = https://jenkins.io
install = jenkins.install
@@ -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.452.tar.gz
+   source = 
https://github.com/jenkinsci/jenkins/archive/refs/tags/jenkins-2.453.tar.gz
source = jenkins.conf
source = jenkins.service
source = jenkins.tmpfiles
source = jenkins.sysusers
source = skip-failing-test.patch
-   sha512sums = 
86c827dc67c426c2c8c5edc8ff29725186424ffaefabdca36b3586542362b7cd1c685a2dd4411524d1d310280ab7c6bcb47c6b67e5b1cd53709c518b92f59486
+   sha512sums = 
9bce0555ace1a6e534c37371314ad3cd7921628b3093fd3be16fea80c829264f62f97f2e17f57c173e3bb151eb64bd5c2171e7e5d933bee49734c582aff6
sha512sums = 
482b642988027b623995e0488cc00011be5bbe9890a6d40dd6979197fa50794889ff731f798891106b367962cf60cb59b0260caadfcee9685b358a966f759553
sha512sums = 
c1e9a542bfd3db54ea0ef57acdac47ad5180330f9ffab44296762b0e69e75ce595d85a77d46025586fb507aedce4f1a032379dcd16b7b886fe475a99849fa4b2
sha512sums = 
a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90


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



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

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




[Git][archlinux/packaging/packages/ansible-lint][main] upgpkg: 24.2.2-1: New upstream release

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


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


Commits:
2ba0170c by Robin Candau at 2024-04-10T09:44:49+02:00
upgpkg: 24.2.2-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = ansible-lint
pkgdesc = Checks playbooks for practices and behaviour that could 
potentially be improved.
-   pkgver = 24.2.1
+   pkgver = 24.2.2
pkgrel = 1
url = https://github.com/ansible/ansible-lint
arch = any
@@ -30,9 +30,9 @@ pkgbase = ansible-lint
depends = python-ruamel-yaml
depends = python-wcmatch
optdepends = ansible: check official ansible collections
-   source = 
git+https://github.com/ansible/ansible-lint.git#commit=ce2ebd7df4486adde693d7a70f0a9cd1814bce35
+   source = git+https://github.com/ansible/ansible-lint.git#tag=v24.2.2
source = disable_version_check.patch
-   b2sums = 
2d0014fbe8b8cb6b5e88eb7649cad0fa3777137490130b4e80d2adc5d5bf7fe8228019f4225400a4daa3c2ab8cdcf3bc4923ff4c1fd7760a5a1e433ddd2643c2
+   b2sums = 
b2f6505626ae0c45d313062680e57bb8ae63874d95f052d2e97cb4ff388e1719a4c9bc9cb4319012e5d93957ba13a795150d7a1052eca2bbb898fb45c893e8f1
b2sums = 
98294f267ca693c0bc3921f8e076d674a219a891502cd31a0af789bc0b1447b53834b9c85853a134f6bc1ac384f31cb174cba2d55fbcc1636cae9bd3c0bd8f84
 
 pkgname = ansible-lint


=
PKGBUILD
=
@@ -3,9 +3,8 @@
 # Maintainer: Robin Candau 
 # Contributor: Sander Boom 
 
-_commit=ce2ebd7df4486adde693d7a70f0a9cd1814bce35
 pkgname=ansible-lint
-pkgver=24.2.1
+pkgver=24.2.2
 pkgrel=1
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
@@ -16,9 +15,9 @@ depends=(python ansible-core git yamllint
 makedepends=(python-{build,installer,setuptools,setuptools-scm,wheel})
 checkdepends=(mypy python-jmespath python-pylint python-pytest 
python-pytest-mock)
 optdepends=('ansible: check official ansible collections')
-source=(git+https://github.com/ansible/ansible-lint.git#commit=$_commit
+source=(git+https://github.com/ansible/ansible-lint.git#tag=v$pkgver
 disable_version_check.patch)
-b2sums=('2d0014fbe8b8cb6b5e88eb7649cad0fa3777137490130b4e80d2adc5d5bf7fe8228019f4225400a4daa3c2ab8cdcf3bc4923ff4c1fd7760a5a1e433ddd2643c2'
+b2sums=('b2f6505626ae0c45d313062680e57bb8ae63874d95f052d2e97cb4ff388e1719a4c9bc9cb4319012e5d93957ba13a795150d7a1052eca2bbb898fb45c893e8f1'
 
'98294f267ca693c0bc3921f8e076d674a219a891502cd31a0af789bc0b1447b53834b9c85853a134f6bc1ac384f31cb174cba2d55fbcc1636cae9bd3c0bd8f84')
 
 prepare() {



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible-lint/-/commit/2ba0170c9cc645f939d1ba29f65d02d718cd132e

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




[Git][archlinux/packaging/packages/ansible-lint] Pushed new tag 24.2.2-1

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


Robin Candau pushed new tag 24.2.2-1 at Arch Linux / Packaging / Packages / 
ansible-lint

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




[Git][archlinux/packaging/packages/molecule] Pushed new tag 24.2.1-1

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


Robin Candau pushed new tag 24.2.1-1 at Arch Linux / Packaging / Packages / 
molecule

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




[Git][archlinux/packaging/packages/molecule][main] upgpkg: 24.2.1-1: New upstream release

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


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


Commits:
788c5fd8 by Robin Candau at 2024-04-10T09:37:52+02:00
upgpkg: 24.2.1-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,6 +1,6 @@
 pkgbase = molecule
pkgdesc = Aids in the development and testing of Ansible roles
-   pkgver = 24.2.0
+   pkgver = 24.2.1
pkgrel = 1
url = https://github.com/ansible-community/molecule
arch = any
@@ -40,8 +40,8 @@ pkgbase = molecule
optdepends = molecule-vagrant: for the vagrant driver
optdepends = python-pywinrm: for Windows support
optdepends = python-pytest-testinfra: for the testinfra verifier
-   source = 
molecule-24.2.0.tar.gz::https://github.com/ansible-community/molecule/archive/refs/tags/v24.2.0.tar.gz
-   sha512sums = 
ead9ffcd1e93a07c9a0374bcd76c41a339037c4a5888cfdf469afff65ef28a39fcd66db1186c1525b6eecd7dee912ccd2c747e4d6aeef7967092daa7fe57bb2a
-   b2sums = 
3ba687f005f61633de84affda529b71c5964834e4aad7c55ff1f7e3f27312910f0ea4dab3885ac30206878918640c1463f7e0097f9f85da5496346bd81e884f0
+   source = 
molecule-24.2.1.tar.gz::https://github.com/ansible-community/molecule/archive/refs/tags/v24.2.1.tar.gz
+   sha512sums = 
b7bcae1f41d48e38f96890bd9a45ffa770117490fe0afb58af98f5b90c973d597f2b9eed9c814f370692f9d6a1ae31266aeea45e41a0d076f440c8848ed1ea99
+   b2sums = 
de49b0b7ca6112f7d59bff83d40307e1bf276ef2b48bccfe7d3c6a175bda620c87663188c978891db25b9ca4ad58dd76b5af04a6a315a32cb95f05c63b6f5a14
 
 pkgname = molecule


=
PKGBUILD
=
@@ -2,7 +2,7 @@
 # Maintainer: Robin Candau 
 
 pkgname=molecule
-pkgver=24.2.0
+pkgver=24.2.1
 pkgrel=1
 pkgdesc="Aids in the development and testing of Ansible roles"
 arch=(any)
@@ -52,8 +52,8 @@ optdepends=(
   'python-pytest-testinfra: for the testinfra verifier'
 )
 source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('ead9ffcd1e93a07c9a0374bcd76c41a339037c4a5888cfdf469afff65ef28a39fcd66db1186c1525b6eecd7dee912ccd2c747e4d6aeef7967092daa7fe57bb2a')
-b2sums=('3ba687f005f61633de84affda529b71c5964834e4aad7c55ff1f7e3f27312910f0ea4dab3885ac30206878918640c1463f7e0097f9f85da5496346bd81e884f0')
+sha512sums=('b7bcae1f41d48e38f96890bd9a45ffa770117490fe0afb58af98f5b90c973d597f2b9eed9c814f370692f9d6a1ae31266aeea45e41a0d076f440c8848ed1ea99')
+b2sums=('de49b0b7ca6112f7d59bff83d40307e1bf276ef2b48bccfe7d3c6a175bda620c87663188c978891db25b9ca4ad58dd76b5af04a6a315a32cb95f05c63b6f5a14')
 
 build() {
   cd $pkgname-$pkgver



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/molecule/-/commit/788c5fd82282dbd04ea186451c61a557b32c780b

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




[Git][archlinux/packaging/packages/ansible-bender][main] upgpkg: 0.10.1-3: Rebuild Python 3.12

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


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


Commits:
5857384f by Robin Candau at 2024-04-09T22:17:35+02:00
upgpkg: 0.10.1-3: Rebuild Python 3.12
https://archlinux.org/todo/python-modules-part-1/

- - - - -


3 changed files:

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


Changes:

=
.SRCINFO
=
@@ -0,0 +1,27 @@
+pkgbase = ansible-bender
+   pkgdesc = Build container images using Ansible playbooks
+   pkgver = 0.10.1
+   pkgrel = 3
+   url = https://github.com/ansible-community/ansible-bender
+   arch = any
+   license = MIT
+   checkdepends = python-flexmock
+   checkdepends = python-pytest
+   makedepends = git
+   makedepends = python-build
+   makedepends = python-installer
+   makedepends = python-setuptools-scm
+   makedepends = python-wheel
+   depends = ansible
+   depends = ansible-core
+   depends = podman
+   depends = buildah
+   depends = python
+   depends = python-jsonschema
+   depends = python-pyyaml
+   depends = python-setuptools
+   depends = python-tabulate
+   source = 
ansible-bender-0.10.1.tar.gz::https://github.com/ansible-community/ansible-bender/archive/0.10.1.tar.gz
+   b2sums = 
1bc0347bb1e2f42732dd0afe81a96e8e025132f85850600f8c64dbad4e33fc14527805877cd196bec954f160a2a551f8566dc6a4831f4c8a3e81286acdd98daf
+
+pkgname = ansible-bender


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


=
PKGBUILD
=
@@ -1,8 +1,9 @@
 # Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Robin Candau 
 
 pkgname=ansible-bender
 pkgver=0.10.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Build container images using Ansible playbooks'
 arch=('any')
 url='https://github.com/ansible-community/ansible-bender'



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/ansible-bender/-/commit/5857384f71fd49a0de81ebfd62b06be156baca49

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




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

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


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

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




[Git][archlinux/packaging/packages/ansible][main] upgpkg: 9.4.0-4: Rebuild Python 3.12

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


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


Commits:
ee0bcd9d by Robin Candau at 2024-04-09T21:39:34+02:00
upgpkg: 9.4.0-4: Rebuild Python 3.12
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 = 3
+   pkgrel = 4
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=3
+pkgrel=4
 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/ee0bcd9d8d5ab908d1134b079ca892eef52c6d50

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




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

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


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

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




[Git][archlinux/packaging/packages/ansible-core][main] upgpkg: 2.16.5-3: Rebuild Python 3.12

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


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


Commits:
bcaeafb9 by Robin Candau at 2024-04-09T21:23:27+02:00
upgpkg: 2.16.5-3: Rebuild Python 3.12
https://archlinux.org/todo/python-modules-part-1/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = ansible-core
pkgdesc = Radically simple IT automation platform
pkgver = 2.16.5
-   pkgrel = 2
+   pkgrel = 3
url = https://www.ansible.com
arch = any
license = GPL-3.0-or-later AND BSD-2-Clause AND PSF-2.0 AND MIT AND 
Apache-2.0


=
PKGBUILD
=
@@ -10,7 +10,7 @@
 pkgname=ansible-core
 _pkgname=ansible
 pkgver=2.16.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
 url='https://www.ansible.com'



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

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




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

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


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

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




[Git][archlinux/packaging/packages/tint2] Pushed new tag 17.0.2-4

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


Robin Candau pushed new tag 17.0.2-4 at Arch Linux / Packaging / Packages / 
tint2

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




[Git][archlinux/packaging/packages/blueman][main] upgpkg: 2.4.1-2: Python 3.12 rebuild

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


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


Commits:
80268d5d by Robin Candau at 2024-04-09T12:34:22+02:00
upgpkg: 2.4.1-2: Python 3.12 rebuild

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=
.SRCINFO
=
@@ -1,7 +1,7 @@
 pkgbase = blueman
pkgdesc = GTK+ Bluetooth Manager
pkgver = 2.4.1
-   pkgrel = 1
+   pkgrel = 2
url = https://github.com/blueman-project/blueman
arch = x86_64
license = GPL-3.0-or-later


=
PKGBUILD
=
@@ -5,7 +5,7 @@
 
 pkgname=blueman
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="GTK+ Bluetooth Manager"
 arch=('x86_64')
 url="https://github.com/blueman-project/blueman;



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

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




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