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: textproc/p5-XML-LibXML/Makefile

Number of commits found: 95

Wednesday, 21 Feb 2024
15:11 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
textproc/p5-XML-LibXML: Update to 2.0210

Changes:	https://metacpan.org/dist/XML-LibXML/changes
commit hash: 7428403955fc78ea8ce5caf04628449716467dcd commit hash: 7428403955fc78ea8ce5caf04628449716467dcd commit hash: 7428403955fc78ea8ce5caf04628449716467dcd commit hash: 7428403955fc78ea8ce5caf04628449716467dcd 7428403
Friday, 4 Aug 2023
13:01 Rodrigo Osorio (rodrigo) search for other commits by this committer
textproc/p5-XML-LibXML: Update to 2.0209

Major changes:
    * t/35huge_mode.t: fix test with libxml2 2.11
    * Add clearer reference to using cloneNode to extract node with namespaces
    * initialize xmlValidCtxt

Full changelog: https://metacpan.org/dist/XML-LibXML/changes
commit hash: 29f5c7c7ec31f6522b77edf376b705aedf44d348 commit hash: 29f5c7c7ec31f6522b77edf376b705aedf44d348 commit hash: 29f5c7c7ec31f6522b77edf376b705aedf44d348 commit hash: 29f5c7c7ec31f6522b77edf376b705aedf44d348 29f5c7c
Thursday, 18 May 2023
11:36 Dimitry Andric (dim) search for other commits by this committer
textproc/p5-XML-LibXML: fix build with clang 16

Clang 16 has a new error about incompatible function types, which shows
up when building textproc/p5-XML-LibXML:

  perl-libxml-mm.c:142:18: error: incompatible function pointer types passing
'void (void *, void *, xmlChar *)' (aka 'void (void *, void *, unsigned char
*)') to parameter of type 'xmlHashScanner' (aka 'void (*)(void *, void *, const
unsigned char *)') [-Wincompatible-function-pointer-types]
                  xmlHashScan(r, PmmRegistryDumpHashScanner, NULL);
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~
  /usr/local/include/libxml2/libxml/hash.h:213:22: note: passing argument to
parameter 'f' here
                                           xmlHashScanner f,
                                                          ^
  perl-libxml-mm.c:234:44: error: incompatible function pointer types passing
'void (void *, xmlChar *)' (aka 'void (void *, unsigned char *)') to parameter
of type 'xmlHashDeallocator' (aka 'void (*)(void *, const unsigned char *)')
[-Wincompatible-function-pointer-types]
          if( xmlHashRemoveEntry(PmmREGISTRY, name, PmmRegistryHashDeallocator)
)
                                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~
  /usr/local/include/libxml2/libxml/hash.h:160:47: note: passing argument to
parameter 'f' here
                             xmlHashDeallocator f);
                                                ^
  perl-libxml-mm.c:301:38: error: incompatible function pointer types passing
'void *(void *, xmlChar *)' (aka 'void *(void *, unsigned char *)') to parameter
of type 'xmlHashCopier' (aka 'void *(*)(void *, const unsigned char *)')
[-Wincompatible-function-pointer-types]
          reg_copy = xmlHashCopy(PmmREGISTRY, PmmRegistryHashCopier);
                                              ^~~~~~~~~~~~~~~~~~~~~
  /usr/local/include/libxml2/libxml/hash.h:208:21: note: passing argument to
parameter 'f' here
                                           xmlHashCopier f);
                                                         ^

In all three cases, the libxml2 callback functions require const xmlChar
pointers, so fix the parameters in their definitions.

PR:		271355
Approved by:	portmgr (build fix blanket)
MFH:		2023Q2
commit hash: ea9006c8e8ff30532f8ebd66d850cc6b2b8701b7 commit hash: ea9006c8e8ff30532f8ebd66d850cc6b2b8701b7 commit hash: ea9006c8e8ff30532f8ebd66d850cc6b2b8701b7 commit hash: ea9006c8e8ff30532f8ebd66d850cc6b2b8701b7 ea9006c
Sunday, 9 Oct 2022
15:38 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
textproc/p5-XML-LibXML: Update to 2.0208

