Commit graph

11957 commits

Author SHA1 Message Date
bouyer
73377ca550 Import FusionInventory-Agent 2.2.7
The FusionInventory agent is a generic management agent. It can perform a
certain number of tasks, according to its own execution plan, or on behalf of a
GLPI server with fusioninventory plugin, acting as a control point.

Two of these tasks are included in agent source distribution, local inventory
and wake on lan. Other tasks are distributed separatly, excepted for binary
distributions where they are bundled together.
2013-01-14 14:46:50 +00:00
taca
3a6e1f6396 Update ruby-domain_name to 0.5.7.
* Hold the date of the eTLD database and use it to detect modification.
* Update the eTLD list.
2013-01-14 11:34:52 +00:00
obache
0044d596f6 Update mikutter to 0.2.1.1119, 0.2.1 official release. 2013-01-13 07:26:40 +00:00
ryoon
a92e256173 Add bwping. 2013-01-13 04:30:55 +00:00
ryoon
6fc174090a Import bwping-1.7 as net/bwping.
BWPing is a tool to measure bandwidth and response times between
two hosts using Internet Control Message Protocol (ICMP) echo
request/echo reply mechanism. It does not require any special
software on the remote host. The only requirement is the ability
to respond on ICMP echo request messages.
2013-01-13 04:29:50 +00:00
ryoon
a6e73a28c5 Fix PLIST error.
* Convert to use egg.mk.

Thank you, joerg@.
2013-01-12 11:58:33 +00:00
joerg
eea1904672 Use plain tar for copying. 2013-01-11 23:29:05 +00:00
joerg
c714d19e0d fetch-1.8: Avoid non-literal format strings. 2013-01-11 14:07:05 +00:00
taca
0df9537a1b Update ISC DHCP to 4.2.5.
Changes are too many to write here, please refer RELNOTES.
2013-01-11 13:35:57 +00:00
joerg
24a451c7a9 Requires _KMEMUSER and uvm/uvm_extern.h on NetBSD/current. 2013-01-11 13:34:46 +00:00
joerg
2053b2492a Really fix inline usage. 2013-01-11 13:33:59 +00:00
joerg
3e6afd0e0d Explicitly include utmpx.h for NetBSD/current. 2013-01-11 13:32:58 +00:00
joerg
a1c6f04969 Honour user CFLAGS. 2013-01-11 13:31:54 +00:00
joerg
893873e144 NetBSD/current needs sysctl/vmmeter.h explicitly included. 2013-01-11 00:05:05 +00:00
joerg
7c50c34b87 Do not remove __attribute__, at the very least this way leads to bad
syntax in system headers on NetBSD.
2013-01-11 00:04:22 +00:00
joerg
5c8be5de13 Fix void use. Add some missing prototypes and includes. 2013-01-11 00:03:30 +00:00
joerg
aa02030ad9 PCAP handler callback is void. 2013-01-11 00:02:13 +00:00
joerg
f653d4bc3c Fix inline. 2013-01-11 00:01:33 +00:00
obache
58948b11c0 Update mikutter to 0.2.1.1117, aka pre2. 2013-01-10 11:20:46 +00:00
wiz
df0f9c6239 Update to 2.75:
=== Transmission 2.75 (2012/12/13) ===

==== Mac ====
  * Fix crash on non-English localizations
2013-01-06 01:12:33 +00:00
obache
01eafbeeac Update mikutter to 0.2.1.1112.
support Twitter API 1.1 and Developer Displlay Requirements.

pkgsrc changes:
* drop dependency on desktop-file-utils, not register mime-type.
* use extarnal typed-array module.
2013-01-05 07:46:04 +00:00
dholland
cef760fcdc Insert rpath for BUILDLINK_PREFIX.libidn as well as using the one that
comes from Perl, so this will still build if libidn and Perl are
installed in different trees. Belt-and-suspenders fix for PR 47187 on
NetBSD, may also fix the problem seen on Dragonfly.
2013-01-03 20:48:47 +00:00
ryoon
2bae36f6bc Add py-smb 2013-01-03 15:50:48 +00:00
ryoon
f7ec53f98f Import py27-smb-1.1.2 as net/py-smb.
pysmb is an experimental SMB/CIFS library written in Python. It
implements the client-side SMB/CIFS protocol (SMB1 and SMB2) which
allows your Python application to access and transfer files to/from
SMB/CIFS shared folders like your Windows file sharing and Samba
folders.
2013-01-03 15:49:40 +00:00
ryoon
281970387b Update to 16.0.1
Changelog:
aria2 1.16.1
============

