jlec        15/06/06 11:10:24

  Modified:             metadata.xml ChangeLog
  Log:
  Add github to remote-id in metadata.xml
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  Changes    Path
1.7                  dev-haskell/hashtables/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?r1=1.6&r2=1.7

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml        28 Jan 2015 21:39:09 -0000      1.6
+++ metadata.xml        6 Jun 2015 11:10:24 -0000       1.7
@@ -12,31 +12,31 @@
                operations, and a set of wrappers to use the hash tables in the 
IO monad.
                
                /QUICK START/: documentation for the hash table operations is 
provided in the
-               "Data.HashTable.Class" module, and the IO wrappers 
(which most users will
-               probably prefer) are located in the 
"Data.HashTable.IO" module.
+               "Data.HashTable.Class" module, and the IO wrappers (which most 
users will
+               probably prefer) are located in the "Data.HashTable.IO" module.
                
                This package currently contains three hash table 
implementations:
                
-               1. "Data.HashTable.ST.Basic" contains a basic 
open-addressing hash table
+               1. "Data.HashTable.ST.Basic" contains a basic open-addressing 
hash table
                using linear probing as the collision strategy. On a pure speed 
basis it
                should currently be the fastest available Haskell hash table
                implementation for lookups, although it has a higher memory 
overhead
                than the other tables and can suffer from long delays when the 
table is
                resized because all of the elements in the table need to be 
rehashed.
                
-               2. "Data.HashTable.ST.Cuckoo" contains an 
implementation of \"cuckoo
-               hashing\" as introduced by Pagh and Rodler in 2001 (see
+               2. "Data.HashTable.ST.Cuckoo" contains an implementation of 
\"cuckoo
+               hashing\" as introduced by Pagh and Rodler in 2001 (see
                <http://en.wikipedia.org/wiki/Cuckoo_hashing>). Cuckoo 
hashing has
-               worst-case /O(1)/ lookups and can reach a high \"load 
factor\", in which
+               worst-case /O(1)/ lookups and can reach a high \"load factor\", 
in which
                the table can perform acceptably well even when more than 90% 
full.
                Randomized testing shows this implementation of cuckoo hashing 
to be
                slightly faster on insert and slightly slower on lookup than
-               "Data.Hashtable.ST.Basic", while being more space 
efficient by about a
+               "Data.Hashtable.ST.Basic", while being more space efficient by 
about a
                half-word per key-value mapping. Cuckoo hashing, like the basic 
hash
                table implementation using linear probing, can suffer from long 
delays
                when the table is resized.
                
-               3. "Data.HashTable.ST.Linear" contains a linear hash 
table (see
+               3. "Data.HashTable.ST.Linear" contains a linear hash table (see
                <http://en.wikipedia.org/wiki/Linear_hashing>), which 
trades some insert
                and lookup performance for higher space efficiency and much 
shorter
                delays when expanding the table. In most cases, benchmarks show 
this
@@ -66,7 +66,7 @@
                * @unsafe-tricks@, default /ON/. If this flag is enabled, we 
use some
                unsafe GHC-specific tricks to save indirections (namely 
@unsafeCoerce#@
                and @reallyUnsafePtrEquality#@. These techniques rely on 
assumptions
-               about the behaviour of the GHC runtime system and, although 
they've been
+               about the behaviour of the GHC runtime system and, although 
they've been
                tested and should be safe under normal conditions, are slightly
                dangerous. Caveat emptor. In particular, these techniques are
                incompatible with HPC code coverage reports.
@@ -79,7 +79,7 @@
                * @bounds-checking@, default /OFF/. If this flag is enabled, 
array accesses
                are bounds-checked.
                
-               * @debug@, default /OFF/. If turned on, we'll rudely spew 
debug output to
+               * @debug@, default /OFF/. If turned on, we'll rudely spew debug 
output to
                stdout.
                
                * @portable@, default /OFF/. If this flag is enabled, we use 
only pure
@@ -104,4 +104,7 @@
                <flag name="portable">if on, use only pure Haskell code and no 
GHC extensions.</flag>
                <flag name="unsafe-tricks">turn on unsafe GHC tricks</flag>
        </use>
+       <upstream>
+               <remote-id type="github">gregorycollins/hashtables</remote-id>
+       </upstream>
 </pkgmetadata>



1.25                 dev-haskell/hashtables/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.25&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.25&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   3 Apr 2015 10:41:13 -0000       1.24
+++ ChangeLog   6 Jun 2015 11:10:24 -0000       1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/hashtables
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.24 
2015/04/03 10:41:13 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.25 
2015/06/06 11:10:24 jlec Exp $
+
+  06 Jun 2015; Justin Lecher <[email protected]> metadata.xml:
+  Add github to remote-id in metadata.xml
 
 *hashtables-1.2.0.2 (03 Apr 2015)
 




Reply via email to