Changes:	https://metacpan.org/dist/XML-LibXML/changes
commit hash: eff20706e4f06c658470135f5b97d8918ddf2aa9 commit hash: eff20706e4f06c658470135f5b97d8918ddf2aa9 commit hash: eff20706e4f06c658470135f5b97d8918ddf2aa9 commit hash: eff20706e4f06c658470135f5b97d8918ddf2aa9 eff2070
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:23 Tobias C. Berner (tcberner) search for other commits by this committer
textproc: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  "Choe, Cheng-Dae" whitekid
  *  -
  *  <glewis@FreeBSD.org>
  *  <koshy@india.hp.com>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Dalton <aaron@daltons.ca>
  *  Aaron Straup Cope
  *  Aaron Straup Cope <ascope@cpan.org>
  *  Ache
  *  Adam Herzog <adam@herzogdesigns.com>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Akinori MUSHA aka knu <knu@FreeBSD.org>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Alan Eldridge <alane@FreeBSD.org>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Kapranoff <kappa@FreeBSD.org.ua>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Nedotsukov <bland@FreeBSD.org>
  *  Alexander Zhuravlev <zaa@zaa.pp.ru>
  *  Alexander@Leidinger.net
  *  Alexandre Biancalana <ale@biancalanas.net>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alexis Praga <alexis.praga@free.fr>
  *  Andreas Heil <ah@linux-hq.de>
  *  Andrei V. Shetuhin <reki@reki.ru>
  *  Andrej Zverev <andrey.zverev@electro-com.ru>
  *  Andrew <andrew@ugh.net.au>
  *  Andrew Humphrey <ahumphrey@realestate.com.au>
  *  Andrew Lewis <freeghb@gmail.com>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrew Romero <melanhit@gmail.com>
  *  Andrey Kostenko <andrey@kostenko.name>
  *  Andrey Zakhvatov
  *  Andrey Zakhvatov <andy@FreeBSD.org>
  *  Anes Mukhametov <anes@anes.su>
  *  Antoine Brodin <antoine@FreeBSD.org>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Anton Berezin <tobez@tobez.org>
  *  Anton Yudin <toha@toha.org.ua>
  *  Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
  *  Ashish SHUKLA <wahjava@gmail.com>
  *  Autrijus Tang <autrijus@autrijus.org>
  *  Babak Farrokhi <farrokhi@FreeBSD.org>
  *  Ben Haga <tuxsuximus@hotmail.com>
  *  Ben Woods <woodsb02@FreeBSD.org>
  *  Benno Rice <benno@jeamland.net>
  *  Bill "I hate Perl" Fumerola
  *  Bill Brinzer <bill.brinzer@gmail.com>
  *  Bill Fumerola <billf@chc-chimes.com>
  *  Bill Swingle <unfurl@FreeBSD.org>
  *  Bob Eager <rde@ml1.org.uk>
  *  Boris Samorodov <bsam@FreeBSD.org>
  *  Brian Candler <B.Candler@pobox.com>
  *  Brion Moss <brion@queeg.com>
  *  Carlos J Puga Medina <cpm@fbsd.es>
  *  Carlos J. Puga Medina <cpm@FreeBSD.org>
  *  Cezary Morga <cm@therek.net>
  *  Cheng-Lung Sung <clsung@FreeBSD.org>
  *  Cheng-Lung Sung <clsung@dragon2.net>
  *  Chris D. Faulhaber <jedgar@fxp.org>
  *  Chris Hutchinson <portmaster@bsdforge.com>
  *  Christoper Key <cjk32@cam.ac.uk>
  *  Clemens Zauner <czauner+ports@onlineloop.com>
  *  Cyrille Lefevre <clefevre@citeweb.net>
  *  Dan Langille <dvl@FreeBSD.org>
  *  Daniel Roethlisberger <daniel@roe.ch>
  *  Danilo G. Baio <dbaio@FreeBSD.org>
  *  David Bremner <bremner@unb.ca>
  *  David O'Brien (obrien@FreeBSD.org)
  *  David Sze <dsze@alumni.uwaterloo.ca>
  *  Denis Pokataev <catone@cpan.org>
  *  Dennis Herrmann <dhn@FreeBSD.org>
  *  Dereckson <dereckson@gmail.com>
  *  Dikshie
  *  Dikshie <dikshie@sfc.wide.ad.jp>
  *  Dima Sivachenko <demon@gpad.ac.ru>
  *  Dirk Froemberg <dirk@FreeBSD.org>
  *  Ditesh Shashikant Gathani <ditesh@gathani.org>
  *  Dmitry Morozovsky <marck@FreeBSD.org>
  *  Dmitry Sivachenko <demon@FreeBSD.org>
  *  Dom Mitchell <dom@happygiraffe.net>
  *  Don Croyle <croyle@gelemna.org>
  *  Donald Burr <dburr@FreeBSD.org>
  *  Douglas Thrift <douglas@douglasthrift.net>
  *  Dru Lavigne <dru@FreeBSD.org>
  *  Dryice Liu <dryice@dryice.name>
  *  Ed Schouten <ed@FreeBSD.org>
  *  Edward Tomasz Napierala <trasz@FreeBSD.org>
  *  Elvis Chiang <elvis@sslab.cs.ccu.edu.tw>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@critical.ch>
  *  Eric A. Griff <eric@talesfromthereal.com>
  *  Eric Freeman <freebsdports@chillibear.com>
  *  Erik Greenwald <erik@smluc.org>
  *  Ernst de Haan <znerd@FreeBSD.org>
  *  Erwin Lansing <erwin@FreeBSD.org>
  *  Espen Tagestad <espen@tagestad.no>
  *  Eugene Furs <justas@mbank.lv>
  *  Felippe de Meirelles Motta <lippemail@gmail.com>
  *  Felix Palmen <felix@palmen-it.de>
  *  Fernan Aguero <fernan@iib.unsam.edu.ar>
  *  Filip Parag <filip@parag.rs>
  *  Foxfair Hu <foxfair@FreeBSD.org>
  *  Freddie Cash <fcash@sd73.bc.ca>
  *  Frederic Culot <culot@FreeBSD.org>
  *  Frederic Dubuy <fdubuy@free.fr>
  *  Gabor Kovesdan <gabor@FreeBSD.org>
  *  Garrett Rooney <rooneg@electricjellyfish.net>
  *  Gasol Wu <gasol.wu@gmail.com>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  Geoffroy Desvernay <dgeo@centrale-marseille.fr>
  *  George Hartzell <hartzell@fruitfly.org>
  *  Gerald Pfeifer <gerald@pfeifer.com>
  *  Gerrit Beine <gerrit.beine@gmx.de>
  *  Glenn Trewitt <glenn@trewitt.org>
  *  Goran Tal <goran.tal@gmail.com>
  *  Graham Todd <gtodd@bellanet.org>
  *  Greg Larkin <glarkin@FreeBSD.org>
  *  Greg Lewis <glewis@FreeBSD.org>
  *  Grzegorz Blach <gblach@FreeBSD.org>
  *  Guangyuan Yang <ygy@FreeBSD.org>
  *  Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
  *  Henrik Motakef <henrik.motakef@web.de>
  *  Henry Hu <henry.hu.sh@gmail.com>
  *  Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
  *  Herve Quiroz <hq@FreeBSD.org>
  *  Hiroki Sato <hrs@FreeBSD.org>
  *  Horia Racoviceanu <horia@racoviceanu.com>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Ian Vaudrey <i.vaudrey@bigfoot.com>
  *  Ilya A. Arkhipov <rum1cro@yandex.ru>
  *  Jaap Boender <jaapb@kerguelen.org>
  *  James Earl
  *  James Flemer <jflemer@alum.rpi.edu>
  *  James Raftery <james@now.ie>
  *  Jason Burgess <dev@fenux.net>
  *  Jason Helfman <jgh@FreeBSD.org>
  *  Jean-Baptiste Quenot <jb.quenot@caraldi.com>
  *  Jean-Yves Lefort <jylefort@brutele.be>
  *  Jeff Putsch <jdputsch@comcast.net>
  *  Jeremy Shaffner <jeremy@external.org>
  *  Jie Gao <gaoj@cpsc.ucalgary.ca>
  *  Jim Mock <jim@FreeBSD.org>
  *  Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Johann Visagie <johann@egenetics.com>
  *  Johann Visagie <wjv@FreeBSD.org>
  *  Johannes Jost Meixner <xmj@FreeBSD.org>
  *  Johannes Meixner <johannes@perceivon.net>
  *  John MacFarlane <jgm@berkeley.edu>
  *  John Marino <marino@FreeBSD.org>
  *  Jonathan Chen <jonc@chen.org.nz>
  *  Jos Backus <josb@cncdsl.com>
  *  Joseph Koshy <jkoshy@FreeBSD.org>
  *  Josh Gilliam <josh@quick.net>
  *  Jov <amutu@amutu.com>
  *  Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
  *  Julien Laffaye <kimelto@gmail.com>
  *  Jun Kuriyama <kuriyama@opt.phys.waseda.ac.jp>
  *  Jyun-Yan You <jyyou@cs.nctu.edu.tw>
  *  KANOU Hiroki <kanou@khdd.net>
  *  KIMURA Yasuhiro <yasu@utahime.org>
  *  KIRIYAMA Kazuhiko <kiri@FreeBSD.org>
  *  Ka Ho Ng <khng300@gmail.com>
  *  Kay Lehmann <kay_lehmann@web.de>
  *  Kevin Lo <kevlo@FreeBSD.org>
  *  Kimura Fuyuki <fuyuki@hadaly.org>
  *  Kimura Fuyuki <fuyuki@mj.0038.net>
  *  Kimura Fuyuki <fuyuki@nigredo.org>
  *  Konstantin Menshikov <kostjnspb@yandex.ru>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Kouichi ABE (WALL) <kouichi@mysticwall.com>
  *  Kris Kennaway <kris@FreeBSD.org>
  *  Kris Moore <kmoore@FreeBSD.org>
  *  Kuan-Chung Chiu <buganini@gmail.com>
  *  Kubilay Kocak <koobs@FreeBSD.org>
  *  Kurt Lidl <kurt.lidl@cello.com>
  *  Lars Balker Rasmussen <lbr@FreeBSD.org>
  *  Lars Engels <lme@FreeBSD.org>
  *  Lars Thegler <lars@thegler.dk>
  *  Lars Thegler <lth@FreeBSD.org>
  *  Leland Wang <llwang@infor.org>
  *  Leo Kim <leo@florida.sarang.net>
  *  Lev Serebryakov <lev@serebryakov.spb.ru>
  *  Li-Wen Hsu <lwhsu@FreeBSD.org>
  *  Loic Pefferkorn <loic-freebsd@loicp.eu>
  *  MANTANI Nobutaka <nobutaka@FreeBSD.org>
  *  MIHIRA Yoshiro <sanpei@FreeBSD.org>
  *  Marcin Cieslak
  *  Marcin Jessa <yazzy@yazzy.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Mark Pulford <mark@kyne.com.au>
  *  Mark R V Murray <mark@grondar.za>
  *  Martin Kammerhofer
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Marwan Burelle <marwan.burelle@lri.fr
  *  Masahiro Teramoto <markun@onohara.to>
  *  Mathieu Arnold <m@absolight.net>
  *  Matt Mills <matt_mills@btopenworld.com>
  *  Matthew Fuller <fullermd@over-yonder.net>
  *  Matthew Seaman
  *  Matthias Fechner <mfechner@FreeBSD.org>
  *  Mauricio Herrera Cuadra <mauricio@arareko.net>
  *  Max Baryshnikov <mephius@gmail.com>
  *  Max N. Boyarov <m.boyarov@gmail.com>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Meno Abels <meno.abels@adviser.com>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Johnson <ahze@ahze.net>
  *  Michael Moll <kvedulv@kvedulv.de>
  *  Michael Ranner <michael@ranner.eu>
  *  Michael Schout <mschout@gkg.net>
  *  Mike Bristow <mike@urgle.com>
  *  Mikhail Teterin <mi@aldan.algebra.com>
  *  Moggie <moggie@elasticmind.net>
  *  Mykola Dzham <freebsd@levsha.org.ua>
  *  Naram Qashat <cyberbotx@cyberbotx.com>
  *  Neil Booth
  *  Nicola Stanislao Vitale <nivit@FreeBSD.org
  *  Nicola Stanislao Vitale <nivit@FreeBSD.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Nicola Vitale <nivit@email.it>
  *  Nik Clayton <nik@FreeBSD.org>
  *  Nikola Lecic <nikola.lecic@anthesphoria.net>
  *  Nosov Artem <chip-set@mail.ru>
  *  Oleg Mamontov <oleg@mamontov.net>
  *  Oliver Braun <obraun@informatik.unibw-muenchen.de>
  *  Oliver Eikemeier <eikemeier@fillmore-labs.com>
  *  Oliver Lehmann (oliver@FreeBSD.org)
  *  Olivier Duchateau
  *  Olivier Duchateau <olivierd@FreeBSD.org>
  *  Olivier Girard <Olivier.Girard@univ-angers.fr>
  *  Patrick Li <pat@databits.net>
  *  Patrick Powell <papowell@astart.com>
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Pav Lucistnik <pav@oook.cz>
  *  Pavel Timofeev <timp87@gmail.com>
  *  Pawel Pekala <pawel@FreeBSD.org>
  *  Pedro Giffuni
  *  Pedro Giffuni <pfg@FreeBSD.org>
  *  Pete Fritchman <petef@databits.net>
  *  Peter Johnson <johnson.peter@gmail.com>
  *  Peter Pentchev <roam@FreeBSD.org>
  *  Peter Schuller <peter.schuller@infidyne.com>
  *  Petteri Valkonen <petteri.valkonen@iki.fi>
  *  Pietro Cerutti <gahr@gahr.ch>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Piotr Rybicki <meritus@innervision.pl>
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Radim Kolar <hsn@sanatana.dharma>
  *  Rainer Hurling <rhurlin@gwdg.de>
  *  Rene Ladan <rene@FreeBSD.org>
  *  René Ladan <rene@freebsd.org>
  *  Richard Gallamore <ultima@FreeBSD.org>
  *  Rick van der Zwet <info@rickvanderzwet.nl>
  *  Robert Gogolok <gogo@cs.uni-sb.de>
  *  Rod Taylor <ports@rbt.ca>
  *  Rodrigo OSORIO <rodrigo@FreeBSD.org>
  *  Roger Leigh <rleigh@codelibre.net>
  *  Rong-En Fan <rafan@infor.org>
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Russell Cloran <russell@rucus.ru.ac.za>
  *  Russell Jackson <raj@csub.edu>
  *  Ryan Steinmetz <zi@FreeBSD.org>
  *  Samuel Tardieu <sam@inf.enst.fr>
  *  Sascha Holzleiter <sascha@root-login.org>
  *  Scott Sanders <scott@jssjr.com>
  *  Seamus Venasse <svenasse@polaris.ca>
  *  Serge Gagnon <ser_gagnon@sympatico.ca>
  *  Sergei Kolobov <sergei@kolobov.com>
  *  Sergei Vyshenski <svysh.fbsd@gmail.com>
  *  Sergey A. Osokin <osa@FreeBSD.org>
  *  Sergey Skvortsov <skv@FreeBSD.org>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Shen Chun-Hsing <statue@freebsd.netlab.cse.yzu.edu.tw>
  *  Shinsuke Matsui <smatsui@karashi.org>
  *  Silvio Ap Silva aka kanazuchi <alvolivre@live.com>
  *  Simon 'corecode' Schubert <corecode@corecode.ath.cx>
  *  Simon Olofsson <simon@olofsson.de>
  *  Soeren Boll Overgaard <boll@tolkien.dk>
  *  Sofian Brabez <sbz@FreeBSD.org>
  *  Stanislav Svirid <count@211.ru>
  *  Stefan Esser <se@FreeBSD.org>
  *  Stefan Pauly <stefan@fh-mainz.de>
  *  Stefan Walter <sw@gegenunendlich.de>
  *  Stephen Montgomery-Smith <stephen@math.missouri.edu>
  *  Stephen Roznowski (sjr@home.com)
  *  Stephon Chen <stephon@gmail.com>
  *  Steve Wills <swills@FreeBSD.org>
  *  Steve Wills <swills@rubick>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
  *  Sven R <freebsd@hackacad.net>
  *  Sébastien Santoro <dereckson@gmail.com>
  *  TAKAHASHI Kaoru <kaoru@kaisei.org>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  TAKATSU Tomonari <tota@rtfm.jp>
  *  TERAMOTO Masahiro <markun@onohara.to>
  *  Thierry Thomas <thierry@FreeBSD.org>
  *  Thierry Thomas <thierry@pompo.net>
  *  Thomas Gellekum <tg@FreeBSD.org>
  *  Thorsten Greiner <thorsten.greiner@web.de>
  *  Tilman Linneweh <arved@FreeBSD.org>
  *  Timothy Beyer <beyert@cs.ucr.edu>
  *  Timur Bakeyev <bat@cpan.org>
  *  Timur I. Bakeyev <timur@gnome.org>
  *  Toby Allsopp <toby@mi6.gen.nz>
  *  Tom Judge <tj@FreeBSD.org>
  *  Tom Judge <tom@tomjudge.com>
  *  Tom Sparks <tsparks@appliedops.net>
  *  Tomoyuki Sakurai <cherry@trombik.org>
  *  Torsten Zuehlsdorff <ports@toco-domains.de>
  *  Torsten Zuehlsdorff <tz@FreeBSD.org>
  *  Travis Campbell <hcoyote@ghostar.org>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  Ulrich Spoerlein <uqs@FreeBSD.org>
  *  Ulrich Spoerlein <uspoerlein@gmail.com>
  *  Uwe Pierau <uwe.pierau@tu-clausthal.de>
  *  Vadim Vatlin
  *  Vany <ivan@serezhkin.com>
  *  Vasek Balcar <vasek@ti.cz>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  Vidar Karlsen <vidar@karlsen.tech>
  *  Vivek Khera <vivek@khera.org>
  *  Volker Stolz <vs@FreeBSD.org>
  *  Vsevolod Stakhov <vsevolod@highsecure.ru>
  *  Waitman Gobble <waitman@waitman.net>
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen Heping<wen@FreeBSD.org>
  *  Will Andrews <will@FreeBSD.org>
  *  William Grzybowski <wg@FreeBSD.org>
  *  Xavier Humbert <xavier@amdh.fr>
  *  Xin LI <delphij@FreeBSD.org>
  *  Yarema <yds@CoolRat.org>
  *  Yarema <yds@Necessitu.de>
  *  Yen-Ming Lee <leeym@FreeBSD.org>
  *  Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
  *  Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
  *  Ying-Chieh Liao <ijliao@FreeBSD.org>
  *  Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
  *  Yinghong Liu <relaxbsd@gmail.com>
  *  Yinghong.Liu <relaxbsd@gmail.com>
  *  Yoshiro MIHIRA <sanpei@sanpei.org>
  *  Yoshiro MIHIRA <sanpei@yy.cs.keio.ac.jp>
  *  Yuan-Chung Hsiao <ychsiao@ychsiao.org>
  *  Yukihiro Nakai <Nakai@technologist.com>
  *  Yuri Pankov <yuri.pankov@gmail.com>
  *  Yuri Victorovich <yuri@rawbw.com>
  *  Zane C. Bowers-Hadley <vvelox@vvelox.net>
  *  Zeus Panchenko <zeus@gnu.org.ua>
  *  Zhen REN <bg1tpt@gmail.com>
  *  Zhihao Yuan <lichray@gmail.com>
  *  ache
  *  andreas@marvin.robin.de
  *  andrey@kostenko.name
  *  anholt@FreeBSD.org
  *  antoine@FreeBSD.org
  *  arved
  *  b.f. <bf@FreeBSD.org>
  *  bf@FreeBSD.org
  *  brett@peloton.physics.montana.edu
  *  buganini@gmail.com
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  chinsan <chinsan@mail2000.com.tw>
  *  clsung
  *  clsung@dragon2.net
  *  dannyman <dannyman@tellme.com>
  *  dd
  *  domi@saargate.de
  *  eivind
  *  eric
  *  faber@lunabase.org
  *  fenner
  *  fenner@FreeBSD.org
  *  gahr
  *  gugabsd <gugabsd@mundounix.com.br>
  *  gurkan@phys.ethz.ch
  *  ijliao
  *  jabley@automagic.org
  *  janos.mohacsi@bsd.hu
  *  jfieber
  *  jkoshy
  *  john@zoner.org
  *  jupengfei <jupengfei@gmail.com>
  *  kai
  *  kevit
  *  king@v2project.com
  *  kuriyama
  *  lars.eggert@gmx.net
  *  lbartoletti <lbartoletti@FreeBSD.org>
  *  lofi@FreeBSD.org
  *  lth@FreeBSD.org
  *  mainland@apeiron.net
  *  mandree@FreeBSD.org
  *  markm@FreeBSD.org
  *  meyser@xenet.de
  *  mike
  *  milki <milki@rescomp.berkeley.edu>
  *  nectar
  *  nik
  *  nivit@users.sourceforge.net
  *  nork@FreeBSD.org
  *  paulh@logicsquad.net
  *  petef@databits.net
  *  peter.schuller@infidyne.com
  *  philip@p6m7g8.com
  *  ports@c0decafe.net
  *  reed@pugetsoundtechnology.com
  *  rfarmer@predatorlabs.net
  *  risner@stdio.com
  *  scheidell@secnap.net
  *  shige
  *  skreuzer
  *  snowchyld
  *  steve
  *  sumikawa@FreeBSD.org
  *  sumikawa@kame.net
  *  thierry@pompo.net
  *  tj@FreeBSD.org
  *  trasz
  *  trevor
  *  vanilla
  *  wen@FreeBSD.org
  *  wosch
  *  znerd@FreeBSD.org

