mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-13 02:14:17 +01:00
Remove requirement of uAssets presence to build a package
Related discussion: - https://github.com/cliqz-oss/adblocker/pull/2075#discussion_r678654293
This commit is contained in:
parent
e1222d1643
commit
09db8803c5
2 changed files with 54 additions and 15 deletions
|
@ -4,26 +4,35 @@
|
||||||
|
|
||||||
DES=$1/assets
|
DES=$1/assets
|
||||||
|
|
||||||
printf "*** Packaging assets in $DES... "
|
echo "*** Packaging assets in $DES... "
|
||||||
|
|
||||||
if [ -n "${TRAVIS_TAG}" ]; then
|
|
||||||
pushd .. > /dev/null
|
|
||||||
git clone --depth 1 https://github.com/uBlockOrigin/uAssets.git
|
|
||||||
popd > /dev/null
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -rf $DES
|
rm -rf $DES
|
||||||
cp -R ./assets $DES/
|
cp -R ./assets $DES/
|
||||||
|
|
||||||
mkdir $DES/thirdparties
|
mkdir $DES/thirdparties
|
||||||
cp -R ../uAssets/thirdparties/easylist-downloads.adblockplus.org $DES/thirdparties/
|
|
||||||
cp -R ../uAssets/thirdparties/pgl.yoyo.org $DES/thirdparties/
|
# Use existing uAssets, or git-clone a temporary one
|
||||||
cp -R ../uAssets/thirdparties/publicsuffix.org $DES/thirdparties/
|
if [ -d "../uAssets" ]; then
|
||||||
cp -R ../uAssets/thirdparties/urlhaus-filter $DES/thirdparties/
|
UASSETS=../uAssets
|
||||||
|
else
|
||||||
|
echo "*** ../uAssets not present, git-cloning..."
|
||||||
|
TMPDIR=$(mktemp -d)
|
||||||
|
UASSETS=$TMPDIR/uAssets
|
||||||
|
git clone --depth=1 https://github.com/uBlockOrigin/uAssets.git $UASSETS
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -R $UASSETS/thirdparties/easylist-downloads.adblockplus.org $DES/thirdparties/
|
||||||
|
cp -R $UASSETS/thirdparties/pgl.yoyo.org $DES/thirdparties/
|
||||||
|
cp -R $UASSETS/thirdparties/publicsuffix.org $DES/thirdparties/
|
||||||
|
cp -R $UASSETS/thirdparties/urlhaus-filter $DES/thirdparties/
|
||||||
|
|
||||||
mkdir $DES/ublock
|
mkdir $DES/ublock
|
||||||
cp -R ../uAssets/filters/* $DES/ublock/
|
cp -R $UASSETS/filters/* $DES/ublock/
|
||||||
# Optional filter lists: do not include in package
|
# Optional filter lists: do not include in package
|
||||||
rm $DES/ublock/annoyances.txt
|
rm $DES/ublock/annoyances.txt
|
||||||
|
|
||||||
echo "done."
|
# Remove temporary git-clone uAssets
|
||||||
|
if [ -n "$TMPDIR" ]; then
|
||||||
|
echo "*** Removing temporary $TMPDIR"
|
||||||
|
rm -rf $TMPDIR
|
||||||
|
fi
|
||||||
|
|
|
@ -21,17 +21,47 @@ cp -R src/lib/punycode.js $DES/lib/
|
||||||
cp -R src/lib/publicsuffixlist $DES/lib/
|
cp -R src/lib/publicsuffixlist $DES/lib/
|
||||||
cp -R src/lib/regexanalyzer $DES/lib/
|
cp -R src/lib/regexanalyzer $DES/lib/
|
||||||
|
|
||||||
|
# Use existing uAssets, or git-clone a temporary one
|
||||||
|
if [ -d "../uAssets" ]; then
|
||||||
|
UASSETS=../uAssets
|
||||||
|
else
|
||||||
|
echo "*** ../uAssets not present, git-cloning..."
|
||||||
|
TMPDIR=$(mktemp -d)
|
||||||
|
UASSETS=$TMPDIR/uAssets
|
||||||
|
git clone --depth=1 https://github.com/uBlockOrigin/uAssets.git $UASSETS
|
||||||
|
fi
|
||||||
|
|
||||||
# https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-888332409
|
# https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-888332409
|
||||||
THIRDPARTY=../uAssets/thirdparties/publicsuffix.org
|
THIRDPARTY=$UASSETS/thirdparties/publicsuffix.org
|
||||||
mkdir -p $DES/data
|
mkdir -p $DES/data
|
||||||
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/list/effective_tld_names.dat', 'utf8'))" \
|
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/list/effective_tld_names.dat', 'utf8'))" \
|
||||||
> $DES/data/effective_tld_names.json
|
> $DES/data/effective_tld_names.json
|
||||||
THIRDPARTY=../uAssets/thirdparties/easylist-downloads.adblockplus.org
|
THIRDPARTY=$UASSETS/thirdparties/easylist-downloads.adblockplus.org
|
||||||
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/easylist.txt', 'utf8'))" \
|
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/easylist.txt', 'utf8'))" \
|
||||||
> $DES/data/easylist.json
|
> $DES/data/easylist.json
|
||||||
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/easyprivacy.txt', 'utf8'))" \
|
node -pe "JSON.stringify(fs.readFileSync('$THIRDPARTY/easyprivacy.txt', 'utf8'))" \
|
||||||
> $DES/data/easyprivacy.json
|
> $DES/data/easyprivacy.json
|
||||||
|
|
||||||
|
# Remove temporary git-clone uAssets
|
||||||
|
if [ -n "$TMPDIR" ]; then
|
||||||
|
echo "*** Removing temporary $TMPDIR"
|
||||||
|
rm -rf $TMPDIR
|
||||||
|
fi
|
||||||
|
|
||||||
cp platform/nodejs/*.js $DES/
|
cp platform/nodejs/*.js $DES/
|
||||||
cp platform/nodejs/*.json $DES/
|
cp platform/nodejs/*.json $DES/
|
||||||
cp LICENSE.txt $DES/
|
cp LICENSE.txt $DES/
|
||||||
|
|
||||||
|
if [ "$1" = all ]; then
|
||||||
|
echo "*** uBlock0.nodejs: Creating plain package..."
|
||||||
|
pushd $(dirname $DES/) > /dev/null
|
||||||
|
zip uBlock0.nodejs.zip -qr $(basename $DES/)/*
|
||||||
|
popd > /dev/null
|
||||||
|
elif [ -n "$1" ]; then
|
||||||
|
echo "*** uBlock0.nodejs: Creating versioned package..."
|
||||||
|
pushd $(dirname $DES/) > /dev/null
|
||||||
|
zip uBlock0_"$1".nodejs.zip -qr $(basename $DES/)/*
|
||||||
|
popd > /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "*** uBlock0.nodejs: Package done."
|
||||||
|
|
Loading…
Reference in a new issue