Port details |
- arcanist-lib Libraries for the command line interface for Phabricator
- 20220518_7 devel =4 20220518_5Version of this port present on the latest quarterly branch.
- Maintainer: grembo@FreeBSD.org
- Port Added: 2019-05-15 20:53:31
- Last Update: 2024-11-11 17:03:17
- Commit Hash: 798fa7e
- People watching this port, also watch:: OpenSP, autoconf, linux-c7-atk, xcb-util-image, woff2
- License: APACHE20
- WWW:
- https://secure.phabricator.com/book/arcanist/
- Description:
- Arcanist is the command-line tool for Phabricator. It allows you to interact
with Phabricator installs to send code for review, download patches, transfer
files, view status, make API calls, and various other things. You can find
a complete library reference here:
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- arcanist-lib${PHP_PKGNAMESUFFIX}>0:devel/arcanist-lib
- To install the port:
- cd /usr/ports/devel/arcanist-lib/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/arcanist-lib
- pkg install arcanist-lib-php82
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: arcanist-lib-php82
- Package flavors (<flavor>: <package>)
- php82: arcanist-lib-php82
- php81: arcanist-lib-php81
- php83: arcanist-lib-php83
- php84: arcanist-lib-php84
- distinfo:
- TIMESTAMP = 1656002343
SHA256 (phacility-arcanist-20220518-85c953e_GH0.tar.gz) = a9bfc625e480ab02f8ad01f07b0e8741fb3e0db01e26c9295c1725dd799e6cb2
SIZE (phacility-arcanist-20220518-85c953e_GH0.tar.gz) = 2273237
Packages (timestamps in pop-ups are UTC):
- Slave ports:
-
- devel/arcanist
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Runtime dependencies:
-
- php.h : lang/php82
- curl.so : ftp/php82-curl
- dom.so : textproc/php82-dom
- simplexml.so : textproc/php82-simplexml
- zlib.so : archivers/php82-zlib
- mbstring.so : converters/php82-mbstring
- This port is required by:
- for Run
-
- devel/arcanist
- devel/phabricator
Configuration Options:
- ===> The following configuration options are available for arcanist-lib-php82-20220518_7:
ENCODINGS=on: Support for encodings other than utf-8
===> Use 'make config' to modify these settings
- Options name:
- devel_arcanist-lib
- USES:
- php:cli,flavors python:env shebangfix
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
20220518_7 11 Nov 2024 17:03:17 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Fix for PHP 8.4.0RC3 (revisited)
This time including the patch.
Reported by: cracauer
Differential Revision: https://reviews.freebsd.org/D47376 |
20220518_6 11 Nov 2024 16:58:58 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Fix for PHP 8.4.0RC3
Reported by: cracauer
Differential Revision: https://reviews.freebsd.org/D47376 |
20220518_5 25 Mar 2024 13:26:10 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Fix plist issue
Leftover file default.pem should have been removed as part of
03b792c59a524
Reported by: mfechner |
20220518_5 25 Mar 2024 11:19:36 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Clean up port skeleton |
20220518_5 05 Oct 2023 10:51:00 |
Dag-Erling Smørgrav (des) |
devel/arcanist-lib: Drop ca_root_nss dependency.
This was much harder than it needs to be, because Arcanist is dead set
on forcing a CA bundle instead of letting curl pick one or use the OS
native trust store. Remove the enforced fallback and set CURL_CAINFO
only if a CA bundle was explicitly configured or custom.pem was found
on disk. Furthermore, if the configured value is a directory, set
CURL_CAPATH instead.
MFH: 2023Q4
Reviewed by: grembo
Differential Revision: https://reviews.freebsd.org/D42042 |
20220518_4 16 Apr 2023 18:09:23 |
Muhammad Moinur Rahman (bofh) |
*/*: 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 ) |
20220518_4 31 Jan 2023 18:51:50 |
Michael Gmelin (grembo) |
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. |
20220518_3 09 Jan 2023 22:35:17 |
Joseph Mingrone (jrm) |
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 |
20220518_2 06 Jan 2023 19:16:14 |
Joseph Mingrone (jrm) |
devel/arcanist-lib: handle 'arc patch' runtime exception
Approved by: grembo (maintainer)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D37969 |
20220518_1 10 Sep 2022 17:41:16 |
Stefan Eßer (se) Author: Tobias Kortkamp |
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) |
20220518_1 08 Sep 2022 16:21:56 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Fix `arc patch` on PHP 8.1 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
20220518 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
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 ) |
20220518 04 Jul 2022 09:31:07 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Update to 20220518
This should reduce problems running on PHP 8.1
PR: 264852
Reported by: fernape@ |
20211210 08 Mar 2022 18:31:10 |
Michael Gmelin (grembo) |
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@ |
20210113_1 10 Jan 2022 15:15:39 |
Stefan Eßer (se) |
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 ) |
20210113_1 10 Jan 2022 13:30:00 |
Muhammad Moinur Rahman (bofh) |
Mark ports to IGNORE with new php81
Approved by: portmgr (infrastructure blanket)
Sponsored by: Bounce Experts |
20210113_1 01 Oct 2021 11:17:28 |
Michael Gmelin (grembo) |
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 |
20210113 01 May 2021 17:55:55 |
Tobias Kortkamp (tobik) |
Clean up some things
- Fix typos
- Remove duplicate variables
- Remove nop variables
- Clean up commented PORTREVISION
- Add missing USES
Reported by: portscan |
20210113 15 Apr 2021 17:25:54 |
Michael Gmelin (grembo) |
devel/arcanist-lib: Require CLI version of php
PR: 255088
Reported by: Mohammad S. Babaei <info@babaei.net> |
20210113 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
20210113 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
20210113 14 Jan 2021 00:39:01 |
grembo |
Update to 20210113
PR: 252638
Reported by: fluffy |
20210111 14 Jan 2021 00:22:13 |
grembo |
Update to 20200111
Should support PHP8
PR: 221528
Submitted by: fluffy |
20201016_1 12 Jan 2021 19:09:03 |
grembo |
Generate bash completion rules on install.
So it won't have to be done by root manually/implicitly.
PR: 252421
Reported by: 0mp |
20201016 02 Jan 2021 04:06:28 |
grembo |
Clean plists. |
20201016 01 Jan 2021 19:22:38 |
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. |
20200514_1 19 May 2020 15:24:21 |
grembo |
Patch paths to php executable, so things like ssh-auth work again
without workarounds. |
20200514 15 May 2020 18:07:15 |
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. |
20190622 08 Oct 2019 07:53:04 |
grembo |
Ignore libphutil/arcanist/phabricator in portscout, as they're
rolling release. |
20190622 03 Sep 2019 14:23:05 |
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 |
20181231_2 15 May 2019 20:53:16 |
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 |