NOTICE: This package has been removed from pkgsrc

./devel/ruby-atomic, Atomic reference implementation for JRuby, Rubinius, and MRI

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.1.99, Package name: ruby23-atomic-1.1.99, Maintainer: pkgsrc-users

Ruby-atomic is an atomic reference implementation for JRuby, Rubinius, and MRI.

This library provides:

* an Atomic class that guarantees atomic updates to its contained value

The Atomic class provides accessors for the contained "value" plus two update
methods:

* update will run the provided block, passing the current value and replacing
it with the block result iff the value has not been changed in the mean
time. It may run the block repeatedly if there are other concurrent updates
in progress.
* try_update will run the provided block, passing the current value and
replacing it with the block result. If the value changes before the update
can happen, it will throw Atomic::ConcurrentUpdateError.


Master sites:

SHA1: ca2ac92292c7ba2a30879fe1832d9c1e4b44d332
RMD160: 182d4d2ab6052ba588801d17328d8e8e5e7ccb6c
Filesize: 17.5 KB

Version history: (Expand)


CVS history: (Expand)


   2018-02-28 16:32:39 by Takahiro Kambe | Files touched by this commit (6) | Package removed
Log message:
devel/ruby-atomic: remove deprecated by ruby-concurrent-ruby

Remove ruby-atomic deprecated by ruby-concurrent-ruby.
   2017-07-31 00:32:28 by Thomas Klausner | Files touched by this commit (229)
Log message:
Switch github HOMEPAGEs to https.
   2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995)
Log message:
Add SHA512 digests for distfiles for devel category

Issues found with existing distfiles:
	distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
	distfiles/fortran-utils-1.1.tar.gz
	distfiles/ivykis-0.39.tar.gz
	distfiles/enum-1.11.tar.gz
	distfiles/pvs-3.2-libraries.tgz
	distfiles/pvs-3.2-linux.tgz
	distfiles/pvs-3.2-solaris.tgz
	distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-03-08 16:17:22 by Takahiro Kambe | Files touched by this commit (58) | Package updated
Log message:
Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby.
   2015-02-01 14:53:50 by Takahiro Kambe | Files touched by this commit (5)
Log message:
Update ruby-atomic to 1.1.99, which is last release of ruby-atomic.
A several fixes from 1.1.15.

"This gem has been deprecated in lieu of Concurrent Ruby." from github \ 
page.

And incorporate change from PR pkg/48672.
   2014-03-14 16:19:51 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-atomic to 1.1.15, several bug fixes.

pkgsrc change: add GEM_EXTSDIR support.
   2013-09-13 14:59:41 by Takahiro Kambe | Files touched by this commit (4) | Package updated
Log message:
Add ruby-atomic package version 1.1.14.

Ruby-atomic is an atomic reference implementation for JRuby, Rubinius, and MRI.

This library provides:

* an Atomic class that guarantees atomic updates to its contained value

The Atomic class provides accessors for the contained "value" plus two \ 
update
methods:

* update will run the provided block, passing the current value and replacing
  it with the block result iff the value has not been changed in the mean
  time. It may run the block repeatedly if there are other concurrent updates
  in progress.
* try_update will run the provided block, passing the current value and
  replacing it with the block result. If the value changes before the update
  can happen, it will throw Atomic::ConcurrentUpdateError.