debian/0000755000000000000000000000000011425336075007174 5ustar debian/rules0000755000000000000000000000062311425336075010255 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk JAVA_HOME := /usr/lib/jvm/default-java DEB_JARS := ant-nodeps install/libjnr-x86asm-java:: mh_installpom -plibjnr-x86asm-java pom.xml mh_installjar -plibjnr-x86asm-java pom.xml -l dist/jnr-x86asm.jar get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/copyright0000644000000000000000000000533111425336075011131 0ustar Format-Specification: http://dep.debian.net/deps/dep5/ Name: jnr-x86asm Maintainer: Wayne Meissner Source: http://github.com/wmeissner/jnr-x86asm Copyright: 2010 Wayne Meissner (Java code) 2008-2009 Petr Kobalicek (original C++ code) License: LGPL-3 only (Java code), MIT/X11 (C++ code) The full text of the LGPL-3 license can be found at `/usr/share/common-licenses/LGPL-3'. . The original MIT/X11 license for the C++ code is: . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: debian/* Copyright: 2010 Torsten Werner License: LGPL-3 or MIT/X11 The full text of the LGPL-3 license can be found at `/usr/share/common-licenses/LGPL-3'. . The MIT/X11 license: . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/watch0000644000000000000000000000017411425336075010227 0ustar version=3 http://github.com/wmeissner/jnr-x86asm/downloads \ /wmeissner/jnr-x86asm/tarball/(.*) debian debian/orig-tar.sh debian/orig-tar.sh0000755000000000000000000000040011425336075011251 0ustar #!/bin/sh -e # called by uscan with '--upstream-version' DIR=jnr-x86asm-$2 git clone http://github.com/wmeissner/jnr-x86asm.git $DIR (cd $DIR && git checkout $2) tar cfz jnr-x86asm_$2.orig.tar.gz --exclude .git $DIR rm -rf $DIR ../$2 debian/compat0000644000000000000000000000000211425336075010372 0ustar 7 debian/source/0000755000000000000000000000000011425336075010474 5ustar debian/source/format0000644000000000000000000000001411425336075011702 0ustar 3.0 (quilt) debian/doc-base0000644000000000000000000000057211425336075010600 0ustar Document: jnr-x86asm Title: Pure java x86 and x86_64 assembler Author: Wayne Meissner Abstract: This is a pure-java port of asmjit (http://code.google.com/p/asmjit/). AsmJit is complete x86/x64 JIT-Assembler for C++ language. Section: Programming Format: HTML Index: /usr/share/doc/libjnr-x86asm-java/javadoc/index.html Files: /usr/share/doc/libjnr-x86asm-java/javadoc/*.html debian/docs0000644000000000000000000000001511425336075010043 0ustar dist/javadoc debian/README.Debian-source0000644000000000000000000000037511425336075012540 0ustar jnr-x86asm ========== Use the rules/get-orig-source target to create the orig.tar.gz. For more details on repackaging of upstream sources please see the debian/orig-tar.sh file. -- Torsten Werner Fri, 30 Jul 2010 04:32:11 +0200 debian/changelog0000644000000000000000000000030211425336075011041 0ustar jnr-x86asm (0.1-1) unstable; urgency=low * Initial Release (closes: #591007). - The package is needed for JRuby. -- Torsten Werner Fri, 30 Jul 2010 04:32:11 +0200 debian/control0000644000000000000000000000312411425336075010577 0ustar Source: jnr-x86asm Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Torsten Werner Build-Depends: debhelper (>= 7), cdbs, maven-repo-helper Build-Depends-Indep: ant-optional, default-jdk Standards-Version: 3.9.0 Vcs-Git: git://git.debian.org/pkg-java/jnr-x86ams.git Vcs-Browser: http://git.debian.org/?p=pkg-java/jnr-x86asm.git Homepage: http://github.com/wmeissner/jnr-x86asm Package: libjnr-x86asm-java Architecture: all Depends: ${misc:Depends} Description: Pure java x86 and x86_64 assembler This is a pure-java port of asmjit (http://code.google.com/p/asmjit/). . AsmJit is complete x86/x64 JIT-Assembler for C++ language. It supports 32/64-bit x86 processors including all usable extensions (FPU, MMX, 3dNow, SSE, SSE2, SSE3 and SSE4) through type-safe API that mimics Intel assembler syntax and eliminates nearly all common mistakes that can be done by developers. . AsmJit contains also high-level code generation classes that can be used as a portable way to create JIT code that should run on all supported architectures. High-level classes can handle various function calling-conventions, register allocation and 32/64-bit mode differences. . AsmJit has been successfully tested by various C++ compilers (including MSVC, GCC and BorlandC++) under all major operating systems (including Windows, Linux and MacOS). AsmJit has been also ported to other programming languages including Java, Delphi and Smalltalk (although these ports are not official part of AsmJit and was developed outside).