debian/0000755000000000000000000000000011615034170007164 5ustar debian/watch0000644000000000000000000000015711615033701010217 0ustar version=3 http://repo1.maven.org/maven2/org/fusesource/jansi/jansi/ \ (1[0-9\.]*)/ \ debian debian/orig-tar.sh debian/changelog0000644000000000000000000000133211615033701011034 0ustar jansi (1.4-3) unstable; urgency=low * Team upload. * Install Maven artifacts. Thanks to James Page for supplying the patch. (Closes: #635028) -- Torsten Werner Sat, 30 Jul 2011 18:54:42 +0200 jansi (1.4-2) unstable; urgency=low * Add Build-Depends on ant, ant-optional and junit4 in order to enable unit tests during build time. * Remove dependency on default-jre-headless in order to comply with Debian Java policy. (Closes: #617815). * Update watch file. -- Miguel Landaeta Fri, 18 Mar 2011 19:03:56 -0430 jansi (1.4-1) unstable; urgency=low * Initial release. (Closes: #591728), -- Miguel Landaeta Thu, 05 Aug 2010 21:39:40 -0430 debian/jlibs0000644000000000000000000000001211615033701010202 0ustar jansi.jar debian/libjansi-java.poms0000644000000000000000000000005011615033701012570 0ustar pom.xml --artifact=jansi.jar --java-lib debian/javadoc0000644000000000000000000000001111615033701010505 0ustar internal debian/maven.ignoreRules0000644000000000000000000000206011615033701012507 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/ # Ignore all platform specific native integrations # not built for Debian org.fusesource.jansi jansi-native * * linux32 * org.fusesource.jansi jansi-native * * linux64 * org.fusesource.jansi jansi-native * * osx * org.fusesource.jansi jansi-native * * windows64 * org.fusesource.jansi jansi-native * * windows32 * debian/control0000644000000000000000000000205611615033701010571 0ustar Source: jansi Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Miguel Landaeta Build-Depends: debhelper (>= 7.0.50~), default-jdk, javahelper, libjansi-native-java, libhawtjni-runtime-java, ant, ant-optional, junit4, maven-repo-helper Standards-Version: 3.9.1 DM-Upload-Allowed: yes Homepage: http://jansi.fusesource.org/ Vcs-Git: git://git.debian.org/git/pkg-java/jansi.git Vcs-Browser: http://git.debian.org/?p=pkg-java/jansi.git Package: libjansi-java Architecture: all Depends: libjansi-native-java, libhawtjni-runtime-java, ${misc:Depends} Description: Java library for generating and interpreting ANSI escape sequences Jansi is a small java library that allows you to use ANSI escape codes to format your console output which works across all platforms. . Jansi detects and abstracts the ANSI support provided by the attached terminal. When your Java application uses Jansi, it can always assume that standard out and error streams support ANSI sequences. debian/copyright0000644000000000000000000000060111615033701011113 0ustar The sources where downloaded from http://fusesource.com/forge/gitweb?p=jansi.git. Files: * Copyright: © 2009, Progress Software, Inc. License: Apache-2.0 Files: debian/* Copyright: © 2010 Miguel Landaeta License: Apache-2.0 License: Apache-2.0 The full text of the Apache 2.0 license is distributed in /usr/share/common-licenses/Apache-2.0 on Debian systems. debian/compat0000644000000000000000000000000211615033701010361 0ustar 7 debian/source/0000755000000000000000000000000011615033701010463 5ustar debian/source/format0000644000000000000000000000001411615033701011671 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000116011615033701010241 0ustar #!/usr/bin/make -f export JAVA_HOME=/usr/lib/jvm/default-java export CLASSPATH=/usr/share/java/jansi-native.jar:/usr/share/java/hawtjni-runtime.jar %: dh --with javahelper --with maven-repo-helper $@ override_dh_auto_build: jh_build jansi.jar src/main/java override_dh_auto_clean: dh_auto_clean ant -f debian/build.xml clean override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) ant -f debian/build.xml test endif get-orig-source: cd $(dir $(firstword $(MAKEFILE_LIST)))../ && \ uscan \ --verbose \ --no-symlink \ --destdir $(CURDIR) \ --watchfile debian/watch \ --force-download debian/orig-tar.sh0000755000000000000000000000073311615033701011251 0ustar #!/bin/sh set -e # called by uscan with '--upstream-version' echo "version $2" package=`dpkg-parsechangelog | sed -n 's/^Source: //p'` version=$2 tarball=$3 REPO="git://forge.fusesource.com/jansi.git" TAR=${package}_${version}.orig.tar.gz DIR=${package}-${version}.orig git clone ${REPO} ${DIR} cd ${DIR} && git checkout ${package}-${version} && cd .. GZIP=--best tar --exclude=.git --numeric --group 0 --owner 0 -cvzf ${TAR} ${DIR} rm -rf $tarball $DIR debian/clean0000644000000000000000000000001211615033701010161 0ustar jansi.jar debian/build.xml0000644000000000000000000000205011615033701011001 0ustar