XBPS major changes in June 2011.
- A configuration file "xbps-conf.plist" replaces the (un)register target in xbps-repo(8) and (un)set-prop in xbps-bin(8). For now, you can set the repositories and prefered virtual packages. - New package pattern matching code from NetBSD. Supports more ways of matching patterns in packages. - Multiple bugs fixed in virtual packages related matching code. --HG-- rename : LICENSE => COPYING
This commit is contained in:
@ -35,6 +35,10 @@
|
||||
#include <archive_entry.h>
|
||||
|
||||
#include <xbps_api.h>
|
||||
#include "queue.h"
|
||||
#include "strlcpy.h"
|
||||
#include "strlcat.h"
|
||||
#include "fetch.h"
|
||||
|
||||
#define ARCHIVE_READ_BLOCKSIZE 10240
|
||||
|
||||
@ -74,6 +78,26 @@
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* @private
|
||||
* From lib/dewey.c
|
||||
*/
|
||||
int HIDDEN dewey_match(const char *, const char *);
|
||||
|
||||
/**
|
||||
* @private
|
||||
* From lib/regpkgdb_dictionary.c
|
||||
*/
|
||||
int HIDDEN xbps_regpkgdb_dictionary_init(struct xbps_handle *xhp);
|
||||
void HIDDEN xbps_regpkgdb_dictionary_release(void);
|
||||
|
||||
/**
|
||||
* @private
|
||||
* From lib/repository_pool.c
|
||||
*/
|
||||
int HIDDEN xbps_repository_pool_init(void);
|
||||
void HIDDEN xbps_repository_pool_release(void);
|
||||
|
||||
/**
|
||||
* @private
|
||||
* From lib/download.c
|
||||
|
Reference in New Issue
Block a user