debian/0000755000000000000000000000000012032755032007165 5ustar debian/maven.ignoreRules0000644000000000000000000000144112032754676012530 0ustar # Maven ignore rules - ignore some Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM # junit junit jar s/3\\..*/3.x/ org.codehaus.mojo rat-maven-plugin * * * * debian/maven.rules0000644000000000000000000000213312032754676011363 0ustar # Maven rules - transform Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ org.apache.felix org.apache.felix.gogo.runtime bundle s/.*/debian/ * * org.apache.felix org.apache.felix.gogo.shell bundle s/.*/debian/ * * s/org.apache.felix/org.osgi/ org.osgi.compendium * * * * s/org.apache.felix/org.osgi/ org.osgi.core * * * * debian/watch0000644000000000000000000000025512032754676010235 0ustar version=3 opts="uversionmangle=s/-(alpha|beta)-/~$1/" \ https://svn.apache.org/repos/asf/felix/releases/ \ org.apache.felix.gogo.shell-(\d.*)/ debian debian/orig-tar.sh debian/rules0000755000000000000000000000036012032754676010261 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 get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/changelog0000644000000000000000000000076412032754676011063 0ustar felix-gogo-shell (0.10.0-2) unstable; urgency=low * Team upload. * Install JAR into /usr/share/java to comply with policy. (Closes: #689472) * Bump Standards-Version to 3.9.4. No changes were required. * Update Format field in copyright file. -- tony mancill Tue, 02 Oct 2012 23:14:04 -0700 felix-gogo-shell (0.10.0-1) unstable; urgency=low * Initial release (Closes: #647937). -- Damien Raude-Morvan Mon, 07 Nov 2011 22:26:55 +0100 debian/patches/0000755000000000000000000000000012032754676010631 5ustar debian/patches/series0000644000000000000000000000004712032754676012047 0ustar ambiguous_reference_BundleContext.diff debian/patches/ambiguous_reference_BundleContext.diff0000644000000000000000000000234712032754676020340 0ustar Description: Add a cast to java.lang.String to remove "ambiguous reference" error message during javac. Author: Damien Raude-Morvan Last-Update: 2011-11-06 Forwarded: no Index: b/src/main/java/org/apache/felix/gogo/shell/Converters.java =================================================================== --- a/src/main/java/org/apache/felix/gogo/shell/Converters.java +++ b/src/main/java/org/apache/felix/gogo/shell/Converters.java @@ -192,7 +192,7 @@ String s = in.toString(); if (s.startsWith("(") && s.endsWith(")")) { - ServiceReference refs[] = context.getServiceReferences(null, String.format( + ServiceReference refs[] = context.getServiceReferences( (java.lang.String)null, String.format( "(|(service.id=%s)(service.pid=%s))", in, in)); if (refs != null && refs.length > 0) { @@ -200,7 +200,7 @@ } } - ServiceReference refs[] = context.getServiceReferences(null, String.format( + ServiceReference refs[] = context.getServiceReferences( (java.lang.String)null, String.format( "(|(service.id=%s)(service.pid=%s))", in, in)); if (refs != null && refs.length > 0) { debian/maven.properties0000644000000000000000000000023012032754676012421 0ustar # Include here properties to pass to Maven during the build. # For example: # maven.test.skip=true maven.compiler.source=1.5 maven.compiler.target=1.5 debian/orig-tar.sh0000755000000000000000000000075112032754676011270 0ustar #!/bin/sh -e VERSION=$2 TAR=../felix-gogo-shell_$VERSION.orig.tar.gz DIR=felix-gogo-shell-$VERSION TAG=$(echo "org.apache.felix.gogo.shell-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export https://svn.apache.org/repos/asf/felix/releases/${TAG}/ $DIR GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR rm -rf $DIR ../$TAG # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $TAR $origDir && echo "moved $TAR to $origDir" fi debian/source/0000755000000000000000000000000012032754676010502 5ustar debian/source/format0000644000000000000000000000001412032754676011710 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000045412032754676011364 0ustar Information about felix-gogo-shell ------------------------------ 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/compat0000644000000000000000000000000212032754676010400 0ustar 7 debian/libfelix-gogo-shell-java-doc.install0000644000000000000000000000007512032754676016112 0ustar target/apidocs/* usr/share/doc/libfelix-gogo-shell-java/api debian/copyright0000644000000000000000000000075612032754676011145 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Apache Felix Gogo Shell Source: http://felix.apache.org/site/apache-felix-gogo.html Files: * Copyright: 2011, Apache Software Foundation License: Apache-2.0 Files: debian/* Copyright: 2011, Damien Raude-Morvan License: Apache-2.0 License: Apache-2.0 On Debian GNU/Linux system you can find the complete text of the Apache-2.0 license in '/usr/share/common-licenses/Apache-2.0' debian/libfelix-gogo-shell-java.poms0000644000000000000000000000274312032754676014663 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 with mh_install or mh_installpoms. To use with POM files that are created # temporarily for certain artifacts such as Javadoc jars. # --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 # --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. # --classifier=: Optional, the classifier for the jar. Empty by default. # pom.xml --no-parent --java-lib debian/control0000644000000000000000000000377412032754676010620 0ustar Source: felix-gogo-shell Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Damien Raude-Morvan Build-Depends: cdbs, debhelper (>= 7), default-jdk, maven-debian-helper Build-Depends-Indep: default-jdk-doc, junit4, libfelix-gogo-runtime-java, libfelix-gogo-runtime-java-doc, libmaven-bundle-plugin-java, libmaven-javadoc-plugin-java, libosgi-compendium-java, libosgi-compendium-java-doc, libosgi-core-java, libosgi-core-java-doc, libsurefire-java Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/git/pkg-java/felix-gogo-shell.git Vcs-Browser: http://git.debian.org/?p=pkg-java/felix-gogo-shell.git Homepage: http://felix.apache.org/site/apache-felix-gogo.html Package: libfelix-gogo-shell-java Architecture: all Depends: ${maven:Depends}, ${misc:Depends} Recommends: ${maven:OptionalDepends} Suggests: libfelix-gogo-shell-java-doc Description: Apache Felix Gogo Shell bundle Apache Felix Gogo is a subproject of Apache Felix implementing the OSGi RFC 147, which describes a standard shell for OSGi-based environments. . Shell bundle of Gogo subproject provides a simple textual user interface to interact with the command processor. Package: libfelix-gogo-shell-java-doc Architecture: all Section: doc Depends: ${maven:DocDepends}, ${misc:Depends} Recommends: ${maven:DocOptionalDepends} Suggests: libfelix-gogo-shell-java Description: Documentation for Apache Felix Gogo Shell bundle Apache Felix Gogo is a subproject of Apache Felix implementing the OSGi RFC 147, which describes a standard shell for OSGi-based environments. . Shell bundle of Gogo subproject provides a simple textual user interface to interact with the command processor. . This package contains the API documentation of libfelix-gogo-shell-java. debian/libfelix-gogo-shell-java-doc.doc-base.api0000644000000000000000000000055112032754676016670 0ustar Document: libfelix-gogo-shell-java Title: API Javadoc for Apache Felix Gogo Shell Author: Apache Felix Gogo Shell developers Abstract: This is the API Javadoc provided for the libfelix-gogo-shell-java library. Section: Programming Format: HTML Index: /usr/share/doc/libfelix-gogo-shell-java/api/index.html Files: /usr/share/doc/libfelix-gogo-shell-java/api/*