FreshPorts / freshports

The website part of FreshPorts
http://www.freshports.org/
BSD 2-Clause "Simplified" License
69 stars 24 forks source link

Slave port fails to update version #435

Closed sambler closed 1 year ago

sambler commented 1 year ago

Hi, not sure if this is widespread or one off.

I am maintainer of devel/godot which has a slave port at devel/godot-tools

A bit over a week ago, I update these to v4.0. While the master port shows as 4.0, the slave godot-tools still shows as v3.4.2. The commit log shows the update to 4.0 message and the new pkg-message is shown.

It is just the version that appears to be missed.

dlangille commented 1 year ago

main port: http://dev.freshports.org/devel/godot/ commit: https://cgit.freebsd.org/ports/commit/?id=4b4f01c610140effba638c7acce320a99f07cbde

Next, I'll look into the processing of that commit.

dependent port: https://dev.freshports.org/devel/godot-tools/ commit: https://cgit.freebsd.org/ports/commit/?id=74b0a17841af03acb3718b6e4fbfac30efec9251

This commit says update to 4.0 but it does not actually do that. It does remove PORTREVISION.

dlangille commented 1 year ago

It does start processing the slave port:

...
# # # # Start refreshing slave ports # # # #

looking at 'devel/godot-tools'
partialpathname is '/ports/head/devel/godot-tools'
Given $BranchStripped is 'main':

The above is the right path.

Below is not.

that changes to / remains: '/ports/branches/main/devel/godot-tools'
fetching by _FetchElementIDByPartialPathName: '/ports/branches/main/devel/godot-tools'
sql = 'select Pathname_ID('/ports/branches/main/devel/godot-tools')'
Element::FetchByName - here is what that SQL returned
Element::FetchByName found: 1210227 
done....
I found this element id for that pathname: 1210227
...
dlangille commented 1 year ago

Let's try cache clearing first:

[19:59 dev-nginx01 dan ~] % sudo zfs rollback -r data02/freshports/jailed/dev-nginx01/cache/ports@empty
[19:59 dev-nginx01 dan ~] % 
dlangille commented 1 year ago

No, that didn't fix it. But looking in the logs gave me a clue.

This is what got updated:

freshports.devgit=# select id, element_pathname(element_id) from ports where id = 92694;
  id   |            element_pathname            
-------+----------------------------------------
 92694 | /ports/branches/main/devel/godot-tools

Notice the branch.

Now let's look at port_active, which is head only:

freshports.devgit=# select id, element_pathname(element_id) from ports_active where name = 'godot-tools';
  id   |       element_pathname        
-------+-------------------------------
 38985 | /ports/head/devel/godot-tools

Going farther:

freshports.devgit=# select P.id, element_pathname(P.element_id) from ports P join element E on P.element_id = E.id  where E.name = 'godot-tools' order by element_pathname;
  id   |             element_pathname             
-------+------------------------------------------
 39834 | /ports/branches/2016Q4/devel/godot-tools
 42903 | /ports/branches/2017Q2/devel/godot-tools
 98945 | /ports/branches/2021Q4/devel/godot-tools
 92694 | /ports/branches/main/devel/godot-tools
 38985 | /ports/head/devel/godot-tools
(5 rows)

freshports.devgit=# 
dlangille commented 1 year ago

This is related to / caused by #366

dlangille commented 1 year ago

The XML says main:

<?xml version='1.0' encoding='UTF-8'?>
<UPDATES Version="1.5.0.0" Source="git">
  <UPDATE>
    <DATE Year="2023" Month="3" Day="8"/>
    <TIME Timezone="UTC" Hour="7" Minute="36" Second="8"/>
    <OS Repo="ports" Id="FreeBSD" Branch="main"/>
    <LOG>devel/godot: update to 4.0

ChangeLog: https://godotengine.org/article/godot-4-0-sets-sail/

PR:             269954
Reported by:    FreeBSD@ShaneWare.Biz (maintainer)</LOG>
dlangille commented 1 year ago

Ideally, we would rename the FreshPorts database head to main, but that doesn't help us fix the broken process right now.

dlangille commented 1 year ago

With this diff:

[23:18 dev-ingress01 dan ~/modules] % svn di verifyport.pm 
Index: verifyport.pm
===================================================================
--- verifyport.pm   (revision 5893)
+++ verifyport.pm   (working copy)
@@ -652,6 +652,10 @@

    # head or 2020Q3
    my $BranchStripped = FreshPorts::Branches::stripBranchesToGetBranchName($CommitBranch);
+   if ($BranchStripped eq $FreshPorts::Constants::MAIN) {
+       # we don't use main here, we use head, to indicate .. head.
+       $BranchStripped = $FreshPorts::Constants::HEAD;
+   }

    my $ErrorFound = 0;
    my $MasterSlave;
[23:18 dev-ingress01 dan ~/modules] % 

We get:

looking at 'devel/godot-tools'
partialpathname is '/ports/head/devel/godot-tools'
Given $BranchStripped is 'head':
that changes to / remains: '/ports/head/devel/godot-tools'
fetching by _FetchElementIDByPartialPathName: '/ports/head/devel/godot-tools'
sql = 'select Pathname_ID('/ports/head/devel/godot-tools')'
Element::FetchByName - here is what that SQL returned
Element::FetchByName found: 737986 

Which is all on head, not on a branch. Success.

dlangille commented 1 year ago

There are 1320 ports to fix.

freshports.devgit=# select pathname from element_pathname where pathname ilike '/ports/branches/main/%/Makefile' order by pathname;
                                    pathname                                     
