Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
4.8.32 06 Nov 2024 15:17:35
![commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d](/images/git.png) ![commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d](/images/codeberg.svg) ![commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d commit hash: 6e2da9672f79f44048d597f0f61e4646cdeade9d](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Robert Clausecker (fuz) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
filesystems: add new category for file systems and related utilities
The filesystems category houses file systems and file system utilities.
It is added mainly to turn the sysutils/fusefs-* pseudo-category into
a proper one, but is also useful for the sundry of other file systems
related ports found in the tree.
Ports that seem like they belong there are moved to the new category.
Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are
not moved as they currently don't fetch and don't have TIMESTAMP set
in their distinfo, but that is required to be able to push a rename
of the port by the pre-receive hook.
Approved by: portmgr (rene)
Reviewed by: mat
Pull Request: https://github.com/freebsd/freebsd-ports/pull/302
PR: 281988 |
4.8.32 04 Nov 2024 17:17:46
![commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989 commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989](/images/git.png) ![commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989 commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989](/images/codeberg.svg) ![commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989 commit hash: 79ebed704e2c156bc980c506f4fd6dffffd3c989](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Gleb Popov (arrowd) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) Author: Piotr Smyrak |
misc/mc: fix packaging with EDITOR option disabled
Pull Request: https://github.com/freebsd/freebsd-ports/pull/315 |
4.8.32 18 Sep 2024 16:37:38
![commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d](/images/git.png) ![commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d](/images/codeberg.svg) ![commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d commit hash: bcfcbefc31bf5205701ab75d02072271ccd6ba9d](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update Midnight Commander to version 4.8.32
PR: 281057
Reported by: portscout |
4.8.31 31 Jan 2024 09:36:54
![commit hash: b729969ca735c302869d175990629bd21b860d27 commit hash: b729969ca735c302869d175990629bd21b860d27](/images/git.png) ![commit hash: b729969ca735c302869d175990629bd21b860d27 commit hash: b729969ca735c302869d175990629bd21b860d27](/images/codeberg.svg) ![commit hash: b729969ca735c302869d175990629bd21b860d27 commit hash: b729969ca735c302869d175990629bd21b860d27](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update Midnight Commander to version 4.8.31
- Added support for LZO(P) compressed files (via external program)
- Support for native FISH server and protocol had been dropped;
VFS renamed to generic ``shell''
- Add missing run-time dependency on English dictionary, otherwise
on every launch, the editor would greet the user with ``No word
lists can be found for the language "en"'' error message
- Disable Aspell support by default again as it turned out to be
not just a build dependency
- Do not pass $(E2P_CFLAGS) to ``src/vfs/local/Makefile.in'' now
that the build issue had been fixed upstream
- Install manpages under ${PREFIX}/share/man, per new world order
PR: 276424 (editor nagging)
Reported by: portscout (new version) |
4.8.30_1 15 Jan 2024 10:38:18
![commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588 commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588](/images/git.png) ![commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588 commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588](/images/codeberg.svg) ![commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588 commit hash: a5ade24bb0d77d5ca30a27dc33748ff644a09588](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: drop needless run-time dependencies on Aspell and Xlib
Yury V. Zaytsev points out that for X11 and Aspell support, header
files <X11/Xlib.h> and <aspell.h> are only needed during the build,
while their corresponding libraries would be loaded dynamically if
available; if not, mc(1) would still work fine, just without those
features. The source code and ldd(1) output confirm his findings:
% cd $WRKDIR/mc-4.8.30 && grep -R -A1 g_module_build_path *
lib/tty/x11conn.c: x11_module_fname = g_module_build_path (NULL, "X11");
lib/tty/x11conn.c- x11_module = g_module_open (x11_module_fname,
G_MODULE_BIND_LAZY);
--
src/editor/spell.c: spell_module_fname = g_module_build_path (NULL,
"libaspell");
src/editor/spell.c- spell_module = g_module_open (spell_module_fname,
G_MODULE_BIND_LAZY);
This allows to enable Aspell support by default and drop X11-less
slave port now that both of these dependencies are build-time only
yet still can be completely disabled via options.
PR: 269120 |
4.8.30 07 Sep 2023 08:16:34
![commit hash: 739ba086b074582a47002e1870c3f85027c674a4 commit hash: 739ba086b074582a47002e1870c3f85027c674a4](/images/git.png) ![commit hash: 739ba086b074582a47002e1870c3f85027c674a4 commit hash: 739ba086b074582a47002e1870c3f85027c674a4](/images/codeberg.svg) ![commit hash: 739ba086b074582a47002e1870c3f85027c674a4 commit hash: 739ba086b074582a47002e1870c3f85027c674a4](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update Midnight Commander to version 4.8.30
PR: 273235
Submitted by: Phil Krylov |
4.8.28 03 Jan 2023 08:26:26
![commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934 commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934](/images/git.png) ![commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934 commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934](/images/codeberg.svg) ![commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934 commit hash: 154daac90dcda8c7602b65d7edac6be3995ce934](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Depend on `sysutils/e2fsprogs-core' in the remaining three ports
Chase commit 14e733a6bb4b and depend on the new port origin which
most utilities and libraries now belong to. This would often go
unnoticed as `sysutils/e2fsprogs-core' would be pulled regardless,
but might cause package build tools to always rebuild consumers.
PR: 268551 |
07 Sep 2022 21:58:51
![commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4](/images/git.png) ![commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4](/images/codeberg.svg) ![commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Stefan Eßer (se) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
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) |
4.8.28 07 Sep 2022 21:10:59
![commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52](/images/git.png) ![commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52](/images/codeberg.svg) ![commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Stefan Eßer (se) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
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 ) |
4.8.28 10 Aug 2022 11:19:00
![commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0 commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0](/images/git.png) ![commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0 commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0](/images/codeberg.svg) ![commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0 commit hash: 20c44243c483cda921aba0a776c90ab3f3a284b0](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc{,-nox11}: slightly improve the ports' Makefiles (+)
- Do not globally pollute -I/-L with ${LOCALBASE} when handling
the NLS option and pass it as the --with-libintl-prefix instead
- Drop no longer supported --with-slang-includes configure switch,
correct paths are obtained via pkgconf(1) these days
- Set PKGNAMESUFFIX together with CONFLICTS_INSTALL in the master
so they are always coherent (previously, when the main port is
built with X11 option unset it would conflict with itself) |
4.8.28 20 Jul 2022 14:22:28
![commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1 commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1](/images/git.png) ![commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1 commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1](/images/codeberg.svg) ![commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1 commit hash: b832da1849e4bcfff05da62c69ee4a556e83d2d1](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Tobias C. Berner (tcberner) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adam@vectors.cx>
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alan E <alane@FreeBSD.org>
* Alex Semenyaka <alex@rinet.ru>
* Alex Stangl <alex@stangl.us>
* Alexander Logvinov <avl@FreeBSD.org>
* Alexander Logvinov <ports@logvinov.com>
* Alexander Nusov <alexander.nusov@nfvexpress.com>
* Alexander Timoshenko <gonzo@univ.kiev.ua> (Only the first 15 lines of the commit message are shown above ) |
4.8.28 31 Mar 2022 07:29:04
![commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a](/images/git.png) ![commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a](/images/codeberg.svg) ![commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a commit hash: d4bdaf8beffc6f522a122b29b0dc9f1ff3d2be1a](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: drop SMB option now that support had been removed upstream
SMB support has already been disabled in Debian; only Fedora and us
had been keeping it on despite it's been half-broken for 13 years. |
4.8.28 30 Mar 2022 00:58:18
![commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585 commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585](/images/git.png) ![commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585 commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585](/images/codeberg.svg) ![commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585 commit hash: cb08f87a82c5b015bdc73bf14c9ada8730b61585](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update Midnight Commander to version 4.8.28. |
4.8.27_1 23 Nov 2021 22:11:40
![commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af](/images/git.png) ![commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af](/images/codeberg.svg) ![commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Stefan Eßer (se) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
*/*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL
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) |
4.8.27_1 26 Sep 2021 15:44:55
![commit hash: bf294827efee6b6298dcd76a985b97d8638a4966 commit hash: bf294827efee6b6298dcd76a985b97d8638a4966](/images/git.png) ![commit hash: bf294827efee6b6298dcd76a985b97d8638a4966 commit hash: bf294827efee6b6298dcd76a985b97d8638a4966](/images/codeberg.svg) ![commit hash: bf294827efee6b6298dcd76a985b97d8638a4966 commit hash: bf294827efee6b6298dcd76a985b97d8638a4966](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: improve the check whether installed diff(1) is GNU or BSD
In 2017, GNU diff had been replaced by BSD licensed diff in our base,
but some features of GNU diff had not been implemented, particularly,
the ``group format'' family of options. Instead of checking for the
${OSVERSION} value, check if installed diff(1) implementation is GNU
or BSD one based on the --version output.
Because conditions are subject to immediate expansion, we cannot use
${DIFF} and ${GREP} variables; however, literal ``diff'' is actually
correct in this particular case as user's preferred diff(1) does not
necessarily point to ``/usr/bin/diff'' which ${DIFF} expands to.
While here, amend the EDITOR option description so it clearly refers
to the internal *text* editor. |
4.8.27_1 22 Sep 2021 06:29:22
![commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da](/images/git.png) ![commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da](/images/codeberg.svg) ![commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da commit hash: d37893d25e54a580b0c7f9ceaef3f6a3814815da](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: handling of the port's options had been improved (+)
- Use correct helper for X11 option, which is --with-x, not --enable-x
- Do not pass bogus --without-smb-foobar=... options when SMB support
is disabled
- Allow to build with Aspell support in the internal editor while here
PR: 258632 |
4.8.27 20 Aug 2021 09:01:54
![commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd](/images/git.png) ![commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd](/images/codeberg.svg) ![commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd commit hash: 27d49c4c907fff7d64f82d400fd0897464f796dd](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update Midnight Commander to version 4.8.27, but not only
- Don't try to patch up unsupported compiler warning options and fix
the configure script detection logic instead (it correctly passes
-Werror in Clang's case, but assumes that $CC is literally called
`clang' which is, of course, wrong on both FreeBSD and in general)
- Keep the UNRAR_VERSION adjustment for now: even though it had been
fixed upstream, with version 7 it would brake again
- Expand the creator line in the Makefile to include Torsten's full
name, with his permission. We have other people named Torsten in
the project these days, and this change makes it less confusing
PR: 253796, 257888 |
4.8.26_2 24 Jun 2021 08:03:15
![commit hash: 4eb82883317e97c3851e041c415fca854bf062fc commit hash: 4eb82883317e97c3851e041c415fca854bf062fc](/images/git.png) ![commit hash: 4eb82883317e97c3851e041c415fca854bf062fc commit hash: 4eb82883317e97c3851e041c415fca854bf062fc](/images/codeberg.svg) ![commit hash: 4eb82883317e97c3851e041c415fca854bf062fc commit hash: 4eb82883317e97c3851e041c415fca854bf062fc](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: the port had been improved (+)
- By popular demand, disable EXTATTR option by default: the benefits
it provides are outweighed by having to pull `sysutils/e2fsprogs'
port as dependency and various troubles people are having with it.
While here, adjust the description as it was is a bit misleading:
it is not limited exclusively to ext2fs, but can also manage UFS-
specific flags like append-only, etc. [1]
- Fix ZIP/UNZIP program detection and add missing dependency on the
`archivers/zip' as FreeBSD does not provide native zip(1) program.
This bug had been present since late 2014: when fixing PR 193766,
an incomplete patch had been committed; it went unnoticed because
apparently users rarely create ZIP archives, and extraction worked
because `archivers/unzip' is very commonly installed package [2]
PR: 249284, 256766 [1]
256546, 193766 [2] |
4.8.26_1 27 May 2021 08:42:43
![commit hash: b20b92686b504c322dd809c3107acb4edda0eb08 commit hash: b20b92686b504c322dd809c3107acb4edda0eb08](/images/git.png) ![commit hash: b20b92686b504c322dd809c3107acb4edda0eb08 commit hash: b20b92686b504c322dd809c3107acb4edda0eb08](/images/codeberg.svg) ![commit hash: b20b92686b504c322dd809c3107acb4edda0eb08 commit hash: b20b92686b504c322dd809c3107acb4edda0eb08](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: the port had been improved (+)
- GC outdated CONFLICTS (misc/mc-light had been removed on 2019-10-16)
- Add missing SCREEN_DESC (screen library) option description
- Offer new option, EXTATTR (ext2fs extended attributes support) and
ensure, in somewhat ugly way, that dependency on `sysutils/e2fsprogs'
won't be silently picked up if this option is disabled
- Tell users that /bin/sh, our base system sh(1), is not supported as
concurrent subshell because it does not allow "precmd" hooks [1]
- Fix entering RAR archives after `archivers/unrar` had been updated
to version 6.x [2]
- Use helper target and simplify installation of documentation files
PR: 208391 [1], 251404 [2] |
4.8.26 22 May 2021 03:25:48
![commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e](/images/git.png) ![commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e](/images/codeberg.svg) ![commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e commit hash: 93f016f6e0ae778f02edda66442d48a11180e36e](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Alexey Dokuchaev (danfe) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
graphics/*gphoto2;misc/mc: take maintainership. |
4.8.26 22 May 2021 02:13:01
![commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3 commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3](/images/git.png) ![commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3 commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3](/images/codeberg.svg) ![commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3 commit hash: 95d52e52fb64ed8c6ccb6906a38dbede128a64c3](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Ben Woods (woodsb02) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
*/*: Fix ENOTIME: return my ports to the pool
Reset maintainership of my ports to ports@FreeBSD.org so others can
step in to help where I haven't been able to find the time. |
4.8.26 03 May 2021 13:00:24
![commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf](/images/git.png) ![commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf](/images/codeberg.svg) ![commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf commit hash: 614b5da0cb87aff908ea93228dffe59f4ef81caf](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Mathieu Arnold (mat) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Ports should not change their names depending on options.
Reported by: tech-lists zyxst net |
4.8.26 06 Apr 2021 14:31:07
![commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb](/images/git.png) ![commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb](/images/codeberg.svg) ![commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb](/images/github.svg) ![files touched by this commit files touched by this commit](/images/logs.gif) |
Mathieu Arnold (mat) ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Remove # $FreeBSD$ from Makefiles. |
4.8.26 26 Jan 2021 23:04:55
![Revision:563008 Revision:563008](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Fix build with ncurses option
PR: 252903
Submitted by: Rozhuk Ivan <rozhuk.im@gmail.com>
Reported by: jakub_lach@mailplus.pl
Reported by: mbeis@xs4all.nl
Reported by: m.bueker@berlin.de
Reported by: michael.osipov@siemens.com |
4.8.26 21 Jan 2021 23:21:34
![Revision:562259 Revision:562259](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.26
Changes this release:
https://midnight-commander.org/wiki/NEWS-4.8.26 |
4.8.24 20 Jan 2020 22:55:55
![Revision:523694 Revision:523694](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.24
Upstream have also added python 3 support with this release.
Changes this release:
https://midnight-commander.org/wiki/NEWS-4.8.24
PR: 242898 |
4.8.23 07 Dec 2019 00:33:47
![Revision:519172 Revision:519172](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.23
Changes this release:
https://midnight-commander.org/wiki/NEWS-4.8.23
PR: 242280
Submitted by: Leonid Nevecherya <nevecherya@gmail.com> |
4.8.22_2 06 Nov 2019 18:09:45
![Revision:516917 Revision:516917](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
zeising ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Add USES=xorg USES=gl, ports categories l and m
Add USES=xorg and USES=gl to ports in categories starting with 'l' and 'm'.
While here, try to sprinkle other USES (mostly gnome and sdl) as needed. |
4.8.22_2 28 Oct 2019 00:34:10
![Revision:515841 Revision:515841](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
meta ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
New port: misc/mc-nox11: misc/mc but without x11 dependencies
PR: 238425
Submitted by: Dmitry Wagin <dmitry.wagin@ya.ru>
Approved by: portmgr (maintainer timeout: 2 months) |
4.8.22_1 31 Jan 2019 11:15:15
![Revision:491705 Revision:491705](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
tobik ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Do not override variables after bsd.port.pre.mk
At least the Python run dependency is not added on FreeBSD >= 12.0
because of it.
PR: 234587
Approved by: woodsb02 (maintainer timeout, 4 weeks) |
4.8.22 19 Jan 2019 08:13:32
![Revision:490713 Revision:490713](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Tidy up Makefile
This is a no-op |
4.8.22 19 Jan 2019 07:43:52
![Revision:490711 Revision:490711](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.22
PR: 234598
Submitted by: Oleg Sidorkin <osidorkin@gmail.com> |
4.8.21 23 Aug 2018 08:19:02
![Revision:477859 Revision:477859](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
ehaupt ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update misc/mc to 4.8.21
- Update WWW (current URL returns: HTTP/1.1 301 Moved Permanently)
- Pacify portlint
PR: 229581
Approved by: maintainer-timeout (woodsb02, 47 days) |
4.8.20_2 15 Feb 2018 17:35:05
![Revision:461937 Revision:461937](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
amdmi3 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Fix LICENSE
- Add LICENSE_FILE
- Add missing run-dependency on python
- Fix shebangs properly, do not fix shebangs on files which do not have them
Approved by: portmgr blanket |
4.8.20_1 17 Dec 2017 06:58:41
![Revision:456522 Revision:456522](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Fix SUBSHELL blank terminal upon opening in xterm with Slang
Note: Unfortunately this does not fix this issue on the FreeBSD console.
PR: 217758
Submitted by: Alexander Moisseev <moiseev@mezonplus.ru>
Reported by: Dron <dron_2@ua.fm>
Reported by: danfe
MFH: 2017Q4 |
4.8.20 16 Dec 2017 05:42:53
![Revision:456456 Revision:456456](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.20
Changes this release:
https://midnight-commander.org/wiki/NEWS-4.8.20 |
4.8.19_3 23 Jul 2017 15:26:36
![Revision:446488 Revision:446488](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Fix invalid tty baudrate detection disabling verbose mode
PR: 220944
Submitted by: Michael Buker <m.bueker@berlin.de>
Obtained from: https://midnight-commander.org/ticket/2452#comment:15
MFH: 2017Q3 |
4.8.19_2 29 May 2017 13:50:20
![Revision:441985 Revision:441985](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Use textproc/diffutils on FreeBSD 12
- The new bsddiff in FreeBSD 12 does not yet support --old-group-format
- Fix python shebangfix to require python2
PR: 219277
Submitted by: bsam |
4.8.19_1 06 Mar 2017 08:05:55
![Revision:435520 Revision:435520](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Only install desktop entry and icon if X11 option is enabled
PR: 214812
Submitted by: Robert Schulze <rs@bytecamp.net> |
4.8.19 06 Mar 2017 07:31:21
![Revision:435519 Revision:435519](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.19
Changes this release:
http://midnight-commander.org/wiki/NEWS-4.8.19 |
4.8.18 15 Oct 2016 02:39:02
![Revision:423999 Revision:423999](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.18
- Silence post-patch sed commands
- Remove patch-src_cons.handler.c; changes upstreamed
Changes this release:
http://www.midnight-commander.org/wiki/NEWS-4.8.18
Approved by: adamw (mentor, implicit) |
4.8.17 11 May 2016 11:44:40
![Revision:414983 Revision:414983](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.17
- Remove patches for upstream tickets 2742, 3611, 3617 (resolved)
- Move patch of lib/tty/win.c to lib/tty/tty-ncurses.c (upstream change)
- Add patch of src/cons.handler.c to fix build, reported upstream [1]
Changes this release:
https://www.midnight-commander.org/wiki/NEWS-4.8.17
[1] https://www.midnight-commander.org/ticket/3643
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D6321 |
4.8.16_1 09 May 2016 20:46:48
![Revision:414892 Revision:414892](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
woodsb02 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update the maintainer email address for the ports I
maintain to woodsb02@FreeBSD.org
Approved by: adamw (mentor)
Differential Revision: https://reviews.freebsd.org/D6278 |
4.8.16_1 01 Apr 2016 14:16:20
![Revision:412348 Revision:412348](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
mat ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
4.8.16_1 18 Mar 2016 12:04:32
![Revision:411345 Revision:411345](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
feld ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Multiple fixes
- Fix subshell functionality for csh users
- Make SFTP an option, enabled by default
- Fix SIGILL on FreeBSD 9.x
- Fix perl ls helper with fish shell
PR: 207487, 208027, 208102, 208104 |
4.8.16 14 Mar 2016 22:47:03
![Revision:411128 Revision:411128](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
feld ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: Update to 4.8.16
Changelog: https://www.midnight-commander.org/wiki/NEWS-4.8.16
PR: 207959 |
4.8.15 25 Nov 2015 12:29:01
![Revision:402393 Revision:402393](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
robak ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: fix - delete patch obsolete after 4.8.15 update
PR: 204724
Submitted by: Boris Korzun <drtr0jan@yandex.ru>
Approved by: portmgr (blanket) |
4.8.15 25 Nov 2015 11:34:46
![Revision:402392 Revision:402392](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
robak ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: update 4.8.14 -> 4.8.15
- Rewrite port options code
PR: 204724
Submitted by: Ben Woods <woodsb02@gmail.com> (maintainer) |
4.8.14_1 27 Apr 2015 12:19:46
![Revision:384828 Revision:384828](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
adamw ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix "Cannot create pipe streams" when running shell commands using the Filtered
View menu item on the File menu.
PR: 199366
Reported by: Trond.Endrestol@ximalas.info
Patch by: Ben Woods (maintainer) |
4.8.14 23 Mar 2015 20:46:41
![Revision:382039 Revision:382039](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
pi ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: 4.8.13 -> 4.8.14
- With patch from Ranjan1018 <214748mv@gmail.com> to fix man page
display error from PR 195309
- submitter becomes maintainer
PR: 198829
Submitted by: Ben Woods <woodsb02@gmail.com> |
4.8.13_3 09 Dec 2014 15:58:50
![Revision:374403 Revision:374403](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
pi ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: really re-add small patch that was deleted in r369133
Thanks to tijl: patch syntax was bogus and was ignored.
PR: 194627 |
4.8.13_2 09 Dec 2014 12:03:14
![Revision:374372 Revision:374372](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
pi ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
misc/mc: re-add small patch that was deleted in r369133
Change:
save/restore the sub-shell's screen on Ctrl+O and/or command execution
PR: 194627
Submitted by: andriys@gmail.com |
4.8.13_1 21 Nov 2014 19:48:12
![Revision:373010 Revision:373010](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Reset maintainer to ports@ |
4.8.13_1 24 Sep 2014 05:29:57
![Revision:369159 Revision:369159](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Bump PORTREVISION for pkg-plist change, remove @dirm* [1]
Reported by: jhale [1] |
4.8.13 23 Sep 2014 22:49:49
![Revision:369133 Revision:369133](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.8.13, announce message is here:
http://www.midnight-commander.org/wiki/NEWS-4.8.13
- Use ZIP=${ZIP_CMD} instead of ZIP=${UNZIP_CMD} [1]
- Change patch files/patch-lib__tty__win, changed by upstream
- Remove obsolete patch files/patch-mc-wrapper
PR: 193766
Submitted by: Dominik Kows <dkolowski@gmail.com> [1] |
4.8.12_2 15 Jun 2014 23:44:00
![Revision:357939 Revision:357939](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
amdmi3 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Switch to USES=libtool
- Fix python shebangs
Approved by: portmgr blanket |
4.8.12_1 03 Apr 2014 11:26:24
![Revision:349999 Revision:349999](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Bump PORTREVISION for dependencies changes
- Remove USE_PYTHON=yes and USE_RUBY=yes
Reported by: timur@, Sergey V. Dyatko <sergey.dyatko@gmail.com> |
4.8.12 02 Apr 2014 22:30:29
![Revision:349958 Revision:349958](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.8.12, announce message is here:
http://www.midnight-commander.org/wiki/NEWS-4.8.12
- Change master sites, add icon
- Use tar:xz instead of USE_XZ=yes
- Add USES shebangfix and SHEBANG_FILES
- Add USE_PYTHON=yes and USE_RUBY=yes
- Add pkg-message, information to reinstall if problems and for Screen
Option
- Remove TODO from DOCS
- Add REINPLACE, fix deprecated messages
- Add Desktop entry file
- Remove obsolete patches, changed by upstream |
4.8.11 07 Dec 2013 10:27:09
![Revision:335823 Revision:335823](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Fix build with Option NCURSES, add patches
Reported by: "Herbert J. Skuhra" <hskuhra@eumx.net>
Approved by: pawel / wg (mentors, implicit) |
4.8.11 06 Dec 2013 23:49:35
![Revision:335794 Revision:335794](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.8.11
- Remove obsolete patches
Approved by: pawel / wg (mentors, implicit) |
4.8.10 02 Nov 2013 22:13:00
![Revision:332544 Revision:332544](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Pass maintainership to submitter
Approved by: pawel / wg (mentors, implicit), fjoe (maintainer) |
4.8.10 02 Nov 2013 22:08:01
![Revision:332543 Revision:332543](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Change SMB and NCURSES
- Change pkg-plist, fix MAN
PR: ports/183170 ports/183284 ports/183402
Submitted by: various
Approved by: pawel / wg (mentors, implicit) |
4.8.10 21 Oct 2013 21:07:18
![Revision:331192 Revision:331192](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
nemysis ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.8.10
- Use the new format for LIB_DEPENDS
- Remove PORTDATA use full pkg-plist
- Add DOCS and NCURSES Options
- Add EDITOR to default Options
- Remove NLS and EDIT from default Options
- Support STAGEDIR and add OPTIONS_SUB
- Add DOCS
- Remove obsolete REINPLACE_CMD
- Add patch, resolve Syntax error
PR: ports/181364
Submitted by: nemysis (self)
Approved by: pawel / wg (mentors, implicit), maintainer timeout |
20 Sep 2013 20:50:59
![Revision:327745 Revision:327745](/images/subversion.png)
|
bapt ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Add NO_STAGE all over the place in preparation for the staging support (cat:
misc) |
4.8.8 14 Sep 2013 12:04:19
![Revision:327278 Revision:327278](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
az ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- convert to the new perl5 framework
- convert USE_GMAKE to Uses
Approved by: portmgr (bapt@, blanket) |
4.8.8 28 Jul 2013 07:56:47
![Revision:323813 Revision:323813](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Add missing dependency on libssh2.
PR: 180737
Submitted by: Oleg Ginzburg <olevole@olevole.ru> |
4.8.8 11 Jun 2013 14:56:43
![Revision:320597 Revision:320597](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
miwi ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Fix i18n manpages
Reported by: pkg (DEVELOPER_MODE) |
4.8.8 03 Jun 2013 07:40:32
![Revision:319758 Revision:319758](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
jgh ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- adoption of optionsNG
- trim historical headers
Approved by: portmgr (bapt) |
4.8.8 18 May 2013 11:57:58
![Revision:318426 Revision:318426](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to last released 4.8.8.
- Switch to the official master site now that http://midnight-commander.org/ is
back. |
4.8.1.7 09 May 2013 08:58:07
![Revision:317726 Revision:317726](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Upstream site is down for about two weeks:
https://mail.gnome.org/archives/mc-devel/2013-April/msg00013.html
Switch to local distfiles for a while. |
4.8.1.7 06 May 2013 09:06:19
![Revision:317489 Revision:317489](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
jgh ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- convert to USES for gettext
- mark broken (doesn't fetch)
Approved by: portmgr (bapt@) |
4.8.1.7 27 Apr 2013 11:59:29
![Revision:316662 Revision:316662](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
mva ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: zeising |
4.8.1.7 23 Apr 2013 14:20:28
![Revision:316355 Revision:316355](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
bapt ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Finish converting the whole ports tree to USES=pkgconfig |
4.8.1.7 26 Jan 2013 06:38:17
![Revision:310999 Revision:310999](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.8.1.7
- Fix from upstream for https://www.midnight-commander.org/ticket/2754
(can't run mceedit without file name as parameter)
Submitted by: Herbert J. Skuhra |
4.8.1.6 05 Nov 2012 12:50:25
![Revision:307006 Revision:307006](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Specify LICENSE.
Feature safe: yes |
4.8.1.6 03 Nov 2012 11:02:46
![Revision:306904 Revision:306904](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.8.1.6.
Feature safe: yes |
4.8.1.4_1 03 Nov 2012 11:02:22
![Revision:306903 Revision:306903](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Add trailing slash in WWW URL.
Feature safe: yes |
4.8.1.4_1 02 Oct 2012 10:58:22
![Revision:305155 Revision:305155](/images/subversion.png) ![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix clang build.
PR: 171772
Submitted by: Andrey Simonenko |
4.8.1.4_1 29 Aug 2012 13:46:28
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix bug: alt+h command input line not updated
The fix is obtained from the upstream:
https://www.midnight-commander.org/ticket/2810
PR: 171157 |
4.8.1.4 29 Aug 2012 08:01:04
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.8.1.4. |
4.8.1.1_1 26 Jul 2012 05:40:24
![files touched by this commit files touched by this commit](/images/logs.gif) |
bapt ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
new devel/pkgconf added to replace devel/pkg-config. new version of pkg-config
are no more self hosting so we are stuck with 0.25 version while pkgconf provide
the same set of features as 0.27 and a compatible frontend. A symlink to
pkg-config has been added for convenience and compatibility
This also introduces a new macro to use pkgconf in your ports:
USE_PKGCONFIG
it can take the following arguments:
- yes (meaning build only dep)
- build (meaning build only dep)
- run (meaning run only dep)
- both (meaning run and build dep)
From now USE_GNOME= pkgconfig is deprecated in favour of USE_PKGCONFIG
The old gnome macro has been modified to use pkgconf but still the sameway: run
and build dep to avoid large breakage.
While here fix some ports relying on pkg-config but not specifying it, fix some
ports broken because testing wrong .pc files, and fix ports using pkg-config
--version to determine pkg-config version instead of
pkg-config --modversion pkg-config like recommanded by pkg-config
With Hat: portmgr
Exp-runs by: bapt (pointhat-west), beat (pointyhat) |
4.8.1.1_1 01 Jun 2012 05:26:28
![files touched by this commit files touched by this commit](/images/logs.gif) |
dinoex ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- update png to 1.5.10 |
4.8.1.1 09 Apr 2012 12:37:38
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.8.1.1
PR: 166650
Submitted by: Svyatoslav Lempert
Feature safe: yes |
4.7.5.6 19 Feb 2012 01:24:23
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.7.5.6
PR: 165257 |
4.7.5.5_1 02 Dec 2011 12:16:26
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix Ctrl-O in xterm: FreeBSD xterm does not define "ti" and "te" but mc
tries to check their existence since 4.7.5.4.
PR: 161828
Feature safe: yes |
4.7.5.5 03 Nov 2011 00:38:47
![files touched by this commit files touched by this commit](/images/logs.gif) |
eadler ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- fix explicit use of unzip in ports
PR: ports/153429
Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua>
Approved by: maintainers (hq, gabor, amdmi3)
Approved by: maintainer timeout
Approved by: bapt,sahil (mentors, implicit) |
4.7.5.5 11 Oct 2011 02:09:45
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix pkg-plist. |
4.7.5.5 06 Oct 2011 13:43:24
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.7.5.5
PR: 161083 (partially)
Submitted by: Maxim Samsonov |
4.7.5_1 23 Sep 2011 22:26:39
![files touched by this commit files touched by this commit](/images/logs.gif) |
amdmi3 ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav |
4.7.5_1 21 Mar 2011 18:25:33
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Fix build with iconv support turned off [1]
- Fix pkg-plist when built without NLS support
Submitted by: Dimitry Andric [1] |
4.7.5 20 Jan 2011 08:55:15
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Update to 4.7.5
- Obey WITHOUT_X11
PR: 154154
Submitted by: Dima Panov
Feature safe: yes |
4.7.4_3 29 Dec 2010 20:04:42
![files touched by this commit files touched by this commit](/images/logs.gif) |
pgollucci ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.
PR: ports/153292
Submitted by: myself (pgollucci)
Tested by: -exp run by pav
Approved by: portmgr (pav) |
4.7.4_3 20 Oct 2010 13:46:01
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix hangs when exiting with "F10, Enter" if shell is tcsh:
http://www.midnight-commander.org/changeset/cde7a850d5d0027956f3c7005e81cfa8cc7a56a1
Submitted by: Ilya A. Arhipov |
4.7.4_2 04 Oct 2010 16:08:01
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix SAMBA support.
PR: 151160
Submitted by: Ivan Klymenko |
4.7.4_1 09 Sep 2010 12:10:28
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix build with up-to-date libslang2. |
4.7.4 08 Sep 2010 15:59:25
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Update to 4.7.4 |
4.7.2_2 08 Aug 2010 09:32:37
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Add a patch from upstream to fix the build with iconv disabled.
Submitted by: Dimitry Andric |
4.7.2_2 08 Aug 2010 07:16:48
![files touched by this commit files touched by this commit](/images/logs.gif) |
fjoe ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Fix zip/unzip location.
PR: 148025 |
4.7.2_1 04 Jun 2010 08:09:20
![files touched by this commit files touched by this commit](/images/logs.gif) |
pav ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
- Introduce a new USE_XZ knob that handles lzma/xz compressed distfiles
- Convert a bunch of ports to use it
PR: ports/146329
Submitted by: mm
With hat: portmgr |
4.7.2_1 31 May 2010 02:01:56
![files touched by this commit files touched by this commit](/images/logs.gif) |
ade ![search for other commits by this committer search for other commits by this committer](/images/search.jpg) |
Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. |