first commit

This commit is contained in:
quuiqueee 2015-03-21 18:54:30 +01:00
commit 700ca205df
9 changed files with 496 additions and 0 deletions

45
README.rst Normal file
View File

@ -0,0 +1,45 @@
aria2 static builds for GNU/Linux
=================================
Used external libraries:
------------------------
* `zlib`_.
* `expat`_.
* `sqlite3`_.
* `OpenSSL`_.
* `c-ares`_.
.. _zlib: http://www.zlib.net/
.. _expat: http://expat.sourceforge.net/
.. _sqlite3: http://www.sqlite.org/
.. _OpenSSL: http://www.openssl.org/
.. _c-ares: http://c-ares.haxx.se/
aria2 static downloads:
-----------------------
* aria2 package (32-bit): `aria2-1.18.10-linux-gnu-32bit-build2.tar.bz2`_.
* aria2 package (64-bit): `aria2-1.18.10-linux-gnu-64bit-build2.tar.bz2`_.
.. _aria2-1.18.10-linux-gnu-32bit-build2.tar.bz2: https://github.com/quuiqueee/aria2-builds-for-linux/raw/master/builds/aria2-1.18.10-linux-gnu-32bit-build2.tar.bz2
.. _aria2-1.18.10-linux-gnu-64bit-build2.tar.bz2: https://github.com/quuiqueee/aria2-builds-for-linux/raw/master/builds/aria2-1.18.10-linux-gnu-64bit-build2.tar.bz2
How to install:
---------------
* Type the following commands as root::
# tar jxvf aria2-1.18.10-linux-gnu-[arch]-build2.tar.bz2 -C /usr/bin/
# chmod +x /usr/bin/aria2c
External links:
---------------
* `aria2 homepage`_.
* `aria2 documentation`_.
* `aria2 source code (github)`_.
.. _aria2 homepage: http://aria2.sourceforge.net/
.. _aria2 documentation: http://aria2.sourceforge.net/manual/en/html/index.html
.. _aria2 source code (github): https://github.com/tatsuhiro-t/aria2

BIN
aria2.ico Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

1
build-aria2 Normal file
View File

@ -0,0 +1 @@
./configure --prefix=/opt/aria2 --without-libxml2 --without-libgcrypt --with-openssl --without-libnettle --without-gnutls --without-libgmp --with-sqlite3 ARIA2_STATIC=yes --enable-shared=no

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

228
scripts/aria2bt.bash Executable file
View File

