View | Details | Raw Unified | Return to bug 248406 | Differences between
and this patch

Collapse All | Expand All

(-)./Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/devel/tllist/Makefile 536177 2020-05-22 00:07:06Z linimon $
1
# $FreeBSD: head/devel/tllist/Makefile 536177 2020-05-22 00:07:06Z linimon $
2
2
3
PORTNAME=	tllist
3
PORTNAME=	tllist
4
DISTVERSION=	1.0.0
4
DISTVERSION=	1.0.2
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
MASTER_SITES=	https://codeberg.org/dnkl/tllist/archive/
6
MASTER_SITES=	https://codeberg.org/dnkl/tllist/archive/
7
DISTNAME=	${DISTVERSION}
7
DISTNAME=	${DISTVERSION}
(-)./distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1586201195
1
TIMESTAMP = 1596272904
2
SHA256 (1.0.0.tar.gz) = 115f067f6b7029959fea39e45ec64697806e901fe4ca2de67c7eb2af4b7d2ae2
2
SHA256 (1.0.2.tar.gz) = 8fe933e4614aed35aa6dfb6ab3105b2c2d6eb80a75bd3e93d4445ce6efd3dba0
3
SIZE (1.0.0.tar.gz) = 6677
3
SIZE (1.0.2.tar.gz) = 6963
(-)./pkg-descr (-1 / +1 lines)
Lines 14-20 Link Here
14
prev and next pointer (i.e. a constant 16 byte overhead per item on 64-bit
14
prev and next pointer (i.e. a constant 16 byte overhead per item on 64-bit
15
architectures).
15
architectures).
16
16
17
The list itself has a head and a tail pointer, plus a length variable
17
The list itself has two head and tail pointers, plus a length variable
18
(typically 8 bytes on 64-bit architectures) to make list length lookup constant
18
(typically 8 bytes on 64-bit architectures) to make list length lookup constant
19
in time.
19
in time.
20
20

Return to bug 248406