Remove PackagesOnHold from xbps.conf; use xbps-pkgdb -m hold|unhold instead.

To put a package on hold mode:
	$ xbps-pkgdb -m hold foo

To unhold the package:
	$ xbps-pkgdb -m unhold foo

To list packages on hold mode:
	$ xbps-query -H

This also close #12 from github.
This commit is contained in:
Juan RP
2013-08-12 14:46:54 +02:00
parent 9c9d5b58dd
commit 776b94e6bc
11 changed files with 96 additions and 60 deletions

9
NEWS
View File

@@ -1,5 +1,14 @@
xbps-0.26 (???):
* Removed "PackagesOnHold" from xbps.conf. This has been replaced by a new mode
in xbps-pkgdb(8):
$ xbps-pkgdb -m <hold|unhold> <pkgname>
To list packages that are currently on hold mode use xbps-query(8):
$ xbps-query -H
* On terminals with 0 columns, assume 80. Xen's PV guest running Linux and its
hvc console does report 0 columns/rows.