From 2444bf09ee2324730cb0cbe9b5180c813e19bfb4 Mon Sep 17 00:00:00 2001 From: "Andreas K. Hüttel" Date: Tue, 9 Jun 2020 23:50:38 +0300 Subject: Update readme and record used make-tarball.sh version in tarball MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas K. Hüttel --- README.Gentoo.patches | 9 ++++++++- make-tarball.sh | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.Gentoo.patches b/README.Gentoo.patches index c6f94dc..b6ac163 100644 --- a/README.Gentoo.patches +++ b/README.Gentoo.patches @@ -15,7 +15,11 @@ original creators, etc... === Where === ============= -Currently, https://github.com/gentoo/glibc +https://gitweb.gentoo.org/fork/glibc.git/ + +The patch generation script and the base patchset for the start of a new +version branch (or for use with glibc git master) can be found at +https://gitweb.gentoo.org/proj/toolchain/glibc-patches.git/ =========== === How === @@ -24,3 +28,6 @@ Currently, https://github.com/gentoo/glibc Patches are named exactly as generated by "git format-patch". All patches thus apply with -p1 (so they can be used both with the legacy epatch function and the new, more strict eapply function). + + + ----------- diff --git a/make-tarball.sh b/make-tarball.sh index 1063e1b..c3ac509 100755 --- a/make-tarball.sh +++ b/make-tarball.sh @@ -44,6 +44,8 @@ if [[ ! -z "${mystatusinfo}" ]] ; then exit 1 fi +mydescpatches=$(git describe) + # go into the gentoo glibc repo cd "${mypathglibc}" @@ -65,6 +67,8 @@ if [[ ! -z "${mystatusinfo}" ]] ; then exit 1 fi +mydescglibc=$(git describe) + # check if the tag already exists mytaginfo=$(git tag -l|grep "gentoo/glibc-${PV}-${pver}") @@ -96,6 +100,9 @@ mkdir -p tmp/patches cp "${mypathpatches}/README.Gentoo.patches" tmp/ || exit 1 +echo >> "tmp/README.Gentoo.patches" +echo "Generated with make-tarball.sh ${mydescpatches}" >> "tmp/README.Gentoo.patches" + # create and rename patches if [[ "${PV}" == "9999" ]]; then -- cgit v1.2.3-65-gdbad