commit: c847f4bdd98cbc59013d4d93322926c756d849c4 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Fri Aug 10 12:32:56 2018 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Fri Aug 10 12:32:56 2018 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=c847f4bd
Adding genpatchesrc.example file to help document genpatches release configuration file. genpatchesrc.example | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/genpatchesrc.example b/genpatchesrc.example new file mode 100644 index 0000000..b986ae5 --- /dev/null +++ b/genpatchesrc.example @@ -0,0 +1,44 @@ +# Notes: This file should reside in the root of the user's +# home directory who is doing the committing and be renamed +# to .genpatchsrc + +# Developers username for Gentoo VCS +USERNAME="<your username>" +ECHANGELOG_USER="<First Name> <Last Name> <[email protected]>" + +# The path to the directory where your clone of the the Gentoo +# linux-patches project (proj/linux-patches.git ) +# is checked out too. +LOCAL_PATCHES_TRUNK="/directory/linux-patches" + +# tmp directory where the tarballs are created along with a clone of the repo +LOCAL_TMP="/tmp" + +# Remote repository configuration +REMOTE_BASE="git+ssh://[email protected]/proj/linux-patches.git" + +# prefix naming of the tarballs that will be created +TARBALL_BASENAME="genpatches" +KERNEL_NAME="genpatches" + +# Should only be 'yes' if the website is hosted on your devspace. +# Currently this is limited # to one member of the kernel team +DO_WEBSITE="no" + +# this will create the email announcement of a release and send it too +# the gentoo-kernel mailing list +DO_EMAIL_ANNOUNCEMENT="yes" + +# Website/email settings +# directory where the website is built before upload +WEB_LOCAL="/directory/linux-patches-misc/web" + +#website location, only relevant if the gentoo kernel website is hosted on your devspace +WEB_GENPATCHES_BASE="dev.gentoo.org:/home/<username>/public_html/genpatches" + +# sendmail command used to send the announcement email +SENDMAIL="ssh <username>@dev.gentoo.org /usr/sbin/sendmail" + +# builds the three tarballs which make up a release of genpatches +WE_WANT="base extras experimental" +
