'fix ports being deleted on branches'
'adding debugging, invoke dispose()'
verifyport.pm: fix ports being deleted on branches re: https://github.com/FreshPorts/freshports/issues/528 If the port is deleted, but set active, set it deleted. After saving the port, make sure we adjust the {status} flag: If the status changes, set it back to what it was see https://news.freshports.org/2024/11/27/when-a-port-on-a-branch-is-deleted-freshports-tried-and-fails-to-refresh-it/
xml_munge_git.pm: Remove unused Element_Add() function Add some more debugging statements Correct impelemented to implemented
Rename upate_generate_plist() to update_generate_plist()
element.pm - remove code which grabbed the parent id It seems to be unnecessary Some column alignment. Remove unused $tmp variable
process_vuxml.pl: When the parsing has finished, say so. re: https://github.com/libexpat/libexpat/issues/928 Also, dispose() of the doc when completed.
Column alignment
'Slave ports need to have port vulnerabilities adjusted after a commit to the master port'
Mention we are adjusting the port vulnerabilities re: https://github.com/FreshPorts/freshports/issues/607
After processing the commit, be sure to adjust the vulnerability count on any slave ports. https://github.com/FreshPorts/freshports/issues/607 This is already done for each port in the commit, but slave ports were previously missed.
Move some use statements to the top of the file
column alignments
'fix code to deal with new categories'
'missing-port-categories.sh - make it OFFLINE aware, change get-list-of-current-categories.sh so it no longer observes OFFLINE.'
Let's change how we approach new commits Most of this refers to _CompileListOfPorts() At the start of commit processing, make sure we have the ports tree checked out to the commit in question. That allows us to get a list of categories which are current as of that commit. For example, /ports/head/ftp/vsftpd/Makefile When we are processing the file names, we check to see if ftp is a category. We look at the list we got from the repo. If we find it here, we know it is a category. If it's not, we know it's not a port and we can ignore it. Then we check the database; if it's not found, we know it's a new category and we must add it to the database.
With recent changes to config.pm.sample: * Stop using $FreshPorts::Config::OFFLINE * start using $FreshPorts::Config::Offline instead
Comment out some debugging statements, which take up a log of space in busy commits
Remove $FreshPorts::Config::OFFLINE - which had an incorrect path Add $FreshPorts::Config::Offline - which has the correct path
For new categories - they go to /ports/head/ That used to be /ports, before we added support for branches
Do not run if OFFLINE
saving incompletely tested stuff, as a checkpoint for new categories
saving incompletely tested stuff, as a checkpoint for new categories
exits, not exists
'new OFFLINE code, fix new categories stuff, UPDATING will now work with or without a space '
'fixes for new categories when they arrive'
Fix category creation: Fix the order of parameters on JailCategoryDescrptionScript No need to fetch the category Makefile - it's already there thanks to git re: https://news.freshports.org/2024/11/07/fixing-the-category-creation-code/
Remove leading blank line
refer to $0, not the incorrect test-master-port.sh left over from copy/paste
refer to $0, not the incorrect test-master-port.sh left over from copy/paste
kxml_munge_git.pm: specify the correct branch for Sanity Test Failures We were specifying whahtever branch we found in the xml file. Instead, now we show the converted branch name ('main' from FreeBSD, is 'head' in FreshPorts-land. also, only show the branch on the URL within the message if it is not head.
Start using: $FreshPorts::Config::OFFLINE This replaces: $FreshPorts::Config::ScriptDir/OFFLINE
Create and start using: $FreshPorts::Config::OFFLINE This replaces: $FreshPorts::Config::ScriptDir/OFFLINE
'properly report merges and provide link; supply branch to sanity test errors'
'RIP bacula9, long live bacula15 - this time for the shell script'
Change bacula9 to bacula15
'RIP bacula9, long live bacula15'
bacula9-client has been removed from the tree use bacula15-client instead
On sanity test messages, supply the branch re:https://github.com/FreshPorts/freshports/issues/564
Update message used when empty commits are noticed.
'Add host URL to newusers.pl'
Include host url
'dump-package_imports.sh: allow for sorting by date and name (default)'
dump-package_imports.sh: allow for sorting by date and name (default) re: https://github.com/FreshPorts/freshports/issues/593#issuecomment-2308384101
'dump-package_imports.sh: add'
dump-package_imports.sh: order by repo_date - the processed date is relevant - But repo_date will be the same on all FreshPorts nodes
dump-package_imports.sh: for nulls, sort by name, package_set
dump-package_imports.sh: add - re https://github.com/FreshPorts/freshports/issues/593
add notes about the environment variables
'Adjust for new package importing strategy'
Adjust for new package importing strategy Add: * FreshPorts::Config::LogDir * FreshPorts::Config::LogJobsWaiting Remove: * $FreshPorts::Config::NewRepoImported
'Adjust for new package importing strategy'
Adjust for new package importing strategy see: https://github.com/FreshPorts/packages-import/releases/tag/2.7.0 job-waiting.pl * remove references to FreshPorts::Config::NewRepoImported * start logging to FreshPorts::Config::LogJobsWaiting * no need to launch after report-notification-packages.pl after UpdatePackagesFromRawPackages.py * that is done by import-via-copy-packagesite-all-raw-fields.py * wow, in hindsight, I should have created a wrapper script which invokes import-via-copy-packagesite-all-raw-fields.py, and UpdatePackagesFromRawPackages.py, and then report-notification-packages.pl * Perhaps later. report-notification-packages.pl * If there is nothing to report upon, don't error out * no need to remove NewRepoImported any more
'unlink the NewRepoImported signal, and Beacuse -> Because '
job-waiting.pl - fix typo: Beacuse to Because
report-notification-packages.pl: avoid looping in job-waiting.pl Remove the flag which causes us to be launched.
database.pm: Add sslcertmode=disable Fix this issue: could not open certificate file “/root/.postgresql/postgresql.crt”: Permission denied I’m positive the problem is the connection is asking for a client certificate. I checked my pg_hba.conf configuration and found no lines mentioning cert. See also https://github.com/FreshPorts/packages-import/commit/10285544ad72311a82ed36cf9153a41db4722439
port.pm: fix some problem with _GetFileContents() Some time ago, I hit a problem. I worked on it and did not document the issue. So here I am, checking in code which seems to work. The problem with input files is they don't always encode well. I had comments like this in the code: + print "This is bullshit\n"; +# open my $in, '<:encoding(ISO-8859-1)', $file; # works +# open my $in, '<:encoding(ascii)', $file; # fails ascii "\xC3" does not map to Unicode + open my $in, '<:encoding(iso-8859-1)', $file; +# open my $in, '<:encoding(UTF-8)', $file; # fails UTF-8 "\xC3" does not map to Unicode The current code seems to work, but without knowing the original problem, I can't verify it fixes the issue. Commit away.
'Standardize all report email subjects'
Standardize all report emails. Subject will be: FreshPorts Notification: <topic> Hopefully this will help people to filter easily.
'loop detections added to job-waiting.pl; missing-port-categories.sh will log better; add in report-notification-packages.pl'
Refer to add, not insert And to package changes, not new packages.
Attempt to standardize on one name for emails: FreshPorts notification Start keeping stats Explain what update, delete, insert will mean.
Attempt to standardize on one name for emails: FreshPorts notification
Attempt to standardize on one name for emails: FreshPorts notification
Add loop avoidance After invoking UpdatePackagesFromRawPackages.py, always run report-notification-packages.pl
This now properly handles package_set
Add the report for package notifications. re: https://github.com/FreshPorts/freshports/issues/542 It sends, duplicates, but it sends.
Perhaps a loop
When reporting the number of found rows, make it easier for filtering
Change the rm to rm -f when removing the flag This script is invoked by a periodic script. The FLAG won't be present then.
remove script for taking website offline - it is outdated
use nginx and fp_listen - modernize
'refresh-abi logging improvements'
Created in error. All wrong.
'refresh-abi logging improvements'
refresh-abi.sh: alter logging details Add process id
'Don't refresh deleted ports; remove cache_needs_refresh'
'remove some constants, improve abi refresh'
Handle deleted ports better The code was setting $por->{deleted} but using $port->IsDeleted() which looks at {status}, not {deleted} I think {deleted} was used for internal usage only, but fails to do the right thing with actually deleted ports. re: https://github.com/FreshPorts/freshports/issues/528
No need to touch FreshPorts::Config::RefreshCachFileFlag now re: https://github.com/FreshPorts/freshports/issues/58
This is not used any more. re: https://github.com/FreshPorts/freshports/issues/58
Let's not output anything by default. Let there be less.
Let's always log the abi stuff. That way, we can see that it ran.
Renove RefreshCachFileFlag - no longer used re: https://github.com/FreshPorts/freshports/issues/58 While here, remove some items from show-config.pl which are no longer present. * DynamicDir * FlagDir * RefreshCachFileFlag * WWWENPortsCategoriesFlag
Renove RefreshCachFileFlag - no longer used re: https://github.com/FreshPorts/freshports/issues/58
improve logging for gitCheckoutResults
column aligment - REPEAT
column aligment
Add more comments
add comment details
remove blank line
'config.sh - add ABILOG; refresh-abi.sh - better logging'
Improve logging and report to abi.log
add ABILOG
'add abi maintenance code'
Remove this tag - going to replace it
'add abi maintenance code'
Update PostgreSQL items * For use by new abi scripts: - Use export on PGSSLMODE - Add PGSSLROOTCERT - add DBUSER_ABI
'add abi maintenance code'
add commit, and logging
Start connecting to the database. Still have to process errors.
add trailing ; to sql
Adjust to use STDIN add-new-abi.sh and delete-depcreated-abi.sh now take their input from STDIN (via cat) instead of seprately invoking current_list_of_valid_abi.sh This save an extra fetch.
Maintain the list of ABI ABI get added, deleted. This set of scripts will maintain that list in our abi table.
Adjust git pull delays It used to get bigger each time. Now it's the same each time
remove some blank lines
'-m'
Igmore git-last-processed-tags.sh
Add missing logfatal()
Better comments
Use grep -c ls *.xml will result in ./system_status.sh: /bin/ls: Argument list too long ... when there are large numbers of commits.
Use ne not != for comparison
Remove files/usr/src This directory was used to decieve nvidia drivers into thinking we had /usr/src installed. re: https://github.com/FreshPorts/freshports/issues/152
Update to reflect we are using actual jails now, not just chroot.
'Use full path to git'
Use the full path for git Things changed on some servers with FreeBSD 14.0
Use the full path to git
remove this tag, recreated/overwitten in error
'removing our flag when we start processing. tell port->save() we are working on HEAD'
'removing our flag when we start processing. tell port->save() we are working on HEAD'
'add comments mentioning that Eat() works only on HEAD'
mention that process_default_versions.pl operates only upon head
mention that Eat() works on head, and is not checking branches for special processing
On port->save(), specify HEAD, because that is only what this should be invoked for
Remove our signal
refer to $0, not process_moved.sh
'update config.pm.sample - adding stuff removed in error, and sort'
add $FreshPorts::Config::CheckPortsCategoriesFlag back in, and sort the flags
'update config.pm.sample'
Add utf8, DefaultVersionsFlag, and remove CheckPortsCategoriesFlag & WWWENPortsCategoriesFlag
'cater for https://github.com/FreshPorts/freshports/issues/509'
job-waiting.pl * remove FreshPorts::Config::WWWENPortsCategoriesFlag => 'process_www_en_ports_categories.sh * add FreshPorts::Config::DefaultVersionsFlag => 'process_default_versions.pl remove: * process_CVSROOT_approvers.sh * process_www_en_ports_categories.sh add process_default_versions.pl
remove trailing space
'process Mk/bsd.default-versions.mk results'
constants.pm * remove Notify_cvsroot_approvers * add DEFAULT_VERSION * add FreshPorts::Constants::PortsAffectedByDefaultVersions special_processing_files.pm * remove processing for CVSROOT_Approvers * remove processing for FreshPorts::Constants::Categories port_refresh.pm - adding for refreshing a port * used for https://github.com/FreshPorts/freshports/issues/509
'Cater for broken 2023Q4 branch'
Cater for a bug in 2023Q4 https://lists.freebsd.org/archives/freebsd-ports/2023-October/004812.html www/tomcat-devel was MFH and requires Java 21+, but 21 is not available in Q4. Cater for that.
'add categories_rebuild_search_html.sh'
Add a blank row in the drop down list, for a default search value Fixes https://github.com/FreshPorts/freshports/issues/491
'add categories_rebuild_search_html.sh'
Refresh the list of categories.
'Include changes adding port_id to RemovePortFromCache() calls'
I should have done this for scripts, not modules.
'Include changes adding port_id to RemovePortFromCache() calls'
Adjust parameters to RemovePortFromCache() which now takes a port_id see: https://github.com/FreshPorts/freshports/issues/468
'do better cache invalidation for MOVED, UPDATING, etc'
'improve cache invalidation for MOVED, UPDATING, etc'
Caching changes 12345678901234567890123456789012345678901234567890123456789012345678901234567890 Items like MOVED & UPDATING where never cleared from cache. caching.pm was designed when the web server and the ingress server where always assumed to be on the same host. That is no longer the cache. The code has been rewritten to use the same cache clearing mechanism as in other parts of the system. A new table has been created: cache_clearing_files It functions much like the existing cache_clearing_ports table The changes here are coordinated with changes to the modules port and to the fp-listen (part of the webserver) code. re: https://github.com/FreshPorts/freshports/issues/468
Cater somewhat for invalid depends For some reason, 5699269 gave this results for RUN_DEPENDS: [18:42 empty dan /usr/ports/www/tomcat-devel] % make -V RUN_DEPENDS jsvc:devel/apache-commons-daemon /bin/java: see https://lists.freebsd.org/archives/freebsd-ports/2023-October/004775.html Which then gave invalid RUN_DEPENDS and an empty string. The code now copes.
spell with
Use this shebang: #!/usr/local/bin/perl -w For port.pm, use better stuff for UTF-8 re: https://github.com/FreshPorts/freshports/issues/455
Use this shebang: #!/usr/local/bin/perl -w
'join the query tables when looking for slave ports'
Actually join the tables in this quewry
'for UPDATING, use case insensitive for AFFECTS; trim rowcount on missing-port-categories.sh'
'do not pass empty strings to _GetRealPath()'
Don't pass empty strings to _GetRealPath()
Use case insensitive matches for Affects and Author This allows for: 20230213: Affects: users of sysutils/nut* AUTHOR: cy@FreeBSD.org Whereas most people do upper case: 20230213: AFFECTS: users of security/logcheck AUTHOR: yasu@FreeBSD.org
remove spaces from ROWCOUNT
'-m'
'Convert XML main to head; remove FetchAllFiles(), svnUpFile(); delete xml_munge_svn.pm'
Make sure we use head not branches/main Add FreshPorts::Constants::MAIN as a constant and when checking to see what branch we are on, convert main to head, because the XML gives us main, but we are using head in the database. fixes #435
As of 2022-12-10, ports_active is head only Remove the reference to /ports/head/%
Remove some old subversion specific code. FetchAllFiles() svnUpFile() xml_munge_svn.pm Thank you.
Retire vuxml_ident.pl : used for subversion commits.
Use freshports, not FreshPorts, in URLs. see: https://github.com/FreshPorts/freshports/issues/412
'Only update if test_depends has changed. re https://github.com/FreshPorts/freshports/issues/411'
Only update if test_depends differs
'add TEST_DEPENDS'
'add TEST_DEPENDS'
Add TEST_DEPENDS re: https://github.com/FreshPorts/freshports/issues/411
Extract TEST_DEPENDS re https://github.com/FreshPorts/freshports/issues/411
'update refresh-all-active-ports.pl removing head-specific stuff because ports_active now does that for us'
'refresh-ports.sh & process_updating.sh now log to DIRLOG, process_updating.pl looks for AFFECTS and avoids duplicates in cache_clearing_ports, add show-config.sh'
Add binmode STDOUT, ":encoding(UTF-8)" to cater for wide characters re: https://news.freshports.org/2020/05/30/tracking-down-wide-character-in-print-at-usr-local-lib-perl5-site_perl-freshports-vuxml_parsing-pm-line-232/ Remove EP.pathname like '/ports/head/%' clause from SELECT because ports_active is now only head. re: https://github.com/FreshPorts/freshports/issues/406
Be clearer about how this directory is used.
'populate the ports.makefile field re: https://github.com/FreshPorts/freshports/issues/406'
Populate ports.makefile field re: https://github.com/FreshPorts/freshports/issues/406
'fix processing of vuxml re: https://github.com/FreshPorts/freshports/issues/360'
Fix vuxml processing. The files have moved from security/vuxml/vuln-YYYY.xml to security/vuxml/vuln/YYYY.xml Fix the regex for checking for such commits. Add more logging. More detail in https://github.com/FreshPorts/freshports/issues/360
Remove references to running this from a cronjob. It is launched from job-waiting.pl
Remove code added for debugging
Mention this won't work on ingress nodes.
Add
Fix UPDATING With 20220623 and 20220620, 20220620 appears in column one. That caused failures because of a faulty regex. https://regex101.com to the rescue for this one It was broken anyway, because the directory was wrong. For cache clearing, we need to use the cache_clearing_ports table The caching module is good only on webservers, not on ingress nodes, which is where this script runs.
Log the output of process_updating.pl to process_updating.log
Althought this script is no longer relevant/used, let's use the supplied configuration value for LOGDIR
'remove dir-create.sh; correct ports_tree_file_count.pl'
Correct the ports tree file count Reported by Laurent Chardon
This script is deprecated.
'restrict refresh-all-active-ports.pl to head only'
Remove tag created in error
'e-and-options_name.pl for jexec. add set-pkgmessage.pl never saved before'
Restrict this port to head
'update refresh-all-active-ports.pl for modern times. update set-pkgmessage-and-options_name.pl for jexec. add set-pkgmessage.pl never saved before'
'add code for make -V WWW'
'add code for make -V WWW'
Add WWW
Update to accommodate new WWW entry in Makefiles see https://cgit.freebsd.org/ports/commit/?id=ddd0e820c8eb73acef94c72434c382982d0fa329 Add SET CLIENT_ENCODING TO 'ISO-8859-1 to accommodate DBD::Pg::st execute failed: ERROR: invalid byte sequence for encoding "UTF8": 0xe4 0x20 0x3c at ../port.pm line 406. This still won't work for ports which use the pkg-descr for another port e.g. https://cgit.freebsd.org/ports/tree/multimedia/linux-c7-libtheora/Makefile?id=63f36d326290febc7af8820d7bde9c78cda71c80#n17 I have emailed se@FreeBSD.org about this edge case.
Save changes from a year ago when this script was converted to use jexec
Save changes from a year ago when this script was converted to use jexec
Adjust SQL to work only on head. Adjust Port->new() call to specific 'git' repo
'remove maildrop/mailfilter - no longer used now we're on git'
'try catching sql print errors'
Start using Try::Tiny I was seeing errors on printing the SQL. Let's see if that traps that. Testing was not able to reproduce it.
Better logging message
Add more logging
Drop the procmail, actually maildrop filter Since FreeBSD moved to git, this is no longer required.
Add a better log message
'Avoid periods at the end of URLs and email addresses'
'Correct the link to commits fixes https://github.com/FreshPorts/freshports/issues/335 reported by Matthew Seaman via private email '
Avoid periods at the end of URLs and email addresses
Correct the link to commits fixes https://github.com/FreshPorts/freshports/issues/335 reported by Matthew Seaman via private email
column alignment
'add newlines to refresh-ports.pl'
go for 2500 row sets
add newlines to print statements
Be sure to prepare the repo with the latest data before processing
'use correct path for pkg-message'
'add launch-refreshes.sh & long options for refresh-ports.pl'
Correct the path to pkgmessagepath - this is not absolute, but relative
A script for launching multiple instances of refresh-ports.pl which each run in parallel
Add in long options: dryrun y/n debug y/n limit How many rows to process offset Where to start int the result set Stop using syslog, because output is now logged to a file
log to a file
We shall keep distfiles around - no sense removing them if we are running multiple tests
'add script name to syslog call in refresh-ports.pl'
add script name to syslog call
'add in $FreshPorts::Config::PortsToRefresh'
2.1.15? Should be 2.0.15
'add $FreshPorts::Config::PortsToRefresh, refresh-ports.sh, refresh-ports.pl'
'add in $FreshPorts::Config::PortsToRefresh'
we shall assume git processing when refreshing
add $FreshPorts::Config::PortsToRefresh signal
Add the ability to process the ports_to_refresh table.
Create PORTSTOREFRESHFLAG flag While here, derive BASEDIR_PACKAGER from BASEDIR
fix comment typo
'move from ports-jail to jail'
'move from ports-jail to jail'
Remove tag created in error
'move from ports-jail to jail'
remove tag created in error
'move from ports-jail to jail'
Remove variables no longer present.
fix typo in /usr/ports comment
use /usr/ports; /var/db/repos is now gone
Stop using ports-jails, start using a proper jail Use /usr/ports within that jail
Move from chroot to jexec. The ports-tree at ~freshports/ports-jail is no longer used. Instead, we use one in a true proper jail.
this is deprecated
For fortnightly, do 18 days, because it's not a perfect fortnight
We are now using a FreeBSD jail for port data extraction
Move to a /usr/ports location for the jail
Move the jail to /usr/ports, not /var/db/repos/ports
Move from chroot to jexec With make-pkg-message-in.sh, move back to apply-slist : it's great
Better pkg-message handling, but not great.
Replace JailApplySList with JailPkgMessage, for better pkg-message handling
Better pkg-message handling, but still not great.
'Fix the way we detect a commit against security/vuxml'
Fix the way we detect a commit against security/vuxml Look for any file like vuln-YYYY
'check ports_categories when not processing commits'
'check ports_categories when not processing commits'
Update to check ports_categories when not processing commits. Add this to /usr/local/etc/freshports/config.sh: CHECKPORTSCATEGORIESFILE="${BASEDIR}/signals/check_port_categories"
Update to check ports_categories when not processing commits. Add this this to /usr/local/etc/freshports/config.pm: $FreshPorts::Config::CheckPortsCategoriesFlag = $FreshPorts::Config::BaseDir . '/signals/check_port_categories';
Add in some ignores with propset
Script for testing categories obtained from the repo
Comment out the debugging code
First attempt at keeping track of what reports have not been run
column alignments
column alignments
'fix queue-status.pl, now checks for .errors files'
'Avoid variables without values in verifyport.pm Add a proper Undelete() for ports in port.pm Fix paths for branch commits in xml_munge_git.pm '
Properly reresurrect a port so that our local copy stays up to date. re: https://news.freshports.org/2021/07/04/when-a-deleted-port-is-resurrected/
Report upon .errors files Don't report upon ingress-svn any more
Fix path manipulation with on a branch
reduce the number of error messages we get in the the logs by ensuring a default value exists
'We don't use Jail/scripts/make-categories.sh in the port-jail'
make-apply-slist.sh is not required in the port jail. This functionality is carried out by get-list-of-current-categories.sh
Include make-categories.sh chown root:wheel too
Better shorter way to get the list of categories
Add make-apply-slist.sh
'Use Email::Stuffer'
Fix email sending. https://cgit.freebsd.org/ports/commit/?id=3505159e72da2d8313ce2a8ddc527de700b5bc37 contains some unicode characters, Let's use Simple::Email for that.
'add error handling for categories.pm'
use spaces, not tabs to column align assignments
Detect and raise a fatal error if the script fails Print the categories
No real changes. Amend some debugging output to help in the future. sort the use statements
'add get-list-of-current-categories.sh back in'
Remove get-list-of-current-categories.pl, not used. Add get-list-of-current-categories.sh back in, removed via 5713 I really should have waited. Kept this only on dev for a few days. Then test, staging, and prod would not have been affected.
'-m'
Remove this, now handled by get-list-of-current-categories.pl
Commit a work in progress, only to be deleted on my next commit
the new HTML from Jethro
Remove 'svn commit checking status' since we don't do subversion commits any more
adjust the comment headers
Document that FreshPorts::Config::FreshPortsURL must have a trailing /
'use FreshPorts:: again'
Use FreshPorts again...
'use FreshPorts::'
Use FreshPorts::
Seems we don't need this after all
'fix Makefile.PL'
Add missing '
'Create FreshPortsVerify'
Remove erronously placed tag
'Create FreshPortsVerify'
Try FreshPortVerify
Move
'Create 2irTry FreshPorts::Verify'
Move from FreshPorts::Scripts -> FreshPorts::Modules
Rename
'Create 1irAdd Makefile.pl'
Add
'Create first tag'
'bringing in better category detection'
'bringing in better category detection'
Stop using IgnoredItems and use a list of Categories pulled from the repo Add categories.pm used thusly: use FreshPorts::categories use List::MoreUtils 'any'; FreshPorts::categories::FetchAll(); # look for special files outside a port, such as LEGAL, GIDs, UIDs, .hooks if ( ! any {/$category_name/} @FreshPorts::Categories::categories ) { ... }
Be cautious when printing svn_revision - I think this arose when writing Verify/set-pkgmessage-and-options_name.pl
With IgnoredItems being removed, this script is no longer required.
Get the list of categories from the repo
FreshPorts::Config::scriptpath and FreshPorts::Config::ScriptDir have the same value. use only the latter.
FreshPorts::Config::scriptpath and FreshPorts::Config::ScriptDir have the same value. use only the latter.
Fix the debug output so it makes sense when reading it.
Also, update options_name
'add get-list-of-current-categories.sh; fix vuln_latest.pl for new HTML usage'
Bring in the changes from https://github.com/FreshPorts/freshports/pull/261
Commit my changes to vuln_latest.pl before incorporating changes from https://github.com/FreshPorts/freshports/pull/261
'Previous release was mucked up. updated config.sh.sample'
'if no pkg-message in the repo, try apply-slist - corrected'
adjust from svn to git
space changes only
Add the make-apply-slist.sh code
add make-apply-slist.sh
'if no pkg-message in the repo, try apply-slist'
'Previous release was the wrong tarball name - updated config.sh.sample'
'Updated config.sh.sample'
A new iteration of the find
Not every directory in the root directory of the repo is a category. This script pulls back a list of those categories. This need arose with this commit: https://cgit.freebsd.org/ports/commit/?id=bbc2474ef7a65eb8561c8ecf7af80c2bfed1f248 Which created the .git directory.
re https://github.com/FreshPorts/freshports/issues/245 Not all ports with a pkg-message have a pkg-message file. Some have files/pkg-message.in, for example. This script uses apply-slist to build that file.
'use main, not master, for head'
'count *.xml not *.txt'
stop counting .txt & start counting .xml
Now that the FreeBSD git repo is out, it seems they changed the name of the head branch from master to main. The main change there is: -my %BranchConversions = ( 'master' => 'head' ); +my %BranchConversions = ( 'main' => 'head' ); Adjust some constants to allow commits to process. $FreshPorts::Config::RepoDir . '/PORTS-head'; was renamed to $FreshPorts::Config::RepoDir . '/' . $FreshPorts::Config::Repo_PORTS; This meant that $FreshPorts::Config::Repo_PORTS had to be moved higher up withint config.pm Adjust the constants for the repo directories. We have abandoned github and moved to git.freebsd.org. e.g. freebsd-doc becomes doc
'add DBUSER_REPORTING to config.sh.sample'
add DBUSER_REPORTING
'add options_name'
'Add OPTIONS_NAME to scripts. fix ports_tree_file_count.pl to work with new configuration items'
'freebsd-cvs.sh: say if config.sh is not found queue-status.pl: stop using the database, sort the queue keys so Nagios output is consistent, look only for files > 5 minutes old. config.sh.sample: mention PORTSDIRBASE is best without a trailing slash Add the monitoring directory, but I am not sure it is used yet. process_vuxml.pl: improve spacing'
FreshPorts::Constants::Repo_Ports is gone. Use FreshPorts::Constants::Repo_Dir_Name_Ports instead
cate for OPTIONS_NAME
Start saving options_name
'adding committer_name, committer_email, author_name, author_email'
Add new committer and author fields: * committer_name * committer_email * author_name * author_email
'bring in the vuxml code from trunk; take author and committer in.'
Add p5-Email-Address-XS>0:mail/p5-Email-Address-XS as new dependecy because we need to split the user off the address. We now take in Author and Committer. Author is not yet written to the database.
Bring in the vuxml code from trunk
'bring in the vuxml code from trunk'
Pull in the vuxml code from the main branch, because we need the new vuxml code here too. While here, do some betting debugging.
Remove use of database Sort the keys before displaying them so every host has the same order of output.
'In /var/db/ingress/message-queues/incoming, we look for *.xml'
In /var/db/ingress/message-queues/incoming, we look for *.xml
'better queue monitoring'
Remove use of database use -mindepth 1 to avoid counting the directory itself
'add virtualhost-common-ssl.conf.sample'
'K IW svn-commit.tmp (Modified) Row 3 Col 1 Stop using FreshPorts::Utilities::CommitCountPeriod because we are counting only file more than 5 minutes old.'
queue-status.pl no longer uses FreshPorts::Utilities::CommitCountPeriod
Stop using FreshPorts::Utilities::CommitCountPeriod because we are counting only file more than 5 minutes old.
'conver all the queues'
adjust report_non_zero to cover all incoming and spooling directories. same for CountRecent
'add more queue monitoring'
trailing / issues, add in src-stable-12
Add ingress_svn/message-queues/incoming & ingress_svn/message-queues/spooling to the queue checking
Check for and error out if config.sh is not found
PORTSDIRBASE is best without a trailing /
'fix system_status.sh'
Convert for use by git processing.
'email files are *.txt not, not *.txt.raw'
Our files are now *.txt not *.txt.raw There was no need to rename them
'Show reasons for update and number of updates'
Show reasons for update and number of updates
'allow IO::String on incoming new()'
'Adjust process_vuxml.pl to work on file open'
Add three new paramaters: * dryrun - do not update the database * showchecksums - show the checksums * printnodes - print the node we are processing Change from IO::File to IO::String for the $nodeString = $node->toString(); XML. This means the fh->open($nodeString) succeeds.
Change to allow IO::String on incoming new()
'For new security/vuxml/vuln.xml layout'
'For new security/vuxml/vuln.xml layout - perhaps 1.42 was a duplicate tag - oops'
'For new security/vuxml/vuln.xml layout'
Swap from vuxml_parsing_via_dom to vuxml_parsing
Adjust to XML processing, not XML creation. XML will be created by another user.
If fetching (svn up) fails, log a fatal error. The rest is just whitespace changes
Change to fixed length wait times. We are going to very high values for Fetch_Retry_Limit because svn is lagged on replication. It is easier to wait than to error out and fix by hand.
Remove empty error files Add more debugging output for Branch and revision
Move to using XML::DOM::XPath now that security/vuxml/vuln.xml is split into several files. Proof of concept courtesy of bapt@FreeBSD.org
When invoking parse, specify ProtocolEncoding => 'ISO-8859-1' That avoid errors like this: not well-formed (invalid token) at line 28, column 23, byte 1305 at /usr/local/lib/perl5/site_perl/mach/5.32/XML/Parser.pm line 187. on this: Reported by Andr?? Bargull on 2020-11-2</li> see vid="01ffd06a-36ed-11eb-b655-3065ec8fd3ec"
Saving before deleting. Work will be done by vuxml_parsing.pm
Let's save this before deleting it. Test worked, now moving code to process_vuxml.pl
'update to 2.0.1'
remove FreshPorts::Constants::SVN_Repo_Dir_Name_Ports which is not used
add a comment showing an example make-port.sh call
Fix up CanWeProcessThisBranch() was was passing an unnecesary parameter because it should have been invoking GetPathToRepoForBranchSVN() not GetPathToRepoForBranch()
add in stuff for the quarterly ports, and change tabs to spaces
'first cut of git modules'
'first cut of the scripts for git'
branches.pm * add GetPathToRepoForBranchSVN * for a given branch name, return the full path. Including the CHROOT path. constants.pm * add FreshPorts::Constants::SVN_Repo_Dir_Name_Ports = ports-HEAD * is that used? port.pm * make this script work with both git and svn * the repos are in different locations * remove process_svn_mail.pm * Amend XML to include the source (subversion) so that XML processing knows which code to invoke * When invoking XML::Writer, don't specify OUTPUT, becuase that borks the code verifyport.pm * start passing around RepoType so everyone knows if this is git or svn xml_munge.pm * remove a bunch of commented out code now that most of this processing is in one of xml_munge_git.pm & xml_munge_svn.pm * we open the XML, check git or svn, and invoke the respective code to complete the processing xml_munge_git.pm xml_munge_svn.pm * adjust the code so that non-ports don't start compiling lists of ports to save * in xml_munge_git.pm, remove the code which checked the length of message_id to determin git or svn * that detemination is carried out by xml_munge.pm and it checks the XML to decide that
adjust spaces to tabs
load_xml_into_db.pl * modified to check the source repo for this XML * then invoke one of FreshPorts::xml_munge_git or FreshPorts::xml_munge_svn load_xml_into_db_git.pl load_xml_into_db_svn.pl Modified to invoke the approviaate XML munging class: * my $Munger = FreshPorts::XML_Munge_git->new($dbh); * my $Munger = FreshPorts::XML_Munge_svn->new($dbh);
Remove files no longer used.
I started to modify these scripts to work with git, then realized they are no longer used. email and commit processing is handled by services: [dan@devgit-ingress01:/usr/local/libexec/freshports-service] $ ls -l total 26 -r-xr-xr-x 1 root wheel 7267 Dec 6 22:17 freshports.sh -r-xr-xr-x 1 root wheel 1387 Dec 6 20:16 ingress.sh -r-xr-xr-x 1 root wheel 4109 Dec 6 22:13 ingress_svn.sh Look there for invoking the xml processing scripts
Convert from `stuff` to $(stuff)
We don't use this any more
slightly different comments
Convert from `stuff` to $(stuff)
Convert from `stuff` to $(stuff)
Convert from `stuff` to $(stuff)
Revert last commit. It seems we need some of that code afterall.
Trim down the code by removing unnecessary items, such as the database connection.
Now that I've realized the website should process both svn and git commits, I wanted a way to inspect an XML file and determine which type of repo it came from. This is vital because we have two different sets of code to deal with each origin: [dan@devgit-ingress01:~/scripts] $ ls -l load_xml_into_db* -rwxr-xr-x 1 dan dan 1251 Dec 5 03:00 load_xml_into_db.pl -rwxr-xr-x 1 dan dan 1404 Jul 3 20:40 load_xml_into_db_git.pl -rwxr-xr-x 1 dan dan 1404 Jul 3 20:40 load_xml_into_db_svn.pl Invoke load_xml_into_db.pl and it determine the type of XML and then invoke one of load_xml_into_db_git.pl and load_xml_into_db_svn.pl In turn, each of those scripts will use one of these modules: [dan@devgit-ingress01:~/scripts] $ ls -l ~/modules/xml_munge* -rwxr-xr-x 1 dan dan 5392 Dec 5 02:51 /usr/home/dan/modules/xml_munge.pm -rwxr-xr-x 1 dan dan 36848 Dec 5 02:24 /usr/home/dan/modules/xml_munge_git.pm -rwxr-xr-x 1 dan dan 31944 Dec 5 02:37 /usr/home/dan/modules/xml_munge_svn.pm xml_munge.pm determines the type of repository this commit came from. This is important because there are slightly different data in the XML. For example, subversion does not have a commit_hash. load_xml_into_db.pl learns the type from this data in the XML file: <UPDATES Version="1.4.0.1" Source="git"> <UPDATES Source="subversion" Version="1.3.2.2"> The Version numbers refer to the code module and is used. Yet.
Use the right value for branch name.
Properly bring a port back from the dead. After a port is deleted, it may be brought back. The code was looking for that, but not detecting it because of path issues. Let's strip the leading /ports/head or /ports/branches/2020Q4 and use what is left. While here, leave the loop once we have found something to resurrect.
Let's just do a fetch, not a pull
remove FreshPorts::Branches::GetPathToRepoForBranchCHROOT which seems outdated for git and does not work Add FreshPorts::Constants::GitRepos & FreshPorts::Constants::RepoLabelsToGitRepoNames
Convert the XML repo label to a database repo name
'become compatible with XML::Writer 0.900'
Patch to work with XML-Writer-0.900 Without this patch, the error is: Output must be a handle, a reference or 'self' at /usr/local/lib/perl5/site_perl/XML/Writer.pm line 480, <> line 114. This ties in with https://metacpan.org/changes/distribution/XML-Writer for 0.900: "Fail when a scalar other than 'self' is passed as OUTPUT."
The example email server should be a hostname, not an IP address.
Fix the branch
add newline to end of file
spacing
Sometimes you want 2020Q3 (usually for the repo), sometimes you want branches/2020Q3 (usually in git)
spell quarterly
Add in ports-quarterly
Add a test for showing repos: [dan@devgit-ingress01:~/modules] $ echo perl ./Testing/GetRepos.pl| sudo su -fm freshports ports has REPODIR='/var/db/freshports/ports-jail/var/db/repos/freebsd-ports' and REPODIR_CHROOT='/var/db/repos/freebsd-ports' ports-quarterly has REPODIR='/var/db/freshports/ports-jail/var/db/repos/freebsd-ports-quarterly' and REPODIR_CHROOT='/var/db/repos/freebsd-ports-quarterly'
Add missing dependency: constants
Change GetRepoNameForBranch() to use newly FreshPorts::Constants::GitRepos We want to convert ports and ports-quarterly to freebsd-port and freebsd-ports-quarterly respectively. We have labels; we want directories.
This is the start of passing in the Repository name to many functions to enable correct repo-on-disk identification
remove commented out code with hardcoded commit_hash, repo, and FileRevision
remove commented out code referring to {repository} = 'ports';
put a space before: for git
Correct unkonwn to unknown
Document where we need to delete the port
do 2>&1 to redirect stderr to std out so we capture the git stuff into the .loading log file
How did that = get in there?
Line up some columns use the right name in logging. Use the repo we told to use. delete commented out code
Correct the name of the script
Removing blank lines.
Some colum alignment
Add two functions needed for processing git commands. Perhaps they should be in another file, but config.sh is included by thoese that need these.
Adjust whitespace
These two have been replaced by job-waiting.pl
Put a tag in there, so we know where it's coming from
Mention that we only extract values from the ports repo, not the other repos
Add SET CLIENT_ENCODING TO 'SQL_ASCII' on a select. Not everything is UTF-8, so we have to do this for now. Whitespace some stuff
While attempting to figure out a 'wide character' issue * https://github.com/FreshPorts/git_proc_commit/issues/ I rewrote the query for saving commit_log - this was to get all the encoding done by $dbh->do(). It didn't help. What heped was ;client_encoding=UTF8 on the database connection string.
Moving to git, we take a slightly different approach. We need multiple working copies because there are multiple git repos: * freebsd * freebsd-ports * freebsd-docs Change path_to_tree to RepoDir Move CheckGit from freshports to ingress signal directory
Set client_encoding=UTF8 on connect
Save commit_hash_short
Refer to master, not head.
We renamed SVNBaseDir
We have jobs for both git and svn, and for ingress and freshports
Add the script which checks out a specific commit
Now that we have git and svn processing, create a separate script.
Add deails for the ingress user directories. Add other details pertaining to git processing
Make this work for the new repo locations and names
Add in the git repos While here, column align some stuff
Fairly stable now
Sort the jobs
Remove unused $DaysRefreshed Sort contents of %Jobs Add $FreshPorts::Config::CheckGit => 'check_git.sh
Spell: element id
Use commit log message not email subject With git processing, we run off the repo, not incoming commit email. Thus, we must change.
'rm /usr/src/sys/Makefile from the ports-jail'
Remove the usr files re: https://github.com/FreshPorts/freshports/issues/152 The nvidia drivers are needlessly marked as IGNORE. For example https://www.freshports.org/x11/nvidia-driver-390/ The message is: IGNORE: requires kernel source files in SRC_BASE=/usr/src This message is produced by https://svnweb.freebsd.org/ports/head/Mk/Uses/kmod.mk?view=markup around line 25 Example: [dan@dev-ingress01:/var/db/freshports/ports-jail/var/db/repos/PORTS-head/x11/nvidia-driver-390] $ make -V IGNORE requires kernel source files in SRC_BASE=/usr/src The code looks for ${SRC_BASE}/sys/Makefile Creating that file avoids the issue: $ sudo mkdir /usr/src/sys $ sudo touch /usr/src/sys/Makefile $ make -V IGNORE $
'Bring in new PYTHON_PKGNAMEPREFIX code - for real this time'
add in python_pkgnameprefix
Add in make-flavors-package-names.sh
'Bring in new PYTHON_PKGNAMEPREFIX stuff, abort on UNKNOWN branch'
'Bring in new PYTHON_PKGNAMEPREFIX code'
extract PYTHON_PKGNAMEPREFIX from the port
Combine some lines into one. Whitespace only.
Add the correct command to create the required thing
Some simple updates
Create git branch
Create branch for git work
Remove reference to unset value.
Need this to fix IGNORE for ports which use kmod re: https://github.com/FreshPorts/freshports/issues/152
Adding, it was never added before
'Create a fake /usr/src/sys/Makefile to avoid spurious INGORE messages by ports which use kmod '
Create a fake /usr/src/sys/Makefile to avoid spurious INGORE messages by ports which use kmod re: https://github.com/FreshPorts/freshports/issues/152
'convert all http to https, get ready for MaintainerPorts'
'fix a proctitle error with wide characters'
Avoid readproctitle errors by doing UTF-8
'remove debugging date'
remove hardcoded date used for debugging
Add missing require: FreshPorts::committer_opt_in This will avoid this error: nUndefined subroutine &FreshPorts::CommitterOptIn::RecordErrorDetails called at ./process_vuxml.pl line 124, <> chunk 1.\n
'add report-maintainer-ports.pl'
Uncomment code to detect debugging mode
Go case insensitive on the email address match
use https, not http
remove: * NotificationNonPorts & NotificationDirectories - they appear to be unused * add MaintainerPorts for new report
We have a report on maintainer ports
'add PGSSLMODE to config.sh'
Add PGSSLMODE
'add BASEDIR_PACKAGER to config.sh'
Add BASEDIR_PACKAGER
'remove system() which did nothing in process_vuxml.pl'
We don't need this any more. We use zfs rollback instead
Save recent work, before removing.
remove system() which did nothing
first version, going to start using -e next
'Add new new signals: * new_repo_ready_for_import * new_repo_imported'
'job-waiting.pl now handles the new packages code'
Add new new signals: * new_repo_ready_for_import * new_repo_imported
Change our job-waiting loop. When the job_waiting signal is set, run the waiting jobs and keep runnint them until we don't find anything more to run.
whitespace only
fix
ouch
fix
fix
clean
Damn. That was wrong.
These are helper scripts, mostly for use with commits after they have arrived. When you're looking for the raw file, use these tools
'Don't ignore everything after Directory Properties'
Stop using variables before testing if they are defined This is fallout from testing for: * https://github.com/FreshPorts/freshports/issues/133 * https://news.freshports.org/2020/01/25/the-slave-ports-for-devel-binutils-did-not-get-deleted/
In the original version of this code, we always ignored everything after a Directory Properties line. We now just ignore that section. This error led to whole swaths of emails being ignored. Oops. see https://github.com/FreshPorts/freshports/issues/133 https://news.freshports.org/2020/01/25/the-slave-ports-for-devel-binutils-did-not-get-deleted/
'Always include the SQl when displaying an error'
'fix broken XML chars'
Strip characters which are not valid in XML
Note that FreshPorts::Config::email_server must be a hostname, not an IP address.
Add much debugging output. Always include the SQL in the error message.
Always include the SQl when displaying an error
'fix https://github.com/FreshPorts/freshports/issues/121'
remove extraneous /
Repair duplicate and extraneous results. fixes https://github.com/FreshPorts/freshports/issues/121
'minor changes, no bug fixes'
Good script, but checkout-branch is better
Use $0 instead of hardcoding our own script name
Also refresh etc/make.conf in the PORT JAIL
Align the echo and the code to make it easier to read. Whitespace only.
'We have two scripts which check master-slave. One queries the databse (.pl), the other queries the Makefile (.sh). Fix both and comment appropriately'
We have two scripts which check master-slave. One queries the databse (.pl), the other queries the Makefile (.sh).
Provide a script to copy the Jail scripts into the jail.
'update test-master-port.sh now that sysutils/bacula-server is gone from the tree'
sysutils/bacula-server and sysutils/bacula-client are deprecated. Use bacula9 instead
'fix hard-coded hostname'
Whitespace only
Stop using Email::Address::UseXS because things have been fixed. remove commented out code.
Remove leading space
'* Add element_pathnane to missing-port-categories.sh so we see branch details'
'Add new config.pm value: $FreshPorts::Config::ScriptDir, Start using Email::Address::UseXS because of upstream deprecation'
Check out the given branch to our local repo directory
Add the element pathname, so we see the branch
When we can't find the branch for a commit, try checking it out.
Add punctuation to logging messages
Add FreshPorts::Config::ScriptDir for use by perl modules which need to run scripts.
whitespace changes
Add hostname to test email
Use Email::Address::UseXS
'remember to delete package_flavors before adding'
delete existing flavor information for this port before adding
Remove vertical whitespace to avoid: replaced vertical whitespace in Subject header with space; this will become fatal in a future version at /usr/local/lib/perl5/site_pe
'Adopt a new approach by putting all the directory queue locations into a hash'
'removing status.pm'
Adopt a new approach by putting all the directory queue locations into a hash
Give the email subject a correct description
'give the missing ports_categories email a better subject'
'add Flavors, adjust ccommitter_opt_in to use new email modules, assign default value to database.pm::sslmode, update email.pm to use Email::Simple not Mail::Sender(now deprecated)'
'add package flavors'
Add make-flavors-package-names.sh script
Be sure to install scripts/vars.sh.sample
'add package flavors'
Add port flavors, much whitespace adjustment while here.
Add a way to refresh just one port. You must modify the code to specify that port
Get the number of commits processed today.
Add a script to get: * Number of queued commits * Commit processing status
Turn debugging off
'Convert from using p5-Mail-Sender to p5-Email-Sender, Honor $FreshPorts::Config::ReportDebugging for reports, Add test-sending-email.pl'
Delete this, created in error
'Replace p5-Mail-Sender with p5-Email-Sender'
Add a script to test outgoing email
Convert from using p5-Mail-Sender to p5-Email-Sender * headers are now passed in via a hash report-new-ports.pl now takes a range, as originally intended show-config.pl: stop using email_client and use only email_server
Replace p5-Mail-Sender with p5-Email-Sender Because of this, pass in in the headers as a hash, not a string.
Remove email_client: please use email_server instead Add ReportDebugging, to allow reports to run without sending anything.
'honor $FreshPorts::Config::ReportDebugging'
Honor $FreshPorts::Config::ReportDebugging and stop using $Debug
'Allow ssl_mode to be set on database connections'
''
whitespace changes only
'better defaults in config.sh.sample, make missing-port-categories.sh email results'
Since this is now a periodic, and it's actually running now, make it work since we need to send an email. The output goes to a log file via: $ grep output /etc/periodic.conf hourly_output=/var/log/hourly.log daily_output="/var/log/daily.log" weekly_output="/var/log/weekly.log" monthly_output="/var/log/monthly.log"
Set default ADMINEMAIL to me
Change the default value for FRESHPORTS_JAIL_USER to freshports, from dan
Set sslmode in config.pm
Set defaults Correct SQL
'-m'
'better process_updating.sh logging. extract CONFLICTS, CONFLICTS_BUILD & CONFLICTS_INSTALL from port'
Add
Take a copy
Ignore config.sh
When inserting, set a value for the commit_log_ports.port_name_revision field. This is used when comparing against the ports.conflicts* fields.
Maintain these three new database fields on the ports table * conflicts * conflicts_build * conflicts_install
Extract three new values from the Makefile: * CONFLICTS * CONFLICTS_BUILD * CONFLICTS_INSTALL
Better logging messages
'Fix vuxml non running, improve logging'
'catch more errors if vuxml_latest.pl fails'
All of the following deficiencies led to hiding permissions issues on a directory. * mention when process_vuxml.pl begins * say vuxml_ident.pl, not vuxml ident * say vuln_latest.pl, not vuxml latest * toss the output of vuln_latest.pl into the log file * if an error occurs during vuln_latest.pl, refer the reader to the logfile Instead, now we see this in the vuxml.log file: ### process_vuxml.pl finishes '/var/db/freshports/cache/html' exists trying to open '/var/db/freshports/cache/html/vuln-latest.html.tmp' could not open '/var/db/freshports/cache/html/vuln-latest.html.tmp' Tue Aug 14 14:59:55 UTC 2018 process_vuxml.sh vuxml finishes ####
Return the value from CreateVulnHTML so the calling script can take action upon error.
'fix broken vuxml running'
'When things go wrong, log it'
There is not constants Only FreshPorts::constants This was causing vuxml to not be processed.
Add a prefix for easier logcheck filtering
There is no FreshPorts::warnings. Only warnings
Add a prefix so it's easy to filter via logcheck
When things go wrong, log it.
When saying not found, mention not found by whom
When saying not found, say by whom
Create branches, tags, trunk
Oops. Didn't mean to do exactly that.
Move
Rename to trunk
Add
Rename, while I create branches, tags, trunk
Split the code into two parts: 1 - scripts run from the command line 2 - Perl modules used by some of those scripts
Move scripts into a new scipts directory. Create new modules directory
Split the code into two parts: 1 - scripts run from the command line 2 - Perl modules used by some of those scripts
Code for processing incoming commits