With hat:	portmgr
commit hash: 5cf7e35e8664e11393fedc7d89b4d09e0fcced9b commit hash: 5cf7e35e8664e11393fedc7d89b4d09e0fcced9b commit hash: 5cf7e35e8664e11393fedc7d89b4d09e0fcced9b commit hash: 5cf7e35e8664e11393fedc7d89b4d09e0fcced9b 5cf7e35
Sunday, 10 Apr 2022
19:11 Charlie Li (vishwin) search for other commits by this committer
textproc/libxml2: bump all LIB_DEPENDS consumers

This is a separate commit to facilitate easier cherry-picking for
quarterly.

PR: 262853, 262940, 262877, 263126
Approved by: fluffy (mentor)
commit hash: d63665f7cd9c99880704a3c5bc221829cb009744 commit hash: d63665f7cd9c99880704a3c5bc221829cb009744 commit hash: d63665f7cd9c99880704a3c5bc221829cb009744 commit hash: d63665f7cd9c99880704a3c5bc221829cb009744 d63665f
Saturday, 26 Mar 2022
08:27 Matthias Fechner (mfechner) search for other commits by this committer
textproc/libxml2: bump all dependencies

This should make sure that all dependent ports will pick
up the new version commited with a13ec21cd733f67a9fc0dc00ab45268bdc236246
commit hash: 247c7db7513f1264922428278678da641c5a3f52 commit hash: 247c7db7513f1264922428278678da641c5a3f52 commit hash: 247c7db7513f1264922428278678da641c5a3f52 commit hash: 247c7db7513f1264922428278678da641c5a3f52 247c7db
Sunday, 30 May 2021
19:57 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
textproc/p5-XML-LibXML: Update to 2.0207

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
commit hash: 35c5687173138d26013b4965d562a3db55909a4a commit hash: 35c5687173138d26013b4965d562a3db55909a4a commit hash: 35c5687173138d26013b4965d562a3db55909a4a commit hash: 35c5687173138d26013b4965d562a3db55909a4a 35c5687
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
Wednesday, 23 Sep 2020
18:51 sunpoet search for other commits by this committer
Update to 2.0206

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:549812 
Friday, 24 Jul 2020
07:27 sunpoet search for other commits by this committer
Update to 2.0205

