source: scripts/fetch/glibc.sh @ cd317ff

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since cd317ff was f9b3690b, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Add script to generate glibc tarballs from a CVS tag name.

  • Property mode set to 100755
File size: 2.1 KB
Line 
1#!/bin/bash
2# Written By: Joe Ciccone <jciccone at gmail dot com>
3
4# Usage, glibc.sh [cvs-tag] [tarball-version]
5# An example of a CVS tag would be HEAD or glibc-2_9
6# An example of a tarball version would be say the date, or 2.9, it will be
7#   inserted into the output tarbal filename,
8#   eg, glibc-[tarball-version].tar.bz2
9
10CVStag=${1-HEAD}
11TARver=${2-$(date +%Y%m%d)}
12
13echo "Creating glibc-${TARver}.tar.bz2 and glibc-ports-${TARver}.tar.bz2 from the ${CVStag} CVS Tag."
14
15tmpdir="$(mktemp -d)"
16if test ! -d "${tmpdir}"; then
17  tmpdir="/tmp/glibc-XXXX"
18  mkdir -pv "${tmpdir}"
19fi
20
21if test ! -d "${tmpdir}"; then
22  echo "Failed to create temp directory: ${tmpdir}"
23  exit 1
24fi
25
26echo "Use \"anoncvs\" for the password."
27cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc login
28if test $? -ne 0; then
29  echo "Failed to login to glibc cvs server."
30  rm -rf "${tmpdir}"
31  exit 1
32fi
33
34pushd "${tmpdir}"
35
36# Checkout from the cvs glibc
37cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc co -r "${CVStag}" libc
38mv libc "glibc-${TARver}"
39if test $? -ne 0; then
40  echo "Failed to check out libc, Leaving temp files in ${tmpdir}."
41  exit 1
42fi
43
44# Checkout from the cvs glibc
45cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc co -r "${CVStag}" ports
46mv ports "glibc-ports-${TARver}"
47if test $? -ne 0; then
48  echo "Failed to check out libc, Leaving temp files in ${tmpdir}."
49  exit 1
50fi
51
52# If the timestamp of configure.in is newer the configure glibc will try to
53# reconfigure itself, this can cause some errors while cross-compiling.
54find "glibc-${TARver}" "glibc-ports-${TARver}" -name configure | xargs touch
55
56# Clean out CVS Files
57find "glibc-${TARver}" "glibc-ports-${TARver}" -name CVS -type d | xargs rm -rf
58find "glibc-${TARver}" "glibc-ports-${TARver}" -name .cvsignore | xargs rm -rf
59
60# Create tarballs
61echo "Creating Tarballs"
62tar cvjf "glibc-${TARver}.tar.bz2" "glibc-${TARver}"
63tar cvjf "glibc-ports-${TARver}.tar.bz2" "glibc-ports-${TARver}"
64
65# echo Pop back to the orig working directory and mv the tarballs over
66
67popd
68mv "${tmpdir}/glibc-${TARver}.tar.bz2" .
69mv "${tmpdir}/glibc-ports-${TARver}.tar.bz2" .
70
71rm -rf "${tmpdir}"
Note: See TracBrowser for help on using the repository browser.