v0.10.0-rc1 - new upstream release

This commit is contained in:
Martin Simon 2021-12-25 21:04:24 +01:00
parent a142152828
commit c6abf12eea
5 changed files with 17 additions and 4 deletions

View File

@ -9,7 +9,7 @@ If you have [Docker](https://www.docker.com/) installed locally, just run the fo
```bash
user@hostname$ ./build.sh
```
By default this will build alacritty v0.9.0 on Debian Buster.
By default this will build alacritty v0.10.0-rc1 on Debian Buster.
If you want to customize the build at runtime, use the following:

View File

@ -4,7 +4,7 @@ set -eu
IMAGE="debian:bullseye-slim"
TARGET="$(dirname "$0" | xargs realpath)"
VERSION="v0.9.0"
VERSION="v0.10.0-rc1"
while getopts "v:i:h" opt
do

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
alacritty (0.10.0-rc1-1) unstable; urgency=medium
* New upstream release
* Install `alacritty-msg` man page
-- Martin Simon <me@martinsimon.me> Tue, 03 Aug 2021 00:00:00 +0000
alacritty (0.9.0-2) unstable; urgency=medium
* Bullseye is now stable

5
debian/rules vendored
View File

@ -10,8 +10,9 @@ override_dh_auto_build:
cargo build --release
override_dh_auto_install:
mkdir -p debian/alacritty/usr/share/man/man1/
help2man "target/release/alacritty" | gzip > "debian/alacritty/usr/share/man/man1/alacritty.1.gz"
mkdir -p debian/alacritty/usr/share/man/man1
gzip -c "extra/alacritty.man" | tee "debian/alacritty/usr/share/man/man1/alacritty.1.gz" > /dev/null
gzip -c "extra/alacritty-msg.man" | tee "debian/alacritty/usr/share/man/man1/alacritty-msg.1.gz" > /dev/null
install -Dm04755 "target/release/alacritty" "debian/alacritty/usr/bin/alacritty"
install -Dm0644 "extra/completions/alacritty.bash" "debian/alacritty/usr/share/bash-completion/completions/alacritty"
install -Dm0644 "extra/completions/alacritty.fish" "debian/alacritty/usr/share/fish/completions/alacritty.fish"

View File

@ -12,6 +12,11 @@ export DEBIAN_FRONTEND DEB_BUILD_OPTIONS
dependencies() {
apt update && apt install -y devscripts equivs git
if [ "$OS_VERSION" = 11 ]; then
apt install -y curl
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. ~/.cargo/env
fi
}
get_sources() {