From 28918617084e77efe6a05c16f5bb3d068e702d74 Mon Sep 17 00:00:00 2001 From: namso-01 Date: Sat, 15 Aug 2015 14:15:50 +0300 Subject: [PATCH 1/5] eclipse-ecj: depoya eklendi. --- .../language/java/eclipse-ecj/actions.py | 28 ++++++++ .../files/01-ecj-include-props.patch | 15 +++++ .../files/02-buildxml-fix-manifest.patch | 11 ++++ .../language/java/eclipse-ecj/files/ecj | 4 ++ .../language/java/eclipse-ecj/pspec.xml | 66 +++++++++++++++++++ .../java/eclipse-ecj/translations.xml | 8 +++ 6 files changed, 132 insertions(+) create mode 100644 programming/language/java/eclipse-ecj/actions.py create mode 100644 programming/language/java/eclipse-ecj/files/01-ecj-include-props.patch create mode 100644 programming/language/java/eclipse-ecj/files/02-buildxml-fix-manifest.patch create mode 100644 programming/language/java/eclipse-ecj/files/ecj create mode 100644 programming/language/java/eclipse-ecj/pspec.xml create mode 100644 programming/language/java/eclipse-ecj/translations.xml diff --git a/programming/language/java/eclipse-ecj/actions.py b/programming/language/java/eclipse-ecj/actions.py new file mode 100644 index 0000000000..807893ced9 --- /dev/null +++ b/programming/language/java/eclipse-ecj/actions.py @@ -0,0 +1,28 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +WorkDir = "." +shelltools.export("LC_ALL", "C") +shelltools.export("JAVA_HOME","/usr/lib/jvm/java-7-openjdk") + +def setup(): + shelltools.export("LANG", "en_US.UTF-8") + shelltools.system("sed -i -e 's|debuglevel=\"lines,source\"|debug=\"yes\"|g' build.xml") + shelltools.system('sed -i -e "s/Xlint:none/Xlint:none -encoding cp1252/g" build.xml') + shelltools.system("ant build") + +def install(): + pisitools.insinto("/usr/share/man/man1/","ecj.1") + + pisitools.insinto("/usr/share/java/", "ecj.jar", "eclipse-ecj-4.4.jar") + + shelltools.cd("%s/usr/share/java/" % get.installDIR()) + + pisitools.dosym("eclipse-ecj-4.4.jar", "/usr/share/java/ecj.jar") + pisitools.dosym("eclipse-ecj-4.4.jar", "/usr/share/java/eclipse-ecj.jar") \ No newline at end of file diff --git a/programming/language/java/eclipse-ecj/files/01-ecj-include-props.patch b/programming/language/java/eclipse-ecj/files/01-ecj-include-props.patch new file mode 100644 index 0000000000..32766266b3 --- /dev/null +++ b/programming/language/java/eclipse-ecj/files/01-ecj-include-props.patch @@ -0,0 +1,15 @@ +--- build.xml 2012-09-14 18:22:48.000000000 +0000 ++++ build.xml.patched 2013-01-09 10:19:28.414079935 +0000 +@@ -46,9 +46,10 @@ + + + ++ + + + + + +- +\ No newline at end of file ++ diff --git a/programming/language/java/eclipse-ecj/files/02-buildxml-fix-manifest.patch b/programming/language/java/eclipse-ecj/files/02-buildxml-fix-manifest.patch new file mode 100644 index 0000000000..ba9cd0a64c --- /dev/null +++ b/programming/language/java/eclipse-ecj/files/02-buildxml-fix-manifest.patch @@ -0,0 +1,11 @@ +--- build.xml.orig 2013-10-03 13:55:28.579003290 +0000 ++++ build.xml 2013-10-03 13:57:52.971400439 +0000 +@@ -39,8 +39,6 @@ + + + +- +- + + + diff --git a/programming/language/java/eclipse-ecj/files/ecj b/programming/language/java/eclipse-ecj/files/ecj new file mode 100644 index 0000000000..6d3557a74a --- /dev/null +++ b/programming/language/java/eclipse-ecj/files/ecj @@ -0,0 +1,4 @@ +#!/bin/sh + +CLASSPATH=/usr/share/java/ecj.jar${CLASSPATH:+:}$CLASSPATH \ +java org.eclipse.jdt.internal.compiler.batch.Main "$@" diff --git a/programming/language/java/eclipse-ecj/pspec.xml b/programming/language/java/eclipse-ecj/pspec.xml new file mode 100644 index 0000000000..2314090e4e --- /dev/null +++ b/programming/language/java/eclipse-ecj/pspec.xml @@ -0,0 +1,66 @@ + + + eclipse-ecj + http://www.eclipse.org + + PisiLinux Community + admins@pisilinux.org + + EPL + app:web + Eclipse java bytecode compiler + Eclipse java bytecode compiler + http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar + + ant + jre7-openjdk-headless + + + 01-ecj-include-props.patch + 02-buildxml-fix-manifest.patch + + + + + eclipse-ecj + + /usr/share/man + /usr/bin + /usr/share/java + + + ecj + + + + + + 2015-05-19 + 4.4.2_201502041700 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-04 + 4.4.1_201409250400 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-06-04 + 4.3.1_201309111000 + Rebuild for new gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-27 + 4.3.1_201309111000 + First Release + PisiLinux Community + admins@pisilinux.org + + + \ No newline at end of file diff --git a/programming/language/java/eclipse-ecj/translations.xml b/programming/language/java/eclipse-ecj/translations.xml new file mode 100644 index 0000000000..33586a5790 --- /dev/null +++ b/programming/language/java/eclipse-ecj/translations.xml @@ -0,0 +1,8 @@ + + + + eclipse-ecj + Eclipse java bytecode compiler + Eclipse java bytecode compiler + + \ No newline at end of file From 90ff2174415cddf8191fa15350747d2e2ae59665 Mon Sep 17 00:00:00 2001 From: namso-01 Date: Sat, 15 Aug 2015 14:16:13 +0300 Subject: [PATCH 2/5] fastjar: depoya eklendi. --- programming/language/java/fastjar/actions.py | 19 ++++++++ programming/language/java/fastjar/pspec.xml | 48 +++++++++++++++++++ .../language/java/fastjar/translations.xml | 8 ++++ 3 files changed, 75 insertions(+) create mode 100644 programming/language/java/fastjar/actions.py create mode 100644 programming/language/java/fastjar/pspec.xml create mode 100644 programming/language/java/fastjar/translations.xml diff --git a/programming/language/java/fastjar/actions.py b/programming/language/java/fastjar/actions.py new file mode 100644 index 0000000000..9749d8dc3e --- /dev/null +++ b/programming/language/java/fastjar/actions.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "CHANGES", "ChangeLog", "COPYING", "README", "NEWS") \ No newline at end of file diff --git a/programming/language/java/fastjar/pspec.xml b/programming/language/java/fastjar/pspec.xml new file mode 100644 index 0000000000..f51dd6726f --- /dev/null +++ b/programming/language/java/fastjar/pspec.xml @@ -0,0 +1,48 @@ + + + fastjar + http://savannah.nongnu.org/projects/fastjar + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:web + Sun java jar compatible archiver + Sun java jar compatible archiver + http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz + + zlib-devel + + + + + fastjar + + zlib + + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + + + + + + 2014-06-05 + 0.98 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-02-27 + 0.98 + First Release + PisiLinux Community + admins@pisilinux.org + + + \ No newline at end of file diff --git a/programming/language/java/fastjar/translations.xml b/programming/language/java/fastjar/translations.xml new file mode 100644 index 0000000000..16215d067d --- /dev/null +++ b/programming/language/java/fastjar/translations.xml @@ -0,0 +1,8 @@ + + + + fastjar + Sun java jar compatible archiver + Sun java jar compatible archiver. + + From 1ea1d9c206bf724fa1591df85001c878343e114c Mon Sep 17 00:00:00 2001 From: namso-01 Date: Sat, 15 Aug 2015 14:16:35 +0300 Subject: [PATCH 3/5] rhino: depoya eklendi. --- programming/language/java/rhino/actions.py | 24 +++++ programming/language/java/rhino/files/rhino | 8 ++ .../language/java/rhino/files/rhino-debugger | 8 ++ .../java/rhino/files/rhino-debugger.1 | 60 ++++++++++++ .../language/java/rhino/files/rhino-jsc | 8 ++ .../language/java/rhino/files/rhino-jsc.1 | 67 +++++++++++++ programming/language/java/rhino/files/rhino.1 | 93 +++++++++++++++++++ programming/language/java/rhino/pspec.xml | 69 ++++++++++++++ .../language/java/rhino/translations.xml | 8 ++ 9 files changed, 345 insertions(+) create mode 100644 programming/language/java/rhino/actions.py create mode 100644 programming/language/java/rhino/files/rhino create mode 100644 programming/language/java/rhino/files/rhino-debugger create mode 100644 programming/language/java/rhino/files/rhino-debugger.1 create mode 100644 programming/language/java/rhino/files/rhino-jsc create mode 100644 programming/language/java/rhino/files/rhino-jsc.1 create mode 100644 programming/language/java/rhino/files/rhino.1 create mode 100644 programming/language/java/rhino/pspec.xml create mode 100644 programming/language/java/rhino/translations.xml diff --git a/programming/language/java/rhino/actions.py b/programming/language/java/rhino/actions.py new file mode 100644 index 0000000000..df9f2a60b7 --- /dev/null +++ b/programming/language/java/rhino/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import get +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +shelltools.export("JAVA_HOME","/usr/lib/jvm/java-7-openjdk") + +def build(): + shelltools.system("ant -Dxbean.jar=xmlbeans-2.6.0/lib/xbean.jar -Djsr173.jar=xmlbeans-2.6.0/lib/jsr173_1.0_api.jar jar javadoc") + +def install(): + pisitools.dobin("rhino") + pisitools.dobin("rhino-jsc") + pisitools.dobin("rhino-debugger") + pisitools.doman("rhino.1") + pisitools.doman("rhino-jsc.1") + pisitools.doman("rhino-debugger.1") + pisitools.insinto("/usr/share/java", "build/rhino1.7.7/js.jar") + pisitools.insinto("/usr/share/java", "build/rhino1.7.7/js.jar", "js-1.7.6.jar") \ No newline at end of file diff --git a/programming/language/java/rhino/files/rhino b/programming/language/java/rhino/files/rhino new file mode 100644 index 0000000000..f56ae627d5 --- /dev/null +++ b/programming/language/java/rhino/files/rhino @@ -0,0 +1,8 @@ +#!/bin/sh + +JAVA_CMD="/usr/bin/java" +JAVA_OPTS="" +JAVA_CLASSPATH="/usr/share/java/js.jar:/usr/share/java/jline.jar" +JAVA_MAIN="org.mozilla.javascript.tools.shell.Main" + +$JAVA_CMD $JAVA_OPTS -classpath $JAVA_CLASSPATH $JAVA_MAIN "$@" diff --git a/programming/language/java/rhino/files/rhino-debugger b/programming/language/java/rhino/files/rhino-debugger new file mode 100644 index 0000000000..671778f062 --- /dev/null +++ b/programming/language/java/rhino/files/rhino-debugger @@ -0,0 +1,8 @@ +#!/bin/sh + +JAVA_CMD="/usr/bin/java" +JAVA_OPTS="" +JAVA_CLASSPATH="/usr/share/java/js.jar" +JAVA_MAIN="org.mozilla.javascript.tools.debugger.Main" + +$JAVA_CMD $JAVA_OPTS -classpath $JAVA_CLASSPATH $JAVA_MAIN "$@" diff --git a/programming/language/java/rhino/files/rhino-debugger.1 b/programming/language/java/rhino/files/rhino-debugger.1 new file mode 100644 index 0000000000..24cbbab450 --- /dev/null +++ b/programming/language/java/rhino/files/rhino-debugger.1 @@ -0,0 +1,60 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH RHINO-DEBUGGER 1 "Friday 17, 2009" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +rhino-debugger \- invokes the rhino JavaScript debugger GUI + +.SH SYNOPSIS +.B rhino-debugger +.I [options] +.I script_filename_or_url +.I [script_arguments] + +.SH DESCRIPTION +This manual page documents briefly the +.B rhino-debugger +command. +This manual page was written for the Debian distribution because the original +program does not have a manual page. It is written according to the html documentation. +.PP +\fBrhino-debugger\fP is a start script for the rhino JavaScript debugger. The Rhino JavaScript debugger is a GUI that allows debugging of interpreted JavaScript scripts run in Rhino. Note that this debugger will not work with JavaScript scripts run in the mozilla browser since Rhino is not the engine used in such environments. + +.SH OPTIONS + +.IP -e\ \fIscript_source\fP +Executes script_source as a JavaScript script. +.IP -f\ \fIscript_filename_or_url\fP +Reads script_filename_or_url content and execute it as a JavaScript script. +.IP -opt,\ -O\ \fIoptLevel\fP +Optimizes at level optLevel, which must be an integer between 0 and 9. +.IP -version\ \fIversionNumber\fP +Specifies the language version to compile with. The string versionNumber must be one of 100, 110, 120, 130, or 140. See JavaScript Language Versions for more information on language versions. +.IP -strict +Enable strict mode. + +.SH EXAMPLE + +Example debugging the NervousText.js applet written in JavaScript. The example is provided in the librhino-java-doc package. + +$ rhino-debugger NervousText.js + +.SH SEE ALSO +The online documentation under http://www.mozilla.org/rhino/debugger.html + +.SH AUTHOR +This manual page was written by Damien Raude-Morvan , +for the Debian project (but may be used by others). diff --git a/programming/language/java/rhino/files/rhino-jsc b/programming/language/java/rhino/files/rhino-jsc new file mode 100644 index 0000000000..0f47a61075 --- /dev/null +++ b/programming/language/java/rhino/files/rhino-jsc @@ -0,0 +1,8 @@ +#!/bin/sh + +JAVA_CMD="/usr/bin/java" +JAVA_OPTS="" +JAVA_CLASSPATH="/usr/share/java/js.jar" +JAVA_MAIN="org.mozilla.javascript.tools.jsc.Main" + +$JAVA_CMD $JAVA_OPTS -classpath $JAVA_CLASSPATH $JAVA_MAIN "$@" diff --git a/programming/language/java/rhino/files/rhino-jsc.1 b/programming/language/java/rhino/files/rhino-jsc.1 new file mode 100644 index 0000000000..6b9face85d --- /dev/null +++ b/programming/language/java/rhino/files/rhino-jsc.1 @@ -0,0 +1,67 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH RHINO-JSC 1 "February 12, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +rhino-jsc \- invokes the rhino JavaScript compiler + +.SH SYNOPSIS +.B rhino-jsc +.I [options] +.I file1.js +.I [file2.js\&.\&.\&.] + +.SH DESCRIPTION +This manual page documents briefly the +.B rhino-jsc +command. +This manual page was written for the Debian distribution because the original +program does not have a manual page. It is written according to the html documentation. +.PP +\fBrhino-jsc\fP is a start script for the rhino JavaScript compiler. The JavaScript compiler translates JavaScript source into Java class files. The resulting Java class files can then be loaded and executed at another time, providing a convenient method for transferring JavaScript, and for avoiding translation cost. +Note that the top-level functions available to the shell (such as print) are not available to compiled scripts when they are run outside the shell. + +.SH OPTIONS + +.IP -extends\ \fIjava_class_name\fP +Specifies that a java class extending the Java class java_class_name should be generated from the incoming JavaScript source file. Each global function in the source file is made a method of the generated class, overriding any methods in the base class by the same name. +.IP -implements\ \fIjava_intf_name\fP +Specifies that a java class implementing the Java interface java_intf_name should be generated from the incoming JavaScript source file. Each global function in the source file is made a method of the generated class, implementing any methods in the interface by the same name. +.IP -debug,\ -g +Specifies that debug information should be generated. May not be combined with optimization at an optLevel greater than zero. +.IP -nosource +Does not save the source in the class file. Functions and scripts compiled this way cannot be decompiled. This option can be used to avoid distributing source or simply to save space in the resulting class file. +.IP -o\ \fIoutputFile\fP +Writes the class file to the given file (which should end in .class). The string outputFile must be a writable filename. +.IP -opt,\ -O\ \fIoptLevel\fP +Optimizes at level optLevel, which must be an integer between 0 and 9. +.IP -package\ \fIpackageName\fP +Specifies the package to generate the class into. The string packageName must be composed of valid identifier characters optionally separated by periods. +.IP -version\ \fIversionNumber\fP +Specifies the language version to compile with. The string versionNumber must be one of 100, 110, 120, 130, or 140. See JavaScript Language Versions for more information on language versions. + +.SH EXAMPLE + +Example compiling the NervousText.js applet written in JavaScript. The example is provided in the librhino-java-doc package. + +$ rhino-jsc \-extends java.applet.Applet \-implements java.lang.Runnable NervousText.js + +.SH SEE ALSO +The online documentation under http://www.mozilla.org/rhino/jsc.html + +.SH AUTHOR +This manual page was written by Wolfgang Baer , +for the Debian project (but may be used by others). diff --git a/programming/language/java/rhino/files/rhino.1 b/programming/language/java/rhino/files/rhino.1 new file mode 100644 index 0000000000..99fdb055ee --- /dev/null +++ b/programming/language/java/rhino/files/rhino.1 @@ -0,0 +1,93 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH RHINO 1 "February 12, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +rhino \- invokes the JavaScript shell for running scripts in batch mode or interactive + +.SH SYNOPSIS +.B rhino +.I [options] +.I script_filename_or_url +.I [script_arguments] + +.SH DESCRIPTION +This manual page documents briefly the +.B rhino +command. +This manual page was written for the Debian distribution because the original +program does not have a manual page. It is written according to the html documentation. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBrhino\fP is a start script for the rhino JavaScript shell which provides a simple way +to run scripts in batch mode or an interactive environment for exploratory programming. + +.SH OPTIONS + +.IP -e\ \fIscript_source\fP +Executes script_source as a JavaScript script. +.IP -f\ \fIscript_filename_or_url\fP +Reads script_filename_or_url content and execute it as a JavaScript script. +.IP -opt,\ -O\ \fIoptLevel\fP +Optimizes at level optLevel, which must be an integer between -1 and 9. -1 means Interpretive mode is always used. 0 means no optimizations whereas 9 means all optimizations are performed. +.IP -version\ \fIversionNumber\fP +Specifies the language version to compile with. The string versionNumber must be one of 100, 110, 120, 130, or 140. See JavaScript Language Versions for more information on language versions. +.IP -strict +Enable strict mode. + +.SH PREDEFINED PROPERTIES + +Scripts executing in the shell have access to some additional properties of the top-level object. + +.IP arguments +The arguments object is an array containing the strings of all the arguments given at the command line when the shell was invoked. +.IP help() +Executing the help function will print usage and help messages. +.IP defineClass(\fIclassName\fP) +Define an extension using the Java class named with the string argument className. Uses ScriptableObject.defineClass() to define the extension. +.IP deserialize(\fIfilename\fP) +Restore from the specified file an object previously written by a call to serialize. +.IP load(\fI[filename,\&.\&.\&.]\fP) +Load JavaScript source files named by string arguments. If multiple arguments are given, each file is read in and executed in turn. +.IP loadClass(\fIclassName\fP) +Load and execute the class named by the string argument className. The class must be a class that implements the Script interface, as will any script compiled by jsc. +.IP print(\fI[expr\&.\&.\&.]\fP) +Evaluate and print expressions. Evaluates each expression, converts the result to a string, and prints it. +.IP readFile(\fIpath[,characterCoding]\fP) +Read given file and convert its bytes to a string using the specified character coding or default character coding if explicit coding argument is not given. +.IP readUrl(\fIurl[,characterCoding]\fP) +Open an input connection to the given string url, read all its bytes and convert them to a string using the specified character coding or default character coding if explicit coding argument is not given. +.IP runCommand(\fIcommandName,[arg,\&.\&.\&.][options]\fP) +Execute the specified command with the given argument and options as a separate process and return the exit status of the process. For details, see JavaDoc for org.mozilla.javascript.tools.shell.Global#runCommand. +.IP serialize(\fIobject,filename\fP) +Serialize the given object to the specified file. +.IP spawn(\fIfunctionOrScript\fP) +Run the given function or script in a different thread. +.IP sync(\fIfunction\fP) +creates a synchronized function (in the sense of a Java synchronized method) from an existing function. The new function synchronizes on the this object of its invocation. +.IP quit() +Quit shell. The shell will also quit in interactive mode if an end-of-file character is typed at the prompt. +.IP version(\fI[number]\fP) +Get or set JavaScript version number. If no argument is supplied, the current version number is returned. If an argument is supplied, it is expected to be one of 100, 110, 120, 130, or 140 to indicate JavaScript version 1.0, 1.1, 1.2, 1.3, or 1.4 respectively. + +.SH SEE ALSO +The online documentation under http://www.mozilla.org/rhino/shell.html + +.SH AUTHOR +This manual page was written by Wolfgang Baer , +for the Debian project (but may be used by others). diff --git a/programming/language/java/rhino/pspec.xml b/programming/language/java/rhino/pspec.xml new file mode 100644 index 0000000000..540b22bd33 --- /dev/null +++ b/programming/language/java/rhino/pspec.xml @@ -0,0 +1,69 @@ + + + + + rhino + http://www.mozilla.org/rhino/ + + PisiLinux Community + admins@pisilinux.org + + GPL2 + Open-source implementation of JavaScript written entirely in Java + Open-source implementation of JavaScript written entirely in Java + https://github.com/mozilla/rhino/archive/Rhino1_7_7_RELEASE.tar.gz + http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz + + rhino + rhino.1 + rhino-jsc + rhino-jsc.1 + rhino-debugger + rhino-debugger.1 + + + ant + re7-openjdk-headless + + + + + rhino + + /usr/share/man + /usr/bin + /usr/share/java/ + + + + + + 2015-08-15 + 1.7.7 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-03 + 1.7R_4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-04 + 1.7R_4 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2012-07-23 + 1.7 + First release + Ramazan Utku + admins@pisilinux.org + + + \ No newline at end of file diff --git a/programming/language/java/rhino/translations.xml b/programming/language/java/rhino/translations.xml new file mode 100644 index 0000000000..d31fdc651a --- /dev/null +++ b/programming/language/java/rhino/translations.xml @@ -0,0 +1,8 @@ + + + + rhino + Open-source implementation of JavaScript written entirely in Java + Open-source implementation of JavaScript written entirely in Java + + \ No newline at end of file From 542766ed39935272f048d0d88e91afd840aeea72 Mon Sep 17 00:00:00 2001 From: namso-01 Date: Sat, 15 Aug 2015 14:16:54 +0300 Subject: [PATCH 4/5] java7: depoya eklendi. --- .../language/java/java7-openjdk/actions.py | 126 ++++++ .../java/java7-openjdk/files/20java_jre | 1 + .../java/java7-openjdk/files/20java_jre.csh | 1 + .../java/java7-openjdk/files/21java_jdk | 1 + .../java/java7-openjdk/files/21java_jdk.csh | 1 + .../java7-openjdk/files/fontconfig-paths.diff | 134 +++++++ .../java/java7-openjdk/files/giflib_5.1.diff | 14 + .../files/openjdk7_nonreparenting-wm.diff | 58 +++ .../language/java/java7-openjdk/pspec.xml | 371 ++++++++++++++++++ .../java/java7-openjdk/translations.xml | 33 ++ 10 files changed, 740 insertions(+) create mode 100644 programming/language/java/java7-openjdk/actions.py create mode 100644 programming/language/java/java7-openjdk/files/20java_jre create mode 100644 programming/language/java/java7-openjdk/files/20java_jre.csh create mode 100644 programming/language/java/java7-openjdk/files/21java_jdk create mode 100644 programming/language/java/java7-openjdk/files/21java_jdk.csh create mode 100644 programming/language/java/java7-openjdk/files/fontconfig-paths.diff create mode 100644 programming/language/java/java7-openjdk/files/giflib_5.1.diff create mode 100644 programming/language/java/java7-openjdk/files/openjdk7_nonreparenting-wm.diff create mode 100644 programming/language/java/java7-openjdk/pspec.xml create mode 100644 programming/language/java/java7-openjdk/translations.xml diff --git a/programming/language/java/java7-openjdk/actions.py b/programming/language/java/java7-openjdk/actions.py new file mode 100644 index 0000000000..2eceb625b3 --- /dev/null +++ b/programming/language/java/java7-openjdk/actions.py @@ -0,0 +1,126 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +shelltools.export("ALT_PARALLEL_COMPILE_JOBS", get.makeJOBS()) +shelltools.export("HOTSPOT_BUILD_JOBS", get.makeJOBS()) +shelltools.export("LC_ALL", "C") + +def setup(): + shelltools.system('export DISTRIBUTION_PATCHES="patches/fontconfig-paths.diff \ + patches/openjdk7_nonreparenting-wm.diff\ + patches/giflib_5.1.diff"') + + autotools.rawConfigure("\ + --disable-tests \ + --disable-Werror \ + --with-parallel-jobs=%s \ + --enable-nss \ + --with-rhino \ + --disable-system-kerberos \ + --disable-system-pcsc \ + --disable-system-sctp \ + --enable-bootstrap \ + --with-ecj-jar=/usr/share/java/ecj.jar \ + --with-jdk-home=/usr/lib/jvm/java-7-openjdk \ + --with-pkgversion='PisiLinux build 7.u79_2.5.5' \ + " % get.makeJOBS().replace("-j", "")) + +def build(): + autotools.make() + +def check(): + autotools.make("check -k") + +def install(): + jvmdir="/usr/lib/jvm/java-7-openjdk" + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "HACKING", "README", "NEWS") + + #cd main output directory + shelltools.cd("openjdk.build") + + #---- install openjdk7-doc + pisitools.insinto("/usr/share/doc/openjdk7-doc", "docs/*") + + #install openjdk7-src + pisitools.insinto(jvmdir, "j2sdk-image/src.zip") + + #---- instal jdk7-openjdk + for d in ["include","lib","bin"]: + pisitools.insinto(jvmdir, "j2sdk-image/%s" % d) + + for f in shelltools.ls("%s/usr/lib/jvm/java-7-openjdk/bin/" % get.installDIR()): + if not f in ["java", "java-rmi.cgi", "keytool", "orbd", + "pack200", "policytool", "rmid", "rmiregistry", + "servertool", "tnameserv", "unpack200"]: + pisitools.dosym("/usr/lib/jvm/java-7-openjdk/bin/%s" % f, "/usr/bin/%s" % f) + + #install man pages + pisitools.doman("j2sdk-image/man/man1/*") + pisitools.insinto("/usr/share/man/ja/man1", "j2sdk-image/man/ja_JP.UTF-8/man1/*.1") + pisitools.insinto("/usr/share/applications", "../jconsole.desktop") + shelltools.system("chmod go+r %s%s/lib/sa-jdi.jar" %(get.installDIR(), jvmdir)) + + #---- instal jre7-openjdk + pisitools.insinto("%s/jre/bin" % jvmdir , "j2sdk-image/jre/bin/*") + #pisitools.insinto("%s/jre/lib/amd64" % jvmdir , "j2sdk-image/jre/lib/amd64/xawt") + for binfile in shelltools.ls("j2sdk-image/jre/bin"): + pisitools.dosym("%s/jre/bin/%s" % (jvmdir, binfile), "/usr/bin/%s" % binfile) + + pisitools.insinto("/usr/share/applications", "../policytool.desktop") + + for size in [16, 24, 32, 48]: + fullsize = "%dx%d" % ((size, ) * 2) + pisitools.insinto("/usr/share/icons/hicolor/%s/apps/" % fullsize, "../openjdk/jdk/src/solaris/classes/sun/awt/X11/java-icon%d.png" % size, "java.png") + + #---- install jre7-openjdk-headless + pisitools.insinto("%s/jre/" % jvmdir , "j2sdk-image/jre/lib") + pisitools.insinto("%s/jre/bin" % jvmdir, "j2sdk-image/jre/bin/*") + + pisitools.rename("%s/jre/lib/fontconfig.Ubuntu.properties.src" % jvmdir , "fontconfig.properties") + pisitools.rename("%s/jre/lib/fontconfig.Ubuntu.bfc" % jvmdir , "fontconfig.bfc") + pisitools.remove("%s/jre/lib/fontconfig.*.bfc" % jvmdir) + pisitools.remove("%s/jre/lib/fontconfig.*.properties.src" % jvmdir) + + pisitools.domove("%s/jre/lib/*.properties*" % jvmdir,"/etc/java-7-openjdk/") + + for propfile in shelltools.ls("%s/etc/java-7-openjdk/" % get.installDIR()): + pisitools.dosym("/etc/java-7-openjdk/%s" % propfile, "%s/jre/lib/%s" % (jvmdir, propfile)) + + pisitools.domove("%s/jre/lib/images/cursors/cursors.properties" % jvmdir,"/etc/java-7-openjdk/cursors/") + pisitools.dosym("/etc/java-7-openjdk/cursors/cursors.properties", "%s/jre/lib/images/cursors/cursors.properties" % jvmdir) + + pisitools.rename("%s/jre/lib/management/jmxremote.password.template" % jvmdir , "jmxremote.password") + pisitools.rename("%s/jre/lib/management/snmp.acl.template" % jvmdir , "snmp.acl") + + for f in ["management.properties", "jmxremote.access", "jmxremote.password", "snmp.acl"]: + pisitools.domove("%s/jre/lib/management/%s" % (jvmdir, f),"/etc/java-7-openjdk/management/") + pisitools.dosym("/etc/java-7-openjdk/management/%s" % f, "%s/jre/lib/management/%s" % (jvmdir, f)) + + for f in ["java.policy","java.security","nss.cfg"]: + pisitools.domove("%s/jre/lib/security/%s" % (jvmdir, f),"/etc/java-7-openjdk/security/") + pisitools.dosym("/etc/java-7-openjdk/security/%s" % f, "%s/jre/lib/security/%s" % (jvmdir, f)) + + #confs=os.listdir("%s/etc/java-7-openjdk/" % get.installDIR()) + #for i in confs: + #shelltools.system("chmod 0644 %s/etc/java-7-openjdk/%s" % (get.installDIR, i)) + + pisitools.domove("%s/jre/lib/fontconfig.bfc" % jvmdir,"/etc/java-7-openjdk/") + pisitools.domove("%s/jre/lib/amd64/jvm.cfg" % jvmdir,"/etc/java-7-openjdk/") + pisitools.dosym("/etc/java-7-openjdk/jvm.cfg" , "%s/jre/lib/amd64/jvm.cfg" % jvmdir) + + for license in ["LICENSE", "THIRD_PARTY_README", "ASSEMBLY_EXCEPTION"]: + pisitools.insinto("/usr/share/doc/jre7-openjdk-headless", "j2re-image/%s" % license) + + pisitools.remove("%s/jre/lib/security/cacerts" % jvmdir) + + #seems we need to add this symlink into ca-certificates-java package ? + pisitools.dosym("/etc/ssl/certs/java/cacerts", "%s/jre/lib/security/cacerts" % jvmdir) diff --git a/programming/language/java/java7-openjdk/files/20java_jre b/programming/language/java/java7-openjdk/files/20java_jre new file mode 100644 index 0000000000..01cf0bb4f2 --- /dev/null +++ b/programming/language/java/java7-openjdk/files/20java_jre @@ -0,0 +1 @@ +JAVA_HOME=/usr/lib/jvm/java-7-openjdk/jre diff --git a/programming/language/java/java7-openjdk/files/20java_jre.csh b/programming/language/java/java7-openjdk/files/20java_jre.csh new file mode 100644 index 0000000000..afd5dfe3ab --- /dev/null +++ b/programming/language/java/java7-openjdk/files/20java_jre.csh @@ -0,0 +1 @@ +setenv JAVA_HOME "/usr/lib/jvm/java-7-openjdk/jre" \ No newline at end of file diff --git a/programming/language/java/java7-openjdk/files/21java_jdk b/programming/language/java/java7-openjdk/files/21java_jdk new file mode 100644 index 0000000000..aef31530f1 --- /dev/null +++ b/programming/language/java/java7-openjdk/files/21java_jdk @@ -0,0 +1 @@ +JAVA_HOME=/usr/lib/jvm/java-7-openjdk diff --git a/programming/language/java/java7-openjdk/files/21java_jdk.csh b/programming/language/java/java7-openjdk/files/21java_jdk.csh new file mode 100644 index 0000000000..ebc7a82d33 --- /dev/null +++ b/programming/language/java/java7-openjdk/files/21java_jdk.csh @@ -0,0 +1 @@ +setenv J2SDKDIR "/usr/lib/jvm/java-7-openjdk" \ No newline at end of file diff --git a/programming/language/java/java7-openjdk/files/fontconfig-paths.diff b/programming/language/java/java7-openjdk/files/fontconfig-paths.diff new file mode 100644 index 0000000000..efc53e3a11 --- /dev/null +++ b/programming/language/java/java7-openjdk/files/fontconfig-paths.diff @@ -0,0 +1,134 @@ +--- openjdk/jdk/src/solaris/classes/sun/awt/fontconfigs/linux.fontconfig.Ubuntu.properties 2009-05-29 22:45:23.024341869 +0000 ++++ openjdk/jdk/src/solaris/classes/sun/awt/fontconfigs/linux.fontconfig.Ubuntu.properties.new 2009-05-29 22:55:13.681366890 +0000 +@@ -275,73 +275,61 @@ + + # Font File Names + +-filename.DejaVu_Sans=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf +-filename.DejaVu_Sans_Bold=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf +-filename.DejaVu_Sans_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf +-filename.DejaVu_Sans_Bold_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf +- +-filename.DejaVu_Sans_Mono=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf +-filename.DejaVu_Sans_Mono_Bold=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Bold.ttf +-filename.DejaVu_Sans_Mono_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Oblique.ttf +-filename.DejaVu_Sans_Mono_Bold_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf +- +-filename.DejaVu_Serif=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf +-filename.DejaVu_Serif_Bold=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Bold.ttf +-filename.DejaVu_Serif_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Oblique.ttf +-filename.DejaVu_Serif_Bold_Oblique=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-BoldOblique.ttf +- +-filename.AR_PL_UMing_CN=/usr/share/fonts/truetype/arphic/uming.ttc +-filename.AR_PL_UMing_HK=/usr/share/fonts/truetype/arphic/uming.ttc +-filename.AR_PL_UMing_TW=/usr/share/fonts/truetype/arphic/uming.ttc +-filename.AR_PL_ShanHeiSun_Uni=/usr/share/fonts/truetype/arphic/uming.ttf +- +-filename.WenQuanYi_Zen_Hei=/usr/share/fonts/truetype/wqy/wqy-zenhei.ttf +-filename.Baekmuk_Batang=/usr/share/fonts/truetype/baekmuk/batang.ttf +-filename.UnBatang=/usr/share/fonts/truetype/unfonts/UnBatang.ttf +-filename.UnBatang_Bold=/usr/share/fonts/truetype/unfonts/UnBatangBold.ttf +-filename.Baekmuk_Gulim=/usr/share/fonts/truetype/baekmuk/gulim.ttf +-filename.UnDotum=/usr/share/fonts/truetype/unfonts/UnDotum.ttf +-filename.UnDotum_Bold=/usr/share/fonts/truetype/unfonts/UnDotumBold.ttf +-filename.Kochi_Gothic=/usr/share/fonts/truetype/kochi/kochi-gothic.ttf +-filename.Sazanami_Gothic=/usr/share/fonts/truetype/sazanami/sazanami-gothic.ttf +-filename.Kochi_Mincho=/usr/share/fonts/truetype/kochi/kochi-mincho.ttf +-filename.Sazanami_Mincho=/usr/share/fonts/truetype/sazanami/sazanami-mincho.ttf +-filename.VL_Gothic=/usr/share/fonts/truetype/vlgothic/VL-Gothic-Regular.ttf +-filename.VL_PGothic=/usr/share/fonts/truetype/vlgothic/VL-PGothic-Regular.ttf +- +-filename.Lohit_Bengali=/usr/share/fonts/truetype/ttf-bengali-fonts/lohit_bn.ttf +-filename.Lohit_Gujarati=/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_gu.ttf +-filename.Lohit_Hindi=/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_hi.ttf +-filename.Lohit_Kannda=/usr/share/fonts/truetype/ttf-kannada-fonts/lohit_kn.ttf +-#filename.Lohit_Malayalam=/usr/share/fonts/lohit-malayalam/lohit_ml.ttf +-filename.Lohit_Oriya=/usr/share/fonts/truetype/ttf-oriya-fonts/lohit_or.ttf +-filename.Lohit_Punjabi=/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_pa.ttf +-filename.Lohit_Tamil=/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_ta.ttf +-filename.Lohit_Telugu=/usr/share/fonts/truetype/ttf-telugu-fonts/lohit_te.ttf +-filename.LKLUG=/usr/share/fonts/truetype/ttf-sinhala-lklug/lklug.ttf +- +-filename.LuxiSans-Regular=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxisr.ttf +-filename.LuxiSans-Bold=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxisb.ttf +-filename.LuxiSans-Oblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxisri.ttf +-filename.LuxiSans-BoldOblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxisbi.ttf +-filename.LuxiMono-Regular=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luximr.ttf +-filename.LuxiMono-Bold=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luximb.ttf +-filename.LuxiMono-Oblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luximri.ttf +-filename.LuxiMono-BoldOblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luximbi.ttf +-filename.LuxiSerif-Regular=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxirr.ttf +-filename.LuxiSerif-Bold=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxirb.ttf +-filename.LuxiSerif-Oblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxirri.ttf +-filename.LuxiSerif-BoldOblique=/usr/share/fonts/truetype/ttf-xfree86-nonfree/luxirbi.ttf +- +-# AWT X11 font paths +-awtfontpath.latin-1=/usr/share/fonts/X11/Type1 +-awtfontpath.umingcn=/usr/share/fonts/truetype/arphic +-awtfontpath.uminghk=/usr/share/fonts/truetype/arphic +-awtfontpath.umingtw=/usr/share/fonts/truetype/arphic +-awtfontpath.shanheisun=/usr/share/fonts/truetype/arphic +-awtfontpath.wqy-zenhei=/usr/share/fonts/truetype/wqy +-awtfontpath.japanese-kochi=/usr/share/fonts/truetype/kochi +-awtfontpath.japanese-sazanami=/usr/share/fonts/truetype/sazanami +-awtfontpath.japanese-vlgothic=/usr/share/fonts/truetype/vlgothic +-awtfontpath.korean-baekmuk=/usr/share/fonts/truetype/baekmuk +-awtfontpath.korean-un=/usr/share/fonts/truetype/unfonts ++filename.DejaVu_Sans=/usr/share/fonts/dejavu/DejaVuSans.ttf ++filename.DejaVu_Sans_Bold=/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf ++filename.DejaVu_Sans_Oblique=/usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf ++filename.DejaVu_Sans_Bold_Oblique=/usr/share/dejavu/TTF/DejaVuSans-BoldOblique.ttf ++ ++filename.DejaVu_Sans_Mono=/usr/share/fonts/dejavu/DejaVuSansMono.ttf ++filename.DejaVu_Sans_Mono_Bold=/usr/share/fonts/dejavu/DejaVuSansMono-Bold.ttf ++filename.DejaVu_Sans_Mono_Oblique=/usr/share/fonts/dejavu/DejaVuSansMono-Oblique.ttf ++filename.DejaVu_Sans_Mono_Bold_Oblique=/usr/share/fonts/dejavu/DejaVuSansMono-BoldOblique.ttf ++ ++filename.DejaVu_Serif=/usr/share/fonts/dejavu/DejaVuSerif.ttf ++filename.DejaVu_Serif_Bold=/usr/share/fonts/dejavu/DejaVuSerif-Bold.ttf ++filename.DejaVu_Serif_Oblique=/usr/share/fonts/dejavu/DejaVuSerif-Oblique.ttf ++filename.DejaVu_Serif_Bold_Oblique=/usr/share/fonts/dejavu/DejaVuSerif-BoldOblique.ttf ++ ++filename.AR_PL_UMing_CN=/usr/share/fonts/arphic-uming/uming.ttc ++filename.AR_PL_UMing_HK=/usr/share/fonts/arphic-uming/uming.ttc ++filename.AR_PL_UMing_TW=/usr/share/fonts/arphic-uming/uming.ttc ++filename.AR_PL_ShanHeiSun_Uni=/usr/share/TTF/uming.ttf ++ ++filename.WenQuanYi_Zen_Hei=/usr/share/fonts/wenquanyi/wqy-zenhei/wqy-zenhei.ttc ++filename.Baekmuk_Batang=/usr/share/fonts/beakmuk/batang.ttf ++filename.UnBatang=/usr/share/fonts/TTF/UnBatang.ttf ++filename.UnBatang_Bold=/usr/share/fonts/TTF/UnBatangBold.ttf ++filename.Baekmuk_Gulim=/usr/share/fonts/beakmuk/gulim.ttf ++filename.UnDotum=/usr/share/fonts/TTF/UnDotum.ttf ++filename.UnDotum_Bold=/usr/share/fonts/TTF/UnDotumBold.ttf ++filename.Kochi_Gothic=/usr/share/fonts/TTF/kochi-gothic.ttf ++filename.Sazanami_Gothic=/usr/share/fonts/sazanami/sazanami-gothic.ttf ++filename.Kochi_Mincho=/usr/share/fonts/TTF/kochi-mincho.ttf ++filename.Sazanami_Mincho=/usr/share/fonts/sazanami/sazanami-mincho.ttf ++filename.VL_Gothic=/usr/share/fonts/vlgothic/VL-Gothic-Regular.ttf ++filename.VL_PGothic=/usr/share/fonts/vlgothic/VL-PGothic-Regular.ttf ++ ++filename.Lohit_Bengali=/usr/share/fonts/lohit-assamese/Lohit-Bengali.ttf ++filename.Lohit_Gujarati=/usr/share/fonts/lohit-assamese/Lohit-Gujarati.ttf ++filename.Lohit_Hindi=/usr/share/fonts/lohit-assamese/Lohit-Hindi.ttf ++filename.Lohit_Kannda=/usr/share/fonts/lohit-assamese/Lohit-Kannada.ttf ++#filename.Lohit_Malayalam=/usr/share/fonts/lohit-assamese/Lohit-Malayalam.ttf ++filename.Lohit_Oriya=/usr/share/fonts/lohit-assamese/Lohit-Oriya.ttf ++filename.Lohit_Punjabi=/usr/share/fonts/lohit-assamese/Lohit-Punjabi.ttf ++filename.Lohit_Tamil=/usr/share/fonts/lohit-assamese/Lohit-Tamil.ttf ++filename.Lohit_Telugu=/usr/share/fonts/lohit-assamese/Lohit-Telugu.ttf ++filename.LKLUG=/usr/share/fonts/lklug/lklug.ttf ++ ++filename.LuxiSans-Regular=/usr/share/fonts/TTF/luxisr.ttf ++filename.LuxiSans-Bold=/usr/share/fonts/TTF/luxisb.ttf ++filename.LuxiSans-Oblique=/usr/share/fonts/TTF/luxisri.ttf ++filename.LuxiSans-BoldOblique=/usr/share/fonts/TTF/luxisbi.ttf ++filename.LuxiMono-Regular=/usr/share/fonts/TTF/luximr.ttf ++filename.LuxiMono-Bold=/usr/share/fonts/TTF/luximb.ttf ++filename.LuxiMono-Oblique=/usr/share/fonts/TTF/luximri.ttf ++filename.LuxiMono-BoldOblique=/usr/share/fonts/TTF/luximbi.ttf ++filename.LuxiSerif-Regular=/usr/share/fonts/TTF/luxirr.ttf ++filename.LuxiSerif-Bold=/usr/share/fonts/TTF/luxirb.ttf ++filename.LuxiSerif-Oblique=/usr/share/fonts/TTF/luxirri.ttf ++filename.LuxiSerif-BoldOblique=/usr/share/fonts/TTF/luxirbi.ttf ++ \ No newline at end of file diff --git a/programming/language/java/java7-openjdk/files/giflib_5.1.diff b/programming/language/java/java7-openjdk/files/giflib_5.1.diff new file mode 100644 index 0000000000..a9361573cf --- /dev/null +++ b/programming/language/java/java7-openjdk/files/giflib_5.1.diff @@ -0,0 +1,14 @@ +--- openjdk/jdk/src/share/native/sun/awt/splashscreen/splashscreen_gif.c.orig 2014-05-27 22:17:19.766866065 +0200 ++++ openjdk/jdk/src/share/native/sun/awt/splashscreen/splashscreen_gif.c 2014-05-27 22:16:35.452894426 +0200 +@@ -310,7 +310,11 @@ + free(pBitmapBits); + free(pOldBitmapBits); + ++#if GIFLIB_MAJOR >= 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + + return 1; + } diff --git a/programming/language/java/java7-openjdk/files/openjdk7_nonreparenting-wm.diff b/programming/language/java/java7-openjdk/files/openjdk7_nonreparenting-wm.diff new file mode 100644 index 0000000000..fb4710c130 --- /dev/null +++ b/programming/language/java/java7-openjdk/files/openjdk7_nonreparenting-wm.diff @@ -0,0 +1,58 @@ +--- openjdk/jdk/src/solaris/classes/sun/awt/X11/XWM.java.orig 2013-10-16 16:17:14.000000000 +0200 ++++ openjdk/jdk/src/solaris/classes/sun/awt/X11/XWM.java 2013-10-21 20:57:34.768580842 +0200 +@@ -105,7 +105,8 @@ + LG3D_WM = 13, + CWM_WM = 14, + MUTTER_WM = 15, +- MARCO_WM = 16; ++ MARCO_WM = 16, ++ OTHER_NONREPARENTING_WM = 17; + public String toString() { + switch (WMID) { + case NO_WM: +@@ -591,7 +592,7 @@ + // TODO: according to wikipedia, compiz is now reparenting. This should + // probably be updated. + static boolean isNonReparentingWM() { +- return (XWM.getWMID() == XWM.COMPIZ_WM || XWM.getWMID() == XWM.LG3D_WM || XWM.getWMID() == XWM.CWM_WM); ++ return (XWM.getWMID() == XWM.COMPIZ_WM || XWM.getWMID() == XWM.LG3D_WM || XWM.getWMID() == XWM.CWM_WM || XWM.getWMID() == XWM.OTHER_NONREPARENTING_WM); + } + + /* +@@ -781,9 +782,17 @@ + * supports WIN or _NET wm spec. + */ + else if (l_net_protocol.active()) { +- awt_wmgr = XWM.OTHER_WM; ++ if (XToolkit.getEnv("_JAVA_AWT_WM_NONREPARENTING") != null) { ++ awt_wmgr = XWM.OTHER_NONREPARENTING_WM; ++ } else { ++ awt_wmgr = XWM.OTHER_WM; ++ } + } else if (win.active()) { +- awt_wmgr = XWM.OTHER_WM; ++ if (XToolkit.getEnv("_JAVA_AWT_WM_NONREPARENTING") != null) { ++ awt_wmgr = XWM.OTHER_NONREPARENTING_WM; ++ } else { ++ awt_wmgr = XWM.OTHER_WM; ++ } + } + /* + * Check for legacy WMs. +@@ -794,6 +803,8 @@ + awt_wmgr = XWM.MOTIF_WM; + } else if (isOpenLook()) { + awt_wmgr = XWM.OPENLOOK_WM; ++ } else if (XToolkit.getEnv("_JAVA_AWT_WM_NONREPARENTING") != null) { ++ awt_wmgr = XWM.OTHER_NONREPARENTING_WM; + } else { + awt_wmgr = XWM.OTHER_WM; + } +@@ -1309,6 +1320,7 @@ + res = new Insets(28, 6, 6, 6); + break; + case NO_WM: ++ case OTHER_NONREPARENTING_WM: + case LG3D_WM: + res = zeroInsets; + break; diff --git a/programming/language/java/java7-openjdk/pspec.xml b/programming/language/java/java7-openjdk/pspec.xml new file mode 100644 index 0000000000..59635c631c --- /dev/null +++ b/programming/language/java/java7-openjdk/pspec.xml @@ -0,0 +1,371 @@ + + + + + java7-openjdk + http://icedtea.classpath.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + Open Java Development Kit + OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). + http://icedtea.wildebeest.org/download/source/icedtea-2.6.1.tar.gz + + ant + wget + rhino + fastjar + nss-devel + zlib-devel + attr-devel + xorg-proto + gtk2-devel + cups-devel + eclipse-ecj + libXt-devel + libSM-devel + lcms2-devel + jdk7-openjdk + libICE-devel + libpng-devel + giflib-devel + libxslt-devel + libXtst-devel + alsa-lib-devel + libXinerama-devel + libjpeg-turbo-devel + + + + giflib_5.1.diff + fontconfig-paths.diff + openjdk7_nonreparenting-wm.diff + + + + + jre7-openjdk-headless + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs + + atk + cups + gtk2 + zlib + cairo + glib2 + lcms2 + libXi + pango + libX11 + libgcc + libXext + libXtst + freetype + fontconfig + gdk-pixbuf + libXrender + libjpeg-turbo + + + /usr/bin/orbd + /usr/bin/rmid + /usr/bin/java + /etc/env.d/20java_jre.csh + /etc/env.d/20java_jre + /etc/java-7-openjdk/ + /usr/bin/pack200 + /usr/bin/keytool + /usr/bin/tnameserv + /usr/bin/unpack200 + /usr/share/man/man1/rmid.1 + /usr/share/man/man1/orbd.1 + /usr/share/man/man1/java.1 + /usr/bin/servertool + /usr/bin/rmiregistry + /usr/share/doc/java7-openjdk/ + /usr/share/man/ja/man1/rmid.1 + /usr/share/man/ja/man1/java.1 + /usr/share/man/man1/pack200.1 + /usr/share/man/man1/keytool.1 + /usr/share/man/ja/man1/orbd.1 + /usr/share/man/man1/tnameserv.1 + /usr/share/man/man1/unpack200.1 + /usr/share/man/ja/man1/pack200.1 + /usr/share/man/man1/servertool.1 + /usr/share/man/ja/man1/keytool.1 + /usr/share/man/man1/rmiregistry.1 + /usr/share/man/ja/man1/tnameserv.1 + /usr/share/man/ja/man1/unpack200.1 + /usr/share/man/ja/man1/servertool.1 + /usr/share/doc/jre7-openjdk-headless + /usr/share/man/ja/man1/rmiregistry.1 + /usr/lib/jvm/java-7-openjdk/jre/lib + /usr/lib/jvm/java-7-openjdk/jre/java + /usr/lib/jvm/java-7-openjdk/jre/orbd + /usr/lib/jvm/java-7-openjdk/jre/rmid + /usr/lib/jvm/java-7-openjdk/jre/bin/ + /usr/lib/jvm/java-7-openjdk/jre/keytool + /usr/lib/jvm/java-7-openjdk/jre/pack200 + /usr/lib/jvm/java-7-openjdk/jre/bin/orbd + /usr/lib/jvm/java-7-openjdk/jre/bin/java + /usr/lib/jvm/java-7-openjdk/jre/bin/rmid + /usr/lib/jvm/java-7-openjdk/jre/tnameserv + /usr/lib/jvm/java-7-openjdk/jre/unpack200 + /usr/lib/jvm/java-7-openjdk/jre/servertool + /usr/lib/jvm/java-7-openjdk/jre/policytool + /usr/lib/jvm/java-7-openjdk/jre/rmiregistry + /usr/lib/jvm/java-7-openjdk/jre/bin/keytool + /usr/lib/jvm/java-7-openjdk/jre/bin/pack200 + /usr/lib/jvm/java-7-openjdk/lib/*/jli/libjli.so + /usr/lib/jvm/java-7-openjdk/jre/bin/tnameserv + /usr/lib/jvm/java-7-openjdk/jre/bin/unpack200 + /usr/lib/jvm/java-7-openjdk/jre/bin/servertool + /usr/lib/jvm/java-7-openjdk/jre/bin/rmiregistry + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/xawt/libmawt.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/headless/libmawt.so + + + 20java_jre + 20java_jre.csh + + + + + jre7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs + + zlib + giflib + libX11 + libpng + libXext + alsa-lib + libjpeg-turbo + jre7-openjdk-headless + + + /usr/share/doc/openjdk + /usr/bin/policytool + /usr/share/icons/hicolor/ + /usr/share/man/man1/policytool.1 + /usr/share/man/ja/man1/policytool.1 + /usr/share/applications/policytool.desktop + /usr/lib/jvm/java-7-openjdk/jre/bin/policytool + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libjsoundalsa.so + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libpulse-java.so + /usr/lib/jvm/java-7-openjdk/jre/lib/*/libsplashscreen.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libjsoundalsa.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libpulse-java.so + /usr/lib/jvm/java-7-openjdk/jre/lib/amd64/libsplashscreen.so + + + sun-jre + + + sun-jre + + + + jdk7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - SDK + + zlib + libX11 + libgcc + jre7-openjdk-headless + + + /etc/env.d/21java_jdk.csh + /etc/env.d/21java_jdk + /usr/share/man/man1/ + /usr/share/man/ja/man1/ + /usr/bin/jar + /usr/bin/xjc + /usr/bin/apt + /usr/bin/jdb + /usr/bin/jps + /usr/bin/jmap + /usr/bin/idlj + /usr/bin/jcmd + /usr/bin/jhat + /usr/bin/rmic + /usr/bin/javac + /usr/bin/javah + /usr/bin/javap + /usr/bin/jinfo + /usr/bin/wsgen + /usr/bin/jstat + /usr/bin/jstack + /usr/bin/jstatd + /usr/bin/javadoc + /usr/bin/extcheck + /usr/bin/jconsole + /usr/bin/wsimport + /usr/bin/jarsigner + /usr/bin/jsadebugd + /usr/bin/schemagen + /usr/bin/serialver + /usr/bin/jrunscript + /usr/bin/appletviewer + /usr/bin/native2ascii + /usr/share/applications/jconsole.desktop + /usr/lib/jvm/java-7-openjdk/include + /usr/lib/jvm/java-7-openjdk/bin/apt + /usr/lib/jvm/java-7-openjdk/bin/jar + /usr/lib/jvm/java-7-openjdk/bin/jdb + /usr/lib/jvm/java-7-openjdk/bin/jps + /usr/lib/jvm/java-7-openjdk/bin/xjc + /usr/lib/jvm/java-7-openjdk/bin/rmic + /usr/lib/jvm/java-7-openjdk/bin/rmid + /usr/lib/jvm/java-7-openjdk/bin/idlj + /usr/lib/jvm/java-7-openjdk/bin/orbd + /usr/lib/jvm/java-7-openjdk/bin/java + /usr/lib/jvm/java-7-openjdk/bin/jhat + /usr/lib/jvm/java-7-openjdk/bin/jmap + /usr/lib/jvm/java-7-openjdk/bin/jcmd + /usr/lib/jvm/java-7-openjdk/bin/javac + /usr/lib/jvm/java-7-openjdk/bin/javah + /usr/lib/jvm/java-7-openjdk/bin/javap + /usr/lib/jvm/java-7-openjdk/bin/jinfo + /usr/lib/jvm/java-7-openjdk/bin/jstat + /usr/lib/jvm/java-7-openjdk/bin/wsgen + /usr/lib/jvm/java-7-openjdk/bin/jstatd + /usr/lib/jvm/java-7-openjdk/bin/jstack + /usr/lib/jvm/java-7-openjdk/bin/pack200 + /usr/lib/jvm/java-7-openjdk/bin/javadoc + /usr/lib/jvm/java-7-openjdk/bin/keytool + /usr/lib/jvm/java-7-openjdk/bin/wsimport + /usr/lib/jvm/java-7-openjdk/bin/extcheck + /usr/lib/jvm/java-7-openjdk/bin/jconsole + /usr/lib/jvm/java-7-openjdk/bin/tnameserv + /usr/lib/jvm/java-7-openjdk/bin/unpack200 + /usr/lib/jvm/java-7-openjdk/bin/schemagen + /usr/lib/jvm/java-7-openjdk/bin/serialver + /usr/lib/jvm/java-7-openjdk/bin/jarsigner + /usr/lib/jvm/java-7-openjdk/bin/jsadebugd + /usr/lib/jvm/java-7-openjdk/bin/jrunscript + /usr/lib/jvm/java-7-openjdk/bin/policytool + /usr/lib/jvm/java-7-openjdk/bin/servertool + /usr/lib/jvm/java-7-openjdk/bin/rmiregistry + /usr/lib/jvm/java-7-openjdk/bin/java-rmi.cgi + /usr/lib/jvm/java-7-openjdk/bin/native2ascii + /usr/lib/jvm/java-7-openjdk/bin/appletviewer + /usr/lib/jvm/java-7-openjdk/lib/jexec + /usr/lib/jvm/java-7-openjdk/lib/ct.sym + /usr/lib/jvm/java-7-openjdk/lib/dt.jar + /usr/lib/jvm/java-7-openjdk/lib/ir.idl + /usr/lib/jvm/java-7-openjdk/lib/orb.idl + /usr/lib/jvm/java-7-openjdk/lib/tools.jar + /usr/lib/jvm/java-7-openjdk/lib/sa-jdi.jar + /usr/lib/jvm/java-7-openjdk/lib/jconsole.jar + + + 21java_jdk.csh + 21java_jdk + + + sun-jdk + + + sun-jdk + + + + + openjdk7-src + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - sources + + jdk7-openjdk + + + /usr/lib/jvm/java-7-openjdk/src.zip + + + + + openjdk7-doc + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - documentation + + jdk7-openjdk + + + /usr/share/doc/openjdk7-doc/ + + + + + + 2015-08-22 + 7u_85.2.6.1 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-06-16 + 7u_79.2.5.5 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-02-02 + 7u_75.2.5.4 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-09-30 + 7u_65.2.5.2 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-07-18 + 7u_65.2.5.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-06-20 + 7u_60.2.5.0 + Rebuilf for new gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-06-04 + 7u_55.2.4.7 + Rebuilf for new gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-04-16 + 7u_55.2.4.7 + Version bump to 2.4.7, use system ca-certs-java instead of builtin one. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-01 + 7u_51.2.4.6 + Version bump to 2.4.6, use system ca-certs-java instead of builtin one. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-27 + 7u_51.2.4.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + \ No newline at end of file diff --git a/programming/language/java/java7-openjdk/translations.xml b/programming/language/java/java7-openjdk/translations.xml new file mode 100644 index 0000000000..43e14026b4 --- /dev/null +++ b/programming/language/java/java7-openjdk/translations.xml @@ -0,0 +1,33 @@ + + + + java7-openjdk + Open Java Development Kit + OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). + + + + jre7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs + + + + jre7-openjdk-headless + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs + + + + openjdk7-src + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - sources + + + + jdk7-openjdk + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - SDK + + + + openjdk7-doc + Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - documentation + + \ No newline at end of file From dd834ab0f242075ec2811ab95843241184e20c9e Mon Sep 17 00:00:00 2001 From: namso-01 Date: Sat, 15 Aug 2015 14:17:25 +0300 Subject: [PATCH 5/5] ant: depoya eklendi. --- programming/build/ant/actions.py | 57 +++++++++++++ programming/build/ant/files/ant.conf | 4 + programming/build/ant/files/ant.csh | 1 + programming/build/ant/files/ant.sh | 1 + .../ant/files/apache-ant-no-test-jar.patch | 11 +++ programming/build/ant/files/bin_ant | 6 ++ programming/build/ant/pspec.xml | 85 +++++++++++++++++++ programming/build/ant/translations.xml | 9 ++ 8 files changed, 174 insertions(+) create mode 100644 programming/build/ant/actions.py create mode 100644 programming/build/ant/files/ant.conf create mode 100644 programming/build/ant/files/ant.csh create mode 100644 programming/build/ant/files/ant.sh create mode 100644 programming/build/ant/files/apache-ant-no-test-jar.patch create mode 100644 programming/build/ant/files/bin_ant create mode 100644 programming/build/ant/pspec.xml create mode 100644 programming/build/ant/translations.xml diff --git a/programming/build/ant/actions.py b/programming/build/ant/actions.py new file mode 100644 index 0000000000..65e5825054 --- /dev/null +++ b/programming/build/ant/actions.py @@ -0,0 +1,57 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +import os +import glob + +shelltools.export("JAVA_HOME","/usr/lib/jvm/java-7-openjdk") + +WorkDir = "apache-ant-%s" % get.srcVERSION() +anthome = "/usr/share/ant" +javadir = "/usr/share/java" + +def build(): + shelltools.export("ANT_OPTS", "-Duser.home=%s" % WorkDir) + shelltools.system("./bootstrap.sh") + +def install(): + for d in (anthome, os.path.join(anthome, "lib"), os.path.join(anthome, "etc"), os.path.join(anthome, "bin"), javadir, os.path.join(javadir, "ant")): + pisitools.dodir(d) + + shelltools.cd("build/lib") + + for f in ("ant.jar", "ant-launcher.jar", "ant-bootstrap.jar"): + pisitools.insinto(javadir, f, f.replace(".jar", "-%s.jar" % get.srcVERSION())) + pisitools.dosym(os.path.join(javadir, f.replace(".jar", "-%s.jar" % get.srcVERSION())), os.path.join(anthome, "lib", f)) + pisitools.dosym(os.path.join(javadir, f.replace(".jar", "-%s.jar" % get.srcVERSION())), os.path.join(javadir, f)) + + #Install optional JAR files to /usr/share/java/ant + for f in ("ant-jmf.jar", "ant-junit.jar", "ant-swing.jar"): + pisitools.insinto(os.path.join(javadir, "ant"), f, f.replace(".jar", "-%s.jar" % get.srcVERSION())) + pisitools.dosym(os.path.join(javadir, "ant", f.replace(".jar", "-%s.jar" % get.srcVERSION())), os.path.join(anthome, "lib", f)) + pisitools.dosym(os.path.join(javadir, "ant", f.replace(".jar", "-%s.jar" % get.srcVERSION())), os.path.join(javadir, "ant", f)) + + + shelltools.cd("../../src/script") + for f in glob.glob("*.bat"): + shelltools.unlink(f) + + for f in glob.glob("*.cmd"): + shelltools.unlink(f) + + pisitools.dobin("*") + pisitools.domove("/usr/bin/antRun*", os.path.join(anthome, "bin")) + shelltools.cd("../../") + + #Install XSLs + pisitools.insinto(os.path.join(anthome, "etc"), "src/etc/*.xsl") + + pisitools.dodoc("KEYS", "NOTICE", "README", "WHATSNEW", "LICENSE") + #pisitools.dohtml("docs/*") diff --git a/programming/build/ant/files/ant.conf b/programming/build/ant/files/ant.conf new file mode 100644 index 0000000000..207362fdf7 --- /dev/null +++ b/programming/build/ant/files/ant.conf @@ -0,0 +1,4 @@ +# Apache Ant start script configuration file + +# Optional jars and their dependencies +OPT_JAR_LIST=/usr/share/java/junit.jar \ No newline at end of file diff --git a/programming/build/ant/files/ant.csh b/programming/build/ant/files/ant.csh new file mode 100644 index 0000000000..a547db8cd3 --- /dev/null +++ b/programming/build/ant/files/ant.csh @@ -0,0 +1 @@ +setenv ANT_HOME /usr/share/ant \ No newline at end of file diff --git a/programming/build/ant/files/ant.sh b/programming/build/ant/files/ant.sh new file mode 100644 index 0000000000..d390f8842d --- /dev/null +++ b/programming/build/ant/files/ant.sh @@ -0,0 +1 @@ +export ANT_HOME=/usr/share/ant \ No newline at end of file diff --git a/programming/build/ant/files/apache-ant-no-test-jar.patch b/programming/build/ant/files/apache-ant-no-test-jar.patch new file mode 100644 index 0000000000..d4bdfed1bb --- /dev/null +++ b/programming/build/ant/files/apache-ant-no-test-jar.patch @@ -0,0 +1,11 @@ +--- apache-ant-1.8.0.orig/build.xml 2010-04-13 14:09:27.501531982 +0200 ++++ apache-ant-1.8.0/build.xml 2010-04-13 14:57:08.321408006 +0200 +@@ -832,7 +832,7 @@ + =================================================================== + --> + + + \ No newline at end of file diff --git a/programming/build/ant/files/bin_ant b/programming/build/ant/files/bin_ant new file mode 100644 index 0000000000..a88165d71a --- /dev/null +++ b/programming/build/ant/files/bin_ant @@ -0,0 +1,6 @@ +#!/bin/sh + +. /etc/apache-ant/ant.conf + +export LOCALCLASSPATH=${OPT_JAR_LIST} +/usr/share/apache-ant/bin/ant "$@" \ No newline at end of file diff --git a/programming/build/ant/pspec.xml b/programming/build/ant/pspec.xml new file mode 100644 index 0000000000..c21912eee7 --- /dev/null +++ b/programming/build/ant/pspec.xml @@ -0,0 +1,85 @@ + + + + + ant + http://ant.apache.org + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:console + Java-based build tool + Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. + http://archive.apache.org/dist/ant/source/apache-ant-1.9.6-src.tar.bz2 + + + + + apache-ant-no-test-jar.patch + + + + + ant + + + + + /etc + /usr/bin + /usr/share/ + + + 20ant + ant.conf + + + + + ant-docs + Documentation package for ant build system + + /usr/share/doc + + + + + + 2015-08-22 + 1.9.6 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-25 + 1.9.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-03 + 1.8.4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-20 + 1.8.4 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-06 + 1.8.4 + First release + PisiLinux Community + admins@pisilinux.org + + + \ No newline at end of file diff --git a/programming/build/ant/translations.xml b/programming/build/ant/translations.xml new file mode 100644 index 0000000000..86ef1fcfc5 --- /dev/null +++ b/programming/build/ant/translations.xml @@ -0,0 +1,9 @@ + + + + ant + Java tabanlı inşa aracı + Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir + Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. + +