Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 15:36:40 UTC Now

2010-02-13 12:26:16 UTC MAIN commitmail json YAML

2010-02-13 12:05:53 UTC MAIN commitmail json YAML

done - ldns-1.6.4 [pkg/42675]

(obache)

2010-02-13 12:01:31 UTC MAIN commitmail json YAML

replace alignment spaces with tabs.

(obache)

2010-02-13 11:58:28 UTC MAIN commitmail json YAML

Updated x11/xf86-input-vmmouse to 12.6.6

(obache)

2010-02-13 11:58:11 UTC MAIN commitmail json YAML

Update xf86-input-vmmouse to 12.6.6.

Alan Coopersmith (1):
      Update Sun license notices to current X.Org standard form

Gaetan Nadon (6):
      .gitignore: use common defaults with custom section # 24239
      Several driver modules do not have a ChangeLog target in Makefile.am #23814
      INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
      INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
      Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
      configure.ac: remove unused sdkdir=$(pkg-config...) statement

Julien Cristau (2):
      Require xorg-macros 1.4 for XORG_INSTALL
      Bump to 12.6.6

Peter Hutterer (2):
      Symbol was removed from the server.
      Remove unused bits from configure.ac

git tag: xf86-input-vmmouse-12.6.6

(obache)

2010-02-13 09:51:41 UTC MAIN commitmail json YAML

ghostscript-esp was removed.

(asau)

2010-02-13 09:50:09 UTC MAIN commitmail json YAML

Updated devel/gmp to 5.0.1

(asau)

2010-02-13 09:43:40 UTC MAIN commitmail json YAML

Update to GMP 5.0.1

Changes in GMP 5.0.1

BUGS FIXED

  - Fat builds fixed.
  - Fixed crash for huge multiplies when old FFT_TABLE2 type of parameter selection tables' sentinel was smaller than multiplied
    operands.
  - The solib numbers now reflect the removal of the documented but preliminary mpn_bdivmod function; we correctly flag
    incompatibility with GMP 4.3. GMP 5.0.0 has this wrong, and should perhaps be uninstalled to avoid confusion.

SPEEDUPS

  - Multiplication of large numbers has indirectly been sped up through better FFT tuning and processor recognition. Since many
    operations depend on multiplication, there will be a general speedup.

FEATURES

  - More Core i3, i5 an Core i7 processor models are recognised.
  - Fixes and workarounds for Mac OS quirks should make this GMP version build using many of the different versions of "Xcode".

MISC

  - The amount of scratch memory needed for multiplication of huge numbers have been reduced substantially (but is still larger
    than in GMP 4.3.)
  - Likewise, the amount of scratch memory needed for division of large numbers have been reduced substantially.
  - The FFT tuning code of tune/tuneup.c has been completely rewritten, and new, large FFT parameter selection tables are provided
    for many machines.
  - Upgraded to the latest autoconf, automake, libtool.

Changes in GMP 5.0.0

BUGS FIXED

  - None (contains the same fixes as release 4.3.2).

