debian/0000755000000000000000000000000012202015533007157 5ustar debian/source/0000755000000000000000000000000012201753123010462 5ustar debian/source/format0000644000000000000000000000001412201753123011670 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000025112202011773011031 0ustar ruby-versionomy (0.4.4-1) unstable; urgency=low * Initial release (Closes: #719314) -- Ben Armstrong Sun, 11 Aug 2013 08:41:58 -0300 debian/control0000644000000000000000000000166712202005623010573 0ustar Source: ruby-versionomy Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Ben Armstrong Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.4.1~), ruby-blockenspiel Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-versionomy.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-versionomy.git;a=summary Homepage: http://dazuma.github.com/versionomy XS-Ruby-Versions: all Package: ruby-versionomy Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-blockenspiel Description: Generalized version number class for Ruby Versionomy is a generalized version number library. It provides tools to represent, manipulate, parse, and compare version numbers in the wide variety of versioning schemes in use. debian/ruby-versionomy.changelogs0000644000000000000000000000001512201765416014413 0ustar History.rdoc debian/ruby-versionomy.docs0000644000000000000000000000003412201765242013227 0ustar README.rdoc Versionomy.rdoc debian/ruby-test-files.yaml0000644000000000000000000000047612201763262013120 0ustar --- - test/tc_custom_format.rb - test/tc_readme_examples.rb - test/tc_semver_basic.rb - test/tc_semver_conversions.rb - test/tc_standard_basic.rb - test/tc_standard_bump.rb - test/tc_standard_change.rb - test/tc_standard_comparison.rb - test/tc_standard_misc.rb - test/tc_standard_parse.rb - test/tc_standard_reset.rb debian/watch0000644000000000000000000000015112201753123010210 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/versionomy .*/versionomy-(.*).tar.gz debian/compat0000644000000000000000000000000212201753123010360 0ustar 7 debian/patches/0000755000000000000000000000000012201762730010615 5ustar debian/patches/series0000644000000000000000000000003012201753304012020 0ustar use_moved_Version.patch debian/patches/use_moved_Version.patch0000644000000000000000000000130612201762730015331 0ustar Description: use moved version of Version file Version file is moved from the root of the source package to lib/versionomy The relative path of Version should be adapted in roxml.rb file Author: Ben Armstrong Last-Update: 2013-08-11 Forwarded: no --- a/lib/versionomy/version.rb +++ b/lib/versionomy/version.rb @@ -37,7 +37,7 @@ module Versionomy # Current gem version, as a frozen string. - VERSION_STRING = ::File.read(::File.dirname(__FILE__)+'/../../Version').strip.freeze + VERSION_STRING = ::File.read(::File.dirname(__FILE__)+'/Version').strip.freeze # Current gem version, as a Versionomy::Value. VERSION = ::Versionomy.parse(VERSION_STRING, :standard) debian/copyright0000644000000000000000000000360112202015533011112 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: versionomy Source: http://dazuma.github.io/versionomy/ Files: * Copyright: 2008-2012 Daniel Azuma License: BSD-3-clause Files: debian/* Copyright: 2013 Ben Armstrong License: BSD-3-clause Comment: the Debian packaging is licensed under the same terms as the original package. 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: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of the copyright holder, nor the names of any other contributors to this software, may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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. debian/clean0000644000000000000000000000002712201753400010164 0ustar lib/versionomy/Version debian/rules0000755000000000000000000000107112201753460010245 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 #move Version file inside lib/versionomy override_dh_auto_install: cp Version lib/versionomy/Version dh_auto_install