mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-10 20:17:29 -07:00
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
Index: build.xml
|
|
===================================================================
|
|
RCS file: /sources/public/2002/css-validator/build.xml,v
|
|
retrieving revision 1.23
|
|
diff -u -r1.23 build.xml
|
|
--- build.xml 1 Nov 2011 07:51:20 -0000 1.23
|
|
+++ build.xml 22 Feb 2012 23:57:47 -0000
|
|
@@ -75,10 +75,10 @@
|
|
<copy file="tmp/htmlparser-1.3.1/htmlparser-1.3.1.jar" tofile="lib/htmlparser-1.3.1.jar"/>
|
|
</target>
|
|
|
|
- <target name="build" description="Builds the validator" depends="prepare">
|
|
+ <target name="build" description="Builds the validator">
|
|
<mkdir dir="./build"/>
|
|
<javac classpathref="build.class.path" destdir="./build" encoding="UTF-8"
|
|
- debug="yes" includes="org/w3c/**" srcdir="." source="1.6" target="1.6"/>
|
|
+ includes="org/w3c/**" srcdir="."/>
|
|
<copy todir="./build">
|
|
<fileset dir="./">
|
|
<include name="org/**"/>
|
|
@@ -91,7 +91,7 @@
|
|
<target name="jigsaw" description="Builds the validator for Jigsaw" depends="prepare">
|
|
<mkdir dir="./build"/>
|
|
<javac classpathref="build.class.path" destdir="." encoding="UTF-8"
|
|
- debug="yes" source="1.6" target="1.6">
|
|
+ >
|
|
<src path="./org/w3c"/>
|
|
</javac>
|
|
</target>
|
|
@@ -99,6 +99,7 @@
|
|
<target name="javadoc" description="Generates API docs">
|
|
<mkdir dir="./javadoc"/>
|
|
<javadoc
|
|
+ classpathref="build.class.path"
|
|
packagenames="org.w3c.*"
|
|
sourcepath="./"
|
|
destdir="./javadoc"
|