SPEEDUPS

  - Multiplication has been overhauled:
    1. Multiplication of larger same size operands has been improved with the addition of two new Toom functions and a new
        internal function mpn_mulmod_bnm1 (computing U * V mod (B^n-1), B being the word base. This latter function is used for the
        largest products, waiting for a better Schoenhage-Strassen U * V mod (B^n+1) implementation.
    2. Likewise for squaring.
    3. Multiplication of different size operands has been improved with the addition of many new Toom function, and by selecting
        underlying functions better from the main multiply functions.
  - Division and mod have been overhauled:
    1. Plain "schoolbook" division is reimplemented using faster quotient approximation.
    2. Division Q = N/D, R = N mod D where both the quotient and remainder are needed now runs in time O(M(log(N))). This is an
        improvement of a factor log(log(N))
    3. Division where just the quotient is needed is now O(M(log(Q))) on average.
    4. Modulo operations using Montgomery REDC form now take time O(M(n)).
    5. Exact division Q = N/D by means of mpz_divexact has been improved for all sizes, and now runs in time O(M(log(N))).
  - The function mpz_powm is now faster for all sizes. Its complexity has gone from O(M(n)log(n)m) to O(M(n)m) where n is the size
    of the modulo argument and m is the size of the exponent. It is also radically faster for even modulus, since it now partially
    factors such modulus and performs two smaller modexp operations, then uses CRT.
  - The internal support for multiplication yielding just the lower n limbs has been improved by using Mulders' algorithm.
  - Computation of inverses, both plain 1/N and 1/N mod B^n have been improved by using well-tuned Newton iterations, and
    wrap-around multiplication using mpn_mulmod_bnm1.
  - A new algorithm makes mpz_perfect_power_p asymptotically faster.
  - The function mpz_remove uses a much faster algorithm, is better tuned, and also benefits from the division improvements.
  - Intel Atom and VIA Nano specific optimisations.
  - Plus hundreds of smaller improvements and tweaks!

FEATURES

  - New mpz function: mpz_powm_sec for side-channel quiet modexp computations.
  - New mpn functions: mpn_sqr, mpn_and_n, mpn_ior_n, mpn_xor_n, mpn_nand_n, mpn_nior_n, mpn_xnor_n, mpn_andn_n, mpn_iorn_n,
    mpn_com, mpn_neg, mpn_copyi, mpn_copyd, mpn_zero.
  - The function mpn_tdiv_qr now allows certain argument overlap.
  - Support for fat binaries for 64-bit x86 processors has been added.
  - A new type, mp_bitcnt_t for bignum bit counts, has been introduced.
  - Support for Windows64 through mingw64 has been added.
  - The cofactors of mpz_gcdext and mpn_gcdext are now more strictly normalised, returning to how GMP 4.2 worked. (Note that also
    release 4.3.2 has this change.)

MISC

  - The mpn_mul function should no longer be used for squaring, instead use the new mpn_sqr.
  - The algorithm selection has been improved, the number of thresholds have more than doubled, and the tuning and use of existing
    thresholds have been improved.
  - The tune/speed program can measure many of new functions.
  - The mpn_bdivmod function has been removed. We do not consider this an incompatible change, since the function was marked as
    preliminary.
  - The testsuite has been enhanced in various ways.

Changes in GMP 4.3.2

Bugs:

  - Fixed bug in mpf_eq.
  - Fixed overflow issues in mpz_set_str, mpz_inp_str, mpf_set_str, and mpf_get_str.
  - Avoid unbounded stack allocation for unbalanced multiplication.
  - Fixed bug in FFT multiplication.

Speedups:

  - None, except that improved processor recognition helps affected processors.

Features:

  - Recognise more "Core 2" processor variants.
  - The cofactors of mpz_gcdext and mpn_gcdext are now more strictly normalised, returning to how GMP 4.2 worked.

(asau)

2010-02-13 08:31:00 UTC MAIN commitmail json YAML

Adjust chgrp/chown paths for SSD/Linux.

(obache)

2010-02-13 08:29:13 UTC MAIN commitmail json YAML

for SSD/Linux, /usr/bin/false, not /bin/false.

(obache)

2010-02-13 06:28:41 UTC MAIN commitmail json YAML

Updated devel/aegis to 4.24.2

(obache)

2010-02-13 06:28:21 UTC MAIN commitmail json YAML

Update aegis to 4.24.2.

While here reset location of shardstatedir to default location.
${VARBASE}/run is bad idea, because persistent data are stored.
Noticed by Marko Schutz in pkgsrc-users@.

Notes:
  Version 4.24.2 (25-Jun-2009)
* The branch fstate can contain fake transparent entries when a change
not yet integrated modifies for the first time in the branch a file.

It is possible that such entries cause troubles if the project is
configured to write the pfstate file.  To avoid such troubles the fake
transparent entries are stripped on the fly when reading the pfstate
file.

The way the the pfstate file is written is not modified.

* The Italian translation of error messages is now available.

* The Vietnamese and Dutch error messages has been updated.

* The aerevml(1) command was incorrectly printing twice user defined
attributes. This behavior has been fixed.

* The aeclean(1) command was incorrectly checking the patterns against
the absolute name of the files. This behavior has been fixed.

* The aelock(1) man page was incorrectly reporting the attribute name
aelock use.  This has been fixed.

* The aesub(5) man page now reference aeuconf(5) in the email address
section.

* The aedist(1) command is now more robust when handling renamed
files.

* The t0228a-matt.sh test script has been made more robust with
respect to different behavior of libmagic.

* The t0127a.sh test script (aeimport vs. sccs) has been fixed.

* A number of memory related bugs has been fixed.

* Some typo has been corrected in the ae-repo-ci(1) man page.

* The build process has been improved to give more informative
messages when a new aegis developer populate his repository for the
first time.

(obache)

2010-02-13 05:53:46 UTC MAIN commitmail json YAML

Updated www/ikiwiki to 3.20100212

(schmonz)

2010-02-13 05:53:36 UTC MAIN commitmail json YAML

Update to 3.20100212. From the changelog:

  * template: Preprocess parameters before htmlizing.
  * img: Fix a bug that could taint @links with undef values.
  * setup automator: Configure Term::Readline to use bold for prompt, rather
    than default underline. Closes: #517656
  * Allow jumping directly into account registration process by going to
    ikiwiki.cgi?do=register
  * Improve display of openid in preferences page.
  * Add link to userpage (or creation link) to top of preferences page.
  * opendiscussion: This plugin will also now allow posting comments
    to otherwise locked-down sites.
  * auto-blog.setup: Lock all pages, so only admin can post to the blog
    by default, and enable opendiscussion so others can comment.
  * Fix color and format plugins to appear in the websetup interface.
  * amazon_s3: Fix to support the EU S3 datacenter, which is more picky
    about attempts to create already existing buckets.
  * httpauth: When cgiauthurl is configured, httpauth can now be used
    alongside other authentication methods (like openid or anonok). Rather
    than always redirect to the cgiauthurl for authentication, there is now
    a button on the login form to use it.
  * httpauth: Add httpauth_pagespec setting that can be used to limit
    pages to only being edited via users authed with httpauth.
  * Allow globs to be used in user() pagespecs.
  * Group related plugins into sections in the setup file, and drop
    unused rcs plugins from the setup file.

(schmonz)

2010-02-13 00:19:54 UTC MAIN commitmail json YAML

note update of security/netpgp to version 20100212

(agc)

2010-02-13 00:18:47 UTC MAIN commitmail json YAML

Update the netpgp package to version 20100212/1.99.19

Changes to 1.99.19/20100212

+ plug some memory leaks, from cppcheck via Thomas Klausner (thanks!)
+ make the singular of time units read correctly
+ print decryption key info properly when prompting for passphrase

Changes to 1.99.18/20100211

small steps, but lots of them - this is the first one.

+ print out the correct key information when signing files and memory.
  what used to be printed out was the copy of the public key which is
  stored as part of the private key. does not address the info shown
  when decrypting, since that is done in a different way, by callback.
  this whole part needs to be re-written, but will have to wait for two
  good hands.

Changes to 1.99.17/20100206

+ get rid of last 2 static variables - use the __ops_printstate_t struct
  passed down
+ get rid of 3 occurrences in reader.c where an automatic buffer was
  addressed (as part of a subsequent callback) by a struct field from
  a calling scope, and only valid within the callback.  Found by
  Flexelint and phk - many thanks.
+ print filename/"memory" when time problems occur when validating signatures

Changes to 1.99.16/20100205

+ minor simplifications to netpgp(1) internally
+ fix a bug in netpgp_verify_file where a non-existent file while listing
  packets would cause a SIGSEGV
+ add duration arg to netpgp(1), and check for validity when verifying
  signatures
+ add birthtime arg to netpgp(1), and check for validity when verifying
  signatures
+ add netpgp commands to print pubkey, if desired
+ allow the passphrase for the signature to be taken from --pass-fd
+ get rid of static indent value when printing packet contents
+ print signature validity times when verifying a file's signature

(agc)

2010-02-12 23:05:15 UTC MAIN commitmail json YAML

Updated misc/kdeartwork4 to 4.3.5nb1

(wiz)

2010-02-12 23:05:03 UTC MAIN commitmail json YAML

Fix PLIST for xscreensaver-5.10 and depend on it
Bump PKGREVISION.

(wiz)

2010-02-12 22:28:56 UTC MAIN commitmail json YAML

Make sure musca finds libX11, passing the correct LDFLAGS

(tonio)

2010-02-12 21:17:22 UTC MAIN commitmail json YAML

2010-02-12 21:15:26 UTC MAIN commitmail json YAML

2010-02-12 21:12:59 UTC MAIN commitmail json YAML

2010-02-12 21:01:27 UTC MAIN commitmail json YAML

2010-02-12 20:58:37 UTC MAIN commitmail json YAML

2010-02-12 20:56:54 UTC MAIN commitmail json YAML

2010-02-12 20:46:14 UTC MAIN commitmail json YAML

2010-02-12 20:42:34 UTC MAIN commitmail json YAML

2010-02-12 20:37:53 UTC MAIN commitmail json YAML

2010-02-12 20:34:16 UTC MAIN commitmail json YAML

2010-02-12 20:33:14 UTC MAIN commitmail json YAML

Updated editors/p5-Padre-Plugin-Catalyst to 0.08

(sno)

2010-02-12 20:33:02 UTC MAIN commitmail json YAML

Updating editors/p5-Padre-Plugin-Catalyst from 0.07 to 0.08

pkgsrc changes:
- Updating dependencies (including a lot of updates of dependend modules
  and import of new ones)

Upstream changes:
0.08
    disabling plugin's own panel until it's properly fixed
    fixed Build.PL requirements (ticket 53616 - thanks Jens Rehsack for reporting!)
    fixed bug where the plugin dies when trying to call helper methods while not in
    a catalyst project. What we do now is disable the whole menu (ticket 53603 -
    thanks Alexander Hartmaier for reporting!)

(sno)

2010-02-12 20:31:32 UTC MAIN commitmail json YAML

2010-02-12 19:59:29 UTC MAIN commitmail json YAML

2010-02-12 19:58:39 UTC MAIN commitmail json YAML

Added www/p5-Task-CatInABox version 0.03

(sno)

2010-02-12 19:57:51 UTC MAIN commitmail json YAML

Added www/p5-Task-CatInABox version 0.03

(sno)

2010-02-12 19:57:35 UTC MAIN commitmail json YAML

Importing www/p5-Task-CatInABox version 0.03 as a dependency of scheduled
update of editors/p5-Padre-Plugin-Catalyst to 0.08.

This distribution defined a set of modules to cover common modules used in
Catalyst applications.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-02-12 19:44:08 UTC MAIN commitmail json YAML

Updated devel/hg-git to 0.2.1

(joerg)

2010-02-12 19:43:50 UTC MAIN commitmail json YAML

Update to 0.2.1 tag of hg-git. Various smaller improvements.

(joerg)

2010-02-12 19:37:50 UTC MAIN commitmail json YAML

2010-02-12 19:36:00 UTC MAIN commitmail json YAML

Added databases/p5-DBIx-Class-EncodedColumn version 0.00006

(sno)

2010-02-12 19:34:53 UTC MAIN commitmail json YAML

Added databases/p5-DBIx-Class-EncodedColumn version 0.00006

(sno)

2010-02-12 19:34:39 UTC MAIN commitmail json YAML

Importing databases/p5-DBIx-Class-EncodedColumn version 0.00006 as an
indirect dependency of scheduled update for editors/p5-Padre-Plugin-Catalyst.

This DBIx::Class component can be used to automatically encode a column's
contents whenever the value of that column is set.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-02-12 18:26:47 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-OpenPGP to 1.04

(sno)

2010-02-12 18:26:36 UTC MAIN commitmail json YAML

Updating security/p5-Crypt-OpenPGP from 1.03nb5 to 1.04

pkgsrc changes:
- Adding license definition
- Adding pgp2-compat option which turns on idea dependency (defaultly off)
- Reordering and updating dependencies to cover fixes

Upstream changes:
1.04 2009.12.10
    - Keyring lookup by uid is now case-insensitive to match the behavior
      in GnuPG. Fixes http://rt.cpan.org/Public/Bug/Display.html?id=2225
    - Got rid of a warning in Crypt::OpenPGP::SKSessionKey related to
      broken calculation of the session_key; that session_key value was
      never used, so I removed the code generating the key, hence removing
      the warning. Addresses
      http://rt.cpan.org/Public/Bug/Display.html?id=29950
    - Default key and config file locations (in compatibility mode) now work
      on Windows. Fixes http://rt.cpan.org/Public/Bug/Display.html?id=18815
    - Updated to use Module::Install. Addresses
      http://rt.cpan.org/Public/Bug/Display.html?id=35983 and
      http://rt.cpan.org/Public/Bug/Display.html?id=31411
    - Made all dependencies required, rather than optional based on
      feature packages. Simplifies distribution and packaging, and addresses
      http://rt.cpan.org/Public/Bug/Display.html?id=41426
    - Removed sign() and auto_install() from Makefile.PL.
    - Removed magic svn keywords.
    - Converted test suite to Test::More.
    - Added author tests (xt/) and modified SYNOPSIS for all modules to
      make them pass the compilation test.

(sno)

2010-02-12 18:19:40 UTC MAIN commitmail json YAML

Bumping revision to force rebuild after missing declaration has been fixed
in math/pari.

(sno)

2010-02-12 18:18:29 UTC MAIN commitmail json YAML

Updating math/pari from 2.3.5 to 2.3.5nb1

- Math::Pari requires one more function declaration from src/language/anal.h
  (moved into src/headers/paripriv.h, too)

(sno)

2010-02-12 18:16:55 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-DSA to 1.16nb1

(sno)

2010-02-12 18:16:44 UTC MAIN commitmail json YAML

Updating security/p5-Crypt-DSA from 1.16 to 1.16nb1

- Applying fix from RT#49668 (openssl dsaparam output format change in 1.0
  beta 3 breaks Crypt::DSA::KeyChain), see
  https://rt.cpan.org/Ticket/Display.html?id=49668

