Abuse filter log

From Gentoo Wiki
Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to:navigation Jump to:search
Details for log entry 5,020

00:26, 5 March 2025: Reavessm (talk | contribs) triggered filter 30, performing the action "edit" on User:Reavessm/personal-user-ebuild. Actions taken: Disallow; Filter description: Disable writing internal wiki links as external besides required links. If absolutely necessary, use wiki.g.o as a workaround. (examine)

Changes made in edit

  
 
:construction: THIS IS A WIP :construction:
 
:construction: THIS IS A WIP :construction:
 +
 +
acct-group/reavessm
 +
 +
<nowiki>
 +
# Copyright 2019-2024 Gentoo Authors
 +
# Distributed under the terms of the GNU General Public License v2
 +
 +
EAPI=8
 +
 +
inherit acct-group
 +
 +
ACCT_GROUP_ID=1000
 +
</nowiki>
 +
 +
acct-user/reavessm
 +
 +
<nowiki>
 +
# Copyright 2019-2024 Gentoo Authors
 +
# Copyright 2024 Stephen M. Reaves
 +
# Distributed under the terms of the GNU General Public License v2
 +
 +
EAPI=8
 +
 +
inherit acct-user
 +
 +
DESCRIPTION="The all powerful user"
 +
ACCT_USER_ID=1000
 +
# Plugdev doesn't exist?
 +
#ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" )
 +
ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" )
 +
ACCT_USER_HOME=/home/"${PN}"
 +
ACCT_USER_SHELL="/bin/bash"
 +
 +
IUSE="containers desktop dev extras laptop games printers virt"
 +
 +
acct-user_add_deps
 +
 +
# rtkit Needed for pipewire
 +
# x11-misc/ly might only be available in the supertux88 overlay
 +
RDEPEND="
 +
acct-group/reavessm
 +
app-admin/stow
 +
app-admin/sudo
 +
app-editors/neovim
 +
app-misc/fastfetch
 +
app-misc/tmux
 +
dev-vcs/git
 +
dev-vcs/git-credential-manager
 +
media-fonts/nerdfonts[daddytimemono,firacode]
 +
media-fonts/noto-emoji
 +
net-fs/nfs-utils
 +
net-misc/keychain
 +
sys-apps/ripgrep
 +
sys-apps/tuned
 +
 +
containers? (
 +
app-containers/crun
 +
app-containers/podman
 +
)
 +
virt? (
 +
app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu]
 +
app-emulation/qemu[usbredir,spice,nfs,fuse]
 +
app-emulation/virt-manager[gui]
 +
)
 +
desktop? (
 +
app-admin/bitwarden-desktop-bin
 +
app-office/joplin-desktop
 +
app-office/libreoffice-bin
 +
gui-apps/grim
 +
gui-apps/hypridle
 +
gui-apps/hyprlock
 +
gui-apps/hyprpaper
 +
gui-apps/slurp
 +
gui-apps/waybar
 +
gui-apps/wl-clipboard
 +
gui-apps/wofi
 +
gui-libs/xdg-desktop-portal-hyprland
 +
gui-wm/hyprland
 +
media-gfx/imv
 +
media-sound/pavucontrol
 +
media-video/vlc[bluray,-vaapi]
 +
media-video/wireplumber
 +
net-misc/dhcpcd
 +
net-misc/networkmanager[wifi]
 +
sys-auth/rtkit
 +
www-client/firefox[hwaccel]
 +
www-client/librewolf[hwaccel]
 +
x11-misc/ly
 +
x11-terms/kitty
 +
x11-themes/catppuccin-btop
 +
xfce-base/thunar
 +
)
 +
laptop? (
 +
dev-libs/light
 +
gui-apps/wl-mirror
 +
)
 +
games? (
 +
app-emulation/dxvk
 +
app-emulation/vkd3d-proton
 +
games-util/gamemode
 +
games-util/lutris
 +
games-util/steam-launcher
 +
media-plugins/gst-plugins-meta[ffmpeg]
 +
virtual/wine[proton]
 +
)
 +
