forked from alexwh/dotbot-yay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparu.py
35 lines (29 loc) · 1.23 KB
/
paru.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import os
import subprocess
import dotbot
class Paru(dotbot.Plugin):
def can_handle(self, directive):
return directive in ['pacman', 'paru']
def handle(self, directive, data):
if not self.can_handle(directive):
self._log.error('dotbot-paru cannot handle directive {}'.format(directive))
return False
if self._bootstrap() != 0:
self._log.error('Paru is not installed on your system, and bootstrapping failed')
return False
return self._install(data)
def _install(self, packages):
package_list = ' '.join(packages)
cmd = 'paru --needed --noconfirm --nonewsonupgrade -Syu -- {}'.format(package_list)
self._log.lowinfo('Installing {}'.format(package_list))
result = subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, shell=True)
if result.returncode == 0:
self._log.info('All packages installed successfully')
else:
self._log.error('Some packages failed to install')
return result.returncode == 0
def _bootstrap(self):
dir_path = os.path.dirname(os.path.realpath(__file__))
cmd = '{}/bootstrap'.format(dir_path)
return subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, shell=True).returncode