- Remove pkg-install: 2.0205 adds XML::LibXML to the XML/SAX/ParserDetails.ini
upon installation

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:543162 
Tuesday, 7 Apr 2020
14:35 sunpoet search for other commits by this committer
Update to 2.0204

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:531006 
Monday, 20 Jan 2020
20:12 sunpoet search for other commits by this committer
Update to 2.0202

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:523680 
Monday, 11 Feb 2019
19:00 sunpoet search for other commits by this committer
Update to 2.0134

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:492728 
Saturday, 2 Feb 2019
21:56 sunpoet search for other commits by this committer
Update to 2.0133

- Add USES=gnome
- Use CONFLICTS_INSTALL instead of CONFLICTS
- Simplify CONFLICTS_INSTALL

Changes:	https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:492011 
Saturday, 6 Oct 2018
13:06 des search for other commits by this committer
Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, except
for where it resulted in a change in output from build-depends-list or
run-depends-list.

Approved by:	portmgr (adamw)
Original commitRevision:481365 
Sunday, 29 Oct 2017
16:10 sunpoet search for other commits by this committer
Update to 2.0132

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:453122 
Tuesday, 24 Oct 2017
17:41 sunpoet search for other commits by this committer
Update to 2.0131

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:452795 
Friday, 15 Sep 2017
08:58 mat search for other commits by this committer
Fix license information for portgs that use "the same license as Perl".

