debian/0000755000000000000000000000000012271411714007166 5ustar debian/README.source0000644000000000000000000000044212271411334011343 0ustar Information about disruptor --------------------------- This package was debianized using the mh_make command from the maven-debian-helper package. The build system uses Maven but prevents it from downloading anything from the Internet, making the build compliant with the Debian policy. debian/changelog0000644000000000000000000000023512271411334011036 0ustar disruptor (3.2.0-1) unstable; urgency=medium * Initial release (Closes: #736354) -- Emmanuel Bourg Wed, 22 Jan 2014 23:19:52 +0100 debian/compat0000644000000000000000000000000212271411334010362 0ustar 9 debian/control0000644000000000000000000000215512271411334010572 0ustar Source: disruptor Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Emmanuel Bourg Build-Depends: debhelper (>= 9), cdbs, default-jdk, maven-debian-helper (>= 1.5) Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-java/disruptor.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/disruptor.git Homepage: http://lmax-exchange.github.com/disruptor Package: libdisruptor-java Architecture: all Depends: ${misc:Depends}, ${maven:Depends} Recommends: ${maven:OptionalDepends} Description: Disruptor - High Performance Inter-Thread Messaging Library for Java The disruptor is a high-throughput and low-latency concurrency framework. It is designed to maximize the efficiency of memory allocation, and operate in a cache-friendly manner so that it will perform optimally on modern hardware. . At the heart of the disruptor mechanism sits a pre-allocated bounded data structure in the form of a ring-buffer. Data is added to the ring buffer through one or more producers and processed by one or more consumers. debian/copyright0000644000000000000000000000077512271411334011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Disruptor Framework Upstrm-Contact: Michael Barker Source: http://lmax-exchange.github.com/disruptor Files: * Copyright: 2011-2013, LMAX Ltd License: Apache-2.0 Files: debian/* Copyright: 2014, Emmanuel Bourg License: Apache-2.0 License: Apache-2.0 On Debian systems, the full text of the Apache-2.0 license can be found in the file '/usr/share/common-licenses/Apache-2.0' debian/libdisruptor-java.poms0000644000000000000000000000320512271411334013525 0ustar # List of POM files for the package # Format of this file is: # [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 tag from the POM # --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=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: 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 to use when installing the library in /usr/share/java # --usj-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=: the destination for the real jar. # It will be installed with mh_install. [mh_install] # --classifier=: Optional, the classifier for the jar. Empty by default. # --site-xml=: Optional, the location for site.xml if it needs to be installed. # Empty by default. [mh_install] # pom.xml --has-package-version --java-lib debian/maven.ignoreRules0000644000000000000000000000012312271411334012506 0ustar junit junit * * * * org.jmock jmock-junit4 * * * * org.jmock jmock-legacy * * * * debian/maven.rules0000644000000000000000000000000112271411334011335 0ustar debian/orig-tar.sh0000755000000000000000000000053612271411334011253 0ustar #!/bin/sh set -e VERSION=$2 DIR=disruptor-${VERSION} TAR=../disruptor_${VERSION}.orig.tar.xz tar -xf $3 rm $3 XZ_OPT=--best tar -c -v -J -f $TAR \ --exclude '*.jar' \ --exclude '*.bat' \ --exclude '.settings' \ --exclude '.classpath' \ --exclude '.project' \ --exclude '.idea' \ --exclude '*.iml' \ $DIR rm -Rf $DIR debian/patches/0000755000000000000000000000000012271411334010613 5ustar debian/patches/01-jmock-compatibility.patch0000644000000000000000000000074012271411334016025 0ustar --- a/src/test/java/com/lmax/disruptor/RingBufferTest.java +++ b/src/test/java/com/lmax/disruptor/RingBufferTest.java @@ -1329,7 +1329,7 @@ public void describeTo(final Description description) { description.appendText("Expected ring buffer with events matching: "); - allOf(expectedValueMatchers).describeTo(description); + allOf((Matcher[]) expectedValueMatchers).describeTo(description); } } debian/patches/series0000644000000000000000000000000012271411334012016 0ustar debian/pom.xml0000644000000000000000000000316412271411334010505 0ustar 4.0.0 com.lmax disruptor 3.2.0 Disruptor Framework Disruptor - Concurrent Programming Framework http://lmax-exchange.github.com/disruptor The Apache Software License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo team LMAX Disruptor Development Team lmax-disruptor@googlegroups.com scm:git@github.com:LMAX-Exchange/disruptor.git scm:git@github.com:LMAX-Exchange/disruptor.git org.jmock jmock-junit4 2.5.1 test org.jmock jmock-legacy 2.5.1 test junit junit 4.5 test debian/rules0000755000000000000000000000104012271411334010237 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java DEB_INSTALL_CHANGELOGS_ALL := README.md pre-build:: cp debian/pom.xml . mh_patchpoms -plibdisruptor-java --keep-pom-version clean:: rm -f pom.xml get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename get-orig-pom: wget http://central.maven.org/maven2/com/lmax/disruptor/$(DEB_UPSTREAM_VERSION)/disruptor-$(DEB_UPSTREAM_VERSION).pom -O debian/pom.xml debian/source/0000755000000000000000000000000012271411334010464 5ustar debian/source/format0000644000000000000000000000001412271411334011672 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000021712271411334010215 0ustar version=3 opts=uversionmangle=s/\.beta/~beta/ \ https://github.com/LMAX-Exchange/disruptor/releases .*/(\d.*).tar.gz debian debian/orig-tar.sh debian/maven.properties0000644000000000000000000000034512271411461012413 0ustar # Include here properties to pass to Maven during the build. # For example: # maven.test.skip=true maven.test.skip=true # Required for building on platforms older than Jessie maven.compiler.source=1.5 maven.compiler.target=1.5