aboutsummaryrefslogtreecommitdiff
path: root/pomu/repo
Commit message (Collapse)AuthorAgeFilesLines
* Ensure show works with portageMykyta Holubakha2019-06-091-2/+5
|
* Some more minor fixes and improvementsMykyta Holubakha2019-06-093-3/+4
|
* Fix some pylint errorsMykyta Holubakha2019-06-091-2/+2
|
* cli: argument passing fixesMykyta Holubakha2019-06-091-2/+3
| | | | | | | | sources: fix custom names fixed version string generation and version search ensure import -> change -> commit workflow works
* minor remote fixesMykyta Holubakha2017-11-252-1/+6
|
* remote git repo fixesMykyta Holubakha2017-11-164-15/+17
| | | | | | fixed imports in remote repo sources fixed logic in repository package fetching
* Remote hotfixesMykyta Holubakha2017-08-295-17/+24
|
* Added missing init filesMykyta Holubakha2017-08-281-0/+0
|
* Multiple fixes in:Mykyta Holubakha2017-08-271-1/+28
| | | | | | zugaina searching, remote fetching, iquery command line interface, remotes
* Remote fetchingMykyta Holubakha2017-08-145-3/+254
| | | | | | | | Added classes to fetch packages/trees etc. from remote repositories of all kinds mentioned in overlays.xml: git, mercurial, svn, rsync Added utility functions for git repos and to interact with filesystem repository hierarchy
* Added a RemoteRepo object for remote fetchingMykyta Holubakha2017-08-051-0/+28
| | | | Added utility functions for git data structures
* Implemented package updatesMykyta Holubakha2017-07-291-0/+6
| | | | documented the commit subcommand
* Paid off some technical debtMykyta Holubakha2017-07-261-1/+1
| | | | | | | | | | error fixes, syntax, logic finally converted bugz to iquery fixed extra imports in iquery totally disabled writing in temp files in the url backend, fixed full
* Generify the repo code to allow merging patchesMykyta Holubakha2017-07-221-2/+12
| | | | Rename command: install -> import
* Implemented user changes integrationMykyta Holubakha2017-07-181-9/+16
| | | | minor refactoring
* Further work on patchingMykyta Holubakha2017-07-181-4/+16
| | | | | | | | | | | | fixed some commands with patching started work on integrating user changes generation of patches and commit messages added get_packages() method to Repository allow adding non-existant (in-memory) patches to packages
* Overhauled patching supportMykyta Holubakha2017-07-181-1/+41
| | | | | | | | | | | | | | | | | | | | | | dropped patch package source module added --patch option to the install command added a patch command to patch an existing package integrated patch support into the Package class created a MergedPackage module for operations on packages already in the pomu repo added ways to patch an existing package added a base package source module (template), with base classes for package-specific metadata and the source module per se added a list_add utility function implemented and_, and_then, and or in util.result
* Added __init__.py files to packagesMykyta Holubakha2017-07-071-0/+0
| | | | They are required by setuptools
* Multiple changes and fixes for installationMykyta Holubakha2017-06-301-16/+19
| | | | | | | | | | | | | | make package backend optional fix merge destination makedir properly add files to git index compare package slot with default the right way multiple fixes in writing metadata changed tests to reflect current code and pass
* Fix unit testsMykyta Holubakha2017-06-301-1/+1
|
* Resolve circular importsMykyta Holubakha2017-06-281-1/+1
| | | | | | Convert dispatcher to selectable repos Move suffixes to util.pkg module
* Major updates and refactoringsMykyta Holubakha2017-06-282-26/+54
| | | | | | | | | | | | | | | | | | | | | | added and updated parameter descriptions to most function docstrings cleaned up imports over the whole project converted Package to use file path mappings internally fixed errors in manifest generation fixed handling slots and adding paths to index in merge process converted package removal (by name) to use repository metadata truly integrated the local ebuild package source module separated package-related utilities into a separate pkg module separated portage repo-related utilities into a separate portage module excluded the tests package from installation
* A show command to display installed package metaMykyta Holubakha2017-06-261-12/+15
|
* Integrate metadata with the module interface/repoMykyta Holubakha2017-06-251-0/+23
|
* Store backend name in the metadata dirMykyta Holubakha2017-06-251-0/+2
|
* Implemented package-specific metadataMykyta Holubakha2017-06-241-10/+15
| | | | Started integrating the metadata with pomu APIs
* Implemented manifest writingMykyta Holubakha2017-06-231-2/+13
|
* Initial manifest generation using repoman cliMykyta Holubakha2017-06-221-1/+4
|
* Numerous improvements and fixesMykyta Holubakha2017-06-191-3/+4
| | | | | | | | | | | | | Documented most of the functions and classes. Added an option to fetch a package into a specified directory. Added a merge_into method to the Package class, which would merge it into a directory, and refactored repo::merge_package to use that. Extended the package class to store category, version and slot metadata. Added tests of the portage package source module.
* Repository logic and import fixesMykyta Holubakha2017-06-111-6/+15
|
* Major active repo refactoringMykyta Holubakha2017-06-111-12/+3
| | | | | | | made pomu_active_repo cache its first retval (and unwrap() it immediately) this allows the code to assume it can always get the active repository
* Proper global error handlingMykyta Holubakha2017-06-111-3/+3
|
* cli: added fetch, install, uninstall commandsMykyta Holubakha2017-06-101-2/+21
| | | | pomu repo detection refactoring
* Numerous fixes all over the treeMykyta Holubakha2017-06-091-5/+3
| | | | Added dispatcher and repository package (un)installation tests
* Hook up sources, repo and dispatcherMykyta Holubakha2017-06-081-3/+28
| | | | Implement initial package recording, uninstalling
* Fix multiple issues with packages and repositoriesMykyta Holubakha2017-06-071-3/+4
|
* Add repository and package abstractionsMykyta Holubakha2017-06-061-1/+35
|
* Assure that portage repo initialization tests passMykyta Holubakha2017-06-031-3/+7
|
* Separate active pomu repo detectionMykyta Holubakha2017-06-031-0/+6
|
* Fix nameMykyta Holubakha2017-06-031-3/+3
|
* Fix portage repo initializationMykyta Holubakha2017-06-021-7/+19
|
* Finish repo initializationMykyta Holubakha2017-05-311-4/+5
|
* Renamed pomu.py to cli.pyMykyta Holubakha2017-05-311-1/+1
| | | | fix util import
* RefactoringMykyta Holubakha2017-05-312-0/+98
added a Result type separated presentation from logic moved utility code into separate modules