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 |
|
---|
10 | CVStag=${1-HEAD}
|
---|
11 | TARver=${2-$(date +%Y%m%d)}
|
---|
12 |
|
---|
13 | echo "Creating glibc-${TARver}.tar.bz2 and glibc-ports-${TARver}.tar.bz2 from the ${CVStag} CVS Tag."
|
---|
14 |
|
---|
15 | tmpdir="$(mktemp -d)"
|
---|
16 | if test ! -d "${tmpdir}"; then
|
---|
17 | tmpdir="/tmp/glibc-XXXX"
|
---|
18 | mkdir -pv "${tmpdir}"
|
---|
19 | fi
|
---|
20 |
|
---|
21 | if test ! -d "${tmpdir}"; then
|
---|
22 | echo "Failed to create temp directory: ${tmpdir}"
|
---|
23 | exit 1
|
---|
24 | fi
|
---|
25 |
|
---|
26 | echo "Use \"anoncvs\" for the password."
|
---|
27 | cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc login
|
---|
28 | if test $? -ne 0; then
|
---|
29 | echo "Failed to login to glibc cvs server."
|
---|
30 | rm -rf "${tmpdir}"
|
---|
31 | exit 1
|
---|
32 | fi
|
---|
33 |
|
---|
34 | pushd "${tmpdir}"
|
---|
35 |
|
---|
36 | # Checkout from the cvs glibc
|
---|
37 | cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc co -r "${CVStag}" libc
|
---|
38 | mv libc "glibc-${TARver}"
|
---|
39 | if test $? -ne 0; then
|
---|
40 | echo "Failed to check out libc, Leaving temp files in ${tmpdir}."
|
---|
41 | exit 1
|
---|
42 | fi
|
---|
43 |
|
---|
44 | # Checkout from the cvs glibc
|
---|
45 | cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/glibc co -r "${CVStag}" ports
|
---|
46 | mv ports "glibc-ports-${TARver}"
|
---|
47 | if test $? -ne 0; then
|
---|
48 | echo "Failed to check out libc, Leaving temp files in ${tmpdir}."
|
---|
49 | exit 1
|
---|
50 | fi
|
---|
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.
|
---|
54 | find "glibc-${TARver}" "glibc-ports-${TARver}" -name configure | xargs touch
|
---|
55 |
|
---|
56 | # Clean out CVS Files
|
---|
57 | find "glibc-${TARver}" "glibc-ports-${TARver}" -name CVS -type d | xargs rm -rf
|
---|
58 | find "glibc-${TARver}" "glibc-ports-${TARver}" -name .cvsignore | xargs rm -rf
|
---|
59 |
|
---|
60 | # Create tarballs
|
---|
61 | echo "Creating Tarballs"
|
---|
62 | tar cvjf "glibc-${TARver}.tar.bz2" "glibc-${TARver}"
|
---|
63 | tar 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 |
|
---|
67 | popd
|
---|
68 | mv "${tmpdir}/glibc-${TARver}.tar.bz2" .
|
---|
69 | mv "${tmpdir}/glibc-ports-${TARver}.tar.bz2" .
|
---|
70 |
|
---|
71 | rm -rf "${tmpdir}"
|
---|