(sno)

2010-02-12 18:05:06 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-RIPEMD160 to 0.04nb4

(sno)

2010-02-12 18:04:54 UTC MAIN commitmail json YAML

Updating security/p5-Crypt-RIPEMD160 from 0.04nb3 to 0.04nb4

Applying patch from RT #19138 to fix invalid results on 64-Bit platforms

(sno)

2010-02-12 15:49:40 UTC MAIN commitmail json YAML

Added wm/musca version 0.9.24.

(asau)

2010-02-12 15:42:13 UTC MAIN commitmail json YAML

Added devel/p5-Log-Any-Adapter-Log4perl version 0.04

(sno)

2010-02-12 15:41:36 UTC MAIN commitmail json YAML

Added devel/p5-Log-Any-Adapter-Log4perl version 0.04

(sno)

2010-02-12 15:41:26 UTC MAIN commitmail json YAML

Importing devel/p5-Log-Any-Adapter-Log4perl 0.04.

This Log::Any adapter uses Log::Log4perl for logging.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-02-12 15:40:10 UTC MAIN commitmail json YAML

2010-02-12 15:38:52 UTC MAIN commitmail json YAML

Import Musca window manager version 0.9.24 as wm/musca.

Musca is a simple dynamic window manager for X windows,
with features nicked from ratpoison and dwm.

