Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1823 - in development/main/home: . transit transit/handler transit/plugin util

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1823 - in development/main/home: . transit transit/handler transit/plugin util
  • Date: Sat, 19 Feb 2005 00:54:29 +0100

Author: mcconnell
Date: Sat Feb 19 00:54:28 2005
New Revision: 1823

Modified:
development/main/home/standard.xml
development/main/home/transit/build.properties
development/main/home/transit/handler/build.xml
development/main/home/transit/plugin/build.xml
development/main/home/util/build.properties
Log:
fix asc file generation for transit main and plugin

Modified: development/main/home/standard.xml
==============================================================================
--- development/main/home/standard.xml (original)
+++ development/main/home/standard.xml Sat Feb 19 00:54:28 2005
@@ -33,19 +33,19 @@
<property file="${basedir}/build.properties"/>
<property file="${home}/common.properties"/>

- <condition property="dpml.appdata.declared" value="false">
+ <condition property="dpml.appdata.declared" value="true">
<isset property="ENV.APPDATA"/>
</condition>

- <condition property="dpml.home.declared" value="false">
+ <condition property="dpml.home.declared" value="true">
<isset property="ENV.DPML_HOME"/>
</condition>

- <condition property="dpml.system.declared" value="false">
+ <condition property="dpml.system.declared" value="true">
<isset property="ENV.DPML_SYSTEM"/>
</condition>

- <condition property="gpg.declared" value="false">
+ <condition property="gpg.declared" value="true">
<isset property="project.gpg.exe"/>
</condition>

@@ -152,7 +152,7 @@
<property name="project.type" value="jar"/>
<property name="project.dir" location="${basedir}/target/test"/>

- <condition property="signature.declared" value="false">
+ <condition property="signature.declared" value="true">
<isset property="dpml.release.signature"/>
</condition>

@@ -367,7 +367,11 @@
<available file="${target.deliverables.jars.dir}/${project.filename}"
property="jar.available"/>
</target>

- <target name="jar.asc" depends="jar.check" if="gpg.declared,jar.available">
+ <target name="jar.asc" depends="jar.check" if="jar.available">
+ <antcall target="execute.jar.asc"/>
+ </target>
+
+ <target name="execute.jar.asc" if="gpg.declared">
<echo message="Generating ASC"/>
<delete file="${target.deliverables.jars.dir}/${project.filename}.asc"/>
<exec executable="${project.gpg.exe}">

Modified: development/main/home/transit/build.properties
==============================================================================
--- development/main/home/transit/build.properties (original)
+++ development/main/home/transit/build.properties Sat Feb 19 00:54:28
2005
@@ -3,3 +3,4 @@
project.test.fork = true
project.group = dpml/transit
project.name = dpml-transit
+project.type = module
\ No newline at end of file

Modified: development/main/home/transit/handler/build.xml
==============================================================================
--- development/main/home/transit/handler/build.xml (original)
+++ development/main/home/transit/handler/build.xml Sat Feb 19 00:54:28
2005
@@ -50,6 +50,8 @@
</manifest>
</jar>
<checksum fileext=".md5"
file="${target.deliverables.jars.dir}/${project.filename}"/>
+ <delete file="${target.deliverables.jars.dir}/${project.filename}.asc"/>
+ <antcall target="execute.jar.asc"/>
<mkdir dir="target/dist"/>
</target>


Modified: development/main/home/transit/plugin/build.xml
==============================================================================
--- development/main/home/transit/plugin/build.xml (original)
+++ development/main/home/transit/plugin/build.xml Sat Feb 19 00:54:28
2005
@@ -93,6 +93,20 @@
#
</echo>
<checksum fileext=".md5" file="${plugin.file}"/>
+ <delete file="${plugin.file}.asc"/>
+ <antcall target="plugin.asc"/>
+ </target>
+
+ <target name="plugin.asc" if="gpg.declared">
+ <echo message="Generating ASC"/>
+ <delete file="${plugin.file}.asc"/>
+ <exec executable="${project.gpg.exe}">
+ <arg value="-a"/>
+ <arg value="-b"/>
+ <arg value="-o"/>
+ <arg value="${plugin.file}.asc"/>
+ <arg value="${plugin.file}"/>
+ </exec>
</target>

</project>

Modified: development/main/home/util/build.properties
==============================================================================
--- development/main/home/util/build.properties (original)
+++ development/main/home/util/build.properties Sat Feb 19 00:54:28 2005
@@ -3,3 +3,4 @@
project.test.fork = true
project.group = dpml/util
project.name = dpml-util
+project.type = module
\ No newline at end of file



  • svn commit: r1823 - in development/main/home: . transit transit/handler transit/plugin util, mcconnell, 02/18/2005

Archive powered by MHonArc 2.6.24.

Top of Page