debian/0000755000000000000000000000000012222575245007174 5ustar debian/ruby-test-files.yaml0000644000000000000000000000023012222575245013111 0ustar --- - test/test_broken_graph.rb - test/test_transaction_simple_group.rb - test/test_transaction_simple.rb - test/test_transaction_simple_threadsafe.rb debian/source/0000755000000000000000000000000012222575245010474 5ustar debian/source/format0000644000000000000000000000001412222575245011702 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212222575245010372 0ustar 7 debian/copyright0000644000000000000000000000335412222575245011134 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=173 Upstream-Name: transaction-simple Upstream-Contact: Austin Ziegler Source: http://rubyforge.org/projects/trans-simple/ Files: * Copyright: Copyright © 2003 - 2007 Austin Ziegler License: MIT Files: setup.rb Copyright: Copyrignt © 2000-2004 Minero Aoki License: LGPL-2.1 Files: debian/* Copyright: Copyright 2007-2011 Gunnar Wolf License: MIT License: MIT 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. License: LGPL-2.1 You can distribute/modify this program under the terms of the GNU LGPL, Lesser General Public License version 2.1. . On Debian systems you can find the complete text of the LGPL version 2.1 in /usr/share/common-licenses/LGPL-2.1 debian/ruby-transaction-simple.docs0000644000000000000000000000001412222575245014634 0ustar README.rdoc debian/changelog0000644000000000000000000000134512222575245011051 0ustar ruby-transaction-simple (1.4.0.2-1) unstable; urgency=low * New upstream release * Dropped unneeded transitional packages * Updated standards-version * Dropped obsolete DM-Upload-Allowed * Wrapper test script test_all no longer provided — Calling each of the testcases individually. * README.txt renamed to .rdoc -- Gunnar Wolf Tue, 01 Oct 2013 11:33:52 -0500 ruby-transaction-simple (1.4.0-2) unstable; urgency=low * Repackaged using the gem2deb build system -- Gunnar Wolf Wed, 08 Jun 2011 13:42:22 -0500 libtransaction-simple-ruby (1.4.0-1) unstable; urgency=low * Initial upload (Closes: #442084) -- Gunnar Wolf Wed, 12 Sep 2007 20:39:33 -0500 debian/rules0000755000000000000000000000070112222575245010252 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 debian/watch0000644000000000000000000000017112222575245010224 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/transaction-simple .*/transaction-simple-(.*).tar.gz debian/control0000644000000000000000000000244412222575245010603 0ustar Source: ruby-transaction-simple Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Gunnar Wolf Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.3) Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-transaction-simple.git Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-transaction-simple.git;a=summary Homepage: http://rubyforge.org/projects/trans-simple XS-Ruby-Versions: all Package: ruby-transaction-simple Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter # hoe (>= 1.1.7) Description: Generic way to add active transaction support to objects Transaction::Simple provides a generic way to add active transaction support to objects. The transaction methods added by this module will work with most objects, excluding those that cannot be Marshal-ed (bindings, procedure objects, IO instances, or singleton objects). . The transactions supported by Transaction::Simple are not associated with any sort of data store. They are "live" transactions occurring in memory on the object itself. This is to allow "test" changes to be made to an object before making the changes permanent.