Qipy is a simple wrapper for qi package manager, written in python. Its main function is to show informations about package, like name, version, installed files, etc. I made it to check installed packages on Dragora.
Qipy has some simple features, like :
- List all installed packages.
- Search recipe.
- Show package information.
- Create a recipe template for particular build method (
mesonbuild,makebuild andcmakebuild). - Check contents of package, it's like
apt-file listandpacman -Fl. - Download source code of package, it's still slow and will be improved later.
- Copy local / installed recipe.
- Count & view recipe.
- Search local package(s).
- Show recent installed packages.
It's easy to use qipy. We just need to run these commands :
-
List all installed packages.
$ qipy list $ qipy l
-
Search package.
$ qipy search <pattern> $ qipy s <pattern>
-
Show package information.
$ qipy info <name of package> $ qipy i <name of package>
-
Create recipe / build template.
$ qipy template make $ qipy t make
-
List contents of a package.
$ qipy content <name of package> $ qipy c <name of package>
-
Download source code of package.
$ qipy source <name of package> $ qipy sc <name of package>
-
Copy local / installed recipe.
$ qipy recipe <name of package> $ qipy r <name of package>
-
Count & view recipe.
$ qipy count $ qipy cn $ qipy view <name of package> $ qipy v <name of package>
-
Search local package(s).
$ qipy local <name of package> $ qipy lc <name of package>
-
Show recent installed packages.
$ qipy recent <number of packages> $ qipy rc <number of packages>