index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-05 | Avoid using string interpolation; use printf format strings instead. | Luke Shumaker | |
This involves extending the signature of lib/common.sh's `stat_busy()`, `lock()`, and `slock()`. The `mesg=$1; shift` in stat_busy even suggests that this is what was originally intended from it. | |||
2017-04-05 | Add a "License:" tag to all code files. | Luke Shumaker | |
In cases where there is no license specified, the file is tagged as "License: Unspecified". Obviously, that is not ideal, but it highlights the fact, and I hope that it encourages whoever has the authority to specify the license to do so. On that note, to anyone who may have the authority to specify the license of files in devtools: the current licence of many files is GPLv2 with no option for later versions; I impore you to re-license them to have the "or any later version" option. | |||
2016-05-27 | Use repos.archlinux.org everywhere instead of hostname based domains20160527 | Sven-Hendrik Haase | |
This makes it a lot easier to swap out the host that actually serves the repos in the future. | |||
2013-08-08 | avoid injecting code into the format string | Dave Reisner | |
Now that die() properly forwards arguments to error(), we can expect that the first arg is a format string and not the entirety of the output. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2013-01-20 | Use nymeria instead of gerolde20130120 | Pierre Schmitz | |
2012-11-11 | For now only packages and svn from sigurd will be moved to nymeria | Pierre Schmitz | |
2012-11-03 | Use nymeria.archlinux.org as shared host for developers and trusted users | Pierre Schmitz | |
2012-10-27 | Use sigurd.archlinux.org instead of the now moved aur.archlinux.org hostname | Pierre Schmitz | |
2011-12-04 | Use double brackets everywhere | Lukas Fleischer | |
We already fixed a couple of these in previous patches - this one should replace all remaining uses of single brackets ("[") by double brackets. Also, use arithmetic evaluation instead of conditional expressions where appropriate and make use of "-z" and "-n" instead of comparing variables to empty strings. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de> | |||
2011-11-04 | Capitalize output messages | Eric Bélanger | |
Some of the output/error messages were capitalized, some were not. This patch capitalize everything for consistency sake. Other minor changes were done to the messages like removing the superfluous "error:" from die messages and adding a final period to messages that were complete sentences as appropriate. Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2011-11-01 | Move common functions to a shared file | Pierre Schmitz | |
* common.sh is included on build time * most functions are copied from makepkg | |||
2011-10-07 | Support non-standard install locations | Lukas Fleischer | |
This build system overhaul allows for adding (define-style) macros to our scripts. All source files are now suffixed with ".in" to clarify that they might contain unprocessed defines. The Makefile provides a new rule to preprocess source files and generate proper output scripts. Also, add a "@pkgdatadir@" define (as used in GNU Autotools) and use it instead of hardcoded paths to "/usr/share/devtools" everywhere. We missed this when adding PREFIX support to the build system in commit 35fc83ce7d8dc26cd424321f2e8638d05da0a6d4. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de> |