Release Note
------------

This release adds the ability to persist GID across sessions. The GID
will be saved with --save-session. There are several restrictions how
GID is persisted. See the manual for details. For this change, now GID
is 64 bits binary data and represented by 16 characters hex string in
RPC query.  The disk cache feature was added, which may reduce disk
activity. The console readout was redesigned. The warning displayed
when --file-allocation=falloc is used on MinGW32 build was removed as
a bug.

Changes
-------

* mingw32: Re-open files with read-only mode enabled on seeding

  On Mingw32 build, if aria2 opens file with GENERIC_WRITE access
  right, some programs cannot open the file aria2 is seeding. To avoid
  this situation, re-open files with read-only enabled when seeding is
  about to begin.

* Save gid option with --save-session option

* Added --gid option

  This option sets GID manually. aria2 identifies each download by the
  ID called GID. The GID must be hex string of 16 characters, thus
  [0-9a-zA-Z] are allowed and leading zeros must not be stripped. The
  GID all 0 is reserved and must not be used. The GID must be unique,
  otherwise error is reported and the download is not added.  This
  option is useful when restoring the sessions saved using
  --save-session option. If this option is not used, new GID is
  generated by aria2.

* Use 64 bits random bytes as GID

  This change replaces the current 64 bit sequential GID with 64 bits
  random bytes GID in an attempt to support persistent
  GID. Internally, the GID is stored as uint64_t. For human
  representation and RPC interface, GID is represented as 16 bytes hex
  string. For console readout, 16 bytes are too long, so it is
  abbreviated to first 6 bytes.  When querying GID in RPC calls, user
  can speicfy the prefix of GID as long as the prefix is shared by
  more than 1 GID entries.

* Fixed BitfieldMan::getOffsetCompletedLength overflow on 32-bit systems

* mingw32: Use HANDLE only for MinGW32 build

* Changed console readout, making it more compact

  "SIZE:" is removed because it is obvious. SEEDING, SEED, SPD and UP
  are now replaced with SEED, SD, DL and UL respectively.

* Compact readout when more than 1 simultaneous downloads are going on

  If more than 1 simultaneous downloads are going on, use more compact
  format in readout. Currently, at most 5 download stats are
  displayed.

  util::abbrevSize() is rewritten to support "Gi" unit and provides
  more compact abbreviation.

* Console color output

  Log level and download result string is now colored.

* Logger: Simplified console output and change level format in log

  The date and time are now removed from console output.  The log
  level is now formatted as "[LEVEL]".

* Start to find faster host before the number of missing segments becomes 1

  The old implementation starts to find faster host when the number of
  missing segment becomes 1. Because of --min-split-size option,
  before the number of missing segment becomes 1, the number of
  connection becomes 1 and it can be slow. In this case, we have to
  wait until the last segment is reached. The new implementation
  starts to find faster host when the remaining length is less than
  --min-split-size * 2, to mitigate the problem stated above.

* Removed warning when --file-allocation=falloc is used in MinGW32 build

  The warning was just a mistake. SetFilePointerEx + SetEndOfFile
  actually allocate disk space.

* Write data in 4K aligned offset in write with disk cache enabled

  This greatly reduces disk activity especially on Win + NTFS.  Not so
  much difference on Linux.

* mingw32: Removed FSCTL_SET_SPARSE set

* Added --disk-cache option

  This option enables disk cache. If SIZE is 0, the disk cache is
  disabled. This feature caches the downloaded data in memory, which
  grows to at most SIZE bytes. The cache storage is created for aria2
  instance and shared by all downloads. The one advantage of the disk
  cache is reduce the disk seek time because the data is written in
  larger unit and it is reordered by the offset of the file. If the
  underlying file is heavily fragmented it is not the case.