Sponsored by:	Absolight
Original commitRevision:449893 
Wednesday, 15 Mar 2017
11:32 sunpoet search for other commits by this committer
Update to 2.0129

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:436216 
Monday, 10 Oct 2016
20:10 adamw search for other commits by this committer
Update to 2.0128.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:423696 
Friday, 24 Jun 2016
18:16 adamw search for other commits by this committer
Update to 2.106.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:417441 
Tuesday, 21 Jun 2016
15:09 mat search for other commits by this committer
Update to 2.0125.

Sponsored by:	Absolight
Original commitRevision:417265 
Friday, 1 Apr 2016
14:25 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412349 
Saturday, 27 Feb 2016
15:01 adamw search for other commits by this committer
Update to 2.1024.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:409669 
Tuesday, 12 Jan 2016
21:41 sunpoet search for other commits by this committer
- Update to 2.0123

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:405962 
Wednesday, 2 Sep 2015
17:04 sunpoet search for other commits by this committer
- Update to 2.0122

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:395894 
Monday, 29 Jun 2015
15:47 adamw search for other commits by this committer
After r390893, chmod u+w/u-w for stripping perl XS modules is unnecessary,
and in fact now leads to incorrect permissions.

Remove all instances of it from perl@ ports.
Original commitRevision:390918 
Tuesday, 16 Jun 2015
14:27 sunpoet search for other commits by this committer
- Allow to strip shared library as regular user
Original commitRevision:389849 
Monday, 4 May 2015
20:18 sunpoet search for other commits by this committer
- Update to 2.0121

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:385429 
Friday, 1 May 2015
15:20 adamw search for other commits by this committer
Update to 2.0120.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:385122 
Friday, 24 Apr 2015
19:59 adamw search for other commits by this committer
Update to 2.0119.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:384680 
Saturday, 14 Feb 2015
17:48 adamw search for other commits by this committer
Update to 2.0118.

