Add: Start govel build packages

This commit is contained in:
L0m1g 2025-05-03 18:33:53 +02:00
parent 865ec5def5
commit c26fcdc1db
18 changed files with 37 additions and 26 deletions

View file

@ -7,7 +7,6 @@
# Libre comme lair, stable comme un menhir, et salé comme le beurre.
#
from abc import ABC, abstractmethod

View file

@ -11,7 +11,6 @@ import json
from pathlib import Path
import yaml
from erminig.controllers.evezh.parsers.github import GitHubSource
from erminig.controllers.evezh.parsers.http import HttpSource
from erminig.controllers.evezh.parsers.sourceforge import SourceForgeRSS

View file

@ -9,9 +9,9 @@
import re
import requests
from erminig.config import Config
from erminig.core.config import Config
from erminig.controllers.evezh.abstract import UpstreamSource
from erminig.system.retry import retry_on_failure
from erminig.core.retry import retry_on_failure
class GitHubSource(UpstreamSource):

View file

@ -10,7 +10,7 @@
import re
import requests
from erminig.controllers.evezh.abstract import UpstreamSource
from erminig.system.retry import retry_on_failure
from erminig.core.retry import retry_on_failure
class HttpSource(UpstreamSource):

View file

@ -11,7 +11,7 @@ import re
import requests
import xml.etree.ElementTree as ET
from erminig.controllers.evezh.abstract import UpstreamSource
from erminig.system.retry import retry_on_failure
from erminig.core.retry import retry_on_failure
class SourceForgeRSS(UpstreamSource):