Up to [cvs.netbsd.org] / pkgsrc / lang / erlang
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.51 / (download) - annotate - [select for diffs], Thu Apr 12 12:14:12 2012 UTC (6 weeks, 1 day ago) by asau
Branch: MAIN
CVS Tags: HEAD
Changes since 1.50: +1 -2
lines
Diff to previous 1.50 (colored)
Update to Erlang/OTP R15B01
Presumably fixes PR pkg/46297
Changes in Erlang/OTP R15B01
Highlights:
* Added erlang:statistics(scheduler_wall_time) to ensure
correct determination of scheduler utilization. Measuring
scheduler utilization is strongly preferred over CPU
utilization, since CPU utilization gives very poor
indications of actual scheduler/vm usage.
* Changed ssh implementation to use the public_key application
for all public key handling. This is also a first step for
enabling a callback API for supplying public keys and
handling keys protected with password phrases. Additionally
the test suites where improved so that they do not copy the
users keys to test server directories as this is a security
liability. Also ipv6 and file access issues found in the
process has been fixed.
* When an escript ends now all printout to standard output and
standard error gets out on the terminal. This bug has been
corrected by changing the behaviour of erlang:halt/0,1,
which should fix the same problem for other escript-like
applications, i.e. that data stored in the output port
driver buffers got lost when printing on a TTY and exiting
through erlang:halt/0,1. The BIF:s erlang:halt/0,1 has
gotten improved semantics and there is a new BIF
erlang:halt/2 to accomplish something like the old
semantics. See the documentation.
* The DTrace source patch from Scott Lystig Fritchie is
integrated in the source tree. Using an emulator with dtrace
probe is still not supported for production use, but may be
a valuable debugging tool.
* Added Torbjörn Törnkvists LDAP client as a new application
called eldap.
* Added options for the ssh client to support user keys files
that are password protected.
Changes in Erlang/OTP R15B
Highlights:
* Line number and filename information are now included in
exception backtraces. This information will be
pretty-printed in the shell and used in crash reports etc.
In practice it will be much easier to find where something
failed.
* The driver interface has been changed to enable 64-bit aware
drivers. Most importantly the return types for ErlDrvEntry
callbacks 'call' and 'control' has been changed which
require drivers to be changed.
* New in this release is the support for 64 bit Windows.
The self extracting installer can be found here.
* CommonTest hooks are now in a final supported version.
* There is a new GUI tool in the observer application which
integrates pman, etop, appmon and tv into one tool. The tool
does also contain functions for activating tracing in an easy way.
* The Erlang distribution can now be run over the new SSL implementation.
Changes in Erlang/OTP R15A
Notable changes:
OTP-9468 'Line numbers in exceptions'
OTP-9451 'Parallel make'
OTP-4779 A new GUI for Observer. Integrating pman, etop and tv into
observer with tracing facilities.
OTP-7775 A number of memory allocation optimizations have been
implemented. Most optimizations reduce contention caused by
synchronization between threads during allocation and
deallocation of memory. Most notably:
Synchronization of memory management in scheduler
specific allocator instances has been rewritten to
use lock-free synchronization.
Synchronization of memory management in scheduler
specific pre-allocators has been rewritten to use
lock-free synchronization.
The 'mseg_alloc' memory segment allocator now use
scheduler specific instances instead of one
instance. Apart from reducing contention this also
ensures that memory allocators always create memory
segments on the local NUMA node on a NUMA system.
OTP-9632 An ERTS internal, generic, many to one, lock-free
queue for communication between threads has been
introduced. The many to one scenario is very common in
ERTS, so it can be used in a lot of places in the
future. Currently it is used by scheduling of certain
jobs, and the async thread pool, but more uses are
planned for the future.
Drivers using the driver_async functionality are not
automatically locked to the system anymore, and can be
unloaded as any dynamically linked in driver.
Scheduling of ready async jobs is now also interleaved
in between other jobs. Previously all ready async jobs
were performed at once.
OTP-9631 The ERTS internal system block functionality has been
replaced by new functionality for blocking the system.
The old system block functionality had contention
issues and complexity issues. The new functionality
piggy-backs on thread progress tracking functionality
needed by newly introduced lock-free synchronization
in the runtime system. When the functionality for
blocking the system isn't used, there is more or less
no overhead at all. This since the functionality for
tracking thread progress is there and needed anyway.
Revision 1.50 / (download) - annotate - [select for diffs], Tue Jan 24 03:39:22 2012 UTC (4 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1
Changes since 1.49: +2 -1
lines
Diff to previous 1.49 (colored)
Add PLIST.Linux Bump PKGREVISION
Revision 1.49 / (download) - annotate - [select for diffs], Thu Jan 19 10:17:56 2012 UTC (4 months ago) by fhajny
Branch: MAIN
Changes since 1.48: +2 -2
lines
Diff to previous 1.48 (colored)
Update erlang to R14B04 This release is mainly a stabilization of the R14B03 release (but as usual there are some new functionality as well). One pkgsrc change: add flex to USE_TOOLS, so that megaco_flex_scanner_drv gets built on all SunOS flavors. Read full announcement at http://www.erlang.org/download/otp_src_R14B04.readme
Revision 1.48 / (download) - annotate - [select for diffs], Thu May 26 20:19:43 2011 UTC (11 months, 4 weeks ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2
Changes since 1.47: +3 -3
lines
Diff to previous 1.47 (colored)
Update Erlang to R14B03 Highlights: - Initial release of the diameter application. - Strengthened random number generation. - Some fixes for bugs that caused crashes. Read full announcement at http://www.erlang.org/download/otp_src_R14B03.readme
Revision 1.47 / (download) - annotate - [select for diffs], Mon Apr 25 20:58:24 2011 UTC (13 months ago) by asau
Branch: MAIN
Changes since 1.46: +13 -1
lines
Diff to previous 1.46 (colored)
Replace "/usr/bin/env" interpreter to comply with stricter rules.
Revision 1.46 / (download) - annotate - [select for diffs], Thu Apr 14 19:34:07 2011 UTC (13 months, 1 week ago) by asau
Branch: MAIN
Changes since 1.45: +2 -7
lines
Diff to previous 1.45 (colored)
Update to Erlang/OTP R14B02 Highlights composed by Matthew Sporleder. Changes in R14B02 (http://www.erlang.org/download/otp_src_R14B02.readme) - It is now possible to use Erlang specifications and types in EDoc documentation - All tests in Erlang/OTP have been converted to be run with Common Test as the backend instead of Test Server. - From this release, the previously experimental halfword emulator is now official - Dependency generation for Makefiles has been added to the compiler and erlc - Add a --fullpath option to Dialyzer (include version 2.4.2) - Many fixes in erts - Remove hipe constants pool - Partial support for recursive structs and unions - It is now possible to use SSH to sign and verify binary data. - typer has been rewritten Changes R14B01 (http://www.erlang.org/download/otp_src_R14B01.readme) - New ETS option compressed, to enable a more compact storage format at the expence of heavier table operations - There is now a new function inet:getifaddrs/0 modeled after C library function getifaddrs() on BSD and Linux that reports existing interfaces and their addresses on the host - Multiple crashes and infinite loops fixed - AES CTR encryption support in crypto - erl_call: remove get_hostent - The Erlang VM now supports Unicode filenames - New ETS option compressed Changes in R14B (http://www.erlang.org/download/otp_src_R14B.readme) - Large parts of the ethread library have been rewritten. - The changed API of the ethread library has also caused modifications in the Erlang runtime system. - Some Built In Functions (BIFs) are now autoimported - Added erlang:system_info(build_type) - A number of memory leaks in the crypto NIF library have been fixed - erl_call: fix multiple buffer overflows - NIF 64-bit integer support - Removed some potential vulnerabilities from the Erlang Port Mapper Daemon (epmd) - Replaced the old http client api module (http) with the new, httpc in the users guide. - inet6 improvements - ssh fixes - many ssl improvements/fixes - wx crash fix Changes in R14A (http://www.erlang.org/download/otp_src_R14A.readme) - R14A is a major new release of Erlang/OTP. - The module binary from EEP31 (and EEP9) is implemented - It is now possible for the user to provide specific callback modules that handle test configuration data - New NIF features - Receive statements that can only read out a newly created reference are now specially optimized so that it will execute in constant time regardless of the number of messages in the receive queue for the process. - The run_test script has been replaced by a program (with the same name) which can be executed without explicit installation - eprof has been reimplemented with support in the Erlang virtual machine and is now both faster (i.e. slows down the code being measured less) and scales much better Changes in R13B04 (http://www.erlang.org/download/otp_src_R13B04.readme) - Many documentation and documentation build improvements - cross-compile/build improvements - buffer overflow fix - telnet keep alive fixes - compiler crash on boolean ifs - -Werror for erlc fixed - macro overloading implemented - the crypto module now supports Blowfish - explicit top directories in archive files are now optional - add lock profiling tool: lcnt - httpd methods "PUT" and "DELETE" now allowed + others fixes to resolver routine - compression supported when copying between mnesia nodes
Revision 1.44.2.1 / (download) - annotate - [select for diffs], Sun Apr 18 21:47:42 2010 UTC (2 years, 1 month ago) by tron
Branch: pkgsrc-2010Q1
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
Pullup ticket #3080 - requested by tez
lang/erlang: security patch
Revisions pulled up:
- lang/erlang/Makefile 1.45
- lang/erlang/distinfo 1.22
- lang/erlang/patches/patch-ax 1.1
---
Module Name: pkgsrc
Committed By: tez
Date: Sat Apr 17 20:10:16 UTC 2010
Modified Files:
pkgsrc/lang/erlang: Makefile distinfo
Added Files:
pkgsrc/lang/erlang/patches: patch-ax
Log Message:
CVE-2008-2371 pcro buffer overflow fix based on:
http://vcs.pcre.org/viewvc/code/trunk/pcre_compile.c?r1=504&r2=505&view=patch
Revision 1.45 / (download) - annotate - [select for diffs], Sat Apr 17 20:10:16 2010 UTC (2 years, 1 month ago) by tez
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2
Changes since 1.44: +2 -2
lines
Diff to previous 1.44 (colored)
CVE-2008-2371 pcro buffer overflow fix based on: http://vcs.pcre.org/viewvc/code/trunk/pcre_compile.c?r1=504&r2=505&view=patch
Revision 1.44 / (download) - annotate - [select for diffs], Sun Jan 17 12:02:22 2010 UTC (2 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base
Branch point for: pkgsrc-2010Q1
Changes since 1.43: +2 -2
lines
Diff to previous 1.43 (colored)
Recursive PKGREVISION bump for jpeg update to 8.
Revision 1.43 / (download) - annotate - [select for diffs], Tue Dec 15 13:53:24 2009 UTC (2 years, 5 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4
Changes since 1.42: +1 -7
lines
Diff to previous 1.42 (colored)
Deduplicate, move common code into more appropriate place.
Revision 1.42 / (download) - annotate - [select for diffs], Tue Dec 15 12:07:57 2009 UTC (2 years, 5 months ago) by asau
Branch: MAIN
Changes since 1.41: +43 -12
lines
Diff to previous 1.41 (colored)
Update to Erlang/OTP R13B03. SunOS, Java and ODBC support by Filip Hajny and some tests by Matthias Kretschmer. Changes in R13B03 ----------------- There are mostly error corrections, but also some new functionality. Some highlights in the R13B03 release are: - Native Implemented Functions (NIFs) still experimental but very useful. - The documentation is built in a new way using xsltproc and Apache FOP. The layout is changed both in HTML and PDF versions. This is the first step, more changes and improvements will come in the following releases. Changes between R13A and R13B02 are unknown. Changes in R13A --------------- 1.1 Erlang Language and Run-time System Multi-core and SMP performance improvements There SMP performance is significantly improved: - multiple, scheduler specific run queues; - further optimized message passing; - CPU-bound scheduler threads. Unicode support as described in EEP10 New BIF's: atom_to_binary/2, binary_to_atom/2, binary_to_existing_atom/2. Independent Erlang clusters on the same host 1.2 New Applications Reltool, release management tool. WxErlang 1.3 New features in Existing Applications Common_test - SSH and SFTP support - test case groups Dialyzer - opaque type declarations; - UTF segments handling SSL - pure Erlang implementation (except crypto routines) STDLIB - scanner has been augmented to return white-space, comments and exact location of tokens.
Revision 1.41 / (download) - annotate - [select for diffs], Mon Mar 23 18:30:44 2009 UTC (3 years, 2 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1
Changes since 1.40: +3 -2
lines
Diff to previous 1.40 (colored)
Add the mirror at the Stockholm University, Sweden as the first master site because the primary master site is painfully slow.
Revision 1.40 / (download) - annotate - [select for diffs], Sat Feb 7 21:45:43 2009 UTC (3 years, 3 months ago) by joerg
Branch: MAIN
Changes since 1.39: +2 -2
lines
Diff to previous 1.39 (colored)
Don't leak the workdir for destdir builds. Patches from OpenBSD ports. Bump revision.
Revision 1.39 / (download) - annotate - [select for diffs], Tue Aug 19 11:04:52 2008 UTC (3 years, 9 months ago) by ahoka
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.38: +2 -1
lines
Diff to previous 1.38 (colored)
MAKE_JOBS_SAFE=no Reported by Aleksej Saushev.
Revision 1.38 / (download) - annotate - [select for diffs], Sat Jun 21 22:13:09 2008 UTC (3 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
cwrapper
Changes since 1.37: +2 -2
lines
Diff to previous 1.37 (colored)
Force normal linkage against libcrypto. This allows the crypto module to be build on amd64 and avoids text relocations elsewhere. Apply build fix for FreeBSD from PR 38984. Bump revision.
Revision 1.37 / (download) - annotate - [select for diffs], Tue Apr 8 13:16:22 2008 UTC (4 years, 1 month ago) by martti
Branch: MAIN
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
Some pkglint -Wall fixes.
Revision 1.36 / (download) - annotate - [select for diffs], Fri Jan 18 05:06:44 2008 UTC (4 years, 4 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base,
pkgsrc-2008Q1
Changes since 1.35: +2 -1
lines
Diff to previous 1.35 (colored)
Per the process outlined in revbump(1), perform a recursive revbump on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
Revision 1.35 / (download) - annotate - [select for diffs], Fri Jan 4 14:10:05 2008 UTC (4 years, 4 months ago) by ghen
Branch: MAIN
Changes since 1.34: +7 -5
lines
Diff to previous 1.34 (colored)
Full DESTDIR support for erlang packages.
Revision 1.34 / (download) - annotate - [select for diffs], Fri Jan 4 14:05:05 2008 UTC (4 years, 4 months ago) by ghen
Branch: MAIN
Changes since 1.33: +2 -5
lines
Diff to previous 1.33 (colored)
Update erlang, erland-doc and erlang-man to 12.0, aka R12B-0. This builds again on x86_64 platforms, is@ will test further. This release supports new language extensions bitstring and binary comprehensions. Other major changes are listed on <http://www.erlang.org/doc/highlights.html>. See <http://www.erlang.org/download/otp_src_R12B-0.readme> for full detail.
Revision 1.32.2.1 / (download) - annotate - [select for diffs], Thu Jan 3 16:13:55 2008 UTC (4 years, 4 months ago) by ghen
Branch: pkgsrc-2007Q4
Changes since 1.32: +3 -1
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
Pullup ticket 2255 - requested by joerg build fix for erlang - pkgsrc/lang/erlang/Makefile 1.33 Module Name: pkgsrc Committed By: joerg Date: Thu Jan 3 15:58:45 UTC 2008 Modified Files: pkgsrc/lang/erlang: Makefile Log Message: Mark as broken on NetBSD/amd64 as configure will spin.
Revision 1.33 / (download) - annotate - [select for diffs], Thu Jan 3 15:58:45 2008 UTC (4 years, 4 months ago) by joerg
Branch: MAIN
Changes since 1.32: +3 -1
lines
Diff to previous 1.32 (colored)
Mark as broken on NetBSD/amd64 as configure will spin.
Revision 1.32 / (download) - annotate - [select for diffs], Tue Oct 30 14:02:15 2007 UTC (4 years, 6 months ago) by is
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base
Branch point for: pkgsrc-2007Q4
Changes since 1.31: +2 -2
lines
Diff to previous 1.31 (colored)
Make the port program memsup build again. This way, PLIST is correct, so that pkg_sync and pkg_tarup work (on NetBSD-4). memsup.erl/memsup.c still need work to make it actually work on NetBSD.
Revision 1.31.2.2 / (download) - annotate - [select for diffs], Tue Oct 30 13:56:56 2007 UTC (4 years, 6 months ago) by is
Branch: pkgsrc-2007Q3
Changes since 1.31.2.1: +1 -1
lines
Diff to previous 1.31.2.1 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored)
Revert last change - wrong branch.
Revision 1.31.2.1 / (download) - annotate - [select for diffs], Tue Oct 30 13:47:18 2007 UTC (4 years, 6 months ago) by is
Branch: pkgsrc-2007Q3
Changes since 1.31: +2 -2
lines
Diff to previous 1.31 (colored)
Make the memsup port program compile, so that the PLIST ist correct on NetBSD-4 (at least). Else pkg_sync and pkg_tarup won't work.
Revision 1.31 / (download) - annotate - [select for diffs], Fri Aug 3 11:01:37 2007 UTC (4 years, 9 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base
Branch point for: pkgsrc-2007Q3
Changes since 1.30: +8 -1
lines
Diff to previous 1.30 (colored)
Fix permission of sample files and remove unused *.bat files. Bump PKGREVISION to nb1.
Revision 1.30 / (download) - annotate - [select for diffs], Mon Jul 30 07:15:36 2007 UTC (4 years, 9 months ago) by joerg
Branch: MAIN
Changes since 1.29: +7 -1
lines
Diff to previous 1.29 (colored)
Fix build on DragonFly. SCTP is detected, but some struct is missing, so disable it for now.
Revision 1.29 / (download) - annotate - [select for diffs], Sat Jul 28 14:27:10 2007 UTC (4 years, 9 months ago) by obache
Branch: MAIN
Changes since 1.28: +1 -2
lines
Diff to previous 1.28 (colored)
Update erlang to 11.5, aka R11B-5. Pkgsrc changes: * Drop dependency on X11. GS (Graphic System) doesn't use X11 directly, using `wish' command. Wish command will be picked up from PATH, to use GS, install wish command from x11/tk. (closes PR 35373, PR 36418) * FIxed to install crypto library correctly. (closes PR 36616) Changes list is too long. See attached URL for more detail. Bug fix release : otp_src_R11B-5 Build date : 2007-06-12 http://www.erlang.org/download/otp_src_R11B-5.readme Bug fix release : otp_src_R11B-4 Build date : 2007-03-28 http://www.erlang.org/download/otp_src_R11B-4.readme Bug fix release : otp_src_R11B-3 Build date : 2007-01-30 http://www.erlang.org/download/otp_src_R11B-3.readme Bug fix release : otp_src_R11B-2 Build date : 2006-11-07 http://www.erlang.org/download/otp_src_R11B-2.readme Bug fix release : otp_src_R11B-1 Build date : 2006-08-29 http://www.erlang.org/download/otp_src_R11B-1.readme
Revision 1.28 / (download) - annotate - [select for diffs], Mon Feb 26 15:47:43 2007 UTC (5 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1
Changes since 1.27: +2 -1
lines
Diff to previous 1.27 (colored)
Use pkgsrc magic for config.guess/.sub overriding. Tested by is@ for ARM.
Revision 1.27 / (download) - annotate - [select for diffs], Wed Mar 29 21:40:12 2006 UTC (6 years, 1 month ago) by ghen
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2
Changes since 1.26: +1 -2
lines
Diff to previous 1.26 (colored)
Update erlang to R10B-10 (10.1.10), a bug fix release for R10B. The ChangeLog is available at <http://www.erlang.org/download/otp_src_R10B-10.readme>.
Revision 1.26 / (download) - annotate - [select for diffs], Wed Mar 29 21:34:13 2006 UTC (6 years, 1 month ago) by ghen
Branch: MAIN
Changes since 1.25: +5 -3
lines
Diff to previous 1.25 (colored)
Move all version info from Makefile and PLIST to Makefile.versions to make updates easier. e.g. PLIST diffs will become much smaller and more readable.
Revision 1.25 / (download) - annotate - [select for diffs], Wed Mar 29 21:33:16 2006 UTC (6 years, 1 month ago) by ghen
Branch: MAIN
Changes since 1.24: +3 -3
lines
Diff to previous 1.24 (colored)
Fix two pkglint warnings:
* Please use ${BUILDLINK_PREFIX.openssl:Q} instead of ${BUILDLINK_PREFIX.openssl}.
* SUBST_MESSAGE.target should not be quoted.
Revision 1.24 / (download) - annotate - [select for diffs], Sat Mar 4 21:29:53 2006 UTC (6 years, 2 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (colored)
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.
Revision 1.23 / (download) - annotate - [select for diffs], Sun Feb 5 23:09:44 2006 UTC (6 years, 3 months ago) by joerg
Branch: MAIN
Changes since 1.22: +2 -1
lines
Diff to previous 1.22 (colored)
Recursive revision bump / recommended bump for gettext ABI change.
Revision 1.22 / (download) - annotate - [select for diffs], Fri Dec 30 10:32:16 2005 UTC (6 years, 4 months ago) by ghen
Branch: MAIN
Changes since 1.21: +9 -7
lines
Diff to previous 1.21 (colored)
- Update Erlang to R10B-9. (The changes are innumerable, this package hasn't been updated in more than two years.) - Add a buildlink3.mk file. - Make the Java dependency optional, and disable this option by default (this will make erlang build in more bulk builds). Ok by wiz.
Revision 1.20.2.2 / (download) - annotate - [select for diffs], Thu Dec 29 21:22:45 2005 UTC (6 years, 4 months ago) by ghen
Branch: pkgsrc-2005Q3
Changes since 1.20.2.1: +4 -3
lines
Diff to previous 1.20.2.1 (colored) to branchpoint 1.20 (colored) next main 1.21 (colored)
Back out my two previous commits -- they were committed on the wrong branch. Sorry.
Revision 1.20.2.1 / (download) - annotate - [select for diffs], Thu Dec 29 20:48:07 2005 UTC (6 years, 4 months ago) by ghen
Branch: pkgsrc-2005Q3
Changes since 1.20: +3 -4
lines
Diff to previous 1.20 (colored)
Update Erlang to R10B-9. The changes are innumerable, this package hasn't been updated in more than two years. Also add a buildlink3.mk file. Ok by wiz.
Revision 1.21 / (download) - annotate - [select for diffs], Mon Dec 5 20:50:25 2005 UTC (6 years, 5 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4
Changes since 1.20: +2 -2
lines
Diff to previous 1.20 (colored)
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
Revision 1.20 / (download) - annotate - [select for diffs], Sat Jul 16 01:19:11 2005 UTC (6 years, 10 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base
Branch point for: pkgsrc-2005Q3
Changes since 1.19: +2 -3
lines
Diff to previous 1.19 (colored)
Get rid of USE_PERL5. The new way to express needing the Perl executable around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
Revision 1.19 / (download) - annotate - [select for diffs], Tue Jul 12 09:40:46 2005 UTC (6 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.18: +3 -1
lines
Diff to previous 1.18 (colored)
Pass openssl location to configure script. From George Michaelson in PR 30607.
Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 1 18:02:58 2005 UTC (6 years, 11 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
Revision 1.17 / (download) - annotate - [select for diffs], Sun May 22 20:08:09 2005 UTC (7 years ago) by jlam
Branch: MAIN
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions: USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
Revision 1.16 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:13 2005 UTC (7 years, 1 month ago) by tv
Branch: MAIN
Changes since 1.15: +1 -2
lines
Diff to previous 1.15 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.15 / (download) - annotate - [select for diffs], Sun Oct 3 00:15:00 2004 UTC (7 years, 7 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
Revision 1.14 / (download) - annotate - [select for diffs], Mon Sep 13 13:43:30 2004 UTC (7 years, 8 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3
Changes since 1.13: +7 -1
lines
Diff to previous 1.13 (colored)
Make platform target used in the make match that used in the configure. Fixes build problems seen in the bulkbuilds.
Revision 1.13 / (download) - annotate - [select for diffs], Mon Jun 28 17:39:46 2004 UTC (7 years, 10 months ago) by abs
Branch: MAIN
Changes since 1.12: +5 -5
lines
Diff to previous 1.12 (colored)
This build is broken on NetBSD i386 2.0BETA (it looks for a "i386-unknown-netbsdelf2.0." directory when a "i386--netbsdelf" one is present. Someone who wants to read gmake files is going to have to fix that. That aside, its now equivalemtly broken with bl3 rather than bl2.
Revision 1.12 / (download) - annotate - [select for diffs], Fri Mar 26 02:27:42 2004 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base,
pkgsrc-2004Q2,
pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
PKGREVISION bump after openssl-security-fix-update to 0.9.6m. Buildlink files: RECOMMENDED version changed to current version.
Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 24 13:51:14 2004 UTC (8 years, 4 months ago) by grant
Branch: MAIN
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.
Revision 1.10 / (download) - annotate - [select for diffs], Wed Nov 12 03:39:40 2003 UTC (8 years, 6 months ago) by jschauma
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.9: +2 -1
lines
Diff to previous 1.9 (colored)
PKGREVISION++ after openssl update.
Revision 1.9 / (download) - annotate - [select for diffs], Sun Sep 28 09:13:57 2003 UTC (8 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
Back out last change related to moving ncurses/buildlink2.mk to curses.buildlink2.mk. This was wrong because we _really_ do want to express that we want _n_curses when we include the buildlink2.mk file. We should have a better way to say that the NetBSD curses doesn't quite work well enough. In fact, it's far better to depend on ncurses by default, and exceptionally note when it's okay to use NetBSD curses for specific packages. We will look into this again in the future.
Revision 1.8 / (download) - annotate - [select for diffs], Sat Sep 27 17:07:36 2003 UTC (8 years, 7 months ago) by grant
Branch: MAIN
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored)
move ncurses/buildlink2.mk to mk/curses.buildlink2.mk, as it provides support for base system curses/ncurses as well as ncurses itself. suggested by wiz.
Revision 1.7 / (download) - annotate - [select for diffs], Thu Sep 11 03:42:02 2003 UTC (8 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.6: +3 -1
lines
Diff to previous 1.6 (colored)
This needs a java1.2 implementation
Revision 1.6 / (download) - annotate - [select for diffs], Sun Aug 31 01:01:55 2003 UTC (8 years, 8 months ago) by jtb
Branch: MAIN
Changes since 1.5: +7 -6
lines
Diff to previous 1.5 (colored)
Update to version 9.2. This version is focused on improved performance and stability, rather than introducing new functionality, hence it is called R9C. Build Process NEW The build process has been improved so that it is possible to build Erlang/OTP from source even on Windows platforms. There is also a completely new installation program for Windows. Observer crashdump_viewer NEW A HTML based tool for browsing Erlang crashdumps. The tool can handle crashdumps from OTP R7B, R8B and R9B as well but there is additional information in the crashdumps for R9C. OTP_MIBs NEW The OTP mibs that where included in the SASL application have been moved to this new application otp_mibs. This is a step too create a pure core for Erlang/OTP that does not depend on specific, non-mainstream applications such as SNMP.
Revision 1.5 / (download) - annotate - [select for diffs], Mon Jul 21 16:54:01 2003 UTC (8 years, 10 months ago) by martti
Branch: MAIN
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
COMMENT should start with a capital letter.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Jul 17 21:44:18 2003 UTC (8 years, 10 months ago) by grant
Branch: MAIN
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
s/netbsd.org/NetBSD.org/
Revision 1.3 / (download) - annotate - [select for diffs], Mon Jun 2 01:19:05 2003 UTC (8 years, 11 months ago) by jschauma
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages. Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
Revision 1.2 / (download) - annotate - [select for diffs], Fri May 2 11:55:34 2003 UTC (9 years ago) by wiz
Branch: MAIN
Changes since 1.1: +2 -1
lines
Diff to previous 1.1 (colored)
Dependency bumps, needed because of devel/pth's major bump, and related dependency bumps.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Apr 29 23:47:45 2003 UTC (9 years ago) by jtb
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial import of erlang-9.1. Erlang is a programming language which has many features more commonly associated with an operating system than with a programming language: concurrent processes, scheduling, memory management, distribution, networking, etc. The initial open-source Erlang release contains the implementation of Erlang, as well as a large part of Ericsson's middleware for building distributed high-availability systems.
Revision 1.1 / (download) - annotate - [select for diffs], Tue Apr 29 23:47:45 2003 UTC (9 years ago) by jtb
Branch: MAIN
Initial revision