There's xbps-repo now to handle repository commands.

--HG--
extra : convert_revision : 566ebb54d45531af9077ba5dc776d3a1c3fab207
This commit is contained in:
Juan RP 2009-02-05 14:51:32 +01:00
parent 7740958643
commit 001de5eb1a

View file

@ -78,7 +78,7 @@ alternate location):
After this you can add your own local repository with binary packages:
$ xbps-bin repo-add /path/to/dir
$ xbps-repo add /path/to/dir
Added repository at /path/to/dir (1.0) with 6 packages.
$
@ -86,7 +86,7 @@ Once it's registered, you can start searching/installing/removing
binary packages. You can add multiple repositories, the order for searching
is the same than they were added; check it with:
$ xbps-bin repo-list
$ xbps-repo list
/storage/xbps/binpkgs
/path/to/dir
$
@ -95,15 +95,15 @@ The first repository that has the metadata for a package wins, if not found
it will search in all them until it's found. A repository can also be
unregistered from the pool:
$ xbps-bin repo-rm /path/to/dir
$ xbps-repo remove /path/to/dir
To show information about available packages in the repository pool:
$ xbps-bin show package
$ xbps-repo show package
To search for binary packages by specifying a string:
$ xbps-bin search mypkg
$ xbps-repo search mypkg
------------------------------------------------------------------------------
Juan Romero Pardines <xtraeme@gmail.com>