From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1525570-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 552DB15806E
	for <garchives@archives.gentoo.org>; Sun,  4 Jun 2023 18:39:13 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 79308E089F;
	Sun,  4 Jun 2023 18:39:12 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(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)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 593FEE089F
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 18:39:12 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 3CE6E340E55
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 18:39:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 74291A5C
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 18:39:09 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1685900126.5f3a0c3cbf4c85b69a3937b792a37ae8d95d6b8a.ulm@gentoo>
Subject: [gentoo-commits] proj/eselect:master commit in: doc/, /
X-VCS-Repository: proj/eselect
X-VCS-Files: ChangeLog doc/developer-guide.txt
X-VCS-Directories: / doc/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 5f3a0c3cbf4c85b69a3937b792a37ae8d95d6b8a
X-VCS-Branch: master
Date: Sun,  4 Jun 2023 18:39:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 249b6c03-6a14-42b1-90b7-f443bd8afe32
X-Archives-Hash: f5cca8004fde058fea742633845e25ef

commit:     5f3a0c3cbf4c85b69a3937b792a37ae8d95d6b8a
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 17:35:26 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jun  4 17:35:26 2023 +0000
URL:        https://gitweb.gentoo.org/proj/eselect.git/commit/?id=5f3a0c3c

Add subsection about module testing to developer guide

* doc/developer-guide.txt: Add subsection about module testing.
Thanks to torsi <AT> fi.uba.ar for the suggestion. Bug 907844.

Original-author: Lemon Lime <torsi <AT> fi.uba.ar>
Closes: https://bugs.gentoo.org/907844
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 ChangeLog               | 5 +++++
 doc/developer-guide.txt | 8 ++++++++
 2 files changed, 13 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index ce13578..afa6885 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-06-04  Ulrich Müller  <ulm@gentoo.org>
+
+	* doc/developer-guide.txt: Add subsection about module testing.
+	Thanks to torsi@fi.uba.ar for the suggestion. Bug 907844.
+
 2023-05-11  Ulrich Müller  <ulm@gentoo.org>
 
 	* bin/eselect.in: Update shebang to use EPREFIX. Bug 905934.

diff --git a/doc/developer-guide.txt b/doc/developer-guide.txt
index 694b64d..16393cb 100644
--- a/doc/developer-guide.txt
+++ b/doc/developer-guide.txt
@@ -164,6 +164,14 @@ All modules contributed to eselect should have a header indicating
 copyright. This must be an exact copy of the header in the above
 example (except for the years, of course).
 
+Adding modules for testing
+--------------------------
+
+eselect modules can be manually added to the system. This is specially
+useful when an eselect module is being developed and needs testing.
+Copying (or symlinking) the eselect module to ``~/.eselect/modules/``
+will make eselect aware of it.
+
 Standard action names
 ---------------------