summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/__init__.py8
-rw-r--r--src/backend/pkgadd.py (renamed from src/backend/binpkgsrcinst.py)0
-rw-r--r--src/backend/pkgremove.py (renamed from src/backend/binpkgsrcunst.py)0
-rw-r--r--src/backend/setprofile.py4
-rw-r--r--src/backend/sysclean.py (renamed from src/backend/binpkgsrcautorm.py)2
-rw-r--r--src/backend/sysupgrade.py (renamed from src/backend/binpkgsrcupgd.py)0
6 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/__init__.py b/src/backend/__init__.py
index aedf50b..2f87096 100644
--- a/src/backend/__init__.py
+++ b/src/backend/__init__.py
@@ -1,13 +1,11 @@
-from .binpkgsrcautorm import *
-from .binpkgsrcinst import *
-from .binpkgsrcunst import *
-from .binpkgsrcupgd import *
from .checkenv import *
from .dlbinpkg import *
from .getclr import *
from .getenv import *
from .getfs import *
from .killemerge import *
+from .pkgadd import *
+from .pkgremove import *
from .purgeenv import *
from .recoverdb import *
from .solvedeps import *
@@ -21,4 +19,6 @@ from .syncall import *
from .syncdb import *
from .syncenv import *
from .syncspm import *
+from .sysclean import *
from .sysinfo import *
+from .sysupgrade import *
diff --git a/src/backend/binpkgsrcinst.py b/src/backend/pkgadd.py
index 091502b..091502b 100644
--- a/src/backend/binpkgsrcinst.py
+++ b/src/backend/pkgadd.py
diff --git a/src/backend/binpkgsrcunst.py b/src/backend/pkgremove.py
index b039f96..b039f96 100644
--- a/src/backend/binpkgsrcunst.py
+++ b/src/backend/pkgremove.py
diff --git a/src/backend/setprofile.py b/src/backend/setprofile.py
index 5d2f42d..e4da0aa 100644
--- a/src/backend/setprofile.py
+++ b/src/backend/setprofile.py
@@ -17,7 +17,7 @@ signal.signal(signal.SIGINT, sigint_handler)
def start():
if platform.uname()[4] == 'x86_64':
e_exe = subprocess.Popen(
- ['eselect', 'profile', 'set', 'default/linux/amd64/17.1/hardened'])
+ ['eselect', 'profile', 'set', 'default/linux/amd64/23.0/split-usr/hardened'])
try:
e_exe.wait()
except KeyboardInterrupt:
@@ -30,7 +30,7 @@ def start():
if platform.uname()[4] == 'aarch64':
e_exe = subprocess.Popen(
- ['eselect', 'profile', 'set', 'default/linux/arm64/17.0'])
+ ['eselect', 'profile', 'set', 'default/linux/arm64/23.0/split-usr'])
try:
e_exe.wait()
except KeyboardInterrupt:
diff --git a/src/backend/binpkgsrcautorm.py b/src/backend/sysclean.py
index 1036f66..937c8ec 100644
--- a/src/backend/binpkgsrcautorm.py
+++ b/src/backend/sysclean.py
@@ -45,7 +45,7 @@ def start(gfx_ui=False):
args = ['--quiet', '--depclean']
if sisyphus.checkenv.root() and not gfx_ui:
- print(f"\n{sisyphus.getclr.bright_white}Packages identified as orphaned and no longer needed are slated for{sisyphus.getclr.reset} {sisyphus.getclr.green}'safe'{sisyphus.getclr.reset} {sisyphus.getclr.bright_white}removal.{sisyphus.getclr.reset}\n")
+ print(f"\n{sisyphus.getclr.bright_white}Orphaned and no longer needed packages are slated for{sisyphus.getclr.reset} {sisyphus.getclr.green}'safe'{sisyphus.getclr.reset} {sisyphus.getclr.bright_white}removal.{sisyphus.getclr.reset}\n")
while True:
user_input = input(
f"{sisyphus.getclr.bright_white}Would you like to proceed?{sisyphus.getclr.reset} [{sisyphus.getclr.bright_green}Yes{sisyphus.getclr.reset}/{sisyphus.getclr.bright_red}No{sisyphus.getclr.reset}] ")
diff --git a/src/backend/binpkgsrcupgd.py b/src/backend/sysupgrade.py
index f8b01d2..f8b01d2 100644
--- a/src/backend/binpkgsrcupgd.py
+++ b/src/backend/sysupgrade.py