Compare commits

...

11 commits

Author SHA1 Message Date
Martin Simon bc2ff7c91c fix workflow 2023-04-25 15:57:28 +02:00
Martin Simon b2c4fa2687
Merge pull request #10 from gardouille/v0.12.0.build
v0.12.0 - new upstream release
2023-04-25 15:44:43 +02:00
Gardouille d72bca4e8f
v0.12.0 - new upstream release
Still useful for few people :)

Close #9
2023-04-25 15:40:00 +02:00
Martin Simon 4ea8f924cb
v0.11.0 - new upstream release 2022-10-13 11:47:43 +02:00
Martin Simon c93e37d838
v0.11.0-rc3 - new upstream release 2022-10-10 02:28:36 +02:00
Martin Simon 382d789f72
v0.11.0-rc2 - new upstream release 2022-09-17 20:34:01 +02:00
Martin Simon 762ea1332f
v0.11.0-rc1 - new upstream release 2022-09-11 12:28:45 +02:00
Martin Simon afa8b77953
v0.10.1 - new upstream release 2022-02-21 01:39:35 +01:00
Martin Simon b6643ffaec
v0.10.1-rc1 - new upstream release 2022-02-10 15:39:09 +01:00
Martin Simon 615f962e82
v0.10.0 - new upstream release 2022-01-23 13:06:04 +01:00
Martin Simon f9c3e2277f
v0.10.0-rc4 - new upstream release 2022-01-13 15:32:33 +01:00
5 changed files with 66 additions and 6 deletions

View file

@ -11,7 +11,13 @@ env:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
# Continue running on Ubuntu 20.04 because I can't be bothered to fix
# the whole rename.ul drama.
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=926637
# rename.ul was added back to Debian Testing so it should be back for Ubuntu
# 24.04
# https://manpages.debian.org/testing/util-linux/rename.ul.1.en.html
steps:
- name: Checkout
uses: actions/checkout@v2

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.10.0-rc3 on Debian Buster.
By default this will build alacritty v0.12.0 on Debian Bullseye.
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.10.0-rc3"
VERSION="v0.12.0"
while getopts "v:i:h" opt
do

54
debian/changelog vendored
View file

@ -1,3 +1,57 @@
alacritty (0.12.0) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Thu, 25 Apr 2023 00:00:00 +0000
alacritty (0.11.0-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Thu, 13 Oct 2022 00:00:00 +0000
alacritty (0.11.0-rc3-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Mon, 10 Oct 2022 00:00:00 +0000
alacritty (0.11.0-rc2-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Sun, 17 Sep 2022 00:00:00 +0000
alacritty (0.11.0-rc1-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Sun, 11 Sep 2022 00:00:00 +0000
alacritty (0.10.1-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Mon, 21 Feb 2022 00:00:00 +0000
alacritty (0.10.1-rc1-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Thu, 10 Feb 2022 00:00:00 +0000
alacritty (0.10.0-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Sun, 23 Jan 2022 00:00:00 +0000
alacritty (0.10.0-rc4-1) unstable; urgency=medium
* New upstream release
-- Martin Simon <me@martinsimon.me> Thu, 13 Jan 2022 00:00:00 +0000
alacritty (0.10.0-rc3-1) unstable; urgency=medium
* New upstream release

6
debian/rules vendored
View file

@ -17,9 +17,9 @@ override_dh_auto_install:
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"
install -Dm0644 "extra/completions/_alacritty" "debian/alacritty/usr/share/vendor-completions/_alacritty"
install -Dm0644 "extra/logo/alacritty-term.svg" "debian/alacritty/usr/share/pixmaps/com.alacritty.Alacritty.svg"
install -Dm0644 "extra/linux/Alacritty.desktop" "debian/alacritty/usr/share/applications/com.alacritty.Alacritty.desktop"
sed -i 's/Icon=Alacritty/Icon=com.alacritty.Alacritty/g' "debian/alacritty/usr/share/applications/com.alacritty.Alacritty.desktop"
install -Dm0644 "extra/logo/alacritty-term.svg" "debian/alacritty/usr/share/pixmaps/org.alacritty.Alacritty.svg"
install -Dm0644 "extra/linux/Alacritty.desktop" "debian/alacritty/usr/share/applications/org.alacritty.Alacritty.desktop"
sed -i 's/Icon=Alacritty/Icon=org.alacritty.Alacritty/g' "debian/alacritty/usr/share/applications/org.alacritty.Alacritty.desktop"
override_dh_installexamples:
dh_installexamples "alacritty.yml"