Skip to content

Commit 97e24b3

Browse files
committed
release: add ubuntu 16.10 (yakkety)
1 parent 720f5f8 commit 97e24b3

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Release notes:
1414
* 64-bit GHC bindists have been built for Linux systems with
1515
libtinfo6/libncurses6 (such as Fedora 24 and Arch Linux), and `stack setup`
1616
will detect when to use them.
17+
* Added Ubuntu 16.10 (yakkety) Apt repo.
1718

1819
Major changes:
1920

doc/install_and_upgrade.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ problems, see the linked FAQ entries:
108108

109109
2. Add the appropriate source repository (if not sure, run ``lsb_release -a`` to find out your Ubuntu version):
110110

111+
* Ubuntu 16.10 (amd64):
112+
113+
echo 'deb http://download.fpcomplete.com/ubuntu yakkety main'|sudo tee /etc/apt/sources.list.d/fpco.list
114+
111115
* Ubuntu 16.04 (amd64):
112116

113117
echo 'deb http://download.fpcomplete.com/ubuntu xenial main'|sudo tee /etc/apt/sources.list.d/fpco.list

etc/scripts/get-stack.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ do_ubuntu_install() {
120120

121121
if is_64_bit ; then
122122
case "$1" in
123+
16.10)
124+
add_apt_repo 'deb http://download.fpcomplete.com/ubuntu yakkety main'
125+
apt_update_and_install
126+
;;
123127
16.04)
124128
add_apt_repo 'deb http://download.fpcomplete.com/ubuntu xenial main'
125129
apt_update_and_install

etc/scripts/release.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,8 @@ rules global@Global{..} args = do
434434
, ("14.10", "utopic")
435435
, ("15.04", "vivid")
436436
, ("15.10", "wily")
437-
, ("16.04", "xenial") ]
437+
, ("16.04", "xenial")
438+
, ("16.10", "yakkety") ]
438439
debianVersions =
439440
[ ("7", "wheezy")
440441
, ("8", "jessie") ]

etc/scripts/vagrant-distros.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
22
set -xe
3-
"$(dirname "$0")/with-vagrant.sh" debian-7-amd64 "$* upload-ubuntu-12.04 upload-ubuntu-14.04 upload-ubuntu-14.10 upload-ubuntu-15.04 upload-ubuntu-15.10 upload-ubuntu-16.04 upload-debian-7 upload-debian-8"
3+
"$(dirname "$0")/with-vagrant.sh" debian-7-amd64 "$* upload-ubuntu-12.04 upload-ubuntu-14.04 upload-ubuntu-14.10 upload-ubuntu-15.04 upload-ubuntu-15.10 upload-ubuntu-16.04 upload-ubuntu-16.10 upload-debian-7 upload-debian-8"
44
"$(dirname "$0")/with-vagrant.sh" centos-7-x86_64 "$* upload-centos-7 upload-fedora-22 upload-fedora-23"
55
"$(dirname "$0")/with-vagrant.sh" centos-6-x86_64 "$* --binary-variant=gmp4 upload-centos-6"

0 commit comments

Comments
 (0)