2013-01-02 13:45:34 +00:00
joerg
3bd681c39d Needs pkg-config 2013-01-01 19:12:08 +00:00
ryoon
21b8dfd078 Fix build on Linux (CentOS 6.3).
Add workaround not to try toinclude util.h on Linux.
Configure should handle util.h properly.
2012-12-31 23:36:47 +00:00
dholland
baf7a72c82 Patch inline usage. 2012-12-26 21:41:52 +00:00
joerg
10c9a03577 Provide a deterministic return value from main. Bump revision. 2012-12-25 21:05:19 +00:00
joerg
e303191ee3 Allow building with libxml 2.9. 2012-12-25 21:04:32 +00:00
joerg
3b47bdc5a7 stddef.h needed for size_t. 2012-12-25 21:04:15 +00:00
joerg
bbd55b7075 Fix inline use. 2012-12-25 21:03:36 +00:00
ryoon
8902e2be44 Update distinfo. 2012-12-25 09:34:41 +00:00
pettai
366df3e78b Unbound 1.4.19
Features:

* RFC6725 deprecates RSAMD5: this DNSKEY algorithm is disabled.
  The contrib/patch_rsamd5_enable.diff patch enables RSAMD5 validation
  otherwise it is treated as insecure. The MD5 hash is considered weak for
  some purposes, if you want to sign your zone, then RSASHA256 is an
  uncontested hash.
* unbound-control -q option is quiet
* include: directive in config file accepts wildcards.
  Suggested use: include: "/etc/unbound.d/conf.d/*"

Bug Fixes:

* Fix openssl race condition, initializes openssl locks.
* Improved forward-first and stub-first documentation.
* Fix that enables modules to register twice for the same serviced_query,
  without race conditions or administration issues.
* Fix forward-first option where it sets the RD flag wrongly.
* added manpage links for libunbound calls.
* Add documentation to libunbound for default nonuse of resolv.conf.
* Fix timeouts so that when a server has been offline for a while and is
  probed to see it works, it becomes fully available for server selection again.
* Fallback to 1472 and 1232, one fragment size without headers.
* [bugzilla: 465 ] Nicer comments outgoing-port-avoid.
* chdir to / after chroot call (suggested by Camiel Dobbelaar).
* updated contrib/unbound.spec.
* ignore trusted-keys globs that have no files (from Paul Wouters).
* fix text in unbound-anchor man page.
* fix build of pythonmod in objdir.
* make clean and makerealclean remove generated python and docs.
* Fix validation for responses with both CNAME and wildcard expanded CNAME
  records in answer section.
* [bugzilla: 477 ] Fix unbound-anchor segfault if EDNS is blocked.
* Fix unbound-control forward disables configured stubs below it.
* [bugzilla: 481 ] Fix python example0.
* iana portlist updated.
2012-12-25 08:54:26 +00:00
ryoon
3365aeace3 Fix build on Solaris.
* Define LDFLAGS.SunOS for missing libs
* Pass LDFLAGS to linker
2012-12-24 14:29:24 +00:00
pettai
e04033c271 v1.1.3 - Dec 19, 2012
---------------------

Bugfixes
        * Updated manpage.

v1.1.3-rc1 - Dec 6, 2012
------------------------

Bugfixes
        * Fixed answering DS queries (RRSIGs not together with DS, AA bit
          missing).
        * Fixed setting ARCOUNT in some error responses with EDNS enabled.
        * Fixed crash when compiling zone zone with NSEC3PARAM but no NSEC3
          and semantic checks enabled.
2012-12-23 23:38:08 +00:00
joerg
f2b319a7bc Don't forward declare a type that is pulled in via using. 2012-12-22 20:02:36 +00:00
imil
74e307999d Fixed install for python 2.7, setup.py seems buggy and does not create
requires.txt when version is > 2.6. There's room for improvement, that's
a quick fix.
2012-12-22 13:34:49 +00:00
tron
7d9df14fac Completely disable manual page compression for this package as it uses
nested manual page extensively.

