non port: databases/lmdb/Makefile |
SVNWeb
|
Number of commits found: 44 |
Mon, 24 Apr 2023
|
[ 06:01 Xin LI (delphij) ] 74ee079
databases/lmdb: upgrade to 0.9.30.
While I am there, also switch upstream to the OpenLDAP project directly.
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
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 )
|
Wed, 20 Jul 2022
|
[ 14:21 Tobias C. Berner (tcberner) ] d076ad9 (Only the first 10 of 718 ports in this commit are shown above. )
databases: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Choe, Cheng-Dae" whitekid
* "Mahdi Mokhtari <mokhi64@gmail.com>"
* "Meikel Brandmeyer" <ocaml-sqlite3-port@kotka.de>
* <hvo.pm@xs4all.nl>
* <jsmith@resonatingmedia.com>
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alan Snelson <Alan@Wave2.org> (Only the first 15 lines of the commit message are shown above )
|
Fri, 13 May 2022
|
[ 04:54 Xin LI (delphij) ] 70f2348
databases/lmdb: Fix static library installation.
INSTALL_LIB will strip symbols, and should not be used for static
libraries.
PR: ports/263884
Reported by: yuri
MFH: 2022Q2
|
Mon, 26 Jul 2021
|
[ 06:21 Xin LI (delphij) ] 88fe01c
databases/lmdb: update to 0.9.29.
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Wed, 10 Feb 2021
|
[ 23:32 delphij ]
Update to 0.9.28.
|
Wed, 23 Sep 2020
|
[ 00:32 delphij ]
databases/lmdb: Add a pkg-config file for use by other software that
expects them.
Submitted by: Daniel O'Connor <darius dons net au>
|
Tue, 16 Jun 2020
|
[ 21:51 delphij ]
databases/lmdb: in db_env_close0(), destroy robust mutexes if we are
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. (Only the first 15 lines of the commit message are shown above )
|
Sat, 7 Dec 2019
|
[ 22:47 delphij ]
- Drop support of FreeBSD < 11.0
- Make use of robust mutexes.
|
Tue, 6 Aug 2019
|
[ 08:26 delphij ]
Update to 0.9.24.
|
Sun, 30 Dec 2018
|
[ 06:29 delphij ]
Update to 0.9.23.
|
Mon, 3 Sep 2018
|
[ 12:08 jbeich ]
databases/lmdb: back out r478269 due to cyrus-imapd30 instability
Robust mutexes were already enabled but r478269 disabled POSIX
semaphores. It appears both are only mutually exclusive on Android and
old GNU libc.
PR: 230564
Reported by: Volodymyr Kostyrko
Pointy hat to: jbeich
|
Tue, 28 Aug 2018
|
[ 00:01 jbeich ]
databases/lmdb: switch to robust mutexes on FreeBSD >= 11
PR: 230564
Approved by: delphij (maintainer)
|
Fri, 30 Mar 2018
|
[ 10:56 gahr ]
databases/lmdb: update to 0.9.22
LMDB 0.9.22 Release (2018-03-22)
Fix MDB_DUPSORT alignment bug (ITS#8819)
Fix regression with new db from 0.9.19 (ITS#8760)
Fix liblmdb to build on Solaris (ITS#8612)
Fix delete behavior with DUPSORT DB (ITS#8622)
Fix mdb_cursor_get/mdb_cursor_del behavior (ITS#8722)
PR: 227103
Submitted by: gahr
Approved by: delphij (maintainer)
|
Mon, 25 Sep 2017
|
[ 09:37 gahr ]
databases/lmdb: use fdatasync where supported
Submitted upstream in http://www.openldap.org/its/index.cgi?findid=8739
PR: 222514
Submitted by: gahr
Approved by: delphij (maintainer, via private email)
|
Sun, 4 Jun 2017
|
[ 08:13 delphij ]
Update to 0.9.21.
|
Tue, 25 Apr 2017
|
[ 12:40 gahr ]
databases/lmdb: remove useless TEST_TARGET
Reported by: mat
|
[ 12:26 gahr ]
databases/lmdb: update to 0.9.19
PR: 218334
Submitted by: gahr
Approved by: maintainer timeout
|
Wed, 18 Jan 2017
|
[ 17:46 delphij ]
Downgrade to 0.9.18 due to regressions.
|
Thu, 12 Jan 2017
|
[ 07:47 delphij ]
Update to 0.9.20.
|
Tue, 9 Aug 2016
|
[ 21:28 mat ]
Add soname and cleanup
Using soname allows pkg(8) to register the library, and it helps on
upgrades.
Use WRKSRC_SUBDIR
Use MAKE_ARGS instead of MAKE_ENV so the patch can be simplified.
PR: 211700
Submitted by: mat
Approved by: delphij (maintainer)
Sponsored by: Absolight
|
Mon, 18 Apr 2016
|
[ 08:42 delphij ]
Update to 0.9.18.
PR: ports/208766
Submitted by: gahr
|
Fri, 21 Aug 2015
|
[ 19:20 delphij ]
Update to 0.9.16.
|
Tue, 4 Aug 2015
|
[ 11:29 mat ] (Only the first 10 of 27 ports in this commit are shown above. )
Cleanup some abusive use of GH_TAGNAME.
With hat: portmgr
Sponsored by: Absolight
|
Thu, 2 Jul 2015
|
[ 18:13 delphij ]
Update to 0.9.15, move to Github and add LICENSE.
|
Fri, 8 May 2015
|
[ 14:04 amdmi3 ] (Only the first 10 of 19 ports in this commit are shown above. )
- Don't install static libraries with INSTALL_LIB (part 1/2)
Approved by: portmgr blanket
MFH: 2015Q2
|
Tue, 14 Apr 2015
|
[ 18:01 delphij ]
Update to 0.9.14.
|
Wed, 25 Mar 2015
|
[ 09:33 marino ] (Only the first 10 of 29 ports in this commit are shown above. )
databases category: Remove $PTHREAD_LIBS
Note: virtuoso did not pass check-plist from before, so it was fixed.
approved by: PTHREAD blanket
|
Thu, 21 Aug 2014
|
[ 08:42 delphij ]
Use local mirror ONLY as gitorious.org keeps rerolling with only timestamp
change and there is no way to workaround that with the current framework.
|
Mon, 18 Aug 2014
|
[ 05:32 delphij ]
Refresh after distfile reroll. No content change detected in source in my
manual inspection, so no PORTREVISION bump.
|
Sun, 17 Aug 2014
|
[ 23:00 antoine ]
Mark BROKEN: Checksum mismatch
Reported by: pkg-fallout
|
Sat, 9 Aug 2014
|
[ 09:38 delphij ]
Update to 0.9.13.
|
Mon, 5 May 2014
|
[ 09:45 bapt ] (Only the first 10 of 293 ports in this commit are shown above. )
Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr
|
Thu, 20 Feb 2014
|
[ 08:06 ehaupt ]
Support staging
|
Wed, 15 Jan 2014
|
[ 19:50 delphij ]
Update to 0.9.11
|
Wed, 20 Nov 2013
|
[ 20:18 delphij ]
Update to 0.9.10.
|
Mon, 28 Oct 2013
|
[ 03:22 delphij ]
Update to 0.9.9.
|
Fri, 20 Sep 2013
|
[ 16:13 bapt ] (Only the first 10 of 927 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
|
Mon, 9 Sep 2013
|
[ 19:29 delphij ]
- Update to 0.9.8.
- Override 'do-install' target so we install shared
library with a version number.
|
Tue, 3 Sep 2013
|
[ 22:27 delphij ]
Use local mirror for lmdb distfiles.
|
Sat, 31 Aug 2013
|
[ 00:04 bdrewery ]
- Mark BROKEN, fails to fetch
|
Fri, 16 Aug 2013
|
[ 18:40 delphij ]
Update to 0.9.7.
|
Mon, 11 Mar 2013
|
[ 23:58 delphij ]
LMDB is an ultra-fast, ultra-compact key-value data
store developed by Symas for the OpenLDAP Project.
PR: ports/174007
|
Number of commits found: 44 |