From a88ba897c3c17ded5fa67bff3ad8b88c12d15039 Mon Sep 17 00:00:00 2001 From: Athanaseus Javas Ramaila Date: Thu, 18 Apr 2024 13:52:41 +0200 Subject: [PATCH 1/9] Update index.html kern-9 --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 5c6a2bf..8b9a6ac 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@

KERN

-

KERN is a bi-annually released set of radio astronomical software packages. +

KERN is an annually released set of radio astronomical software packages. It should contain most of the standard tools that a radio astronomer needs to work with radio telescope data. The goal of KERN is to save time and prevent frustration in setting up of scientific pipelines and to assist in achieving scientific reproducibility.

@@ -22,11 +22,11 @@

KERN

Quick start

-

To quickly get started using KERN run the following command on a Ubuntu 20.04 system:

+

To quickly get started using KERN run the following command on a Ubuntu 22.04 system:


 $ sudo apt-get install software-properties-common
-$ sudo add-apt-repository -s ppa:kernsuite/kern-8
+$ sudo add-apt-repository -s ppa:kernsuite/kern-9
 $ sudo apt-add-repository multiverse
 $ sudo apt-add-repository restricted
 $ sudo apt-get update
From 59dd49dc4c19fe2873ef690b7f2add6288f9ae07 Mon Sep 17 00:00:00 2001 From: Athanaseus Javas Ramaila Date: Thu, 18 Apr 2024 14:59:56 +0200 Subject: [PATCH 2/9] Update index.html --- installation/index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/installation/index.html b/installation/index.html index 21399c4..9dbf099 100644 --- a/installation/index.html +++ b/installation/index.html @@ -10,18 +10,18 @@

Installation guide


-

KERN-8 - Ubuntu 20.04

-

A new version of KERN is released roughly every 6 months and is based on the latest Ubuntu LTS release. +

KERN-9 - Ubuntu 22.04

+

A new version of KERN is released roughly every year and is based on the latest Ubuntu LTS release. The current - release of KERN is KERN-8 and is based on Ubuntu 20.04 (Focal). To enable the KERN-8 repository on a - Ubuntu 20.04 + release of KERN is KERN-9 and is based on Ubuntu 22.04 (Jammy). To enable the KERN-9 repository on a + Ubuntu 22.04 system run:


 $ sudo apt-get install software-properties-common
-$ sudo add-apt-repository -s ppa:kernsuite/kern-8
+$ sudo add-apt-repository -s ppa:kernsuite/kern-9
 $ sudo apt-add-repository multiverse
 $ sudo apt-add-repository restricted
 $ sudo apt-get update
@@ -44,7 +44,7 @@ 

Docker and singularity

and Singularity images:

-FROM kernsuite/base:8
+FROM kernsuite/base:9
 RUN docker-apt-install python3-casacore
 
@@ -57,7 +57,7 @@

Docker and singularity


 Bootstrap: docker
-From:kernsuite/base:8
+From:kernsuite/base:9
 %post
     docker-apt-install python3-casacore
 
@@ -68,7 +68,7 @@

Docker and singularity

Older releases

- The old releases are KERN-0 for Ubuntu 14.04, KERN-1, KERN-2, KERN-3 for Ubuntu 16.04. KERN-4, KERN-5 and KERN-6 for Ubuntu 18.04. KERN-7 for Ubuntu 20.04. + The old releases are KERN-0 for Ubuntu 14.04, KERN-1, KERN-2, KERN-3 for Ubuntu 16.04. KERN-4, KERN-5 and KERN-6 for Ubuntu 18.04. KERN-7 and KERN-8 for Ubuntu 20.04. These releases have reached end of live and are not supported anymore. You can still use them though, also inside Docker containers. From efc350ef352e3f8a1b332c286227173cb47f1b40 Mon Sep 17 00:00:00 2001 From: Athanaseus Javas Ramaila Date: Thu, 18 Apr 2024 15:25:26 +0200 Subject: [PATCH 3/9] Update update.py --- update.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/update.py b/update.py index 30ba3ce..8914445 100755 --- a/update.py +++ b/update.py @@ -72,6 +72,7 @@ def print_list(source_packages): if __name__ == "__main__": + source_packages_9 = gather_data(version=8, dist="jammy") source_packages_8 = gather_data(version=8, dist="focal") source_packages_7 = gather_data(version=7, dist="focal") source_packages_6 = gather_data(version=6, dist="bionic") @@ -92,7 +93,8 @@ def print_list(source_packages):