[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.1.2-490-g0d24994
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, master has been updated via 0d249949345e69fc1728df236569d1153582244c (commit) via 694901259031c19178cbfaa7087a2950d2dde477 (commit) via db2562113ba014442568f9ba76a0c6a01674fcd4 (commit) via be3ce88bb21cc62a3788a7aca6322a312f6b87d7 (commit) via f66ae5334eb1b5b816346cc3e69d01cf5e7fe306 (commit) via f6b3c9d8038085a9b8ac2151a0ca3dafd637d3e2 (commit) via ecf0e37fc5b583c3694e6847e9f38edb8bae413a (commit) via 6029a77ac0f7667e1cc40fe0239b45e6217f0c25 (commit) via bd746568f6554789537baf96e5f75ff35737bd98 (commit) via 03aa44a3ecab8ede51d3a6a780017b59babe2965 (commit) via f77933ea1e45638d518206c839315d3feece2c01 (commit) via 9594f513a46220b12f515201dd3b034a7c648992 (commit) via 37aeb436443f9e37991ab557b91eea035d68ffc4 (commit) via de442b6867b9f21c3a01a6c03339cf86812944a8 (commit) via 167a598265b9f81f5afc71380c4f6b871caeb76b (commit) from bd744d067da1ac455e8a9cdfb622c655f14e485d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0d249949345e69fc1728df236569d1153582244c Author: Andrew Gregory <andrew.gregory.8@gmail.com> Date: Tue Sep 23 14:04:48 2014 -0400 makepkg: only strip vcs prefixes from front of url Referenced by FS#41811 Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit 694901259031c19178cbfaa7087a2950d2dde477 Author: Andrew Gregory <andrew.gregory.8@gmail.com> Date: Tue Sep 23 14:04:47 2014 -0400 makepkg: do not strip bzr+ from bzr+ssh urls bzr does not recognize bare ssh:// urls. Fixes FS#41811 Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit db2562113ba014442568f9ba76a0c6a01674fcd4 Author: Allan McRae <allan@archlinux.org> Date: Tue Jul 1 11:38:44 2014 +0200 makepkg: bzr: update existing sources in srcdir without removing them first. The local changes are discarded when updating. This matches the behaviour when non-VCS sources are used. It also allows incremental builds. This also changes the checkout during bzr source "extraction" to a heavyweight checkout so that pulling a specific revision does not alter the original download. Original-work-by: Lukáš Jirkovský <l.jirkovsky@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit be3ce88bb21cc62a3788a7aca6322a312f6b87d7 Author: Lukáš Jirkovský <l.jirkovsky@gmail.com> Date: Mon Dec 9 21:31:22 2013 +0100 makepkg: hg: update existing sources in srcdir without removing them first. The local changes are discarded when updating. This matches the behaviour when non-VCS sources are used. It also allows incremental builds. Signed-off-by: Lukáš Jirkovský <l.jirkovsky@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit f66ae5334eb1b5b816346cc3e69d01cf5e7fe306 Author: Lukáš Jirkovský <l.jirkovsky@gmail.com> Date: Mon Dec 9 21:31:20 2013 +0100 makepkg: checkout a revision specified in SVN fragment in download_svn. Previously the sources were dowloaded in HEAD revision in the download_svn(). If a specific revision was requested in fragment, the code was updated to that revision in extract_svn(). However, because SVN is a centralized system, this means that the changed sources has to be downloaded again. By moving the fragment handling to download_svn(), we get the correct revision without having to download it later in extract_svn(). Signed-off-by: Lukáš Jirkovský <l.jirkovsky@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit f6b3c9d8038085a9b8ac2151a0ca3dafd637d3e2 Author: Lukáš Jirkovský <l.jirkovsky@gmail.com> Date: Mon Dec 9 21:31:23 2013 +0100 makepkg: git: update existing sources in srcdir without removing them first. The local changes are discarded when updating. This matches the behaviour when non-VCS sources are used. It also allows incremental builds. Signed-off-by: Lukáš Jirkovský <l.jirkovsky@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org> commit ecf0e37fc5b583c3694e6847e9f38edb8bae413a Author: Allan McRae <allan@archlinux.org> Date: Sun Nov 9 15:53:16 2014 +1000 makepkg: improve stripping pkgdesc of whitespace for .PKGINFO Signed-off-by: Allan McRae <allan@archlinux.org> commit 6029a77ac0f7667e1cc40fe0239b45e6217f0c25 Author: Dave Reisner <dreisner@archlinux.org> Date: Sat Nov 8 23:06:43 2014 -0500 makepkg: introduce .SRCINFO files for source packages Similar to .PKGINFO, .SRCINFO provides structured metadata from the PKGBUILD to be included with source packages. The format is structured such that it contains a "pkgbase" and one to many "pkgname" sections. Each "pkgname" section represents an "output package", and inherits all of the attributes of the "pkgbase" section, and then can define their own additive fields. For example, a simple PKGBUILD: pkgbase=ponies pkgname=('applejack' 'pinkiepie') pkgver=1.2.3 pkgrel=1 arch=('x86_64' 'i686') depends=('friendship' 'magic') build() { ...; } package_applejack() { provides=('courage') ...; } package_pinkiepie() { provides=('laughter') ...; } Would yield the following .SRCINFO file: pkgbase = ponies pkgdesc = friendship is magic pkgver = 1.2.3 pkgrel = 1 arch = x86_64 arch = i686 depends = friendship depends = magic pkgname = applejack provides = courage pkgname = pinkiepie provides = laughter The code to generate this new file is taken a project which I've been incubating[0] under the guise of 'mkaurball', which creates .AURINFO files for the AUR. AURINFO is the exactly same file as .SRCINFO, but named as such to make it clear that this is specific to the AUR. Because we're parsing shell in the packaging functions rather than executing it, there *are* some limitations, but these only really crop up in more "exotic" PKGBUILDs. Smoketesting[1] for accuracy in the Arch repos yields 100% accuracy for [core] and [extra]. [community] clocks in at ~98% accuracy (.3% difference per PKGBUILD), largely due to silly haskell packages calling pacman from inside the PKGBUILD to determine dependencies. [multilib] currently shows about 92% accuracy -- a statistic which can be largely improved by utilizing the recently merged arch-specific attribute work. This is also a smaller repo so the numbers are somewhat inflated. In reality, this is only a .8% variance per PKGBUILD. Together, we can make PKGBUILD better. [0] https://github.com/falconindy/pkgbuild-introspection [1] https://github.com/falconindy/pkgbuild-introspection/blob/master/test/smoket... Signed-off-by: Allan McRae <allan@archlinux.org> commit bd746568f6554789537baf96e5f75ff35737bd98 Author: Dave Reisner <dreisner@archlinux.org> Date: Sat Nov 8 23:30:30 2014 -0500 makepkg: simplify epoch handling We can avoid setting a default value for epoch since we intend to mean unset and "0" as the same thing. This is also a more consistent default as the display of epoch=0 is no epoch at all in the full package version. The extra paranoia in get_full_version can be removed due to lint_epoch guarding against non-integer values of epoch. Signed-off-by: Allan McRae <allan@archlinux.org> commit 03aa44a3ecab8ede51d3a6a780017b59babe2965 Author: Dave Reisner <dreisner@archlinux.org> Date: Mon Oct 20 17:33:02 2014 -0400 makepkg: ignore empty global attributes in extraction This bug isn't currently exposed by any of the existing codepaths, but an upcoming patch to introduce SRCINFO files to makepkg will expose this. Signed-off-by: Allan McRae <allan@archlinux.org> commit f77933ea1e45638d518206c839315d3feece2c01 Author: Florian Pritz <bluewind@xinu.at> Date: Wed Nov 5 09:24:35 2014 +0100 Add --assume-installed to shell completion Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Allan McRae <allan@archlinux.org> commit 9594f513a46220b12f515201dd3b034a7c648992 Author: Florian Pritz <bluewind@xinu.at> Date: Tue Nov 4 20:40:51 2014 +0100 Add --assume-installed to pacman --help Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Allan McRae <allan@archlinux.org> commit 37aeb436443f9e37991ab557b91eea035d68ffc4 Author: Dave Reisner <dreisner@archlinux.org> Date: Tue Nov 4 08:10:23 2014 -0500 makepkg.8: remove superfluous "::" in envvar description Signed-off-by: Allan McRae <allan@archlinux.org> commit de442b6867b9f21c3a01a6c03339cf86812944a8 Author: Dave Reisner <dreisner@archlinux.org> Date: Tue Nov 4 08:10:22 2014 -0500 bash_completion: add --noarchive to makepkg's completions Signed-off-by: Allan McRae <allan@archlinux.org> commit 167a598265b9f81f5afc71380c4f6b871caeb76b Author: Dave Reisner <dreisner@archlinux.org> Date: Tue Nov 4 08:10:21 2014 -0500 updpkgsums: avoid exec'ing awk, so the trap actually works Signed-off-by: Allan McRae <allan@archlinux.org> ----------------------------------------------------------------------- Summary of changes: contrib/bash_completion.in | 8 +- contrib/updpkgsums.sh.in | 2 +- contrib/zsh_completion.in | 3 + doc/makepkg.8.txt | 2 +- scripts/makepkg.sh.in | 214 ++++++++++++++++++++++++++++++++++----------- src/pacman/pacman.c | 2 + 6 files changed, 173 insertions(+), 58 deletions(-) hooks/post-receive -- The official pacman repository
participants (1)
-
allan@archlinux.org