Commit Graph

160 Commits

Author SHA1 Message Date
Dale Showers
cd53b49528 net-voip/baresip: add 4.8.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-05-23 14:52:26 -04:00
Dale Showers
3f4ab62806 net-voip/re: add 4.8.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-05-23 14:52:25 -04:00
Dale Showers
a033ee3f13 net-voip/re: drop 4.4.0, 4.6.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-05-23 14:52:25 -04:00
Dale Showers
459f5a4978 net-voip/baresip: drop 4.4.0, 4.6.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-05-23 14:52:25 -04:00
Dale Showers
65d762a421 net-voip/baresip: add 4.7.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-04-10 15:44:09 -04:00
Dale Showers
277608e80b net-voip/re: add 4.7.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-04-10 15:44:09 -04:00
Dale Showers
f926fd46c3 net-voip/re: drop 4.3.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-04-10 15:44:09 -04:00
Dale Showers
fdaf3f43b8 net-voip/baresip: drop 4.3.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-04-10 15:44:09 -04:00
David Roman
68fbddeaec */*: drop py3.11 & remove dead py impls
Part-of: https://github.com/gentoo/guru/pull/447
Closes: https://github.com/gentoo/guru/pull/447
Signed-off-by: David Roman <stkw0@disroot.org>
2026-03-10 10:54:23 +01:00
Dale Showers
171e8e22ec net-voip/baresip: add 4.6.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-03-05 21:52:46 -05:00
Dale Showers
7dd20ccb72 net-voip/re: add 4.6.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-03-05 21:52:46 -05:00
Dale Showers
03c405c79a net-voip/re: drop 4.2.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-03-05 21:52:45 -05:00
Dale Showers
6bb3cf7008 net-voip/baresip: drop 4.2.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2026-03-05 21:52:45 -05:00
Dale Showers
3374e238bb net-voip/baresip: add 4.4.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-23 11:01:24 -05:00
Dale Showers
917b8ce742 net-voip/re add 4.4.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-23 11:00:24 -05:00
Dale Showers
96f7ee14ae net-voip/re: drop 3.24.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-23 10:59:45 -05:00
Dale Showers
564d77da47 net-voip/baresip: drop 3.24.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-23 10:57:37 -05:00
Dale Showers
1e697b25a9 net-voip/baresip: add 4.3.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-07 11:25:58 -05:00
Dale Showers
68a8727143 net-voip/re: add 4.3.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-07 11:24:21 -05:00
Dale Showers
5904b789f1 net-voip/re: drop 3.23.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-07 11:22:42 -05:00
Dale Showers
44155b190c net-voip/baresip: drop 3.23.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-12-07 11:21:06 -05:00
Paul Zander
e07d695d5d */*: Add := to virtual/zlib deps
Add := to virtual/zlib deps, part 1

Done via:

```
git grep -l virtual/zlib$ | xargs sed -i -e 's@virtual/zlib$@&:=@'
```

Add := to virtual/zlib deps

Done via:

```
git grep -l 'virtual/zlib ' |
  xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g'
```

Unify virtual/zlib:0= to virtual/zlib:=

Done via:

```
git grep -l 'virtual/zlib:0=' |
  xargs sed -i -e 's@virtual/zlib:0=@virtual/zlib:=@g'
```

Add := to virtual/zlib deps, part 3

Done via:

```
git grep -l 'virtual/zlib:0' |
  xargs sed -i -e 's@virtual/zlib:0@virtual/zlib:=@g'
git grep -l 'virtual/zlib:=/' |
  xargs sed -i -e 's@virtual/zlib:=/@virtual/zlib:0/@g'
```

Add := to virtual/zlib deps, part 4

Done via:

```
git grep -l 'virtual/zlib\[' |
  xargs sed -i -e 's@virtual/zlib\[@virtual/zlib:=\[@g'
```

Use := on virtual/zlib deps, part 5

Done via:

```
git grep -l 'virtual/zlib-' |
  xargs sed -i -r -e 's@virtual/zlib-[0-9.]*(-r[0-9]*)?@&:=@g'
git grep -l 'virtual/zlib-' | xargs sed -i -e 's@:=:=@:=@g'
pkgcheck scan --commits \
  -c SourcingCheck,VisibilityCheck,DependencyCheck --exit error
```

Use := on virtual/zlib deps, part 6