Packaged by David Demelier (PR 42796).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(asau)

2010-02-12 15:32:47 UTC MAIN commitmail json YAML

Added devel/p5-Log-Any-Adapter-Dispatch version 0.05

(sno)

2010-02-12 15:31:57 UTC MAIN commitmail json YAML

Added devel/p5-Log-Any-Adapter-Dispatch version 0.05

(sno)

2010-02-12 15:31:13 UTC MAIN commitmail json YAML

Importing devel/p5-Log-Any-Adapter-Dispatch version 0.05.

This Log::Any adapter uses Log::Dispatch for logging.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-02-12 15:09:36 UTC MAIN commitmail json YAML

Added devel/p5-Log-Any-Adapter version 0.03

(sno)

2010-02-12 15:06:58 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Any-Adapter to 0.03

(sno)

2010-02-12 15:06:04 UTC MAIN commitmail json YAML

Importing devel/p5-Log-Any-Adapter version 0.03 to allow to import more
Log::Any::Adapter implementations to make use of Log::Any.

The Log-Any-Adapter distribution implements Log::Any class methods to
specify where logs should be sent. It is a separate distribution so as
to keep Log::Any itself as simple and unchanging as possible.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-02-12 14:56:19 UTC MAIN commitmail json YAML

2010-02-12 14:42:45 UTC MAIN commitmail json YAML

