diff options
author | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2020-08-07 19:27:30 +0800 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2020-08-07 19:27:30 +0800 |
commit | 2f5d5a361e91775416a1f9a7100aeb5309a6703e (patch) | |
tree | 3b3c922bf094eeb1db8b27b7c6804905e8b5305f | |
parent | c565364c26b6098a16b985808f2948bcdc6a024a (diff) | |
download | freebsd-ports-gnome-2f5d5a361e91775416a1f9a7100aeb5309a6703e.tar.gz freebsd-ports-gnome-2f5d5a361e91775416a1f9a7100aeb5309a6703e.tar.zst freebsd-ports-gnome-2f5d5a361e91775416a1f9a7100aeb5309a6703e.zip |
devel/tllist: update to 1.0.2
From ChangeLog: https://codeberg.org/dnkl/tllist/releases/tag/1.0.2
* LICENSE and README.md are now installed to ${datadir}/doc/tllist
* PKBUILD now indicates support for aarch64
* Bad year in LICENSE fixed
PR: 248406
Submitted by: ports@xanderio.de (maintainer)
-rw-r--r-- | devel/tllist/Makefile | 2 | ||||
-rw-r--r-- | devel/tllist/distinfo | 6 | ||||
-rw-r--r-- | devel/tllist/pkg-descr | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/devel/tllist/Makefile b/devel/tllist/Makefile index 13ba36e56df0..9b34277af7ed 100644 --- a/devel/tllist/Makefile +++ b/devel/tllist/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tllist -DISTVERSION= 1.0.0 +DISTVERSION= 1.0.2 CATEGORIES= devel MASTER_SITES= https://codeberg.org/dnkl/tllist/archive/ DISTNAME= ${DISTVERSION} diff --git a/devel/tllist/distinfo b/devel/tllist/distinfo index 2725c50a87a7..7c4d0ceb8bf5 100644 --- a/devel/tllist/distinfo +++ b/devel/tllist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1586201195 -SHA256 (1.0.0.tar.gz) = 115f067f6b7029959fea39e45ec64697806e901fe4ca2de67c7eb2af4b7d2ae2 -SIZE (1.0.0.tar.gz) = 6677 +TIMESTAMP = 1596272904 +SHA256 (1.0.2.tar.gz) = 8fe933e4614aed35aa6dfb6ab3105b2c2d6eb80a75bd3e93d4445ce6efd3dba0 +SIZE (1.0.2.tar.gz) = 6963 diff --git a/devel/tllist/pkg-descr b/devel/tllist/pkg-descr index 32a715ed93a8..27d46510589a 100644 --- a/devel/tllist/pkg-descr +++ b/devel/tllist/pkg-descr @@ -14,7 +14,7 @@ The memory overhead is fairly small; each item carries, besides its data, a prev and next pointer (i.e. a constant 16 byte overhead per item on 64-bit architectures). -The list itself has a head and a tail pointer, plus a length variable +The list itself has two head and tail pointers, plus a length variable (typically 8 bytes on 64-bit architectures) to make list length lookup constant in time. |