pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/nagios-plugin-pgsql Use common patches and reset P...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/36b32f15be41
branches:  trunk
changeset: 364799:36b32f15be41
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Tue Jul 04 19:47:21 2017 +0000

description:
Use common patches and reset PKGREVISION.

diffstat:

 net/nagios-plugin-pgsql/Makefile                |    3 +-
 net/nagios-plugin-pgsql/distinfo                |    8 -
 net/nagios-plugin-pgsql/patches/patch-ak        |   76 ----------------
 net/nagios-plugin-pgsql/patches/patch-configure |  110 ------------------------
 4 files changed, 1 insertions(+), 196 deletions(-)

diffs (219 lines):

diff -r cfb070dd6103 -r 36b32f15be41 net/nagios-plugin-pgsql/Makefile
--- a/net/nagios-plugin-pgsql/Makefile  Tue Jul 04 19:46:39 2017 +0000
+++ b/net/nagios-plugin-pgsql/Makefile  Tue Jul 04 19:47:21 2017 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2016/10/09 21:42:02 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2017/07/04 19:47:21 jperkin Exp $
 #
 
 PKGNAME=       nagios-plugin-pgsql-${PLUGINSVERSION}
-PKGREVISION=   2
 CATEGORIES=    net sysutils databases
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
diff -r cfb070dd6103 -r 36b32f15be41 net/nagios-plugin-pgsql/distinfo
--- a/net/nagios-plugin-pgsql/distinfo  Tue Jul 04 19:46:39 2017 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-$NetBSD: distinfo,v 1.13 2015/11/04 00:35:14 agc Exp $
-
-SHA1 (nagios-plugins-2.0.3.tar.gz) = 29b6183ab9d796299dc17c395eef493415d1e9d6
-RMD160 (nagios-plugins-2.0.3.tar.gz) = b682b126c78df51f64d9cb8599d2f9dfd411d5f4
-SHA512 (nagios-plugins-2.0.3.tar.gz) = 2753e6f3fc7433a5583fee01e63a65b9ea74155964f2b6e6bf3458e56cb29ea5dbd020f83816044a717b66d6548d203b3a082fba0faedcd629c7a8457bc19b36
-Size (nagios-plugins-2.0.3.tar.gz) = 2659772 bytes
-SHA1 (patch-ak) = 093638669dd5b524d8a9b31d452f1ba737e684b3
-SHA1 (patch-configure) = 8aa67c3eb339d57d225df7dc106b888dd2d37da3
diff -r cfb070dd6103 -r 36b32f15be41 net/nagios-plugin-pgsql/patches/patch-ak
--- a/net/nagios-plugin-pgsql/patches/patch-ak  Tue Jul 04 19:46:39 2017 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,76 +0,0 @@
-$NetBSD: patch-ak,v 1.5 2015/05/17 21:23:29 rodent Exp $
-
---- gl/mountlist.c.orig        2014-03-04 21:41:56.000000000 +0000
-+++ gl/mountlist.c
-@@ -52,7 +52,11 @@
- # if HAVE_STRUCT_FSSTAT_F_FSTYPENAME
- #  define FS_TYPE(Ent) ((Ent).f_fstypename)
- # else
--#  define FS_TYPE(Ent) mnt_names[(Ent).f_type]
-+#  if defined(STAT_STATVFS)
-+#   define FS_TYPE(Ent) mnt_names[(Ent).f_fsid]
-+#  else
-+#   define FS_TYPE(Ent) mnt_names[(Ent).f_type]
-+#  endif
- # endif
- #endif /* MOUNTED_GETFSSTAT */
- 
-@@ -99,6 +103,10 @@
- # include <sys/statfs.h>
- #endif
- 
-+#if defined(HAVE_SYS_STATVFS_H)
-+#include <sys/statvfs.h>
-+#endif
-+
- #ifdef MOUNTED_LISTMNTENT
- # include <mntent.h>
- #endif
-@@ -223,7 +231,7 @@ me_remote (char const *fs_name, char con
- 
- #if MOUNTED_GETMNTINFO
- 
--# if ! HAVE_STRUCT_STATFS_F_FSTYPENAME
-+# if ! HAVE_STRUCT_STATFS_F_FSTYPENAME && ! STAT_STATVFS
- static char *
- fstype_to_string (short int t)
- {
-@@ -320,9 +328,13 @@ fstype_to_string (short int t)
- # endif
- 
- static char *
-+#if defined(STAT_STATVFS) && !defined(__FreeBSD__)
-+fsp_to_string (const struct statvfs *fsp)
-+#else
- fsp_to_string (const struct statfs *fsp)
-+#endif
- {
--# if HAVE_STRUCT_STATFS_F_FSTYPENAME
-+# if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) || defined(STAT_STATVFS)
-   return (char *) (fsp->f_fstypename);
- # else
-   return fstype_to_string (fsp->f_type);
-@@ -648,7 +660,11 @@ read_file_system_list (bool need_fs_type
-   {
-     int numsys, counter;
-     size_t bufsize;
-+#if defined(STAT_STATVFS) && !defined(__FreeBSD__)
-+    struct statvfs *stats;
-+#else
-     struct statfs *stats;
-+#endif
- 
-     numsys = getfsstat (NULL, 0L, MNT_NOWAIT);
-     if (numsys < 0)
-@@ -658,7 +674,11 @@ read_file_system_list (bool need_fs_type
- 
-     bufsize = (1 + numsys) * sizeof *stats;
-     stats = xmalloc (bufsize);
-+#if defined(STAT_STATVFS)
-+    numsys = getfsstat ((struct statvfs *)stats, bufsize, MNT_NOWAIT);
-+#else
-     numsys = getfsstat (stats, bufsize, MNT_NOWAIT);
-+#endif
- 
-     if (numsys < 0)
-       {
diff -r cfb070dd6103 -r 36b32f15be41 net/nagios-plugin-pgsql/patches/patch-configure
--- a/net/nagios-plugin-pgsql/patches/patch-configure   Tue Jul 04 19:46:39 2017 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,110 +0,0 @@
-$NetBSD: patch-configure,v 1.2 2015/04/03 18:34:16 rodent Exp $
-
---- configure.orig     2014-06-26 16:17:37.000000000 +0000
-+++ configure
-@@ -17188,7 +17188,7 @@ _ACEOF
- 
- fi
- 
--  if test "$ac_cv_lib_radiusclient_rc_read_config" = "yes"; then
-+  if false; then
-     EXTRAS="$EXTRAS check_radius\$(EXEEXT)"
-       RADIUSLIBS="-lradiusclient"
- 
-@@ -17363,7 +17363,7 @@ _ACEOF
- 
- fi
- 
--  if test "$ac_cv_lib_ldap_main" = "yes"; then
-+  if false; then
-     LDAPLIBS="-lldap -llber"\
-     LDAPINCLUDE="-I/usr/include/ldap"
- 
-@@ -18791,6 +18791,9 @@ cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- #ifdef HAVE_UNISTD_H
-+#if defined(__sun) && !defined(_LP64) && _FILE_OFFSET_BITS == 64
-+#undef _FILE_OFFSET_BITS
-+#endif
-                       #include <unistd.h>
-                       #endif
-                       #include <netinet/in.h>
-@@ -21524,7 +21527,7 @@ elif test "$ac_cv_uname_s" = "SunOS"; th
-         ac_cv_ps_cols=9
-         { $as_echo "$as_me:$LINENO: result: using nagios-plugins internal ps command (pst3) for solaris" >&5
- $as_echo "using nagios-plugins internal ps command (pst3) for solaris" >&6; }
--      if test `isainfo -b` = 64 ; then
-+      if test "$MACHINE_ARCH" = "x86_64" ; then
-               pst3_use_64bit=1
-               { $as_echo "$as_me:$LINENO: using 64bit pst3" >&5
- $as_echo "$as_me: using 64bit pst3" >&6;}
-@@ -22521,7 +22524,7 @@ fi
-       then
-               { $as_echo "$as_me:$LINENO: checking for nslookup syntax" >&5
- $as_echo_n "checking for nslookup syntax... " >&6; }
--              if $PATH_TO_NSLOOKUP -sil 127.0.0.1 2>&1 | grep "Invalid option: sil" >/dev/null
-+              if $PATH_TO_NSLOOKUP -sil 127.0.0.1 2>&1 | grep -F "Invalid option: sil" >/dev/null
-               then
-                       ac_cv_nslookup_command="$PATH_TO_NSLOOKUP"
-                       { $as_echo "$as_me:$LINENO: result: $ac_cv_nslookup_command" >&5
-@@ -22982,7 +22985,7 @@ _ACEOF
- 
- fi
- 
--if ( $PERL -M"Net::SNMP 3.6" -e 'exit' 2>/dev/null  )
-+if false
- then
-       { $as_echo "$as_me:$LINENO: checking for Net::SNMP perl module" >&5
- $as_echo_n "checking for Net::SNMP perl module... " >&6; }
-@@ -23134,7 +23137,7 @@ IFS=$as_save_IFS
- esac
- fi
- PATH_TO_FPING=$ac_cv_path_PATH_TO_FPING
--if test -n "$PATH_TO_FPING"; then
-+if test -n "$PATH_TO_FPING" -a "$PATH_TO_FPING" != "no"; then
-   { $as_echo "$as_me:$LINENO: result: $PATH_TO_FPING" >&5
- $as_echo "$PATH_TO_FPING" >&6; }
- else
-@@ -23174,7 +23177,7 @@ IFS=$as_save_IFS
- esac
- fi
- PATH_TO_FPING6=$ac_cv_path_PATH_TO_FPING6
--if test -n "$PATH_TO_FPING6"; then
-+if test -n "$PATH_TO_FPING6" -a "$PATH_TO_FPING6" != "no"; then
-   { $as_echo "$as_me:$LINENO: result: $PATH_TO_FPING6" >&5
- $as_echo "$PATH_TO_FPING6" >&6; }
- else
-@@ -23750,6 +23753,10 @@ cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- 
-+#if defined(__sun) && !defined(_LP64) && _FILE_OFFSET_BITS == 64
-+#undef _FILE_OFFSET_BITS
-+#endif
-+
- #ifdef HAVE_SYS_PARAM_H
- #include <sys/param.h>
- #endif
-@@ -23812,6 +23819,10 @@ cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- 
-+#if defined(__sun) && !defined(_LP64) && _FILE_OFFSET_BITS == 64
-+#undef _FILE_OFFSET_BITS
-+#endif
-+
-                #include <unistd.h>
-                #include <sys/types.h>
-                #include <sys/param.h>
-@@ -24003,6 +24014,10 @@ cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
- 
-+#if defined(__sun) && !defined(_LP64) && _FILE_OFFSET_BITS == 64
-+#undef _FILE_OFFSET_BITS
-+#endif
-+
-                #include <sys/types.h>
-                #include <sys/param.h>
-                #include <sys/stat.h>



Home | Main Index | Thread Index | Old Index