Overview
Comment:Script qui n'est plus utilisé, utiliser "make release" dans src/ à la place
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 29475549acecdfeb6e2e2aee99c4c1acd69ac5c9
User & Date: bohwaz on 2018-05-11 12:48:20
Other Links: manifest | tags
Context
2018-05-16
21:22
Correction des URI dans les pages wiki (pages avec un tiret à la fin ou au début de l'URI) check-in: 3bd6986537 user: bohwaz tags: trunk
2018-05-11
12:48
Script qui n'est plus utilisé, utiliser "make release" dans src/ à la place check-in: 29475549ac user: bohwaz tags: trunk
12:43
Nouvelle version stable 0.8.3 check-in: bd32e64b24 user: bohwaz tags: trunk, stable, 0.8.3
Changes

Deleted tools/make_release.sh version [a8827534a3].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh

cd `dirname $0`
MY_PATH=$PWD
MY_DIR=`dirname ${MY_PATH}`

if [ ! -f "${MY_DIR}/src/VERSION" ]
then
    echo "${MY_DIR} n'est pas un répertoire de développement Garradin"
    exit 1
fi

#MANIFEST_VERSION=`cat manifest.uuid | cut -c1-10`
#DATE=`date +'%Y%m%d'`

VERSION=`cat ${MY_DIR}/src/VERSION`
TMPDIR=`mktemp -d`

cp -Lr ${MY_DIR}/src ${TMPDIR}/garradin-${VERSION} > /dev/null

cd ${TMPDIR}

mkdir ${TMPDIR}/garradin-${VERSION}/www/squelettes

tar cjvf "${MY_PATH}/garradin-${VERSION}.tar.bz2" --wildcards-match-slash \
    --numeric-owner --owner=0 --group=0 \
    --exclude-vcs \
    --exclude '*/cache/compiled/*.php' \
    --exclude '*/cache/static/*' \
    --exclude 'www/squelettes/*' \
    --exclude 'www/elements' \
    --exclude '*.sqlite' \
    --exclude '*.log' \
    --exclude 'plugins/*.gz' \
    --exclude 'config.local.php' \
    garradin-${VERSION}

rm -rf ${TMPDIR}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<