@ -0,0 +1,228 @@
#!/bin/bash
# aria2 script for bittorrent downloads.
# http://aria2.sourceforge.net/
# Created by Quique (quuiqueee@gmail.com)
# Licensed by GPL v.2
# Last update: 27-10-2014
# --------------------------------------
VERSION=6.5
#Check if exist .aria2 folder.
if [ -d $HOME/.aria2 ] ; then
echo "$HOME/.aria2 exists"
else
mkdir $HOME/.aria2
fi
#Check if exist config file and create it.
CONFIG_FILE=$HOME/.aria2/aria2bt.conf
if [ -f $CONFIG_FILE ] ; then
source $CONFIG_FILE
else
echo "# DEFAULT ARIA2BT SCRIPT CONFIG." > $CONFIG_FILE
echo "" >> $CONFIG_FILE
echo "TORRENT_FOLDER=/opt/Torrent" >> $CONFIG_FILE
echo "TORRENT_FILES=/opt/Torrent/Files" >> $CONFIG_FILE
echo "MAX_SPEED_DOWNLOAD=300K" >> $CONFIG_FILE
echo "MAX_SPEED_UPLOAD=5K" >> $CONFIG_FILE
echo "BT_MAX_PEERS=25" >> $CONFIG_FILE
echo "MAX_DOWNLOADS=25" >> $CONFIG_FILE
echo "ENCRYPTION=yes" >> $CONFIG_FILE
echo "RPC=yes" >> $CONFIG_FILE
echo "SEEDING=yes" >> $CONFIG_FILE
echo "SEED_RATIO=0.0" >> $CONFIG_FILE
echo "DEBUG=no" >> $CONFIG_FILE
echo "DEBUG_LEVEL=info" >> $CONFIG_FILE
echo "FILE_ALLOCATION=none" >> $CONFIG_FILE
source $CONFIG_FILE
fi
# VARIABLES
SPEED_OPTIONS="--max-overall-download-limit=$MAX_SPEED_DOWNLOAD --max-overall-upload-limit=$MAX_SPEED_UPLOAD"
PEER_OPTIONS="--bt-max-peers=$BT_MAX_PEERS"
OTHER_OPTIONS="-V -j $MAX_DOWNLOADS --file-allocation=$FILE_ALLOCATION"
#check aria2 on system.
aria2c -h > /dev/null
if [ "$?" -eq 0 ] ; then
echo "Everything OK"
else
clear
echo ""
echo "Error: 'aria2' is not installed!"
echo "Help: http://aria2.sourceforge.net/"
echo ""
exit
fi
#Define command from variables of config file.
if [ "$ENCRYPTION" == "no" ] ; then
TORRENT_OPTIONS="--bt-require-crypto=false"
elif [ "$ENCRYPTION" == "yes" ] ; then
TORRENT_OPTIONS="--bt-min-crypto-level=arc4 --bt-require-crypto=true"
fi
if [ "$RPC" == "no" ] ; then
RPC_OPTIONS="--rpc-listen-all=false"
elif [ "$RPC" == "yes" ] ; then
RPC_OPTIONS="--enable-rpc --rpc-listen-all=true --rpc-allow-origin-all"
fi
if [ "$SEEDING" == "no" ] ; then
SEED_OPTIONS="--seed-time=0"
elif [ "$SEEDING" == "yes" ] ; then
SEED_OPTIONS="--seed-ratio=$SEED_RATIO"
fi
if [ "$DEBUG" == "no" ] ; then
ALL_OPTIONS="$TORRENT_OPTIONS $SPEED_OPTIONS $PEER_OPTIONS $RPC_OPTIONS $SEED_OPTIONS"
elif [ "$DEBUG" == "yes" ] ; then
ALL_OPTIONS="$TORRENT_OPTIONS $SPEED_OPTIONS $PEER_OPTIONS $RPC_OPTIONS $SEED_OPTIONS --console-log-level=$DEBUG_LEVEL"
fi
# Check input file.
if [ -f "$1" ] ; then
CHECK_TORRENT=`echo $1 | grep ".torrent"`
if [ "$CHECK_TORRENT" == "$1" ] ; then
clear
echo ""
echo "Detected torrent file!"
echo ""
echo "Can you copy this file to '$TORRENT_FILES' directory and"
echo -n "run aria2? (y/n); " ; read LOAD
if [ "$LOAD" == "y" ] ; then
cp "$1" $TORRENT_FILES
cp -rf "$1" $TORRENT_FILES
elif [ "$LOAD" == "n" ] ; then
echo "Exiting..."
exit
else
cp "$1" $TORRENT_FILES
cp -rf "$1" $TORRENT_FILES
fi
else
clear
echo ""
echo "This file is not a torrent!"
echo ""
echo -n "Press 'ENTER' to exit "
read notoption
echo "Exiting..."
exit
fi
else
echo "No input file"
fi
MENU_VARIABLE=1
while [ $MENU_VARIABLE -le 2 ] ; do
#Show menu
clear
echo ""
echo "** aria2 bittorrent script v.$VERSION **"
echo "- http://aria2.sourceforge.net/"
echo ""
echo "- aria2 config:"
echo ""
echo " * Config.file: $CONFIG_FILE"
echo ""
echo " * Download directory: $TORRENT_FOLDER"
echo " * Torrent directory: $TORRENT_FILES/*.torrent"
echo " * Download speed: $MAX_SPEED_DOWNLOAD | Upload speed: $MAX_SPEED_UPLOAD"
echo " * Encryption: $ENCRYPTION | RPC: $RPC"
echo " * Max.peers: $BT_MAX_PEERS | Max.downloads: $MAX_DOWNLOADS"
echo " * Seeding: $SEEDING | Seed ratio: $SEED_RATIO"
echo " * Debugging: $DEBUG | Debug.level: $DEBUG_LEVEL"
echo " * File allocation: $FILE_ALLOCATION"
echo ""
echo -n "- run(r) | list(l) | magnet(m) | file(f) | quit(q): " ; read RUN
if [ "$RUN" == "r" ] ; then
clear
aria2c $OTHER_OPTIONS $TORRENT_FILES/*.torrent $ALL_OPTIONS -d $TORRENT_FOLDER
echo "Exiting..."
elif [ "$RUN" == "q" ] ; then
echo "Exiting..."
MENU_VARIABLE=3
elif [ "$RUN" == "l" ] ; then
clear
echo ""
echo "* List of torrents that will be loaded:"
echo ""
ls $TORRENT_FILES | grep ".torrent"
echo ""
echo "* List of incomplete downloads:"
echo ""
ls $TORRENT_FOLDER | grep ".aria2"
echo ""
echo -n "Press 'ENTER' to return "
read notoption
elif [ "$RUN" == "m" ] ; then
clear
echo ""
echo "* Make torrent file from Magnet-link"
echo ""
echo -n "- Type the Magnet-link: " ; read MAGNET
echo ""
aria2c --bt-metadata-only=true --bt-save-metadata=true "$MAGNET" -d $TORRENT_FILES
echo ""
echo -n "Press 'ENTER' to return "
read notoption
elif [ "$RUN" == "f" ] ; then
clear
echo ""
echo "* Load links from a file/metalink"
echo ""
echo -n "- Type the path of the file: " ; read FILE
echo ""
if [ "${FILE:-NO_VALUE}" != "NO_VALUE" ] ; then
if [ -f $FILE ] ; then
clear
echo ""
echo "* File: $FILE"
echo ""
echo -n "Press 'ENTER' to load file "
read notoption
clear
aria2c $OTHER_OPTIONS -i "$FILE" $ALL_OPTIONS -d $TORRENT_FOLDER
echo "Exiting..."
else
clear
echo ""
echo "* '$FILE' not exist!"
echo ""
echo -n "Press 'ENTER' to return "
read notoption
fi
else
clear
echo ""
echo "Invalid path (empty)"
echo ""
echo -n "Press 'ENTER' to return "
read notoption
fi
else
clear
echo ""
echo "Invalid option, please, choose any available version"
echo ""
echo -n "Press 'ENTER' to return "
read notoption
fi
done

222
scripts/aria2bt.csh Executable file
View File

@ -0,0 +1,222 @@
#!/bin/csh
# aria2 script for bittorrent downloads.
# http://aria2.sourceforge.net/
# Created by Quique (quuiqueee@gmail.com)
# Licensed by GPL v.2
# Last update: 27-10-2014
# --------------------------------------
set VERSION=6.5
#Check if exist .aria2 folder.
if ( -d $HOME/.aria2 ) then
echo "$HOME/.aria2 exists"
else
mkdir $HOME/.aria2
endif
#Check if exist config file and create it.
set CONFIG_FILE=$HOME/.aria2/aria2bt.conf
if ( -f $CONFIG_FILE ) then
source $CONFIG_FILE
else
echo "# DEFAULT ARIA2BT SCRIPT CONFIG." > $CONFIG_FILE
echo "" >> $CONFIG_FILE
echo "set TORRENT_FOLDER=/opt/Torrent" >> $CONFIG_FILE
echo "set TORRENT_FILES=/opt/Torrent/Files" >> $CONFIG_FILE
echo "set MAX_SPEED_DOWNLOAD=300K" >> $CONFIG_FILE
echo "set MAX_SPEED_UPLOAD=5K" >> $CONFIG_FILE
echo "set BT_MAX_PEERS=25" >> $CONFIG_FILE
echo "set MAX_DOWNLOADS=25" >> $CONFIG_FILE
echo "set ENCRYPTION=yes" >> $CONFIG_FILE
echo "set RPC=yes" >> $CONFIG_FILE
echo "set SEEDING=yes" >> $CONFIG_FILE
echo "set SEED_RATIO=0.0" >> $CONFIG_FILE
echo "set DEBUG=no" >> $CONFIG_FILE
echo "set DEBUG_LEVEL=info" >> $CONFIG_FILE
echo "set FILE_ALLOCATION=none" >> $CONFIG_FILE
source $CONFIG_FILE
endif
# VARIABLES
set SPEED_OPTIONS="--max-overall-download-limit=$MAX_SPEED_DOWNLOAD --max-overall-upload-limit=$MAX_SPEED_UPLOAD"
set PEER_OPTIONS="--bt-max-peers=$BT_MAX_PEERS"
set OTHER_OPTIONS="-V -j $MAX_DOWNLOADS --file-allocation=$FILE_ALLOCATION"
#check aria2 on system.
aria2c -h > /dev/null
if ( $status == 0 ) then
echo "Everything OK"
else
clear
echo ""
echo "Error: 'aria2' is not installed!"
echo "Help: http://aria2.sourceforge.net/"
echo ""
exit
endif
#Define command from variables of config file.
if ( "$ENCRYPTION" == "no" ) then
set TORRENT_OPTIONS="--bt-require-crypto=false"
else if ( "$ENCRYPTION" == "yes" ) then
set TORRENT_OPTIONS="--bt-min-crypto-level=arc4 --bt-require-crypto=true"
endif
if ( "$RPC" == "no" ) then
set RPC_OPTIONS="--rpc-listen-all=false"
else if ( "$RPC" == "yes" ) then
set RPC_OPTIONS="--enable-rpc --rpc-listen-all=true --rpc-allow-origin-all"
endif
if ( "$SEEDING" == "no" ) then
set SEED_OPTIONS="--seed-time=0"
else if ( "$SEEDING" == "yes" ) then
set SEED_OPTIONS="--seed-ratio=$SEED_RATIO"
endif
if ( "$DEBUG" == "no" ) then
set ALL_OPTIONS="$TORRENT_OPTIONS $SPEED_OPTIONS $PEER_OPTIONS $RPC_OPTIONS $SEED_OPTIONS"
else if ( "$DEBUG" == "yes" ) then
set ALL_OPTIONS="$TORRENT_OPTIONS $SPEED_OPTIONS $PEER_OPTIONS $RPC_OPTIONS $SEED_OPTIONS --console-log-level=$DEBUG_LEVEL"
endif
# Check input file.
if ( -f "$1" ) then
set CHECK_TORRENT=`echo $1 | grep ".torrent"`
if ( "$CHECK_TORRENT" == "$1" ) then
clear
echo ""
echo "Detected torrent file!"
echo ""
echo "Can you copy this file to '$TORRENT_FILES' directory and"
echo -n "run aria2? (y/n); "
set LOAD="$<"
if ( "$LOAD" == "y" ) then
cp "$1" $TORRENT_FILES
cp -rf "$1" $TORRENT_FILES
else if ( "$LOAD" == "n" ) then
echo "Exiting..."
exit
else
cp "$1" $TORRENT_FILES
cp -rf "$1" $TORRENT_FILES
endif
else
clear
echo ""
echo "This file is not a torrent!"
echo ""
echo -n "Press 'ENTER' to exit "
set NOOPTION="$<"
echo "Exiting..."
exit
endif
else
echo "No input file"
endif
set MENU_VARIABLE=1
while ( $MENU_VARIABLE <= 2 )
#Show menu
clear
echo ""
echo "** aria2 bittorrent script v.$VERSION **"
echo "- http://aria2.sourceforge.net/"
echo ""
echo "- aria2 config:"
echo ""
echo " * Config.file: $CONFIG_FILE"
echo ""
echo " * Download directory: $TORRENT_FOLDER"
echo " * Torrent directory: $TORRENT_FILES/*.torrent"
echo " * Download speed: $MAX_SPEED_DOWNLOAD | Upload speed: $MAX_SPEED_UPLOAD"
echo " * Encryption: $ENCRYPTION | RPC: $RPC"
echo " * Max.peers: $BT_MAX_PEERS | Max.downloads: $MAX_DOWNLOADS"
echo " * Seeding: $SEEDING | Seed ratio: $SEED_RATIO"
echo " * Debugging: $DEBUG | Debug.level: $DEBUG_LEVEL"
echo " * File allocation: $FILE_ALLOCATION"
echo ""
echo -n "- run(r) | list(l) | magnet(m) | file(f) | quit(q): "
set RUN="$<"
if ( "$RUN" == "r" ) then
clear
aria2c $OTHER_OPTIONS $TORRENT_FILES/*.torrent $ALL_OPTIONS -d $TORRENT_FOLDER
else if ( "$RUN" == "q" ) then
set MENU_VARIABLE=3
echo "Exiting..."
else if ( "$RUN" == "l" ) then
clear
echo ""
echo "* List of torrents that will be loaded:"
echo ""
ls $TORRENT_FILES | grep ".torrent"
echo ""
echo "* List of incomplete downloads:"
echo ""
ls $TORRENT_FOLDER | grep ".aria2"
echo ""
echo -n "Press 'ENTER' to return "
set NOOPTION="$<"
else if ( "$RUN" == "m" ) then
clear
echo ""
echo "* Make torrent file from Magnet-link"
echo ""
echo -n "- Type the Magnet-link: "
set MAGNET="$<"
echo ""
aria2c --bt-metadata-only=true --bt-save-metadata=true "$MAGNET" -d $TORRENT_FILES
echo ""
echo -n "Press 'ENTER' to return "
set NOOPTION="$<"
else if ( "$RUN" == "f" ) then
clear
echo ""
echo "* Load links from a file/metalink"
echo ""
echo -n "- Type the path of the file: "
set FILE="$<"
if ( -f $FILE ) then
clear
echo ""
echo "* File: $FILE"
echo ""
echo -n "Press 'ENTER' to load file "
set NOOPTION="$<"
clear
aria2c $OTHER_OPTIONS -i "$FILE" $ALL_OPTIONS -d $TORRENT_FOLDER
echo "Exiting..."
else
clear
echo ""
echo "* '$FILE' not exist!"
echo ""
echo -n "Press 'ENTER' to return "
set NOOPTION="$<"
endif
else
clear
echo ""
echo "Invalid option, please, choose any available version"
echo ""
echo -n "Press 'ENTER' to return "
set NOOPTION="$<"
endif
end