index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-07 | Update copyright years for 2011 | Allan McRae | |
Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2010-03-14 | Bump copyright dates to 2010 | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2009-09-12 | Change the interface for target loading | Xavier Chantry | |
-int alpm_trans_sysupgrade(int enable_downgrade); -int alpm_trans_sync(char *target); -int alpm_trans_add(char *target); -int alpm_trans_remove(char *target); +int alpm_sync_sysupgrade(int enable_downgrade); +int alpm_sync_target(char *target); +int alpm_sync_dbtarget(char *db, char *target); +int alpm_add_target(char *target); +int alpm_remove_target(char *target); * functions renaming * add new sync_dbtarget which allows to specify the db * repo/ syntax handling is moved to frontend ( should implement FS#15141) * group handling is moved to backend ( see http://www.archlinux.org/pipermail/pacman-dev/2009-June/008847.html ) | |||
2009-09-08 | Remove transaction type | Xavier Chantry | |
This basically started with this change : /* Transaction */ struct __pmtrans_t { - pmtranstype_t type; pmtransflag_t flags; pmtransstate_t state; - alpm_list_t *packages; /* list of (pmpkg_t *) */ + alpm_list_t *add; /* list of (pmpkg_t *) */ + alpm_list_t *remove; /* list of (pmpkg_t *) */ And then I have to modify all the code accordingly. | |||
2009-07-01 | Update copyright headers and messages | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2007-12-10 | Update GNU GPL boilerplate and copyright dates | Dan McGee | |
Update the GPL boilerplate to direct people to the GNU website for a copy of the license, as well as bump all of Judd's copyrights to 2007. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2007-11-16 | War on whitespace | Dan McGee | |
Run the kernel's cleanfile script on all of our source files. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2007-01-19 | Preliminary checkin for alpm_list conversion | Aaron Griffin | |
* renamed pmlist_t -> alpm_list_t * made alpm_list_t a public type (alpm_list.h header) * removed additional storage for registered DBs in pacman source * some code cleanup * removed duplicate (pm)list_display functions from pacman source * misc code cleanup | |||
2006-11-20 | * repo-add script - to add entries to a db file directly from package data ↵ | Aaron Griffin | |
(no PKGBUILD) * libalpm api changes - move from a _getinfo(p, WHAT_WE_WANT) scheme to a typesafe _get_what_we_want(p) scheme [not 100% complete yet] * some const correctness changes * removal of PM_* types in alpm.h in favor of the pm*_t types used throughout libalpm | |||
2006-10-20 | A handful of minor changes: | Aaron Griffin | |
* Removed the PMList typedef, in favor of the same naming scheme other structs use 'pmlist_t' * Added a time stamp on debug output, to make it more informational * Moved alpm_db_register to _alpm_db_register, making the public function not take a callback parameter | |||
2006-02-17 | prepend library function names with _alpm (helped with the patch from ↵ | Aurelien Foret | |
VMiklos <vmiklos@frugalware.org>) added log and event callbacks to sync_commit internal transactions | |||
2006-01-02 | patch from VMiklos - use PACKAGE_VERSION instead of PACMAN_VERSION | Judd Vinet | |
2005-04-16 | reworked transaction prototypes | Aurelien Foret | |
2005-03-15 | Initial revision | Judd Vinet | |