mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 02:24:16 +02:00
[aur] --noprepare during dependency checking
This commit is contained in:
@@ -12,7 +12,7 @@ RE_UNKNOWN_GPG_KEY = re.compile(r'\(unknown public key (\w+)\)')
|
||||
def check(pkgdir: str, handler: ProcessHandler) -> dict:
|
||||
res = {}
|
||||
|
||||
cmd = ['makepkg', '-ALcf', '--check', '--noarchive', '--nobuild']
|
||||
cmd = ['makepkg', '-ALcf', '--check', '--noarchive', '--nobuild', '--noprepare']
|
||||
|
||||
if os.path.exists(CUSTOM_MAKEPKG_PATH):
|
||||
handler.watcher.print('Using custom makepkg.conf -> {}'.format(CUSTOM_MAKEPKG_PATH))
|
||||
@@ -35,7 +35,7 @@ def check(pkgdir: str, handler: ProcessHandler) -> dict:
|
||||
|
||||
|
||||
def make(pkgdir: str, handler: ProcessHandler) -> Tuple[bool, str]:
|
||||
cmd = ['makepkg', '-ALcsmf', '--noprepare']
|
||||
cmd = ['makepkg', '-ALcsmf']
|
||||
|
||||
if os.path.exists(CUSTOM_MAKEPKG_PATH):
|
||||
handler.watcher.print('Using custom makepkg.conf -> {}'.format(CUSTOM_MAKEPKG_PATH))
|
||||
|
||||
@@ -112,7 +112,7 @@ class ManageWindow(QWidget):
|
||||
self.input_search.setToolTip(self.i18n['window_manage.input_search.tooltip'])
|
||||
self.input_search.setStyleSheet("""QLineEdit {
|
||||
background-color: white;
|
||||
color: black;
|
||||
color: grey;
|
||||
spacing: 0;
|
||||
height: 30px;
|
||||
font-size: 12px;
|
||||
|
||||
Reference in New Issue
Block a user