| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
- Take maintainership.
PR: 247298
Submitted by: /me
Approved by: stephen (previous maintainer)
Differential Revision: D24195
Notes:
svn path=/head/; revision=539413
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=539412
|
|
|
|
| |
Notes:
svn path=/head/; revision=539411
|
|
|
|
| |
Notes:
svn path=/head/; revision=539410
|
|
|
|
| |
Notes:
svn path=/head/; revision=539409
|
|
|
|
|
|
|
|
| |
- Shorten the COMMENT line
- Point WWW line to a working website
Notes:
svn path=/head/; revision=539408
|
|
|
|
|
|
|
|
|
|
|
|
| |
C-Dogs SDL is a classic overhead run-and-gun game, supporting up to 4 players
in co-op and deathmatch modes. Customize your player, choose from many weapons,
and blast, slide and slash your way through over 100 user-created campaigns.
Have fun!
WWW: https://github.com/cxong/cdogs-sdl
Notes:
svn path=/head/; revision=539405
|
|
|
|
| |
Notes:
svn path=/head/; revision=539404
|
|
|
|
| |
Notes:
svn path=/head/; revision=539403
|
|
|
|
| |
Notes:
svn path=/head/; revision=539402
|
|
|
|
| |
Notes:
svn path=/head/; revision=539401
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Release notes:
- https://github.com/BastilleBSD/bastille/releases/tag/0.6.20200414
PR: 245630
Submitted by: christer.edwards@gmail.com (maintainer)
Approved by: koobs (mentor, ports)
MFH: No (bugfix of prior release not megred)
Notes:
svn path=/head/; revision=539400
|
|
|
|
| |
Notes:
svn path=/head/; revision=539398
|
|
|
|
|
|
|
| |
Reported by: fallout
Notes:
svn path=/head/; revision=539397
|
|
|
|
|
|
|
| |
Reported by: fallout
Notes:
svn path=/head/; revision=539396
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539395
|
|
|
|
| |
Notes:
svn path=/head/; revision=539394
|
|
|
|
|
|
|
|
| |
PR: 246541
Submitted by: Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Notes:
svn path=/head/; revision=539393
|
|
|
|
| |
Notes:
svn path=/head/; revision=539392
|
|
|
|
| |
Notes:
svn path=/head/; revision=539391
|
|
|
|
| |
Notes:
svn path=/head/; revision=539390
|
|
|
|
| |
Notes:
svn path=/head/; revision=539389
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539388
|
|
|
|
|
|
|
|
| |
PR: 240547
Submitted by: Radim Kolar <hsn@sendmail.cz> (maintainer)
Notes:
svn path=/head/; revision=539387
|
|
|
|
|
|
|
|
| |
PR: 242728
Submitted by: Johannes 5 <joemann@beefree.free.de> (maintainer)
Notes:
svn path=/head/; revision=539386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix a conflict with x11/nvidia-driver involving the file
${PREFIX}/lib32/libGL.so.1.
While here, also stop tracking a parallel and redundant history in
nvidia.sh: the existing history in that file is removed so that the svn logs
are now the only history source (but of course the histoty in the file can
be retrieved from older revisions if needed).
PR: 245496
Submitted by: iwtcex@gmail.com
Reported by: daemonpup@tuta.io
Tested by: daemonpup@tuta.io
Approved by: gerald (mentor)
Notes:
svn path=/head/; revision=539385
|
|
|
|
| |
Notes:
svn path=/head/; revision=539384
|
|
|
|
|
|
|
|
| |
PR: 243110
Submitted by: Tomoyuki Sakurai <trombik1973@gmail.com>
Notes:
svn path=/head/; revision=539383
|
|
|
|
|
|
|
|
| |
PR: 244946
Submitted by: maintainer
Notes:
svn path=/head/; revision=539382
|
|
|
|
|
|
|
| |
Reported by: upstream notification
Notes:
svn path=/head/; revision=539381
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the only remaining user.
When closing an lmdb database, all memory and file descriptor resources
are released, including the shared memory pages that contained the
robust mutex.
However, before this commit, prior to unmapping the pages that contained
the robust mutexex, lmdb did not destroy the mutexes first. This would
create a problem when an application opens and closes a database, then
open it again.
According to libthr(3), by default, a shared lock backed by a mapped
file in memory is automatically destroyed on the last unmap of the
corresponding file' page, which is allowed by POSIX.
After unmapping the shared pages, the kernel writes off all active
robust mutexes associated with these pages. However, the userland
threading library still keeps the record (pshared_lookup in
thr_pshared.c of libthr) for these objects as they are not really
destroyed before, so that it don't have to ask the kernel every
time when looking them up.
Now, a later re-open of the database might have mapped the lock file
to the same memory location. Because the threading library have
remembered the robust mutex object, it would just reuse it even though
it was already invalid from kernel's point of view. Unfortunately,
regular lock operations would still work for this process.
Should another lmdb process opens the same database, it would attempt
to obtain the robust mutex (no longer recognized by kernel) because it
would see another process holding a file lock, but that would fail
because the robust mutex is invalid for the kernel.
Explicitly destroy the mutex if we are the last remaining user to ensure
the mutex is always in a known defined state.
OpenLDAP ITS #9278
With debugging help from: kib
PR: 244493
MFH: 2020Q2
Notes:
svn path=/head/; revision=539379
|
|
|
|
| |
Notes:
svn path=/head/; revision=539378
|
|
|
|
|
|
|
|
| |
Use C99 mode:
/wrkdirs/usr/ports/devel/stlink/work/stlink-1.6.1/src/usb.c:818: error: 'for' loop initial declaration used outside C99 mode
Notes:
svn path=/head/; revision=539377
|
|
|
|
|
|
|
| |
Relnotes: https://github.com/Maproom/qmapshack/releases
Notes:
svn path=/head/; revision=539376
|
|
|
|
| |
Notes:
svn path=/head/; revision=539375
|
|
|
|
| |
Notes:
svn path=/head/; revision=539374
|
|
|
|
|
|
|
|
|
|
|
|
| |
https://github.com/Tencent/ncnn/commit/17c445480fee
https://github.com/Tencent/ncnn/commit/eec5cf718015
CMake Warning at CMakeLists.txt:98 (message):
The submodules were not downloaded! NCNN_VULKAN_ONLINE_SPIRV will be turned
off.
Notes:
svn path=/head/; revision=539373
|
|
|
|
| |
Notes:
svn path=/head/; revision=539372
|
|
|
|
| |
Notes:
svn path=/head/; revision=539371
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Tuesday, 16 June 2020. Today KDE releases a bugfix update to KDE Plasma 5,
versioned 5.19.1. Plasma 5.19 was released in June 2020 with many feature
refinements and new modules to complete the desktop experience.
This release adds a month's worth of new translations and fixes from KDE's
contributors. The bugfixes are typically small but important and include:
* Dr Konqi: Map neon in platform guessing.
* Battery applet not showing up in tray.
* Fix confirmLogout setting for SessionManagement.
Changelog:
https://kde.org/announcements/plasma-5.19.0-5.19.1-changelog
Notes:
svn path=/head/; revision=539370
|
|
|
|
|
|
|
|
|
|
|
| |
- Updated to the last commit
- Fixed license file, name, perms
PR: 247245
Submitted by: Daniel Menelkir (maintainer)
Notes:
svn path=/head/; revision=539369
|
|
|
|
|
|
|
|
| |
PR: 247239
Approved by: pizzamig (maintainer)
Notes:
svn path=/head/; revision=539368
|
|
|
|
|
|
|
|
|
| |
PR: 245976
Submitted by: Ronald Klop
Approved by: Andrew Shevchuk (maintainer)
Notes:
svn path=/head/; revision=539367
|
|
|
|
|
|
|
|
|
|
|
| |
powerpc:
SSE4.2 required but compiler doesn't support it.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=539366
|
|
|
|
|
|
|
|
|
| |
PR: 247265
Submitted by: Josh Howard
Approved by: hiyorin@gmail.com (maintainer)
Notes:
svn path=/head/; revision=539365
|
|
|
|
|
|
|
|
|
| |
/usr/local/lib/libtcmalloc_minimal.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::reserve(unsigned long)@GLIBCXX_3.4.21'
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=539364
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539363
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539362
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539361
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=539360
|