This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 252631
Collapse All | Expand All

(-)a/o.jython.distro/external/binaries-list (+1 lines)
Line 1 Link Here
1
DA149FA5AF1D3CAA2648F122EEF10EE49807D0C0 jython-2.7.0-rc3.zip
1
DA149FA5AF1D3CAA2648F122EEF10EE49807D0C0 jython-2.7.0-rc3.zip
2
7747A693D0B49F4AED0E5C296385A0807679B37D jython-parser.jar
(-)a/o.jython/build.xml (-8 lines)
Removed Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
3
<!-- for some information on what you could do (e.g. targets to override). -->
4
<!-- If you delete this file and reopen the project it will be recreated. -->
5
<project name="contrib/o.jython" default="netbeans" basedir=".">
6
    <description>Builds, tests, and runs the project org.jython.</description>
7
    <import file="../../nbbuild/templates/projectized.xml"/>
8
</project>
(-)a/o.jython/external/binaries-list (-1 lines)
Removed Link Here
1
7747A693D0B49F4AED0E5C296385A0807679B37D jython-parser.jar
(-)a/o.jython/external/isatty.diff (-2 lines)
Removed Link Here
1
Index: src/org/python/core/util/FileUtil.java
2
===================================================================
(-)a/o.jython/external/update_jython.sh (-30 lines)
Removed Link Here
1
#!/bin/sh
2
3
repository=https://bitbucket.org/jython/jython
4
5
# Name of jar file we're creating from the jython.jar
6
target=jython-parser.jar
7
8
# Temp build location
9
location=tmp
10
11
echo "fetching sources"
12
rm -rf "$location"
13
hg clone "$repository" "$location"
14
cd "$location"
15
16
# Note - need both ant calls
17
echo "Building jar"
18
ant
19
ant jar-complete
20
21
cd ..
22
mv "$location"/dist/jython.jar "$target"
23
24
echo "Updating binaries-list"
25
echo $(openssl dgst -sha1 "$target" | awk '{ print toupper($2) }') "$target" > binaries-list
26
27
echo "Cleaning up"
28
rm -rf "$location"
29
30
echo "Done."
(-)a/o.jython/manifest.mf (-6 lines)
Removed Link Here
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.jython/2
3
OpenIDE-Module-Localizing-Bundle: org/jython/Bundle.properties
4
OpenIDE-Module-Specification-Version: 2.11
5
AutoUpdate-Show-In-Client: false
6
(-)a/o.jython/nbproject/project.properties (-16 lines)
Removed Link Here
1
javac.source=1.7
2
javac.compilerargs=-Xlint -Xlint:-serial
3
4
# NOTE: Also keep in sync with o.jython.distro/nbproject/project.properties
5
# TODO The second dependency should be easy to automate with a <property file=...>
6
#
7
jython_src_version=2.7.0-rc3
8
9
is.autoload=true
10
extra.module.files=modules/ext/jython-parser.jar
11
release.external/jython-parser.jar=modules/ext/jython-parser.jar
12
13
# See http://www.netbeans.org/issues/show_bug.cgi?id=144637
14
nbm.needs.restart=true
15
16
sigtest.gen.fail.on.error=false
(-)a/o.jython/nbproject/project.xml (-33 lines)
Removed Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://www.netbeans.org/ns/project/1">
3
    <type>org.netbeans.modules.apisupport.project</type>
4
    <configuration>
5
        <data xmlns="http://www.netbeans.org/ns/nb-module-project/3">
6
            <code-name-base>org.jython</code-name-base>
7
            <module-dependencies>
8
                <dependency>
9
                    <code-name-base>org.netbeans.libs.xerces</code-name-base>
10
                    <build-prerequisite/>
11
                    <compile-dependency/>
12
                    <run-dependency>
13
                        <release-version>1</release-version>
14
                    </run-dependency>
15
                </dependency>
16
            </module-dependencies>
17
            <friend-packages>
18
                <friend>org.netbeans.modules.python.editor</friend>
19
                <package>org.python.antlr</package>
20
                <package>org.python.antlr.ast</package>
21
                <package>org.python.antlr.base</package>
22
                <package>org.python.antlr.runtime</package>
23
                <package>org.python.antlr.runtime.tree</package>
24
                <package>org.python.core</package>
25
                <package>org.python.expose</package>
26
            </friend-packages>
27
            <class-path-extension>
28
                <runtime-relative-path>ext/jython-parser.jar</runtime-relative-path>
29
                <binary-origin>external/jython-parser.jar</binary-origin>
30
            </class-path-extension>
31
        </data>
32
    </configuration>
33
</project>
(-)a/o.jython/src/org/jython/Bundle.properties (-2 lines)
Removed Link Here
1
OpenIDE-Module-Display-Category=Python
2
OpenIDE-Module-Name=jython
(-)a/python.editor/build-python.xml (-2 lines)
Lines 73-79 Link Here
73
            <property name="scan.binaries" value="true"/>
73
            <property name="scan.binaries" value="true"/>
74
            
74
            
75
            <buildpath location="o.jython.distro"/>
75
            <buildpath location="o.jython.distro"/>
76
            <buildpath location="o.jython"/>
77
            <buildpath location="python.core"/>
76
            <buildpath location="python.core"/>
78
            <buildpath location="python.debugger"/>
77
            <buildpath location="python.debugger"/>
79
            <buildpath location="python.platform"/>
78
            <buildpath location="python.platform"/>
Lines 102-108 Link Here
102
            <buildpath location="gsf.codecoverage"/>
101
            <buildpath location="gsf.codecoverage"/>
103
102
104
            <buildpath location="o.jython.distro"/>
103
            <buildpath location="o.jython.distro"/>
105
            <buildpath location="o.jython"/>
106
            <buildpath location="python.editor"/>
104
            <buildpath location="python.editor"/>
107
            <buildpath location="python.console"/>
105
            <buildpath location="python.console"/>
108
            <buildpath location="python.core"/>
106
            <buildpath location="python.core"/>

Return to bug 252631