diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-08-21 23:47:56 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-08-21 23:47:56 +0000 |
commit | 05832245e26758d5f758038024e86f2082471a10 (patch) | |
tree | 6260e10977bb2650c9358326a2ae5521c8352640 /build.xml | |
parent | d80fcf8de6440fd31f16bb4106fe9e373fa40308 (diff) | |
parent | 25baf614b8b00bb39b9d35cf6ce5ce79f0954aeb (diff) | |
download | semanticscuttle-05832245e26758d5f758038024e86f2082471a10.tar.gz semanticscuttle-05832245e26758d5f758038024e86f2082471a10.tar.bz2 |
Merge branch 'pearpkg'
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@717 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 159 |
1 files changed, 158 insertions, 1 deletions
@@ -10,12 +10,26 @@ <property name="version-m" value="0.97" /> <property name="version" value="0.97.0" /> + <property name="stability" value="beta" /> + <property name="releasenotes" value="- Many SQL optimizations +- SemanticScuttle shows bookmarks 4 times faster now +- New config option to skip 'SET NAMES UTF8' call: $dbneedssetnames +- Do not highlight admin bookmarks when $enableAdminColors is disabled +- Add russian translation +- Make HTML export follow the specifications a bit better +- Fix bug #2953732: faulty error message for duplicate bookmarks +- Fix bug #2960663: do not send content-type headers twice for ajax/api scripts +- Fix bug #2976593: fr_FR locale is vietnamese +" /> <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="sfproject" value="SemanticScuttle" /> <property name="sffilepath" value="s/se/semanticscuttle/" /> <property name="svnpath" value="https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/" /> + <taskdef classname="phing.tasks.ext.d51PearPkg2Task" name="d51pearpkg2" /> + <target name="zip" depends="check" description="Create zip file for release" > @@ -48,7 +62,150 @@ - <target name="release" depends="check,zip,deploy-sf,svntag" + <target name="package" depends="check" + description="Creates the pear package" + > + <!-- fixme: create package.xml with d51pearpkg2 --> + <d51pearpkg2 dir="." baseinstalldir="/"> + <name>SemanticScuttle</name> + <summary>A social bookmarking tool</summary> + <description> + A social bookmarking tool experimenting with new features + like structured tags or collaborative descriptions of tags. + </description> + <channel>__uri</channel> + + <lead user="cweiske" name="Christian Weiske" email="cweiske@cweiske.de" /> + <license>GPL</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.8.1" /> + + <package name="HTML_QuickForm2" + channel="pear.php.net" + minimum_version="0.4.0" + /> + + </dependencies> + + <!-- map directory (key) to role --> + <dirroles key="www">www</dirroles> + <dirroles key="data">data</dirroles> + <dirroles key="doc">doc</dirroles> + <dirroles key="src">php</dirroles> + <dirroles key="tests">test</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>data/locales/messages.po</ignore> + <ignore>data/locales/*/LC_MESSAGES/messages.po</ignore> + <ignore>dist/**</ignore> + <ignore>doc/developers/**</ignore> + <ignore>scripts/**</ignore> + <ignore>src/php-gettext/examples/**</ignore> + <ignore>src/php-gettext/bin/**</ignore> + <ignore>*.tgz</ignore> + + <replacement + path="src/SemanticScuttle/header.php" + type="pear-config" + from="@data_dir@" to="data_dir" + /> + <replacement + path="www/www-header.php" + type="pear-config" + from="@data_dir@" to="data_dir" + /> + <replacement + path="tests/prepare.php" + type="pear-config" + from="@data_dir@" to="data_dir" + /> + + <changelog version="0.97" date="2010-06-09" license="GPL"> +- Many SQL optimizations - SemanticScuttle shows bookmarks 4 times faster now +- New config option to skip "SET NAMES UTF8" call: $dbneedssetnames +- Do not highlight admin bookmarks when $enableAdminColors is disabled +- Add russian translation +- Make HTML export follow the specifications a bit better +- Fix bug #2953732: faulty error message for duplicate bookmarks +- Fix bug #2960663: do not send content-type headers twice for ajax/api scripts +- Fix bug #2976593: fr_FR locale is vietnamese + </changelog> + + <!-- <dirroles key="bin">script</dirroles> --> + <!-- <replacement path="bin/doctrine" type="pear-config" from="@php_bin@" to="php_bin" /> --> + <!-- <release> + <install as="doctrine" name="bin/doctrine" /> + --> + </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="SemanticScuttle/\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="release" depends="check,zip,package,deploy-sf,svntag" description="Release the version on sourceforge" > <!-- meta-target --> |