Bug 181661 - [maintainer-update] sysutils/automounter 1.4.7
Summary: [maintainer-update] sysutils/automounter 1.4.7
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Ruslan Makhmatkhanov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-29 22:50 UTC by kamikaze
Modified: 2013-08-30 23:50 UTC (History)
0 users

See Also:


Attachments
file.diff (1.29 KB, patch)
2013-08-29 22:50 UTC, kamikaze
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description kamikaze 2013-08-29 22:50:00 UTC
Port changes:
- Work around kern/181590, provided by Peter Holm
- Remove @dirrmtry etc/devd from the plist generator

automounter changes:
- Allow configuring additional arguments for tools like amq, rpcbind, logger ...
- Read only fallback for write protected storage devices
- Report to syslogd(8)

Fix: Patch attached with submission follows:
Comment 1 Ruslan Makhmatkhanov freebsd_committer freebsd_triage 2013-08-30 20:58:22 UTC
Responsible Changed
From-To: freebsd-ports-bugs->rm

I will take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-08-30 23:43:16 UTC
Author: rm
Date: Fri Aug 30 22:43:08 2013
New Revision: 325726
URL: http://svnweb.freebsd.org/changeset/ports/325726

Log:
  - update to 1.4.7
  - work around kern/181590, provided by Peter Holm
  - remove @dirrmtry etc/devd from the plist generator
  
  changelog:
  - allow configuring additional arguments for tools like amq, rpcbind, logger
  - read only fallback for write protected storage devices
  - report to syslogd(8)
  
  PR:		181661
  Submitted by:	Dominic Fandrey <kamikaze@bsdforen.de> (maintainer)

Modified:
  head/sysutils/automounter/Makefile
  head/sysutils/automounter/distinfo

Modified: head/sysutils/automounter/Makefile
==============================================================================
--- head/sysutils/automounter/Makefile	Fri Aug 30 22:31:38 2013	(r325725)
+++ head/sysutils/automounter/Makefile	Fri Aug 30 22:43:08 2013	(r325726)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	automounter
-PORTVERSION=	1.4.6
+PORTVERSION=	1.4.7
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/bsdadminscripts/${PORTNAME}
 EXTRACT_SUFX=	.tar.xz
@@ -20,10 +20,12 @@ MAN8=		${PORTNAME}.8
 
 plist: patch
 		@cd ${WRKSRC}; ./plist.sh -nodoc > ${PLIST}
-		@${ECHO} "@dirrmtry etc/devd" >> ${PLIST}
 
+# Use "amd -S" to avoid a vm locking panic, the scope of which has not yet
+# been determined. See kern/181590.
 do-install:
-		@cd ${WRKSRC}; ./install.sh -prefix=${PREFIX}
+		@cd ${WRKSRC}; ./install.sh -prefix=${PREFIX} \
+			-amd="/usr/sbin/amd -S"
 
 post-install:
 		@${JOT} -s- -b- 39

Modified: head/sysutils/automounter/distinfo
==============================================================================
--- head/sysutils/automounter/distinfo	Fri Aug 30 22:31:38 2013	(r325725)
+++ head/sysutils/automounter/distinfo	Fri Aug 30 22:43:08 2013	(r325726)
@@ -1,2 +1,2 @@
-SHA256 (automounter-1.4.6.tar.xz) = 234acaea33dadeae78c866e903063f79cb67186e8f86c93b79f90fbb340c7e7a
-SIZE (automounter-1.4.6.tar.xz) = 21200
+SHA256 (automounter-1.4.7.tar.xz) = 5ccfa21f00d6e1c396d3db4d42b5a1ab4304f80cc83215ca9a3699498760223c
+SIZE (automounter-1.4.7.tar.xz) = 21748
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Ruslan Makhmatkhanov freebsd_committer freebsd_triage 2013-08-30 23:43:38 UTC
State Changed
From-To: open->closed

Committed, thank you!