From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D0A881381F4 for ; Tue, 14 Aug 2012 15:29:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD1C321C003; Tue, 14 Aug 2012 15:29:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 96B6721C003 for ; Tue, 14 Aug 2012 15:29:13 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D68751B400B for ; Tue, 14 Aug 2012 15:29:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8BDABE543A for ; Tue, 14 Aug 2012 15:29:11 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1344958114.63e26c3a2ccb2ff83e8d86616fd8c4a390090248.sping@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: HACKING X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 63e26c3a2ccb2ff83e8d86616fd8c4a390090248 X-VCS-Branch: master Date: Tue, 14 Aug 2012 15:29:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ceb3ad74-7377-407e-a0e7-51567f9c79c1 X-Archives-Hash: 06191acd28c800005c9ab0cf94d69080 commit: 63e26c3a2ccb2ff83e8d86616fd8c4a390090248 Author: Sebastian Pipping pipping org> AuthorDate: Tue Aug 14 15:28:34 2012 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Tue Aug 14 15:28:34 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=63e26c3a Extend docs on release process --- HACKING | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/HACKING b/HACKING index 9df627e..a2e197e 100644 --- a/HACKING +++ b/HACKING @@ -19,9 +19,23 @@ Rolling a release: - Bump the version in the main genkernel file. - echangelog "Bump version to ${PV}" - git commit -a -m "Bump version to ${PV}" +- make dist - git tag -a -m "Tag release v${PV}" v${PV} - git push ${REMOTE} master --tags -- make dist - upload genkernel-${PV}.tar.bz2 to the hosting: scp genkernel-${PV}.tar.bz2 ${USER}@dev.gentoo.org:/space/distfiles-local/ +- copy to portage's DISTDIR so you can bump the ebuild + before the tarball hits distfile mirrors + - cp genkernel-${PV}.tar.bz2 /usr/portage/distfiles/ +- Bump the ebuild +- Propagate ebuild changes to the live ebuild - check open bugs with keyword "InSVN" or "InVCS" for closability + and close these bugs with a comment like "Fixed in ${PV}, just released. Closing." +- Send a mail with subject "genkernel ${PV} released" to both + and . + Use + + PV_PREV=$(git tag -l | tail -n 2 | head -n 1) + git diff ${PV_PREV}..${PV} ChangeLog | /bin/grep '^+\($\| \)' | sed 's|^+ *||' | xsel + + to generate that the mail body.