2010-02-12 14:16:57 UTC MAIN commitmail json YAML

2010-02-12 13:45:54 UTC MAIN commitmail json YAML

allow to override cmake's Python search order, to enforce the version
selected by pkgsrc
this automatically affects pkgs which use FIND_PACKAGE(PythonInterp)
or FIND_PACKAGE(PythonLibs)

(drochner)

2010-02-12 10:35:04 UTC MAIN commitmail json YAML

Updated scribus; boost

(adam)

2010-02-12 10:31:05 UTC MAIN commitmail json YAML

2010-02-12 09:01:45 UTC MAIN commitmail json YAML

Needs pkg-config to locate sqlite3

(tnn)

2010-02-12 08:59:40 UTC MAIN commitmail json YAML

Added textproc/py-jsonlib version 1.6.1

(wiz)

2010-02-12 08:59:14 UTC MAIN commitmail json YAML

2010-02-12 08:58:34 UTC MAIN commitmail json YAML

Initial import of py-jsonlib-1.6.1, packaged for wip by wen heping.

JSON is a lightweight data-interchange format. It's often used for
exchanging data between a web server and user agent. This module
aims to produce a library for serializing and deserializing JSON
that conforms strictly to RFC 4627.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20100212

(wiz)

2010-02-12 08:35:28 UTC MAIN commitmail json YAML

