summaryrefslogtreecommitdiff
path: root/src/backend/check.py
blob: ee580a28974dc78abe3ae7bb7c712d066cb9a45d (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python3

import os
import sys
import subprocess
import sisyphus.filesystem

def root():
    if not os.getuid() == 0:
        sys.exit("\nYou need root permissions to do this, exiting!\n")

def portage():
    os.chdir(sisyphus.filesystem.gentooEbuildDir)
    needsPortageSync = int()

    localBranch = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
    localHash = subprocess.check_output(['git', 'rev-parse', '@'])
    remoteHash = subprocess.check_output(['git', 'rev-parse', '@{u}'])

    gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)

    if not localHash.decode().strip() == remoteHash.decode().strip():
        needsPortageSync = int(1)

    gitExec.wait()
    return needsPortageSync

def overlay():
    os.chdir(sisyphus.filesystem.redcoreEbuildDir)
    needsOverlaySync = int()

    localBranch = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
    localHash = subprocess.check_output(['git', 'rev-parse', '@'])
    remoteHash = subprocess.check_output(['git', 'rev-parse', '@{u}'])

    gitExec = subprocess.Popen(['git', 'fetch', '--depth=1', 'origin'] + localBranch.decode().strip().split() + ['--quiet'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)

    if not localHash.decode().strip() == remoteHash.decode().strip():
        needsOverlaySync = int(1)

    gitExec.wait()
    return needsOverlaySync

def update():
    portage()
    overlay()