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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
<?xml version="1.0" encoding="utf-8"?>
<project name="phorkie" default="zip" basedir=".">
<!--
phorkie phing build file.
This script should provide a one-stop tool for all administrative
tasks around phorkie, like creating a release version,
tagging a release
-->
<property file="build.properties" />
<property name="version-m" value="0.1" />
<property name="version" value="0.1.0" />
<property name="stability" value="alpha" />
<property name="releasenotes" value="
First release
" />
<property name="zipfile" value="${phing.project.name}-${version}.zip" />
<property name="pkgfile" value="${phing.project.name}-${version}.tgz" />
<property name="distfile" value="dist/${zipfile}" />
<property name="distpkgfile" value="dist/pear/${pkgfile}" />
<property name="sfproject" value="phorkie" />
<property name="sffilepath" value="p/ph/phorkie/" />
<fileset id="fs.zip" dir=".">
<include name="data/**"/>
<include name="src/**"/>
<include name="www/**"/>
<include name="LICENSE"/>
<include name="README.rst"/>
<exclude name="**/.gitignore/"/>
<exclude name="data/config.php"/>
</fileset>
<fileset id="fs.doc" dir=".">
<include name="README.rst"/>
</fileset>
<taskdef name="rST" classname="phing.tasks.ext.rSTTask" />
<taskdef name="d51pearpkg2" classname="phing.tasks.ext.d51PearPkg2Task" />
<target name="zip" depends="check"
description="Create zip file for release"
>
<!--
The release file is for end users, so it is safe to
remove anything developer-related.
Test your zip with: unzip -l phorkie-0.1.0.zip
-->
<echo msg="Creating distribution zip for phorkie ${version}"/>
<delete file="${distfile}" failonerror="false"/>
<zip destfile="${distfile}" prefix="${phing.project.name}-${version}/">
<fileset refid="fs.zip"/>
</zip>
</target>
<target name="package" depends="check"
description="Creates the pear package"
>
<d51pearpkg2 dir="." baseinstalldir="/">
<name>phorkie</name>
<summary>Self-hosted pastebin software</summary>
<description>
Self-hosted pastebin software written in PHP.
Pastes are editable, may have multiple files and are stored in git repositories.
</description>
<channel>phorkie.sourceforge.net</channel>
<lead user="cweiske" name="Christian Weiske" email="cweiske@cweiske.de" />
<license>AGPL</license>
<version release="${version}" api="${version}" />
<stability release="${stability}" api="${stability}" />
<notes>${releasenotes}</notes>
<dependencies>
<php minimum_version="5.2.0" />
<pear minimum_version="1.9.0" />
<package name="Date_HumanDiff"
channel="pear.php.net"
minimum_version="0.1.0"
/>
<package name="VersionControl_Git"
channel="pear.php.net"
minimum_version="0.4.4"
/>
<package name="geshi"
channel="mediawiki.googlecode.com/svn"
minimum_version="1.0.0"
/>
<package name="Twig"
channel="pear.twig-project.org"
minimum_version="1.6.0"
/>
</dependencies>
<!-- map directory (key) to role -->
<dirroles key="www">www</dirroles>
<dirroles key="data">data</dirroles>
<dirroles key="src">php</dirroles>
<!-- do not add the following files to the package.
copied from excludes above -->
<ignore>**/.gitignore</ignore>
<ignore>**/.svn</ignore>
<ignore>build*</ignore>
<ignore>data/config.php</ignore>
<ignore>dist/**</ignore>
<ignore>*.properties</ignore>
<ignore>*.tgz</ignore>
<replacement path="www/www-header.php"
type="pear-config" from="@data_dir@" to="data_dir"
/>
</d51pearpkg2>
<!-- time to fix the package.xml file since the task does not
allow everything we need:
- strip the base directory names like src, data and www
- remove that dumb baseinstalldir from files
- md5sums are generated automatically when packaging
-->
<!-- yes, we need to generate a 2nd file and move it back -->
<copy file="package.xml" tofile="package2.xml" overwrite="true">
<filterchain>
<replaceregexp>
<!-- remove md5sums -->
<regexp
pattern="md5sum="[a-z0-9]{32}" "
replace=""
/>
<!-- remove baseinstalldir for files -->
<regexp
pattern="<file baseinstalldir="/""
replace="<file"
/>
<!-- install-as for different directories -->
<regexp
pattern="(<file name="data/(.+?)")"
replace="\1 install-as="\2""
/>
<regexp
pattern="(<file name="doc/(.+?)")"
replace="\1 install-as="\2""
/>
<regexp
pattern="(<file name="tests/(.+?)")"
replace="\1 install-as="\2""
/>
<regexp
pattern="(<file name="www/(.+?)")"
replace="\1 install-as="phorkie/\2""
/>
<regexp
pattern="(<file name="src/(.+?)")"
replace="\1 install-as="\2""
/>
</replaceregexp>
</filterchain>
</copy>
<move file="package2.xml" tofile="package.xml" overwrite="true" />
<!-- package up -->
<exec command="pear package" passthru="true" />
<move file="${pkgfile}" todir="dist/pear/" />
<delete file="package.xml" failonerror="true" />
</target>
<target name="build-docs" description="render documentation">
<rST format="html" uptodate="true">
<fileset refid="fs.doc"/>
<mapper type="regexp" from="^(.+?).rst$" to="dist/docs/\1.html"/>
</rST>
</target>
<target name="clean-docs" description="delete rendered documentation files">
<delete dir="dist/docs" includeemptydirs="yes"/>
</target>
<target name="release" depends="check,zip,package,deploy-sf"
description="Release the version on sourceforge"
>
<!-- meta-target -->
</target>
<!--
/home/frs/project/p/ph/phorkie/phorkie/v0.1/
/home/frs/project/p/ph/phorkie/phorkie/v0.1/phorkie-v0.1.0.zip
/home/frs/project/p/ph/phorkie/phorkie/v0.1/phorkie-v0.1.1.zip
https://sourceforge.net/apps/trac/sourceforge/wiki/Release%20files%20for%20download
-->
<target name="deploy-sf" depends="check,zip"
description="Upload release to sourceforge"
>
<delete dir="dist/deploy-sf" /><!-- make empty -->
<mkdir dir="dist/deploy-sf" />
<mkdir dir="dist/deploy-sf/v${version-m}" />
<copy file="${distfile}" tofile="dist/deploy-sf/v${version-m}/${zipfile}"/>
<!-- test
<exec command="rsync -av dist/deploy-sf/ /tmp/test/" escape="false" />
-->
<exec
command="rsync -av -e ssh dist/deploy-sf/ ${sfuser},${sfproject}@frs.sourceforge.net:/home/frs/project/${sffilepath}/${sfproject}/"
escape="false" checkreturn="false"
/>
<!-- rsync always returns code 23 on sourceforge releases, so we
can't check return values -->
</target>
<target name="check"
description="Check variables"
>
<fail unless="version" message="Version not defined!" />
<fail unless="sfuser" message="Sourceforge username not defined!" />
<fail unless="sfproject" message="Sourceforge project name not defined!" />
<fail unless="sffilepath" message="Sourceforge project file path not defined!" />
<mkdir dir="dist" />
</target>
</project>
|