extras? (
 +
media-video/obs-studio[browser]
 +
app-text/pandoc-bin
 +
dev-texlive/texlive-xetex
 +
media-gfx/imagemagick
 +
sci-visualization/gnuplot
 +
sys-apps/flatpak
 +
sys-process/btop
 +
)
 +
dev? (
 +
app-editors/vscode
 +
dev-debug/valgrind[mpi]
 +
dev-lang/elixir
 +
dev-lang/go
 +
dev-util/rustup
 +
net-fs/sshfs
 +
net-libs/nodejs[npm]
 +
net-vpn/openconnect
 +
sys-apps/yarn
 +
sys-cluster/openmpi
 +
virtual/rust
 +
)
 +
printers? (
 +
net-print/gutenprint
 +
net-print/hplip[minimal,-qt5]
 +
)
 +
"
 +
 +
DEPEND="${RDEPEND}"
 +
BDEPEND="${RDEPEND}"
 +
 +
pkg_setup() {
 +
use virt && ACCT_USER_GROUPS+=( kvm libvirt )
 +
use desktop && ACCT_USER_GROUPS+=( pipewire video )
 +
}
 +
 +
pkg_postinst() {
 +
elog "Setting user to never expire"
 +
chage -E -1 "${PN}"
 +
 +
ebegin "Setting up dot-files ..."
 +
 +
mkdir -pv "${ACCT_USER_HOME}/Src/Personal"
 +
pushd "${ACCT_USER_HOME}/Src/Personal"
 +
 +
if [[ -d "dot-files" ]]
 +
then
 +
elog "Pulling in existing directory ..."
 +
cd dot-files
 +
git -c safe.directory='*' pull || die
 +
else
 +
elog "Cloning dot-files ..."
 +
git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die
 +
cd dot-files
 +
fi
 +
 +
su "${PN}" "./setup.sh" || die
 +
 +
popd
 +
 +
eend "Done!"
 +
 +
ebegin "Fixing ownerships ..."
 +
 +
chown "${PN}:${PN}" "/home/${PN}"
 +
 +
eend "Done!"
 +
 +
if use containers
 +
then
 +
elog "Make sure to check https://wiki.gentoo.org/wiki/Podman"
 +
fi
 +
 +
if use virt
 +
then
 +
elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU"
 +
fi
 +
 +
if use games
 +
then
 +
elog "Make sure to check https://wiki.gentoo.org/wiki/Steam"
 +
fi
 +
}
 +
 +
pkg_prerm() {
 +
# Don't remove system user
 +
:
 +
}
 +
</nowiki>

Action parameters