Bump package revision for this bug fix.
2012-12-22 11:23:59 +00:00
joerg
c4c98aa1ba Clang warns about non-literal format strings, but we don't want this to
be fatal for now.
2012-12-20 22:53:54 +00:00
joerg
188cebae62 Disable Clang's stricter non-literal format string warning. 2012-12-20 22:53:11 +00:00
joerg
43de6faef0 Always include termios.h, libutil.h no longer does it. 2012-12-20 21:42:06 +00:00
joerg
e788b35788 Don't force -ansi by really honouring the user CFLAGS. 2012-12-20 21:39:28 +00:00
ryoon
c3f57c7c31 Fix build on Solaris.
curl is also required in link stage.
2012-12-20 10:02:41 +00:00
pettai
116b4c0020 Added flex 2012-12-20 07:50:19 +00:00
jnemeth
7e407c3c63 add and enable grilo-testui 2012-12-20 06:30:31 +00:00
wen
000975b88a Update to 1.122880
Add LICENSE

Upstream changes:
1.122880 2012-10-14
    - Updated database: Sun Oct 14 06:40:02 2012 UTC.
    - Added Bonaire, Sint Eustatius and Saba country code: BQ

1.121660 2012-06-14
    - Updated database: Thu Jun 14 06:40:01 2012 UTC.

1.120460 2012-02-15
    - Updated database: Wed Feb 15 06:40:01 2012 UTC.
    - Fix tests due to updated data

1.112870 2011-10-14
    - Added South Sudan country code: .ss
    - Updated database: Fri Oct 14 06:40:01 2011 UTC.

1.112490 2011-09-06
    - Add a "country name" for code ZZ (private IP addresses) (Neil Bowers)
    - Various POD improvements (Neil Bowers)
    - Updated database: Tue Sep  6 06:40:01 2011 UTC.

1.111650 2011-06-14
    - Updated database: Tue Jun 14 06:40:01 2011 UTC.

1.110450 2011-02-14
    - Updated database: Mon Feb 14 06:40:01 2011 UTC.

1.102870 2010-10-14
    - Updated database: Thu Oct 14 06:40:01 2010 UTC.

1.101650 2010-06-14
    - Minor code and test cleanup
    - Updated database: Mon Jun 14 06:40:01 2010 UTC.
2012-12-19 07:22:17 +00:00
pettai
4a8dda555b USE_TOOLS+= bison
(instead of using incompatible (f)lex found on some platforms)
2012-12-18 17:03:56 +00:00
tsutsui
fcbb9858c3 Update mikutter to 0.2.0.1089.
pkgsrc changes:
 - customized escape.rb is no longer necessary
 - catch up directory reorganaization
 - update COMMENT and LICENSE per newer distribution files

Upstream changes:

0.2.0.1089:
 - workaround bugs in several Twitter's APIs that cause auth dialogs and
   prevent initial authentication

0.2.0.1080:
 - add auto scroll support in activity tab
 - fix problems when access token is canceled
 - workaround invalid response from Twitter that causes hourly auth dialog
 - fix crash problem when profile command is invoked without selected tweet

0.2.0.1064
 - same fix in 0.1.1.1063
 - reorganize directories
 - fix a problem that can't remove abstruct tab
 - fix several bugs in setting windows
 - add support preview of tumblr and hatena photolife

0.2.0.1054:
 - fix open conversation tab commant without focused tweet
 - stop sending a bug report without useful trace

0.2 major updates:
 - reorganize UI APIs
 - support multipain officially
 - replace settings tab with window
 - renew profile plugin
 - add many mikutter commands for keyboard operation
 - misc secret features
2012-12-17 17:44:20 +00:00
taca
b2eb4952fe Update ruby-domain_name to 0.5.6.
* Update Effective TLD list and changes for Japanese prefecture domains.
* Add host_only flag to DomainName#cookie_domain?.
* Miscellaneous fixes.
2012-12-17 13:02:41 +00:00