mrmp/distribution.py
Marc Beninca 0aec6573f8 path
2023-01-28 21:19:16 +01:00

23 lines
629 B
Python

import os
ARCHIVE = '.tar.xz'
DISTRIBUTION = 'distrib'
class Distribution:
def __init__(self, architecture):
self.architecture = architecture
self.path = os.path.join(DISTRIBUTION, self.architecture.name)
self.load()
def load(self):
files = self.architecture.repository.get_files(self.path)
self.archives = [f for f in files if f.endswith(ARCHIVE)]
self.archive = self.archives[-1]
def __str__(self):
lines = [
f'Architecture: {self.architecture.name}',
f' Path: {self.path}',
]
return os.linesep.join(lines)