Changes 1.3.3.14:
* Danish Translation
* crash when freeing non-existent hyphenator
* Bug 7854 was fixed although it was invalid
* pt_BR description in desktop file is wrong
* Impossible to set spacing under/below paragraph greater than 3 mm if mm is
  main unit
* invalid postscript is generated when spot color name use non latin chars
* Arrows only shows the leftwards arrow in Character Map
* error in BleedAndPrintMarks script
* program crashes with "unknown exception" on drawing shape
* remove the links to http://search.srem.org [^]
* Enhancment: Hyphenation patterns for Kurdish
* Added RU transaltion to desktop file
* JPG clipping path isn't imported correctly
* ODG import crashes Scribus
* Code change reccommended by Novell audit of 1.3.3.12
* CMYK images look strange when exported as PDF
* while loop with textOverflows crashes scribus

(adam)

2010-02-12 02:03:29 UTC MAIN commitmail json YAML

2010-02-12 02:02:49 UTC MAIN commitmail json YAML

Actually enable DESTDIR support.

(joerg)

2010-02-12 02:01:57 UTC MAIN commitmail json YAML

Actually enable DESTDIR support

(joerg)

2010-02-12 01:10:43 UTC MAIN commitmail json YAML

gcc-ssp was removed.

(asau)

2010-02-12 01:09:08 UTC MAIN commitmail json YAML

fdgw was removed.

(asau)

2010-02-12 01:02:31 UTC MAIN commitmail json YAML

Note PKGREVISION bump of tex-metafont.

(minskim)

2010-02-12 01:02:05 UTC MAIN commitmail json YAML

Correct TEX_FORMATS in tex-metafont.

(minskim)

2010-02-12 00:47:27 UTC MAIN commitmail json YAML

SWI Prolog has been updated.

(asau)

2010-02-12 00:45:40 UTC MAIN commitmail json YAML

TCL/Tk 8.3 was removed.

(asau)

2010-02-12 00:43:25 UTC MAIN commitmail json YAML

Update math/octave to 3.2.4

(asau)

2010-02-12 00:41:48 UTC MAIN commitmail json YAML

2010-02-12 00:31:52 UTC MAIN commitmail json YAML

2010-02-12 00:28:36 UTC MAIN commitmail json YAML

2010-02-12 00:28:02 UTC MAIN commitmail json YAML

2010-02-12 00:27:18 UTC MAIN commitmail json YAML

2010-02-12 00:23:35 UTC MAIN commitmail json YAML

2010-02-12 00:23:07 UTC MAIN commitmail json YAML

2010-02-12 00:21:17 UTC MAIN commitmail json YAML

2010-02-12 00:20:02 UTC MAIN commitmail json YAML

2010-02-12 00:18:57 UTC MAIN commitmail json YAML

