Aria2

Latest version: v0.0.1b0

Safety actively analyzes 623219 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

1.37.0

============

Release Note
------------

See https://github.com/aria2/aria2/releases/tag/release-1.37.0


!/bin/sh -e

VERSION=$1
PREV_VERSION=$2

git checkout refs/tags/release-$VERSION
git log --pretty=fuller --date=short refs/tags/release-$PREV_VERSION..HEAD > ChangeLog

autoreconf -i

./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz
make distclean

release_mingw()
{
export HOST=$1
export LABEL=$2

mkdir -p mingw-out

docker build \
--build-arg HOST=$HOST \
--build-arg ARIA2_VERSION=release-$VERSION \
--build-arg ARIA2_REF=refs/tags/release-$VERSION \
-t aria2-mingw-$HOST - < Dockerfile.mingw

docker run --rm -it -v $PWD/mingw-out:/out aria2-mingw-$HOST \
cp /aria2/src/aria2c.exe /out

./mingw-release

rm -rf mingw-out
}

mingw 32bit
release_mingw i686-w64-mingw32 win-32bit

mingw 64bit
release_mingw x86_64-w64-mingw32 win-64bit

android
mkdir -p android-out

docker build \
--build-arg ARIA2_VERSION=release-$VERSION \
-t aria2-android - < Dockerfile.android

docker run --rm -it -v $PWD/android-out:/out aria2-android \
cp /root/build/aria2/src/aria2c /out

./android-release

rm -rf android-out

OSX builds are created separately using makerelease-osx.mk

0.0.1b0

!/bin/sh -e

aria2 - The high speed download utility

Copyright (C) 2012 Tatsuhiro Tsujikawa

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 2 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 General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations
including the two.
You must obey the GNU General Public License in all respects
for all of the code used other than OpenSSL. If you modify
file(s) with this exception, you may extend this exception to your
version of the file(s), but you are not obligated to do so. If you
do not wish to do so, delete this exception statement from your
version. If you delete this exception statement from all source
files in the program, then also delete it here.

test -z "$HOST" && HOST=i686-w64-mingw32
test -z "$BUILD_VER" && BUILD_VER=1
test -z "$LABEL" && LABEL=$HOST

cd to the directory where this script exists.
cd "$(dirname "$0")"
. ./script-helper

get_version

if [ -z "$VERSION" ]; then
echo "No version found"
exit 1
fi

DIST_DIR=aria2-${VERSION}-${LABEL}-build${BUILD_VER}

mkdir "$DIST_DIR"
cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.mingw \
mingw-out/aria2c.exe "$DIST_DIR"
zip -9 -r "$DIST_DIR.zip" "$DIST_DIR"
rm -rf "$DIST_DIR"




!/bin/sh -e

aria2 - The high speed download utility

Copyright (C) 2012 Tatsuhiro Tsujikawa

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 2 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 General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations
including the two.
You must obey the GNU General Public License in all respects
for all of the code used other than OpenSSL. If you modify
file(s) with this exception, you may extend this exception to your
version of the file(s), but you are not obligated to do so. If you
do not wish to do so, delete this exception statement from your
version. If you delete this exception statement from all source
files in the program, then also delete it here.

cd to the directory where this script exists.
cd "$(dirname $0)"
. ./script-helper

get_version

if [ -z "$VERSION" ]; then
echo "No version found"
exit 1
fi

DIST_DIR=aria2-$VERSION-aarch64-linux-android-build1
mkdir "$DIST_DIR"
cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.android \
android-out/aria2c "$DIST_DIR"
zip -9 -r "$DIST_DIR.zip" "$DIST_DIR"
rm -rf "$DIST_DIR"

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.