From 7b10519835eadec97487728516b1a712c4b896eb Mon Sep 17 00:00:00 2001 From: William Giokas <1007380@gmail.com> Date: Mon, 1 Apr 2013 01:46:48 -0500 Subject: doc: fix debug spelling mistake with -> when Signed-off-by: William Giokas <1007380@gmail.com> Signed-off-by: Allan McRae --- doc/makepkg.conf.5.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/makepkg.conf.5.txt b/doc/makepkg.conf.5.txt index 0d1cf00c..be5b809a 100644 --- a/doc/makepkg.conf.5.txt +++ b/doc/makepkg.conf.5.txt @@ -182,7 +182,7 @@ Options *debug*;; Add the user-specified debug flags as specified in DEBUG_CFLAGS and DEBUG_CXXFLAGS to their counterpart buildflags. Creates a separate - package containing the debug symbols with used with `strip'. + package containing the debug symbols when used with `strip'. **INTEGRITY_CHECK=(**check1 ...**)**:: File integrity checks to use. Multiple checks may be specified; this -- cgit v1.2.3-54-g00ecf From 91b9ea922ae3db12cbff570718709d4c836c4cbf Mon Sep 17 00:00:00 2001 From: Eric Bélanger Date: Sun, 28 Apr 2013 21:49:01 -0400 Subject: Add -V/--version option to makepkg's usage function and man page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Bélanger Signed-off-by: Allan McRae --- doc/makepkg.8.txt | 3 +++ scripts/makepkg.sh.in | 1 + 2 files changed, 4 insertions(+) (limited to 'doc') diff --git a/doc/makepkg.8.txt b/doc/makepkg.8.txt index ecee63a1..bb7a9a3f 100644 --- a/doc/makepkg.8.txt +++ b/doc/makepkg.8.txt @@ -144,6 +144,9 @@ Options remote builder, or a tarball upload. Because integrity checks are verified, all source files of the package need to be present or downloadable. +*-V, \--version*:: + Display version information. + *\--allsource*:: Do not actually build the package, but build a source-only tarball that includes all sources, including those that are normally download via diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index deddade4..75ddfe54 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2497,6 +2497,7 @@ usage() { printf -- "$(gettext " -R, --repackage Repackage contents of the package without rebuilding")\n" printf -- "$(gettext " -s, --syncdeps Install missing dependencies with %s")\n" "pacman" printf -- "$(gettext " -S, --source Generate a source-only tarball without downloaded sources")\n" + printf -- "$(gettext " -V, --version Show version information and exit")\n" printf -- "$(gettext " --allsource Generate a source-only tarball including downloaded sources")\n" printf -- "$(gettext " --verifysource Download source files (if needed) and perform integrity checks")\n" printf -- "$(gettext " --asroot Allow %s to run as root user")\n" "makepkg" -- cgit v1.2.3-54-g00ecf From a4a7336dff8155cfeb37341d1e9e56092439bae6 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 7 May 2013 11:55:44 +1000 Subject: 4.1.1 release NEWS, version bumps, etc. Signed-off-by: Allan McRae --- NEWS | 11 +++++++++++ configure.ac | 4 ++-- doc/index.txt | 1 + 3 files changed, 14 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/NEWS b/NEWS index ce52e6f4..6fdb5d52 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,16 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +4.1.1 - fix bug causing negative "Total Installed Size" (FS#34616) + - report libalpm version it is pkg-config file (FS#34967) + - various translation fixes and updates (FS#34395, FS#34704, + FS#34716, FS#35097) + - makepkg: + - imporve SVN VCS PKGBUILD handling (FS#34675, FS#34636) + - allow "lp:" URLs for BZR sources (FS#34650) + - prevent pkgver() capturing stderr (FS#34974) + - fix attempt to remove package twice on failure (FS#34672) + - contrib: + - fix privilege escalation in paccache (FS#34656) 4.1.0 - check file properties when using -Qkk (FS#11091) - add color to pacman output - new configuration option "Color" - add informational messages for optdepends installation diff --git a/configure.ac b/configure.ac index 81bc1b3e..0d08e862 100644 --- a/configure.ac +++ b/configure.ac @@ -42,12 +42,12 @@ AC_PREREQ(2.62) # pacman_version_micro += 1 m4_define([lib_current], [8]) -m4_define([lib_revision], [0]) +m4_define([lib_revision], [1]) m4_define([lib_age], [0]) m4_define([pacman_version_major], [4]) m4_define([pacman_version_minor], [1]) -m4_define([pacman_version_micro], [0]) +m4_define([pacman_version_micro], [1]) m4_define([pacman_version], [pacman_version_major.pacman_version_minor.pacman_version_micro]) diff --git a/doc/index.txt b/doc/index.txt index 81588102..c6b4aea2 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -71,6 +71,7 @@ Releases [frame="topbot",grid="none",options="header,autowidth"] !====== !Version !Date +!4.1.1 !2013-05-07 !4.1.0 !2013-04-01 !4.1.0rc1 !2013-03-09 !4.0.3 !2012-04-07 -- cgit v1.2.3-54-g00ecf