[arch] feature -> AUR: rebuild-detector integration

This commit is contained in:
Vinicius Moreira
2021-01-14 11:29:17 -03:00
parent f25f5daaad
commit 0680a3118d
18 changed files with 169 additions and 49 deletions

View File

@@ -1,6 +1,6 @@
from abc import ABC, abstractmethod
from enum import Enum
from typing import List
from typing import List, Optional
from bauh.api.constants import CACHE_PATH
@@ -223,6 +223,12 @@ class SoftwarePackage(ABC):
"""
return self.name
def get_update_tip(self) -> Optional[str]:
"""
custom 'version' update tooltip
"""
return
@abstractmethod
def supports_backup(self) -> bool:
pass