diff --git a/config/packages.conf b/config/packages.conf index a399b83357963ea95e617e4335c434a9624c550a..0149c68c1c5fa60d393a0ddf1394fbbe9a9bd2fc 100644 --- a/config/packages.conf +++ b/config/packages.conf @@ -282,7 +282,7 @@ clementine-qt5 imagewriter octopi -#octopi-notifier-qt5 will be installed at the end +octopi-notifier ark spectacle okular diff --git a/config/postinstall_packages.conf b/config/postinstall_packages.conf index 925466878616343cb37170682e352d02808a12d6..0246a3ab2a8a8c5ec151418a03319b43a8443271 100644 --- a/config/postinstall_packages.conf +++ b/config/postinstall_packages.conf @@ -3,4 +3,4 @@ # Version: 20151103 #kapudan -octopi-notifier \ No newline at end of file +#octopi-notifier diff --git a/src/iso.py b/src/iso.py index c215507ce72d370a7d982f81b46fff6bc7813d72..4671630aa08c18c867c0b6e6571d2ade4e929822 100755 --- a/src/iso.py +++ b/src/iso.py @@ -79,12 +79,9 @@ class IsoBuilder: # download packages package_dir = os.path.join(self.overlay_packages_dir, "opt/chakra/pkgs") package_dir = os.path.abspath(package_dir) - db_dir = os.path.join(self.overlay_packages_dir, "var/lib/pacman/") - db_dir = os.path.abspath(db_dir) - os.makedirs(package_dir, exist_ok=True) pacman_config = pjoin(self.configdir, "pacman.conf") - command = "pacman -Sywdd --noconfirm --dbpath {} --cachedir {} --config {} {}" + command = "pacman -Sywdd --noconfirm --cachedir {} --config {} {}" # pacman -Sw doesn't check dependencies with installed system, but it will fetch required packages altogether with open(os.path.join(self.configdir, "overlay-packages.conf")) as packages: for line in packages: @@ -93,7 +90,6 @@ class IsoBuilder: continue subprocess.check_call( command.format( - db_dir, package_dir, pacman_config, line