head	1.5;
access;
symbols
	pkgsrc-2017Q4:1.4.0.20
	pkgsrc-2017Q4-base:1.4
	pkgsrc-2017Q3:1.4.0.18
	pkgsrc-2017Q3-base:1.4
	pkgsrc-2017Q2:1.4.0.14
	pkgsrc-2017Q2-base:1.4
	pkgsrc-2017Q1:1.4.0.12
	pkgsrc-2017Q1-base:1.4
	pkgsrc-2016Q4:1.4.0.10
	pkgsrc-2016Q4-base:1.4
	pkgsrc-2016Q3:1.4.0.8
	pkgsrc-2016Q3-base:1.4
	pkgsrc-2016Q2:1.4.0.6
	pkgsrc-2016Q2-base:1.4
	pkgsrc-2016Q1:1.4.0.4
	pkgsrc-2016Q1-base:1.4
	pkgsrc-2015Q4:1.4.0.2
	pkgsrc-2015Q4-base:1.4
	pkgsrc-2015Q3:1.3.0.6
	pkgsrc-2015Q3-base:1.3
	pkgsrc-2015Q2:1.3.0.4
	pkgsrc-2015Q2-base:1.3
	pkgsrc-2015Q1:1.3.0.2
	pkgsrc-2015Q1-base:1.3
	pkgsrc-2014Q4:1.2.0.8
	pkgsrc-2014Q4-base:1.2
	pkgsrc-2014Q3:1.2.0.6
	pkgsrc-2014Q3-base:1.2
	pkgsrc-2014Q2:1.2.0.4
	pkgsrc-2014Q2-base:1.2
	pkgsrc-2014Q1:1.2.0.2
	pkgsrc-2014Q1-base:1.2
	pkgsrc-2013Q4:1.1.0.4
	pkgsrc-2013Q4-base:1.1
	pkgsrc-2013Q3:1.1.0.2
	pkgsrc-2013Q3-base:1.1;
locks; strict;
comment	@# @;


1.5
date	2018.02.28.15.32.39;	author taca;	state dead;
branches;
next	1.4;
commitid	vjK2KySWytykKDsA;

1.4
date	2015.11.03.03.29.20;	author agc;	state Exp;
branches;
next	1.3;
commitid	XagoUgdES8g2ZAHy;

1.3
date	2015.02.01.13.53.50;	author taca;	state Exp;
branches;
next	1.2;
commitid	UOX5FNokw7lRhj8y;

1.2
date	2014.03.14.15.19.51;	author taca;	state Exp;
branches;
next	1.1;
commitid	aHwqoR3RLfgQbGsx;

1.1
date	2013.09.13.12.59.41;	author taca;	state Exp;
branches;
next	;
commitid	FV1ColLSOhEEgh5x;


desc
@@


1.5
log
@devel/ruby-atomic: remove deprecated by ruby-concurrent-ruby

Remove ruby-atomic deprecated by ruby-concurrent-ruby.
@
text
@$NetBSD: distinfo,v 1.4 2015/11/03 03:29:20 agc Exp $

SHA1 (atomic-1.1.99.gem) = ca2ac92292c7ba2a30879fe1832d9c1e4b44d332
RMD160 (atomic-1.1.99.gem) = 182d4d2ab6052ba588801d17328d8e8e5e7ccb6c
SHA512 (atomic-1.1.99.gem) = 9c7762f6c32d11b2c5b45be68954ca12c753d2b4683167158a037ce791d72b13d940beef5bf6dd445c8b12e358c62d2a9f43a609fb3b7c7357fea4f66316063c
Size (atomic-1.1.99.gem) = 17920 bytes
SHA1 (patch-ext_atomic__reference.c) = 74628fc4db443382396347e5b3849c584180a54c
SHA1 (patch-ext_extconf.rb) = 608095bd01ffc966d2153594238deac01b994462
@


1.4
log
@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.
@
text
@d1 1
a1 1
$NetBSD: distinfo,v 1.3 2015/02/01 13:53:50 taca Exp $
@


1.3
log
@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.
@
text
@d1 1
a1 1
$NetBSD: distinfo,v 1.2 2014/03/14 15:19:51 taca Exp $
d5 1
@


1.2
log
@Update ruby-atomic to 1.1.15, several bug fixes.

pkgsrc change: add GEM_EXTSDIR support.
@
text
@d1 1
a1 1
$NetBSD: distinfo,v 1.1 2013/09/13 12:59:41 taca Exp $
d3 5
a7 3
SHA1 (atomic-1.1.15.gem) = 6bfba5ecf9de5da4181b705dfd08ef9f59e016a4
RMD160 (atomic-1.1.15.gem) = 9ff8b80d048c7f09e6d59b8befc1565d5bb000fe
Size (atomic-1.1.15.gem) = 16896 bytes
@


1.1
log
@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.
@
text
@d1 1
a1 1
$NetBSD$
d3 3
a5 3
SHA1 (atomic-1.1.14.gem) = 255bad8a4310719d62684c6ee8cf470c2322b7e2
RMD160 (atomic-1.1.14.gem) = 59cfaa3281a9ac35e9f61e45a8a4c3102efe96e5
Size (atomic-1.1.14.gem) = 16896 bytes
@

