Commit graph

38073 commits

Author SHA1 Message Date
Ryosuke Moro
1e466fc051 Import stringable-0.1.2 as wip/hs-stringable. 2013-09-16 21:18:40 +00:00
Ryosuke Moro
2dca343f30 Import stringable-0.1.2 as wip/hs-stringable.
Data.Stringable provides a type class with a set of functions for
converting to and from the most often used string-linke types in Haskell.
2013-09-16 21:17:11 +00:00
Ryosuke Moro
1efbb5b6c5 Import hslua-0.3.6.1 as wip/hs-hslua. 2013-09-16 21:08:38 +00:00
Ryosuke Moro
3aa9731e6e Import hslua-0.3.6.1 as wip/hs-hslua.
The Scripting.Lua module is a wrapper of Lua language interpreter as
described in www.lua.org.

The package is standalone
2013-09-16 21:06:34 +00:00
Kamel Ibn Aziz Derouiche
6fde13e657 UPDATE VERSION 2013-09-16 18:48:07 +00:00
Kamel Ibn Aziz Derouiche
5d44a01c46 Import py27-pint-0.3.1 as wip/py-pint.
Pint is Python module/package to define, operate and manipulate physical
quantities: the product of a numerical value and a unit of measurement.
It allows arithmetic operations between them and conversions from and
to different units.

It is distributed with a comprehensive list of physical units, prefixes
and constants. Due to it's modular design, you to extend (or even rewrite!)
the complete list without changing the source code
2013-09-15 20:35:02 +00:00
dieter roelants
4b8f10f879 Update enlightenment e17 to version 0.17.4.
NEWS doesn't list changes since 0.17.3.

Changes since 0.17.2:
Improvements:
    * improve efm mouse movement detection for icons
    * add check for vmware window in another spot to disable key remapping
Fixes:
    * fixed theme bug which prevented windows from unshading
      correctly when animations were disabled

Changes since 0.17.1:
Additions:
    * e_config_xkb functions
Changes:
    * e_xkb_layout API now deals directly with E_Config_XKB_Layout structs
Improvements:
    * clock listens to /etc/timezone changes now too
    * updated Catalan translations
Fixes:
    * fixed window autoraise triggering from pointer slide
    * fixed opening of links in filemanager in some cases
    * filemanager now ignores changes to .part files
    * fixed bugs where keyboard layouts could not be applied or selected
    * fixed leak in profile list dbus method
    * fixed behavior of Up/Down keys in filemanager when typebuf was visible
    * fix possible crash in xkb rule parsing
    * fix list update on deletion of personal app launchers
    * fix button toggling in personal app launchers dialog
    * fix bug where edge flips would stop functioning after dragging
      to an invalid edge containing a shelf
    * moved "allow windows above fullscreen windows" option to
      geometry settings dialog
    * fix filemanager efreet cache listeners and updates
    * fix clock timerfd usage to actually detect date changes
    * enable image preloading for all e_widget_preview using edje
    * keyboard mapping change now also disables for window class "vmware"
    * don't call efreet_menu_parse from a thread
    * fixed bug where pointer warping to new clients would start
      at a random location
    * fix crash when locking screen from Start gadget and then
      activating gadget again
    * fixed bug where e_layout would ignore frozen state and crash
    * fixed disable of input methods in input method config dialog
    * fixed pointer warp when pointer was inside warp window but
      not directly over it
    * toolbar gadgets no longer crash when trying to display a popup
2013-09-15 17:31:16 +00:00
dieter roelants
7d0dd3b9cb Update Enlightenment libraries to version 1.7.8. 2013-09-15 17:22:35 +00:00
dieter roelants
1c6c1a6c0e Add missing patch file. 2013-09-15 17:03:37 +00:00
Makoto Fujiwara
75d1d1cc71 clang flags as resize unresolved reference,
backport from git repository (as of 2013-09-15).
2013-09-15 16:45:16 +00:00
Adrian Steinmann
b3cf4763d8 Fix clang build error in libmy/strb64d by using clearer style
Modify PLINT and Makefile to fix pkgsrc/NetBSD pkglint warnings
Remove http_path variable (environment PATH should be set by CGI programs)
2013-09-15 08:36:06 +00:00
Aleksej Saushev
54d55e354e Rebase work to ATLAS 3.11.11 2013-09-14 23:46:50 +00:00
Ryo ONODERA
640d4182da Imported as pkgsrc/devel/lua-posix. 2013-09-14 10:39:13 +00:00
Ryo ONODERA
1b5164d324 Fix build on Solaris 10.
* Add conditional for true and KEY_RESIZE definitions.
* Add conditional KEY_RESIZE(3)
2013-09-14 09:01:12 +00:00
Ryo ONODERA
17a26f9447 Update to 31 (5.1.31 equivalent)
* Remove SunOS hack temporary.
  I will do tests on SunOS later.