VariableValue
Edit count of the user (user_editcount)
3
Name of the user account (user_name)
'Reavessm'
Age of the user account (user_age)
3289
Page ID (page_id)
370388
Page namespace (page_namespace)
2
Page title (without namespace) (page_title)
'Reavessm/personal-user-ebuild'
Full page title (page_prefixedtitle)
'User:Reavessm/personal-user-ebuild'
Action (action)
'edit'
Edit summary/reason (summary)
''
Old content model (old_content_model)
'wikitext'
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
'This is how you can install users via ebuilds :construction: THIS IS A WIP :construction:'
New page wikitext, after the edit (new_wikitext)
'This is how you can install users via ebuilds :construction: THIS IS A WIP :construction: acct-group/reavessm <nowiki> # Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-group ACCT_GROUP_ID=1000 </nowiki> acct-user/reavessm <nowiki> # Copyright 2019-2024 Gentoo Authors # Copyright 2024 Stephen M. Reaves # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-user DESCRIPTION="The all powerful user" ACCT_USER_ID=1000 # Plugdev doesn't exist? #ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" ) ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" ) ACCT_USER_HOME=/home/"${PN}" ACCT_USER_SHELL="/bin/bash" IUSE="containers desktop dev extras laptop games printers virt" acct-user_add_deps # rtkit Needed for pipewire # x11-misc/ly might only be available in the supertux88 overlay RDEPEND=" acct-group/reavessm app-admin/stow app-admin/sudo app-editors/neovim app-misc/fastfetch app-misc/tmux dev-vcs/git dev-vcs/git-credential-manager media-fonts/nerdfonts[daddytimemono,firacode] media-fonts/noto-emoji net-fs/nfs-utils net-misc/keychain sys-apps/ripgrep sys-apps/tuned containers? ( app-containers/crun app-containers/podman ) virt? ( app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu] app-emulation/qemu[usbredir,spice,nfs,fuse] app-emulation/virt-manager[gui] ) desktop? ( app-admin/bitwarden-desktop-bin app-office/joplin-desktop app-office/libreoffice-bin gui-apps/grim gui-apps/hypridle gui-apps/hyprlock gui-apps/hyprpaper gui-apps/slurp gui-apps/waybar gui-apps/wl-clipboard gui-apps/wofi gui-libs/xdg-desktop-portal-hyprland gui-wm/hyprland media-gfx/imv media-sound/pavucontrol media-video/vlc[bluray,-vaapi] media-video/wireplumber net-misc/dhcpcd net-misc/networkmanager[wifi] sys-auth/rtkit www-client/firefox[hwaccel] www-client/librewolf[hwaccel] x11-misc/ly x11-terms/kitty x11-themes/catppuccin-btop xfce-base/thunar ) laptop? ( dev-libs/light gui-apps/wl-mirror ) games? ( app-emulation/dxvk app-emulation/vkd3d-proton games-util/gamemode games-util/lutris games-util/steam-launcher media-plugins/gst-plugins-meta[ffmpeg] virtual/wine[proton] ) extras? ( media-video/obs-studio[browser] app-text/pandoc-bin dev-texlive/texlive-xetex media-gfx/imagemagick sci-visualization/gnuplot sys-apps/flatpak sys-process/btop ) dev? ( app-editors/vscode dev-debug/valgrind[mpi] dev-lang/elixir dev-lang/go dev-util/rustup net-fs/sshfs net-libs/nodejs[npm] net-vpn/openconnect sys-apps/yarn sys-cluster/openmpi virtual/rust ) printers? ( net-print/gutenprint net-print/hplip[minimal,-qt5] ) " DEPEND="${RDEPEND}" BDEPEND="${RDEPEND}" pkg_setup() { use virt && ACCT_USER_GROUPS+=( kvm libvirt ) use desktop && ACCT_USER_GROUPS+=( pipewire video ) } pkg_postinst() { elog "Setting user to never expire" chage -E -1 "${PN}" ebegin "Setting up dot-files ..." mkdir -pv "${ACCT_USER_HOME}/Src/Personal" pushd "${ACCT_USER_HOME}/Src/Personal" if [[ -d "dot-files" ]] then elog "Pulling in existing directory ..." cd dot-files git -c safe.directory='*' pull || die else elog "Cloning dot-files ..." git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die cd dot-files fi su "${PN}" "./setup.sh" || die popd eend "Done!" ebegin "Fixing ownerships ..." chown "${PN}:${PN}" "/home/${PN}" eend "Done!" if use containers then elog "Make sure to check https://wiki.gentoo.org/wiki/Podman" fi if use virt then elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU" fi if use games then elog "Make sure to check https://wiki.gentoo.org/wiki/Steam" fi } pkg_prerm() { # Don't remove system user : } </nowiki>'
Unified diff of changes made by edit (edit_diff)
'@@ -2,2 +2,196 @@ :construction: THIS IS A WIP :construction: + +acct-group/reavessm + + <nowiki> +# Copyright 2019-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit acct-group + +ACCT_GROUP_ID=1000 +</nowiki> + +acct-user/reavessm + + <nowiki> +# Copyright 2019-2024 Gentoo Authors +# Copyright 2024 Stephen M. Reaves +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit acct-user + +DESCRIPTION="The all powerful user" +ACCT_USER_ID=1000 +# Plugdev doesn't exist? +#ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" ) +ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" ) +ACCT_USER_HOME=/home/"${PN}" +ACCT_USER_SHELL="/bin/bash" + +IUSE="containers desktop dev extras laptop games printers virt" + +acct-user_add_deps + +# rtkit Needed for pipewire +# x11-misc/ly might only be available in the supertux88 overlay +RDEPEND=" + acct-group/reavessm + app-admin/stow + app-admin/sudo + app-editors/neovim + app-misc/fastfetch + app-misc/tmux + dev-vcs/git + dev-vcs/git-credential-manager + media-fonts/nerdfonts[daddytimemono,firacode] + media-fonts/noto-emoji + net-fs/nfs-utils + net-misc/keychain + sys-apps/ripgrep + sys-apps/tuned + + containers? ( + app-containers/crun + app-containers/podman + ) + virt? ( + app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu] + app-emulation/qemu[usbredir,spice,nfs,fuse] + app-emulation/virt-manager[gui] + ) + desktop? ( + app-admin/bitwarden-desktop-bin + app-office/joplin-desktop + app-office/libreoffice-bin + gui-apps/grim + gui-apps/hypridle + gui-apps/hyprlock + gui-apps/hyprpaper + gui-apps/slurp + gui-apps/waybar + gui-apps/wl-clipboard + gui-apps/wofi + gui-libs/xdg-desktop-portal-hyprland + gui-wm/hyprland + media-gfx/imv + media-sound/pavucontrol + media-video/vlc[bluray,-vaapi] + media-video/wireplumber + net-misc/dhcpcd + net-misc/networkmanager[wifi] + sys-auth/rtkit + www-client/firefox[hwaccel] + www-client/librewolf[hwaccel] + x11-misc/ly + x11-terms/kitty + x11-themes/catppuccin-btop + xfce-base/thunar + ) + laptop? ( + dev-libs/light + gui-apps/wl-mirror + ) + games? ( + app-emulation/dxvk + app-emulation/vkd3d-proton + games-util/gamemode + games-util/lutris + games-util/steam-launcher + media-plugins/gst-plugins-meta[ffmpeg] + virtual/wine[proton] + ) + extras? ( + media-video/obs-studio[browser] + app-text/pandoc-bin + dev-texlive/texlive-xetex + media-gfx/imagemagick + sci-visualization/gnuplot + sys-apps/flatpak + sys-process/btop + ) + dev? ( + app-editors/vscode + dev-debug/valgrind[mpi] + dev-lang/elixir + dev-lang/go + dev-util/rustup + net-fs/sshfs + net-libs/nodejs[npm] + net-vpn/openconnect + sys-apps/yarn + sys-cluster/openmpi + virtual/rust + ) + printers? ( + net-print/gutenprint + net-print/hplip[minimal,-qt5] + ) +" + +DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" + +pkg_setup() { + use virt && ACCT_USER_GROUPS+=( kvm libvirt ) + use desktop && ACCT_USER_GROUPS+=( pipewire video ) +} + +pkg_postinst() { + elog "Setting user to never expire" + chage -E -1 "${PN}" + + ebegin "Setting up dot-files ..." + + mkdir -pv "${ACCT_USER_HOME}/Src/Personal" + pushd "${ACCT_USER_HOME}/Src/Personal" + + if [[ -d "dot-files" ]] + then + elog "Pulling in existing directory ..." + cd dot-files + git -c safe.directory='*' pull || die + else + elog "Cloning dot-files ..." + git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die + cd dot-files + fi + + su "${PN}" "./setup.sh" || die + + popd + + eend "Done!" + + ebegin "Fixing ownerships ..." + + chown "${PN}:${PN}" "/home/${PN}" + + eend "Done!" + + if use containers + then + elog "Make sure to check https://wiki.gentoo.org/wiki/Podman" + fi + + if use virt + then + elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU" + fi + + if use games + then + elog "Make sure to check https://wiki.gentoo.org/wiki/Steam" + fi +} + +pkg_prerm() { + # Don't remove system user + : +} +</nowiki> '
Old page size (old_size)
90
Lines added in edit (added_lines)
[ 0 => '', 1 => 'acct-group/reavessm', 2 => '', 3 => ' <nowiki>', 4 => '# Copyright 2019-2024 Gentoo Authors', 5 => '# Distributed under the terms of the GNU General Public License v2', 6 => '', 7 => 'EAPI=8', 8 => '', 9 => 'inherit acct-group', 10 => '', 11 => 'ACCT_GROUP_ID=1000', 12 => '</nowiki>', 13 => '', 14 => 'acct-user/reavessm', 15 => '', 16 => ' <nowiki>', 17 => '# Copyright 2019-2024 Gentoo Authors', 18 => '# Copyright 2024 Stephen M. Reaves', 19 => '# Distributed under the terms of the GNU General Public License v2', 20 => '', 21 => 'EAPI=8', 22 => '', 23 => 'inherit acct-user', 24 => '', 25 => 'DESCRIPTION="The all powerful user"', 26 => 'ACCT_USER_ID=1000', 27 => '# Plugdev doesn't exist?', 28 => '#ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" )', 29 => 'ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" )', 30 => 'ACCT_USER_HOME=/home/"${PN}"', 31 => 'ACCT_USER_SHELL="/bin/bash"', 32 => '', 33 => 'IUSE="containers desktop dev extras laptop games printers virt"', 34 => '', 35 => 'acct-user_add_deps', 36 => '', 37 => '# rtkit Needed for pipewire', 38 => '# x11-misc/ly might only be available in the supertux88 overlay', 39 => 'RDEPEND="', 40 => ' acct-group/reavessm', 41 => ' app-admin/stow', 42 => ' app-admin/sudo', 43 => ' app-editors/neovim', 44 => ' app-misc/fastfetch', 45 => ' app-misc/tmux', 46 => ' dev-vcs/git', 47 => ' dev-vcs/git-credential-manager', 48 => ' media-fonts/nerdfonts[daddytimemono,firacode]', 49 => ' media-fonts/noto-emoji', 50 => ' net-fs/nfs-utils', 51 => ' net-misc/keychain', 52 => ' sys-apps/ripgrep', 53 => ' sys-apps/tuned', 54 => '', 55 => ' containers? (', 56 => ' app-containers/crun', 57 => ' app-containers/podman', 58 => ' )', 59 => ' virt? (', 60 => ' app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu]', 61 => ' app-emulation/qemu[usbredir,spice,nfs,fuse]', 62 => ' app-emulation/virt-manager[gui]', 63 => ' )', 64 => ' desktop? (', 65 => ' app-admin/bitwarden-desktop-bin', 66 => ' app-office/joplin-desktop', 67 => ' app-office/libreoffice-bin', 68 => ' gui-apps/grim', 69 => ' gui-apps/hypridle', 70 => ' gui-apps/hyprlock', 71 => ' gui-apps/hyprpaper', 72 => ' gui-apps/slurp', 73 => ' gui-apps/waybar', 74 => ' gui-apps/wl-clipboard', 75 => ' gui-apps/wofi', 76 => ' gui-libs/xdg-desktop-portal-hyprland', 77 => ' gui-wm/hyprland', 78 => ' media-gfx/imv', 79 => ' media-sound/pavucontrol', 80 => ' media-video/vlc[bluray,-vaapi]', 81 => ' media-video/wireplumber', 82 => ' net-misc/dhcpcd', 83 => ' net-misc/networkmanager[wifi]', 84 => ' sys-auth/rtkit', 85 => ' www-client/firefox[hwaccel]', 86 => ' www-client/librewolf[hwaccel]', 87 => ' x11-misc/ly', 88 => ' x11-terms/kitty', 89 => ' x11-themes/catppuccin-btop', 90 => ' xfce-base/thunar', 91 => ' )', 92 => ' laptop? (', 93 => ' dev-libs/light', 94 => ' gui-apps/wl-mirror', 95 => ' )', 96 => ' games? (', 97 => ' app-emulation/dxvk', 98 => ' app-emulation/vkd3d-proton', 99 => ' games-util/gamemode', 100 => ' games-util/lutris', 101 => ' games-util/steam-launcher', 102 => ' media-plugins/gst-plugins-meta[ffmpeg]', 103 => ' virtual/wine[proton]', 104 => ' )', 105 => ' extras? (', 106 => ' media-video/obs-studio[browser]', 107 => ' app-text/pandoc-bin', 108 => ' dev-texlive/texlive-xetex', 109 => ' media-gfx/imagemagick', 110 => ' sci-visualization/gnuplot', 111 => ' sys-apps/flatpak', 112 => ' sys-process/btop', 113 => ' )', 114 => ' dev? (', 115 => ' app-editors/vscode', 116 => ' dev-debug/valgrind[mpi]', 117 => ' dev-lang/elixir', 118 => ' dev-lang/go', 119 => ' dev-util/rustup', 120 => ' net-fs/sshfs', 121 => ' net-libs/nodejs[npm]', 122 => ' net-vpn/openconnect', 123 => ' sys-apps/yarn', 124 => ' sys-cluster/openmpi', 125 => ' virtual/rust', 126 => ' )', 127 => ' printers? (', 128 => ' net-print/gutenprint', 129 => ' net-print/hplip[minimal,-qt5]', 130 => ' )', 131 => '"', 132 => '', 133 => 'DEPEND="${RDEPEND}"', 134 => 'BDEPEND="${RDEPEND}"', 135 => '', 136 => 'pkg_setup() {', 137 => ' use virt && ACCT_USER_GROUPS+=( kvm libvirt )', 138 => ' use desktop && ACCT_USER_GROUPS+=( pipewire video )', 139 => '}', 140 => '', 141 => 'pkg_postinst() {', 142 => ' elog "Setting user to never expire"', 143 => ' chage -E -1 "${PN}"', 144 => '', 145 => ' ebegin "Setting up dot-files ..."', 146 => '', 147 => ' mkdir -pv "${ACCT_USER_HOME}/Src/Personal"', 148 => ' pushd "${ACCT_USER_HOME}/Src/Personal"', 149 => '', 150 => ' if [[ -d "dot-files" ]]', 151 => ' then', 152 => ' elog "Pulling in existing directory ..."', 153 => ' cd dot-files', 154 => ' git -c safe.directory='*' pull || die', 155 => ' else', 156 => ' elog "Cloning dot-files ..."', 157 => ' git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die', 158 => ' cd dot-files', 159 => ' fi', 160 => '', 161 => ' su "${PN}" "./setup.sh" || die', 162 => '', 163 => ' popd', 164 => '', 165 => ' eend "Done!"', 166 => '', 167 => ' ebegin "Fixing ownerships ..."', 168 => '', 169 => ' chown "${PN}:${PN}" "/home/${PN}"', 170 => '', 171 => ' eend "Done!"', 172 => '', 173 => ' if use containers', 174 => ' then', 175 => ' elog "Make sure to check https://wiki.gentoo.org/wiki/Podman"', 176 => ' fi', 177 => '', 178 => ' if use virt', 179 => ' then', 180 => ' elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU"', 181 => ' fi', 182 => '', 183 => ' if use games', 184 => ' then', 185 => ' elog "Make sure to check https://wiki.gentoo.org/wiki/Steam"', 186 => ' fi', 187 => '}', 188 => '', 189 => 'pkg_prerm() {', 190 => ' # Don't remove system user', 191 => ' :', 192 => '}', 193 => '</nowiki>' ]
Lines removed in edit (removed_lines)
[]
New page text, stripped of any markup (new_text)
'This is how you can install users via ebuilds construction: THIS IS A WIP :construction: acct-group/reavessm # Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-group ACCT_GROUP_ID=1000 acct-user/reavessm # Copyright 2019-2024 Gentoo Authors # Copyright 2024 Stephen M. Reaves # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-user DESCRIPTION="The all powerful user" ACCT_USER_ID=1000 # Plugdev doesn't exist? #ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" ) ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" ) ACCT_USER_HOME=/home/"${PN}" ACCT_USER_SHELL="/bin/bash" IUSE="containers desktop dev extras laptop games printers virt" acct-user_add_deps # rtkit Needed for pipewire # x11-misc/ly might only be available in the supertux88 overlay RDEPEND=" acct-group/reavessm app-admin/stow app-admin/sudo app-editors/neovim app-misc/fastfetch app-misc/tmux dev-vcs/git dev-vcs/git-credential-manager media-fonts/nerdfonts[daddytimemono,firacode] media-fonts/noto-emoji net-fs/nfs-utils net-misc/keychain sys-apps/ripgrep sys-apps/tuned containers? ( app-containers/crun app-containers/podman ) virt? ( app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu] app-emulation/qemu[usbredir,spice,nfs,fuse] app-emulation/virt-manager[gui] ) desktop? ( app-admin/bitwarden-desktop-bin app-office/joplin-desktop app-office/libreoffice-bin gui-apps/grim gui-apps/hypridle gui-apps/hyprlock gui-apps/hyprpaper gui-apps/slurp gui-apps/waybar gui-apps/wl-clipboard gui-apps/wofi gui-libs/xdg-desktop-portal-hyprland gui-wm/hyprland media-gfx/imv media-sound/pavucontrol media-video/vlc[bluray,-vaapi] media-video/wireplumber net-misc/dhcpcd net-misc/networkmanager[wifi] sys-auth/rtkit www-client/firefox[hwaccel] www-client/librewolf[hwaccel] x11-misc/ly x11-terms/kitty x11-themes/catppuccin-btop xfce-base/thunar ) laptop? ( dev-libs/light gui-apps/wl-mirror ) games? ( app-emulation/dxvk app-emulation/vkd3d-proton games-util/gamemode games-util/lutris games-util/steam-launcher media-plugins/gst-plugins-meta[ffmpeg] virtual/wine[proton] ) extras? ( media-video/obs-studio[browser] app-text/pandoc-bin dev-texlive/texlive-xetex media-gfx/imagemagick sci-visualization/gnuplot sys-apps/flatpak sys-process/btop ) dev? ( app-editors/vscode dev-debug/valgrind[mpi] dev-lang/elixir dev-lang/go dev-util/rustup net-fs/sshfs net-libs/nodejs[npm] net-vpn/openconnect sys-apps/yarn sys-cluster/openmpi virtual/rust ) printers? ( net-print/gutenprint net-print/hplip[minimal,-qt5] ) " DEPEND="${RDEPEND}" BDEPEND="${RDEPEND}" pkg_setup() { use virt &amp;&amp; ACCT_USER_GROUPS+=( kvm libvirt ) use desktop &amp;&amp; ACCT_USER_GROUPS+=( pipewire video ) } pkg_postinst() { elog "Setting user to never expire" chage -E -1 "${PN}" ebegin "Setting up dot-files ..." mkdir -pv "${ACCT_USER_HOME}/Src/Personal" pushd "${ACCT_USER_HOME}/Src/Personal" if [[ -d "dot-files" ]] then elog "Pulling in existing directory ..." cd dot-files git -c safe.directory='*' pull || die else elog "Cloning dot-files ..." git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die cd dot-files fi su "${PN}" "./setup.sh" || die popd eend "Done!" ebegin "Fixing ownerships ..." chown "${PN}:${PN}" "/home/${PN}" eend "Done!" if use containers then elog "Make sure to check https://wiki.gentoo.org/wiki/Podman" fi if use virt then elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU" fi if use games then elog "Make sure to check https://wiki.gentoo.org/wiki/Steam" fi } pkg_prerm() { # Don't remove system user : }'
Parsed HTML source of the new revision (new_html)
'<div class="mw-parser-output"><p>This is how you can install users via ebuilds </p> <dl><dd>construction: THIS IS A WIP :construction:</dd></dl> <p>acct-group/reavessm </p> <pre># Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-group ACCT_GROUP_ID=1000 </pre> <p>acct-user/reavessm </p> <pre># Copyright 2019-2024 Gentoo Authors # Copyright 2024 Stephen M. Reaves # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit acct-user DESCRIPTION="The all powerful user" ACCT_USER_ID=1000 # Plugdev doesn't exist? #ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" "plugdev" ) ACCT_USER_GROUPS=( "${PN}" "wheel" "usb" ) ACCT_USER_HOME=/home/"${PN}" ACCT_USER_SHELL="/bin/bash" IUSE="containers desktop dev extras laptop games printers virt" acct-user_add_deps # rtkit Needed for pipewire # x11-misc/ly might only be available in the supertux88 overlay RDEPEND=" acct-group/reavessm app-admin/stow app-admin/sudo app-editors/neovim app-misc/fastfetch app-misc/tmux dev-vcs/git dev-vcs/git-credential-manager media-fonts/nerdfonts[daddytimemono,firacode] media-fonts/noto-emoji net-fs/nfs-utils net-misc/keychain sys-apps/ripgrep sys-apps/tuned containers? ( app-containers/crun app-containers/podman ) virt? ( app-emulation/libvirt[pcap,virt-network,numa,nfs,fuse,qemu] app-emulation/qemu[usbredir,spice,nfs,fuse] app-emulation/virt-manager[gui] ) desktop? ( app-admin/bitwarden-desktop-bin app-office/joplin-desktop app-office/libreoffice-bin gui-apps/grim gui-apps/hypridle gui-apps/hyprlock gui-apps/hyprpaper gui-apps/slurp gui-apps/waybar gui-apps/wl-clipboard gui-apps/wofi gui-libs/xdg-desktop-portal-hyprland gui-wm/hyprland media-gfx/imv media-sound/pavucontrol media-video/vlc[bluray,-vaapi] media-video/wireplumber net-misc/dhcpcd net-misc/networkmanager[wifi] sys-auth/rtkit www-client/firefox[hwaccel] www-client/librewolf[hwaccel] x11-misc/ly x11-terms/kitty x11-themes/catppuccin-btop xfce-base/thunar ) laptop? ( dev-libs/light gui-apps/wl-mirror ) games? ( app-emulation/dxvk app-emulation/vkd3d-proton games-util/gamemode games-util/lutris games-util/steam-launcher media-plugins/gst-plugins-meta[ffmpeg] virtual/wine[proton] ) extras? ( media-video/obs-studio[browser] app-text/pandoc-bin dev-texlive/texlive-xetex media-gfx/imagemagick sci-visualization/gnuplot sys-apps/flatpak sys-process/btop ) dev? ( app-editors/vscode dev-debug/valgrind[mpi] dev-lang/elixir dev-lang/go dev-util/rustup net-fs/sshfs net-libs/nodejs[npm] net-vpn/openconnect sys-apps/yarn sys-cluster/openmpi virtual/rust ) printers? ( net-print/gutenprint net-print/hplip[minimal,-qt5] ) " DEPEND="${RDEPEND}" BDEPEND="${RDEPEND}" pkg_setup() { use virt &amp;&amp; ACCT_USER_GROUPS+=( kvm libvirt ) use desktop &amp;&amp; ACCT_USER_GROUPS+=( pipewire video ) } pkg_postinst() { elog "Setting user to never expire" chage -E -1 "${PN}" ebegin "Setting up dot-files ..." mkdir -pv "${ACCT_USER_HOME}/Src/Personal" pushd "${ACCT_USER_HOME}/Src/Personal" if [[ -d "dot-files" ]] then elog "Pulling in existing directory ..." cd dot-files git -c safe.directory='*' pull || die else elog "Cloning dot-files ..." git -c safe.directory='*' clone "https://gitlab.com/${PN}/dot-files" || die cd dot-files fi su "${PN}" "./setup.sh" || die popd eend "Done!" ebegin "Fixing ownerships ..." chown "${PN}:${PN}" "/home/${PN}" eend "Done!" if use containers then elog "Make sure to check https://wiki.gentoo.org/wiki/Podman" fi if use virt then elog "Make sure to check https://wiki.gentoo.org/wiki/Libvirt and https://wiki.gentoo.org/wiki/Virt-manager and https://wiki.gentoo.org/wiki/QEMU" fi if use games then elog "Make sure to check https://wiki.gentoo.org/wiki/Steam" fi } pkg_prerm() { # Don't remove system user : } </pre> '
Unix timestamp of change (timestamp)
1741134400