Next | Query returned 116 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2006-07-09 00:39:49 by Johnny C. Lam | Files touched by this commit (877)
Log message:
Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
   2006-05-09 02:14:55 by Jeremy C. Reed | Files touched by this commit (1)
Log message:
Fix filename of pkg-config file.
This fixes problem when using  USE_BUILTIN.Xft2=yes.

This is to close PR #32316 from Rui-Xiang Guo.
   2006-04-06 08:23:06 by Jeremy C. Reed | Files touched by this commit (1147)
Log message:
Over 1200 files touched but no revisions bumped :)

RECOMMENDED is removed. It becomes ABI_DEPENDS.

BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.

BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.

BUILDLINK_DEPENDS does not change.

IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".

Added to obsolete.mk checking for IGNORE_RECOMMENDED.

I did not manually go through and fix any aesthetic tab/spacing issues.

I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.

I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.

As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.

As discussed on tech-pkg.

I will commit to revbump, pkglint, pkg_install, createbuildlink separately.

Note that if you use wip, it will fail!  I will commit to pkgsrc-wip
later (within day).
   2006-03-30 20:06:19 by Johnny C. Lam | Files touched by this commit (38)
Log message:
Avoid extra stat() calls by not repeatedly checking whether a file
exists on the disk -- we can just check whether a variable defined by
find-files.mk is "__nonexistent__" or not.
   2006-03-04 22:31:14 by Johnny C. Lam | Files touched by this commit (2257)
Log message:
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to \ 
"pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
   2006-02-06 00:11:50 by Joerg Sonnenberger | Files touched by this commit (4082)
Log message:
Recursive revision bump / recommended bump for gettext ABI change.
   2006-01-24 08:33:02 by Thomas Klausner | Files touched by this commit (1164)
Log message:
Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
   2005-12-05 21:51:20 by Roland Illig | Files touched by this commit (1432)
Log message:
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
   2005-10-15 18:55:32 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 2.1.7:

2005-03-29  Keith Packard

	* README:
	* Xft.h:
	* configure.ac:
	Update for version 2.1.7

2005-03-01  Keith Packard

	* xftdpy.c: (_XftDisplayInfoGet), (XftDefaultSubstitute):
	Avoid calling any Render functions when Render is missing (#137)

	* xftglyphs.c: (XftFontLoadGlyphs):
	Only clip to bounding box when FC_CHARCELL is specified.
	Only fix glyph spacing when FC_MONO is specified.

2005-02-28  Keith Packard

	* configure.ac:
	* xftdpy.c: (_XftDefaultInit), (XftDefaultSubstitute):
	* xftfreetype.c: (XftFontInfoFill), (XftFontOpenInfo):
	* xftglyphs.c: (XftFontLoadGlyphs):
	* xftint.h:
	Add support for artificial emboldening of glyphs through
	the FT_GlyphSlot_Embolden API when it is available.

	* xftextent.c: (XftGlyphExtents):
	Optimize one glyph extents case (it happens a *lot*).
	(Ross Burton)

2004-11-28  James Henstridge

	* xftfreetype.c (_XftReleaseFile): add parentheses in the
	expression in the second argument to XftMemFree so that it is
	interpreted correctly.

2004-09-05  Keith Packard

	* configure.ac:
	Move AC_CONFIG_AUX_DIR above AM_INIT_AUTOMAKE to make
	automake 1.9 happy

2004-08-03  Keith Packard

	* xftfreetype.c: (_XftReleaseFile):
	Called strlen with (f->file) without checking for NULL (which
	happens when directly using FT_Face objects).

2004-04-14  Keith Packard

	* AUTHORS:
	* Makefile.am:
	* Xft-def.cpp:
	* Xft.3.in:
	* Xft.h:
	* XftCompat.h:
	* configure.ac:
	* xftcolor.c:
	* xftcore.c:
	* xftdbg.c:
	* xftdpy.c:
	* xftdraw.c:
	* xftextent.c:
	* xftfont.c:
	* xftfreetype.c: (XftFontOpenInfo):
	* xftglyphs.c:
	* xftinit.c:
	* xftint.h:
	* xftlist.c:
	* xftname.c:
	* xftrender.c:
	* xftstr.c:
	* xftswap.c:
	* xftxlfd.c:
	Regularize #include usage so that all includes
	happen in xftint.h. This allows conditional inclusion
	of system headers like string.h/strings.h

	Add GCC warnings on GCC systems.

	Fix CVS Id strings
   2005-08-10 22:56:30 by Johnny C. Lam | Files touched by this commit (339)
Log message:
Remove the abuse of buildlink that was pkg-config/buildlink3.mk.  That
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables.  Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.

For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.

Next | Query returned 116 messages, browsing 31 to 40 | Previous