Port details |
- cityhash Family of hash functions
- 1.1.1_1 devel
=1 1.1.1_1Version of this port present on the latest quarterly branch. - There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
 - Port Added: 2013-02-10 14:30:53
- Last Update: 2021-04-06 14:31:07
- Commit Hash: 305f148
- People watching this port, also watch:: python, unoconv, py38-pycparser, sysinfo
- License: MIT
- Description:
- CityHash provides hash functions for strings. The functions mix the
input bits thoroughly but are not suitable for cryptography. See
"Hash Quality," below, for details on how CityHash was tested and so on.
Functions by CityHash:
- CityHash32() returns a 32-bit hash.
- CityHash64() and similar return a 64-bit hash.
- CityHash128() and similar return a 128-bit hash and are tuned for
strings of at least a few hundred bytes. Depending on your compiler
and hardware, it's likely faster than CityHash64() on sufficiently long
strings. It's slower than necessary on shorter strings, but we expect
that case to be relatively unimportant.
- CityHashCrc128() and similar are variants of CityHash128() that depend
on _mm_crc32_u64(), an intrinsic that compiles to a CRC32 instruction
on some CPUs. However, none of the functions we provide are CRCs.
- CityHashCrc256() is a variant of CityHashCrc128() that also depends
on _mm_crc32_u64(). It returns a 256-bit hash.
All members of the CityHash family were designed with heavy reliance
on previous work by Austin Appleby, Bob Jenkins, and others.
For example, CityHash32 has many similarities with Murmur3a.
WWW: http://code.google.com/p/cityhash/
- SVNWeb : git : Homepage
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- For RUN/BUILD depends:
- cityhash>0:devel/cityhash
- For LIB depends:
- libcityhash.so:devel/cityhash
- To install the port:
- cd /usr/ports/devel/cityhash/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/cityhash
- pkg install cityhash
- PKGNAME: cityhash
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1477910083
SHA256 (google-cityhash-1.1.1-8af9b8c_GH0.tar.gz) = b13bb003d682c8068d164e782463c2c58eebfa75227e6a2fde1603e2da03a55e
SIZE (google-cityhash-1.1.1-8af9b8c_GH0.tar.gz) = 380310
- Packages (timestamps in pop-ups are UTC):
- There are no ports dependent upon this port
- Configuration Options:
- No options to configure
- Options name:
- devel_cityhash
- USES:
- cpe libtool
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
06 Apr 2021 14:31:07 1.1.1_1
|
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
23 Feb 2018 21:09:47
1.1.1_1
|
rene  |
Reset vg@'s ports after he resigned.
With hat: portmgr-secretary |
05 Mar 2017 08:13:28
1.1.1_1
|
mat  |
Cleanup USE_GITHUB with GH_TUPLE usage.
Do not use GH_TUPLE for the default distfile.
With hat: portmgr
Sponsored by: Absolight |
31 Oct 2016 10:39:51
1.1.1_1
|
vg  |
- Unbreak and use github
PR: ports/213555
Submitted by: lacey.leanne@gmail.com <Lacey Powers> |
14 Sep 2016 15:59:34
1.1.1_1
|
mat  |
GOOGLE_CODE has gone away.
- If a port has another upstream, remove GOOGLE_CODE
- If a port only has GOOGLE_CODE mark it BROKEN
Some ports have a local mirror configured but for security reasons, it
is not considered upstream.
Sponsored by: Absolight |
17 May 2015 07:54:21
1.1.1_1
|
amdmi3  |
- Add CPE info
- Add LICENSE_FILE
Approved by: portmgr blanket |
27 Oct 2014 10:10:59
1.1.1_1
|
bapt  |
Cleanup plist |
25 Jun 2014 18:35:40
1.1.1_1
|
amdmi3  |
- Switch to USES=libtool, drop .la files
Approved by: portmgr blanket |
02 May 2014 18:12:37
1.1.1
|
vg  |
Up to 1.1.1:
* Fix CityHash32() so platforms that disagree about whether 'char' is
signed use the same mathematical function. For most people this changes
nothing as most popular platforms agree with x86 about whether 'char' is
signed.
* No changes to any of the functions, unless you had been using
CityHash32() despite "make check" reporting a failure on your platform.
* Slightly modernize and improve configuration and portability.
Submitted by: myself |
25 Sep 2013 00:54:09
1.1.0
|
bdrewery  |
- Remove NO_STAGE as these have been tested to be safe
With hat: portmgr |
20 Sep 2013 17:03:27

|
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 1) |
22 Jul 2013 14:34:23
1.1.0
|
vg  |
- Changed my email
- Trim Makefile headers and positions name and surname within
Approved by: eadler, rm (mentors) |
10 Feb 2013 14:30:35
1.1.0
|
miwi  |
CityHash provides hash functions for strings. The functions mix the
input bits thoroughly but are not suitable for cryptography. See
"Hash Quality," below, for details on how CityHash was tested and so on.
Functions by CityHash:
- CityHash32() returns a 32-bit hash.
- CityHash64() and similar return a 64-bit hash.
- CityHash128() and similar return a 128-bit hash and are tuned for
strings of at least a few hundred bytes. Depending on your compiler
and hardware, it's likely faster than CityHash64() on sufficiently long
strings. It's slower than necessary on shorter strings, but we expect
that case to be relatively unimportant.
- CityHashCrc128() and similar are variants of CityHash128() that depend
on _mm_crc32_u64(), an intrinsic that compiles to a CRC32 instruction (Only the first 15 lines of the commit message are shown above ) |