debian/0000755000000000000000000000000012245134211007161 5ustar debian/rules0000755000000000000000000000127112245051667010257 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=debian/escape.gemspec %: dh $@ --buildsystem=ruby --with ruby # move escape.rb into lib on buildtime, because gem2deb needs lib/ override_dh_auto_configure: mkdir lib cp escape.rb lib/ dh_auto_configure -O--buildsystem=ruby override_dh_auto_clean: rm -rf lib dh_auto_clean -O--buildsystem=ruby debian/watch0000644000000000000000000000007312245025162010216 0ustar version=3 http://www.a-k-r.org/escape/escape-(.*)\.tar\.gz debian/source/0000755000000000000000000000000012245025162010465 5ustar debian/source/format0000644000000000000000000000001412245025162011673 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000352012245025162011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: escape Source: http://www.a-k-r.org/escape/ Files: * Copyright: 2006-2007 Tanaka Akira License: BSD-3-clause Files: debian/* Copyright: 2007 NIIBE Yutaka 2013 Jonas Genannt License: public-domain License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: public-domain No license required for any purpose; the work is not subject to copyright in any jurisdiction. debian/control0000644000000000000000000000244012245025162010570 0ustar Source: ruby-escape Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: NIIBE Yutaka , Jonas Genannt Build-Depends: debhelper (>= 9), gem2deb (>= 0.4.1~) Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-escape.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-escape.git;a=summary Homepage: http://www.a-k-r.org/escape/ XS-Ruby-Versions: all Package: ruby-escape Architecture: all XB-Ruby-Versions: ${ruby:Versions} Replaces: libescape-ruby (<< 0.2-2~) Breaks: libescape-ruby (<< 0.2-2~) Provides: libescape-ruby Depends: ruby | ruby-interpreter, ${misc:Depends}, ${shlibs:Depends} Description: HTML/URI/shell escaping utilities for Ruby For Ruby programmers, this utility provides several escaping functions for HTML, URI, and shell command line handling. This library is an full replacement for Ruby internal escaping Shellwords module. Package: libescape-ruby Section: oldlibs Priority: extra Architecture: all Depends: ruby-escape, ${misc:Depends} Description: Transitional package for ruby-escape This is a transitional package to ease upgrades to the ruby-escape package. It can safely be removed. debian/ruby-escape.docs0000644000000000000000000000000712245025162012253 0ustar README debian/compat0000644000000000000000000000000212245025162010363 0ustar 9 debian/escape.gemspec0000644000000000000000000000207412245051667012006 0ustar # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "escape" s.version = "0.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Tanaka Akira"] s.date = "2013-08-18" s.description = "escape library provides several HTML/URI/shell escaping functions." s.email = ["akr@fsij.org"] s.extra_rdoc_files = [ "ChangeLog", "README", "VERSION" ] s.files = [ "escape.rb" ] s.homepage = "http://www.a-k-r.org/escape/" s.require_paths = ["lib"] s.rubygems_version = "1.8.23" s.summary = "Ruby Escape library" if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q, [">= 2.3"]) else s.add_dependency(%q, [">= 2.3"]) end else s.add_dependency(%q, [">= 2.3"]) end end debian/changelog0000644000000000000000000000123512245025162011040 0ustar ruby-escape (0.2-2) unstable; urgency=low * recreated debian/ - with gem2deb libruby-escape => ruby-escape (Closes: #722385) - added Homepage field (Closes: #615363) - better long Description * change Maintainer to Ruby pkg group (Closes: #677287) * added myself as Uploader -- Jonas Genannt Mon, 25 Nov 2013 18:00:49 +0100 libescape-ruby (0.2-1) unstable; urgency=low * New upstream release. -- NIIBE Yutaka Thu, 1 Mar 2007 12:06:33 +0900 libescape-ruby (0.1-1) unstable; urgency=low * Initial release (Closes: #406156). -- NIIBE Yutaka Wed, 10 Jan 2007 13:14:15 +0900 debian/ruby-tests.rb0000644000000000000000000000006212245025162011631 0ustar $: << 'lib' << '.' require 'test/test-escape.rb'