Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
v0.10.0-rc1 - new upstream release
Browse files Browse the repository at this point in the history
  • Loading branch information
barnumbirr committed Dec 25, 2021
1 parent a142152 commit c6abf12
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
alacritty (0.10.0-rc1-1) unstable; urgency=medium

* New upstream release
* Install `alacritty-msg` man page

-- Martin Simon <[email protected]> Tue, 03 Aug 2021 00:00:00 +0000

alacritty (0.9.0-2) unstable; urgency=medium

* Bullseye is now stable
Expand Down
5 changes: 3 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit c6abf12

Please sign in to comment.