summaryrefslogtreecommitdiffstats
path: root/scripts
AgeCommit message (Collapse)AuthorFilesLines
2007-02-24else if --> elif (thanks to yankees26 for finding this)Aaron Griffin1-1/+1
2007-02-24Syntax errorAaron Griffin1-1/+1
2007-02-23Implementing feature request: <http://bugs.archlinux.org/task/4706>Dan McGee1-15/+19
* Added these three possible options (or !options, more likely), to the PKGBUILD possibilities: - ccache - distcc - makeflags * Removed the --noccache and -j flags from makepkg as their functionality is better used by adding the above options to a PKGBUILD- keep the functionality where it is needed. Testing would be appreciated, I didn't do much of that yet.
2007-02-23* Prepend all lists with _ for consistencyAaron Griffin1-15/+16
* Fixed IFS. It seems there's no easy way to get a newline IFS without setting it like so: IFS=" " #ewww gross
2007-02-22Big commit here, I'll try to cover all the bases.Dan McGee1-1/+5
* Updated all of the language files, as the POT file was updated. NOTE FOR TRANSLATORS, try to base your next contribution off of these, notice how some msgids and messages have been wrapped to the next line- it makes it easier to read anyway. * More Makefile.am/configure.ac updates. 'make dist' and 'make distclean' now work properly, with only one caveat- the automatic testing in distclean doesn't do so hot as it is compiled with a default configure, which includes the fakeroot-proof code (which does not cooperate with pactest). * Added a Makefile.am for the pactest directory.
2007-02-22* Rewrote pactest with an OptionParser so we can have helpful help text, andDan McGee1-10/+14
bumped the version to 0.4. Still a work in progress. * Changed some linewraps in rankmirrors to keep everything under 80 chars.
2007-02-22* A lot of Makefile.am updates to try to get 'make dist' and 'make distcheck'Dan McGee1-10/+14
to work as expected.
2007-02-14While trying to change the number of missing deps output by makepkg, I noticedAaron Griffin1-37/+44
some needless complication in a few of these functions (checkdeps required stderr output due to the way it was called/used) so that's all cleaned up now. Also, makepkg no longer outputs a single dep when they are missing, it lists all at once, including makedeps
2007-02-13* unset LC_ALL, LANG after sourcing /etc/profile.d/*Jürgen Hötzel1-4/+4
2007-02-12* Added long options (missing in patch)Aaron Griffin1-12/+15
* converted "sudosync" to "usesudo" to match makepkg * Removed nostrip, as it was removed from makepkg as well
2007-02-12Added changes from Daniel YC Lin via bug #3266Aaron Griffin1-6/+16
- support for the 'BCemno' makepkg options
2007-02-12Rewrote updatesync in terms of repo-add and repo-removeAaron Griffin2-165/+45
2007-02-12better error messageAaron Griffin1-1/+1
2007-02-12Updated gensync to use repo-addAaron Griffin1-151/+52
2007-02-12* Unified description of arch variable. Recommend using single quotes inDan McGee1-1/+1
the array, e.g. arch=('i686'). * Updated my TODO. * Changed the email address in rankmirrors script.
2007-02-11* Implemented FS #5641 as suggested in Aaron's comment- '-S' option now meansDan McGee1-40/+43
'--usesudo', and all install/dep/remove operations now honor it. * Fixed my stupid typo. depricated -> deprecated :)
2007-02-11Forgot to update the Makefile with the new script, adding it.Dan McGee1-0/+1
2007-02-11Adding repo-remove script, allows for a package to be removed from a repo.Dan McGee1-0/+136
More or less a reverse 'repo-add'.
2007-02-09* Fix #2982 - use -Rs to remove depsAaron Griffin1-2/+2
* "pacman3" seems to have snuck in there somehow, fixed that
2007-02-08* Nice overhaul of manpages. It is at least a start.Dan McGee1-1/+1
* Alphabetized options in pacman usage.
2007-02-06* Makepkg updates, and small bugfix on man page compression.Dan McGee1-1/+9
* Change libtool default to makepkg2 behavior. * Other small changes.
2007-02-06I should test code before I check it in. Also a fix for the annoying wget ↵Dan McGee1-3/+3
output in PKGBUILD bug.
2007-02-06* Added some backwards compatability stuff to makepkg, along with helpfulDan McGee1-6/+21
warnings so people aren't caught off guard in the future. * Added a temp fix for a bug in file 4.19 where bziped tarballs were returning type "application/empty".
2007-02-04* Updated makepkg to use a new form of options. These two arrays now replaceDan McGee1-21/+61
most of the former options in makepkg.conf, and are described in detail there: BUILDENV=(fakeroot !distcc color !ccache) OPTIONS=(strip !docs !libtool emptydirs) Note that PKGBUILD specified options will always have final say. They will now be specified as they are above, except using lowercase 'options' array. * makepkg was fixed so options actually work as expected.
2007-02-03Fix problem with PKGDEST variable not being used correctly.Dan McGee1-2/+3
2007-02-01It appears I misunderstood what this bash-ism didAaron Griffin1-1/+1
2007-02-01This removes the warning about skipping dependency checking when the user isDan McGee1-1/+4
either generating the md5sums, repackaging, or just downloading and extracting. The patch is below. ~ Jamie / yankees26 Signed-off-by: James Rosten <seinfeld90@gmail.com>
2007-02-01install scriptlet is _always_ .INSTALLAaron Griffin1-1/+1
2007-02-01Move filelist creation ABOVE the other metafiles to keep them out of the listAaron Griffin1-5/+5
2007-02-01removal of unnecessary '\' in integrity check generationDan McGee1-3/+1
2007-01-31* Updated repo-add script to remove same package, different version whenDan McGee1-22/+71
adding a package to a database. Also added commenting. :)
2007-01-30This is a silly script now that a fancy aurbuild is out in the wild (on the AUR,Aaron Griffin1-25/+0
surprisingly enough, heh)
2007-01-30* Remove -fno-strict-aliasing as it is now unnecessary to compile.Dan McGee1-1/+1
* Fix up add.c a bit better than it was in regards to FS #3492. * Optimized the sqrt call in dependency cycle checking to a single call. * Removal of an outdated comment.
2007-01-26Dan McGee <dpmcgee@gmail.com>Aaron Griffin1-6/+6
* Lots of code cleanup, and type fixes * Make 'makeworld' a bit more in-line with the other stuff * Make -Si and -Qi operations appear the same
2007-01-26James Rosten <seinfeld90 at gmail.com>Aaron Griffin1-1/+9
* Use PKGDEST and SRCDEST from the environment (if defined) when calling makepkg
2007-01-23James Rosten <seinfeld90@gmail.com>Aaron Griffin1-1/+6
* noextract PKGBUILD option to NOT extract source files - implemented with existing in_array function
2007-01-22Lowercase "changelog" in output messageAaron Griffin1-1/+1
2007-01-22Rename Changelog -> ChangeLog (the standard way of casing a ChangeLog)Aaron Griffin1-3/+3
2007-01-22Changelog support for makepkg - this has been in pacman itself for some time,Aaron Griffin1-4/+13
but I don't know why I never crammed the changes for makepkg in. * Adds a "Changelog" file next to a PKGBUILD as part of the package (viewed with pacman -Qc)
2007-01-22makepkg file-type detection changes from James Rosten <seinfeld90@gmail.com>Aaron Griffin1-12/+8
and Johannes Weiner <hannes@saeurebad.de> This should fix FS#6246
2007-01-17Dan McGee <dpmcgee@gmail.com>Aaron Griffin1-8/+8
* 'unset' fixes * typo in "dependecy" * indent fixes
2007-01-17Roman Kyrylych <Roman.Kyrylych@gmail.com>Aaron Griffin1-47/+24
* dependency removal fixes and refactoring
2007-01-17James Rosten <seinfeld90@gmail.com>Aaron Griffin1-3/+16
* rankmirrors addition of single url testing
2007-01-11* James Rosten <seinfeld90@gmail.com>Aaron Griffin1-7/+22
Cleanup and fixes from last patch Fix some tar error conditions * Dan McGee <dpmcgee@gmail.com> USECOLOR from rc.conf
2007-01-03* James Rosten <seinfeld90@gmail.com>Aaron Griffin1-32/+46
FS#5009 fixes - use tar on the pacman DB so as to handle cases where the base directory cannot be 'mv'ed and other such edge cases.
2007-01-02* James Rosten <seinfeld90@gmail.com>Aaron Griffin1-0/+32
Makepkg dep removal on failure FS#5923
2006-12-28* Removed autoconf TODO fixed in last commitAaron Griffin1-5/+6
* Dan McGee <dpmcgee@gmail.com> pacman-optimize checking fixes
2006-12-22Fixes from Dan McGee <dpmcgee@gmail.com> and myselfAaron Griffin1-36/+18
* quoting and $() changes * remove a boatload of duplications (previous patching) * added user-based config file ~/.abs.conf (for fun) * fixed CONNMODE usage
2006-12-21Jürgen Hötzel <juergen@hoetzel.info>Aaron Griffin1-12/+9
* fix in_array variables and usage * correct the final compression - 'filelist' was unused
2006-12-21* Dan McGee <dpmcgee@gmail.com>Aaron Griffin1-3/+3
Formating / comment changes Fix dep check conditional