]> git.ipfire.org Git - thirdparty/cups.git/blob - tools/makesrcdist
Load cups into easysw/current.
[thirdparty/cups.git] / tools / makesrcdist
1 #!/bin/sh
2 #
3 # "$Id: makesrcdist 5304 2006-03-18 01:21:37Z mike $"
4 #
5 # makesrcdist - make a source distribution of CUPS.
6 #
7
8 # Make sure we are running in the right directory...
9 if test ! -f tools/makesrcdist; then
10 echo "Run this script from the top-level CUPS source directory, e.g.:"
11 echo ""
12 echo " tools/makesrcdist $*"
13 echo ""
14 exit 1
15 fi
16
17 if test $# = 0; then
18 echo Updating for snapshot...
19 svn up
20 rev=`svnversion . | sed -e '1,$s/[a-zA-Z]//g'`
21 version="1.2svn"
22 revision="-r$rev"
23 fileversion="1.2svn-r$rev"
24 fileurl="ftp://ftp.easysw.com/pub/cups/test/cups-$fileversion-source.tar."
25 url="."
26 else
27 echo Creating tag for release...
28 rev="1"
29 version=$1
30 revision=""
31 fileversion=$1
32 fileurl="ftp://ftp.easysw.com/pub/cups/$version/cups-$fileversion-source.tar."
33 url="https://svn.easysw.com/public/cups/tags/release-$version"
34
35 svn copy https://svn.easysw.com/public/cups/trunk "$url" \
36 -m "Tag $version" || exit 1
37 fi
38
39 fileurl=`echo $fileurl | sed -e '1,$s/\\//\\\\\\//g'`
40
41 echo Exporting $fileversion...
42 rm -rf /tmp/cups-$version
43 svn export $url /tmp/cups-$version
44
45 echo Updating version information...
46 cd /tmp/cups-$version/config-scripts
47
48 sed -e '1,$s/^CUPS_VERSION=.*/CUPS_VERSION='$version'/' \
49 -e '1,$s/^CUPS_REVISION=.*/CUPS_REVISION='$revision'/' \
50 <cups-common.m4 >cups-common.m4.new
51 mv cups-common.m4.new cups-common.m4
52 cd ..
53
54 echo Configuring...
55 autoconf -f
56 rm -rf autom4te*.cache
57 rm -rf standards
58 rm -rf tools
59 cd ..
60
61 echo -n Archiving...gz
62 sed -e '1,$s/@CUPS_VERSION@/'$version'/' \
63 -e '1,$s/^Release:.*/Release: '$rev'/' \
64 -e '1,$s/^Source:.*/Source: '$fileurl'gz/' \
65 <cups-$version/packaging/cups.spec.in \
66 >cups-$version/packaging/cups.spec
67 tar czf cups-$fileversion-source.tar.gz cups-$version
68
69 echo -n ...bz2
70 sed -e '1,$s/@CUPS_VERSION@/'$version'/' \
71 -e '1,$s/^Release:.*/Release: '$rev'/' \
72 -e '1,$s/^Source:.*/Source: '$fileurl'bz2/' \
73 <cups-$version/packaging/cups.spec.in \
74 >cups-$version/packaging/cups.spec
75 tar cjf cups-$fileversion-source.tar.bz2 cups-$version
76 echo "..."
77
78 echo Removing temporary files...
79 rm -rf cups-$version
80
81 echo "Done!"
82
83 #
84 # End of "$Id: makesrcdist 5304 2006-03-18 01:21:37Z mike $".
85 #