nearly there; using d51pearpkg2 now

This commit is contained in:
Christian Weiske 2010-08-22 00:25:54 +02:00
parent 8798309bfe
commit d51768ab40
2 changed files with 55 additions and 46 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
dist/ dist/
build.properties build.properties
package.xml

100
build.xml
View File

@ -27,6 +27,8 @@
<property name="sffilepath" value="s/se/semanticscuttle/" /> <property name="sffilepath" value="s/se/semanticscuttle/" />
<property name="svnpath" value="https://semanticscuttle.svn.sourceforge.net/svnroot/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" <target name="zip" depends="check"
description="Create zip file for release" description="Create zip file for release"
> >
@ -63,59 +65,65 @@
description="Creates the pear package" description="Creates the pear package"
> >
<!-- fixme: create package.xml with d51pearpkg2 --> <!-- fixme: create package.xml with d51pearpkg2 -->
<pearpkg2 name="SemanticScuttle" dir="."> <d51pearpkg2 dir="." baseinstalldir="/">
<option name="packagefile" value="package.xml" /> <name>SemanticScuttle</name>
<option name="channel" value="__uri" /> <summary>A social bookmarking tool</summary>
<option name="summary" value="A social bookmarking tool"/> <description>
<option name="description" value="A social bookmarking tool experimenting with new features like structured tags or collaborative descriptions of tags."/> A social bookmarking tool experimenting with new features
<option name="apiversion" value="${version}" /> like structured tags or collaborative descriptions of tags.
<option name="apistability" value="${stability}" /> </description>
<option name="releaseversion" value="${version}" /> <channel>__uri</channel>
<option name="releasestability" value="${stability}" />
<option name="license" value="http://www.gnu.org/licenses/gpl.html" /> <lead user="cweiske" name="Christian Weiske" email="cweiske@cweiske.de" />
<license>GPL</license>
<option name="phpdep" value="5.2.0" /> <version release="${version}" api="${version}" />
<option name="pearinstallerdep" value="1.8.1" /> <stability release="${stability}" api="${stability}" />
<option name="packagetype" value="php" />
<option name="notes" value="${releasenotes}" /> <notes>${releasenotes}</notes>
<mapping name="maintainers"> <dependencies>
<element> <php minimum_version="5.2.0" />
<element key="handle" value="cweiske" /> <pear minimum_version="1.8.1" />
<element key="name" value="Christian Weiske" />
<element key="email" value="cweiske@cweiske.de" />
<element key="role" value="lead" />
<element key="active" value="no" />
</element>
</mapping>
<mapping name="deps"> <package name="HTML_QuickForm2"
<element> channel="pear.php.net"
<element key="channel" value="pear.php.net" /> minimum_version="0.4.0"
<element key="name" value="HTML_QuickForm2" /> />
<element key="version" value="0.4.0" />
</element>
</mapping>
<option name="baseinstalldir" value="/" /> </dependencies>
<fileset dir=".">
<include name="data/**"/> <dirroles key="www">www</dirroles>
<include name="doc/**"/> <dirroles key="data">data</dirroles>
<include name="src/**"/> <dirroles key="doc">doc</dirroles>
<include name="www/**"/> <dirroles key="src">php</dirroles>
<exclude name="**/.gitignore/"/> <dirroles key="tests">test</dirroles>
<exclude name="**/.svn/"/>
<exclude name="data/config.php"/> <ignore>build*</ignore>
<exclude name="data/locales/messages.po"/> <ignore>dist</ignore>
<exclude name="data/locales/*/LC_MESSAGES/messages.po"/> <ignore>doc/developers</ignore>
<exclude name="doc/developers/"/> <ignore>scripts</ignore>
<exclude name="src/php-gettext/examples/" /> <ignore>**/messages.po</ignore>
<exclude name="src/php-gettext/bin/"/>
</fileset> <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>
<!-- <tar destfile="${dist.dir}/DoctrineORM-${version_name}.tgz" basedir="${build.dir}/orm" compression="gzip" />-->
</pearpkg2>
</target> </target>