From e4f9b2e7362d9502cd95ffed54232a210822918b Mon Sep 17 00:00:00 2001 From: Raymond Li Date: Tue, 28 Dec 2021 21:28:23 -0500 Subject: [PATCH] Add Artix --- data.json | 7 +++++++ example.in | 1 + projects/artix.py | 9 +++++++++ 3 files changed, 17 insertions(+) create mode 100644 projects/artix.py diff --git a/data.json b/data.json index 8eef00f..27b7fac 100644 --- a/data.json +++ b/data.json @@ -27,6 +27,13 @@ "upstream": "http://arch.mirror.constant.com/", "file": "lastupdate" }, + "Artix": { + "out_of_sync_since": null, + "out_of_sync_interval": 86400, + "csc": "artixlinux/", + "upstream": "https://mirror1.artixlinux.org/repos/", + "file": "lastupdate" + }, "CentOS": { "out_of_sync_since": null, "out_of_sync_interval": 86400, diff --git a/example.in b/example.in index f376356..79160d4 100644 --- a/example.in +++ b/example.in @@ -2,6 +2,7 @@ AlmaLinux Alpine Apache Arch +Artix CentOS Ceph CPAN diff --git a/projects/artix.py b/projects/artix.py new file mode 100644 index 0000000..c95e6cd --- /dev/null +++ b/projects/artix.py @@ -0,0 +1,9 @@ +""" +Contains Artix class +""" + +from project import Project + + +class Artix(Project): + """Artix class"""