Revision
6137 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 27 16:17:37 2024 UTC
(4 months ago)
by
dvl
Diff to
previous 6136
xml_munge_git.pm: Remove unused Element_Add() function
Add some more debugging statements
Correct impelemented
to implemented
Revision
6135 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 27 16:13:25 2024 UTC
(4 months ago)
by
dvl
Diff to
previous 6134
element.pm - remove code which grabbed the parent id
It seems to be unnecessary
Some column alignment.
Remove unused $tmp variable
Revision
6126 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 19:49:33 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6125
'missing-port-categories.sh - make it OFFLINE aware, change get-list-of-current-categories.sh so it no longer observes OFFLINE.'
Revision
6125 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 02:03:02 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6124
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.
Revision
6124 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 01:53:26 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6123
With recent changes to config.pm.sample:
* Stop using $FreshPorts::Config::OFFLINE
* start using $FreshPorts::Config::Offline instead
Revision
6122 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 01:51:19 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6121
Remove $FreshPorts::Config::OFFLINE - which had an incorrect path
Add $FreshPorts::Config::Offline - which has the correct path
Revision
6098 -
Directory Listing
-
[select for diffs]
Modified
Mon Nov 4 17:41:13 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6097
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.
Revision
6077 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 24 00:17:37 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6076
dump-package_imports.sh: order by repo_date
- the processed date is relevant
- But repo_date will be the same on all FreshPorts nodes
Revision
6070 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 19 23:48:04 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6069
Adjust for new package importing strategy
Add:
* FreshPorts::Config::LogDir
* FreshPorts::Config::LogJobsWaiting
Remove:
* $FreshPorts::Config::NewRepoImported
Revision
6068 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 19 23:40:56 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6067
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
Revision
6062 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 24 11:47:34 2024 UTC
(8 months, 1 week ago)
by
dvl
Diff to
previous 6056
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.
Revision
6055 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 31 12:05:02 2024 UTC
(12 months ago)
by
dvl
Diff to
previous 6054
Standardize all report emails.
Subject will be:
FreshPorts Notification: <topic>
Hopefully this will help people to filter easily.
Revision
6054 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 12 13:07:29 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6052
'loop detections added to job-waiting.pl; missing-port-categories.sh will log better; add in report-notification-packages.pl'
Revision
6049 -
Directory Listing
-
[select for diffs]
Modified
Sat Mar 9 20:03:52 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6048
Attempt to standardize on one name for emails:
FreshPorts notification
Start keeping stats
Explain what update, delete, insert will mean.
Revision
6037 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 17 18:44:14 2024 UTC
(13 months, 2 weeks ago)
by
dan
Diff to
previous 6033
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.
Revision
5996 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 3 16:45:06 2024 UTC
(14 months, 4 weeks ago)
by
dan
Diff to
previous 5995
Update PostgreSQL items
* For use by new abi scripts:
- Use export on PGSSLMODE
- Add PGSSLROOTCERT
- add DBUSER_ABI
Revision
5988 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 2 20:29:13 2024 UTC
(14 months, 4 weeks ago)
by
dan
Diff to
previous 5987
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.
Revision
5963 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 24 18:58:21 2023 UTC
(15 months, 1 week ago)
by
dan
Diff to
previous 5962
Use grep -c
ls *.xml will result in ./system_status.sh: /bin/ls: Argument list too long
... when there are large numbers of commits.
Revision
5936 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 10 18:19:01 2023 UTC
(15 months, 3 weeks ago)
by
dan
Diff to
previous 5935
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
Revision
5917 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 24 19:26:27 2023 UTC
(17 months, 1 week ago)
by
dan
Diff to
previous 5916
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
Revision
5895 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 22 23:27:28 2023 UTC
(2 years ago)
by
dan
Diff to
previous 5894
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
Revision
5871 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 11 14:45:48 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5868
'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'
Revision
5858 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 29 12:46:46 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5857
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.
Revision
5845 -
Directory Listing
-
[select for diffs]
Modified
Sun Sep 11 14:56:38 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5844
'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'
Revision
5833 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 12 14:41:56 2022 UTC
(2 years, 7 months ago)
by
dan
Diff to
previous 5832
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.
Revision
5802 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 2 14:11:59 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5801
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
Revision
5774 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 11 07:32:13 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5773
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.
Revision
5756 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 16 16:17:17 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5755
Update to check ports_categories when not processing commits.
Add this to /usr/local/etc/freshports/config.sh:
CHECKPORTSCATEGORIESFILE="${BASEDIR}/signals/check_port_categories"
Revision
5755 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 16 16:16:14 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5748
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';
Revision
5740 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 8 21:14:31 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5739
'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
'
Revision
5734 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 26 16:59:56 2021 UTC
(3 years, 9 months ago)
by
dan
Diff to
previous 5733
make-apply-slist.sh is not required in the port jail.
This functionality is carried out by get-list-of-current-categories.sh
Revision
5715 -
Directory Listing
-
[select for diffs]
Modified
Mon May 31 11:03:28 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5714
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.
Revision
5685 -
Directory Listing
-
[select for diffs]
Modified
Mon May 10 12:18:42 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5684
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 ) {
...
}
Revision
5684 -
Directory Listing
-
[select for diffs]
Modified
Mon May 10 12:18:15 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5683
Be cautious when printing svn_revision - I think this arose when writing
Verify/set-pkgmessage-and-options_name.pl
Revision
5659 -
Directory Listing
-
[select for diffs]
Modified
Tue Apr 6 21:54:40 2021 UTC
(3 years, 11 months ago)
by
dan
Diff to
previous 5658
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
Revision
5653 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 21 22:39:49 2021 UTC
(4 years ago)
by
dan
Diff to
previous 5652
'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'
Revision
5632 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 25 00:30:34 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5631
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.
Revision
5629 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 25 00:20:20 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5628
Pull in the vuxml code from the main branch, because we need the new vuxml
code here too. While here, do some betting debugging.
Revision
5620 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 18 18:36:21 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5619
'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.'
Revision
5590 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 30 20:30:01 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5589
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.
Revision
5582 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 26 18:51:18 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5581
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.
Revision
5579 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 26 18:32:52 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5578
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"
Revision
5564 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 3 23:14:24 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5559
Fix up CanWeProcessThisBranch() was was passing an unnecesary parameter
because it should have been invoking GetPathToRepoForBranchSVN() not
GetPathToRepoForBranch()
Revision
5553 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 16:24:46 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5552
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
Revision
5551 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 16:00:32 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5550
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);
Revision
5549 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 15:57:02 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5548
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
Revision
5511 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 5 13:46:01 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5494
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.
Revision
5493 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 29 15:42:33 2020 UTC
(4 years, 4 months ago)
by
dan
Diff to
previous 5492
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.
Revision
5490 -
Directory Listing
-
[select for diffs]
Modified
Sat Nov 14 20:31:30 2020 UTC
(4 years, 4 months ago)
by
dan
Diff to
previous 5489
remove FreshPorts::Branches::GetPathToRepoForBranchCHROOT which seems
outdated for git and does not work
Add FreshPorts::Constants::GitRepos & FreshPorts::Constants::RepoLabelsToGitRepoNames
Revision
5469 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 21:14:58 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5468
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'
Revision
5467 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 20:58:48 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5466
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.
Revision
5466 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 18:49:04 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5465
This is the start of passing in the Repository name to many functions to enable correct repo-on-disk identification
Revision
5454 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 26 23:29:33 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5453
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.
Revision
5448 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 26 15:05:24 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5447
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
Revision
5446 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 25 15:40:52 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5445
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
Revision
5377 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 3 19:41:00 2020 UTC
(4 years, 9 months ago)
by
dan
Diff to
previous 5375
Use commit log message not email subject
With git processing, we run off the repo, not incoming commit email.
Thus, we must change.
Revision
5349 -
Directory Listing
-
[select for diffs]
Modified
Sat May 30 11:43:59 2020 UTC
(4 years, 10 months ago)
by
dan
Diff to
previous 5348
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
Revision
5339 -
Directory Listing
-
[select for diffs]
Modified
Fri May 29 20:51:14 2020 UTC
(4 years, 10 months ago)
by
dan
Diff to
previous 5338
remove:
* NotificationNonPorts & NotificationDirectories - they appear to be unused
* add MaintainerPorts for new report
Revision
5304 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 26 22:28:42 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5270
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.
Revision
5261 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 26 20:58:10 2020 UTC
(5 years ago)
by
dan
Diff to
previous 5260
These are helper scripts, mostly for use with commits after they have
arrived. When you're looking for the raw file, use these tools
Revision
5215 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 4 13:48:11 2019 UTC
(6 years, 1 month ago)
by
dan
Diff to
previous 5214
'We have two scripts which check master-slave. One queries the databse (.pl), the other queries the Makefile (.sh). Fix both and comment appropriately'
Revision
5203 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 3 14:08:17 2019 UTC
(6 years, 3 months ago)
by
dan
Diff to
previous 5202
'Add new config.pm value: $FreshPorts::Config::ScriptDir, Start using Email::Address::UseXS because of upstream deprecation'
Revision
5188 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 18 22:12:53 2018 UTC
(6 years, 4 months ago)
by
dan
Diff to
previous 5187
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
Revision
5182 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 11 15:30:12 2018 UTC
(6 years, 4 months ago)
by
dan
Diff to
previous 5180
'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)'
Revision
5157 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 19:24:23 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5156
'Convert from using p5-Mail-Sender to p5-Email-Sender, Honor $FreshPorts::Config::ReportDebugging for reports, Add test-sending-email.pl'
Revision
5153 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 18:58:47 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5152
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
Revision
5151 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 18:26:28 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5148
Remove email_client: please use email_server instead
Add ReportDebugging, to allow reports to run without sending anything.
Revision
5133 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 4 15:39:10 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5132
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"
Revision
5112 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 5 13:07:57 2018 UTC
(6 years, 6 months ago)
by
dan
Diff to
previous 5111
When inserting, set a value for the commit_log_ports.port_name_revision
field. This is used when comparing against the ports.conflicts* fields.
Revision
5093 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 14 15:08:47 2018 UTC
(6 years, 7 months ago)
by
dan
Diff to
previous 5092
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
####
Revision
5067 -
Directory Listing
-
[select for diffs]
Modified
Sun May 6 12:47:16 2018 UTC
(6 years, 10 months ago)
by
dan
Diff to
previous 5066
Split the code into two parts:
1 - scripts run from the command line
2 - Perl modules used by some of those scripts
Revision
5065 -
Directory Listing
-
[select for diffs]
Modified
Sun May 6 12:37:14 2018 UTC
(6 years, 10 months ago)
by
dan
Diff to
previous 5064
Split the code into two parts:
1 - scripts run from the command line
2 - Perl modules used by some of those scripts