Commit a427770f authored by Andreas Tille's avatar Andreas Tille
Browse files

Initial packaging

parent 8bf5273f
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
libjavolution-java (6.0.0+dfsg-1) UNRELEASED; urgency=low

  * Initial release (Closes: #xxxxxx).

 -- Andreas Tille <tille@debian.org>  Sat, 19 May 2018 00:11:29 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
11

debian/control

0 → 100644
+47 −0
Original line number Diff line number Diff line
Source: libjavolution-java
Maintainer: Debian Java Maintainers <pkg-java-maintainers@alioth-lists.debian.net>
Uploaders: Andreas Tille <tille@debian.org>
Section: java
Priority: optional
Build-Depends: debhelper (>= 11~),
               default-jdk,
               javahelper,
               maven-debian-helper
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/java-team/libjavolution-java
Vcs-Git: https://salsa.debian.org/java-team/libjavolution-java.git
Homepage: http://javolution.org/

Package: libjavolution-java
Architecture: all
Depends: ${java:Depends},
         ${misc:Depends}
Description: Java core library for real-time and embedded systems
 Javolution real-time goals are simple: To make your application faster
 and more time predictable!
 .
  * High-Performance - Hardware accelerated computing (GPUs) with
    ComputeContext.
  * Minimalistic - Collection classes, supporting custom views, closure-
    based iterations, map-reduce paradigm, parallel computations, etc.
  * Optimized - To reduce the worst case execution time documented
    through annotations.
  * Innovative - Fractal-based structures to maintain high-performance
    regardless of the size of the data.
  * Multi-Cores Ready - Most parallelizable classes (including
    collections) are either mutex-free (atomic) or using extremely short
    locking time (shared).
  * OSGi Compliant - Run as a bundle or as a standard library. OSGi
    contexts allow cross cutting concerns (concurrency, logging,
    security, ...) to be addressed at run-time through OSGi published
    services without polluting the application code (Separation of
    Concerns).
  * Interoperable - Struct and Union base classes for direct interfacing
    with native applications. Development of the Javolution C++ library
    to mirror its Java counterpart and makes it easy to port any Java
    application to C++ for native compilation (maven based) or to write
    Java-Like code directly in C++ (more at Javolution C++ Overview)).
  * Simple - You don't need to know the hundreds of new Java 8 util.*
    classes, most can be built from scratch by chaining Javolution
    collections or maps. No need to worry about configuration,
    immutability or code bloating !

debian/copyright

0 → 100644
+40 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: 
Upstream-Contact: 
Source: https://github.com/javolution/javolution/releases
Comment: The download tarball contains an identical code copy in dir
         javalution - remove this here
Files-Excluded: */javolution
                */lib/windows
                */.git*

Files: *
Copyright: 2012-2013 Javolution
License: BSD-2-clause

Files: debian/*
Copyright: 2018 Andreas Tille <tille@debian.org>
License: BSD-2-clause

License: BSD-2-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
 .
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+30 −0
Original line number Diff line number Diff line
# List of POM files for the package
# Format of this file is:
# <path to pom file> [option]*
# where option can be:
#   --ignore: ignore this POM and its artifact if any
#   --ignore-pom: don't install the POM. To use on POM files that are created
#     temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms]
#   --no-parent: remove the <parent> tag from the POM
#   --package=<package>: an alternative package to use when installing this POM
#      and its artifact
#   --has-package-version: to indicate that the original version of the POM is the same as the upstream part
#      of the version for the package.
#   --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
#      during a clean operation with mh_cleanpom or mh_installpom
#   --artifact=<path>: path to the build artifact associated with this POM,
#      it will be installed when using the command mh_install. [mh_install]
#   --java-lib: install the jar into /usr/share/java to comply with Debian
#      packaging guidelines
#   --usj-name=<name>: name to use when installing the library in /usr/share/java
#   --usj-version=<version>: version to use when installing the library in /usr/share/java
#   --no-usj-versionless: don't install the versionless link in /usr/share/java
#   --dest-jar=<path>: the destination for the real jar.
#     It will be installed with mh_install. [mh_install]
#   --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
#   --site-xml=<location>: Optional, the location for site.xml if it needs to be installed.
#     Empty by default. [mh_install]
#
pom.xml --no-parent --has-package-version
core-java/pom.xml --has-package-version
core-cpp/pom.xml --has-package-version
Loading