aboutsummaryrefslogtreecommitdiff
path: root/shells
Commit message (Collapse)AuthorAgeFilesLines
* shells/yash: update to 2.52Christian Weisgerber2022-03-082-4/+4
|
* shells/ohmyzsh: update to 20220305Serhii (Sergey) Kozlov2022-03-063-5/+8
|
* shells/zsh-completions: Remove completion for tarsnapPo-Chuan Hsieh2022-02-282-1/+4
| | | | | | | Tarsnap now ships with a zsh completion script. Please use the completion from sysutils/tarsnap instead of this port. Reported by: cperciva
* shells/zsh: update to 5.8.1Baptiste Daroussin2022-02-122-6/+6
| | | | | MFH: 2022Q1 Security: CVE-2021-45444
* shells/starship: Update 1.2.1 -> 1.3.0Yuri Victorovich2022-02-103-348/+128
| | | | Reported by: portscout
* shells/ohmyzsh: update to 20220204Serhii (Sergey) Kozlov2022-02-062-5/+5
|
* lang/rust: Relink consumersTobias Kortkamp2022-02-033-3/+3
| | | | | PR: 261449 Security: ee26f513-826e-11ec-8be6-d4c9ef517024
* shells/bashc: Update to 5.1.8Igor Pokrovsky2022-02-023-7/+14
| | | | PR: 261327
* shells/ohmyzsh: update to 20220201Serhii (Sergey) Kozlov2022-02-023-9/+8
|
* shells/ohmyzsh: update to 20220128Serhii (Sergey) Kozlov2022-01-284-9/+15
|
* shells/ammonite: Update to 2.5.1 and MOVEJens Grassel2022-01-185-70/+0
| | | | | | | | | | | | | | | | The authors removed the shell functionality but it is still a good dev-tool. Changelog --------- * Added support for Scala 2.13.8 * Re-added old Main entry point for better compatibility with Ammonite 2.4 and older * Dropped built-in support for shell operations * move from shells/ammonite to devel/ammonite PR: 261191 Reported by: freebsd-ports@jan0sch.de (maintainer)
* lang/rust: Bump revisions after 1.58.0Tobias Kortkamp2022-01-173-2/+3
|
* shells/starship: Update 1.1.1 -> 1.2.1Yuri Victorovich2022-01-152-103/+85
| | | | Reported by: ler@
* Fix CONFLICTS entries of multiple portsStefan Eßer2022-01-102-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 cannot conflict with itself (due to logic in bsd.port.mk that supresses the pattern match result in that case). A few ports that set the conflicts variables depending on complex conditions (e.g. port options), have been left unmodified, despite probably containing outdated package names. These changes should only affect the installation of locally built ports, not the package building with poudriere. They should give an early indication of the install conflict in cases where currently the pkg command aborts an installation when it detects that an existing file would be overwritten, Approved by: portmgr (implicit)
* shells/ohmyzsh: update to 20220108Serhii (Sergey) Kozlov2022-01-093-11/+26
|
* shells/bash: Update to 5.1.16Emanuel Haupt2022-01-052-2/+10
|
* shells/rush: Update 2.1 -> 2.2Yuri Victorovich2022-01-032-4/+6
| | | | Reported by: portscout
* shells/elvish: update to 0.17.0Adam Jimerson2021-12-242-8/+8
| | | | | | | Changelog: https://elv.sh/blog/0.17.0-release-notes.html PR: 260621 Reported by: Adam Jimerson <vendion@gmail.com> (maintainer)
* shells/ohmyzsh: Update to 20211221Serhii (Sergey) Kozlov2021-12-234-19/+27
|
* shells/starship: Update 1.0.0 -> 1.1.1Yuri Victorovich2021-12-222-73/+76
| | | | Reported by: ler
* shells/ammonite: Update to 2.5.0Jens Grassel2021-12-152-4/+4
| | | | PR: 260378
* shells/starship: Update 0.58.0 -> 1.0.0Yuri Victorovich2021-12-102-83/+103
|
* lang/rust: Rebuild consumers for Rust 1.57.0Tobias Kortkamp2021-12-053-2/+3
|
* */*: bump ports depending on libgit2Matthias Fechner2021-12-041-1/+1
|
* shells/zsh: Revert "shells/zsh: Add BASE_ZSH option"Yasuhiro Kimura2021-11-262-45/+37
| | | | | | This reverts commit ae1787aab23e44e369dbb0cc814e8318c6f86e0d. Requested by: maintainer
* shells/zsh: Add BASE_ZSH optionYasuhiro Kimura2021-11-262-37/+45
| | | | | | | | | | | | | | | | | | | | | | | | | Add new option BASE_ZSH that makes zsh and rzsh also available as /bin/zsh and /bin/rzsh. Under ports flamework everything is installed under /usr/local unless custom prefix is used. And according to it zsh is installed as /usr/local/bin/zsh. But on most Linux based OSes zsh is installed as /bin/zsh. And it causes problem if user's account information is shared between FreeBSD and Linux by using such tools as LDAP or NIS as account information also includes absolute path of user's login shell. To work around it I have created /bin/zsh as symbolic link referencing /usr/local/bin/zsh and also edited /etc/shells to add /bin/zsh to it every time I set up new FreeBSD system. But it's quite bothersome and that is why I add new BASE_ZSH option. While I'm here, * Pet portclippy * Re-format Makefile with portfmt PR: 259109 Proposed by: Chris Hutchinson (more intuitive option name) Approved by: maintainer timeout (> 2 weeks)
* */*: Remove redundant '-*' from CONFLICTS definitionsStefan Eßer2021-11-254-7/+7
| | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Approved by: portmgr (blanket)
* shells/ammonite: Update to 2.4.1Jens Grassel2021-11-222-4/+4
| | | | PR: 259932
* Multiple: Drop maintainership on some portsAdam Weinberger2021-11-191-1/+1
|
* shells/bash: Update to 5.1.12Emanuel Haupt2021-11-182-2/+10
|
* shells/bash-completion: Update FreeBSD Bash Completion to 1.2.0Mateusz Piotrowski2021-11-102-4/+5
| | | | Approved by: maintainer
* shells/nsh: Add new portCarlo Strub2021-11-074-0/+353
| | | | | | | | | A command-line shell that focuses on productivity and swiftness featuring: - A POSIX compliant interactive shell with some Bash extensions. - Tab completions and syntax highlighting. - Bash completion support (by internally invoking the genuine Bash). - Builtin zero configration features. - Written in Rust :crab:
* */*: Remove redundant '-[0-9]*' from CONFLICTSStefan Eßer2021-10-292-3/+3
| | | | | | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
* *: Rebuild for Rust 1.56.0Tobias Kortkamp2021-10-252-1/+2
|
* shells/ion: Chase USES=cargo's new git source supportTobias Kortkamp2021-10-251-11/+8
| | | | PR: 256581
* shells/rush: Add CPE informationStefan Eßer2021-10-211-1/+2
| | | | Approved by: portmgr (blanket)
* shells/elvish: Add CPE informationStefan Eßer2021-10-211-1/+2
| | | | Approved by: portmgr (blanket)
* *: fix tab vs. space issues, and comments according to the guide.Jimmy Olgeni2021-10-162-2/+2
|
* shells/bashc: fix typos in pkg-descr.Jimmy Olgeni2021-10-161-1/+1
|
* shells/rc: Add CPE informationStefan Eßer2021-10-131-0/+2
| | | | Approved by: portmgr (blanket)
* shells/oksh: Update to 7.0Tobias Kortkamp2021-10-122-7/+24
| | | | | | - Add a static flavor and install in /rescue same as editors/mg@static Changes: https://github.com/ibara/oksh/releases/tag/oksh-7.0
* shells/wcd: unbreak after 266130ce71ef by revertJan Beich2021-10-081-1/+1
| | | | | | /bin/sh: Syntax error: Unterminated quoted string Reported by: pkg-fallout
* shells/bash: fix compilation after libncurses split in baseBaptiste Daroussin2021-10-061-1/+1
| | | | | | | | | | bash actually only requires libtinfo, but up to recent change in 14.0-CURRENT, libtinfo and libncurses were bundled into one single libs, so linking only to libncurses was not a problem. By telling bash to link to libtinfo and not to libncurses, it works on both system where ncurses has been split and those without the split as there is a libtinfow.so symlink to libncursesw.so on those.
* shells/ohmyzsh: Update to 20210930Serhii (Sergey) Kozlov2021-10-014-24/+18
|
* shells/starship: Update 0.56.0 -> 0.58.0Yuri Victorovich2021-09-262-229/+236
|
* ncurses: fix build with futur base and ports ncursesBaptiste Daroussin2021-09-231-1/+1
| | | | | | | in preparation for the split in base of libtinfo and libncurses, clearly specify when the packages should link against. Note this also fixes the build with ports ncurses
* */*: Reset MAINTAINER due to repeat fatal email bouncesRyan Steinmetz2021-09-211-1/+1
|
* *: Rebuild lang/rust consumers after the 1.55.0 updateTobias Kortkamp2021-09-192-2/+2
|
* shells/elvish: Update elvish to v0.16.3Adam Jimerson2021-09-172-25/+21
| | | | | | | ChangeLog: https://elv.sh/blog/0.16.0-release-notes.html PR: 258415 Reported by: vendion@gmail.com (maintainer)
* shells/dash: update DASH to version 0.5.11.5 and install ChangeLog.Alexey Dokuchaev2021-09-162-4/+11
|