summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-19oops, forgot the importv4.2209.1V3n3RiX
2022-09-19we want realtime output in these, so bring back io.TextIOWrapperV3n3RiX
2022-09-18silence some partsV3n3RiX
2022-09-17only use pipes when absolutely neededV3n3RiX
2022-09-17get rid of io.TextIOWrapperV3n3RiX
2022-09-17fix Popen.communicate callsV3n3RiX
2022-09-17move subprocess.Popen.communicate at the end of the data streamV3n3RiX
2022-09-17reorder imports alphabeticallyV3n3RiX
2022-09-17rearrange the backendV3n3RiX
2022-09-16replace subprocess.Popen.wait with subprocess.Popen.communicate everywhere ↵V3n3RiX
we use pipes to avoid deadlocks
2022-09-16bugfix :V3n3RiX
* subprocess.Popen child processes can "sometimes" generate a very large output, causing a deadlock (**cough** dependency solver **cough**) * use subprocess.Popen.communicate instead of subprocess.Popen.wait to avoid such issues * see : https://docs.python.org/3/library/subprocess.html#subprocess.Popen.wait
2022-08-09backend : split check.branch() functionV3n3RiX
2022-08-09layout tweaksV3n3RiX
2022-07-14sisyphus-gui : rework window positioning, fix implicit float->int conversion ↵V3n3RiX
assumption which is deprecated in python3.10
2021-08-21sisyphus-gui : shave off some LoCV3n3RiX
2021-07-10sisyphus backend : arm64 specific bitsv4.2107.0V3n3RiX
2021-06-08backend : leave the package cache alone while switching branchesV3n3RiX
2021-04-05ui : maintain the aspect ratio, but make sure we fit the window in low rez ↵V3n3RiX
displays
2021-03-06merge similar modules togetherv4.2103V3n3RiX
2021-03-06backend:V3n3RiX
* drop some checks we had in place due to expensive metadata regen * less time checking -> more time working -> faster sisyphus
2021-03-06backend :V3n3RiX
* we now ship updated metadata in our ebuild tree * we fetch it via normal update/sync operation * local regen/update is no longer required * this will improve update/sync operations considerably
2021-02-15backend : enable bdeps by default in solvedeps && install && ebuildinstall ↵V3n3RiX
modules so we get everything in one go
2021-02-08backend : we already have package category in the calculated dependency ↵v4.2102.0V3n3RiX
list, so use it and don't waste time extracting it from the tarbals
2021-02-06order imports, minor fix in check moduleV3n3RiX
2021-02-02minor changesV3n3RiX
2021-02-02make this code more prettyV3n3RiX
2021-02-02Revert "cleanup some code"V3n3RiX
This reverts commit e66109a13d8d3a6393e5c3255239c9ec2971d07c.
2021-02-02cleanup some codeV3n3RiX
2021-02-02remove some redundant code -> faster sync speedsV3n3RiX
2021-02-02* better explain some used termsV3n3RiX
* update the help menu and CLI documentation * remove animations from setjobs module (it takes less than a second, so it's pointless) * make some error messages less cryptic && offer help to understand them * don't kill the graphical interface right away if there is a missmatch, display the error, offer help && and then die in 10 seconds
2021-01-31backend : refuse to run if there is a missmatch between the local branch and ↵V3n3RiX
the binary repository
2021-01-31backend : reuse binhost module in csvfiles module, one less portage callV3n3RiX
2021-01-31Revert "backend : reuse binhost module in csvfiles module, one less portage ↵V3n3RiX
call" This reverts commit e4f2e722b2740d16ddc2ffa9b184287a7850b203.
2021-01-31backend : reuse binhost module in csvfiles module, one less portage callV3n3RiX
2021-01-30don't start from 0, but from 1 insteadv4.2101.1V3n3RiX
2021-01-30backend : show how many binaries out of how many we downloaded so farV3n3RiX
2021-01-30fix typoV3n3RiX
2021-01-30ui : move package operations into the backendV3n3RiX
2021-01-29ui : convert qtextedit to qplaintexteditV3n3RiX
2021-01-25adjust some widget sizes to be uniform across the boardV3n3RiX
2021-01-24update the copyrightV3n3RiX
2021-01-24morph some qpushbutton into qtoolbutton, so we have nice labelsV3n3RiX
2021-01-24don't silently fail if a source package requested without the --ebuild ↵V3n3RiX
option needs a keyword, mask, REQUIRED_USE or USE change
2021-01-24these are too bigV3n3RiX
2021-01-23with flat buttons, let's increase the icon size a bitv4.2101.0V3n3RiX
2021-01-23modernise the gui interfaceV3n3RiX
2021-01-10minor tweaks to search filters && do not suggest --ebuild option when we ↵V3n3RiX
have a match
2021-01-09no more dash dashV3n3RiX
2021-01-09* use .join rather than str to convert lists to stringsV3n3RiX
* fix output message when multiple source packages are requested * minor UI tweaks
2020-12-31do not use SMT coresV3n3RiX