non port: devel/arcanist-lib/Makefile |
SVNWeb
|
Number of commits found: 25 |
Sun, 16 Apr 2023
|
[ 18:09 Muhammad Moinur Rahman (bofh) ] 0ac3a69 (Only the first 10 of 188 ports in this commit are shown above. )
*/*: Remove merged or non-existent USE_PHP directives
- Remove USE_PHP=hash which is available in default php installation of
all versions of php
* security/pear-Horde_Crypt_Blowfish: Remove OPTION MHASH
- Remove USE_PHP=json which is available in default php installation of
all versions of php
* devel/pear-PHPTAL: Remove OPTION JSON
* www/ilias: Remove OPTION SCORM2004
- Remove USE_PHP=mssql which is no longer available in php from php80
and later and has been replaced with sqlsrv module which is Windows
only
* www/codeigniter: Remove OPTION MSSQL
* www/moodle311: Remove OPTION MSSQL
* www/moodle39: Remove OPTION MSSQL (Only the first 15 lines of the commit message are shown above )
|
Tue, 31 Jan 2023
|
[ 18:51 Michael Gmelin (grembo) ] be146a92
devel/arcanist-lib: Suppress certain runtime exceptions
Default configured PHP 8.1+ issues deprecation errors when NULL
strings are passed into various library functions.
In the past, we tried to address those one by one, which feels
a bit like playing Whac-A-Mole.
This patch adds custom error handling for this kind of deprecation
error, so that it is ignored. This should fix this entire class of
errors at least until PHP 9.0 is released, at which point a different
workaround (or real solution is needed). Therefore previous patches
were removed.
|
Mon, 9 Jan 2023
|
[ 22:35 Joseph Mingrone (jrm) ] 3b71507
devel/arcanist-lib: Handle NULL argument passed to strlen()
Problem description:
- ArcanistDiffWorkflow.php:getDiffOntoTargets() tries to determine the
current branch name by calling ArcanistGitAPI.php:getBranchName()
- getBranchName() returns NULL when working on a detached HEAD
- getDiffOntoTargets() calls strlen() with the branch name, which now
fails with a NULL argument.
Approved by: grembo (maintainer)
Sponsored by: The FreeBSD Foundation
|
Fri, 6 Jan 2023
|
[ 19:16 Joseph Mingrone (jrm) ] e828e84
devel/arcanist-lib: handle 'arc patch' runtime exception
Approved by: grembo (maintainer)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D37969
|
Sat, 10 Sep 2022
|
[ 17:41 Stefan Eßer (se) Author: Tobias Kortkamp ] e79fe1a (Only the first 10 of 195 ports in this commit are shown above. )
Fix WWW in parent/child ports
Many of the WWW are overwritten later which means the wrong value
is used. This did not happen before where the children were either
a) just using the pkg-descr from the parents
b) or had their own separate pkg-descr with custom WWW
Use WWW?= in parents when the child's WWW is different.
Children that use the same WWW as the parent can just inherit it,
i.e., the child WWW can be removed.
Approved by: portmgr (implicit)
|
Thu, 8 Sep 2022
|
[ 16:21 Michael Gmelin (grembo) ] e1abc97
devel/arcanist-lib: Fix `arc patch` on PHP 8.1
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Mon, 4 Jul 2022
|
[ 09:31 Michael Gmelin (grembo) ] 5e5a96d
devel/arcanist-lib: Update to 20220518
This should reduce problems running on PHP 8.1
PR: 264852
Reported by: fernape@
|
Tue, 8 Mar 2022
|
[ 18:31 Michael Gmelin (grembo) ] 44273a7
devel/arcanist-lib: Update to 20211210
This should unbreak running on PHP 8.0 and (at least)
build on PHP 8.1.
PR: 262343
Reported by: arrowd@
|
Mon, 10 Jan 2022
|
[ 15:15 Stefan Eßer (se) ] bcaf25a (Only the first 10 of 491 ports in this commit are shown above. )
Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.
This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.
Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port (Only the first 15 lines of the commit message are shown above )
|
[ 13:30 Muhammad Moinur Rahman (bofh) ] 47721a7 (Only the first 10 of 38 ports in this commit are shown above. )
Mark ports to IGNORE with new php81
Approved by: portmgr (infrastructure blanket)
Sponsored by: Bounce Experts
|
Fri, 1 Oct 2021
|
[ 11:17 Michael Gmelin (grembo) ] 21ddc093
devel/arcanist-lib: Use Mozilla root CA bundle
This fixes problems with Let's Encrypt certificates after
the R3 Let's Encrypt intermediate CA expired.
Arcanist uses its own certificate bundle by default (default.pem),
overriding curl's default, unless curl.cainfo is set explicitly.
The port now replaces this custom bundle with a symlink to Mozilla's
root CA bundle as installed by security/ca_root_nss.
PR: 258824
Reported by: yasu
|
Sat, 1 May 2021
|
[ 17:55 Tobias Kortkamp (tobik) ] 6707a3c (Only the first 10 of 47 ports in this commit are shown above. )
Clean up some things
- Fix typos
- Remove duplicate variables
- Remove nop variables
- Clean up commented PORTREVISION
- Add missing USES
Reported by: portscan
|
Thu, 15 Apr 2021
|
[ 17:25 Michael Gmelin (grembo) ] 82238aa
devel/arcanist-lib: Require CLI version of php
PR: 255088
Reported by: Mohammad S. Babaei <info@babaei.net>
|
Wed, 7 Apr 2021
|
[ 08:09 Mathieu Arnold (mat) ] cf118cc (Only the first 10 of 8873 ports in this commit are shown above. )
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Thu, 14 Jan 2021
|
[ 00:39 grembo ]
Update to 20210113
PR: 252638
Reported by: fluffy
|
[ 00:22 grembo ]
Update to 20200111
Should support PHP8
PR: 221528
Submitted by: fluffy
|
Tue, 12 Jan 2021
|
[ 19:09 grembo ]
Generate bash completion rules on install.
So it won't have to be done by root manually/implicitly.
PR: 252421
Reported by: 0mp
|
Fri, 1 Jan 2021
|
[ 19:22 grembo ]
Update devel/arcanist and devel/phabricator to their latest "versions".
Also, switching to using the date of the commit they are based on
as port version, instead of the date when the port was updated.
|
Tue, 19 May 2020
|
[ 15:24 grembo ] (Only the first 10 of 12 ports in this commit are shown above. )
Patch paths to php executable, so things like ssh-auth work again
without workarounds.
|
Fri, 15 May 2020
|
[ 18:07 grembo ]
Update arcanist(-lib) and phabricator to the latest stable versions.
PORTVERSIONs are the dates of the latest commits on the respective
stable branches.
Deprecate devel/libphutil, as all of its functionality has
been moved into arcanist and phabricator by upstream and
the library has been fully deprecated.
|
Tue, 8 Oct 2019
|
[ 07:53 grembo ]
Ignore libphutil/arcanist/phabricator in portscout, as they're
rolling release.
|
Tue, 3 Sep 2019
|
[ 14:23 grembo ]
Update libphutil, arcanist and phabricator to the latest stable versions
PORTVERSIONs are the dates of the latest commits on the respective
stable branches.
PR: 238512
|
Wed, 15 May 2019
|
[ 20:53 crees ]
devel/arcanist: Split into arcanist-lib and arcanist.
The arcanist port has always conflicted with archivers/arc, but
if the port is installed without the symlink in PREFIX/bin, there
is no issue.
A user expecting to be able to use arcanist in this way can alias
arcanist in their .cshrc or similar and only install the -lib port.
Approved by: grembo (maintainer)
Differential Revision: https://reviews.freebsd.org/D19920
|
Number of commits found: 25 |