diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-05-17 18:30:48 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-05-17 18:30:48 -0400 |
commit | 2c55a421d8a431faea07e678dc1f52634355ea65 (patch) | |
tree | b60a38a591603a6a09b5f2beba3853fe078c6bc4 /make_individual_torrent | |
parent | b4ddeae83daca2e29d9b978abd50f49d2e6692ef (diff) | |
parent | dd63290fd4c15b6220ade6ef4d6f8f0e4878944e (diff) |
Merge branch 'master' into lukeshu/xbs
Diffstat (limited to 'make_individual_torrent')
-rwxr-xr-x | make_individual_torrent | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/make_individual_torrent b/make_individual_torrent new file mode 100755 index 0000000..e5b7d8c --- /dev/null +++ b/make_individual_torrent @@ -0,0 +1,52 @@ +#! /bin/bash +# Copyright (C) 2014 Joseph Graham <joseph@t67.eu> +# +# 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 is called by `make_repo_torrents' to make a torrent. It +# depends on `mktorrent'. It takes the following args: +# $1 - path of package +# $2 - public location + +# Comma seperated list of trackers, no spaces +# t67.eu is run by Xylon, hackcoop by fauno & friends +trackers='http://t67.eu:6969/announce,http://tracker.hackcoop.com.ar/announce' + +# This mirror is put as a webseed. Which mirror we use for a webseed +# doesn't really matter since it's re-written on the client machine by +# pacman2pacman so it won't normally be used anyway. +seed_url='http://repo.parabolagnulinux.org/' + +if [[ -z "${1}" ]] +then + echo "Error. First arg must be the path of the package." + echo 1 +fi + +if [[ -z "${2}" ]] +then + echo "Error. Second arg must be the public location." + echo 1 +fi + +pkg="${1}" +public_location="${2}" + +pkg_name="${pkg##*/}" + +# URL of the actual package for the webseed +webseed="${seed_url}${pkg#${public_location}}" + +mktorrent -a "${trackers}" "${pkg}" -w "${webseed}" >/dev/null || +echo "Error making torrent for \"${pkg}\"" |