-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aavesh Jilani
committed
May 14, 2021
0 parents
commit 204afc5
Showing
8,223 changed files
with
2,803,768 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#Fri Apr 30 22:10:23 IST 2021 | ||
gradle.version=4.10.3 |
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# https://docs.travis-ci.com/user/languages/java/ | ||
# https://docs.travis-ci.com/user/reference/osx/ | ||
# https://docs.travis-ci.com/user/reference/windows/ | ||
os: linux | ||
dist: focal | ||
language: java | ||
|
||
addons: | ||
apt: # only active on Linux | ||
packages: | ||
- ant | ||
|
||
hostname: jyshort | ||
|
||
|
||
jobs: | ||
include: | ||
- name: "openjdk8 on Linux" | ||
dist: xenial | ||
jdk: openjdk8 | ||
|
||
- name: "openjdk11 on Linux" | ||
jdk: openjdk11 | ||
|
||
- name: "openjdk13 on Linux" | ||
jdk: openjdk13 | ||
|
||
- name: "openjdk8 on macOS" | ||
os: osx | ||
osx_image: xcode11.6 # Supports homebrew bundle without needing update | ||
# https://travis-ci.community/t/macos-build-fails-because-of-homebrew-bundle-unknown-command/7296/26 | ||
# https://docs.travis-ci.com/user/installing-dependencies/ | ||
addons: | ||
homebrew: | ||
taps: | ||
# - AdoptOpenJDK/openjdk # for java | ||
# but see https://github.com/AdoptOpenJDK/homebrew-openjdk/issues/106 | ||
- homebrew/cask-versions # ant & jdk 8 | ||
casks: | ||
- adoptopenjdk8 | ||
packages: | ||
- ant | ||
before_install: | ||
# Add the required JDK to the path | ||
- export JAVA_HOME="$(/usr/libexec/java_home -v1.8)" | ||
- echo $JAVA_HOME | ||
- export PATH="$JAVA_HOME/bin:$PATH" | ||
|
||
- name: "openjdk11 on macOS" | ||
os: osx | ||
osx_image: xcode11.6 # Supports homebrew bundle without update | ||
# https://travis-ci.community/t/macos-build-fails-because-of-homebrew-bundle-unknown-command/7296/26 | ||
# https://docs.travis-ci.com/user/installing-dependencies/ | ||
addons: | ||
homebrew: | ||
taps: | ||
- AdoptOpenJDK/openjdk # for java | ||
- homebrew/cask-versions # for ant | ||
casks: | ||
- adoptopenjdk11 | ||
packages: | ||
- ant | ||
before_install: | ||
# Add the required JDK to the path | ||
- export JAVA_HOME="$(/usr/libexec/java_home -v11)" | ||
- echo $JAVA_HOME | ||
- export PATH="$JAVA_HOME/bin:$PATH" | ||
|
||
- name: "openjdk11 on Windows" | ||
os: windows | ||
language: shell # Travis CI Windows does not yet support language: java | ||
env: | ||
- JAVA_HOME="/c/Program Files/AdoptOpenJDK/jdk-11.0.8.10-hotspot" | ||
- ANT_HOME="/c/Users/travis/apache-ant" | ||
- PATH="$JAVA_HOME/bin:$ANT_HOME/bin:$PATH" | ||
before_install: | ||
- pwd # /c/Users/travis/build/<github-user>/<repo-name> | ||
# Install the required JDK (must match JAVA_HOME in env: section) | ||
- choco install adoptopenjdk11 | ||
- ls "/c/Program Files/AdoptOpenJDK" # Check JAVA_HOME is correct :( | ||
# Install ant at $ANT_HOME (chosen in env: section) | ||
- curl https://downloads.apache.org/ant/binaries/apache-ant-1.10.8-bin.zip -o apache-ant.zip | ||
- unzip -q apache-ant.zip | ||
- rm apache-ant.zip | ||
- mv apache-ant-1.10.8 $ANT_HOME | ||
|
||
#- name: "Lint Python 2 code for syntax errors and undefined names" | ||
# language: python # lint Python code for syntax errors and undefined names | ||
# python: 2.7 | ||
# install: pip install flake8 | ||
# script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
|
||
allow_failures: | ||
- language: python | ||
- os: osx # remains flakey | ||
|
||
# Install (i.e. build) Jython | ||
install: | ||
# Confirm versions and paths (this has been a problem) | ||
- echo $PATH | ||
- java -version | ||
- ant -version | ||
- ant developer-build | ||
|
||
# Run the regression test (tweaked for Travis in build.xml) | ||
script: ant regrtest-travis | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
# -*- coding: utf-8 -*- | ||
ACKNOWLEDGMENTS | ||
|
||
Jython: Python for the Java Platform | ||
|
||
Copyright (c) 2000-2018 Jython Developers. | ||
All rights reserved. | ||
|
||
Copyright (c) 2000 BeOpen.com. | ||
All Rights Reserved. | ||
|
||
Copyright (c) 2000 The Apache Software Foundation. | ||
All rights reserved. | ||
|
||
Copyright (c) 1995-2000 Corporation for National Research Initiatives. | ||
All Rights Reserved. | ||
|
||
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. | ||
All Rights Reserved. | ||
|
||
Jython links the following libraries: | ||
|
||
* Antlr 3, licensed under the Antlr 3 (BSD) license | ||
* ASM 5, licensed under a BSD license from France Télécom | ||
* BouncyCastle, licensed under a MIT license from The Legion of the | ||
Bouncy Castle Inc. | ||
* Apache Commons Compression and Xerces, licensed under an Apache 2.0 | ||
License from the Apache Software Foundation | ||
* Google Guava, licensed under an Apache 2.0 License from Google | ||
* ICU4J, licensed under a BSD license ("ICU License") from IBM and others | ||
* Jar Jar Links, licensed under the Apache 2.0 License from Tonic Systems | ||
* Java Native Runtime, licensed under the Common Public License | ||
* JLine2, licensed under a BSD license | ||
* JUnit, licensed under Eclipse Public License 1.0 from the JUnit project | ||
* Mock Runner, licensed under the Apache 1.1 license | ||
* Netty 4, licensed under the Apache 2.0 license from the Netty project | ||
* PyPy datetime module, licensed under the MIT License from the PyPy project | ||
* Java sizeof, licensed under the Apache 2.0 License from the Apache Software Foundation | ||
|
||
Jython follows closely the Python language and its reference | ||
implementation CPython, as created by Guido van Rossum. | ||
Jython 2.7 corresponds to CPython 2.7. | ||
|
||
Jython started as JPython, created by Jim Hugunin in 1997. JPython was | ||
renamed to Jython by Barry Warsaw in 1999 with the 2.0 release. Since | ||
then, Jython 2.x releases have corresponded to equivalent CPython 2.x | ||
releases. | ||
|
||
Jython includes, modifying as necessary, the CPython standard library, | ||
other code objects, in certain cases ported from C to either Python | ||
and/or Java, and other components such as documentation. These | ||
components are licensed, like Jython itself, under the Python Software | ||
Foundation License version 2 from the Python Software Foundation. | ||
|
||
Contacts: | ||
|
||
* Jython developers [email protected] | ||
* Jython user community [email protected]. | ||
|
||
Samuele Pedroni contributed package manager support. | ||
|
||
Brian Zimmer contributed zxJDBC to provide Python DB API using JDBC. | ||
|
||
Cyrille Morvan contributed the code for the Jythonc ant task. | ||
|
||
Alan Kennedy contributed modjy, which bridges WSGI to the Servlet API | ||
|
||
Chris Gokey, David Syer and Finn Bock added PyServlet. | ||
|
||
Yin Wang and Steve Yegge contributed the static analyzer from Google | ||
(also called indexer). | ||
|
||
The Jython bash startup script (fallback for bin/jython) was adapted | ||
from the similar script written for JRuby. | ||
|
||
A huge thanks goes to all the members of the jpython/jython | ||
mailing lists. Other folks who have contributed to JPython and | ||
Jython in ways large and small, in no particular order: | ||
|
||
Kevin Butler | ||
Harry Mantakos | ||
Greg Ward | ||
Tony Plate | ||
Jim Althoff | ||
Drew Morrissey | ||
John Mudd | ||
Bryn Keller | ||
dsyer | ||
Tim Hochberg | ||
Bernhard Bablok | ||
Dj Walker-Morgan | ||
Ivan Kougaenko | ||
Ype Kingma | ||
Ian Castleden | ||
Kent Johnson | ||
Robert W. Bill | ||
Durant Schoon | ||
Phil Surette | ||
Michael Becke | ||
Randy Jay Yarger | ||
Matt Conway | ||
Noel (Nick) Lockwood | ||
Steffen Ries | ||
Ben Burton | ||
Josselin PUJO | ||
Steve Cohen | ||
Alexey N. Solofnenko | ||
Charles Duffy | ||
Rodrigo B. de Oliveira | ||
Nathan Franzen | ||
Aleks Totic | ||
Randolph Brown | ||
Geoffrey French | ||
Tobias Ivarsson | ||
Lino Mastrodomenico | ||
Sébastien Boisgérault | ||
Jim Baker | ||
Charlie Groves | ||
Otmar Humbel | ||
Philip Jenvey | ||
Nicholas Riley | ||
Frank Wierzbicki | ||
Khalid Zuberi | ||
Sean McGrath | ||
Clark Updike | ||
Leonardo Soto | ||
James Robinson | ||
Jonathan Feinberg | ||
Josh Juneau | ||
Justin Deoliveira | ||
Costantino Cerbo | ||
Alex Groenholm | ||
Anselm Kruis | ||
Andreas Stührk | ||
Dmitry Jemerov | ||
Miki Tebeka | ||
Jeff Allen | ||
Julian Kennedy | ||
Arfrever Frehtes Taifersar Arahesis | ||
Andreas Stührk | ||
Christian Klein | ||
Jezreel Ng | ||
Santoso Wijaya | ||
Brandon Pedersen | ||
Chris Simpson | ||
Indra Talip | ||
Michael Büsch | ||
Richard Eckart de Castilho | ||
Timothée Lecomte | ||
Peter Holloway | ||
Werner Mendizabal | ||
Henning Jacobs | ||
Darjus Loktevic | ||
Raphael Jolly | ||
Yuji Yamano | ||
Pekka Klärck | ||
Nathaniel Kenmir | ||
Jiwon Seo | ||
Dieter Vandenbussche | ||
Paolo Dina | ||
Eliya Sadan | ||
Stefan Richthofer | ||
Jason Madden | ||
Daniel Martin | ||
Richard Fearn | ||
Adam Burke | ||
Eric L Frederich | ||
Tom Alexander | ||
Caleb P. Burns | ||
Stephen Drake | ||
Jan Vorwerk | ||
Eli Oxman | ||
Robert Patrick | ||
Kevin Edwards | ||
Jaime Saiz | ||
Nick Bailey | ||
Doug Clayton | ||
Carl Wicklow | ||
James Mudd | ||
Mat Booth | ||
Alex Gaman | ||
Tom Bech | ||
Richie Bendall | ||
Raymond Ferguson | ||
yishenggudou (愧僧) | ||
Andrew Kuchling | ||
Jim Peterson | ||
Christian Clauss | ||
Han Siang Phua | ||
|
||
Local Variables: | ||
mode: indented-text | ||
indent-tabs-mode: nil | ||
End: |
Oops, something went wrong.