mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-09 13:37:42 -08: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
77 lines
3.2 KiB
Diff
77 lines
3.2 KiB
Diff
--- build.xml.org 2008-02-26 22:35:07.000000000 +1300
|
|
+++ build.xml 2008-02-26 22:35:48.000000000 +1300
|
|
@@ -373,21 +373,13 @@
|
|
|
|
<!-- create checkout directory if necessary -->
|
|
<target name="prepare-checkout" if="do.checkout">
|
|
- <mkdir dir="${svn.checkout.dir}" />
|
|
+ <echo message="Removed by patch." />
|
|
</target>
|
|
|
|
|
|
<!-- checkout if so defined -->
|
|
<target name="checkout" depends="prepare" if="do.checkout">
|
|
- <svn javahl="${javahl.dir}" >
|
|
- <checkout url="https://jython.svn.sourceforge.net/svnroot/jython/${svn.main.dir}/jython" revision="${svn.revision}" destPath="${svn.checkout.dir}/jython" />
|
|
- <checkout url="https://jython.svn.sourceforge.net/svnroot/jython/${svn.main.dir}/installer" revision="${svn.revision}" destPath="${svn.checkout.dir}/installer" />
|
|
- </svn>
|
|
-
|
|
- <!-- checkout cpython license from the correct python maintenance branch -->
|
|
- <svn javahl="${javahl.dir}" >
|
|
- <checkout url="http://svn.python.org/projects/python/branches/release22-maint/" destPath="${svn.checkout.dir}/python" recurse="false" />
|
|
- </svn>
|
|
+ <echo message="removed by patch" />
|
|
</target>
|
|
|
|
|
|
@@ -551,28 +543,13 @@
|
|
|
|
|
|
<!-- build the .html files using the ht2html tool -->
|
|
- <target name="doc" depends="compile" if="full-build">
|
|
- <fail unless="ht2html.dir" message="ht2html.dir is not set" />
|
|
- <copy todir="${dist.dir}/Doc" preservelastmodified="true">
|
|
- <fileset dir="Doc" includes="*.ht, **/*.gif" />
|
|
- </copy>
|
|
- <!-- Create .html files in Doc -->
|
|
- <apply executable="${python.exe}" dir="Doc">
|
|
- <env key="PYTHONPATH" path="${jython.base.dir}/Misc/htgen" />
|
|
- <arg line="${ht2html.dir}/ht2html.py" />
|
|
- <arg line="-s JyLocalGenerator" />
|
|
- <fileset dir="${dist.dir}/Doc">
|
|
- <include name="*.ht" />
|
|
- </fileset>
|
|
- </apply>
|
|
- <delete>
|
|
- <fileset dir="${dist.dir}/Doc" includes="*.ht" />
|
|
- </delete>
|
|
+ <target name="doc" depends="compile">
|
|
+ <echo message="Functionality removed by gentoo patch" />
|
|
</target>
|
|
|
|
|
|
<!-- javadoc -->
|
|
- <target name="javadoc" depends="compile" if="full-build">
|
|
+ <target name="javadoc" depends="compile">
|
|
<javadoc sourcepath="${source.dir}"
|
|
destdir="${apidoc.dir}"
|
|
source="${jdk.source.version}"
|
|
@@ -588,7 +565,7 @@
|
|
|
|
|
|
<!-- copy for full distribution -->
|
|
- <target name="copy-full" if="full-build">
|
|
+ <target name="copy-full">
|
|
<!-- Misc files -->
|
|
<echo>copy misc files from ${jython.base.dir}</echo>
|
|
<copy todir="${dist.dir}" preservelastmodified="true">
|
|
@@ -599,7 +576,7 @@
|
|
|
|
<!-- copy the CPython license -->
|
|
<echo>copy CPython LICENSE from ${svn.checkout.dir}/python</echo>
|
|
- <copy file="${svn.checkout.dir}/python/LICENSE" tofile="${dist.dir}/LICENSE_CPython.txt" preservelastmodified="true" />
|
|
+ <copy file="${python.lib}/../LICENSE" tofile="${dist.dir}/LICENSE_CPython.txt" preservelastmodified="true" />
|
|
|
|
<!-- sources: todir has to correspond with installer/**/JarInstaller.java -->
|
|
<echo>copy sources from ${jython.base.dir}</echo>
|