From 513bf63fc44116d48846c5e8108218f26126cf13 Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 4 Oct 2021 01:13:06 -0700 Subject: [PATCH] added parabola --- README.md | 4 +++- data.json | 7 +++++++ projects/parabola.py | 8 ++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 projects/parabola.py diff --git a/README.md b/README.md index e8e563e..c44288f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ linuxmint: no public repo linuxmint-packages pool: http://rsync-packages.linuxmint.com/pool/ macPorts: only distfiles has public repo, no timestamp, too large to loop through NetBSD: http://ftp.netbsd.org/pub/NetBSD/ has public repo, no timestamp, web directory hard to loop through, no mirror tracker -nongnu: http://download.savannah.nongnu.org/releases/ https://savannah.gnu.org/maintenance/Mirmon/ http://download.savannah.gnu.org/mirmon/savannah/ +opensuse: http://download.opensuse.org/ has public repo, a possible timestamp called latest in history, our mirror doesn't have this file tho, no mirror tracker scientific: https://scientificlinux.org/downloads/sl-mirrors/ (CSC not listed) slackware: https://mirrors.slackware.com/mirrorlist/ https://mirrors.slackware.com/slackware/ ubuntu-ports: http://ports.ubuntu.com/ubuntu-ports/ @@ -44,5 +44,7 @@ manjaro mxlinux mxlinux-iso: this one seems out of sync on the official tracker for 134 days, which is weird mysql: http://mirrors.sunsite.dk/mysql/ +nongnu: http://download.savannah.nongnu.org/releases/ https://savannah.gnu.org/maintenance/Mirmon/ http://download.savannah.gnu.org/mirmon/savannah/ +parabola: https://repo.parabola.nu/ https://www.parabola.nu/mirrors/status/ trisquel: https://trisquel.info/mirmon/index.html out of date website \ No newline at end of file diff --git a/data.json b/data.json index 1fab5b8..08c36e0 100644 --- a/data.json +++ b/data.json @@ -233,5 +233,12 @@ "csc": "nongnu/", "upstream": "http://download-mirror.savannah.gnu.org/releases/", "file": "00_TIME.txt" + }, + "parabola": { + "out_of_sync_since": null, + "out_of_sync_interval": 86400, + "csc": "parabola/", + "upstream": "https://repo.parabola.nu/", + "file": "lastsync" } } \ No newline at end of file diff --git a/projects/parabola.py b/projects/parabola.py new file mode 100644 index 0000000..46afaf5 --- /dev/null +++ b/projects/parabola.py @@ -0,0 +1,8 @@ +""" +Contains parabola class +""" + +from project import Project + +class parabola(Project): + """parabola class""" \ No newline at end of file