]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - tools/makesrcdist
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / tools / makesrcdist
... / ...
CommitLineData
1#!/bin/sh
2#
3# "$Id: makesrcdist 181 2006-06-22 20:01:18Z jlovell $"
4#
5# makesrcdist - make a source distribution of CUPS.
6#
7
8# Make sure we are running in the right directory...
9if 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
15fi
16
17if 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.3svn"
22 revision="-r$rev"
23 fileversion="1.3svn-r$rev"
24 fileurl="ftp://ftp.easysw.com/pub/cups/test/cups-$fileversion-source.tar."
25 url="."
26else
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
37fi
38
39fileurl=`echo $fileurl | sed -e '1,$s/\\//\\\\\\//g'`
40
41echo Exporting $fileversion...
42rm -rf /tmp/cups-$version
43svn export $url /tmp/cups-$version
44
45echo Updating version information...
46cd /tmp/cups-$version/config-scripts
47
48sed -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
51mv cups-common.m4.new cups-common.m4
52cd ..
53
54echo Configuring...
55autoconf -f
56rm -rf autom4te*.cache
57rm -rf standards
58rm -rf tools
59cd ..
60
61echo -n Archiving...gz
62sed -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
67tar czf cups-$fileversion-source.tar.gz cups-$version
68
69echo -n ...bz2
70sed -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
75tar cjf cups-$fileversion-source.tar.bz2 cups-$version
76echo "..."
77
78echo Removing temporary files...
79rm -rf cups-$version
80
81echo "Done!"
82
83#
84# End of "$Id: makesrcdist 181 2006-06-22 20:01:18Z jlovell $".
85#