Import tex-anonchap-1.1a as print/tex-anonchap.

The command \simplechapter sets up the \chapter command not to number
chapters, though they may possibly have a prefix, and a suffix (the
\simplechapterdelim command, which the user may alter).  The
\restorechapter command restores the status quo ante.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2010-02-12 00:18:29 UTC MAIN commitmail json YAML

2010-02-12 00:13:24 UTC MAIN commitmail json YAML

2010-02-12 00:12:11 UTC MAIN commitmail json YAML

DESTDIR support. Create spooldir at install time. Bump revision.

(joerg)

2010-02-12 00:10:15 UTC MAIN commitmail json YAML

2010-02-12 00:08:35 UTC MAIN commitmail json YAML

2010-02-12 00:08:02 UTC MAIN commitmail json YAML

2010-02-12 00:06:13 UTC MAIN commitmail json YAML

2010-02-12 00:04:36 UTC MAIN commitmail json YAML

2010-02-12 00:00:45 UTC MAIN commitmail json YAML

2010-02-11 23:59:39 UTC MAIN commitmail json YAML

2010-02-11 23:58:34 UTC MAIN commitmail json YAML

2010-02-11 23:50:51 UTC MAIN commitmail json YAML

2010-02-11 23:42:13 UTC MAIN commitmail json YAML

2010-02-11 23:41:32 UTC MAIN commitmail json YAML

2010-02-11 23:33:41 UTC MAIN commitmail json YAML

2010-02-11 23:32:50 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 23:30:22 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 23:27:24 UTC MAIN commitmail json YAML

2010-02-11 23:26:12 UTC MAIN commitmail json YAML

2010-02-11 23:25:51 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 23:23:54 UTC MAIN commitmail json YAML

2010-02-11 23:23:11 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 23:21:26 UTC MAIN commitmail json YAML

2010-02-11 23:18:30 UTC MAIN commitmail json YAML

2010-02-11 23:14:15 UTC MAIN commitmail json YAML

2010-02-11 23:13:17 UTC MAIN commitmail json YAML

2010-02-11 23:12:21 UTC MAIN commitmail json YAML

2010-02-11 23:12:10 UTC MAIN commitmail json YAML

2010-02-11 23:08:34 UTC MAIN commitmail json YAML

2010-02-11 23:08:17 UTC MAIN commitmail json YAML

2010-02-11 23:07:16 UTC MAIN commitmail json YAML

2010-02-11 23:06:39 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 23:06:05 UTC MAIN commitmail json YAML

2010-02-11 23:00:57 UTC MAIN commitmail json YAML

2010-02-11 22:59:24 UTC MAIN commitmail json YAML

2010-02-11 22:59:15 UTC MAIN commitmail json YAML

2010-02-11 22:57:40 UTC MAIN commitmail json YAML

2010-02-11 22:54:37 UTC MAIN commitmail json YAML

2010-02-11 22:52:52 UTC MAIN commitmail json YAML

2010-02-11 22:50:54 UTC MAIN commitmail json YAML

2010-02-11 22:50:43 UTC MAIN commitmail json YAML

2010-02-11 22:47:53 UTC MAIN commitmail json YAML

2010-02-11 22:47:49 UTC MAIN commitmail json YAML

2010-02-11 22:46:38 UTC MAIN commitmail json YAML

2010-02-11 22:46:18 UTC MAIN commitmail json YAML

2010-02-11 22:43:35 UTC MAIN commitmail json YAML

2010-02-11 22:41:44 UTC MAIN commitmail json YAML

2010-02-11 22:39:23 UTC MAIN commitmail json YAML

2010-02-11 22:38:12 UTC MAIN commitmail json YAML

2010-02-11 22:37:50 UTC MAIN commitmail json YAML

2010-02-11 22:35:09 UTC MAIN commitmail json YAML

2010-02-11 22:34:24 UTC MAIN commitmail json YAML

2010-02-11 22:31:25 UTC MAIN commitmail json YAML

2010-02-11 22:30:40 UTC MAIN commitmail json YAML

2010-02-11 22:28:44 UTC MAIN commitmail json YAML

2010-02-11 22:28:40 UTC MAIN commitmail json YAML

2010-02-11 22:24:43 UTC MAIN commitmail json YAML

