notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: databases/xapian-bindings/Makefile

Number of commits found: 82

Saturday, 23 Mar 2024
14:30 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.25

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
		https://github.com/xapian/xapian/blob/RELEASE/1.4/xapian-bindings/NEWS
commit hash: c117c545dab33b06d217a6faf24974079f424092 commit hash: c117c545dab33b06d217a6faf24974079f424092 commit hash: c117c545dab33b06d217a6faf24974079f424092 commit hash: c117c545dab33b06d217a6faf24974079f424092 c117c54
Tuesday, 14 Nov 2023
17:15 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.24

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: a9e8c78786621232391f81e57ed33b8a76f82b6d commit hash: a9e8c78786621232391f81e57ed33b8a76f82b6d commit hash: a9e8c78786621232391f81e57ed33b8a76f82b6d commit hash: a9e8c78786621232391f81e57ed33b8a76f82b6d a9e8c78
Sunday, 9 Jul 2023
21:34 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.23

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: 6d7b53958ba500e674825ae70a6bf170ca5181f3 commit hash: 6d7b53958ba500e674825ae70a6bf170ca5181f3 commit hash: 6d7b53958ba500e674825ae70a6bf170ca5181f3 commit hash: 6d7b53958ba500e674825ae70a6bf170ca5181f3 6d7b539
Tuesday, 21 Mar 2023
19:20 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.22

