summaryrefslogtreecommitdiff
path: root/cron-jobs/make_repo_torrents
blob: bcf78b29b7bb48ff20787f2b908ad457bf2f2553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# Copyright (C) 2014, 2017 Joseph Graham <joseph@xylon.me.uk>
# Copyright (C) 2018 Luke Shumaker <lukeshu@parabola.nu>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# 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 script finds any updated packages and calls
# `make_indivudual_torrent' for each of them. Run every hour from cron.

# pacman doesn't support multiple different packages of the same name,
# so it's OK to just stuff all the torrents into a single directory.

set -eE
. "$(dirname "$(readlink -e "$0")")/../config"
. "$(dirname "$(readlink -e "$0")")/../torrent.conf"
. "$(dirname "$(readlink -e "$0")")/../db-functions"

mkdir -p -- "${FTP_BASE}/${TORRENTPOOL}"
cd "${FTP_BASE}/${TORRENTPOOL}"

IFS=, # for ${TRACKERS[*]} and ${WEBSEEDS[*]}

# Find any packages
for pkgfile in "$FTP_BASE"/*/os/*/*${PKGEXTS}; do
	if ! [[ -f ${pkgfile##*/}.torrent ]]; then
		msg2 'Creating %s' "${pkgfile##*/}.torrent"
		# Resolve any symlinks
		pkgfile=$(readlink -f -- "$pkgfile")
		# Create the .torrent
		mktorrent \
			--announce="${TRACKERS[*]}" \
			--web-seed="${WEBSEEDS[*]/%/"${pkgfile#"${FTP_BASE}"}"}" \
			-- "${pkgfile}" >/dev/null
	fi
done