From owner-svn-ports-all@freebsd.org Fri Nov 4 08:02:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3182FC2FAAE; Fri, 4 Nov 2016 08:02:50 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E658138F; Fri, 4 Nov 2016 08:02:49 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA482n9w021371; Fri, 4 Nov 2016 08:02:49 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA482mrF021365; Fri, 4 Nov 2016 08:02:48 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201611040802.uA482mrF021365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 4 Nov 2016 08:02:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425303 - in head/emulators: linux_base-c6 linux_base-c7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Nov 2016 08:02:50 -0000 Author: bapt Date: Fri Nov 4 08:02:48 2016 New Revision: 425303 URL: https://svnweb.freebsd.org/changeset/ports/425303 Log: Fix modes for /compat/linux/proc When linprocfs is mounted the mode set to /compat/linux/proc is set to 555 while the package said 755 meaning pkg will try to change it 755 and fail preventing upgrade or installation of the package because linprocfs does not support changing attributes. Enforce it to 555 to prevent that situation Modified: head/emulators/linux_base-c6/Makefile head/emulators/linux_base-c6/pkg-plist.i386 head/emulators/linux_base-c6/pkg-plist.x86_64 head/emulators/linux_base-c7/Makefile head/emulators/linux_base-c7/pkg-plist.i386 head/emulators/linux_base-c7/pkg-plist.x86_64 Modified: head/emulators/linux_base-c6/Makefile ============================================================================== --- head/emulators/linux_base-c6/Makefile Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c6/Makefile Fri Nov 4 08:02:48 2016 (r425303) @@ -3,7 +3,7 @@ PORTNAME= c6 PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators linux PKGNAMEPREFIX= linux_base- Modified: head/emulators/linux_base-c6/pkg-plist.i386 ============================================================================== --- head/emulators/linux_base-c6/pkg-plist.i386 Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c6/pkg-plist.i386 Fri Nov 4 08:02:48 2016 (r425303) @@ -2363,7 +2363,7 @@ var/mail @dir lib/tls @dir mnt @dir opt -@dir proc +@dir(,,555) proc @dir selinux @dir srv @dir sys Modified: head/emulators/linux_base-c6/pkg-plist.x86_64 ============================================================================== --- head/emulators/linux_base-c6/pkg-plist.x86_64 Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c6/pkg-plist.x86_64 Fri Nov 4 08:02:48 2016 (r425303) @@ -2792,7 +2792,7 @@ var/mail @dir lib64/tls @dir mnt @dir opt -@dir proc +@dir(,,555) proc @dir selinux @dir srv @dir sys Modified: head/emulators/linux_base-c7/Makefile ============================================================================== --- head/emulators/linux_base-c7/Makefile Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c7/Makefile Fri Nov 4 08:02:48 2016 (r425303) @@ -2,7 +2,7 @@ PORTNAME= c7 PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators linux PKGNAMEPREFIX= linux_base- EXTRACT_ONLY= ${DISTFILES:N*.src.rpm*:Nfilesystem-*} Modified: head/emulators/linux_base-c7/pkg-plist.i386 ============================================================================== --- head/emulators/linux_base-c7/pkg-plist.i386 Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c7/pkg-plist.i386 Fri Nov 4 08:02:48 2016 (r425303) @@ -2589,7 +2589,7 @@ var/mail @dir etc/xinetd.d @dir mnt @dir opt -@dir proc +@dir(,,555) proc @dir srv @dir sys @dir usr/etc Modified: head/emulators/linux_base-c7/pkg-plist.x86_64 ============================================================================== --- head/emulators/linux_base-c7/pkg-plist.x86_64 Fri Nov 4 07:59:30 2016 (r425302) +++ head/emulators/linux_base-c7/pkg-plist.x86_64 Fri Nov 4 08:02:48 2016 (r425303) @@ -3039,7 +3039,7 @@ var/mail @dir etc/xinetd.d @dir mnt @dir opt -@dir proc +@dir(,,555) proc @dir srv @dir sys @dir usr/etc