pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/pkgtasks Update pkgtools/pkgtasks to 1.14.
details: https://anonhg.NetBSD.org/pkgsrc/rev/6a8095e2a4a3
branches: trunk
changeset: 366911:6a8095e2a4a3
user: jlam <jlam%pkgsrc.org@localhost>
date: Sat Aug 19 00:30:07 2017 +0000
description:
Update pkgtools/pkgtasks to 1.14.
Use TASK_VERBOSE environment variable to select which tasks should
emit output when invoked.
diffstat:
pkgtools/pkgtasks/Makefile | 4 +-
pkgtools/pkgtasks/files/Makefile.in | 12 +-
pkgtools/pkgtasks/files/NEWS.md | 8 ++
pkgtools/pkgtasks/files/README.md | 2 +-
pkgtools/pkgtasks/files/aclocal.m4 | 34 ++++----
pkgtools/pkgtasks/files/build-aux/install-sh | 2 +-
pkgtools/pkgtasks/files/build-aux/missing | 6 +-
pkgtools/pkgtasks/files/configure | 20 ++--
pkgtools/pkgtasks/files/configure.ac | 2 +-
pkgtools/pkgtasks/files/postinstall.subr | 73 ++++++++++++++------
pkgtools/pkgtasks/files/postremove.subr | 82 +++++++++++++++-------
pkgtools/pkgtasks/files/preinstall.subr | 53 +++++++++++++-
pkgtools/pkgtasks/files/preremove.subr | 58 +++++++++++++++-
pkgtools/pkgtasks/files/t/t_postinstall.sh | 97 ++++++++++++++++++++++++--
pkgtools/pkgtasks/files/t/t_postremove.sh | 99 ++++++++++++++++++++++++---
pkgtools/pkgtasks/files/t/t_preinstall.sh | 82 +++++++++++++++++++++-
pkgtools/pkgtasks/files/t/t_preremove.sh | 84 ++++++++++++++++++++++-
17 files changed, 587 insertions(+), 131 deletions(-)
diffs (truncated from 1354 to 300 lines):
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/Makefile
--- a/pkgtools/pkgtasks/Makefile Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/Makefile Sat Aug 19 00:30:07 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2017/08/10 05:38:30 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2017/08/19 00:30:07 jlam Exp $
-DISTNAME= pkgtasks-1-1.13
+DISTNAME= pkgtasks-1-1.14
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/Makefile.in
--- a/pkgtools/pkgtasks/files/Makefile.in Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/Makefile.in Sat Aug 19 00:30:07 2017 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -574,7 +574,7 @@
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
@@ -600,7 +600,7 @@
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+ shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
@@ -618,7 +618,7 @@
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
@@ -628,7 +628,7 @@
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/NEWS.md
--- a/pkgtools/pkgtasks/files/NEWS.md Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/NEWS.md Sat Aug 19 00:30:07 2017 +0000
@@ -2,6 +2,14 @@
=============
+Changes in version 1.14
+-----------------------
+**Released on 2017-08-14.**
+
+* Use `TASK_VERBOSE` environment variable to select which tasks
+ should emit output when invoked.
+
+
Changes in version 1.13
-----------------------
**Released on 2017-08-08.**
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/README.md
--- a/pkgtools/pkgtasks/files/README.md Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/README.md Sat Aug 19 00:30:07 2017 +0000
@@ -26,7 +26,7 @@
Getting sources
---------------
-The latest version of *pkgtasks* is 1.13 and was released on August 8th, 2017.
+The latest version of *pkgtasks* is 1.14 and was released on August 14th, 2017.
See the [release notes](NEWS.md) for information about the changes in this
and all previous releases.
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/aclocal.m4
--- a/pkgtools/pkgtasks/files/aclocal.m4 Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/aclocal.m4 Sat Aug 19 00:30:07 2017 +0000
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15 -*- Autoconf -*-
+# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
+# Copyright (C) 2002-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -35,7 +35,7 @@
[am__api_version='1.15'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.15.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -51,14 +51,14 @@
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.15])dnl
+[AM_AUTOMAKE_VERSION([1.15.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -110,7 +110,7 @@
# AM_CONDITIONAL -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -143,7 +143,7 @@
# Do all the work for Automake. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -340,7 +340,7 @@
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -361,7 +361,7 @@
fi
AC_SUBST([install_sh])])
-# Copyright (C) 2003-2014 Free Software Foundation, Inc.
+# Copyright (C) 2003-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -382,7 +382,7 @@
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -421,7 +421,7 @@
# Helper functions for option handling. -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -452,7 +452,7 @@
# Check to make sure that the build environment is sane. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -533,7 +533,7 @@
rm -f conftest.file
])
-# Copyright (C) 2009-2014 Free Software Foundation, Inc.
+# Copyright (C) 2009-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -593,7 +593,7 @@
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -621,7 +621,7 @@
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-# Copyright (C) 2006-2014 Free Software Foundation, Inc.
+# Copyright (C) 2006-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -640,7 +640,7 @@
# Check how to create a tarball. -*- Autoconf -*-
-# Copyright (C) 2004-2014 Free Software Foundation, Inc.
+# Copyright (C) 2004-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/build-aux/install-sh
--- a/pkgtools/pkgtasks/files/build-aux/install-sh Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/build-aux/install-sh Sat Aug 19 00:30:07 2017 +0000
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: install-sh,v 1.3 2017/08/10 05:38:30 jlam Exp $
+# $NetBSD: install-sh,v 1.4 2017/08/19 00:30:07 jlam Exp $
# This script now also installs multiple files, but might choke on installing
# multiple files with spaces in the file names.
#
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/build-aux/missing
--- a/pkgtools/pkgtasks/files/build-aux/missing Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/build-aux/missing Sat Aug 19 00:30:07 2017 +0000
@@ -1,9 +1,9 @@
#! /bin/sh
# Common wrapper for a few potentially missing GNU programs.
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2016-01-11.22; # UTC
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
# Originally written by Fran,cois Pinard <pinard%iro.umontreal.ca@localhost>, 1996.
# This program is free software; you can redistribute it and/or modify
@@ -210,6 +210,6 @@
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff -r d447e9dad0aa -r 6a8095e2a4a3 pkgtools/pkgtasks/files/configure
--- a/pkgtools/pkgtasks/files/configure Sat Aug 19 00:29:55 2017 +0000
+++ b/pkgtools/pkgtasks/files/configure Sat Aug 19 00:30:07 2017 +0000
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for pkgtasks-1 1.13.
+# Generated by GNU Autoconf 2.69 for pkgtasks-1 1.14.
#
# Report bugs to <jlam%NetBSD.org@localhost>.
#
@@ -580,8 +580,8 @@
# Identity of this package.
PACKAGE_NAME='pkgtasks-1'
PACKAGE_TARNAME='pkgtasks-1'
-PACKAGE_VERSION='1.13'
-PACKAGE_STRING='pkgtasks-1 1.13'
+PACKAGE_VERSION='1.14'
+PACKAGE_STRING='pkgtasks-1 1.14'
PACKAGE_BUGREPORT='jlam%NetBSD.org@localhost'
PACKAGE_URL=''
@@ -1209,7 +1209,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures pkgtasks-1 1.13 to adapt to many kinds of systems.
+\`configure' configures pkgtasks-1 1.14 to adapt to many kinds of systems.
Home |
Main Index |
Thread Index |
Old Index