debian/0000755000000000000000000000000012237215354007172 5ustar debian/watch0000644000000000000000000000015411426035115010215 0ustar version=3 https://dynalang.svn.sourceforge.net/svnroot/dynalang/tags/ (\d.*)/ \ debian debian/orig-tar.sh debian/ant.properties0000644000000000000000000000003111426035115012056 0ustar build.sysclasspath=first debian/README.Debian-source0000644000000000000000000000037111426035115012524 0ustar dynalang ======== 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 Mon, 02 Aug 2010 05:26:46 +0200 debian/jlibs0000644000000000000000000000002011426035115010202 0ustar mop/build/*.jar debian/orig-tar.sh0000755000000000000000000000034411426035115011250 0ustar #!/bin/sh -e # called by uscan with '--upstream-version' DIR=dynalang-$2 svn export https://dynalang.svn.sourceforge.net/svnroot/dynalang/tags/$2 $DIR tar cfz dynalang_$2.orig.tar.gz $DIR rm -rf $DIR ../$2 debian/rules0000755000000000000000000000073611426035115010252 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_BUILDDIR := mop DEB_ANT_BUILD_TARGET := jar test doc DEB_JARS := ant-junit junit emma_ant emma ant-trax install/libdynalang-java:: jh_installlibs -plibdynalang-java jh_installjavadoc -plibdynalang-java get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/javadoc0000644000000000000000000000002611426035115010514 0ustar mop/build/doc/javadoc debian/copyright0000644000000000000000000000070511426035115011121 0ustar Format-Specification: http://dep.debian.net/deps/dep5/ Name: dynalang Maintainer: Attila Szegedi Source: http://dynalang.sourceforge.net/ Copyright: 2007 Attila Szegedi License: Apache-2.0 The full text of the license can be found at `/usr/share/common-licenses/Apache-2.0'. Files: debian/* Copyright: 2010 Torsten Werner License: Apache-2.0 The full text of the license can be found at `/usr/share/common-licenses/Apache-2.0'. debian/source/0000755000000000000000000000000011426035115010464 5ustar debian/source/format0000644000000000000000000000001411426035115011672 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011426035115010613 5ustar debian/patches/0002-fix-build-failure.patch0000644000000000000000000000231211426035115015521 0ustar From: Torsten Werner Date: Mon, 2 Aug 2010 05:04:10 +0200 Subject: [PATCH] fix build failure --- .../dynalang/mop/beans/BeanMetaobjectProtocol.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mop/src/org/dynalang/mop/beans/BeanMetaobjectProtocol.java b/mop/src/org/dynalang/mop/beans/BeanMetaobjectProtocol.java index daaeeaa..51e3a1d 100644 --- a/mop/src/org/dynalang/mop/beans/BeanMetaobjectProtocol.java +++ b/mop/src/org/dynalang/mop/beans/BeanMetaobjectProtocol.java @@ -119,7 +119,7 @@ public class BeanMetaobjectProtocol implements MetaobjectProto // Add constructors DynamicMethod> dynaCtor = null; - Constructor[] ctrs = clazz.getConstructors(); + Constructor[] ctrs = clazz.getConstructors(); for (int i = 0; i < ctrs.length; i++) { Constructor ctr = ctrs[i]; dynaCtor = addMember(ctr, "", clazz, dynaCtor); @@ -474,4 +474,4 @@ public class BeanMetaobjectProtocol implements MetaobjectProto return name.hashCode() ^ Arrays.hashCode(args); } } -} \ No newline at end of file +} -- debian/patches/0001-disable-ivy.patch0000644000000000000000000000171311426035115014424 0ustar From: Torsten Werner Date: Mon, 2 Aug 2010 05:03:21 +0200 Subject: [PATCH] disable ivy --- mop/build.xml | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/mop/build.xml b/mop/build.xml index 2f1daa2..3cccfb6 100644 --- a/mop/build.xml +++ b/mop/build.xml @@ -22,7 +22,6 @@ - @@ -30,7 +29,6 @@ - @@ -193,4 +191,4 @@ compression="gzip" basedir="build" includes="${artifact.name}-${revision}/**/*"/> - \ No newline at end of file + -- debian/patches/series0000644000000000000000000000006411426035115012030 0ustar 0001-disable-ivy.patch 0002-fix-build-failure.patch debian/compat0000644000000000000000000000000211426035115010362 0ustar 7 debian/control0000644000000000000000000000250612237215411010572 0ustar Source: dynalang Section: java Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Java Maintainers Uploaders: Torsten Werner Build-Depends: debhelper (>= 7), cdbs, javahelper Build-Depends-Indep: ant-optional, default-jdk, junit, libemma-java Standards-Version: 3.9.0 Vcs-Git: git://git.debian.org/pkg-java/dynalang.git Vcs-Browser: http://git.debian.org/?p=pkg-java/dynalang.git Homepage: http://dynalang.sourceforge.net Package: libdynalang-java Architecture: all Depends: ${misc:Depends} Description: The JVM Dynamic Languages Metaobject Protocol Library This library aims to make it possible for objects created by a runtime for one dynamic language to be passed to and manipulated by a different dynamic language, running within the same JVM. More generally, it aims to provide a facility where an arbitrary system (usually a language runtime) can intuitively manipulate any arbitrary object model built atop of Java objects (usually the native object model of some other language). . Basically, it provides a unified mechanism that all dynamic languages on the JVM can use to inter-operably manipulate their own objects as well as objects from any other language that also uses this mechanism. debian/changelog0000644000000000000000000000130712237215354011045 0ustar dynalang (0.4-1ubuntu2) trusty; urgency=low * Revert build-dependency to ant-optional; ant1.7-optional is obsolete and this package now builds cleanly with ant-optional. This upload is substantively identical to 0.4-1. -- Colin Watson Fri, 08 Nov 2013 17:10:03 +0000 dynalang (0.4-1ubuntu1) natty; urgency=low * Build-depend on ant1.7-optional. LP: #749268. -- Matthias Klose Sun, 03 Apr 2011 14:10:44 +0200 dynalang (0.4-1) unstable; urgency=low * Initial Release (closes: #591313). - The package is needed for JRuby. - Only the subcomponent 'mop' is built yet. -- Torsten Werner Mon, 02 Aug 2010 05:26:46 +0200