Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.11.8 15 Aug 2024 10:55:23 |
Po-Chuan Hsieh (sunpoet) |
textproc/libwbxml: Move textproc/wbxml2 to textproc/libwbxml
- Update WWW
- Update pkg-descr
- Bump PORTREVISION of dependent ports for dependency change
- Take maintainership |
0.11.8 09 Aug 2024 18:31:03 |
Florian Smeets (flo) |
*/*: Release a couple of ports |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
0.11.8 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
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 ) |
0.11.8 20 Jul 2022 14:23:14 |
Tobias C. Berner (tcberner) |
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> (Only the first 15 lines of the commit message are shown above ) |
0.11.8 18 May 2022 21:39:50 |
Florian Smeets (flo) |
textproc/wbxml2: Update to 0.11.8 |
0.11.7 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.11.7 19 Mar 2021 16:46:50 |
mat |
Regular USE_GITHUB cleanup.
Remove DISTNAME, it is always overwritten.
Cleanup GH_TAGNAME and WRKSRC. |
0.11.7 09 Mar 2021 21:17:29 |
flo |
Update to 0.11.7
PR: 251242
Submitted by: Martin Waschbusch <martin@waschbuesch.de> |
0.11.6 25 Dec 2018 20:25:40 |
tcberner |
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine |
0.11.6 16 Dec 2017 18:11:23 |
flo |
Update to 0.11.6 |
0.11.5 16 Jul 2017 19:58:15 |
pi |
textproc/wbxml2: update 0.11.4 -> 0.11.5
PR: 220177
Changes: https://github.com/libwbxml/libwbxml/releases
Submitted by: Martin Waschbuesch <martin@waschbuesch.de>
Approved by: flo (maintainer timeout) |
0.11.4_1 01 May 2016 07:21:56 |
flo |
Fix the build when libcheck is installed.
The switch to turn the detection off doesn't work, so remove the part from
the Makefile.
PR: 209060
Reported by: dewayne@heuristicsystems.com.au, w.schwarzenfeld@aon.at,
Zhang Huangbin <zhb@iredmail.org> |
0.11.4 23 Apr 2016 13:30:34 |
flo |
- update to 0.11.4
- regenerate patches with makepatch
Sponsored by: Essen Linuxhotel Hackathon 2016 |
0.11.2 01 Apr 2016 14:25:18 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
0.11.2 11 Oct 2015 21:34:11 |
flo |
Update wbxml2 to 0.11.2
PR: 203551
Submitted by: Martin Waschbuesch <martin@waschbuesch.de> |
0.10.9_1 03 Sep 2015 15:44:14 |
rakuco |
Uses/iconv.mk: Set iconv-related CMake variables.
The way we deal with iconv in base and ports across different FreeBSD
releases is complicated: 9.x does not have iconv.h in base, 10.1 has it with
a different prototype for iconv(3) and later versions have the right
iconv(3) prototype. And, in some cases (USES=iconv:{translit,wchar_t}), we
must always use the libiconv port.
This is why there are so many checks in Uses/iconv.mk: we need to know the
situation we currently have in order to decide whether to pull iconv from
converters/libiconv, whether to just use its header (and pull the library
from base) or whether to use everything from base.
r384038 adjusted several CMake-based ports, but did so in a way that was not
very scalable and required a few intrusive patches to some ports. Most ports (Only the first 15 lines of the commit message are shown above ) |
0.10.9_1 15 Apr 2015 08:20:28 |
tijl |
converters/libiconv:
- Remove const qualifier from iconv(3) to match POSIX:
http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html
- Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is
defined because the base system iconv supports these extensions too.
Add/remove patches to/from ports to call iconv with non-const arguments.
This breaks some ports on FreeBSD 10 because base system iconv.h still has
the const qualifier. Fix this by letting USES=iconv add a build dependency
on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG
defined) instead of the base system iconv.h.
This exposed some ports that link with libiconv when it is available instead
of using libc iconv. In these cases one of the following changes has been (Only the first 15 lines of the commit message are shown above ) |
0.10.9 02 Mar 2015 23:51:50 |
bapt |
Remove Author from pkg-descr and white space fixes |
0.10.9 15 Nov 2014 16:26:33 |
antoine |
Cleanup plist |
0.10.9 20 Mar 2014 07:15:53 |
ehaupt |
- Support staging
- Define DOCS option
- Use WWW: with a single space
- Define LICENSE and LICENSE_FILE
- Convert USE_BZIP2=yes to USES=tar:bzip2 |
0.10.9 20 Sep 2013 23:17:32 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
textproc) |
0.10.9 01 Sep 2013 19:51:53 |
bsam |
Adopt USES+=iconv.
Approved by: maintainers (by e-mail) |
0.10.9 22 Mar 2013 20:06:15 |
makc |
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi) |
0.10.9 10 Jan 2011 08:08:43 |
flo |
- update to 0.10.9
- add iconv support
- remove noportdocs patch that should have been removed with the update to
0.10.7 (ports/138458)
Approved by: fjoe (mentor) |
0.10.8 27 Dec 2010 22:02:09 |
flo |
- change MAINTAINER to my @FreeBSD.org address
Approved by: jadawin (mentor) |
0.10.8 22 Sep 2010 21:21:25 |
pgollucci |
- Update maintainer email address flo@kasimir.com -> flo@smeets.im
PR: ports/150855
Submitted by: maintainer |
0.10.8 09 May 2010 11:22:54 |
miwi |
- Update to 0.10.8
- Pass maintainership to submitter
PR: 145210
Submitted by: Florian Smeets <flo@kasimir.com> |
0.10.7 02 Sep 2009 16:44:02 |
miwi |
- Update to 0.10.7
PR: 138458
Submitted by: Ports Fury |
0.10.6 22 Aug 2009 00:37:17 |
amdmi3 |
- Switch SourceForge ports to the new File Release System: categories starting
with T,U,V |
0.10.6 02 Aug 2009 08:22:36 |
linimon |
Reset czauner+ports@onlineloop.com due to maintainer-timeouts and no
response to email.
Hat: portmgr |
0.10.6 11 May 2009 11:19:05 |
miwi |
- Update to 0.10.6
- RESPECT NO*
PR: 132585
Submitted by: Florian Smeets <flo@kasimir.com>
Approved by: maintainer timeout |
0.10.0_1 24 Mar 2009 19:13:32 |
makc |
bump PORTREVISION after cmake update |
0.10.0 19 Jan 2009 01:14:51 |
beech |
- Update to 0.10.0
PR: ports/129461
Submitted by: Alex Samorukov <samm@os2.kiev.ua>
Approved by: maintainer timeout (2+ weeks) |
0.9.2_2 20 Aug 2008 00:57:32 |
ade |
Conversion from (now defunct) autoconf-2.61 to autoconf-2.62
Tested by: exp build run (erwin) |
0.9.2_2 05 Jul 2008 00:31:21 |
edwin |
[PATCH] textproc/wbxml2: update to latest from official SVN
Add missing dependency on textproc/libxml2.
Fix package version in libwbxml2.pc.
Update to latest from official SVN to fix build python bindings from
SynCE Project.
PR: ports/124602
Submitted by: Alexander Logvinov <ports@logvinov.com>
Approved by: maintainer timeout |
0.9.2_1 19 Apr 2008 17:56:05 |
miwi |
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav) |
0.9.2_1 30 Sep 2007 04:47:37 |
linimon |
Switch autoconf dependencies from 2.53 or 2.59 to 2.61.
PR: ports/116639
Submitted by: aDe |
0.9.2 22 Apr 2007 22:49:42 |
sobomax |
Update to 0.9.2. |
0.9.0_2 15 Aug 2006 01:04:55 |
clsung |
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include security/ sysutils/ textproc/ maintained by ports@
PR: ports/101916
Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> |
0.9.0_2 13 May 2006 04:24:52 |
edwin |
Remove USE_REINPLACE from categories starting with T |
0.9.0_2 23 Feb 2006 10:40:45 |
ade |
Conversion to a single libtool environment.
Approved by: portmgr (kris) |
0.9.0_1 30 Jan 2006 23:20:05 |
kuriyama |
Chase shlib bump of libexpat. |
0.9.0 15 Nov 2005 06:52:12 |
ade |
Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run. |
0.9.0 08 Nov 2005 19:15:12 |
arved |
Add wbxml2, conversiontools for converting between xml and wbxml
PR: 88537
Submitted by: Clemens Zauner <czauner+ports@onlineloop.com> |