#!/bin/sh # -*- mode: sh; fill-column: 75; tab-width: 8; coding: utf-8-unix -*- if [ "$#" -ne 0 ] ; then ARGS=$* LARGS="" else ARGS="@world" # --changed-deps --deep LARGS="-vb --update" fi LARGS="$LARGS --changed-use --with-bdeps=y --changed-deps-report -k" LARGS="$LARGS --backtrack=30 --ignore-built-slot-operator-deps=y --keep-going" # Skips the packages specified on the command-line that have already been installed. LARGS="$LARGS --noreplace" # dangerous LARGS="$LARGS --exclude baselayout" # gone LARGS="$LARGS --exclude sci-chemistry/PyMca" LARGS="$LARGS --exclude dev-python/PyQt4" LARGS="$LARGS --exclude dev-python/pyqwt" # I wont do this routinely #?LARGS="$LARGS --exclude app-office/libreoffice" #?LARGS="$LARGS --exclude app-office/libreoffice-bin" # /usr/local LARGS="$LARGS --exclude seamonkey" LARGS="$LARGS --exclude firefox" LARGS="$LARGS --exclude thunderbird" LARGS="$LARGS --exclude gentoo-sources" #? LARGS="$LARGS --exclude net-analyzer/openvas*" #LARGS="$LARGS --exclude " #LARGS="$LARGS --exclude sys-libs/zlib" LARGS="$LARGS --exclude dev-util/android-sdk-update-manager" LARGS="$LARGS --exclude dev-util/android-ndk" LARGS="$LARGS --exclude sys-kernel/clipos-kernel" # always problems with icu LARGS="$LARGS --exclude dev-libs/icu" #emerge: there are no ebuilds to satisfy ">=dev-libs/nsgenbind-0.7". LARGS="$LARGS --exclude www-client/netsurf" # emerge: there are no ebuilds to satisfy ">=dev-python/attrs-19.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)]". #LARGS="$LARGS --exclude www-client/qutebrowser" LARGS="$LARGS --exclude dev-ruby/builder:3.1" # required by dev-python/pyqtgraph-0.10.0-r1::python-modules-kit # required by @selected # required by @world (argument) # >=dev-python/PyQt5-5.10.1-r1 -opengl LARGS="$LARGS --exclude dev-python/pyqtgraph" LARGS="$LARGS --exclude net-print/hplip" LARGS="$LARGS --exclude pentoo/pentoo-scanner" #LARGS="$LARGS --exclude net-analyzer/wpscan" #LARGS="$LARGS --exclude dev-ruby/cms_scanner" LARGS="$LARGS --exclude net-wireless/gnuradio" # [python_single_target_python2_7,qt5] LARGS="$LARGS --exclude net-wireless/gr-iio" LARGS="$LARGS --exclude net-wireless/gr-iqbal" LARGS="$LARGS --exclude net-wireless/gr-osmosdr" # [iqbalance] LARGS="$LARGS --exclude pentoo/pentoo-radio" LARGS="$LARGS --exclude gnuradio" # LARGS="$LARGS --exclude " # morons #(dependency required by "dev-ruby/activesupport-4.2.11.1-r1::pentoo[ruby_targets_ruby26,-test]" [ebuild]) #(dependency required by "dev-ruby/activemodel-4.2.11.1::pentoo[ruby_targets_ruby26]" [ebuild]) #(dependency required by "dev-ruby/metasploit-model-2.0.4::pentoo[ruby_targets_ruby26]" [ebuild]) #(dependency required by "net-analyzer/metasploit-4.17.21-r8::pentoo[ruby_targets_ruby25]" [ebuild]) # #(dependency required by "dev-ruby/metasploit-concern-2.0.5::pentoo[ruby_targets_ruby26]" [ebuild]) #(dependency required by "dev-ruby/metasploit-credential-2.0.14::pentoo[ruby_targets_ruby25]" [ebuild]) #(dependency required by "net-analyzer/metasploit-4.17.21-r8::pentoo[ruby_targets_ruby25]" [ebuild]) LARGS="$LARGS --exclude net-analyzer/metasploit" # pentoo-rce #?LARGS="$LARGS --exclude dev-util/redasm --exclude pentoo-rce" #(dependency required by "dev-ml/ocaml-gettext-0.3.7::gentoo" [ebuild]) #(dependency required by "app-emulation/libguestfs-1.38.6::gentoo" [ebuild]) LARGS="$LARGS --exclude dev-ml/ocaml-gettext --exclude app-emulation/libguestfs" # broken #LARGS="$LARGS --exclude net-libs/libtorrent-rasterbar" #LARGS="$LARGS --exclude net-p2p/qbittorrent" # 9.0.1 even though it did work before LARGS="$LARGS --exclude sys-devel/llvm" # 6.1.6 even though app-emulation/virtualbox worked # cc1: error: incompatible gcc/plugin versions # cc1: error: fail to initialize plugin ./scripts/gcc-plugins/randomize_layout_plugin.so LARGS="$LARGS --exclude app-emulation/virtualbox-modules" # Unpacking NVIDIA-Linux-x86_64-440.82.run to /mnt/linuxBack52/mnt/tmp/Pentoo19/portage/x11-drivers/nvidia-drivers-440.82-r3/work #tar: Archive is compressed. Use -J option LARGS="$LARGS --exclude x11-drivers/nvidia-drivers" #(dependency required by "dev-qt/qtx11extras-5.14.2::gentoo" [ebuild]) #(dependency required by "app-emulation/virtualbox-6.1.6::gentoo[-headless,qt5]" [installed]) #(dependency required by "app-emulation/libvirt-6.1.0-r1::gentoo[virtualbox]" [ebuild]) #(dependency required by "app-emulation/qt-virt-manager-9999::testforge" [ebuild]) LARGS="$LARGS --exclude dev-qt/qtx11extras --exclude app-emulation/virtualbox --exclude app-emulation/libvirt --exclude app-emulation/qt-virt-manager" echo INFO: nice python3 emerge $LARGS $ARGS |tee -a world.log nice python3 `which emerge` $LARGS $ARGS >> world.log 2>&1 # grep ' U ' world.log |grep -v =|sed -e 's@^.* \] @@' -e 's@-[0-9].*@@' # cat /var/lib/portage/world>world.elts;grep '^L.*exclude' world.sh|sed -e 's/.*exclude//' -e 's/"$//' -e 's/[*:].*$//' -e 's@/@\\\\/@' |sort -u |while read elt;do [ -z "$elt" ] && continue ; sed -e "/$elt/d" -i world.elts ;done