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
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
Alexander Tsoy
6881316b5b
dev-util/DirectXShaderCompiler: add 1.8.2505
...
Also stop using user variable CMAKE_EXTRA_CACHE_FILE and pass additional
-C option via mycmakeargs.
Signed-off-by: Alexander Tsoy <alexander@tsoy.me >
2025-07-18 05:55:15 +03:00
Takuya Wakazono
f5679b4f93
dev-util/DirectXShaderCompiler: enable py3.13, py3.14
...
Closes: https://bugs.gentoo.org/931445
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com >
2025-07-15 22:25:20 +09:00
Charlie Quinet
d8928084d3
dev-util/DirectXShaderCompiler: add 1.8.2502, drop 1.8.2407
...
Signed-off-by: Charlie Quinet <w.iron.zombie@gmail.com >
2025-04-30 21:09:19 +02: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
Username404-59
70d4150172
dev-util/DirectXShaderCompiler: drop old versions
...
Signed-off-by: Username404-59 <w.iron.zombie@gmail.com >
Closes: https://github.com/gentoo/guru/pull/249
Signed-off-by: David Roman <davidroman96@gmail.com >
2024-10-12 21:07:56 +02:00
Username404-59
045bf66c3e
dev-util/DirectXShaderCompiler: Allow python3_12
...
Signed-off-by: Username404-59 <w.iron.zombie@gmail.com >
Signed-off-by: David Roman <davidroman96@gmail.com >
2024-10-12 21:07:56 +02:00
Username404-59
f867f95aa5
dev-util/DirectXShaderCompiler: add 1.8.2405 and 1.8.2407
...
Signed-off-by: Username404-59 <w.iron.zombie@gmail.com >
Closes: https://github.com/gentoo/guru/pull/229
Signed-off-by: David Roman <davidroman96@gmail.com >
2024-08-13 21:49:03 +02:00
David Roman
8b33f89cda
Revert "*/*: ExcessiveLineLength fix most of them"
...
This reverts commit 79341e9f04 .
Signed-off-by: David Roman <davidroman96@gmail.com >
2024-07-25 11:18:16 +02:00
Vitaly Zdanevich
79341e9f04
*/*: ExcessiveLineLength fix most of them
...
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru >
2024-07-19 21:33:15 +04:00
Julien Roy
3d25d4048d
*/*: remove empty global variable assigment
...
Signed-off-by: Julien Roy <julien@jroy.ca >
2024-03-21 18:34:41 -04:00
Mazunki Hoksaas
b0030fa6fa
dev-util/DirectXShaderCompiler: add patch comment
...
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com >
2024-03-10 22:55:02 +01:00
Mazunki Hoksaas
7b17991c99
dev-util/DirectXShaderCompiler: fix #905173
...
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com >
2024-03-09 04:00:54 +01:00
Anna (cybertailor) Vyalkova
2da414be88
*/*: drop cmake dep from ebuilds that inherit cmake.eclass
...
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in >
2024-01-15 08:09:36 +05:00
Anna (cybertailor) Vyalkova
12088906c5
*/*: drop dead py3.9 impl
...
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in >
2023-05-02 00:45:35 +05:00
Anna (cybertailor) Vyalkova
41008d715c
*/*: drop dead py3.8 impl
...
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in >
2023-03-12 17:53:56 +05:00
Anna (cybertailor) Vyalkova
1268504090
dev-util/DirectXShaderCompiler: add github upstream metadata
...
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in >
2023-03-09 00:05:30 +05:00
Anna (cybertailor) Vyalkova
1e95f22062
*/*: update metadata schema uri
...
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in >
2023-03-04 18:56:32 +05:00
Denis Reva
b14378ae99
dev-util/DirectXShaderCompiler: Fixed new version of directx shader compiller
...
Attempt of unbundling is unsuccessfull
It seems sticked with bundled libraries
Signed-off-by: Denis Reva <denis7774@gmail.com >
2023-02-23 18:34:57 +05:00
Denis Reva
455d4433bc
dev-util/DirectXShaderCompiler: Preliminary update. New version is still borked, need update
...
Bug: https://bugs.gentoo.org/895234
Signed-off-by: Denis Reva <denis7774@gmail.com >
2023-02-18 15:24:47 +05:00
Denis Reva
0f5dd926bf
dev-util/DirectXShaderCompiler: Disabled adding -Werror by it's own
...
Closes: https://bugs.gentoo.org/887657
Signed-off-by: Denis Reva <denis7774@gmail.com >
2022-12-21 20:17:41 +05:00
Denis Reva
47882770e5
dev-util/DirectXShaderCompiler: Sadly DirectXShaderCompiler is required for modern AMDVLK versions (since 2022.3.4)
...
Signed-off-by: Denis Reva <denis7774@gmail.com >
2022-09-22 10:28:23 +05:00