Changes: https://metacpan.org/changes/distribution/XML-LibXML
Original commitRevision:378979 
Sunday, 11 Jan 2015
13:30 sunpoet search for other commits by this committer
- Update to 2.0117

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:376763 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
Change the way Perl modules are installed, update the default Perl to 5.18.

Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
Original commitRevision:373448 
Sunday, 24 Aug 2014
19:21 pi search for other commits by this committer
textproc/p5-XML-LibXML: 2.0108 -> 2.0116

http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-2.0116/Changes

PR:		192692
Reviewed by:	mat
Original commitRevision:365999 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
Sunday, 23 Feb 2014
15:21 sunpoet search for other commits by this committer
- Use USE_GNOME=libxml2 instead of hardcoded LIB_DEPENDS

PR:		ports/186218
Submitted by:	Jim Ohlstein <jim@ohlste.in>
Original commitRevision:345734 
Tuesday, 31 Dec 2013
04:26 sunpoet search for other commits by this committer
- Update to 2.0108

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:338226 
Saturday, 23 Nov 2013
17:31 sunpoet search for other commits by this committer
- Update to 2.0107

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:334687 
Tuesday, 12 Nov 2013
19:47 antoine search for other commits by this committer
Finish stage support
Bump PORTREVISION as package didn't have man pages
Original commitRevision:333610 
Thursday, 7 Nov 2013
03:52 vanilla search for other commits by this committer
Support STAGEDIR.
Original commitRevision:333056 
Friday, 20 Sep 2013
23:17 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
textproc)
Original commitRevision:327773 
Wednesday, 18 Sep 2013
15:22 sunpoet search for other commits by this committer
- Update to 2.0106
- Add TEST_DEPENDS

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:327559 
Saturday, 7 Sep 2013
20:52 tobez search for other commits by this committer
Update t 2.0105.

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:326686 
Tuesday, 3 Sep 2013
19:32 sunpoet search for other commits by this committer
- Update to 2.0104
- Convert to new LIB_DEPENDS format
- Sort MAN3 and PLIST

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:326212 
Friday, 2 Aug 2013
18:52 mat search for other commits by this committer
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
Original commitRevision:324174 
Friday, 14 Jun 2013
07:50 culot search for other commits by this committer
- Update to 2.0018
- Add LICENSE (Artistic 1 & GPL 1)

