debian/0000755000000000000000000000000012150751377007176 5ustar debian/rules0000755000000000000000000000130611635725440010255 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 # # Uncomment to ignore all test failures (but the tests will run anyway) #export DH_RUBY_IGNORE_TESTS=all # # Uncomment to ignore some test failures (but the tests will run anyway). # Valid values: #export DH_RUBY_IGNORE_TESTS=ruby1.8 ruby1.9.1 require-rubygems # # If you need to specify the .gemspec (eg there is more than one) #export DH_RUBY_GEMSPEC=gem.gemspec %: dh $@ --buildsystem=ruby --with ruby override_dh_installman: mkdir man pod2man --center "" --release "" --name ASCII85 --utf8 debian/ascii85.1.pod man/ascii85.1 dh_installman override_dh_auto_clean: rm -rf man dh_auto_clean override_dh_installchangelogs: dh_installchangelogs History.txt debian/ruby-ascii85.manpages0000644000000000000000000000001611635725440013133 0ustar man/ascii85.1 debian/watch0000644000000000000000000000014311635725440010224 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/Ascii85 .*/Ascii85-(.*).tar.gz debian/source/0000755000000000000000000000000011635725440010475 5ustar debian/source/format0000644000000000000000000000001411635725440011703 0ustar 3.0 (quilt) debian/ruby-test-files.yaml0000644000000000000000000000004012150746272013110 0ustar --- - spec/lib/ascii85_spec.rb debian/copyright0000644000000000000000000000252412150746272011132 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Ascii85 Source: http://ascii85.rubyforge.org Files: * Copyright: 2009 Johannes Holzfuß License: Expat Files: debian/* Copyright: 2011-2013 Cédric Boutillier License: Expat License: Expat 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/control0000644000000000000000000000200212150746272010571 0ustar Source: ruby-ascii85 Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Cédric Boutillier Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), ruby-minitest Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-ascii85.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-ascii85.git;a=summary Homepage: http://rubyforge.org/projects/ascii85/ XS-Ruby-Versions: all Package: ruby-ascii85 Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: Ruby library to encode/decode the Ascii85 format Ascii85 (also called "Base85") is a form of binary-to-text encoding, wich is mainly used in Adobe's PostScript and PDF format. This package provides a ruby library to encode/decode Ascii85. . It ships also a command line utility, which can encode/decode files to the standard output. debian/patches/0000755000000000000000000000000012150747174010625 5ustar debian/patches/series0000644000000000000000000000005412150746501012032 0ustar remove_rubygems.patch fix_path_in_bin.patch debian/patches/fix_path_in_bin.patch0000644000000000000000000000076112150747174014772 0ustar Description: Use non local path for ascii85 lib in bin/ascii85 Author: Cédric Boutillier Origin: vendor Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710006 Forwarded: no Last-Update: 2013-05-28 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/bin/ascii85 +++ b/bin/ascii85 @@ -8,7 +8,7 @@ require "optparse" -require File.join(File.dirname(__FILE__), '..', 'lib', 'ascii85') +require "ascii85" @options = { :wrap => 80, debian/patches/remove_rubygems.patch0000644000000000000000000000051112150746272015053 0ustar Description: remove use of rubygems in spec/ Author: Cédric Boutillier Origin: vendor Forwarded: not-needed Last-Update: 2013-05-19 --- a/spec/lib/ascii85_spec.rb +++ b/spec/lib/ascii85_spec.rb @@ -1,6 +1,5 @@ # encoding: utf-8 -require 'rubygems' require 'minitest/autorun' # Require implementation debian/compat0000644000000000000000000000000211635725440010373 0ustar 7 debian/ascii85.1.pod0000644000000000000000000000200511635725440011302 0ustar =encoding UTF-8 =head1 NAME ascii85 - encodes or decodes files using Ascii85 ruby library =head1 SYNOPSIS B [I] I =head1 DESCRIPTION Ascii85 (also called "Base85") is a form of binary-to-text encoding, wich is mainly used in Adobe's PostScript and PDF format. B is a command line utility, modeled after base64(1) from the GNU coreutils, can encode text files to Ascii85 or decode Ascii85 files to text, and then print the result to the standard output. If no file is given on the command line, B reads from the standard input. =head1 OPTIONS =over =item B<-w>, B<--wrap> COLUMN Wrap lines at COLUMN. Default is 80, use 0 for no wrapping =item B<-d>, B<--decode> Decode the input =item B<-h>, B<--help> Display a usage message and exit =item B<--version> Output version information =back =head1 AUTHORS B has been developed by Johannes Holzfuß. This manual page has been written for the Debian Project by Cédric Boutillier (but may used by others). debian/changelog0000644000000000000000000000254412150750447011052 0ustar ruby-ascii85 (1.0.2-2) unstable; urgency=low * debian/patches: add fix_path_in_bin.patch to use the correct path to find the ascii85 library. Thanks Sam Morris (Closes: #710006). -- Cédric Boutillier Mon, 27 May 2013 23:22:29 +0200 ruby-ascii85 (1.0.2-1) unstable; urgency=low * New upstream version * debian/control: + remove obsolete DM-Upload-Allowed flag + use canonical URI in Vcs-* fields + bump Standards-Version to 3.9.4 (no changes needed) + change in Build-Depends ruby-rspec to ruby-minitest to reflect upstream test framework change + update my email address * debian/copyright: + use DEP5 copyright-format/1.0 official URL for Format field + update my email address and years * debian/ruby-test-files.yaml: drop spec_helper.rb, not present any more * debian/patches: + drop 01_spec_fix_requires.diff, not needed anymore + add remove_rubygems.patch -- Cédric Boutillier Sun, 19 May 2013 21:02:48 +0200 ruby-ascii85 (1.0.1-2) unstable; urgency=low * Bump build dependency on gem2deb to >= 0.3.0~ -- Cédric Boutillier Tue, 26 Jun 2012 07:39:47 +0200 ruby-ascii85 (1.0.1-1) unstable; urgency=low * Initial release (Closes: #640110) -- Cédric Boutillier Fri, 02 Sep 2011 22:34:48 +0200 debian/ruby-ascii85.docs0000644000000000000000000000001411635725440012266 0ustar README.rdoc