From owner-svn-ports-all@FreeBSD.ORG Tue Sep 24 14:35:00 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1EE92F85; Tue, 24 Sep 2013 14:35:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C0DE2191; Tue, 24 Sep 2013 14:35:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8OEYxbQ033602; Tue, 24 Sep 2013 14:34:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8OEYxJf033601; Tue, 24 Sep 2013 14:34:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201309241434.r8OEYxJf033601@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 24 Sep 2013 14:34:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328139 - head 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.14 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: Tue, 24 Sep 2013 14:35:00 -0000 Author: bapt Date: Tue Sep 24 14:34:59 2013 New Revision: 328139 URL: http://svnweb.freebsd.org/changeset/ports/328139 Log: Add an entry about "create packages as a user" Modified: head/CHANGES Modified: head/CHANGES ============================================================================== --- head/CHANGES Tue Sep 24 14:14:06 2013 (r328138) +++ head/CHANGES Tue Sep 24 14:34:59 2013 (r328139) @@ -10,8 +10,21 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20130924: +AUTHOR: bapt@FreeBSD.org + + Stage aware ports can now create package without the requirement from + being root. + If a port really needs root anyway it should add NEED_ROOT in its + Makefile. + + For a port that needs special credential on files DO NOT RELY on + chown in post-install section but rely on @own, @group in pkg-plist + Be careful about rights on directories as pkg_install cannot store them + they needs to be done via @exec chown. + 20130923: -AUTHOT: bapt@FreeBSD.org +AUTHOR: bapt@FreeBSD.org The ports tree is now staged by default. With pkgng the sequence hasn't changed, the main difference is that creating package is now independent @@ -35,9 +48,9 @@ AUTHOT: bapt@FreeBSD.org a sample plist and it should always be _reviewed_ not directly used. NOTE: with staging only what is in the plist will be installed, nothing more, - meaning a port staged cannot have leftovers exect directories left. It is + meaning a port staged cannot have leftovers except directories left. It is really important to double check the pkg-plist to make sure all the files - the maintainer want to package are in! make makeplist can help in that area. + the maintainer wants to package are in! make makeplist can help in that area. 20130923: AUTHOR: mva@FreeBSD.org