Changes:	http://search.cpan.org/dist/XML-LibXML/Changes
Original commitRevision:320888 
Monday, 22 Apr 2013
12:53 bapt search for other commits by this committer
Reassign p5-* ports from skv to perl@
While here trim headers

Feature safe:	yes
Original commitRevision:316227 
Thursday, 14 Mar 2013
18:04 bapt search for other commits by this committer
Register and unregister both XML::LibXML::SAX and XML::LibXML::SAX::Parser
Make post-install script actually working
Remove post-install target from the port and the "normal" make install in
sources already register the parsers
Original commitRevision:314174 
Saturday, 22 Sep 2012
19:44 swills search for other commits by this committer
- Update to 2.0004,1

PR:		ports/171065
Approved by:	maintainer timeout (skv, >3 weeks)
Original commitRevision:304717 
Tuesday, 8 May 2012
15:27 skv search for other commits by this committer
Update to 1.97

Changes:        http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-1.97/Changes
Original commit
Thursday, 22 Mar 2012
20:48 skv search for other commits by this committer
Update to 1.96

Changes:        http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-1.96/Changes
Feature safe:   yes
Original commit
Thursday, 9 Feb 2012
06:31 kevlo search for other commits by this committer
Fix post-install
Original commit
Friday, 11 Nov 2011
19:03 skv search for other commits by this committer
Update to 1.88

Changes:        http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-1.88/Changes
Feature safe:   yes
Original commit
Saturday, 17 Sep 2011
06:49 sunpoet search for other commits by this committer
- Change PERL_CONFIGURE to "yes" for all values less than or equal to 5.8.0+

With hat:       perl
Original commit
Wednesday, 27 Jul 2011
20:15 skv search for other commits by this committer
Update to 1.84

Changes:        http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-1.84/Changes
PR:             ports/159208
Submitted by:   milki <milki@rescomp.berkeley.edu>
Original commit
Thursday, 14 Jul 2011
20:45 skv search for other commits by this committer
Update to 1.80

Changes:        http://cpansearch.perl.org/src/SHLOMIF/XML-LibXML-1.80/Changes
Original commit
Sunday, 19 Jun 2011
08:05 skv search for other commits by this committer
Update to 1.72
Original commit
Friday, 30 Oct 2009
16:13 skv search for other commits by this committer
Update to 1.70

PR:             ports/139815
Submitted by:   wen
Changes:        http://cpansearch.perl.org/src/PAJAS/XML-LibXML-1.70/Changes
Original commit
Friday, 28 Nov 2008
15:12 skv search for other commits by this committer
Update to 1.69

Changes:         http://search.cpan.org/src/PAJAS/XML-LibXML-1.69/Changes
Original commit
Thursday, 17 Apr 2008
14:30 araujo search for other commits by this committer
- Take advantage of CPAN macro from bsd.sites.mk, change
${MASTER_SITE_PERL_CPAN} to CPAN.

