aboutsummaryrefslogtreecommitdiff
path: root/shells
Commit message (Collapse)AuthorAgeFilesLines
* Reset maintainerErwin Lansing2015-08-191-1/+1
| | | | | | | | | | | <sklauder@trimind.de>: host mailgate.shopkeeper.de[82.119.175.20] said: 550 5.7.0 <sklauder@trimind.de>... No such user here (in reply to RCPT TO command) Sponsored by: DK Hostmaster A/S Notes: svn path=/head/; revision=394750
* Reset maintainerErwin Lansing2015-08-191-1/+1
| | | | | | | | | | | | <conrads@cox.net>: host mx.west.cox.net[68.6.19.3] said: 550 5.1.1 <conrads@cox.net> invalid recipient - Refer to Error Codes section at http://postmaster.cox.net/confluence/display/postmaster/Error+Codes for more information. (in reply to RCPT TO command) Sponsored by: DK Hostmaster A/S Notes: svn path=/head/; revision=394716
* Update to 4.3.42Emanuel Haupt2015-08-142-2/+8
| | | | Notes: svn path=/head/; revision=394218
* - Fix shebangsDmitry Marakasov2015-07-311-2/+13
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=393309
* bash: Export symbols for "enable -f"Conrad Meyer2015-07-301-1/+4
| | | | | | | | | | | PR: 201959 Reviewed by: ehaupt Approved by: markj (mentor) Sponsored by: EMC / Isilon Storage Division Differential Revision: https://reviews.freebsd.org/D3231 Notes: svn path=/head/; revision=393258
* - Removed patch suggested by upstream from Makefile, because the other ↵Lars Engels2015-07-262-5/+77
| | | | | | | | | | | | | | | | variant has been selected. - Add additional manpages - While here, switch to USES= autoreconf and GNU_CONFIGURE - Bump PORTREVISION PR: 198322 Submitted by: Martin Sugioarto <martin@sugioarto.com> Approved by: maintainer (timeout after almost 5 months) Committed from: Essen FreeBSD Hackathon Notes: svn path=/head/; revision=392912
* Update to R51Olivier Duchateau2015-07-112-3/+3
| | | | Notes: svn path=/head/; revision=391740
* In addition to the previous commit also define USE_MKSTEMP=1 for a differentEmanuel Haupt2015-07-101-2/+2
| | | | | | | | | code section. Notified by: naddy Notes: svn path=/head/; revision=391692
* Scripts like https://github.com/henricj/scripts/blob/master/stir.sh oftenEmanuel Haupt2015-07-091-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | generate a bunch of, cannot make pipe for process substitution: File exists errors. The problem lies with colliding pipe names. The code in sh_mktmpname() in lib/sh/tmpfile.c uses a combination of things like the current time, the PID, and an incrementing counter. Since the child PIDs tend to be sequential (barring kern.randompid=1), there are collisions. Fix this problem without rewriting upstream code by defining USE_MKTEMP=1 to use the mktemp(3) code of bash. FreeBSD's mktemp() is not nearly as bad as the bash default and isn't brain-damaged like some platforms (which is likely why the bash code tries to do it's own thing). In FreeBSD, "mktemp(3)" it uses arc4random to pick one of 62 symbols for each "X". Submitted by: Henric Jungheim <software@henric.org> Notes: svn path=/head/; revision=391614
* Move the SF mirrors first againBaptiste Daroussin2015-06-161-3/+4
| | | | Notes: svn path=/head/; revision=389833
* Fix du(1) completionBaptiste Daroussin2015-06-152-1/+10
| | | | | | | | PR: 200768 Obtained from: ZSH upstream Notes: svn path=/head/; revision=389703
* Really fix the plistBaptiste Daroussin2015-06-022-10/+35
| | | | | | | | Pointyhat to: bapt Reported by: many Notes: svn path=/head/; revision=388388
* Forgot about the plistBaptiste Daroussin2015-06-021-0/+5
| | | | Notes: svn path=/head/; revision=388385
* Update to 5.0.8Baptiste Daroussin2015-06-025-40/+19
| | | | | | | | | Among the usual updates, users will be happy to discover plenty of new FreeBSD related completion as well as zpty working out of box (which wasn't the case anymore for a while) Notes: svn path=/head/; revision=388381
* Update to 4.3.39Emanuel Haupt2015-06-012-1/+13
| | | | Notes: svn path=/head/; revision=388282
* - Fix shebangsDmitry Marakasov2015-05-301-2/+4
| | | | | | | | | | - Add NO_ARCH Approved by: portmgr blanket MFH: 2015Q2 Notes: svn path=/head/; revision=387938
* Wcd is a command-line program to change directory fast. It saves time typingPawel Pekala2015-05-295-0/+77
| | | | | | | | | | | | at the keyboard. One needs to type only a part of a directory name and wcd will jump to it. Wcd has a fast selection method in case of multiple matches and allows aliasing and banning of directories. Wcd also includes a full screen interactive directory tree browser with speed search. WWW: http://wcd.sourceforge.net/ Notes: svn path=/head/; revision=387887
* shells/zsh: Fix runtime error when built by gcc-5 with upstream patchJohn Marino2015-05-262-3/+3
| | | | | | | | | The previous approved fix for building with gcc5 still didn't work right. Sure enough, upstream updated their patch. When we take that update, zshell finally behaves. Piggybacking on previous approval. Notes: svn path=/head/; revision=387463
* Remove $FreeBSD$ from patches files everywhere.Mathieu Arnold2015-05-221-2/+0
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387082
* MASTER_SITES cleanup.Mathieu Arnold2015-05-143-5/+3
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Cleanup DIST* variables.Mathieu Arnold2015-05-111-5/+3
| | | | | | | | | | | | | | When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386097
* - Fix stagedir referenced from installed files:Dmitry Marakasov2015-05-092-4/+114
| | | | | | | | | | | | | | | | | | | Error: 'bin/bash-include' is referring to /wrkdirs/usr/ports/shells/shell-include/work/stage Error: 'bin/sh-include' is referring to /wrkdirs/usr/ports/shells/shell-include/work/stage - Don't use random and don't use /tmp for temporary files. It's unsafe, and netstat spews warnings from the jail: netstat: kvm not available: /dev/mem: No such file or directory - Depend on perl as pod2man is used during build - Fix path to pod2man PR: 199645 Submitted by: amdmi3 Approved by: maintainer timeout Notes: svn path=/head/; revision=385855
* shells/zsh: Fix runtime error when built by gcc-5 with upstream patchJohn Marino2015-04-261-0/+22
| | | | | | | | | | | | ZSH was misbuilt on gcc-5 due to an intentional change in behavior of gcc5's cpp. This patch to execute cpp with the -P switch comes from upstream. No revbump necessary as GCC5 isn't used by default on FreeBSD. Reported by: DragonFly ZSH users Approved by: maintainer (bapt, IRC) Notes: svn path=/head/; revision=384799
* - Add CPE infoDmitry Marakasov2015-04-231-0/+2
| | | | Notes: svn path=/head/; revision=384554
* Update to R50fOlivier Duchateau2015-04-202-3/+3
| | | | Notes: svn path=/head/; revision=384384
* shells/fish: Fix for hangs on FreeBSD 10.1+Kubilay Kocak2015-04-182-1/+15
| | | | | | | | | | | | | | Fix for hangs on FreeBSD 10.1+ due to WCHAR_T missing as an alias for UCS-4-INTERNAL. [1] https://github.com/fish-shell/fish-shell/issues/1741 PR: 196661 Submitted by: David Adam <zanchey ucc.gu.uwa.edu.au> Approved by: maintainer <freebsd.users gmail com> Notes: svn path=/head/; revision=384226
* These needs Module::Build.Mathieu Arnold2015-04-111-1/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=383780
* - remove do_nada from fetch targetJason Helfman2015-04-081-3/+1
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=383606
* Fix build with gcc5Rodrigo Osorio2015-04-031-0/+1
| | | | | | | | PR: 197920 Submitted by: marino Notes: svn path=/head/; revision=383182
* Stop installing info files, the manpages already covers the full documentationBaptiste Daroussin2015-03-251-13/+2
| | | | | | | Add --as-needed to LDFLAGS to avoid overlinking with some options Notes: svn path=/head/; revision=382277
* - Cleanup -lpthread/-pthread manipulationSunpoet Po-Chuan Hsieh2015-03-251-4/+0
| | | | Notes: svn path=/head/; revision=382225
* shells/fish: add CPE informationBartek Rutkowski2015-03-171-1/+3
| | | | | | | | | | - Maintainer's timeout (freebsd.users@gmail.com) PR: 197413 Submitted by: Shun <shun.fbsd.pr@dropcut.net> Notes: svn path=/head/; revision=381486
* - Update to 2.17Sunpoet Po-Chuan Hsieh2015-03-083-19/+5
| | | | | | | | | | | - Pass maintainership to submitter Changes: http://olivier.sessink.nl/jailkit/index.html#news PR: 198311 Submitted by: Ben Woods <woodsb02@gmail.com> Notes: svn path=/head/; revision=380750
* Add p5-Term-Bash-Completion-Generator 0.02.8, generate bash completionVanilla I. Shu2015-03-085-0/+35
| | | | | | | | | | scripts. PR: 198105 Submitted by: gebhart@secnetix.de Notes: svn path=/head/; revision=380738
* Remove Author from pkg-descr and white space fixesBaptiste Daroussin2015-03-021-2/+0
| | | | Notes: svn path=/head/; revision=380310
* Update to R50eOlivier Duchateau2015-03-022-4/+3
| | | | Notes: svn path=/head/; revision=380279
* Ports should not change their pkgname depending on options. Change the way howEmanuel Haupt2015-02-192-3/+8
| | | | | | | | | | the slave port is handled. PR: 197818 Submitted by: mat Notes: svn path=/head/; revision=379349
* shells/lshell: fix syslog file location (/dev/log => /var/run/log)John Marino2015-02-062-0/+12
| | | | | | | | | PR: 195245 Submitted by: dam (my.gd) Approved by: n/a (unmaintained) Notes: svn path=/head/; revision=378519
* Cleanup plistBaptiste Daroussin2015-02-055-14/+7
| | | | Notes: svn path=/head/; revision=378465
* Add completions for portsnap and freebsd-update. Both were obtained from ↵Adam Weinberger2015-01-274-1/+113
| | | | | | | | | | | | | | upstream git. Given the infrequency with which new versions of bash-completion are released, it seems appropriate to just add them in here. Submitted by: Peter Dave Hello (author of the two completions) While here, add in LICENSE. Notes: svn path=/head/; revision=378011
* Update osh to latest release (bugfix release)Johan van Selst2015-01-242-3/+3
| | | | Notes: svn path=/head/; revision=377802
* Add a patch to fix tab on an empty line producing:Adam Weinberger2015-01-202-1/+12
| | | | | | | | | | | $ bash: words: bad array subscript PR: 196713 Submitted by: gnudalf@yandex.com Obtained from: upstream bug #1289597 Notes: svn path=/head/; revision=377528
* Update to 4.3.33Emanuel Haupt2015-01-152-2/+8
| | | | Notes: svn path=/head/; revision=377139
* Correct time report after r367805Baptiste Daroussin2015-01-012-3/+3
| | | | | | | | PR: 367805 Submitted by: peterj Notes: svn path=/head/; revision=375921
* - drop redundant and erroneous cleanup of shell listing in /etc/shellsJason Helfman2014-12-092-8/+1
| | | | | | | | | PR: 195487 Submitted by: braakvaak@aol.com Approved by: freebsd.users@gmail.com (maintainer) Notes: svn path=/head/; revision=374430
* Bump PORTREVISION on shells that use gettext to force a package rebuildTijl Coosemans2014-12-022-1/+2
| | | | | | | | | and reinstall. This should make the shells link with libintl.so.8 instead of libintl.so.9 and should give package users a better chance of having a working shell when something went wrong with the gettext update. Notes: svn path=/head/; revision=373773
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-2610-31/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* - Update to 20141024Johan van Selst2014-11-263-11/+12
| | | | | | | - Adopt port Notes: svn path=/head/; revision=373445
* Let the ports tree determine the DISTFILES nameBaptiste Daroussin2014-11-221-2/+1
| | | | Notes: svn path=/head/; revision=373030
* Fix manpageBaptiste Daroussin2014-11-221-0/+13
| | | | | | | Spotted by: make check-man Notes: svn path=/head/; revision=373029