This removes the broken .htaccess that is part of the release archive.
Removing this file matches the previous behaviour of the rutorrent
ebuild (when the release contained no .htaccess file there).
Closes: https://github.com/gentoo/gentoo/pull/6818
Package-Manager: Portage-2.3.13, Repoman-2.3.3
src_prepare() {
default
find -name '\.gitignore' -type f -exec rm -rf {} \;
+ # The 3.8 release of ruTorrent includes an .htaccess file that defines a .htpasswd that doesn't exist
+ rm '.htaccess'
}
src_install() {