From nobody Tue Aug 29 20:06:44 2023 X-Original-To: freebsd-ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4RZzR35L25z4s9ff for ; Tue, 29 Aug 2023 20:23:59 +0000 (UTC) (envelope-from einar@isnic.is) Received: from mx01.isnic.is (mx01.isnic.is [193.4.58.133]) (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 (2048 bits) client-digest SHA256) (Client CN "mx01.isnic.is", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4RZzR23n9Kz3FKW for ; Tue, 29 Aug 2023 20:23:58 +0000 (UTC) (envelope-from einar@isnic.is) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=isnic.is header.s=20200921 header.b=HB1w18Vh; spf=pass (mx1.freebsd.org: domain of einar@isnic.is designates 193.4.58.133 as permitted sender) smtp.mailfrom=einar@isnic.is; dmarc=pass (policy=quarantine) header.from=isnic.is Received: from ht-mailstore01.isnic.is (ht-mailstore01.isnic.is [185.93.156.2]) by mx01.isnic.is (Postfix) with ESMTPS id D6D5B20329 for ; Tue, 29 Aug 2023 20:23:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=isnic.is; s=20200921; t=1693340629; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=rTCNeEoaICUoBEgQSsBTRvXtr11nCEp5ARp3EB51JP4=; b=HB1w18Vh9Z9yTlRE5/vU/Evdrfav3mGziZtsx3opcNlQAgTE2jwzVSS9OwFxP9bPVDFH0U nG3UM5FtNtjekFFHQzfOMELW6lL44RaMJBc5fcrwHKNDgVHCvHFNUir3IXwXoxbISRct6E /SXUo6towsZ53UyuJ9zK6pTgCePE/akfaMbBwDDXOcORYXuWjQtATg7hCCgdn9CVedmDbH R0fNlVMR1fWw9We+1gMAe1snVEgXFbwv25Xsw54iJtv84IuiPByHSRU3Gfc0YKHEL6oHa4 kkFP/kVPynbxIyy2QY+dYSdxzpwMFYVepXZv0XZx0UEhvXdrNoGTSMjsQdXSEQ== Received: from smtpclient.apple (unknown [185.93.159.194]) by ht-mailstore01.isnic.is (Postfix) with ESMTPS id CD7731ABAC for ; Tue, 29 Aug 2023 20:23:49 +0000 (UTC) From: =?utf-8?Q?Einar_Bjarni_Halld=C3=B3rsson?= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3731.700.6\)) Subject: UIDs and GIDs in ports overlay Message-Id: <3CEBDAA2-76AC-4323-9B81-952AC9C227D3@isnic.is> Date: Tue, 29 Aug 2023 20:06:44 +0000 To: FreeBSD Mailing List X-Mailer: Apple Mail (2.3731.700.6) X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.50 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MV_CASE(0.50)[]; DMARC_POLICY_ALLOW(-0.50)[isnic.is,quarantine]; R_DKIM_ALLOW(-0.20)[isnic.is:s=20200921]; R_SPF_ALLOW(-0.20)[+ip4:193.4.58.0/23]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-ports@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:1850, ipnet:193.4.58.0/23, country:IS]; MIME_TRACE(0.00)[0:+]; MID_RHS_MATCH_FROM(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; TO_DN_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; DKIM_TRACE(0.00)[isnic.is:+]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4RZzR23n9Kz3FKW Hi, We migrated from a cloned ports tree to using ports overlay in poudriere = a few months ago. We maintain a few ports and create and merge patches = for others, and we add them to our overlay while testing. We find this a = much happier workflow than dealing with git merge conflicts. I=E2=80=99m currently working on a new port, which runs as a daemon so I = want to add new UID and GID. I tried adding the files UIDs and GIDs to = the root of the overlay tree, but they don=E2=80=99t seem to have the = desired effect and the build fails with ** Cannot find any information = about group `reposilite' in /usr/ports/GIDs. Am I missing something? Should I just test it without reserving UID and = GID and wait until it gets merged upstream? .einar=