- 24 Jun, 2014 2 commits
-
-
Much like with events, instead of using a bunch of void* arguments for all questions, we now send one pointer to an alpm_question_t union. This contains the type of question that was triggered. With this information, a question-specific struct can be accessed in order to get additional arguments. Signed-off-by:
Olivier Brunel <jjk@jjacky.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Because for the new question types, we'll need to use alpm_errno_t let's move its definition up. Of course to do so, we also need to move that of alpm_handle_t as well, so move all opaque structures on top. Signed-off-by:
Olivier Brunel <jjk@jjacky.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 23 Jun, 2014 1 commit
-
-
This was the only break that didn't have its own line in the function parsearg_query. Signed-off-by:
Hong Shick Pak <hong@hspak.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 12 Jun, 2014 1 commit
-
-
Allan McRae authored
This ensures packages build on a UTF-8 locale system with non-ASCII character names can be installed on non-UTF-8 systems. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 10 Jun, 2014 2 commits
-
-
Remove the comment above the signature generation command as the command is self explanatory and no longer does what the comment says. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
This test currently fails. Signed-off-by:
Florian Pritz <bluewind@xinu.at> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 02 Jun, 2014 1 commit
-
-
Allan McRae authored
Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 25 May, 2014 3 commits
-
-
Allan McRae authored
FS#40234 Signed-off-by:
Allan McRae <allan@archlinux.org>
-
FS#39982. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Allan McRae authored
We expect all source file to lie in $startdir. However, using "makepkg -p <buildscript>" can currently allows people to specify buildscripts in other directories. This results in confusion about where other sources should lie (in startdir or in the directory that the buildscript is in). Explicitly disable using -p for files in other directories to avoid this issue. Fixes FS#40293. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 23 May, 2014 4 commits
-
-
Allan McRae authored
Fixes "make distcheck". Signed-off-by:
Allan McRae <allan@archlinux.org>
-
If validpgpkeys is set in the PKGBUILD, signature checking fails if the fingerprint of the key used to create the signature is not listed in the array. The key's trust value is ignored. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Instead of invoking grep multiple times, parse the status file once. This refactoring also changes the behvaiour when signature verification fails due to a missing public key: It is now an error instead of a warning. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 22 May, 2014 2 commits
-
-
Use of this flag causes connections to be closed on 404s -- a common occurrence when your config sets DatabaseOptional. Handle the error gracefully, so that the connection can be reused. Signed-off-by:
Dave Reisner <dreisner@archlinux.org> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Old output: > Total Installed Size: -1527.44 MiB Fixed: > Total Installed Size: 2568.56 MiB Bug introduced in 7b8f8753 . Signed-off-by:
Florian Pritz <bluewind@xinu.at> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 07 May, 2014 1 commit
-
-
Matches the behavior for sync packages. Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 04 May, 2014 3 commits
-
-
glob() returns an empty list if input does not match any files, causing non-existent test files to be silently skipped. Treating arguments as files causes pactest to immediately bail out with an appropriate error message on non-existent files. Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
"Always" is not a valid siglevel. sign002.py was succeeding because pacman failed to parse the resulting config file rather than a failed signature check. Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
alpm downloads databases based on basename causing [foo] and [bar/foo] to silently overwrite each other. Also remove an extra tab Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 21 Apr, 2014 2 commits
-
-
Breakage introduced in 92216c58 when we changed the signature of strtrim to return something more useful. Fixes FS#39976. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 27 Mar, 2014 7 commits
-
-
Allan McRae authored
-
Allan McRae authored
Provide pkgbase information for non-split packages with pkgbase set. Also record the version of the "base" package. This is useful for matching package files to source packages. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Allan McRae authored
Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Make sure allocated memory is freed before returning. Signed-off-by:
Sören Brinkmann <soeren.brinkmann@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Refactor the upgrade routine to use an array that can be allocated in one step instead of an alpm_list that is gradually extended in loops. Signed-off-by:
Sören Brinkmann <soeren.brinkmann@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 16 Mar, 2014 1 commit
-
-
Check the return value of malloc() before dereferencing the returned pointer. Signed-off-by:
Sören Brinkmann <soeren.brinkmann@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 13 Mar, 2014 1 commit
-
-
Signed-off-by:
Pierre Neidhardt <ambrevar@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 12 Mar, 2014 4 commits
-
-
Allan McRae authored
Packaging outside of fakeroot can result in incorrect permissions for package files. It has been years since fakeroot issues during packaging were common, so it is safe to enforce fakeroot usage. If using fakeroot is impossible for some reason, a two line wrapper script will suffice to fool makepkg. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Allan McRae authored
The days of fakeroot being error ridden are long gone, so there is no valid reason to run makepkg as root. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
1. Packagers who want to test the package() function, i.e. to check the content of the pkg/ folder. 2. Developers who want to check how the packaged version of a program looks, in other words how the pkg/ folder looks. 3. For users of systems with no port tree, makepkg can ease package creation. However the resulting archive of the whole makepkg process is often useless. For all situations, makepkg will usually be called several times. But no archive (the final package) is needed in any cases. The archive creation ends up being a waste of time and resource, especially for big applications and slow machines. Since this option aborts the process prematurely, it behaves like the -o,--nobuild option, i.e. any other option acting on later stages in the process will be automatically discarded. For --noarchive, it means that in $ makepkg --noarchive --install the '--install' option does not do anything. Signed-off-by:
Pierre Neidhardt <ambrevar@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Previously, install_package() return code was either used as exit code or ignored. This was rather confusing. The return code is now always ignored and a comment on install_package() has been added. Signed-off-by:
Pierre Neidhardt <ambrevar@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 08 Mar, 2014 2 commits
-
-
Another small patch that I made long ago (but was too lazy to submit back then). When using XferCommand, TotalDownload option is not take into account. Regards, Matthias >From bff946cd9969b6bc6243875e0759f0ee02e487de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= <matthias.krueger@famsik.de> Date: Thu, 9 May 2013 13:21:04 +0200 Subject: [PATCH] doc: pacman.conf: note that TotalDownload and XferCommand options are incompatible. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by:
Matthias Krüger <matthias.krueger@famsik.de> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Allan McRae authored
Use MALLOC instead of malloc for safety in libalpm. Some changes are pure refactoring, but for others this provides a success check for memory allocation. Signed-off-by:
Allan McRae <allan@archlinux.org>
-
- 04 Mar, 2014 3 commits
-
-
alpm_add_pkg does not ignore packages. Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-
Signed-off-by:
Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by:
Allan McRae <allan@archlinux.org>
-