svn commit: r478726 - in head/net-mgmt/librenms: . files

Dan Langille dvl at FreeBSD.org
Sat Sep 1 20:42:42 UTC 2018


Author: dvl
Date: Sat Sep  1 20:42:41 2018
New Revision: 478726
URL: https://svnweb.freebsd.org/changeset/ports/478726

Log:
  Upgrade to 1.43
  
  While here, fix a bug in the files/patch-includes_common.php where the
  variables for PORTVERSION & RELEASE_TIMESTAMP were not present.
  
  Approved by:	maintainer (via private email)

Modified:
  head/net-mgmt/librenms/Makefile
  head/net-mgmt/librenms/distinfo
  head/net-mgmt/librenms/files/patch-includes_common.php

Modified: head/net-mgmt/librenms/Makefile
==============================================================================
--- head/net-mgmt/librenms/Makefile	Sat Sep  1 20:33:05 2018	(r478725)
+++ head/net-mgmt/librenms/Makefile	Sat Sep  1 20:42:41 2018	(r478726)
@@ -2,11 +2,11 @@
 # $FreeBSD$
 
 PORTNAME=	librenms
-PORTVERSION=	1.42.01
+PORTVERSION=	1.43
 # RELEASE_TIMESTAMP is used for a patch inside the vendor code
 # it represents the release date via: git show --pretty='%H|%ct' -s 1.42.01
 # It sits here so you remember to update it with each release
-RELEASE_TIMESTAMP=	1533413232
+RELEASE_TIMESTAMP=	1535704658
 PORTEPOCH=	1
 CATEGORIES=	net-mgmt
 MASTER_SITES=	LOCAL/dvl:vendor

Modified: head/net-mgmt/librenms/distinfo
==============================================================================
--- head/net-mgmt/librenms/distinfo	Sat Sep  1 20:33:05 2018	(r478725)
+++ head/net-mgmt/librenms/distinfo	Sat Sep  1 20:42:41 2018	(r478726)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1535580261
-SHA256 (librenms-vendor-1.42.01.tar.gz) = a3695b56715c79f367d324b161b7f8130f93f2d034c20d7bab22cc53e352f504
-SIZE (librenms-vendor-1.42.01.tar.gz) = 31809735
-SHA256 (librenms-librenms-1.42.01_GH0.tar.gz) = 91748b468e569826e27797f3b88db764a468dc82dddc507a1c7994dff1309c23
-SIZE (librenms-librenms-1.42.01_GH0.tar.gz) = 31794610
+TIMESTAMP = 1535832769
+SHA256 (librenms-vendor-1.43.tar.gz) = e7364c085d5c636fdf8fd1dbc3d35da16b7a6ceee8934e740c8c3a8f6766d95a
+SIZE (librenms-vendor-1.43.tar.gz) = 31842846
+SHA256 (librenms-librenms-1.43_GH0.tar.gz) = 6f5fc969eae766d894715f703628534b35420ba3b77cc25988abfd522f14cb6c
+SIZE (librenms-librenms-1.43_GH0.tar.gz) = 32876746

Modified: head/net-mgmt/librenms/files/patch-includes_common.php
==============================================================================
--- head/net-mgmt/librenms/files/patch-includes_common.php	Sat Sep  1 20:33:05 2018	(r478725)
+++ head/net-mgmt/librenms/files/patch-includes_common.php	Sat Sep  1 20:42:41 2018	(r478726)
@@ -5,9 +5,9 @@
          $output['local_date']   = $local_date;
          $output['local_branch'] = rtrim(`git rev-parse --abbrev-ref HEAD`);
 +    } else {
-+        $output['local_ver']  = '1.42.01';
-+        # obtained via git show --pretty='%H|%ct' -s 1.42.01
-+        $output['local_date'] = 1533413232;
++        $output['local_ver']  = '%%PORTVERSION%%';
++        # obtained via git show --pretty='%H|%ct' -s %%PORTVERSION%%
++        $output['local_date'] = %%RELEASE_TIMESTAMP%%;
      }
      $output['db_schema']   = dbIsConnected() ? get_db_schema() : '?';
      $output['php_ver']     = phpversion();


More information about the svn-ports-head mailing list