| /freebsd/contrib/bmake/unit-tests/ |
| H A D | var-op-sunsh.mk | 1 # $NetBSD: var-op-sunsh.mk,v 1.10 2022/02/09 21:09:24 rillig Exp $ 3 # Tests for the :sh= variable assignment operator, which runs its right-hand 4 # side through the shell. It is a seldom-used alternative to the != 7 .MAKEFLAGS: -dL # Enable sane error messages 11 VAR:sh= echo colon-sh 12 .if ${VAR} != "colon-sh" 18 VAR :sh = echo colon-sh-spaced 19 .if ${VAR} != "colon-sh-spaced" 23 # Until 2020-10-04, the ':sh' could even be followed by other characters. 27 # Since 2020-10-04, this is a normal variable assignment to the variable named [all …]
|
| H A D | varname-dot-curdir.mk | 1 # $NetBSD: varname-dot-curdir.mk,v 1.7 2020/10/08 19:09:08 rillig Exp $ 25 # Until 2020-10-04, assigning the result of a shell assignment to .CURDIR 30 # Since 2020-10-04, the output of the shell command is added to .PATH.
|
| H A D | varmod-localtime.mk | 1 # $NetBSD: varmod-localtime.mk,v 1.20 2025/01/11 20:54:46 rillig Exp $ 7 # varmod-gmtime.mk 9 .if ${TZ:Uno:NEurope/Berlin:NUTC-1} != "" # see unit-tests/Makefile 16 # Example: Thu Oct 29 18:56:41 2020 28 # 2020-07-01T00:00:00Z 29 .if ${%Y:L:localtime=1593536400} != "2020" 47 # Before var.c 1.1050 from 2023-05-09, it was not possible to pass the 49 .if ${%Y:L:localtime=${:U1593536400}} != "2020" 54 # Before var.c 1.631 from 2020-10-31 21:40:20, it was possible to pass 59 # expect+1: Invalid time value "-1" [all …]
|
| H A D | varmod-loop-varname.mk | 1 # $NetBSD: varmod-loop-varname.mk,v 1.12 2025/01/11 20:54:46 rillig Exp $ 12 # Before 2021-04-04, the name of the loop variable could be generated 13 # dynamically. There was no practical use-case for this. 14 # Since var.c 1.907 from 2021-04-04, a '$' is no longer allowed in the 81 # Until 2020-07-20, the variable name of the :@ modifier could end with one 84 # Since var.c 1.907 from 2021-04-04, a '$' is no longer allowed in the 109 # As of 2020-10-18, the :@ modifier is implemented by actually setting a
|
| H A D | directive-warning.mk | 1 # $NetBSD: directive-warning.mk,v 1.10 2025/07/01 04:24:20 rillig Exp $ 5 # Until parse.c 1.502 from 2020-12-19, a missing argument to the directive 7 # from 2020-12-19, the correct "Missing argument" is produced. 24 .warnings messages # Accepted before 2020-12-13 01:07:54.
|
| H A D | opt-keep-going-multiple.mk | 1 # $NetBSD: opt-keep-going-multiple.mk,v 1.1 2020/12/07 01:32:04 rillig Exp $ 3 # Tests for the -k command line option, which stops building a target as soon 7 # Until 2020-12-07, the exit status of make depended only on the last of the 11 .MAKEFLAGS: -k
|
| H A D | varname-make_print_var_on_error.mk | 1 # $NetBSD: varname-make_print_var_on_error.mk,v 1.6 2021/02/04 21:33:14 rillig Exp $ 6 # XXX: As of 2020-10-23, the .ERROR_CMD variable is pointless in compat mode 8 # gn->commands has been set to NULL already. This leaves .ERROR_CMD an empty 12 # compat-error.mk 14 # XXX: As of 2021-02-04, PrintOnError calls Var_Subst with SCOPE_GLOBAL, which 15 # does not expand the node-local variables like .TARGET. This results in the
|
| H A D | deptgt-end-fail-all.mk | 1 # $NetBSD: deptgt-end-fail-all.mk,v 1.2 2020/12/07 01:04:07 rillig Exp $ 7 # Until 2020-12-07, the .END node was made even if the main nodes had failed. 11 # some commands on error, use the .ERROR target instead, see deptgt-error.mk.
|
| H A D | counter-append.mk | 1 # $NetBSD: counter-append.mk,v 1.5 2021/04/04 10:13:09 rillig Exp $ 6 # This works since 2020-09-23. Before that, the counter ended up at having 11 RELEVANT= yes (load-time part) # just to filter the output 26 @: ${RELEVANT::=yes (run-time part)}
|
| H A D | counter.mk | 1 # $NetBSD: counter.mk,v 1.6 2021/04/04 10:13:09 rillig Exp $ 6 # This works since 2020-09-23. Before that, the counter ended up at having 11 RELEVANT= yes (load-time part) # just to filter the output 26 @: ${RELEVANT::=yes (run-time part)}
|
| H A D | varmod-ifelse.mk | 1 # $NetBSD: varmod-ifelse.mk,v 1.41 2025/06/29 11:27:21 rillig Exp $ 4 # the then-expression or the else-expression, depending on the condition. 6 # The modifier was added on 1998-04-01. 8 # Until 2015-10-11, the modifier always evaluated both the "then" and the 36 # ' == ""' though, which cannot be parsed because the left-hand side looks 39 COND:= ${${UNDEF} == "":?bad-assign:bad-assign} 45 # left-hand side looks empty. 47 .if ${${UNDEF} == "":?bad-cond:bad-cond} 80 # XXX: The left-hand side is enclosed in quotes. This results in Var_Parse 86 # string. The left-hand side of the comparison is therefore just an empty [all …]
|
| H A D | varmod-shell.mk | 1 # $NetBSD: varmod-shell.mk,v 1.11 2024/08/29 20:20:37 rillig Exp $ 6 # This modifier has been added on 2000-04-29. 18 # If the command exits with non-zero, an error message is printed. 21 # Between 2000-04-29 and 2020-11-17, the error message mentioned the previous 34 .MAKEFLAGS: -dv # to see the "Capturing" debug output 37 .MAKEFLAGS: -d0
|
| /freebsd/contrib/bmake/mk/ |
| H A D | ChangeLog | 1 2025-07-24 Simon J Gerraty <sjg@beast.crufty.net> 3 * install-mk (MK_VERSION): 20250724 9 2025-07-22 Simon J Gerraty <sjg@beast.crufty.net> 11 * install-mk (MK_VERSION): 20250721 18 2025-07-04 Simon J Gerraty <sjg@beast.crufty.net> 22 2025-05-28 Simon J Gerraty <sjg@beast.crufty.net> 24 * install-mk (MK_VERSION): 20250528 28 2025-05-18 Simon J Gerraty <sjg@beast.crufty.net> 30 * install-mk (MK_VERSION): 20250518 32 * meta.autodep.mk (META_FILES): re-work to fix filtering. [all …]
|
| /freebsd/share/misc/ |
| H A D | bsd-family-tree | 2 --------------------------------------------- 14 Sixth Edition (V6) -----* 18 Seventh Edition (V7)----|----------------------* 22 \ 2BSD---------------* | 30 4.1BSD --------------> 2.8BSD <-* 32 4.1aBSD -----------\ | 36 *------ 4.1cBSD --------------> 2.9BSD 38 Eighth Edition | 2.9BSD-Seismo 40 +----<--- 4.2BSD 2.9.1BSD 42 +----<--- 4.3BSD -------------> 2.10BSD [all …]
|
| /freebsd/contrib/bmake/ |
| H A D | ChangeLog | 1 2025-08-04 Simon J Gerraty <sjg@beast.crufty.net> 10 2025-07-07 Simon J Gerraty <sjg@beast.crufty.net> 17 2025-07-04 Simon J Gerraty <sjg@beast.crufty.net> 22 o main.c: simplify the warning for invalid -J by refering to 25 2025-06-30 Simon J Gerraty <sjg@beast.crufty.net> 37 2025-06-18 Simon J Gerraty <sjg@beast.crufty.net> 44 2025-06-15 Simon J Gerraty <sjg@beast.crufty.net> 48 o add on-demand inter-process stack traces 50 o job.c: add job prefix if necessary in non-default filtered mode 51 o parse.c,var.c: skip inter-process stack trace when [all …]
|
| /freebsd/contrib/bc/project/ |
| H A D | github_prs.json | 17 "closedAt": "2025-03-25T04:55:24Z", 26 "createdAt": "2025-03-25T02:01:13Z", 31 "url": "https://github.com/gavinhoward/bc/pull/89#issuecomment-2749850635", 41 "createdAt": "2025-03-25T04:16:09Z", 46 "url": "https://github.com/gavinhoward/bc/pull/89#issuecomment-2750029388", 56 "createdAt": "2025-03-25T04:55:31Z", 61 "url": "https://github.com/gavinhoward/bc/pull/89#issuecomment-2750080931", 67 "authoredDate": "2025-03-24T22:31:38Z", 76 "committedDate": "2025-03-24T22:31:38Z", 82 "authoredDate": "2025-03-25T04:07:25Z", [all …]
|
| /freebsd/contrib/file/ |
| H A D | ChangeLog | 1 2024-11-27 14:44 Christos Zoulas <christos@zoulas.com> 6 2024-11-25 13:56 Christos Zoulas <christos@zoulas.com> 10 2024-11-10 13:56 Christos Zoulas <christos@zoulas.com> 14 offset that the "use" starts so that we don't double-count it. 17 2024-11-09 19:30 Christos Zoulas <christos@zoulas.com> 21 2024-11-02 14:34 Christos Zoulas <christos@zoulas.com> 25 2023-12-29 12:55 Christos Zoulas <christos@zoulas.com> 29 2023-07-29 12:55 Christos Zoulas <christos@zoulas.com> 33 2023-07-27 15:45 Christos Zoulas <christos@zoulas.com> 37 2023-07-17 11:53 Christos Zoulas <christos@zoulas.com> [all …]
|
| /freebsd/contrib/dialog/package/debian/ |
| H A D | changelog | 5 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 13 Jan 2021 19:58:21 -0500 11 -- Thomas E. Dickey <dickey@invisible-island.net> Mon, 11 Jan 2021 03:53:05 -0500 17 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 26 Jul 2020 11:17:16 -0400 23 -- Thomas E. Dickey <dickey@invisible-island.net> Thu, 19 Mar 2020 05:02:12 -0400 29 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 28 Feb 2020 20:31:15 -0500 35 -- Thomas E. Dickey <dickey@invisible-island.net> Tue, 31 Dec 2019 15:37:41 -0500 41 -- Thomas E. Dickey <dickey@invisible-island.net> Tue, 10 Dec 2019 17:19:19 -0500 47 -- Thomas E. Dickey <dickey@invisible-island.net> Mon, 09 Dec 2019 04:14:47 -0500 53 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 10 Nov 2019 17:48:23 -0500 59 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 25 Sep 2019 04:37:53 -0400 [all …]
|
| /freebsd/contrib/tzdata/ |
| H A D | NEWS | 3 Release 2025b - 2025-03-22 13:40:46 -0700 6 New zone for Aysén Region in Chile which moves from -04/-03 to -03. 10 Chile's Aysén Region moves from -04/-03 to -03 year-round, joining 12 2025-04-05 at 24:00, diverging from America/Santiago and creating a 14 this as a change to standard offset effective 2025-03-20. 18 Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at 23 'zic -l TIMEZONE -d . -l /some/other/file/system' no longer 28 Release 2025a - 2025-01-15 10:47:24 -0800 31 Paraguay adopted permanent -03 starting spring 2024. 32 Improve pre-1991 data for the Philippines. [all …]
|
| H A D | backzone | 10 # When proposing changes to this file, please use 'git format-patch' 12 # or by using 'git send-email'. This will help maintainers save time. 15 # From Paul Eggert (2014-10-31): 23 # pre-1970 timestamps, they are less reliable, cover only a tiny 24 # sliver of the pre-1970 era, and cannot feasibly be improved to cover 29 # differed from other zones only in pre-1970 timestamps. 41 # From Paul Eggert (2020-04-15): 43 # Patches in 'git format-patch' format would be welcome. 45 # From Phake Nick (2020-04-15): 74 # If the zone overrides main-data links only when building with [all …]
|
| H A D | africa | 4 # 2009-05-17 by Arthur David Olson. 11 # From Paul Eggert (2018-05-27): 30 # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. 37 # European-style abbreviations are commonly used along the Mediterranean. 38 # For sub-Saharan Africa abbreviations were less standardized. 54 # I vaguely recall 'WAT' also being used for -01 in the past but 64 # they are paired with better-attested non-DST abbreviations. 68 # Rule NAME FROM TO - IN ON AT SAVE LETTER/S 69 Rule Algeria 1916 only - Jun 14 23:00s 1:00 S 70 Rule Algeria 1916 1919 - Oct Sun>=1 23:00s 0 - [all …]
|
| /freebsd/contrib/tzcode/ |
| H A D | NEWS | 3 Release 2025b - 2025-03-22 13:40:46 -0700 6 New zone for Aysén Region in Chile which moves from -04/-03 to -03. 10 Chile's Aysén Region moves from -04/-03 to -03 year-round, joining 12 2025-04-05 at 24:00, diverging from America/Santiago and creating a 14 this as a change to standard offset effective 2025-03-20. 18 Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at 23 'zic -l TIMEZONE -d . -l /some/other/file/system' no longer 28 Release 2025a - 2025-01-15 10:47:24 -0800 31 Paraguay adopted permanent -03 starting spring 2024. 32 Improve pre-1991 data for the Philippines. [all …]
|
| /freebsd/contrib/dialog/po/ |
| H A D | sq.po | 3 # Copyright 2003-2007,2008 # Thomas Dickey 4 # Besnik Bleta <besnik@programeshqip.org>, 2004,2008,2015, 2019, 2020. 7 "Project-Id-Version: dialog-1.1.20080819\n" 8 "Report-Msgid-Bugs-To: \n" 9 "POT-Creation-Date: 2008-06-18 18:26-0400\n" 10 "PO-Revision-Date: 2020-04-01 15:04+0300\n" 11 "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n" 12 "Language-Team: Albanian <translation-team-sq@lists.sourceforge.net>\n" 14 "MIME-Version: 1.0\n" 15 "Content-Type: text/plain; charset=UTF-8\n" [all …]
|
| /freebsd/contrib/libarchive/ |
| H A D | NEWS | 43 Dec 26, 2020: libarchive 3.5.1 released 45 Dec 01, 2020: libarchive 3.5.0 released 47 Oct 14, 2020: Support for system extended attributes 49 May 20, 2020: libarchive 3.4.3 released 51 Apr 30, 2020: Support for pzstd compressed files 53 Apr 16, 2020: Support for RHT.security.selinux tar extended attribute 55 Feb 11, 2020: libarchive 3.4.2 released 57 Jan 23, 2020: Important fixes for writing XAR archives 59 Jan 20, 2020: New tar option: --safe-writes (atomical file extraction) 61 Jan 03, 2020: Support mbed TLS (PolarSSL) as optional crypto provider [all …]
|
| /freebsd/contrib/lyaml/ |
| H A D | NEWS.md | 1 # lyaml NEWS - User visible changes 3 ## Noteworthy changes in release 6.2.8 (2022-10-22) [stable] 7 - `luke` no longer crashes in `std.normalize` require loops 10 - lyaml emitter no longer leaks at least six bytes for every 14 ## Noteworthy changes in release 6.2.7 (2020-11-27) [stable] 18 - Don't skip YAML entries from mixed key Lua tables. 21 ## Noteworthy changes in release 6.2.6 (2020-08-28) [stable] 25 - `luke` really propagates `LDFLAGS` to module compilation 29 ## Noteworthy changes in release 6.2.5 (2020-04-15) [stable] 33 - `luke` really propagates `YAML_BINDIR`, `YAML_DIR`, [all …]
|