---------------------------------------------------------------------------------
 /ports/branches/main/accessibility/py-speech-dispatcher/Makefile
 /ports/branches/main/archivers/fpc-bzip2/Makefile
 /ports/branches/main/archivers/fpc-unzip/Makefile
 /ports/branches/main/archivers/p7zip-codec-rar/Makefile
 /ports/branches/main/archivers/php73-bz2/Makefile
 /ports/branches/main/archivers/php73-phar/Makefile
 /ports/branches/main/archivers/php73-zip/Makefile
 /ports/branches/main/archivers/php73-zlib/Makefile
 /ports/branches/main/archivers/php74-bz2/Makefile
 /ports/branches/main/archivers/php74-phar/Makefile
 /ports/branches/main/archivers/php74-zip/Makefile
 /ports/branches/main/archivers/php74-zlib/Makefile
 /ports/branches/main/archivers/php80-bz2/Makefile
 /ports/branches/main/archivers/php80-phar/Makefile
 /ports/branches/main/archivers/php80-zip/Makefile
 /ports/branches/main/archivers/php80-zlib/Makefile
 /ports/branches/main/archivers/php81-bz2/Makefile
 /ports/branches/main/archivers/php81-phar/Makefile
 /ports/branches/main/archivers/php81-zip/Makefile
 /ports/branches/main/archivers/php81-zlib/Makefile
 /ports/branches/main/archivers/php82-bz2/Makefile
 /ports/branches/main/archivers/php82-phar/Makefile
 /ports/branches/main/archivers/php82-zip/Makefile
 /ports/branches/main/archivers/php82-zlib/Makefile
 /ports/branches/main/archivers/star/Makefile
 /ports/branches/main/archivers/tartest/Makefile
 /ports/branches/main/archivers/unrar-iconv/Makefile
 /ports/branches/main/astro/celestia-gtk/Makefile
 /ports/branches/main/audio/dumb-allegro/Makefile
 /ports/branches/main/audio/festvox-cmu_us_awb_arctic/Makefile
 /ports/branches/main/audio/festvox-cmu_us_bdl_arctic/Makefile
 /ports/branches/main/audio/festvox-cmu_us_clb_arctic/Makefile
 /ports/branches/main/audio/festvox-cmu_us_jmk_arctic/Makefile
 /ports/branches/main/audio/festvox-cmu_us_ksp_arctic/Makefile
 /ports/branches/main/audio/festvox-cmu_us_rms_arctic/Makefile
 /ports/branches/main/audio/fpc-a52/Makefile
 /ports/branches/main/audio/fpc-mad/Makefile
 /ports/branches/main/audio/fpc-modplug/Makefile
 /ports/branches/main/audio/fpc-oggvorbis/Makefile
 /ports/branches/main/audio/fpc-openal/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-a52dec/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-amrnb/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-amrwbdec/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-bs2b/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-cdparanoia/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-chromaprint/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-faac/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-faad/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-flac/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-flite/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-gme/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-gsm/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-jack/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-ladspa/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-lame/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-lv2/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-modplug/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-mpg123/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-musepack/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-ogg/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-openmpt/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-opus/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-pulse/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-shout2/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-sidplay/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-sndfile/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-soundtouch/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-speex/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-taglib/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-twolame/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-vorbis/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-wavpack/Makefile
 /ports/branches/main/audio/gstreamer1-plugins-webrtcdsp/Makefile
 /ports/branches/main/audio/kid3-kf5/Makefile
 /ports/branches/main/audio/libcanberra-gtk2/Makefile
 /ports/branches/main/audio/libcanberra-gtk3/Makefile
 /ports/branches/main/audio/libgpod-sharp/Makefile
 /ports/branches/main/audio/optimfrog-sse2/Makefile
 /ports/branches/main/audio/py-aubio/Makefile
 /ports/branches/main/audio/timidity++-emacs/Makefile
 /ports/branches/main/audio/timidity++-gtk/Makefile
 /ports/branches/main/audio/timidity++-motif/Makefile
 /ports/branches/main/audio/timidity++-slang/Makefile
 /ports/branches/main/audio/timidity++-xaw/Makefile
 /ports/branches/main/audio/timidity++-xskin/Makefile
 /ports/branches/main/cad/astk-client/Makefile
 /ports/branches/main/chinese/FreeWnn-lib/Makefile
 /ports/branches/main/chinese/FreeWnn-server/Makefile
 /ports/branches/main/chinese/bitchx/Makefile
 /ports/branches/main/chinese/enscript/Makefile
 /ports/branches/main/chinese/eterm/Makefile
 /ports/branches/main/chinese/tin/Makefile
 /ports/branches/main/chinese/tintin++/Makefile
 /ports/branches/main/chinese/wordpress-zh_CN/Makefile
 /ports/branches/main/chinese/wordpress-zh_TW/Makefile
 /ports/branches/main/comms/gstreamer1-plugins-spandsp/Makefile
 /ports/branches/main/comms/py-libimobiledevice/Makefile
 /ports/branches/main/comms/qtel/Makefile
 /ports/branches/main/comms/xcwcp/Makefile
 /ports/branches/main/converters/fpc-iconvenc/Makefile
 /ports/branches/main/converters/php73-iconv/Makefile
 /ports/branches/main/converters/php73-mbstring/Makefile
 /ports/branches/main/converters/php73-recode/Makefile
 /ports/branches/main/converters/php74-iconv/Makefile
 /ports/branches/main/converters/php74-mbstring/Makefile
 /ports/branches/main/converters/php80-iconv/Makefile
 /ports/branches/main/converters/php80-mbstring/Makefile
 /ports/branches/main/converters/php81-iconv/Makefile
 /ports/branches/main/converters/php81-mbstring/Makefile
 /ports/branches/main/converters/php82-iconv/Makefile
 /ports/branches/main/converters/php82-mbstring/Makefile
 /ports/branches/main/databases/courier-authlib-mysql/Makefile
 /ports/branches/main/databases/courier-authlib-pgsql/Makefile
 /ports/branches/main/databases/courier-authlib-sqlite/Makefile
 /ports/branches/main/databases/courier-authlib-userdb/Makefile
 /ports/branches/main/databases/courier-authlib-usergdbm/Makefile
 /ports/branches/main/databases/firebird25-client/Makefile
 /ports/branches/main/databases/firebird30-client/Makefile
 /ports/branches/main/databases/firebird40-client/Makefile
 /ports/branches/main/databases/fpc-dblib/Makefile
 /ports/branches/main/databases/fpc-fpindexer/Makefile
 /ports/branches/main/databases/fpc-gdbm/Makefile
 /ports/branches/main/databases/fpc-ibase/Makefile
 /ports/branches/main/databases/fpc-mysql/Makefile
 /ports/branches/main/databases/fpc-odbc/Makefile
 /ports/branches/main/databases/fpc-oracle/Makefile
 /ports/branches/main/databases/fpc-postgres/Makefile
 /ports/branches/main/databases/fpc-pxlib/Makefile
 /ports/branches/main/databases/fpc-sqlite/Makefile
 /ports/branches/main/databases/libgda5-bdb/Makefile
 /ports/branches/main/databases/libgda5-jdbc/Makefile
 /ports/branches/main/databases/libgda5-ldap/Makefile
 /ports/branches/main/databases/libgda5-mdb/Makefile
 /ports/branches/main/databases/libgda5-mysql/Makefile
 /ports/branches/main/databases/libgda5-postgresql/Makefile
 /ports/branches/main/databases/libgda5-ui/Makefile
 /ports/branches/main/databases/luasql-firebird/Makefile
 /ports/branches/main/databases/luasql-odbc/Makefile
 /ports/branches/main/databases/luasql-postgres/Makefile
 /ports/branches/main/databases/luasql-sqlite3/Makefile
 /ports/branches/main/databases/mariadb103-client/Makefile
 /ports/branches/main/databases/mariadb104-client/Makefile
 /ports/branches/main/databases/mariadb105-client/Makefile
 /ports/branches/main/databases/mariadb106-client/Makefile
 /ports/branches/main/databases/mysql55-client/Makefile
 /ports/branches/main/databases/mysql56-client/Makefile
 /ports/branches/main/databases/mysql57-client/Makefile
 /ports/branches/main/databases/mysql80-client/Makefile
 /ports/branches/main/databases/percona-pam-for-mysql/Makefile
 /ports/branches/main/databases/percona55-client/Makefile
 /ports/branches/main/databases/percona56-client/Makefile
 /ports/branches/main/databases/percona57-client/Makefile
 /ports/branches/main/databases/percona57-pam-for-mysql/Makefile
 /ports/branches/main/databases/php73-dba/Makefile
 /ports/branches/main/databases/php73-interbase/Makefile
 /ports/branches/main/databases/php73-mysqli/Makefile
 /ports/branches/main/databases/php73-odbc/Makefile
 /ports/branches/main/databases/php73-pdo/Makefile
 /ports/branches/main/databases/php73-pdo_dblib/Makefile
 /ports/branches/main/databases/php73-pdo_firebird/Makefile
 /ports/branches/main/databases/php73-pdo_mysql/Makefile
 /ports/branches/main/databases/php73-pdo_odbc/Makefile
 /ports/branches/main/databases/php73-pdo_pgsql/Makefile
 /ports/branches/main/databases/php73-pdo_sqlite/Makefile
 /ports/branches/main/databases/php73-pgsql/Makefile
 /ports/branches/main/databases/php73-sqlite3/Makefile
 /ports/branches/main/databases/php74-dba/Makefile
 /ports/branches/main/databases/php74-mysqli/Makefile
 /ports/branches/main/databases/php74-odbc/Makefile
 /ports/branches/main/databases/php74-pdo/Makefile
 /ports/branches/main/databases/php74-pdo_dblib/Makefile
 /ports/branches/main/databases/php74-pdo_firebird/Makefile
 /ports/branches/main/databases/php74-pdo_mysql/Makefile
 /ports/branches/main/databases/php74-pdo_odbc/Makefile
 /ports/branches/main/databases/php74-pdo_pgsql/Makefile
 /ports/branches/main/databases/php74-pdo_sqlite/Makefile
 /ports/branches/main/databases/php74-pgsql/Makefile
 /ports/branches/main/databases/php74-sqlite3/Makefile
 /ports/branches/main/databases/php80-dba/Makefile
 /ports/branches/main/databases/php80-mysqli/Makefile
 /ports/branches/main/databases/php80-odbc/Makefile
 /ports/branches/main/databases/php80-pdo/Makefile
 /ports/branches/main/databases/php80-pdo_dblib/Makefile
 /ports/branches/main/databases/php80-pdo_firebird/Makefile
 /ports/branches/main/databases/php80-pdo_mysql/Makefile
 /ports/branches/main/databases/php80-pdo_odbc/Makefile
 /ports/branches/main/databases/php80-pdo_pgsql/Makefile
 /ports/branches/main/databases/php80-pdo_sqlite/Makefile
 /ports/branches/main/databases/php80-pgsql/Makefile
 /ports/branches/main/databases/php80-sqlite3/Makefile
 /ports/branches/main/databases/php81-dba/Makefile
 /ports/branches/main/databases/php81-mysqli/Makefile
 /ports/branches/main/databases/php81-odbc/Makefile
 /ports/branches/main/databases/php81-pdo/Makefile
 /ports/branches/main/databases/php81-pdo_dblib/Makefile
 /ports/branches/main/databases/php81-pdo_firebird/Makefile
 /ports/branches/main/databases/php81-pdo_mysql/Makefile
 /ports/branches/main/databases/php81-pdo_odbc/Makefile
 /ports/branches/main/databases/php81-pdo_pgsql/Makefile
 /ports/branches/main/databases/php81-pdo_sqlite/Makefile
 /ports/branches/main/databases/php81-pgsql/Makefile
 /ports/branches/main/databases/php81-sqlite3/Makefile
 /ports/branches/main/databases/php82-dba/Makefile
 /ports/branches/main/databases/php82-mysqli/Makefile
 /ports/branches/main/databases/php82-odbc/Makefile
 /ports/branches/main/databases/php82-pdo/Makefile
 /ports/branches/main/databases/php82-pdo_dblib/Makefile
 /ports/branches/main/databases/php82-pdo_firebird/Makefile
 /ports/branches/main/databases/php82-pdo_mysql/Makefile
 /ports/branches/main/databases/php82-pdo_odbc/Makefile
 /ports/branches/main/databases/php82-pdo_pgsql/Makefile
 /ports/branches/main/databases/php82-pdo_sqlite/Makefile
 /ports/branches/main/databases/php82-pgsql/Makefile
 /ports/branches/main/databases/php82-sqlite3/Makefile
 /ports/branches/main/databases/postgresql10-client/Makefile
 /ports/branches/main/databases/postgresql10-contrib/Makefile
 /ports/branches/main/databases/postgresql10-docs/Makefile
 /ports/branches/main/databases/postgresql10-pgtcl/Makefile
 /ports/branches/main/databases/postgresql10-plperl/Makefile
 /ports/branches/main/databases/postgresql10-plpython/Makefile
 /ports/branches/main/databases/postgresql10-pltcl/Makefile
 /ports/branches/main/databases/postgresql11-client/Makefile
 /ports/branches/main/databases/postgresql11-contrib/Makefile
 /ports/branches/main/databases/postgresql11-docs/Makefile
 /ports/branches/main/databases/postgresql11-pgtcl/Makefile
 /ports/branches/main/databases/postgresql11-plperl/Makefile
 /ports/branches/main/databases/postgresql11-plpython/Makefile
 /ports/branches/main/databases/postgresql11-pltcl/Makefile
 /ports/branches/main/databases/postgresql12-client/Makefile
 /ports/branches/main/databases/postgresql12-contrib/Makefile
 /ports/branches/main/databases/postgresql12-docs/Makefile
 /ports/branches/main/databases/postgresql12-pgtcl/Makefile
 /ports/branches/main/databases/postgresql12-plperl/Makefile
 /ports/branches/main/databases/postgresql12-plpython/Makefile
 /ports/branches/main/databases/postgresql12-pltcl/Makefile
 /ports/branches/main/databases/postgresql13-client/Makefile
 /ports/branches/main/databases/postgresql13-contrib/Makefile
 /ports/branches/main/databases/postgresql13-docs/Makefile
 /ports/branches/main/databases/postgresql13-pgtcl/Makefile
 /ports/branches/main/databases/postgresql13-plperl/Makefile
 /ports/branches/main/databases/postgresql13-plpython/Makefile
 /ports/branches/main/databases/postgresql13-pltcl/Makefile
 /ports/branches/main/databases/postgresql14-client/Makefile
 /ports/branches/main/databases/postgresql14-contrib/Makefile
 /ports/branches/main/databases/postgresql14-docs/Makefile
 /ports/branches/main/databases/postgresql14-pgtcl/Makefile
 /ports/branches/main/databases/postgresql14-plperl/Makefile
 /ports/branches/main/databases/postgresql14-plpython/Makefile
 /ports/branches/main/databases/postgresql14-pltcl/Makefile
 /ports/branches/main/databases/postgresql15-client/Makefile
 /ports/branches/main/databases/postgresql15-contrib/Makefile
 /ports/branches/main/databases/postgresql15-docs/Makefile
 /ports/branches/main/databases/postgresql15-pgtcl/Makefile
 /ports/branches/main/databases/postgresql15-plperl/Makefile
 /ports/branches/main/databases/postgresql15-plpython/Makefile
 /ports/branches/main/databases/postgresql15-pltcl/Makefile
 /ports/branches/main/databases/postgresql95-client/Makefile
 /ports/branches/main/databases/postgresql95-contrib/Makefile
 /ports/branches/main/databases/postgresql95-docs/Makefile
 /ports/branches/main/databases/postgresql95-pgtcl/Makefile
 /ports/branches/main/databases/postgresql95-plperl/Makefile
 /ports/branches/main/databases/postgresql95-plpython/Makefile
 /ports/branches/main/databases/postgresql95-pltcl/Makefile
 /ports/branches/main/databases/postgresql96-client/Makefile
 /ports/branches/main/databases/postgresql96-contrib/Makefile
 /ports/branches/main/databases/postgresql96-docs/Makefile
 /ports/branches/main/databases/postgresql96-pgtcl/Makefile
 /ports/branches/main/databases/postgresql96-plperl/Makefile
 /ports/branches/main/databases/postgresql96-plpython/Makefile
 /ports/branches/main/databases/postgresql96-pltcl/Makefile
 /ports/branches/main/databases/proftpd-mod_sql_mysql/Makefile
 /ports/branches/main/databases/proftpd-mod_sql_odbc/Makefile
 /ports/branches/main/databases/proftpd-mod_sql_postgres/Makefile
 /ports/branches/main/databases/proftpd-mod_sql_sqlite/Makefile
 /ports/branches/main/databases/proftpd-mod_sql_tds/Makefile
 /ports/branches/main/databases/rocksdb-lite/Makefile
 /ports/branches/main/deskutils/libportal-gtk3/Makefile
 /ports/branches/main/deskutils/libportal-gtk4/Makefile
 /ports/branches/main/deskutils/libportal-qt5/Makefile
 /ports/branches/main/devel/aarch64-gcc/Makefile
 /ports/branches/main/devel/aarch64-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/amd64-gcc/Makefile
 /ports/branches/main/devel/amd64-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/appstream-compose/Makefile
 /ports/branches/main/devel/appstream-qt/Makefile
 /ports/branches/main/devel/arcanist/Makefile
 /ports/branches/main/devel/arm-none-eabi-gcc/Makefile
 /ports/branches/main/devel/boehm-gc-redirect/Makefile
 /ports/branches/main/devel/boehm-gc-threaded/Makefile
 /ports/branches/main/devel/ccache-memcached-static/Makefile
 /ports/branches/main/devel/ccache-memcached/Makefile
 /ports/branches/main/devel/ccache-static/Makefile
 /ports/branches/main/devel/cppcheck-gui/Makefile
 /ports/branches/main/devel/cvs+ipv6/Makefile
 /ports/branches/main/devel/dcd-client/Makefile
 /ports/branches/main/devel/e2fsprogs-libss/Makefile
 /ports/branches/main/devel/fpc-bfd/Makefile
 /ports/branches/main/devel/fpc-dbus/Makefile
 /ports/branches/main/devel/fpc-fcl-async/Makefile
 /ports/branches/main/devel/fpc-fcl-base/Makefile
 /ports/branches/main/devel/fpc-fcl-db/Makefile
 /ports/branches/main/devel/fpc-fcl-extra/Makefile
 /ports/branches/main/devel/fpc-fcl-fpcunit/Makefile
 /ports/branches/main/devel/fpc-fcl-image/Makefile
 /ports/branches/main/devel/fpc-fcl-js/Makefile
 /ports/branches/main/devel/fpc-fcl-json/Makefile
 /ports/branches/main/devel/fpc-fcl-net/Makefile
 /ports/branches/main/devel/fpc-fcl-passrc/Makefile
 /ports/branches/main/devel/fpc-fcl-pdf/Makefile
 /ports/branches/main/devel/fpc-fcl-registry/Makefile
 /ports/branches/main/devel/fpc-fcl-report/Makefile
 /ports/branches/main/devel/fpc-fcl-res/Makefile
 /ports/branches/main/devel/fpc-fcl-sdo/Makefile
 /ports/branches/main/devel/fpc-fcl-sound/Makefile
 /ports/branches/main/devel/fpc-fcl-stl/Makefile
 /ports/branches/main/devel/fpc-fcl-web/Makefile
 /ports/branches/main/devel/fpc-fcl-xml/Makefile
 /ports/branches/main/devel/fpc-fppkg/Makefile
 /ports/branches/main/devel/fpc-fv/Makefile
 /ports/branches/main/devel/fpc-gdbint/Makefile
 /ports/branches/main/devel/fpc-libmagic/Makefile
 /ports/branches/main/devel/fpc-newt/Makefile
 /ports/branches/main/devel/fpc-odata/Makefile
 /ports/branches/main/devel/fpc-pthreads/Makefile
 /ports/branches/main/devel/fpc-regexpr/Makefile
 /ports/branches/main/devel/fpc-sdl/Makefile
 /ports/branches/main/devel/fpc-symbolic/Makefile
 /ports/branches/main/devel/fpc-tplylib/Makefile
 /ports/branches/main/devel/fpc-zlib/Makefile
 /ports/branches/main/devel/git-cvs/Makefile
 /ports/branches/main/devel/git-gui/Makefile
 /ports/branches/main/devel/git-p4/Makefile
 /ports/branches/main/devel/git-svn/Makefile
 /ports/branches/main/devel/gittrac/Makefile
 /ports/branches/main/devel/godot-tools/Makefile
 /ports/branches/main/devel/godot2-tools/Makefile
 /ports/branches/main/devel/gstreamer1-plugins-soup/Makefile
 /ports/branches/main/devel/gwenhywfar-fox16/Makefile
 /ports/branches/main/devel/gwenhywfar-gtk2/Makefile
 /ports/branches/main/devel/gwenhywfar-gtk3/Makefile
 /ports/branches/main/devel/gwenhywfar-qt5/Makefile
 /ports/branches/main/devel/i386-gcc/Makefile
 /ports/branches/main/devel/i386-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/icu-lx/Makefile
 /ports/branches/main/devel/libastylej-arduino/Makefile
 /ports/branches/main/devel/llvm-morello/Makefile
 /ports/branches/main/devel/mips-gcc/Makefile
 /ports/branches/main/devel/mips-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/mips64-gcc/Makefile
 /ports/branches/main/devel/mips64-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/p5-subversion/Makefile
 /ports/branches/main/devel/php-ice37/Makefile
 /ports/branches/main/devel/php73-gettext/Makefile
 /ports/branches/main/devel/php73-intl/Makefile
 /ports/branches/main/devel/php73-json/Makefile
 /ports/branches/main/devel/php73-pcntl/Makefile
 /ports/branches/main/devel/php73-readline/Makefile
 /ports/branches/main/devel/php73-shmop/Makefile
 /ports/branches/main/devel/php73-sysvmsg/Makefile
 /ports/branches/main/devel/php73-sysvsem/Makefile
 /ports/branches/main/devel/php73-sysvshm/Makefile
 /ports/branches/main/devel/php73-tokenizer/Makefile
 /ports/branches/main/devel/php74-ffi/Makefile
 /ports/branches/main/devel/php74-gettext/Makefile
 /ports/branches/main/devel/php74-intl/Makefile
 /ports/branches/main/devel/php74-json/Makefile
 /ports/branches/main/devel/php74-pcntl/Makefile
 /ports/branches/main/devel/php74-readline/Makefile
 /ports/branches/main/devel/php74-shmop/Makefile
 /ports/branches/main/devel/php74-sysvmsg/Makefile
 /ports/branches/main/devel/php74-sysvsem/Makefile
 /ports/branches/main/devel/php74-sysvshm/Makefile
 /ports/branches/main/devel/php74-tokenizer/Makefile
 /ports/branches/main/devel/php80-ffi/Makefile
 /ports/branches/main/devel/php80-gettext/Makefile
 /ports/branches/main/devel/php80-intl/Makefile
 /ports/branches/main/devel/php80-pcntl/Makefile
 /ports/branches/main/devel/php80-readline/Makefile
 /ports/branches/main/devel/php80-shmop/Makefile
 /ports/branches/main/devel/php80-sysvmsg/Makefile
 /ports/branches/main/devel/php80-sysvsem/Makefile
 /ports/branches/main/devel/php80-sysvshm/Makefile
 /ports/branches/main/devel/php80-tokenizer/Makefile
 /ports/branches/main/devel/php81-ffi/Makefile
 /ports/branches/main/devel/php81-gettext/Makefile
 /ports/branches/main/devel/php81-intl/Makefile
 /ports/branches/main/devel/php81-pcntl/Makefile
 /ports/branches/main/devel/php81-readline/Makefile
 /ports/branches/main/devel/php81-shmop/Makefile
 /ports/branches/main/devel/php81-sysvmsg/Makefile
 /ports/branches/main/devel/php81-sysvsem/Makefile
 /ports/branches/main/devel/php81-sysvshm/Makefile
 /ports/branches/main/devel/php81-tokenizer/Makefile
 /ports/branches/main/devel/php82-ffi/Makefile
 /ports/branches/main/devel/php82-gettext/Makefile
 /ports/branches/main/devel/php82-intl/Makefile
 /ports/branches/main/devel/php82-pcntl/Makefile
 /ports/branches/main/devel/php82-readline/Makefile
 /ports/branches/main/devel/php82-shmop/Makefile
 /ports/branches/main/devel/php82-sysvmsg/Makefile
 /ports/branches/main/devel/php82-sysvsem/Makefile
 /ports/branches/main/devel/php82-sysvshm/Makefile
 /ports/branches/main/devel/php82-tokenizer/Makefile
 /ports/branches/main/devel/psptoolchain-gcc-stage2/Makefile
 /ports/branches/main/devel/psptoolchain-pspsdk-stage2/Makefile
 /ports/branches/main/devel/pth-hard/Makefile
 /ports/branches/main/devel/py-Jinja2-doc/Makefile
 /ports/branches/main/devel/py-dbus/Makefile
 /ports/branches/main/devel/py-gobject3/Makefile
 /ports/branches/main/devel/py-ice/Makefile
 /ports/branches/main/devel/py-ice37/Makefile
 /ports/branches/main/devel/py-libplist/Makefile
 /ports/branches/main/devel/py-subversion/Makefile
 /ports/branches/main/devel/riscv32-unknown-elf-gcc/Makefile
 /ports/branches/main/devel/riscv64-none-elf-gcc/Makefile
 /ports/branches/main/devel/riscv64-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/ruby-subversion/Makefile
 /ports/branches/main/devel/sccs/Makefile
 /ports/branches/main/devel/smake/Makefile
 /ports/branches/main/devel/sparc64-gcc/Makefile
 /ports/branches/main/devel/sparc64-xtoolchain-gcc/Makefile
 /ports/branches/main/devel/sunpromake/Makefile
 /ports/branches/main/devel/svntrac/Makefile
 /ports/branches/main/devel/tcllibc/Makefile
 /ports/branches/main/devel/xtoolchain-llvm80/Makefile
 /ports/branches/main/devel/xtoolchain-llvm90/Makefile
 /ports/branches/main/dns/bind-tools/Makefile
 /ports/branches/main/dns/knot3-lib/Makefile
 /ports/branches/main/dns/p5-DNS-Ldns/Makefile
 /ports/branches/main/dns/py-ldns/Makefile
 /ports/branches/main/editors/fpc-ide/Makefile
 /ports/branches/main/editors/lazarus-qt5-devel/Makefile
 /ports/branches/main/editors/lazarus-qt5/Makefile
 /ports/branches/main/editors/pico-alpine/Makefile
 /ports/branches/main/editors/ved/Makefile
 /ports/branches/main/editors/vim-console/Makefile
 /ports/branches/main/editors/vim-tiny/Makefile
 /ports/branches/main/emulators/citra-qt5/Makefile
 /ports/branches/main/emulators/libretro-ppsspp/Makefile
 /ports/branches/main/emulators/mess/Makefile
 /ports/branches/main/emulators/mupen64plus-audio-sdl/Makefile
 /ports/branches/main/emulators/mupen64plus-input-sdl/Makefile
 /ports/branches/main/emulators/mupen64plus-rsp-cxd4/Makefile
 /ports/branches/main/emulators/mupen64plus-rsp-hle/Makefile
 /ports/branches/main/emulators/mupen64plus-rsp-z64/Makefile
 /ports/branches/main/emulators/mupen64plus-ui-console/Makefile
 /ports/branches/main/emulators/mupen64plus-video-arachnoid/Makefile
 /ports/branches/main/emulators/mupen64plus-video-glide64/Makefile
 /ports/branches/main/emulators/mupen64plus-video-glide64mk2/Makefile
 /ports/branches/main/emulators/mupen64plus-video-rice/Makefile
 /ports/branches/main/emulators/mupen64plus-video-z64/Makefile
 /ports/branches/main/emulators/ppsspp-qt5/Makefile
 /ports/branches/main/emulators/qemu-utils/Makefile
 /ports/branches/main/emulators/virtualbox-ose-additions-nox11-legacy/Makefile
 /ports/branches/main/emulators/virtualbox-ose-additions-nox11/Makefile
 /ports/branches/main/emulators/virtualbox-ose-nox11-legacy/Makefile
 /ports/branches/main/emulators/virtualbox-ose-nox11/Makefile
 /ports/branches/main/emulators/yuzu-qt5/Makefile
 /ports/branches/main/french/geonext/Makefile
 /ports/branches/main/french/jdictionary-fre-hun/Makefile
 /ports/branches/main/french/wordpress/Makefile
 /ports/branches/main/ftp/fpc-libcurl/Makefile
 /ports/branches/main/ftp/gstreamer1-plugins-curl/Makefile
 /ports/branches/main/ftp/php73-curl/Makefile
 /ports/branches/main/ftp/php73-ftp/Makefile
 /ports/branches/main/ftp/php74-curl/Makefile
 /ports/branches/main/ftp/php74-ftp/Makefile
 /ports/branches/main/ftp/php80-curl/Makefile
 /ports/branches/main/ftp/php80-ftp/Makefile
 /ports/branches/main/ftp/php81-curl/Makefile
 /ports/branches/main/ftp/php81-ftp/Makefile
 /ports/branches/main/ftp/php82-curl/Makefile
 /ports/branches/main/ftp/php82-ftp/Makefile
 /ports/branches/main/ftp/proftpd-mod_vroot/Makefile
 /ports/branches/main/games/bzflag-server/Makefile
 /ports/branches/main/games/cataclysm-dda-tiles/Makefile
 /ports/branches/main/games/exult-devel/Makefile
 /ports/branches/main/games/freeciv-nox11/Makefile
 /ports/branches/main/games/ioquake3-server/Makefile
 /ports/branches/main/games/nethack33-nox11/Makefile
 /ports/branches/main/games/nethack34-nox11/Makefile
 /ports/branches/main/games/nethack36-nox11/Makefile
 /ports/branches/main/games/onscripter-1byte/Makefile
 /ports/branches/main/games/openarena-server/Makefile
 /ports/branches/main/games/openarena/Makefile
 /ports/branches/main/games/openbor3482/Makefile
 /ports/branches/main/games/openbor3711/Makefile
 /ports/branches/main/games/openbor3979/Makefile
 /ports/branches/main/games/openbor4432/Makefile
 /ports/branches/main/games/qwdtools/Makefile
 /ports/branches/main/games/tome4-beta/Makefile
 /ports/branches/main/games/xboard-devel/Makefile
 /ports/branches/main/games/xnethack-nox11/Makefile
 /ports/branches/main/german/geonext/Makefile
 /ports/branches/main/german/jdictionary-eng-ger/Makefile
 /ports/branches/main/german/jdictionary-ger-hun/Makefile
 /ports/branches/main/german/webalizer2/Makefile
 /ports/branches/main/german/wordpress/Makefile
 /ports/branches/main/graphics/ImageMagick6-nox11/Makefile
 /ports/branches/main/graphics/ImageMagick7-nox11/Makefile
 /ports/branches/main/graphics/atril-lite/Makefile
 /ports/branches/main/graphics/fpc-cairo/Makefile
 /ports/branches/main/graphics/fpc-graph/Makefile
 /ports/branches/main/graphics/fpc-hermes/Makefile
 /ports/branches/main/graphics/fpc-imagemagick/Makefile
 /ports/branches/main/graphics/fpc-libgd/Makefile
 /ports/branches/main/graphics/fpc-libpng/Makefile
 /ports/branches/main/graphics/fpc-ncurses/Makefile
 /ports/branches/main/graphics/fpc-opengl/Makefile
 /ports/branches/main/graphics/fpc-pasjpeg/Makefile
 /ports/branches/main/graphics/fpc-proj4/Makefile
 /ports/branches/main/graphics/fpc-rsvg/Makefile
 /ports/branches/main/graphics/fpc-svgalib/Makefile
 /ports/branches/main/graphics/fpc-vcl-compat/Makefile
 /ports/branches/main/graphics/frei0r-plugins-gavl/Makefile
 /ports/branches/main/graphics/frei0r-plugins-opencv/Makefile
 /ports/branches/main/graphics/frei0r-plugins/Makefile
 /ports/branches/main/graphics/glew-wayland/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-aalib/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-cairo/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-gdkpixbuf/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-gl/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-jpeg/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-kms/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-libcaca/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-libvisual/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-opencv/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-openexr/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-openjpeg/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-png/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-qt/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-rsvg/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-vulkan/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-webp/Makefile
 /ports/branches/main/graphics/gstreamer1-plugins-zbar/Makefile
 /ports/branches/main/graphics/libjpeg-turbo/Makefile
 /ports/branches/main/graphics/libwmf-nox11/Makefile
 /ports/branches/main/graphics/opencolorio-tools/Makefile
 /ports/branches/main/graphics/pecl-imagick-im7/Makefile
 /ports/branches/main/graphics/php73-exif/Makefile
 /ports/branches/main/graphics/php73-gd/Makefile
 /ports/branches/main/graphics/php74-exif/Makefile
 /ports/branches/main/graphics/php74-gd/Makefile
 /ports/branches/main/graphics/php80-exif/Makefile
 /ports/branches/main/graphics/php80-gd/Makefile
 /ports/branches/main/graphics/php81-exif/Makefile
 /ports/branches/main/graphics/php81-gd/Makefile
 /ports/branches/main/graphics/php82-exif/Makefile
 /ports/branches/main/graphics/php82-gd/Makefile
 /ports/branches/main/graphics/poppler-glib/Makefile
 /ports/branches/main/graphics/poppler-qt5/Makefile
 /ports/branches/main/graphics/poppler-qt6/Makefile
 /ports/branches/main/graphics/poppler-utils/Makefile
 /ports/branches/main/graphics/py-opencolorio/Makefile
 /ports/branches/main/graphics/py-openimageio/Makefile
 /ports/branches/main/graphics/py-openshadinglanguage/Makefile
 /ports/branches/main/graphics/xpdf/Makefile
 /ports/branches/main/graphics/xv-m17n/Makefile
 /ports/branches/main/hungarian/jdictionary-eng-hun-expr/Makefile
 /ports/branches/main/hungarian/jdictionary-eng-hun/Makefile
 /ports/branches/main/irc/quassel-core/Makefile
 /ports/branches/main/japanese/awffull/Makefile
 /ports/branches/main/japanese/cmigemo-dict/Makefile
 /ports/branches/main/japanese/eterm/Makefile
 /ports/branches/main/japanese/fcitx-mozc/Makefile
 /ports/branches/main/japanese/font-kanji26/Makefile
 /ports/branches/main/japanese/font-ricty-discord/Makefile
 /ports/branches/main/japanese/gd/Makefile
 /ports/branches/main/japanese/ibus-mozc/Makefile
 /ports/branches/main/japanese/kon2-14dot/Makefile
 /ports/branches/main/japanese/mecab-ipadic-eucjp/Makefile
 /ports/branches/main/japanese/mecab-ipadic-sjis/Makefile
 /ports/branches/main/japanese/mecab-ipadic-utf8/Makefile
 /ports/branches/main/japanese/mozc-el/Makefile
 /ports/branches/main/japanese/mozc-tool/Makefile
 /ports/branches/main/japanese/ng-canna/Makefile
 /ports/branches/main/japanese/plan/Makefile
 /ports/branches/main/japanese/quit/Makefile
 /ports/branches/main/japanese/skk-jisyo-cdb/Makefile
 /ports/branches/main/japanese/tdiary/Makefile
 /ports/branches/main/japanese/timidity++-slang/Makefile
 /ports/branches/main/japanese/uim-anthy/Makefile
 /ports/branches/main/japanese/uim-mozc/Makefile
 /ports/branches/main/japanese/w3m-img/Makefile
 /ports/branches/main/japanese/w3m/Makefile
 /ports/branches/main/japanese/webalizer/Makefile
 /ports/branches/main/japanese/wordpress/Makefile
 /ports/branches/main/japanese/xv/Makefile
 /ports/branches/main/java/java-subversion/Makefile
 /ports/branches/main/java/openjdk11-jre/Makefile
 /ports/branches/main/java/openjdk17-jre/Makefile
 /ports/branches/main/java/openjdk7-jre/Makefile
 /ports/branches/main/java/openjdk8-jre/Makefile
 /ports/branches/main/korean/FreeWnn-lib/Makefile
 /ports/branches/main/korean/FreeWnn-server/Makefile
 /ports/branches/main/korean/nanumfonts-ttf/Makefile
 /ports/branches/main/korean/unfonts-extra/Makefile
 /ports/branches/main/lang/fpc-lua/Makefile
 /ports/branches/main/lang/fpc-pastojs/Makefile
 /ports/branches/main/lang/fpc-rexx/Makefile
 /ports/branches/main/lang/fpc-rtl-console/Makefile
 /ports/branches/main/lang/fpc-rtl-extra/Makefile
 /ports/branches/main/lang/fpc-rtl-generics/Makefile
 /ports/branches/main/lang/fpc-rtl-objpas/Makefile
 /ports/branches/main/lang/fpc-rtl-unicode/Makefile
 /ports/branches/main/lang/fpc-utils/Makefile
 /ports/branches/main/lang/ghc810/Makefile
 /ports/branches/main/lang/gnatcross-binutils-aarch64/Makefile
 /ports/branches/main/lang/gnatdroid-binutils-x86/Makefile
 /ports/branches/main/lang/go-devel/Makefile
 /ports/branches/main/lang/go117/Makefile
 /ports/branches/main/lang/go118/Makefile
 /ports/branches/main/lang/go119/Makefile
 /ports/branches/main/lang/go120/Makefile
 /ports/branches/main/lang/linux-dotnet-cli/Makefile
 /ports/branches/main/lang/linux-dotnet10-runtime/Makefile
 /ports/branches/main/lang/linux-dotnet11-runtime/Makefile
 /ports/branches/main/lang/linux-dotnet11-sdk/Makefile
 /ports/branches/main/lang/ocaml-nox11/Makefile
 /ports/branches/main/lang/pypy3/Makefile
 /ports/branches/main/lang/python-doc-pdf-a4/Makefile
 /ports/branches/main/lang/python-doc-pdf-letter/Makefile
 /ports/branches/main/lang/python-doc-text/Makefile
 /ports/branches/main/lang/rust-nightly/Makefile
 /ports/branches/main/mail/bogofilter-kc/Makefile
 /ports/branches/main/mail/bogofilter-lmdb/Makefile
 /ports/branches/main/mail/bogofilter-sqlite/Makefile
 /ports/branches/main/mail/bogofilter/Makefile
 /ports/branches/main/mail/claws-mail-acpi_notifier/Makefile
 /ports/branches/main/mail/claws-mail-address_keeper/Makefile
 /ports/branches/main/mail/claws-mail-archive/Makefile
 /ports/branches/main/mail/claws-mail-att_remover/Makefile
 /ports/branches/main/mail/claws-mail-attachwarner/Makefile
 /ports/branches/main/mail/claws-mail-bogofilter/Makefile
 /ports/branches/main/mail/claws-mail-bsfilter/Makefile
 /ports/branches/main/mail/claws-mail-clamd/Makefile
 /ports/branches/main/mail/claws-mail-dillo/Makefile
 /ports/branches/main/mail/claws-mail-fetchinfo/Makefile
 /ports/branches/main/mail/claws-mail-gdata/Makefile
 /ports/branches/main/mail/claws-mail-keyword_warner/Makefile
 /ports/branches/main/mail/claws-mail-libravatar/Makefile
 /ports/branches/main/mail/claws-mail-litehtml_viewer/Makefile
 /ports/branches/main/mail/claws-mail-mailmbox/Makefile
 /ports/branches/main/mail/claws-mail-managesieve/Makefile
 /ports/branches/main/mail/claws-mail-newmail/Makefile
 /ports/branches/main/mail/claws-mail-notification/Makefile
 /ports/branches/main/mail/claws-mail-pdf_viewer/Makefile
 /ports/branches/main/mail/claws-mail-perl/Makefile
 /ports/branches/main/mail/claws-mail-pgp/Makefile
 /ports/branches/main/mail/claws-mail-rssyl/Makefile
 /ports/branches/main/mail/claws-mail-spam_report/Makefile
 /ports/branches/main/mail/claws-mail-spamassassin/Makefile
 /ports/branches/main/mail/claws-mail-tnef_parse/Makefile
 /ports/branches/main/mail/claws-mail-vcalendar/Makefile
 /ports/branches/main/mail/courier-authlib-vchkpw/Makefile
 /ports/branches/main/mail/exim-doc-pdf/Makefile
 /ports/branches/main/mail/exim-doc-postscript/Makefile
 /ports/branches/main/mail/exim-ldap2/Makefile
 /ports/branches/main/mail/exim-monitor/Makefile
 /ports/branches/main/mail/exim-mysql/Makefile
 /ports/branches/main/mail/exim-postgresql/Makefile
 /ports/branches/main/mail/exim-sa-exim/Makefile
 /ports/branches/main/mail/exim-sqlite/Makefile
 /ports/branches/main/mail/fetchmailconf/Makefile
 /ports/branches/main/mail/gmime2-sharp/Makefile
 /ports/branches/main/mail/gmime24-sharp/Makefile
 /ports/branches/main/mail/gmime26-sharp/Makefile
 /ports/branches/main/mail/mailman-exim4/Makefile
 /ports/branches/main/mail/mailman-postfix/Makefile
 /ports/branches/main/mail/notmuch-emacs/Makefile
 /ports/branches/main/mail/notmuch-mutt/Makefile
 /ports/branches/main/mail/opensmtpd-extras-queue-ram/Makefile
 /ports/branches/main/mail/opensmtpd-extras-scheduler-ram/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-ldap/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-mysql/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-passwd/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-postgresql/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-redis/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-socketmap/Makefile
 /ports/branches/main/mail/opensmtpd-extras-table-sqlite/Makefile
 /ports/branches/main/mail/php73-imap/Makefile
 /ports/branches/main/mail/php74-imap/Makefile
 /ports/branches/main/mail/php80-imap/Makefile
 /ports/branches/main/mail/php81-imap/Makefile
 /ports/branches/main/mail/php82-imap/Makefile
 /ports/branches/main/mail/popa3d-before-sendmail/Makefile
 /ports/branches/main/mail/postfix-current-sasl/Makefile
 /ports/branches/main/mail/postfix-ldap-sasl/Makefile
 /ports/branches/main/mail/postfix-sasl/Makefile
 /ports/branches/main/mail/postfixadmin-lite/Makefile
 /ports/branches/main/mail/postfixadmin33-lite/Makefile
 /ports/branches/main/mail/py-notmuch/Makefile
 /ports/branches/main/mail/py-notmuch2/Makefile
 /ports/branches/main/mail/qmail-mysql/Makefile
 /ports/branches/main/mail/qmail-spamcontrol/Makefile
 /ports/branches/main/mail/qmail-tls/Makefile
 /ports/branches/main/mail/rainloop-community/Makefile
 /ports/branches/main/math/blas/Makefile
 /ports/branches/main/math/cblas/Makefile
 /ports/branches/main/math/fftw-float/Makefile
 /ports/branches/main/math/fftw3-float/Makefile
 /ports/branches/main/math/fftw3-long/Makefile
 /ports/branches/main/math/fftw3-quad/Makefile
 /ports/branches/main/math/fpc-fftw/Makefile
 /ports/branches/main/math/fpc-gmp/Makefile
 /ports/branches/main/math/fpc-numlib/Makefile
 /ports/branches/main/math/gnuplot-lite/Makefile
 /ports/branches/main/math/lapacke/Makefile
 /ports/branches/main/math/lapacke/files/Makefile
 /ports/branches/main/math/php73-bcmath/Makefile
 /ports/branches/main/math/php73-gmp/Makefile
 /ports/branches/main/math/php74-bcmath/Makefile
 /ports/branches/main/math/php74-gmp/Makefile
 /ports/branches/main/math/php80-bcmath/Makefile
 /ports/branches/main/math/php80-gmp/Makefile
 /ports/branches/main/math/php81-bcmath/Makefile
 /ports/branches/main/math/php81-gmp/Makefile
 /ports/branches/main/math/php82-bcmath/Makefile
 /ports/branches/main/math/php82-gmp/Makefile
 /ports/branches/main/math/ploticus-nox11/Makefile
 /ports/branches/main/math/spooles-mpich/Makefile
 /ports/branches/main/math/xlapack/Makefile
 /ports/branches/main/misc/amanda-client/Makefile
 /ports/branches/main/misc/e2fsprogs-libblkid/Makefile
 /ports/branches/main/misc/e2fsprogs-libuuid/Makefile
 /ports/branches/main/misc/fpc-chm/Makefile
 /ports/branches/main/misc/freebsd-doc-bn/Makefile
 /ports/branches/main/misc/freebsd-doc-da/Makefile
 /ports/branches/main/misc/freebsd-doc-de/Makefile
 /ports/branches/main/misc/freebsd-doc-el/Makefile
 /ports/branches/main/misc/freebsd-doc-es/Makefile
 /ports/branches/main/misc/freebsd-doc-fr/Makefile
 /ports/branches/main/misc/freebsd-doc-hu/Makefile
 /ports/branches/main/misc/freebsd-doc-id/Makefile
 /ports/branches/main/misc/freebsd-doc-it/Makefile
 /ports/branches/main/misc/freebsd-doc-ja/Makefile
 /ports/branches/main/misc/freebsd-doc-ko/Makefile
 /ports/branches/main/misc/freebsd-doc-mn/Makefile
 /ports/branches/main/misc/freebsd-doc-nl/Makefile
 /ports/branches/main/misc/freebsd-doc-pl/Makefile
 /ports/branches/main/misc/freebsd-doc-pt/Makefile
 /ports/branches/main/misc/freebsd-doc-ru/Makefile
 /ports/branches/main/misc/freebsd-doc-tr/Makefile
 /ports/branches/main/misc/freebsd-doc-zh_cn/Makefile
 /ports/branches/main/misc/freebsd-doc-zh_tw/Makefile
 /ports/branches/main/misc/mc-nox11/Makefile
 /ports/branches/main/misc/p5-OSSP-uuid/Makefile
 /ports/branches/main/misc/php73-calendar/Makefile
 /ports/branches/main/misc/php74-calendar/Makefile
 /ports/branches/main/misc/php80-calendar/Makefile
 /ports/branches/main/misc/php81-calendar/Makefile
 /ports/branches/main/misc/php82-calendar/Makefile
 /ports/branches/main/multimedia/avidemux-cli/Makefile
 /ports/branches/main/multimedia/avidemux-plugins/Makefile
 /ports/branches/main/multimedia/avidemux-qt5/Makefile
 /ports/branches/main/multimedia/celluloid-devel/Makefile
 /ports/branches/main/multimedia/emby-server-devel/Makefile
 /ports/branches/main/multimedia/fpc-dts/Makefile
 /ports/branches/main/multimedia/fpc-libvlc/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-aom/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-assrender/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-bad/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-dash/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-dts/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-dv/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-dvdread/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-good/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-hls/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-kate/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-libde265/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-mpeg2dec/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-mpeg2enc/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-mplex/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-msdk/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-openh264/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-resindvd/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-rtmp/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-smoothstreaming/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-theora/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-ttml/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-ugly/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-v4l2/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-vpx/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-x264/Makefile
 /ports/branches/main/multimedia/gstreamer1-plugins-x265/Makefile
 /ports/branches/main/multimedia/gtk-pipe-viewer/Makefile
 /ports/branches/main/multimedia/libquicktime-lame/Makefile
 /ports/branches/main/multimedia/librav1e/Makefile
 /ports/branches/main/multimedia/libva-glx/Makefile
 /ports/branches/main/multimedia/libx264/Makefile
 /ports/branches/main/multimedia/mkvtoolnix-nox11/Makefile
 /ports/branches/main/multimedia/mlt-qt5/Makefile
 /ports/branches/main/multimedia/mlt6-qt5/Makefile
 /ports/branches/main/multimedia/mlt7-glaxnimate/Makefile
 /ports/branches/main/multimedia/mlt7-qt/Makefile
 /ports/branches/main/multimedia/mlt7-qt5/Makefile
 /ports/branches/main/multimedia/mythtv-frontend/Makefile
 /ports/branches/main/multimedia/plexmediaserver-plexpass/Makefile
 /ports/branches/main/multimedia/py-mlt/Makefile
 /ports/branches/main/multimedia/py-mlt6/Makefile
 /ports/branches/main/multimedia/v4l-utils/Makefile
 /ports/branches/main/multimedia/v4l_compat/Makefile
 /ports/branches/main/net-im/finch/Makefile
 /ports/branches/main/net-im/libnice-gst1/Makefile
 /ports/branches/main/net-im/pidgin/Makefile
 /ports/branches/main/net-mgmt/nagios-check_bacula11/Makefile
 /ports/branches/main/net-mgmt/nagios-check_bacula13/Makefile
 /ports/branches/main/net-mgmt/nagios-check_bacula9/Makefile
 /ports/branches/main/net-mgmt/netmagis-database/Makefile
 /ports/branches/main/net-mgmt/netmagis-detecteq/Makefile
 /ports/branches/main/net-mgmt/netmagis-metro/Makefile
 /ports/branches/main/net-mgmt/netmagis-servers/Makefile
 /ports/branches/main/net-mgmt/netmagis-topo/Makefile
 /ports/branches/main/net-mgmt/netmagis-utils/Makefile
 /ports/branches/main/net-mgmt/netmagis-www/Makefile
 /ports/branches/main/net-mgmt/nsca-client/Makefile
 /ports/branches/main/net-mgmt/nsca-ng-client/Makefile
 /ports/branches/main/net-mgmt/nsca27-client/Makefile
 /ports/branches/main/net-mgmt/php73-snmp/Makefile
 /ports/branches/main/net-mgmt/php74-snmp/Makefile
 /ports/branches/main/net-mgmt/php80-snmp/Makefile
 /ports/branches/main/net-mgmt/php81-snmp/Makefile
 /ports/branches/main/net-mgmt/php82-snmp/Makefile
 /ports/branches/main/net-mgmt/pnp-icinga2/Makefile
 /ports/branches/main/net-mgmt/vmutils/Makefile
 /ports/branches/main/net-mgmt/zabbix3-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix3-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix3-java/Makefile
 /ports/branches/main/net-mgmt/zabbix3-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix4-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix4-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix4-java/Makefile
 /ports/branches/main/net-mgmt/zabbix4-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix5-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix5-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix5-java/Makefile
 /ports/branches/main/net-mgmt/zabbix5-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix52-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix52-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix52-java/Makefile
 /ports/branches/main/net-mgmt/zabbix52-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix54-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix54-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix54-java/Makefile
 /ports/branches/main/net-mgmt/zabbix54-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix6-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix6-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix6-java/Makefile
 /ports/branches/main/net-mgmt/zabbix6-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix62-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix62-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix62-java/Makefile
 /ports/branches/main/net-mgmt/zabbix62-proxy/Makefile
 /ports/branches/main/net-mgmt/zabbix64-agent/Makefile
 /ports/branches/main/net-mgmt/zabbix64-frontend/Makefile
 /ports/branches/main/net-mgmt/zabbix64-java/Makefile
 /ports/branches/main/net-mgmt/zabbix64-proxy/Makefile
 /ports/branches/main/net-p2p/bitcoin-daemon/Makefile
 /ports/branches/main/net-p2p/bitcoin-utils/Makefile
 /ports/branches/main/net-p2p/bitmark-cli/Makefile
 /ports/branches/main/net-p2p/bitmark-daemon/Makefile
 /ports/branches/main/net-p2p/bitmark-recorder/Makefile
 /ports/branches/main/net-p2p/eiskaltdcpp-cli/Makefile
 /ports/branches/main/net-p2p/eiskaltdcpp-daemon/Makefile
 /ports/branches/main/net-p2p/eiskaltdcpp-data/Makefile
 /ports/branches/main/net-p2p/eiskaltdcpp-gtk/Makefile
 /ports/branches/main/net-p2p/litecoin-daemon/Makefile
 /ports/branches/main/net-p2p/litecoin-utils/Makefile
 /ports/branches/main/net-p2p/mldonkey-core/Makefile
 /ports/branches/main/net-p2p/mldonkey-gui/Makefile
 /ports/branches/main/net-p2p/namecoin-daemon/Makefile
 /ports/branches/main/net-p2p/namecoin-utils/Makefile
 /ports/branches/main/net-p2p/transmission-daemon/Makefile
 /ports/branches/main/net-p2p/transmission-gtk/Makefile
 /ports/branches/main/net-p2p/transmission-qt/Makefile
 /ports/branches/main/net-p2p/transmission-utils/Makefile
 /ports/branches/main/net-p2p/zetacoin-daemon/Makefile
 /ports/branches/main/net-p2p/zetacoin-utils/Makefile
 /ports/branches/main/net/avahi-autoipd/Makefile
 /ports/branches/main/net/avahi-gtk/Makefile
 /ports/branches/main/net/avahi-gtk3/Makefile
 /ports/branches/main/net/avahi-header/Makefile
 /ports/branches/main/net/avahi-libdns/Makefile
 /ports/branches/main/net/avahi-qt5/Makefile
 /ports/branches/main/net/avahi-sharp/Makefile
 /ports/branches/main/net/c3270/Makefile
 /ports/branches/main/net/chrony-lite/Makefile
 /ports/branches/main/net/courier-authlib-ldap/Makefile
 /ports/branches/main/net/fpc-ldap/Makefile
 /ports/branches/main/net/fpc-libenet/Makefile
 /ports/branches/main/net/fpc-pcap/Makefile
 /ports/branches/main/net/frr7-pythontools/Makefile
 /ports/branches/main/net/frr8-pythontools/Makefile
 /ports/branches/main/net/gstreamer1-plugins-libmms/Makefile
 /ports/branches/main/net/gstreamer1-plugins-srtp/Makefile
 /ports/branches/main/net/intel-em-kmod/Makefile
 /ports/branches/main/net/intel-ix-kmod/Makefile
 /ports/branches/main/net/isc-dhcp44-client/Makefile
 /ports/branches/main/net/isc-dhcp44-relay/Makefile
 /ports/branches/main/net/libproxy-gnome3/Makefile
 /ports/branches/main/net/libproxy-kde/Makefile
 /ports/branches/main/net/libproxy-mozjs/Makefile
 /ports/branches/main/net/libproxy-pacrunner/Makefile
 /ports/branches/main/net/libproxy-perl/Makefile
 /ports/branches/main/net/libproxy-python/Makefile
 /ports/branches/main/net/libproxy-webkit3/Makefile
 /ports/branches/main/net/mtr-nox11/Makefile
 /ports/branches/main/net/nss-pam-ldapd-sasl/Makefile
 /ports/branches/main/net/openldap24-client/Makefile
 /ports/branches/main/net/openldap24-sasl-client/Makefile
 /ports/branches/main/net/openldap25-client/Makefile
 /ports/branches/main/net/openldap26-client/Makefile
 /ports/branches/main/net/php73-ldap/Makefile
 /ports/branches/main/net/php73-soap/Makefile
 /ports/branches/main/net/php73-sockets/Makefile
 /ports/branches/main/net/php73-xmlrpc/Makefile
 /ports/branches/main/net/php74-ldap/Makefile
 /ports/branches/main/net/php74-soap/Makefile
 /ports/branches/main/net/php74-sockets/Makefile
 /ports/branches/main/net/php74-xmlrpc/Makefile
 /ports/branches/main/net/php80-ldap/Makefile
 /ports/branches/main/net/php80-soap/Makefile
 /ports/branches/main/net/php80-sockets/Makefile
 /ports/branches/main/net/php81-ldap/Makefile
 /ports/branches/main/net/php81-soap/Makefile
 /ports/branches/main/net/php81-sockets/Makefile
 /ports/branches/main/net/php82-ldap/Makefile
 /ports/branches/main/net/php82-soap/Makefile
 /ports/branches/main/net/php82-sockets/Makefile
 /ports/branches/main/net/proftpd-mod_ldap/Makefile
 /ports/branches/main/net/py-avahi/Makefile
 /ports/branches/main/net/py-libdnet/Makefile
 /ports/branches/main/net/py-miniupnpc/Makefile
 /ports/branches/main/net/rscsi/Makefile
 /ports/branches/main/net/tigervnc-viewer-java/Makefile
 /ports/branches/main/net/tigervnc-viewer/Makefile
 /ports/branches/main/net/tshark-lite/Makefile
 /ports/branches/main/net/tshark/Makefile
 /ports/branches/main/net/wireshark-lite/Makefile
 /ports/branches/main/news/husky-areafix/Makefile
 /ports/branches/main/news/husky-fidoconf/Makefile
 /ports/branches/main/news/husky-hpt/Makefile
 /ports/branches/main/news/husky-htick/Makefile
 /ports/branches/main/news/husky-huskylib/Makefile
 /ports/branches/main/news/husky-smapi/Makefile
 /ports/branches/main/news/husky-sqpack/Makefile
 /ports/branches/main/news/suck-cnews/Makefile
 /ports/branches/main/polish/webalizer2/Makefile
 /ports/branches/main/ports-mgmt/dialog4ports-static/Makefile
 /ports/branches/main/ports-mgmt/portshaker-config/Makefile
 /ports/branches/main/portuguese/webalizer-pt_BR/Makefile
 /ports/branches/main/portuguese/webalizer-pt_PT/Makefile
 /ports/branches/main/print/enscript-a4/Makefile
 /ports/branches/main/print/enscript-letterdj/Makefile
 /ports/branches/main/print/fpc-libcups/Makefile
 /ports/branches/main/print/gimp-gutenprint/Makefile
 /ports/branches/main/print/harfbuzz-cairo/Makefile
 /ports/branches/main/print/harfbuzz-hb-view/Makefile
 /ports/branches/main/print/harfbuzz-icu/Makefile
 /ports/branches/main/print/mp-a4/Makefile
 /ports/branches/main/print/papersize-default-letter/Makefile
 /ports/branches/main/print/pdflib-perl/Makefile
 /ports/branches/main/print/pkfonts118/Makefile
 /ports/branches/main/print/pkfonts240/Makefile
 /ports/branches/main/print/pkfonts360/Makefile
 /ports/branches/main/print/pkfonts400/Makefile
 /ports/branches/main/print/pkfonts600/Makefile
 /ports/branches/main/russian/gd/Makefile
 /ports/branches/main/russian/wordpress/Makefile
 /ports/branches/main/science/fvcom-mpi/Makefile
 /ports/branches/main/science/libsvm-python/Makefile
 /ports/branches/main/security/barnyard2-sguil/Makefile
 /ports/branches/main/security/courier-authlib-base/Makefile
 /ports/branches/main/security/fpc-gnutls/Makefile
 /ports/branches/main/security/fpc-openssl/Makefile
 /ports/branches/main/security/gpgme-cpp/Makefile
 /ports/branches/main/security/gpgme-qt5/Makefile
 /ports/branches/main/security/gstreamer1-plugins-dtls/Makefile
 /ports/branches/main/security/krb5/Makefile
 /ports/branches/main/security/openvpn-mbedtls/Makefile
 /ports/branches/main/security/ossec-hids-agent-config/Makefile
 /ports/branches/main/security/ossec-hids-agent/Makefile
 /ports/branches/main/security/ossec-hids-server-config/Makefile
 /ports/branches/main/security/ossec-hids-server/Makefile
 /ports/branches/main/security/php73-filter/Makefile
 /ports/branches/main/security/php73-hash/Makefile
 /ports/branches/main/security/php73-openssl/Makefile
 /ports/branches/main/security/php73-sodium/Makefile
 /ports/branches/main/security/php74-filter/Makefile
 /ports/branches/main/security/php74-openssl/Makefile
 /ports/branches/main/security/php74-sodium/Makefile
 /ports/branches/main/security/php80-filter/Makefile
 /ports/branches/main/security/php80-openssl/Makefile
 /ports/branches/main/security/php80-sodium/Makefile
 /ports/branches/main/security/php81-filter/Makefile
 /ports/branches/main/security/php81-openssl/Makefile
 /ports/branches/main/security/php81-sodium/Makefile
 /ports/branches/main/security/php82-filter/Makefile
 /ports/branches/main/security/php82-sodium/Makefile
 /ports/branches/main/security/pinentry-curses/Makefile
 /ports/branches/main/security/pinentry-efl/Makefile
 /ports/branches/main/security/pinentry-fltk/Makefile
 /ports/branches/main/security/pinentry-gnome/Makefile
 /ports/branches/main/security/pinentry-gnome3/Makefile
 /ports/branches/main/security/pinentry-gtk2/Makefile
 /ports/branches/main/security/pinentry-qt5/Makefile
 /ports/branches/main/security/pinentry-tty/Makefile
 /ports/branches/main/security/proftpd-mod_clamav/Makefile
 /ports/branches/main/security/putty-gtk2/Makefile
 /ports/branches/main/security/putty-nogtk/Makefile
 /ports/branches/main/security/py-gpgme/Makefile
 /ports/branches/main/security/py-pycryptodomex/Makefile
 /ports/branches/main/security/samhain-client/Makefile
 /ports/branches/main/security/samhain-server/Makefile
 /ports/branches/main/security/spass-qt5/Makefile
 /ports/branches/main/security/subversion-gnome-keyring/Makefile
 /ports/branches/main/shells/bash-static/Makefile
 /ports/branches/main/shells/bosh/Makefile
 /ports/branches/main/sysutils/android-file-transfer-qt5/Makefile
 /ports/branches/main/sysutils/ansible-sysrc/Makefile
 /ports/branches/main/sysutils/ansible27/Makefile
 /ports/branches/main/sysutils/ansible28/Makefile
 /ports/branches/main/sysutils/atf-fvp/Makefile
 /ports/branches/main/sysutils/atf-rk3328/Makefile
 /ports/branches/main/sysutils/atf-rk3399/Makefile
 /ports/branches/main/sysutils/atf-sun50i_a64/Makefile
 /ports/branches/main/sysutils/atf-sun50i_h6/Makefile
 /ports/branches/main/sysutils/bacula11-client-static/Makefile
 /ports/branches/main/sysutils/bacula11-client/Makefile
 /ports/branches/main/sysutils/bacula13-client/Makefile
 /ports/branches/main/sysutils/bacula9-client-static/Makefile
 /ports/branches/main/sysutils/bacula9-client/Makefile
 /ports/branches/main/sysutils/bareos-client/Makefile
 /ports/branches/main/sysutils/bareos-traymonitor/Makefile
 /ports/branches/main/sysutils/bareos17-client-static/Makefile
 /ports/branches/main/sysutils/bareos17-client/Makefile
 /ports/branches/main/sysutils/bareos18-client/Makefile
 /ports/branches/main/sysutils/bareos18-client/bareos-client/Makefile
 /ports/branches/main/sysutils/bareos18-traymonitor/Makefile
 /ports/branches/main/sysutils/bareos19-client/Makefile
 /ports/branches/main/sysutils/bareos19-traymonitor/Makefile
 /ports/branches/main/sysutils/bareos20-client/Makefile
 /ports/branches/main/sysutils/bareos20-traymonitor/Makefile
 /ports/branches/main/sysutils/cdrtools/Makefile
 /ports/branches/main/sysutils/cfengine-masterfiles/Makefile
 /ports/branches/main/sysutils/cfengine/Makefile
 /ports/branches/main/sysutils/conky-awesome/Makefile
 /ports/branches/main/sysutils/fpc-syslog/Makefile
 /ports/branches/main/sysutils/fpc-users/Makefile
 /ports/branches/main/sysutils/fpc-utmp/Makefile
 /ports/branches/main/sysutils/fpc-uuid/Makefile
 /ports/branches/main/sysutils/genisoimage/Makefile
 /ports/branches/main/sysutils/gstreamer1-plugins-cdio/Makefile
 /ports/branches/main/sysutils/mcollective-nettest-agent/Makefile
 /ports/branches/main/sysutils/mcollective-nettest-client/Makefile
 /ports/branches/main/sysutils/mcollective-nrpe-agent/Makefile
 /ports/branches/main/sysutils/mcollective-nrpe-client/Makefile
 /ports/branches/main/sysutils/mcollective-puppet-agent/Makefile
 /ports/branches/main/sysutils/mcollective-puppet-client/Makefile
 /ports/branches/main/sysutils/mcollective-service-agent/Makefile
 /ports/branches/main/sysutils/mcollective-service-client/Makefile
 /ports/branches/main/sysutils/moosefs2-cgi/Makefile
 /ports/branches/main/sysutils/moosefs2-cgiserv/Makefile
 /ports/branches/main/sysutils/moosefs2-chunkserver/Makefile
 /ports/branches/main/sysutils/moosefs2-cli/Makefile
 /ports/branches/main/sysutils/moosefs2-client/Makefile
 /ports/branches/main/sysutils/moosefs2-metalogger/Makefile
 /ports/branches/main/sysutils/moosefs2-netdump/Makefile
 /ports/branches/main/sysutils/moosefs3-cgi/Makefile
 /ports/branches/main/sysutils/moosefs3-cgiserv/Makefile
 /ports/branches/main/sysutils/moosefs3-chunkserver/Makefile
 /ports/branches/main/sysutils/moosefs3-cli/Makefile
 /ports/branches/main/sysutils/moosefs3-client/Makefile
 /ports/branches/main/sysutils/moosefs3-metalogger/Makefile
 /ports/branches/main/sysutils/moosefs3-netdump/Makefile
 /ports/branches/main/sysutils/mstflint-lite/Makefile
 /ports/branches/main/sysutils/php73-fileinfo/Makefile
 /ports/branches/main/sysutils/php73-posix/Makefile
 /ports/branches/main/sysutils/php74-fileinfo/Makefile
 /ports/branches/main/sysutils/php74-posix/Makefile
 /ports/branches/main/sysutils/php80-fileinfo/Makefile
 /ports/branches/main/sysutils/php80-posix/Makefile
 /ports/branches/main/sysutils/php81-fileinfo/Makefile
 /ports/branches/main/sysutils/php81-posix/Makefile
 /ports/branches/main/sysutils/php82-fileinfo/Makefile
 /ports/branches/main/sysutils/php82-posix/Makefile
 /ports/branches/main/sysutils/schilyutils/Makefile
 /ports/branches/main/sysutils/screenfetch-nox11/Makefile
 /ports/branches/main/sysutils/u-boot-a13-olinuxino/Makefile
 /ports/branches/main/sysutils/u-boot-a64-olinuxino/Makefile
 /ports/branches/main/sysutils/u-boot-bananapi/Makefile
 /ports/branches/main/sysutils/u-boot-bananapim2/Makefile
 /ports/branches/main/sysutils/u-boot-beaglebone/Makefile
 /ports/branches/main/sysutils/u-boot-chip/Makefile
 /ports/branches/main/sysutils/u-boot-clearfog/Makefile
 /ports/branches/main/sysutils/u-boot-cubieboard/Makefile
 /ports/branches/main/sysutils/u-boot-cubieboard2/Makefile
 /ports/branches/main/sysutils/u-boot-cubox-hummingboard/Makefile
 /ports/branches/main/sysutils/u-boot-duovero/Makefile
 /ports/branches/main/sysutils/u-boot-firefly-rk3399/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-a64/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-m1plus/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-neo-air/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-neo/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-neo2/Makefile
 /ports/branches/main/sysutils/u-boot-nanopi-r4s/Makefile
 /ports/branches/main/sysutils/u-boot-olimex-a20-som-evb/Makefile
 /ports/branches/main/sysutils/u-boot-olinuxino-lime/Makefile
 /ports/branches/main/sysutils/u-boot-olinuxino-lime2-emmc/Makefile
 /ports/branches/main/sysutils/u-boot-olinuxino-lime2/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-one/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-pc-plus/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-pc/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-pc2/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-plus-2e/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-r1/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-zero-plus/Makefile
 /ports/branches/main/sysutils/u-boot-orangepi-zero/Makefile
 /ports/branches/main/sysutils/u-boot-pandaboard/Makefile
 /ports/branches/main/sysutils/u-boot-pcduino3/Makefile
 /ports/branches/main/sysutils/u-boot-pine-h64/Makefile
 /ports/branches/main/sysutils/u-boot-pine64-lts/Makefile
 /ports/branches/main/sysutils/u-boot-pine64/Makefile
 /ports/branches/main/sysutils/u-boot-pinebook/Makefile
 /ports/branches/main/sysutils/u-boot-pinebookpro/Makefile
 /ports/branches/main/sysutils/u-boot-qemu-arm/Makefile
 /ports/branches/main/sysutils/u-boot-qemu-arm64/Makefile
 /ports/branches/main/sysutils/u-boot-qemu-riscv64/Makefile
 /ports/branches/main/sysutils/u-boot-riotboard/Makefile
 /ports/branches/main/sysutils/u-boot-rock-pi-4/Makefile
 /ports/branches/main/sysutils/u-boot-rock64/Makefile
 /ports/branches/main/sysutils/u-boot-rockpro64/Makefile
 /ports/branches/main/sysutils/u-boot-rpi-0-w/Makefile
 /ports/branches/main/sysutils/u-boot-rpi-arm64/Makefile
 /ports/branches/main/sysutils/u-boot-rpi/Makefile
 /ports/branches/main/sysutils/u-boot-rpi2/Makefile
 /ports/branches/main/sysutils/u-boot-rpi3-32/Makefile
 /ports/branches/main/sysutils/u-boot-rpi3/Makefile
 /ports/branches/main/sysutils/u-boot-rpi4/Makefile
 /ports/branches/main/sysutils/u-boot-sifive-fu540/Makefile
 /ports/branches/main/sysutils/u-boot-sifive-fu740/Makefile
 /ports/branches/main/sysutils/u-boot-sinovoip-bpi-m3/Makefile
 /ports/branches/main/sysutils/u-boot-sopine-spi/Makefile
 /ports/branches/main/sysutils/u-boot-sopine/Makefile
 /ports/branches/main/sysutils/u-boot-wandboard/Makefile
 /ports/branches/main/textproc/fcitx5-gtk-common/Makefile
 /ports/branches/main/textproc/fcitx5-qt-common/Makefile
 /ports/branches/main/textproc/fpc-aspell/Makefile
 /ports/branches/main/textproc/fpc-libxml2/Makefile
 /ports/branches/main/textproc/gstreamer1-plugins-zxing/Makefile
 /ports/branches/main/textproc/jdictionary-int-eng/Makefile
 /ports/branches/main/textproc/php73-ctype/Makefile
 /ports/branches/main/textproc/php73-dom/Makefile
 /ports/branches/main/textproc/php73-enchant/Makefile
 /ports/branches/main/textproc/php73-pspell/Makefile
 /ports/branches/main/textproc/php73-simplexml/Makefile
 /ports/branches/main/textproc/php73-wddx/Makefile
 /ports/branches/main/textproc/php73-xml/Makefile
 /ports/branches/main/textproc/php73-xmlreader/Makefile
 /ports/branches/main/textproc/php73-xmlwriter/Makefile
 /ports/branches/main/textproc/php73-xsl/Makefile
 /ports/branches/main/textproc/php74-ctype/Makefile
 /ports/branches/main/textproc/php74-dom/Makefile
 /ports/branches/main/textproc/php74-enchant/Makefile
 /ports/branches/main/textproc/php74-pspell/Makefile
 /ports/branches/main/textproc/php74-simplexml/Makefile
 /ports/branches/main/textproc/php74-xml/Makefile
 /ports/branches/main/textproc/php74-xmlreader/Makefile
 /ports/branches/main/textproc/php74-xmlwriter/Makefile
 /ports/branches/main/textproc/php74-xsl/Makefile
 /ports/branches/main/textproc/php80-ctype/Makefile
 /ports/branches/main/textproc/php80-dom/Makefile
 /ports/branches/main/textproc/php80-enchant/Makefile
 /ports/branches/main/textproc/php80-pspell/Makefile
 /ports/branches/main/textproc/php80-simplexml/Makefile
 /ports/branches/main/textproc/php80-xml/Makefile
 /ports/branches/main/textproc/php80-xmlreader/Makefile
 /ports/branches/main/textproc/php80-xmlwriter/Makefile
 /ports/branches/main/textproc/php80-xsl/Makefile
 /ports/branches/main/textproc/php81-ctype/Makefile
 /ports/branches/main/textproc/php81-dom/Makefile
 /ports/branches/main/textproc/php81-enchant/Makefile
 /ports/branches/main/textproc/php81-pspell/Makefile
 /ports/branches/main/textproc/php81-simplexml/Makefile
 /ports/branches/main/textproc/php81-xml/Makefile
 /ports/branches/main/textproc/php81-xmlreader/Makefile
 /ports/branches/main/textproc/php81-xmlwriter/Makefile
 /ports/branches/main/textproc/php81-xsl/Makefile
 /ports/branches/main/textproc/php82-ctype/Makefile
 /ports/branches/main/textproc/php82-dom/Makefile
 /ports/branches/main/textproc/php82-enchant/Makefile
 /ports/branches/main/textproc/php82-pspell/Makefile
 /ports/branches/main/textproc/php82-simplexml/Makefile
 /ports/branches/main/textproc/php82-xml/Makefile
 /ports/branches/main/textproc/php82-xmlreader/Makefile
 /ports/branches/main/textproc/php82-xmlwriter/Makefile
 /ports/branches/main/textproc/php82-xsl/Makefile
 /ports/branches/main/textproc/py-libxml2/Makefile
 /ports/branches/main/textproc/uim-gtk/Makefile
 /ports/branches/main/textproc/uim-gtk3/Makefile
 /ports/branches/main/textproc/uim-m17nlib/Makefile
 /ports/branches/main/textproc/uim-qt5/Makefile
 /ports/branches/main/textproc/zq/Makefile
 /ports/branches/main/ukrainian/gd/Makefile
 /ports/branches/main/ukrainian/webalizer/Makefile
 /ports/branches/main/www/baculum-api/Makefile
 /ports/branches/main/www/baculum-web/Makefile
 /ports/branches/main/www/fpc-fastcgi/Makefile
 /ports/branches/main/www/fpc-googleapi/Makefile
 /ports/branches/main/www/fpc-httpd22/Makefile
 /ports/branches/main/www/fpc-httpd24/Makefile
 /ports/branches/main/www/fpc-libmicrohttpd/Makefile
 /ports/branches/main/www/fpc-webidl/Makefile
 /ports/branches/main/www/geolizer/Makefile
 /ports/branches/main/www/gstreamer1-plugins-neon/Makefile
 /ports/branches/main/www/gstreamer1-plugins-srt/Makefile
 /ports/branches/main/www/lighttpd-mod_h264_streaming/Makefile
 /ports/branches/main/www/mod_dav_svn/Makefile
 /ports/branches/main/www/mod_php73/Makefile
 /ports/branches/main/www/mod_php74/Makefile
 /ports/branches/main/www/mod_php80/Makefile
 /ports/branches/main/www/mod_php81/Makefile
 /ports/branches/main/www/mod_php82/Makefile
 /ports/branches/main/www/nginx-full/Makefile
 /ports/branches/main/www/nginx-lite/Makefile
 /ports/branches/main/www/nginx-naxsi/Makefile
 /ports/branches/main/www/npm-node10/Makefile
 /ports/branches/main/www/npm-node12/Makefile
 /ports/branches/main/www/npm-node14/Makefile
 /ports/branches/main/www/npm-node16/Makefile
 /ports/branches/main/www/npm-node17/Makefile
 /ports/branches/main/www/npm-node18/Makefile
 /ports/branches/main/www/npm-node19/Makefile
 /ports/branches/main/www/php73-opcache/Makefile
 /ports/branches/main/www/php73-session/Makefile
 /ports/branches/main/www/php73-tidy/Makefile
 /ports/branches/main/www/php74-opcache/Makefile
 /ports/branches/main/www/php74-session/Makefile
 /ports/branches/main/www/php74-tidy/Makefile
 /ports/branches/main/www/php80-opcache/Makefile
 /ports/branches/main/www/php80-session/Makefile
 /ports/branches/main/www/php80-tidy/Makefile
 /ports/branches/main/www/php81-opcache/Makefile
 /ports/branches/main/www/php81-session/Makefile
 /ports/branches/main/www/php81-tidy/Makefile
 /ports/branches/main/www/php82-opcache/Makefile
 /ports/branches/main/www/php82-session/Makefile
 /ports/branches/main/www/php82-tidy/Makefile
 /ports/branches/main/www/sogo-activesync/Makefile
 /ports/branches/main/www/sogo2-activesync/Makefile
 /ports/branches/main/www/tidy-lib/Makefile
 /ports/branches/main/www/transmission-web/Makefile
 /ports/branches/main/www/unit-java/Makefile
 /ports/branches/main/www/unit-perl/Makefile
 /ports/branches/main/www/unit-php/Makefile
 /ports/branches/main/www/unit-python/Makefile
 /ports/branches/main/www/unit-ruby/Makefile
 /ports/branches/main/www/w3m-img/Makefile
 /ports/branches/main/www/yarn-node10/Makefile
 /ports/branches/main/www/yarn-node12/Makefile
 /ports/branches/main/www/yarn-node14/Makefile
 /ports/branches/main/www/yarn-node16/Makefile
 /ports/branches/main/www/yarn-node17/Makefile
 /ports/branches/main/www/yarn-node18/Makefile
 /ports/branches/main/www/yarn-node19/Makefile
 /ports/branches/main/x11-fonts/fpc-libfontconfig/Makefile
 /ports/branches/main/x11-fonts/gnu-unifont-ttf/Makefile
 /ports/branches/main/x11-servers/xephyr/Makefile
 /ports/branches/main/x11-servers/xorg-dmx/Makefile
 /ports/branches/main/x11-servers/xorg-nestserver/Makefile
 /ports/branches/main/x11-servers/xorg-vfbserver/Makefile
 /ports/branches/main/x11-servers/xwayland/Makefile
 /ports/branches/main/x11-themes/adwaita-qt6/Makefile
 /ports/branches/main/x11-themes/clearlooks-themes/Makefile
 /ports/branches/main/x11-themes/freebsd-8k-wallpapers-kde/Makefile
 /ports/branches/main/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile
 /ports/branches/main/x11-themes/gtk-aluminumalloy-smog-theme/Makefile
 /ports/branches/main/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile
 /ports/branches/main/x11-themes/metacity-aluminumalloy-cryogenic-theme/Makefile
 /ports/branches/main/x11-themes/metacity-aluminumalloy-smog-theme/Makefile
 /ports/branches/main/x11-themes/metacity-aluminumalloy-toxic-theme/Makefile
 /ports/branches/main/x11-themes/metacity-aluminumalloy-volcanic-theme/Makefile
 /ports/branches/main/x11-themes/metacity-aquaextremesunken-theme/Makefile
 /ports/branches/main/x11-themes/metacity-digital-cream-theme/Makefile
 /ports/branches/main/x11-themes/metacity-digital-harmony-theme/Makefile
 /ports/branches/main/x11-themes/metacity-longhorninspirat-theme/Makefile
 /ports/branches/main/x11-themes/metacity-milk-theme/Makefile
 /ports/branches/main/x11-themes/qtcurve-gtk2/Makefile
 /ports/branches/main/x11-themes/qtcurve-kf5/Makefile
 /ports/branches/main/x11-themes/qtcurve-qt5/Makefile
 /ports/branches/main/x11-themes/qtcurve-utils/Makefile
 /ports/branches/main/x11-toolkits/fpc-gtk2/Makefile
 /ports/branches/main/x11-toolkits/fpc-xforms/Makefile
 /ports/branches/main/x11-toolkits/gstreamer1-plugins-gtk/Makefile
 /ports/branches/main/x11-toolkits/gstreamer1-plugins-pango/Makefile
 /ports/branches/main/x11-toolkits/mygui-dummy/Makefile
 /ports/branches/main/x11-toolkits/mygui-ogre/Makefile
 /ports/branches/main/x11-toolkits/mygui-opengl/Makefile
 /ports/branches/main/x11-toolkits/tk-wrapper/Makefile
 /ports/branches/main/x11-toolkits/wxgtk28-common/Makefile
 /ports/branches/main/x11-toolkits/wxgtk28-contrib-common/Makefile
 /ports/branches/main/x11-toolkits/wxgtk28-contrib/Makefile
 /ports/branches/main/x11-wm/swayfx/Makefile
 /ports/branches/main/x11/cde/Makefile
 /ports/branches/main/x11/fpc-x11/Makefile
 /ports/branches/main/x11/gstreamer1-plugins-x/Makefile
 /ports/branches/main/x11/gstreamer1-plugins-ximagesrc/Makefile
 /ports/branches/main/x11/libfm-extra/Makefile
 /ports/branches/main/x11/linux-nvidia-libs-304/Makefile
 /ports/branches/main/x11/linux-nvidia-libs-340/Makefile
 /ports/branches/main/x11/linux-nvidia-libs-390/Makefile
 /ports/branches/main/x11/linux-nvidia-libs-470/Makefile
 /ports/branches/main/x11/nvidia-driver-304/Makefile
 /ports/branches/main/x11/nvidia-driver-340/Makefile
 /ports/branches/main/x11/nvidia-driver-390/Makefile
 /ports/branches/main/x11/nvidia-driver-470/Makefile
 /ports/branches/main/x11/nvidia-secondary-driver-390/Makefile
 /ports/branches/main/x11/nvidia-secondary-driver/Makefile
 /ports/branches/main/x11/rofi-wayland/Makefile
 /ports/branches/main/x11/swaylock-effects/Makefile
(1320 rows)
dlangille commented 1 year ago

The important thing, https://dev.freshports.org/devel/godot-tools/ is now at 4.0

dlangille commented 1 year ago

Production is not fixed yet. dev, test, and stage are.

dlangille commented 1 year ago

This is not fixed in prod:

[21:43 dev-ingress01 dan ~/modules] % md5 verifyport.pm
MD5 (verifyport.pm) = 9f80e8e74b9d7934d46e944c7215a6f2
[21:45 dev-ingress01 dan ~/modules] % pwd

[21:45 aws-1-ingress01 dan ~] % md5 /usr/local/lib/perl5/site_perl/FreshPorts/verifyport.pm
MD5 (/usr/local/lib/perl5/site_perl/FreshPorts/verifyport.pm) = de6fe623b5d06981c466700db54e53d9
dlangille commented 1 year ago

It's fixed in prod now:

[19:25 aws-1-ingress01 dan ~] % md5 /usr/local/lib/perl5/site_perl/FreshPorts/verifyport.pm
MD5 (/usr/local/lib/perl5/site_perl/FreshPorts/verifyport.pm) = 9f80e8e74b9d7934d46e944c7215a6f2