From c4f1c9917bbdce3a08fe5fe0e666315951fd9b64 Mon Sep 17 00:00:00 2001 From: Oskari Pirhonen Date: Sun, 29 Jan 2023 20:35:52 -0600 Subject: [PATCH] dev-python/gentoo-common: add 1, drop 0 Add info on exiting and re-entering the venv. Signed-off-by: Oskari Pirhonen Closes: https://github.com/gentoo/gentoo/pull/29336 Signed-off-by: Sam James --- .../{gentoo-common-0.ebuild => gentoo-common-1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) rename dev-python/gentoo-common/{gentoo-common-0.ebuild => gentoo-common-1.ebuild} (84%) diff --git a/dev-python/gentoo-common/gentoo-common-0.ebuild b/dev-python/gentoo-common/gentoo-common-1.ebuild similarity index 84% rename from dev-python/gentoo-common/gentoo-common-0.ebuild rename to dev-python/gentoo-common/gentoo-common-1.ebuild index 58e23e58f72d7..c09fd9e6d2b84 100644 --- a/dev-python/gentoo-common/gentoo-common-0.ebuild +++ b/dev-python/gentoo-common/gentoo-common-1.ebuild @@ -26,5 +26,12 @@ src_install() { python -m venv /path/to/venv . /path/to/venv/bin/activate pip install mypackage + + To exit the virtual environment, run: + + deactivate + + The virtual environment is not deleted, and can be re-entered by + re-sourcing the activate file. EOF }