- Enable PHP option by default: restored after PHP 8 support

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: da10c2e56e0de6f8e080f18d9be3666cae65c743 commit hash: da10c2e56e0de6f8e080f18d9be3666cae65c743 commit hash: da10c2e56e0de6f8e080f18d9be3666cae65c743 commit hash: da10c2e56e0de6f8e080f18d9be3666cae65c743 da10c2e
Saturday, 14 Jan 2023
23:08 Muhammad Moinur Rahman (bofh) search for other commits by this committer
Mk/**ruby.mk: Switch from USE_RUBY=yes to USES=ruby

Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk

Notable changes are.

- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
  USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.

This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863

I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.

Approved by:	portmgr
Differential Revision:	https://reviews.freebsd.org/D37925
commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae 18c6e18
Monday, 3 Oct 2022
17:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.21

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: 13df1c73bee46d49b708ef8983df1b5c01f512c7 commit hash: 13df1c73bee46d49b708ef8983df1b5c01f512c7 commit hash: 13df1c73bee46d49b708ef8983df1b5c01f512c7 commit hash: 13df1c73bee46d49b708ef8983df1b5c01f512c7 13df1c7
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
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.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:21 Tobias C. Berner (tcberner) search for other commits by this committer
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>
  *  Aldis Berjoza <graudeejs@gmail.com>
  *  Alessando Sagratini <ale_sagra@hotmail.com>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Samorukov <samm@freebsd.org>
  *  Alexander Logvinov <ports@logvinov,com>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Nedotsukov <bland@FreeBSD.org>
  *  Alexander Novitsky
  *  Alexander Zhuravlev <zaa@zaa.pp.ru>
  *  Alexey Degtyarev <alexey@renatasystems.org>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Anders Nordby <anders@fix.no>
  *  Andrei Antoukh <niwi@niwi.be>
  *  Andrew McNaughton <andrew@scoop.co.nz>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrey Kostenko <andrey@kostenko.name>
  *  Andrey Simonenko
  *  Andrey Zakhvatov
  *  Anes Mukhametov <anes@anes.su>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Anton Berezin <tobez@tobez.org>
  *  Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
  *  Antonio Carlos Venancio Junior (<antonio@php.net>)
  *  Autrijus Tang <autrijus@autrijus.org>
  *  Babak Farrokhi <farrokhi@FreeBSD.org>
  *  Bartek Rutkowski <r@robakdesign.com>
  *  Bernard Spil <brnrd@FreeBSD.org>
  *  Brent J. Nordquist <bjn@visi.com>
  *  Cezary Morga <cm@therek.net>
  *  Cheng-Lung Sung <clsung@FreeBSD.org>
  *  Choe, Cheng-Dae
  *  Chris D. Faulhaber <jedgar@FreeBSD.org>
  *  Chris Larsen <darth@vader.dk>
  *  Damian Gerow <dgerow@afflictions.org>
  *  Daniel O'Connor
  *  Daniel Wijnands <daniel@itxl.nl>
  *  Dave Green <dg@fastmail.co.uk>
  *  David Thiel <lx@FreeBSD.org>
  *  Davíð Steinn Geirsson <david@isnic.is>
  *  Denis Generalov <gd.workbox@gmail.com>
  *  Denis Generalov <gd@rambler-co.ru>
  *  Denis Shaposhnikov <dsh@bamus.cz>
  *  Dermot Tynan <dtynan@kalopa.com>
  *  Dmitry Liakh <dliakh@ukr.net>
  *  Dmitry Sivachenko <demon@FreeBSD.org>
  *  Dmitry Sivachenko <dima@Chg.RU>
  *  Dmitry Sivachenko <mitya@yandex-team.ru>
  *  Domas Mituzas <midom@dammit.lt>
  *  Dominic Mitchell
  *  Don Owens <don@regexguy.com>
  *  Dryice Dong Liu <dryice@dryice.name>
  *  Edwin Groothuis (edwin@mavetju.org)
  *  Eric Freeman <freebsdports@chillibear.com>
  *  Espen Tagestad <espen@tagestad.no>
  *  Espen Volden aka voldern <voldern@hoeggen.net>
  *  Evan Sarmiento <bsdports@wayfair.com>
  *  Fernan Aguero <fernan@iib.unsam.edu.ar>
  *  Frank Wall <fw@moov.de>
  *  Ganbold Tsagaankhuu <ganbold@FreeBSD.org>
  *  Gary Palmer <gpalmer@FreeBSD.org>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  Geraud CONTINSOUZAS <geraud@gcu.info>
  *  Gerrit Beine <tux@pinguru.net>
  *  Greg Larkin <glarkin@FreeBSD.org>
  *  Grzegorz Blach <gblach@FreeBSD.org>
  *  Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
  *  Henk van Oers <hvo.pm@xs4all.nl>
  *  Henrik Hodne <henrik@hodne.io>
  *  Hiroyuki Hanai <hanai@FreeBSD.org>
  *  Horia Racoviceanu <horia@racoviceanu.com>
  *  Hye-Shik Chang
  *  Hye-Shik Chang <perky@python.or.kr>
  *  Ilia Chipitsine <ilia@jane.cgu.chel.su>
  *  Ivan Voras <ivoras@FreeBSD.org>
  *  J.F. Dockes
  *  Jaap Boender <jaapb@kerguelen.org>
  *  Jake Smith <jake@xz.cx>
  *  James FitzGibbon <jfitz@FreeBSD.org>
  *  Janos Mohacsi <janos.mohacsi@bsd.hu>
  *  Janos.Mohacsi@bsd.hu
  *  Jason Helfman <jgh@FreeBSD.org>
  *  Jens Rehsack <rehsack@liwing.de>
  *  Jeremy Chadwick <koitsu@FreeBSD.org>
  *  Jev Björsell <ports@ecadlabs.com>
  *  Jim Ohlstein <jim@ohlste.in>
  *  Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
  *  Joe Horn <joehorn@gmail.com>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Johannes Meixner <johannes@perceivon.net>
  *  John Chen <johnpupu@gmail.com>
  *  John Marino <marino@FreeBSD.org>
  *  John Merryweather Cooper
  *  John Merryweather Cooper et al
  *  Jon Nistor <nistor@snickers.org>
  *  Jonathan Weiss (<jw@innerewut.de>)
  *  Jose Jachuf <jjachuf@gmail.com>
  *  Joshua D. Abraham <jabra@ccs.neu.edu>
  *  Jov <amutu@amutu.com>
  *  Jov amutu@amutu.com
  *  Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
  *  Julien Laffaye <kimelto@gmail.com>
  *  Jyun-Yan You <jyyou@cs.nctu.edu.tw>
  *  Keith Gaughan <k@sterechro.me>
  *  Kevin Bowling <kbowling@freebsd.org>
  *  Kimo <kimor79@yahoo.com>
  *  Kimura Fuyuki <fuyuki@nigredo.org>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Lars Balker Rasmussen <lbr@FreeBSD.org
  *  Lars Balker Rasmussen <lbr@FreeBSD.org>
  *  Lars Eggert <larse@isi.edu>
  *  Lars Thegler <lars@thegler.dk>
  *  Lars Thegler <lth@FreeBSD.org>
  *  Li-Wen Hsu <lwhsu@FreeBSD.org>
  *  Loïc BARTOLETTI
  *  Loïc BARTOLETTI <lbartoletti@FreeBSD.org>
  *  Lubomir Marinov <lubomir_m@abv.bg>
  *  Mahdi Mokhtari <mokhi64@gmail.com>
  *  Mahlon E. Smith <mahlon@martini.nu>
  *  Marc G. Fournier <scrappy@FreeBSD.org>
  *  Mark Felder <feld@FreeBSD.org>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Matuska <martin@matuska.org>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Mathieu Arnold <m@absolight.net>
  *  Matthew Seaman
  *  Matthias Andree <mandree@FreeBSD.org>
  *  Matthias Fechner <mfechner@FreeBSD.org>
  *  Matthias Petermann <matthias@petermann-it.de>
  *  Max Khon
  *  Max Khon <fjoe@FreeBSD.org>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Johnson <ahze@ahze.net>
  *  Michael Winking <mwfp@foldl.net>
  *  Mikael URANKAR and Loïc BARTOLETTI
  *  Mike Carlson (carlson39@llnl.gov)
  *  Mikhail T. <michael@fun-box.ru>
  *  Mikhail Teterin
  *  Mikhail Teterin <mi@aldan.algebra.com>
  *  Mikolaj Golub <trociny@FreeBSD.org>
  *  Mirko Zinn <mail@derzinn.de>
  *  Mohammad S. Babaei <info@babaei.net>
  *  Muhammad Moinur Rahman <bofh@FreeBSD.org>
  *  Nick Hibma <n_hibma@freebsd.org>
  *  Nick Hilliard <nick@foobar.org>
  *  Nick Sayer <nsayer@FreeBSD.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Nicolas Embriz <nbari@tequila.io>
  *  Nicolas de Bari Embriz <nbari@dalmp.com>
  *  Oleg Sharoiko <os@rsu.ru>
  *  Olexander Melnyk <olexander.v.melnyk@gmail.com>
  *  Oliver Eikemeier <eikemeier@fillmore-labs.com>
  *  Olivier Duchateau <duchateau.olivier@gmail.com>
  *  Palle Girgensohn <girgen@FreeBSD.org>
  *  Palle Girgensohn <girgen@partitur.se>
  *  Palle Girgensohn <girgen@pingpong.net>
  *  Parv <parv@pair.org>
  *  Pete Fritchman <petef@databits.net>
  *  Peter Avalos <pavalos@theshell.com>
  *  Philip M. Gollucci
  *  Philip M. Gollucci <philip@p6m7g8.com>
  *  Philip Stoev <philip.stoev@galeracluster.com>
  *  Pierre-Emmanuel Andre <pea@raveland.org>
  *  Pietro Cerutti <gahr@FreeBSD.org>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Qing Feng <qingfeng@douban.com>
  *  Quinton Dolan <q@onthenet.com.au>
  *  Radim Kolar
  *  Rainer Hurling <rhurlin@gwdg.de>
  *  Rick Miller
  *  Robert Kruus <rob.kruus@gmail.com>
  *  Rod Taylor <ports@rbt.ca>
  *  Roland van Laar <roland@micite.net>
  *  Rong-En Fan <rafan@FreeBSD.org>
  *  Roy Boerner
  *  Rozhuk Ivan <rozhuk.im@gmail.com>
  *  Rusty Nejdl
  *  Ryan Steinmetz <rpsfa@rit.edu>
  *  Ryan Steinmetz <zi@FreeBSD.org>
  *  Ryan T. Dean <rtdean@cytherianage.net>
  *  Sam Lawrance <boris@brooknet.com.au>
  *  Scott McWhirter <scott@surreytech.co.uk>
  *  Seamus Venasse <svenasse@polaris.ca>
  *  Sean Chittenden <seanc@FreeBSD.org>
  *  Sergei Kolobov <sergei@kolobov.com>
  *  Sergei Vyshenski <svysh.fbsd@gmail.com>
  *  Sergey A. Osokin <osa@FreeBSD.org.ru>
  *  Sergey A. Osokin <osa@FreeBSD.org>
  *  Sergey Matveychuk <sem@FreeBSD.org>
  *  Sergey Skvortsov <skv@FreeBSD.org>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Sevan Janiyan <venture37@geeklan.co.uk>
  *  Sheldon Hearn <sheldonh@FreeBSD.org>
  *  Stanislav Svirid <count@211.ru>
  *  Stefan Schmidt <stefan.schmidt@stadtbuch.de>
  *  Steve Wills <swills@FreeBSD.org>
  *  Steve Wills <swills@freebsd.org>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
  *  T. William Wells <bill@twwells.com>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  Thierry Thomas (<thierry@pompo.net>)
  *  Thomas Gellekum <tg@FreeBSD.org>
  *  Timur I. Bakeyev <bat@cpan.org>
  *  Tom Judge <tj@FreeBSD.org>
  *  Torsten Zuehlsdorff <ports@toco-domains.de>
  *  Torsten Zuhlsdorff <ports@toco-domains.de>
  *  Toshiya Saitoh (<toshiya@saitoh.nu>)
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  Vasil Dimov <vd@FreeBSD.org>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  Vladimir Timofeev <vovkasm@gmail.com>
  *  Wen Heping
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen heping <wenheping@gmail.com>
  *  William Grzybowski <wg@FreeBSD.org>
  *  Xin Li <delphij@FreeBSD.org>
  *  Yarema <yds@CoolRat.org>
  *  Yarema <yds@Necessitu.de>
  *  Yen-Ming Lee <leeym@FreeBSD.org>
  *  Ying-Chieh Liao <ijliao@FreeBSD.org>
  *  Yoichi NAKAYAMA <yoichi@FreeBSD.org>
  *  Yuri Victorovich <yuri@rawbw.com>
  *  Zach Thompson <hideo@lastamericanempire.com>
  *  Zach Thompson <lin-chi@lastamericanempire.com>
  *  ache@FreeBSD.org
  *  alfred
  *  alp@sfedu.ru
  *  andrew@scoop.co.nz
  *  andrey@kostenko.name
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  clive
  *  clive@FreeBSD.org
  *  clsung@dragon2.net
  *  dcf@aracnet.com
  *  elvstone@gmail.com
  *  erikhb@bgnett.no
  *  erwin@FreeBSD.org
  *  gahr
  *  ijliao
  *  ijlioa
  *  ivoras
  *  johnpupu <johnpupu@gmail.com>
  *  kirk@daycos.com
  *  kuriyama
  *  lbartoletti <lbartoletti@FreeBSD.org>
  *  loïc bartoletti <lbartoletti@FreeBSD.org>
  *  mharo@FreeBSD.org
  *  michael johnson <ahze@ahze.net>
  *  milki <milki@rescomp.berkeley.edy>
  *  mm@FreeBSD.org
  *  nbm
  *  nectar@FreeBSD.org
  *  nork@FreeBSD.org
  *  nork@cityfujisawa.ne.jp
  *  olevole@olevole.ru
  *  proler@gmail.com
  *  sergey@migsoft.com.ua
  *  sobomax
  *  spam@rm-rf.kiev.ua
  *  stas
  *  tobez
  *  tremere@cainites.net
  *  vanilla
  *  vanilla@
  *  wen@FreeBSD.org
  *  wenheping<wenheping@gmail.com>
  *  wolman@cs.washington.edu
  * # Created by Kevin Bowling <kbowling@FreeBSD.org>
  * # Created by Matthias Fechner <mfechner@FreeBSD.org>

With hat:	portmgr
commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16 commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16 commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16 commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16 d076ad9
Thursday, 7 Jul 2022
21:42 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.20

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: 4cd41dfec30d49e7ad79be86f1e6e2ead04549ed commit hash: 4cd41dfec30d49e7ad79be86f1e6e2ead04549ed commit hash: 4cd41dfec30d49e7ad79be86f1e6e2ead04549ed commit hash: 4cd41dfec30d49e7ad79be86f1e6e2ead04549ed 4cd41df
Monday, 13 Jun 2022
00:08 Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Ignore with php82
commit hash: 214a6c5f5a6710e22a998e7e3ebba5e30d30a546 commit hash: 214a6c5f5a6710e22a998e7e3ebba5e30d30a546 commit hash: 214a6c5f5a6710e22a998e7e3ebba5e30d30a546 commit hash: 214a6c5f5a6710e22a998e7e3ebba5e30d30a546 214a6c5
Sunday, 22 May 2022
04:22 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Reword comment
commit hash: 95ca906ff4516fa18c7298f874d0bc4cbdf4c5e7 commit hash: 95ca906ff4516fa18c7298f874d0bc4cbdf4c5e7 commit hash: 95ca906ff4516fa18c7298f874d0bc4cbdf4c5e7 commit hash: 95ca906ff4516fa18c7298f874d0bc4cbdf4c5e7 95ca906
Monday, 24 Jan 2022
23:41 Muhammad Moinur Rahman (bofh) search for other commits by this committer
Change PHP default version to 8.0

- databases/xapian-bindings is a mata port which do not have
  php:flavors and is unable to be MARKED to IGNORE as one of it's
  dependent databases/php-xapian do not support php8.0. Hence this
  creates a circular dependency and it fails to start bulk building. So
  for now remove PHP from OPTIONS_DEFAULT.

PR:             260595
Approved by:	ale portmgr(exp-run)
Sponsored by:	Bounce Experts
commit hash: 2e1fdc173831debc50f2c25b86e202c0a4967334 commit hash: 2e1fdc173831debc50f2c25b86e202c0a4967334 commit hash: 2e1fdc173831debc50f2c25b86e202c0a4967334 commit hash: 2e1fdc173831debc50f2c25b86e202c0a4967334 2e1fdc1
Sunday, 23 Jan 2022
18:18 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
databases/xapian-bindings: Update to 1.4.19

- Fix IGNORE_WITH_PHP: sync with databases/php-xapian

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
commit hash: 594ad92a65cff6c757f07b5c1eb7e177040d0afb commit hash: 594ad92a65cff6c757f07b5c1eb7e177040d0afb commit hash: 594ad92a65cff6c757f07b5c1eb7e177040d0afb commit hash: 594ad92a65cff6c757f07b5c1eb7e177040d0afb 594ad92
Monday, 10 Jan 2022
18:23 Muhammad Moinur Rahman (bofh) search for other commits by this committer
Mark ports to IGNORE with new php81

- Mark some additional ports to IGNORE with the upcoming php DEFAULT
  php80 [1]

PR: 260595 [1]
Reported by: portmgr (exp-run) [1]
Approved by: portmgr (infrastructure blanket)
Sponsored by:	Bounce Experts
commit hash: 80f7a0af110fd78a76d430df8d2915501bd8d1c5 commit hash: 80f7a0af110fd78a76d430df8d2915501bd8d1c5 commit hash: 80f7a0af110fd78a76d430df8d2915501bd8d1c5 commit hash: 80f7a0af110fd78a76d430df8d2915501bd8d1c5 80f7a0a
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Tuesday, 26 Jan 2021
17:22 sunpoet search for other commits by this committer
Update to 1.4.18

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:562753 
Sunday, 15 Nov 2020
18:00 sunpoet search for other commits by this committer
Update RUN_DEPENDS for flavored php-xapian

- Bump PORTREVISION for dependency change
Original commitRevision:555280 
Friday, 21 Aug 2020
21:21 sunpoet search for other commits by this committer
Update to 1.4.17

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:545631 
Monday, 15 Jun 2020
18:44 sunpoet search for other commits by this committer
Update to 1.4.16

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:538947 
Sunday, 3 May 2020
20:49 sunpoet search for other commits by this committer
Cosmetic change
Original commitRevision:533818 
Tuesday, 14 Apr 2020
15:49 mat search for other commits by this committer
USES=lua gained flavors.

Ports using USES=lua:module or lua:flavors will be flavored.  A range of
supported lua versions can be set using XX-YY (or XX-, or -YY, or simply ZZ)
for ports not supporting all lua versions.

USES=lua sets LUA_FLAVOR that needs to be used on all dependencies of
flavored lua ports, in a similar way as PHP or Python flavors.

PR:		245038
Submitted by:	andrew tao11 riddles org uk
Reviewed by:	mat, kevans, russ haley gmail com
Approved by:	mat (portmgr)
Differential Revision:	https://reviews.freebsd.org/D16494
Original commitRevision:531700 
Monday, 24 Feb 2020
18:57 sunpoet search for other commits by this committer
Update to 1.4.15

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:527016 
Sunday, 8 Dec 2019
16:52 sunpoet search for other commits by this committer
Update to 1.4.14

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:519337 
Sunday, 20 Oct 2019
17:08 sunpoet search for other commits by this committer
Update to 1.4.13

Changes:	https://trac.xapian.org/wiki/ReleaseOverview
Original commitRevision:514901 
Thursday, 1 Aug 2019
16:15 sunpoet search for other commits by this committer
Update to 1.4.12

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.12
Original commitRevision:507787 
Saturday, 2 Mar 2019
17:46 sunpoet search for other commits by this committer
Update to 1.4.11

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.11
Original commitRevision:494429 
Thursday, 14 Feb 2019
22:40 sunpoet search for other commits by this committer
Update to 1.4.10.0

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.10
Original commitRevision:492942 
Monday, 5 Nov 2018
21:44 sunpoet search for other commits by this committer
Update to 1.4.9

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.9
Original commitRevision:484233 
Saturday, 27 Oct 2018
23:22 sunpoet search for other commits by this committer
Update to 1.4.8

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.8
Original commitRevision:483187 
Sunday, 29 Jul 2018
19:10 sunpoet search for other commits by this committer
Update to 1.4.7

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.6
		https://trac.xapian.org/wiki/ReleaseOverview/1.4.7
Original commitRevision:475699 
Tuesday, 22 May 2018
13:15 mat search for other commits by this committer
Add PY_FLAVOR to Python module dependencies.

Sponsored by:	Absolight
Original commitRevision:470610 
Monday, 16 Oct 2017
17:45 sunpoet search for other commits by this committer
Update to 1.4.5

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.5
Original commitRevision:452214 
Monday, 24 Apr 2017
15:14 sunpoet search for other commits by this committer
Update to 1.4.4

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.4
Original commitRevision:439297 
Tuesday, 4 Apr 2017
09:37 sunpoet search for other commits by this committer
Update to 1.4.3 and convert to a meta port

- Use USES=metaport
- Add PERL option
- Update pkg-descr
- Update WWW

Changes:	https://trac.xapian.org/wiki/ReleaseOverview/1.4.3
		https://trac.xapian.org/wiki/ReleaseOverview/1.4.2
		https://trac.xapian.org/wiki/ReleaseOverview/1.4.1
		https://trac.xapian.org/wiki/ReleaseOverview/1.4.0
Original commitRevision:437723 
Sunday, 20 Nov 2016
23:54 sunpoet search for other commits by this committer
- Update to 1.2.24

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.24
Original commitRevision:426648 
Saturday, 2 Jul 2016
01:41 sunpoet search for other commits by this committer
- Fix r417755
- Bump PORTREVISION for dependency change

r417755 was meant to remove RUBY_RDOC but it also added ruby as runtime
dependency unconditionally. USE_RUBY should be set only if RUBY option is on.
Original commitRevision:417906 
Wednesday, 29 Jun 2016
02:01 swills search for other commits by this committer
databases/xapian-bindings: remove unneeded reference to RUBY_RDOC

With hat:	ruby@
Original commitRevision:417755 
Tuesday, 28 Jun 2016
14:00 mat search for other commits by this committer
Convert USE_PHP*=yes into USES=php*

PR:		210529
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D6936
Original commitRevision:417719 
Thursday, 31 Mar 2016
15:38 sunpoet search for other commits by this committer
- Update to 1.2.23
- Update LIB_DEPENDS: remove PORTSDIR

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.23
Original commitRevision:412237 
Sunday, 17 Jan 2016
13:11 sunpoet search for other commits by this committer
- Update to 1.2.22
- Add LICENSE_FILE

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.22
Sponsored by:	PortsCamp Taiwan
Original commitRevision:406361 
Thursday, 21 May 2015
21:25 sunpoet search for other commits by this committer
- Update to 1.2.21

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.21
Original commitRevision:386963 
Thursday, 5 Mar 2015
17:27 sunpoet search for other commits by this committer
- Update to 1.2.20

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.20
Original commitRevision:380514 
Monday, 24 Nov 2014
18:29 sunpoet search for other commits by this committer
- Update to 1.2.19

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.19
Original commitRevision:373295 
Saturday, 30 Aug 2014
16:09 sunpoet search for other commits by this committer
- Remove PERL option: use databases/p5-Search-Xapian
Original commitRevision:366643 
15:36 sunpoet search for other commits by this committer
- Use INSTALL_TARGET=install-strip instead of
MAKE_ENV=INSTALL_STRIP_FLAG=${STRIP}
Original commitRevision:366637 
Friday, 15 Aug 2014
03:00 sunpoet search for other commits by this committer
- Use USES=python
Original commitRevision:364891 
Monday, 23 Jun 2014
17:43 sunpoet search for other commits by this committer
- Update to 1.2.18
- Use USES=libtool

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.18
Original commitRevision:358984 
Monday, 26 May 2014
16:01 bapt search for other commits by this committer
Convert to USES=lua and make it use lua 5.2 by default
Original commitRevision:355397 
Friday, 14 Mar 2014
10:09 sunpoet search for other commits by this committer
- Use USES=tar:xz
Original commitRevision:348195 
Tuesday, 4 Feb 2014
16:14 sunpoet search for other commits by this committer
- Update to 1.2.17
- Update USE_PYTHON
- Use PORTDOCS

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.17
Original commitRevision:342554 
Tuesday, 10 Dec 2013
19:54 sunpoet search for other commits by this committer
- Fix USE_PYTHON
Original commitRevision:336103 
Thursday, 5 Dec 2013
20:26 sunpoet search for other commits by this committer
- Update to 1.2.16
- Simplify Makefile

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.16
Original commitRevision:335692 
Wednesday, 23 Oct 2013
18:56 sunpoet search for other commits by this committer
- Convert to new options helper
- Strip shared library
- Support STAGEDIR
Original commitRevision:331407 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
Saturday, 14 Sep 2013
17:24 sunpoet search for other commits by this committer
- Fix build without libstdc++ by removing hardcoded libstdc++ linkage [1]
- Convert to new LIB_DEPENDS format
- Use USE+= after bsd.port.*.mk inclusion

Reported by:	pkg-fallout [1]
Original commitRevision:327309 
Sunday, 25 Aug 2013
16:14 sunpoet search for other commits by this committer
- Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo)
Original commitRevision:325358 
Wednesday, 21 Aug 2013
14:08 sunpoet search for other commits by this committer
- Convert to new perl framework
Original commitRevision:325134 
Thursday, 18 Apr 2013
17:40 sunpoet search for other commits by this committer
- Update to 1.2.15

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.15
Feature safe:	yes
Original commitRevision:316063 
Monday, 18 Mar 2013
14:45 sunpoet search for other commits by this committer
- Update to 1.2.14

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.14
Original commitRevision:314572 
Wednesday, 20 Feb 2013
20:36 sunpoet search for other commits by this committer
- Update to 1.2.13
- Cleanup Makefile header
- Reformat pkg-descr

Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.13
Original commitRevision:312670 
Tuesday, 14 Aug 2012
09:17 sunpoet search for other commits by this committer
- Add Lua and Perl bindings [1]
- Simplify PLIST_SUB: remove BINDING_ prefix

PR:		ports/169912 [1]
Submitted by:	Veniamin Gvozdikov <g.veniamin@googlemail.com> [1]
Original commit
Saturday, 7 Jul 2012
06:54 sunpoet search for other commits by this committer
- Update to 1.2.12

Changes:        http://trac.xapian.org/wiki/ReleaseOverview/1.2.12
Original commit
Wednesday, 27 Jun 2012
08:31 sunpoet search for other commits by this committer
- Update to 1.2.11
- Pet portlint: remove ABI version number from LIB_DEPENDS
- Convert to new options framework

Changes:        http://trac.xapian.org/wiki/ReleaseOverview/1.2.11
Original commit
Monday, 14 May 2012
18:44 sunpoet search for other commits by this committer
- Update to 1.2.10.0
- Add PORTSCOUT knob to skip development versions
- Cosmetic change

Changes:        http://trac.xapian.org/wiki/ReleaseOverview/1.2.10
Original commit
Tuesday, 13 Mar 2012
17:08 sunpoet search for other commits by this committer
- Update to 1.2.9

Changes:        http://trac.xapian.org/wiki/ReleaseOverview/1.2.9
Feature safe:   yes
Original commit
Sunday, 12 Feb 2012
03:36 sunpoet search for other commits by this committer
- Update to 1.2.8
- Add my LOCAL to MASTER_SITES
- Pet portlint
- Take maintainership

Changes:        http://trac.xapian.org/wiki/ReleaseOverview/1.2.8
Original commit
Wednesday, 8 Feb 2012
13:52 eadler search for other commits by this committer
Fix a likely typo

Submitted by:   Alex Kozlov
Original commit
Tuesday, 7 Feb 2012
01:35 pgollucci search for other commits by this committer
- drop maintainer now that update is complete

PR:     ports/164460
Original commit
01:28 pgollucci search for other commits by this committer
- Update xapian to 1.2.7.0

PR:             ports/164460
Original commit
Tuesday, 24 Jan 2012
19:16 pgollucci search for other commits by this committer
- Lock these under my maintainership temporarily while the repo copy and upgrade
shuffle
  happens
Original commit
09:04 sunpoet search for other commits by this committer
- Reset MAINTAINER

PR:             ports/164436
Submitted by:   Jean-Francois Dockes <jf@dockes.org> (maintainer)
Original commit
Tuesday, 24 May 2011
16:17 brix search for other commits by this committer
- Assign maintainership to Jean-Francois Dockes <jf@dockes.org>

Approved by:    Gea-Suan Lin <gslin@gslin.org> (maintainer)
Original commit
Friday, 29 Oct 2010
16:27 brix search for other commits by this committer
- Update to v1.0.22
- Unbreak
- Add LICENSE information
- Fix build issue [1]

PR:             ports/151317 [1]
Submitted by:   Jilles Tjoelker <jilles@stack.nl>
Approved by:    Gea-Suan Lin <gslin@gslin.org> (maintainer)
Original commit
Tuesday, 12 Oct 2010
23:17 pav search for other commits by this committer
- Mark BROKEN: does not build

Reported by:    pointyhat
Original commit
Thursday, 23 Sep 2010
17:20 pgollucci search for other commits by this committer
- Chase databases/xapian-core sh lib bump

Reported by:    erwin via pointyhat
Original commit
Friday, 7 May 2010
22:48 sylvio search for other commits by this committer
- Update to 1.0.18

PR:             ports/145867
Submitted by:   Anders F Björklund <afb@users.sourceforge.net>
Approved by:    maintainer (timeout > 14 days)
Original commit
Monday, 18 Jan 2010
04:58 pgollucci search for other commits by this committer
- Update to 1.0.16

PR:             ports/140698
Submitted by:   Anders F Björklund <afb@users.sourceforge.net>
Approved by:    maintainer timeout (2 months)
Original commit
Saturday, 19 Sep 2009
11:58 miwi search for other commits by this committer
- Update to 1.0.12
- Add ruby support

PR:             138501
Submitted by:   Anders F Björklund <afb@algonet.se>
Approved by:    maintainer timeout
Feature safe:   yes
Original commit
Sunday, 27 Jul 2008
03:09 rafan search for other commits by this committer
- Chase databases/xapian-core update

PR:             ports/125954 (deskutils/recoll)
Submitted by:   maintainer of xapian-core
Original commit
Wednesday, 14 May 2008
13:37 pav search for other commits by this committer
- Update to 1.0.6

PR:             ports/123601
Submitted by:   Gea-Suan Lin <gslin@gslin.org> (maintainer)
Original commit
Wednesday, 15 Aug 2007
08:37 clsung search for other commits by this committer
- Update to 1.0.2

PR:             ports/114426
Submitted by:   maintainer (Gea-Suan Lin)
Original commit
Wednesday, 30 May 2007
08:45 clsung search for other commits by this committer
Add xapian-bindings 1.0.0, bindings allowing Xapian to be used from
various programming languages.

PR:             ports/113033
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Original commit

Number of commits found: 82