2013-09-14 07:56:18 +00:00
Ryosuke Moro
f232febf78 Update to 0.11.3.1
changes:
0.11.3.1
  - Make Data.Text.Unsafe public, bump version

0.11.3.0
  - Drop last vestige of restreamUtf8
  - Add a copy function
    This fixes https://github.com/bos/text/issues/48
  - Drop restreamUtf8 function that is no longer used (https://github.com/bos/text/issues/44)
  - Fix printing of hex Integers (https://github.com/bos/text/issues/47)
  - Replace the few last uses of div with quot
  - Undo an overflow bug I introduced with quotRem
  - Handle Int8 overflow
  - Compare Show instance performance
  - Shave off another 6ns for negative integers with quotRem
  - Replace uses of quot and rem with quotRem
    Astonishingly (at least to me), this improves performance by almost 30% for large integers.
  - Backport integer builder benchmarks
  - Switch to a faster decimal algorithm
    This is about 25% faster than its predecessor for large numbers.
  - Benchmark some bigger numbers
  - Backed out changeset bb9a0e19421e, since it was slow
  - A more straightforward (and slower) countDigits
    This is a few percent slower than the tail-recursive version for numbers of more than one digit.
  - Replace countDigits with a faster, more complex version
    This is taken from Andrei's "Three Optimization Tips for C++" post:
    https://www.facebook.com/notes/facebook-engineering/three-optimization-tips-for-c/10151361643253920
    It improves performance by up to 15%.
  - Replace a use of div with quot
  - Add LLVM support for benchmarks
  - Update some comments and whitespace
  - Cast to widest fixed integer to avoid truncation trouble
  - Write straight into the dest buffer
  - Float ensureFree way out
  - Add a countDigits function
  - Refactor Builder into Builder and Builder.Internal modules
    rename : Data/Text/Lazy/Builder.hs => Data/Text/Lazy/Builder/Internal.hs
  - Use unsafeDupablePerformIO where possible
    unsafeDupablePerformIO is much faster than unsafePerformIO and can be
    used safely as long as the underlying operation is pure and we're fine
    risking duplicating it in a multi-core scenario. unsafeDupablePerformIO
    helps performance a lot on short string where the overhead of
    unsafePerformIO dominates.
  - Add benchmarks for decodeUtf8'
    Also make it possible to run the Pure benchmark with a very short input
    string. This lets us test the constant overheads in functions, such as
    the one added by unsafePerformIO in decodeUtf8.
  - Document internal units and representation
  - Try to sort out benchmark build with GHC 7.6
  - Fix benchmarks with older bytestring'
  - Fix test build with older bytestring
  - Ensure that an encoding error handler's result is safe
  - Get in-place tests working "properly"
  - Merge pull request #18 from hvr/pull-req-16
    Add new `Data.Text.Encoding.decodeLatin1` ISO-8859-1 decoding function
  - Merge pull request #36 from deian/master
    Mark top-level modules Trustworthy
  - Turn one error into a CAF
  - Make streaming cons strict in its first argument
  - Drop some more overhead from unstreamChunks
  - First of many CAFs to be NOINLINEd :-(
  - When unstreaming, we know the first chunk is not empty
  - Lazy Text: reduce memory allocation during unstreaming
  - A few simple bang patterns help performance a little
  - Merge
  - Optimize latin1-to-UTF16 C-implementation by using 32-bit loads
  - Add `Data.Text.Lazy.Encoding.decodeLatin1` ISO-8859-1 decoding function
    See 7c06306bd5 for more information
  - Add new `Data.Text.Encoding.decodeLatin1` ISO-8859-1 decoding function
    This has about an order of magnitude lower runtime and/or call-overhead as
    compared to the more generic `text-icu` approach, e.g. according to criterion
    with GHC 7.4.1 on Linux/x86_64:
	 * 12 times faster for empty input strings,
	 * 6 times faster for 16-byte strings, and
	 * 3 times faster for 1024-byte strings.
    `decodeLatin1` is also faster compared to using `decodeUtf8` for plain ASCII:
	 * 2 times faster for 16-byte input strings,
	 * ~40% faster for 1024-byte strings.
  - nits
  - kill PatternSignatures warning
  - Top-level interfaces are safe, marked trustworthy
  - Fix documentation for hGetChunk
  - Hoist out duplicated catchError definitions :-(
  - Merge
  - Redefine pack to fuse better
2013-09-14 00:27:20 +00:00
Kamel Ibn Aziz Derouiche
66e9dc632e Import py27-dexy-0.9.9.5 as wip/py-dexy.
Document Automation
2013-09-13 23:41:42 +00:00
Kamel Ibn Aziz Derouiche
cf065febeb Import py27-helio-1.0.0b1 as wip/py-helio.
Componentised, hierarchical, notification driven Python web framework
2013-09-13 23:32:19 +00:00
Kamel Ibn Aziz Derouiche
2bdc0cb7fa Import py27-nipy-data-0.2 as wip/py-nipy-data. 2013-09-13 18:56:59 +00:00
Kamel Ibn Aziz Derouiche
f8aa57587a Import py27-nipy-0.3.0 as wip/py-nipy.
The aim of NIPY is to produce a platform-independent Python environment for
the analysis of functional brain imaging data using an open development model
2013-09-13 18:52:52 +00:00
Krister Walfridsson
f58a3c5fc3 +gambit
+ninja-ide
+py-astropy
+py-control
+py-cse
+py-debacl
+py-dicom
2013-09-13 18:45:37 +00:00
Krister Walfridsson
aec1f48a45 +py-epigrass
+py-hamilton
+py-mpi4py
-py-mpich4py
+py-mystic
+py-quepy
+py-sqlsoup
+py-strategies
+py-sunpy
+py-xdress
2013-09-13 18:15:55 +00:00
Filip Hajny
ca43801f32 Update rabbitmq-c to 0.4.1.
Changes in 0.4.1:
* Removed distribution-specific packaging.
* Bug fixes

Changes in 0.4.0:
* SSL Support
* Non-blocking amqp_simple_wait_frame()
* Per-channel memory management
* High-level consumer API
* Partial heartbeat support
* Bug fixes

See full changelog:

  https://github.com/alanxz/rabbitmq-c/blob/v0.4.1/ChangeLog.md
2013-09-13 10:54:03 +00:00
Makoto Fujiwara
30fc1ed3ea Sync (ham/fldigi/Makefile) of following commit
revision 1.31
date: 2013/05/06 14:49:32;  author: joerg;  state: Exp;  lines: +6 -1
Avoid implicit conversions to bool for streams.
Require C++11 for Clang and prefer std version over tr1 when in C++11
mode.
2013-09-13 02:26:14 +00:00
Makoto Fujiwara
37ff06aa34 Bump 3.21.73 to 3.21.76
=Version 3.21.76=

2013-09-09  David Freese  <w1hkj@w1hkj.com>
        e640b53: ARQ mode character set
        e875d6e: RsID, Macro Queue, DTMF transmit management
        e618ecf: Xmlrpc method signatures
        6e8f57a: RsID fo computation

=Version 3.21.75=
        30915e4: xmlrpcpp methods
        7037ad6: RSID update
        fce7654: Error exit
        263f540: fltk 1.1.x
        433ec86: Sound File

=Version 3.21.74=
        d17f1b1: initialize active_modem
        bdbaf78: XML parser
        6fcf6bd: 64 bit compile warnings
        1a870d9: Automake bug
2013-09-13 01:20:33 +00:00
Aleksej Saushev
b81973b4e6 Regenerate. 2013-09-12 21:33:02 +00:00
Aleksej Saushev
6da82ab34b Set version to 1.99 to make it larger than current 1.1.11. 2013-09-12 21:23:27 +00:00
Kamel Ibn Aziz Derouiche
2c117f2b9f Import py27-hamilton-0.1.0 as wip/py-hamilton.
Visualize and control mechanic systems through solving these systems
with Hamiltonian mechanics.
2013-09-12 20:26:38 +00:00
Kamel Ibn Aziz Derouiche
0728afdd20 Import py27-control-0.6c as wip/py-control.
The Python Control Systems Library, python-control, is a python package that
implements basic operations for analysis and design of feedback control systems
2013-09-12 20:18:57 +00:00
Ryosuke Moro
d60e459233 Update to 0.3.0.2
Changelog:
* 0.3.0.2
 - Fix tarball.

* 0.3.0.1
 - Use CPP to reduce code duplication.
 - GHC 7.4 support

* 0.3.0.0
 - Split modules into Lazy and Strict variants, no default choice.
   Add Hashable instance to Data.Unique.Really for all implementations.
 - Better fix for potential race condition involving 'Unique'.
 - add -Wall flag and fix some warnings it reveals
 - Add strict and lazy variant of the `Vault` data type.
2013-09-12 20:11:38 +00:00
Kamel Ibn Aziz Derouiche
8864a06c88 Import py27-strategies-0.1.2 as wip/py-strategies.
This project contains a set of complementary higher order functions
that loosely resembles the Stratego language
2013-09-12 19:33:15 +00:00
Kamel Ibn Aziz Derouiche
55f8da3c22 UPDATE VERSION 2013-09-12 18:31:08 +00:00
Thomas Klausner
a4407f91fa + org-caldav-git 2013-09-12 18:02:43 +00:00
Thomas Klausner
15d921a434 Import org-caldav-0.0nb20130912 as wip/org-caldav-git.
Caldav sync for Emacs Orgmode

Tested CalDAV servers: Owncloud, Google Calendar.

Also reported to be working: SOGo.

TODO:
Packages fine, completely untested, and a git package anyway, so
no chance to import it as-is.
2013-09-12 18:01:46 +00:00
Makoto Fujiwara
1e2eab273b (1) {emulators,wip}/simulavr now packages fine.
Follow (sync) how-it-has-good shape. (Makefile)
    -- meaning that not to have
    -#.include "../../wip/avr-libc/buildlink3.mk"
    but
    +BUILD_DEPENDS+=                avr-libc-[0-9]*:../../wip/avr-libc
(2) Sort Makefile as similar as doc/Makefile-example
(3) Add one item on TODO
    automake-1.14 has a problem to package, while 1.11 was OK.
      config.status: creating Makefile
      config.status: error: cannot find input file: `src/Makefile.in'
2013-09-12 14:47:23 +00:00
Makoto Fujiwara
d4ac8e203d Clarify as the command tqslcert is no longer provided. 2013-09-12 13:44:59 +00:00
Thomas Klausner
497f38f143 + alive-2.0.2, virtualbox-4.2.18. 2013-09-12 11:57:28 +00:00
Makoto Fujiwara
c383337de2 Now packaging confirmed on pbulk environment.
Makefile
- Add avr-libc in depeding list
  +BUILD_DEPENDS+=                avr-libc-[0-9]*:../../wip/avr-libc
  (buildlink3.mk doen't seem to work).
- Missing swig added
  +.include "../../devel/swig/buildlink3.mk"

PLIST
- examples/python directory doesn't seem to be activated.
  Drop from PLIST.
2013-09-12 04:56:07 +00:00
Makoto Fujiwara
e6e79bd29a Add indentation for filename. 2013-09-12 02:22:46 +00:00
Makoto Fujiwara
0dbfd1fad9 LICENSE.txt is now being installed in share directoy. 2013-09-12 02:21:47 +00:00
Christian St
c2f162dbb4 update tor from 0.2.4.11-alpha to 0.2.4.17-rc 2013-09-11 22:09:06 +00:00
Filip Hajny
703be55f5f Add rsyslog7 2013-09-11 10:06:24 +00:00
Filip Hajny
6cdc75234c Import rsyslog-7.4.4 as wip/rsyslog7.
Rsyslog is an enhanced syslogd supporting, among others, MySQL,
PostgreSQL, failover log destinations, syslog/tcp, fine grain
output format control, high precision timestamps, queued operations
and the ability to filter on any message part. It is quite
compatible to stock sysklogd and can be used as a drop-in
replacement.
2013-09-11 10:01:56 +00:00
Filip Hajny
080ac186e2 Update liblognorm to 0.3.7.
Version 0.3.7, 2013-07-17
* added support to load single samples

Version 0.3.6, 2013-03-22
* bugfix: unitialized variable could lead to rulebase load error

Version 0.3.5 (rgerhards), 2012-09-18
* renamed "normalizer" tool to "lognormalizer" to solve name clashes
2013-09-11 09:59:39 +00:00
Filip Hajny
bbe1cb1ebe Update libestr to 0.1.5.
Version 0.1.5 2013-03-19
* bugfix: es_strncmp() did not work correctly

Version 0.1.4 2012-09-13
* bugfix: '\\' escape was not recognized when unescaping strings

Version 0.1.3 (rgerhards), 2012-07-04
* bugfix: fixed some problems in build system
* bugfix: license doc COPYING was accidently overwritten, now LGPL again
2013-09-11 09:58:26 +00:00
PHO / phonohawk
3680f54f20 +py-percol 2013-09-11 05:11:19 +00:00
PHO / phonohawk
82b19b1be8 Import py27-percol-0.0.3nb20130911 as wip/py-percol.
Percol adds flavor of interactive filtering to the traditional pipe
concept of shell.

Try
   % A | percol | B

and you can display the output of command A and filter it
intaractively then pass them to command B. Interface of percol is
highly inspired by anything.el for Emacs.
2013-09-11 05:10:05 +00:00
PHO / phonohawk
fa7aae7923 +py-pymigemo 2013-09-11 03:37:53 +00:00
PHO / phonohawk
375a46f294 Import py27-pymigemo-0.4 as wip/py-pymigemo.
This is a Python bindings for C/Migemo.
2013-09-11 03:36:33 +00:00
Kamel Ibn Aziz Derouiche
f71aa97ddf Import py27-quepy-0.2 as wip/py-quepy.
Quepy is a python framework to transform natural language questions to queries
in a database query language. It can be easily customized to different kinds of
questions in natural language and database queries. So, with little coding you
can build your own system for natural language access to your database
2013-09-10 23:29:24 +00:00