https://github.com/voxelprismatic/ubuntu-sources
Generates a list of ubuntu sources for /etc/apt/sources.list
https://github.com/voxelprismatic/ubuntu-sources
Last synced: 2 months ago
JSON representation
Generates a list of ubuntu sources for /etc/apt/sources.list
- Host: GitHub
- URL: https://github.com/voxelprismatic/ubuntu-sources
- Owner: VoxelPrismatic
- Created: 2024-03-08T20:27:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-09T03:00:15.000Z (about 1 year ago)
- Last Synced: 2025-04-05T05:15:47.315Z (2 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ubuntu sources
just lists sources so i can use both the LTS and current versions at the same time### files
- `releases.json` - provides release names and LTS status
- `sources.py` - prints the sourcesformatted like below:
```deb
### 23.10 - Mantic Minotaur
deb http://us.archive.ubuntu.com/ubuntu/ mantic main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ mantic main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ mantic main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ mantic main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ mantic main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ mantic main restricted universe multiversedeb http://us.archive.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ mantic-updates main restricted universe multiversedeb http://us.archive.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ mantic-backports main restricted universe multiversedeb http://us.archive.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ mantic-proposed main restricted universe multiversedeb http://us.archive.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ mantic-security main restricted universe multiverse
```