Remove proxying via torify

This network-level concern is not appropriate for this repository.

When I originally added it, my thought was that I'd be helping to
protect the privacy of people who cloned the repository.  But that
responsibility does not belong here.

I don't need to proxy through Tor anymore through software, as I have
since handled privacy-related networking concerns elsewhere (whether it
be at the router or host OS level).
master
Mike Gerwitz 2023-12-17 12:01:57 -05:00
parent fcbc8f2689
commit c5e3931450
Signed by: mikegerwitz
GPG Key ID: 8C917B7F5DC51BA2
2 changed files with 3 additions and 6 deletions

View File

@ -16,8 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This will also download any necessary third-party files. Note that all
# downloads are proxied over Tor (using `torify').
# This will also download any necessary third-party files.
##
set -euo pipefail
@ -56,7 +55,7 @@ get-fonts()
dest="$fontdir/$font"
test ! -f "$dest" || continue
torify wget "$src" -O "$dest"
wget "$src" -O "$dest"
done
# Verify that we haven't been served bad files. This should only happen

View File

@ -22,8 +22,6 @@ declare -r remote_file=remote-list
cat <<EOF
### GENERATED BY gen-makefile ###
TORIFY="${TORIFY-torify}"
images := $( cut -d' ' -f1 "$remote_file" | tr '\n' ' ' )
.PHONY: all check clean
@ -44,7 +42,7 @@ while read out url convert; do
dest="$out"
echo "$dest":
printf "\t\$(TORIFY) wget -O %q %q\n" "$dest" "$url"
printf "\t\wget -O %q %q\n" "$dest" "$url"
test -n "$convert" || continue