Done via:

```
git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@'
```

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
2025-11-18 17:53:08 +01:00
Paul Zander
c23791504e */*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
2025-11-16 23:26:20 +01:00
Anna (cybertailor) Vyalkova
2fc16f4233 net-voip/gnome-calls: add 49.1.1, drop old
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-11-07 08:30:44 +05:00
Dale Showers
261b4adcc0 net-voip/baresip: add 4.2.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-10-20 07:31:08 -04:00
Dale Showers
9e2288fbcd net-voip/re: add 4.2.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-10-20 07:31:08 -04:00
Dale Showers
6edd55d984 net-voip/re: drop 3.22.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-10-20 07:31:08 -04:00
Dale Showers
e9cb05cf38 net-voip/baresip: drop 3.22.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-10-20 07:31:07 -04:00
Dale Showers
f70a1590e3 net-voip/baresip: add v3.24.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-07-18 01:41:41 -04:00
Dale Showers
f897c37bf3 net-voip/re: add 3.24.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-07-18 01:41:41 -04:00
Dale Showers
8afdc066af net-voip/re: drop 3.21.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-07-18 01:41:41 -04:00
Dale Showers
10c3d65c1b net-voip/baresip: drop 3.21.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-07-18 01:41:41 -04:00
Dale Showers
d5cb008f1e net-voip/baresip: add 3.23.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-06-08 10:15:32 -04:00
Dale Showers
47488164ab net-voip/re: add 3.23.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-06-08 10:15:32 -04:00
Dale Showers
1453933d1e net-voip/re: drop 3.20.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-06-08 10:15:32 -04:00
Dale Showers
ba1a9e105b net-voip/baresip: drop 3.20.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-06-08 10:15:31 -04:00
Anna (cybertailor) Vyalkova
c73146f1e7 net-voip/gnome-calls: add 48.2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-05-31 21:30:53 +05:00
Thibaud CANALE
80064343bc net-voip/discover-overlay: enable py3.13
Signed-off-by: Thibaud CANALE <thican@thican.net>
2025-05-02 10:47:58 +02:00
Dale Showers
8d6fae56f8 net-voip/baresip: add 3.22.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-04-30 13:51:02 -04:00
Dale Showers
89b35cf79c net-voip/re: add 3.22.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-04-30 13:51:02 -04:00
Dale Showers
781498ef46 net-voip/re: drop 3.19.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-04-30 13:51:02 -04:00
Dale Showers
38c8624943 net-voip/baresip: drop 3.19.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-04-30 13:51:02 -04:00
Anna (cybertailor) Vyalkova
785f1103c8 net-voip/gnome-calls: add 48.1
Closes: https://bugs.gentoo.org/943351
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-04-17 14:13:38 +05:00
Dale Showers
b7b8b272d2 net-voip/baresip: add 3.21.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-03-28 13:47:21 -04:00
Dale Showers
e1fa2fb23f net-voip/re: add 3.21.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-03-28 13:47:20 -04:00
Dale Showers
14b7e8a96a net-voip/re: drop 3.18.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-03-28 13:47:20 -04:00
Dale Showers
45b8789d12 net-voip/baresip: drop 3.18.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-03-28 13:47:20 -04:00
Anna (cybertailor) Vyalkova
171b2a3418 net-voip/gnome-calls: drop 46.3, 47.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-03-25 13:23:21 +05:00
Anna (cybertailor) Vyalkova
bb0aae8ad3 */*: disable py3.10
Python 3.10 target is scheduled for removal in Gentoo:
https://public-inbox.gentoo.org/gentoo-dev/e6ca9f1f4ababb79ab2a3d005c39b483c3ecef6e.camel@gentoo.org/

Sphinx 8.2.0 already dropped support for CPython 3.10 and PyPy 3.10,
leading to multiple CI failures in ::guru.

We can safely remove this target, because GURU is "experimental" and
does not have stable keywords.

Let's not remove "pypy3" right now because
a) There are not many packages using it.
b) So we can see which packages supported PyPy 3.10, and test them with
   PyPy 3.11.

Closes: https://github.com/gentoo/guru/pull/291
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-02-21 17:51:14 +05:00
Dale Showers
829272b033 net-voip/baresip: add 3.20.0
Signed-off-by: Dale Showers <gentoo@fictx.com>
2025-02-20 07:45:30 -05:00