* Unified description of arch variable. Recommend using single quotes in

the array, e.g. arch=('i686').
* Updated my TODO.
* Changed the email address in rankmirrors script.
This commit is contained in:
Dan McGee 2007-02-12 01:08:35 +00:00
parent 434d93ccc7
commit 67294287e3
3 changed files with 8 additions and 3 deletions

View file

@ -62,6 +62,11 @@ by other distributions which may want to change the defaults. Also, review what
needs to be in config.h and what does not. There may be excess #depends which needs to be in config.h and what does not. There may be excess #depends which
are hard coded into the sources. (from TODO.autoconf) are hard coded into the sources. (from TODO.autoconf)
Profile the code. Find the functions that are being called a lot, and see what
can be done about it. Find out if all these calls are necessary (e.g. excessive
alpm_list_count calls), and maybe think about changing data structures to speed
operations up (e.g. a 'count' field).
Other ideas: Other ideas:
============ ============
@ -69,7 +74,7 @@ unsigned int vs. unsigned- determine a standard and stick with it
Possibly split utilities/extras from pacman package Possibly split utilities/extras from pacman package
Rewrite gensync/updatesync, and add a 'repo-remove' script Rewrite gensync/updatesync
FS #4185 - move where message is logged, perhaps? FS #4185 - move where message is logged, perhaps?

View file

@ -100,7 +100,7 @@ one could install all KDE packages by installing the 'kde' group.
.TP .TP
.B arch \fI(array)\fP .B arch \fI(array)\fP
Defines on which architectures the given package is available. (e.g. Defines on which architectures the given package is available. (e.g.
\fBarch=("i686" "x86_64")\fP) \fBarch=('i686' 'x86_64')\fP)
.TP .TP
.B backup \fI(array)\fP .B backup \fI(array)\fP

View file

@ -3,7 +3,7 @@
# rankmirrors : read a list of mirrors from a file and rank them by speed # rankmirrors : read a list of mirrors from a file and rank them by speed
# #
# Original Idea copyright (c) 2006 R.G. <chesercat> # Original Idea copyright (c) 2006 R.G. <chesercat>
# Modified 2006 by Dan McGee <dpmcgee@gmail.com> # Modified 2006 by Dan McGee <dan@archlinux.org>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by