2010-02-11 22:24:33 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 22:20:52 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 22:19:49 UTC MAIN commitmail json YAML

2010-02-11 22:19:44 UTC MAIN commitmail json YAML

2010-02-11 22:19:14 UTC MAIN commitmail json YAML

2010-02-11 22:18:47 UTC MAIN commitmail json YAML

2010-02-11 22:18:35 UTC MAIN commitmail json YAML

2010-02-11 22:17:36 UTC MAIN commitmail json YAML

2010-02-11 22:17:29 UTC MAIN commitmail json YAML

2010-02-11 22:14:30 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 22:14:26 UTC MAIN commitmail json YAML

DESTDIR support. XXX 600 on the example config is silly

(joerg)

2010-02-11 22:10:59 UTC MAIN commitmail json YAML

2010-02-11 22:08:58 UTC MAIN commitmail json YAML

2010-02-11 22:07:18 UTC MAIN commitmail json YAML

2010-02-11 22:06:14 UTC MAIN commitmail json YAML

2010-02-11 22:05:43 UTC MAIN commitmail json YAML

2010-02-11 22:05:00 UTC MAIN commitmail json YAML

2010-02-11 22:04:14 UTC MAIN commitmail json YAML

2010-02-11 22:04:09 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 22:01:08 UTC MAIN commitmail json YAML

Note PKGREVISION bump of tex-luatex.

(minskim)

2010-02-11 22:00:45 UTC MAIN commitmail json YAML

Install dviluatex instead of pdfluatex.

luatex's default output format was changed from dvi to pdf.

(minskim)

2010-02-11 21:59:11 UTC MAIN commitmail json YAML

2010-02-11 21:58:38 UTC MAIN commitmail json YAML

2010-02-11 21:58:29 UTC MAIN commitmail json YAML

2010-02-11 21:57:09 UTC MAIN commitmail json YAML

DESTDIR support. Create home directory at runtime with 700.

(joerg)

2010-02-11 21:53:00 UTC MAIN commitmail json YAML

2010-02-11 21:47:04 UTC MAIN commitmail json YAML

2010-02-11 21:43:39 UTC MAIN commitmail json YAML

2010-02-11 21:38:06 UTC MAIN commitmail json YAML

2010-02-11 21:36:18 UTC MAIN commitmail json YAML

2010-02-11 21:34:34 UTC MAIN commitmail json YAML

2010-02-11 21:33:29 UTC MAIN commitmail json YAML

2010-02-11 21:30:54 UTC MAIN commitmail json YAML

2010-02-11 21:28:14 UTC MAIN commitmail json YAML

2010-02-11 21:24:26 UTC MAIN commitmail json YAML

2010-02-11 21:22:18 UTC MAIN commitmail json YAML

2010-02-11 21:21:49 UTC MAIN commitmail json YAML

Because we unconditionally try to build the bsddb module now,
there's no point having special PLIST handling for it.

(tnn)

2010-02-11 21:13:07 UTC MAIN commitmail json YAML

remove unused vars

(tnn)

2010-02-11 21:09:50 UTC MAIN commitmail json YAML

Try to deal with building dbm.so in case of BDB_TYPE=db4.
Tested on Linux.

(tnn)

2010-02-11 21:03:54 UTC MAIN commitmail json YAML

2010-02-11 20:54:51 UTC MAIN commitmail json YAML

2010-02-11 20:53:53 UTC MAIN commitmail json YAML

2010-02-11 20:53:48 UTC MAIN commitmail json YAML

DESTDIR support

(joerg)

2010-02-11 20:53:21 UTC MAIN commitmail json YAML

2010-02-11 20:52:00 UTC MAIN commitmail json YAML

2010-02-11 20:50:59 UTC MAIN commitmail json YAML

2010-02-11 20:49:10 UTC MAIN commitmail json YAML

Let tex-ifxetex-doc use DISTFILES from TeX Live 2009. No functional change.

(minskim)

2010-02-11 20:47:16 UTC MAIN commitmail json YAML

2010-02-11 20:47:11 UTC MAIN commitmail json YAML

2010-02-11 20:44:24 UTC MAIN commitmail json YAML

Updated lang/yap to 5.1.3

(asau)