Age | Commit message (Collapse) | Author |
|
to work as expected.
|
|
require a lot of duplicates - this may or may not be a good idea with regards
to portability, but we'll see
|
|
Giovanni Scafora <linuxmania@gmail.com>
|
|
beginning to match the way other repos are displayed.
* TODO updates.
|
|
|
|
|
|
Giovanni Scafora <linuxmania@gmail.com>
|
|
from one package to another seemlessly (knock on wood). This is implemented
through the use of two skip lists in the trans struct- skip_add and
skip_remove, which replace the former trans->skiplist.
* Removed an unnecessary function parameter, added a necessary one.
* If a package has no backup files, print '(none)' under the heading so it is
more obvious.
* Updated my TODO list.
|
|
Pierre Schmitz <pierre@archlinux.de>
|
|
* Changed that removal message again, hopefully it sounds good now.
* Shortened a usage option description so it would not wrap at 81 chars.
|
|
- the code should be clearer, more organized, commented, and have worthwhile
variable names now
- proactive backup=()s now work. That is, adding a file to a backup array
does what it should on the upgrade to that package, no longer forcing you to
wait a full upgrade cycle for it to take effect
* ldconfig was being run twice on an upgrade operation - fixed
* fixed another pm_fprintf/printf output corruption with the progress bars
* refactored some duplicate code for adjusting 'requiredby' lists
* Added config.rpath to .cvsignore
|
|
Pierre Schmitz <pierre@archlinux.de>
* Added a blurb to 'translation-help' about wrapped messages in po files
|
|
Giovanni Scafora <linuxmania@gmail.com>
|
|
MSG/ERR usage earlier, the trailing '\n's are no longer needed
* Oddly enough - *ADDED* some '\n's to the sync_info errors (last commit) as the
package info output does not use the pm_fprintf facility and thus does not
honor our newline/no-newline setup
|
|
* Also don't stop searching when one package is not found (output and continue)
|
|
language files with latest pot file.
|
|
* Updated pot translation templates
* Located culprit of progress bar moving when unicode characters are used,
added a TODO note about it
* Removed '(target)' string from the sync.c error message, just like we did
from add.c yesterday
* Updated my TODO
|
|
want the actual number of characters, not the number of bytes.
* Added a TODO to take care of later in scriptlet processing.
|
|
|
|
translations, but may want to update at some point)
* More libalpm/conflict.c changes. Optimized more, hopefully won't need too
much more than this.
|
|
Douglas Soares de Andrade <douglas@archlinux-br.org>, 2007.
Hugo Doria <hugodoria@archlinux-br.org>, 2007.
Lincoln de Sousa <lincoln@archlinux-br.org>, 2007.
Leandro Inácio <leandro@archlinux-br.org>, 2007.
|
|
Updated missing newlines in German translation.
|
|
* German Translation from:
Pierre Schmitz <pierre@archlinux.de>
Niclas Pfeifer <macwolf@archlinux.de>
* Italian Translation from:
Giovanni 'voidnull' Scafora <linuxmania@gmail.com>
Alessio 'mOLOk' Bolognino <themolok@gmail.com>
Lorenzo '^zanDarK' Masini <lorenxo86@gmail.com>
|
|
unbelievable amount of strcmp() calls (25 million) due to the list searching.
This has been reimplemented with a set-intersection scheme, due to the fact
that file lists are always ordered. - NEEDS TESTING
* Minor clean up, "globalized" the str_cmp helper to match the alpm comparison
signature, so we can use it elsewhere.
|
|
--cachedir.
|
|
pacman didn't check targets and spit out an error message).
|
|
now uses an strlen call.
* Updates of the *.pot files.
|
|
|
|
|
|
* Removed usage of 'realpath'. From the manpage:
"Avoid using this function. It is broken by design"
|
|
used instead
* Allow -T/--deptest to work without root privileges
|
|
* Removed the handle->needles param. It's not needed not that alpm_list_t is
public
|
|
testpkg <package file>, returns 0 on success, 1 on failure
failure will also output error messages to stdout
|
|
* Questions no longer start with "error:"
* downloaded size is output as a float now
|
|
* Update .cvsignore files a bit.
|
|
already done (alpm_pkg_vercmp). I dropped this change, making versioncmp "private" again. (alpm_versioncmp -> _alpm_versioncmp, hidden symbol)
* Make alpm_get_upgrades use the same version check that -Su and -S use.
|
|
|
|
* Moved some stderr output to stdout
* Remove "RETRIEVE_LOCAL" trans event as libdownload handles local files
|
|
have issues with crazy speeds being displayed.
* Minor string updates to remove unnecessary 1-off translations.
|
|
|
|
* Alphabetized options in pacman usage.
|
|
|
|
* Fix -Qm segfault
* Minor query cleanup
|
|
|
|
'it' and 'pt_BR'.
|
|
* Makefile targets to rebuild po files now work - use 'make update-po' in
the po directories.
* Added two new translation templates as requested on the ML- 'it' and
'pt_BR'.
This commit might be a bit big for the mailing list to like on the commit
message. :)
|
|
* Change libtool default to makepkg2 behavior.
* Other small changes.
|
|
* change to Mb and Gb for both total size and transfer rate if needed
* round up to 1 second for downloads that were between 1s and 0.5s
This function needs some serious looking at, as it's probably not 64bit safe (thus the "wrong calculation" problem on the list).
|
|
|
|
packages to be upgraded in a -Su operation. Much of the code is duplicated from
sync.c.
TODO: move the implementation to upgrades.c, and reimplement the sync_sysupgrade
function in terms of this:
trans->packages = alpm_get_upgrades();
|