PR:             ports/122674
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com>
Reworked by:    araujo (myself)
Approved by:    portmgr (pav)
Original commit
Thursday, 31 Jan 2008
20:13 skv search for other commits by this committer
Update to 1.66

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.66/Changes
Original commit
Thursday, 27 Sep 2007
14:59 skv search for other commits by this committer
Update to 1.65

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.65/Changes
Original commit
Sunday, 27 May 2007
14:19 skv search for other commits by this committer
Update to 1.63

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.63/Changes
PR:             ports/112278
Submitted by:   Paul Dlug <paul xx aps.org>
Original commit
Wednesday, 20 Dec 2006
14:20 tobez search for other commits by this committer
Update to 1.62001.  Require perl from ports.

Approved by:    maintainer
Original commit
Monday, 20 Nov 2006
07:26 skv search for other commits by this committer
Update to 1.62

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.62/Changes
Original commit
Friday, 29 Sep 2006
08:35 skv search for other commits by this committer
* fix plist
* add conflict with p5-XML-LibXML-XPathContext
  (because it was merged into p5-XML-LibXML)
Original commit
Wednesday, 27 Sep 2006
08:28 skv search for other commits by this committer
Update to 1.61003

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.61003/Changes
Original commit
Tuesday, 5 Sep 2006
17:33 skv search for other commits by this committer
Update to 1.60

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.60/Changes
Original commit
Thursday, 3 Aug 2006
12:57 skv search for other commits by this committer
Update to 1.59

Changes:        http://search.cpan.org/src/PAJAS/XML-LibXML-1.59/Changes
PR:             ports/101292
Submitted by:   Gea-Suan Lin <gslin xx gslin.org>
Original commit
Tuesday, 9 Nov 2004
14:08 skv search for other commits by this committer
Add "pkg-install".
Original commit
Tuesday, 21 Sep 2004
17:51 leeym search for other commits by this committer
- add missing *.pod files into pkg-plist
- set XMLPREFIX=${LOCALBASE} and make it PREFIX clean.

PR:             71108
Submitted by:   leeym
Approved by:    portmgr (marcus)
Original commit
Sunday, 16 May 2004
16:12 skv search for other commits by this committer
Fix compile on perl 5.00503

Pinted by:      Aaron Scarisbrick <aaronsca@firetrack.net>
Original commit
Sunday, 11 Apr 2004
12:00 skv search for other commits by this committer
Updated to 1.58
Original commit
Tuesday, 23 Mar 2004
11:52 skv search for other commits by this committer
Updated to 1.57
Original commit
Monday, 19 Jan 2004
18:34 marcus search for other commits by this committer
Give maintainership back to skv.  He has told portmgr that he never intended
this port to lapse, and he is working with the author to provide a more
optimal fix to this port's build problems.

Approved by:    adam@migus.org (previous maintainer)
Original commit
Saturday, 10 Jan 2004
05:35 marcus search for other commits by this committer
Fix the build and assign maintainership to the submitter.

PR:             61156
Submitted by:   Adam C.Migus <adam@migus.org>
Approved by:    AWOL maintainer (email about BROKEN status sent on
                September 9, 2003)
Original commit
Tuesday, 23 Dec 2003
06:50 linimon search for other commits by this committer
Per bento logs, mark as broken on recent 5.x.  Notified maintainer.
Original commit
Thursday, 25 Sep 2003
11:09 skv search for other commits by this committer
Fix package building on perl 5.005_03.

Pointed by:     kris
Original commit
Tuesday, 2 Sep 2003
13:46 skv search for other commits by this committer
Updated to 1.56

Pointed by:     foxfair
Original commit
Monday, 9 Jun 2003
08:36 skv search for other commits by this committer
Updated to 1.54

PR:     ports/52965
Original commit
Friday, 28 Feb 2003
12:59 skv search for other commits by this committer
Fix missed XML::LibXML::Common dependency.
Original commit
Thursday, 27 Feb 2003
12:56 skv search for other commits by this committer
Updated to 1.53
Original commit
Thursday, 13 Jun 2002
16:10 skv search for other commits by this committer
Updated to 1.52
Original commit
Saturday, 1 Jun 2002
11:29 skv search for other commits by this committer
Updated to 1.51, because bugfixes
Original commit
Wednesday, 29 May 2002
08:55 skv search for other commits by this committer
Updated to 1.50.
Original commit
Friday, 12 Apr 2002
08:12 skv search for other commits by this committer
Updated to 1.40 (bugs fixed).

Approved by:    markm
Original commit
Saturday, 15 Dec 2001
10:10 ijliao search for other commits by this committer
"fix" upgrade to 1.31    
Original commit
Monday, 10 Dec 2001
12:58 sheldonh search for other commits by this committer
When RUN_DEPENDS is a superset of BUILD_DEPENDS, include   ${BUILD_DEPENDS}
instead of duplicating the dependency   definitions.    
Original commit
12:53 sheldonh search for other commits by this committer
Update p5-XML-LibXML and p5-XML-LibXSLT to matching version 1.31.    
Original commit
Tuesday, 10 Jul 2001
13:27 ijliao search for other commits by this committer
upgrade to 0.9.7    
Original commit
02:32 dwcjr search for other commits by this committer
Update to 0.92    
Original commit
Tuesday, 29 May 2001
11:40 ijliao search for other commits by this committer
nterface to Gnome libxml2 library   add p5-XML-LibX<:m    
Original commit

Number of commits found: 95