mirror of
https://github.com/zhigang1992/yarn.git
synced 2026-01-12 22:53:44 +08:00
**Summary** Fixes #3758. Makes the top-level folder in the tar archives have a name like `yarn-vX.Y.Z` instead of `dist` using the `--transform` and `-s` options in `tar` (they are different in GNU and BSD `tar`). **Test plan** Run `yarn build-dist` and then `tar -ztvf artifacts/yarn-v1.0.0.tar.gz`. Make sure the output lists all the files under `yarn-v1.0.0` directory.
75 lines
2.8 KiB
Bash
Executable File
75 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Ensure all the tools we need are available
|
|
ensureAvailable() {
|
|
command -v "$1" >/dev/null 2>&1 || (echo "You need to install $1" && exit 2)
|
|
}
|
|
ensureAvailable dpkg-deb
|
|
ensureAvailable fpm
|
|
ensureAvailable fakeroot
|
|
ensureAvailable lintian
|
|
ensureAvailable rpmbuild
|
|
|
|
PACKAGE_TMPDIR=tmp/debian_pkg
|
|
VERSION=`./artifacts/yarn-legacy-* --version`
|
|
OUTPUT_DIR=artifacts
|
|
TARBALL_NAME=$OUTPUT_DIR/yarn-v$VERSION.tar.gz
|
|
DEB_PACKAGE_NAME=yarn_$VERSION'_all.deb'
|
|
|
|
if [ ! -e $TARBALL_NAME ]; then
|
|
echo "Hey! Listen! You need to run build-dist.sh first."
|
|
exit 1
|
|
fi;
|
|
|
|
mkdir -p $OUTPUT_DIR
|
|
# Remove old packages
|
|
rm -f $OUTPUT_DIR/*.deb $OUTPUT_DIR/*.rpm
|
|
|
|
# Create temporary directory to start building up the package
|
|
rm -rf $PACKAGE_TMPDIR
|
|
mkdir -p $PACKAGE_TMPDIR/
|
|
umask 0022 # Ensure permissions are correct (0755 for dirs, 0644 for files)
|
|
PACKAGE_TMPDIR_ABSOLUTE=$(readlink -f $PACKAGE_TMPDIR)
|
|
|
|
# Create Linux package structure
|
|
mkdir -p $PACKAGE_TMPDIR/usr/share/yarn/
|
|
mkdir -p $PACKAGE_TMPDIR/usr/share/doc/yarn/
|
|
tar zxf $TARBALL_NAME -C $PACKAGE_TMPDIR/usr/share/yarn/ --strip 1
|
|
cp resources/debian/copyright $PACKAGE_TMPDIR/usr/share/doc/yarn/copyright
|
|
|
|
# The Yarn executable expects to be in the same directory as the libraries, so
|
|
# we can't just copy it directly to /usr/bin. Symlink them instead.
|
|
mkdir -p $PACKAGE_TMPDIR/usr/bin/
|
|
ln -s ../share/yarn/bin/yarn $PACKAGE_TMPDIR/usr/bin/yarn
|
|
# Alias as "yarnpkg" too.
|
|
ln -s ../share/yarn/bin/yarn $PACKAGE_TMPDIR/usr/bin/yarnpkg
|
|
|
|
# Common FPM parameters for all packages we'll build using FPM
|
|
FPM="fpm --input-type dir --chdir $PACKAGE_TMPDIR --name yarn --version $VERSION "`
|
|
`"--vendor 'Yarn Contributors <yarn@dan.cx>' --maintainer 'Yarn Contributors <yarn@dan.cx>' "`
|
|
`"--url https://yarnpkg.com/ --license BSD --description '$(cat resources/debian/description)'"
|
|
|
|
##### Build RPM (CentOS, Fedora) package
|
|
./scripts/update-dist-manifest.js $PACKAGE_TMPDIR_ABSOLUTE/usr/share/yarn/package.json rpm
|
|
eval "$FPM --output-type rpm --architecture noarch --depends nodejs --category 'Development/Languages' ."
|
|
mv *.rpm $OUTPUT_DIR
|
|
|
|
##### Build DEB (Debian, Ubuntu) package
|
|
./scripts/update-dist-manifest.js $PACKAGE_TMPDIR_ABSOLUTE/usr/share/yarn/package.json deb
|
|
mkdir -p $PACKAGE_TMPDIR/DEBIAN
|
|
mkdir -p $PACKAGE_TMPDIR/usr/share/lintian/overrides/
|
|
cp resources/debian/lintian-overrides $PACKAGE_TMPDIR/usr/share/lintian/overrides/yarn
|
|
|
|
# Replace variables in Debian package control file
|
|
INSTALLED_SIZE=`du -sk $PACKAGE_TMPDIR | cut -f 1`
|
|
sed -e "s/\$VERSION/$VERSION/;s/\$INSTALLED_SIZE/$INSTALLED_SIZE/" < resources/debian/control.in > $PACKAGE_TMPDIR/DEBIAN/control
|
|
fakeroot dpkg-deb -b $PACKAGE_TMPDIR $DEB_PACKAGE_NAME
|
|
mv $DEB_PACKAGE_NAME $OUTPUT_DIR
|
|
|
|
rm -rf $PACKAGE_TMPDIR
|
|
|
|
# Lint the Debian package to ensure we're not doing something silly
|
|
lintian $OUTPUT_DIR/$DEB_PACKAGE_NAME
|