Every request consists of zero or more packages, followed by one or more flag changes, i.e.:
request = [package ...] op [op ...]
Packages can be specified in any form suitable for package.* files. If category is omitted, a package lookup is attempted. If no packages are specified, "*/*" is assumed.
The operations supported are:
+[ns::]flag Enable specified flag
-[ns::]flag Disable specified flag
%[ns::][flag] Removed specified flag (or all flags)
Every flag can be prefixed using namespace, followed by "::". The namespace can either be a USE_EXPAND name or one of the special values:
auto:: (the default) recognize type
env:: package.env entries
kw:: package.accept_keywords entries
lic:: package.license entries
prop:: package.properties entries
restrict:: package.accept_restrict entries
use:: package.use entries
~ via 🐍 v3.11.5
❯ sudo flaggie ddnet +vulkan
~ via 🐍 v3.11.5
❯ cd /etc/portage/
/etc/portage🔒
❯ rg vulkan
make.conf.backup
24:USE="X -wayland lm-sensors contrib mount alsa pipewire pulseaudio xinerama opengl vulkan udev elogind -systemd fontconfig vorbis opus vdpau bluetooth"
package.use/03-general
7:games-action/ddnet vulkan
make.conf
24:USE="X -wayland lm-sensors contrib mount alsa pipewire pulseaudio xinerama opengl vulkan udev elogind -systemd fontconfig vorbis opus vdpau bluetooth"
package.use/99-automask
5:# required by media-libs/vulkan-loader[layers] (argument)
6:>=media-libs/vulkan-loader-1.3.216 layers
213:>=media-video/ffmpeg-4.4.2 nvenc libaom vulkan libplacebo libdrm cuda
/etc/portage🔒
❯ sudo flaggie ddnet %vulkan
diff --git a/etc/portage/package.use/03-general b/etc/portage/package.use/tmpsesalgp0
index 9df8d88..e167100 100644
--- a/etc/portage/package.use/03-general
+++ b/etc/portage/package.use/tmpsesalgp0
@@ -4,7 +4,6 @@ x11-drivers/nvidia-drivers abi_x86_32
mail-client/neomutt sasl gpgme
sys-devel/llvm binutils-plugin doc exegis ncurses xar libffi xml zstd
media-video/mpv drm cli archive iconv jpeg lcms libcaca libmpv nvenc egl vdpau xv
[-games-action/ddnet vulkan-]
# steam circular dep
sys-libs/ncurses -gpm
app-emulation/qemu sdl ncurses aio capstone pipewire plugins sdl-image slirp ssh usb curl fdt io-uring opengl udev zstd
alias upgrade='sudo emerge -avuDN @world; sudo smart-live-rebuild'
;
is sequential, &
is parallele473a74
add beast and blacktee - M0REKZ
7259fe9
remove export and add info - M0REKZ
657daf9
remove embedded images - M0REKZ
73da21f
try to make it look cleaner - M0REKZ
34cd150
add names to beast body parts - M0REKZ
b06ee59
add names and fix some details (black tee) - M0REKZ
1d1ba49
Merge pull request #49 from M0REKZ/main - Jupeyy % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 104.18.10.44:443...
* Trying [2606:4700::6812:a2c]:443...
* Immediate connect fail for 2606:4700::6812:a2c: Das Netzwerk ist nicht erreichbar
* Trying [2606:4700::6812:b2c]:443...
* Immediate connect fail for 2606:4700::6812:b2c: Das Netzwerk ist nicht erreichbar
* Connected to maps.ddnet.org (104.18.10.44) port 443
but it also tries ipv6 apprentlyee51cac
Move CGraph
class to separate compilation unit - Robyt3
912355f
Move CSmoothTime
class to separate compilation unit - Robyt3
dc7fa1f
Use ColorRGBA
for CGraph
entry color - Robyt3
fb96217
Fix first value in graphs being incorrect - Robyt3
d92b7b5
Add enum for CSmoothTime
adjust direction - Robyt3
e187bda
Use bool
instead of int
- Robyt3
a0c0d7e
Fix incorrect minimum value of dbg_tuning
velramp graph - Robyt3
1a01d76
Remove unused m_Graph
member of CSmoothTime
- Robyt3
11423b8
Use full graph width for rendering curve - Robyt3
59b5fd2
Fix graphs initially rendering incorrect values - Robyt3
8fea599
Mark functions as const
when possible - Robyt3
dad2c14
Merge pull request #7355 from Robyt3/Client-Graph-SmoothTime-Refactoring - def-