From owner-svn-ports-head@freebsd.org Sun May 17 08:21:06 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 452252CA34C; Sun, 17 May 2020 08:21:06 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Pw8L15y8z45jR; Sun, 17 May 2020 08:21:06 +0000 (UTC) (envelope-from arrowd@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 211E1D828; Sun, 17 May 2020 08:21:06 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04H8L5PL017259; Sun, 17 May 2020 08:21:05 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04H8L5GH017256; Sun, 17 May 2020 08:21:05 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <202005170821.04H8L5GH017256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Sun, 17 May 2020 08:21:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535524 - in head: . x11/sddm X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head: . x11/sddm X-SVN-Commit-Revision: 535524 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2020 08:21:06 -0000 Author: arrowd Date: Sun May 17 08:21:04 2020 New Revision: 535524 URL: https://svnweb.freebsd.org/changeset/ports/535524 Log: x11/sddm: Switch SDDM user's HOME directory from /usr/local/etc/sddm/home to /var/lib/sddm, as sddm(5) man page requests. PR: 244756 Reviewed by: tcberner, adridg Added: head/x11/sddm/pkg-message (contents, props changed) Modified: head/UIDs head/UPDATING head/x11/sddm/Makefile Modified: head/UIDs ============================================================================== --- head/UIDs Sun May 17 07:48:05 2020 (r535523) +++ head/UIDs Sun May 17 08:21:04 2020 (r535524) @@ -164,7 +164,7 @@ opendnssec:*:215:215::0:0:Opendnssec Pseudo User:/none nsd:*:216:216::0:0:NSD DNS Server:/nonexistent:/usr/sbin/nologin anvil:*:217:217::0:0:anvil certificate dropper:/var/db/anvil:/bin/sh zap:*:218:218::0:0:zap user:/usr/local/zap:/bin/sh -sddm:*:219:219::0:0:SDDM Display Manager user:/usr/local/etc/sddm/home:/usr/sbin/nologin +sddm:*:219:219::0:0:SDDM Display Manager user:/var/lib/sddm:/usr/sbin/nologin bs:*:220:220::0:0:Big Sister:/usr/local/bigsister:/bin/sh opensips:*:221:221::0:0:OpenSIPS user:/nonexistent:/usr/sbin/nologin rtpproxy:*:222:222::0:0:& user:/nonexistent:/sbin/nologin Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun May 17 07:48:05 2020 (r535523) +++ head/UPDATING Sun May 17 08:21:04 2020 (r535524) @@ -5,6 +5,20 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20200517: + AFFECTS: users of x11/sddm + AUTHOR: arrowd@FreeBSD.org + + The home directory of sddm user has been moved to /var/lib/sddm. It is advised + to run following commands as root after updating the package: + + # pw usermod -n sddm -d /var/lib/sddm + # pwd_mkdb /etc/master.passwd + # mv /usr/local/etc/sddm/home/state.conf /var/lib/sddm/state.conf + # rm -rf /usr/local/etc/sddm/home + + Otherwise, SDDM will keep using /usr/local/etc/sddm/home/ as its HOME. + 20200515: AFFECTS: users of devel/libphutil, devel/arcanist-lib, devel/phabricator AUTHOR: grembo@FreeBSD.org Modified: head/x11/sddm/Makefile ============================================================================== --- head/x11/sddm/Makefile Sun May 17 07:48:05 2020 (r535523) +++ head/x11/sddm/Makefile Sun May 17 08:21:04 2020 (r535524) @@ -3,7 +3,7 @@ PORTNAME= sddm PORTVERSION= 0.18.1 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11 MAINTAINER= kde@FreeBSD.org Added: head/x11/sddm/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sddm/pkg-message Sun May 17 08:21:04 2020 (r535524) @@ -0,0 +1,12 @@ +[ +{ type: upgrade + message: <