| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
- Clean up dependencies
|
|
|
|
|
| |
PR: ports/165714
Submitted by: TERAMOTO Masahiro <markun@onohara.to> (maintainer)
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/DROLSKY/DateTime-TimeZone-1.45/Changes
|
| |
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/165640
Approved by: TERAMOTO Masahiro <markun@onohara.to> (maintainer)
|
|
|
|
|
|
|
| |
- Add TEST_DEPENDS
PR: ports/165638
Approved by: TERAMOTO Masahiro <markun@onohara.to> (maintainer)
|
|
|
|
|
| |
PR: ports/165513
Approved by: "Zane C. B-H." <vvelox@vvelox.net> (maintainer)
|
|
|
|
|
|
|
| |
- Bump PORTREVISION due to new RUN_DEPENDS, which changes the package
PR: ports/165393
Approved by: Grzegorz Blach <magik@roorback.net> (maintainer)
|
|
|
|
|
|
|
|
| |
- Move test only depends to TEST_DEPENDS
- Assign to perl@
PR: ports/165275
Approved by: sahil@FreeBSD.org (maintainer)
|
|
|
|
|
|
|
| |
- Add TEST_DEPENDS to enable testing
PR: ports/165268
Approved by: maintainer timeout (skv, > 2 weeks)
|
|
|
|
| |
- Improve wrapper script
|
| |
|
|
|
|
|
|
| |
system.
WWW: http://search.cpan.org/dist/Filesys-Notify-KQueue/
|
| |
|
|
|
|
| |
- Fix LICENSE section
|
| |
|
| |
|
|
|
|
| |
Submitted by: Portsnap buildbox
|
|
|
|
| |
- Mark it as BROKEN, it doesn't build with WindowMaker 0.95.2
|
|
|
|
| |
bump revision to chase shared library version.
|
|
|
|
|
|
| |
- Bump PORTREVISION
Reported by: ph (via pav)
|
|
|
|
| |
- Remove unrecognized configure arg
|
|
|
|
| |
Reported by: pointyhat
|
|
|
|
|
| |
PR: ports/165671
Submitted by: jgh
|
| |
|
| |
|
|
|
|
| |
- Use shebang more suitable for FreeBSD
|
|
|
|
|
|
| |
Changes: http://pauillac.inria.fr/~ddr/camlp5/CHANGES
PR: ports/165704
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
|
|
|
|
|
|
|
| |
- Add TEST_DEPENDS
PR: ports/165242
Approved by: maintainer timeout (skv, > 2 weeks)
|
|
|
|
|
|
|
|
| |
- Add TEST_DEPENDS
- Bump PORTREVISION
PR: ports/165241
Approved by: maintainer timeout (clsung, > 2 weeks)
|
|
|
|
|
|
|
|
| |
- Move some test only DEPENDS to TEST_DEPENDS
- Sort DEPENDS
PR: ports/165237
Approved by: maintainer timeout (clsung, > 2 weeks)
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
- Sort DEPENDS
- Expand BUILD_DEPENDS before assigning to RUN_DEPENDS
PR: ports/165219
Approved by: maintainer timeout (kuriyama, > 2 weeks)
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/165184
Approved by: maintainer timeout (clsung, > 2 weeks)
|
|
|
|
|
|
|
| |
- Set expiration to one month from today
PR: ports/165183
Approved by: maintainer timeout (skv, > 2 weeks)
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/165161
Approved by: maintainer timeout (lth, > 2 weeks)
|
|
|
|
|
|
|
| |
- Add missing DEPENDS
PR: ports/165150
Approved by: maintainer timeout (tolid@tolid.eu.org, > 2 weeks)
|
| |
|
|
|
|
|
|
|
| |
- Bump PORTREVISION due to new RUN_DEPENDS changing the package
PR: ports/165148
Approved by: maintainer timeout (tolid@tolid.eu.org, > 2 weeks)
|
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION due to new RUN_DEPENDS changing package
- Move test only dependencies to TEST_DEPENDS
Note: this still fails tests
PR: ports/164975
Approved by: maintainer timeout (clsung, > 2 weeks)
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
| |
PR: ports/165701
Notified by: makc
Submitted by: sunpoet (myself)
Approved by: Jason E. Hale <bsdkaffee@gmail.com> (maintainer)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Lexical::Import allows functions and other items, from a separate module, to be
imported into the lexical namespace (as implemented by Lexical::Var), when the
exporting module exports non-lexically to a package in the traditional manner.
This is a translation layer, to help code written in the new way to use modules
written in the old way.
A lexically-imported item takes effect from the end of the definition statement
up to the end of the immediately enclosing block, except where it is shadowed
within a nested block. This is the same lexical scoping that the my, our, and
state keywords supply. Within its scope, any use of the single-part name of the
item (e.g., "$foo") refers directly to that item, regardless of what is in any
package. Explicitly package-qualified names (e.g., "$main::foo") still refer to
the package. There is no conflict between a lexical name definition and the same
name in any package.
This mechanism only works on Perl 5.11.2 and later. Prior to that, it is
impossible for lexical subroutine imports to work for bareword subroutine calls.
(See "BUGS" in Lexical::Var for details.) Other kinds of lexical importing are
possible on earlier Perls, but because this is such a critical kind of usage in
most code, this module will ensure that it works, for convenience. If the
limited lexical importing is desired on earlier Perls, use Lexical::Var
directly.
WWW: http://search.cpan.org/dist/Lexical-Import/
|
| |
|
|
|
|
| |
Feature safe: yes
|
| |
|
|
|
|
|
| |
PR: 165348
Submitted by: Pedro Giffuni <giffunip@tutopia.com>
|
|
|
|
| |
Submitted by: Volker <volker@vwsoft.com>
|
|
|
|
| |
Reported by: Cameron Jacobson <cjacobson@starpoundtech.com>
|
| |
|
| |
|
|
|
|
| |
Approved by: eadler (mentor)
|
|
|
|
|
|
|
|
|
|
| |
Also build and install the dma-mbox-create tool, which sets permissions and uid/gid on /var/mail files as needed by dma.
Changes:
Adds maasquerading support
PR: ports/165697
Submitted by: bz
|
|
|
|
|
|
| |
PR: ports/165696
Submitted by: Lowell Gilbert <lgfbsd@be-well.ilk.org> (maintainer)
Approved by: glarkin@ (mentor, implicit)
|
|
|
|
|
|
| |
Also remove the SESAME2 option: the sesame2 backend has not been
maintained upstream for years, so enabling it would only cause us,
users and upstream headaches.
|
|
|
|
|
|
|
| |
Can't locate ExtUtils/Depends.pm in @INC (@INC contains: [..]
BEGIN failed--compilation aborted at ./Makefile.PL line 3.
Reported by: pointyhat
|
|
|
|
|
|
|
| |
Thanks for your idea!
PR: ports/165265
Submitted by: Ben Morrow <ben@morrow.me.uk>
|
|
|
|
|
|
| |
- fix arbitrary code execution (CVE-2012-0920)
Approved by: eadler (mentor)
|
|
|
|
|
|
| |
- Fix docs for 90 and 91-- as of 9+ the docs require building
Discussed with: girgen
|
|
|
|
| |
Submitted by: avg (office@ mailing list)
|
|
|
|
|
|
|
|
|
| |
- Leave "#foo" file in place so that tests pass
Note: passes tests now
PR: ports/164973
Approved by: maintainer timeout (kuriyama, > 2 weeks)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Include LICENSE_FILE and LICENSE_GROUPS in the regexp check. [1]
* Add LICENSE_DISTFILES. [1]
* Add a check for the reassignment of ECHO_MSG [2]
* Remove old X.Org checks [3]
* Add PROJECTHOST to the PORTNAME section [4]
Reminded by: Jan Beich <jbeich@tormail.net> [1]
Requested by: jgh [2]
Submitted by: eadler [3]
Alex Kozlov <spam@rm-rf.kiev.ua> [3]
|
|
|
|
|
| |
PR: ports/165124
Approved by: maintainer timeout (coryking@mozimedia.com, > 2 weeks)
|
|
|
|
|
|
|
|
| |
- Remove SITE_PERL from DEPENDS
- Add TEST_DEPENDS
PR: ports/165123
Approved by: maintainer timeout (gslin@gslin.org, > 2 weeks)
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/165112
Approved by: maintainer timeout (kuriyama, >2 weeks)
|
|
|
|
| |
at least in some environments. Still under investigation upstream.
|
|
|
|
|
| |
PR: ports/165265
Submitted by: Ben Morrow <ben@morrow.me.uk>
|
| |
|
|
|
|
| |
WWW: http://www.kawa.net/works/ajax/ajaxzip2/ajaxzip2.html
|
|
|
|
| |
WWW: http://www.kawa.net/works/ajax/ajaxzip2/ajaxzip2.html
|
|
|
|
|
|
| |
- Bump PORTREVISION
Approved by: gnome (kwm via irc)
|
| |
|
| |
|
|
|
|
|
| |
PR: 165443
Submitted by: maintainer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes include:
* Support for MSP430-JTAG-ISO on platforms other than Linux, via
both serial drivers and raw USB access.
* Support for new chips: MSP430F5342, MSP430F5329, MSP430F2418,
* MSP430F2121, MSP430F2012, MSP430F449.
* Fixed support for later-model MSP430-JTAG-TINY rev 2.
* Fixed output buffering to allow correct interaction with
Eclipse plugins.
* Support for raw USB access to FET430UIF and eZ430-F2013.
* GDB protocol bug fixes.
* Section names are displayed when programming.
PR: 165682
Submitted by: Peter Jeremy <peterjeremy@acm.org> (maintainer)
|
|
|
|
| |
PR: 164418
|
|
|
|
|
|
|
|
|
|
| |
from the command line. It is meant as a library of scripts to be used by
more specific automated systems management scripts.
WWW: http://acadix.biz/auto-admin.php
PR: ports/165674
Submitted by: Jason Bacon <jwbacon@tds.net>
|
|
|
|
|
| |
PR: 164857
Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com> (maintainer)
|
|
|
|
|
| |
PR: 164855
Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com>
|
|
|
|
|
|
|
|
|
| |
- Move to USE_GZIP
- Pass maintainership to submitter
PR: 164540
Submitted by: Yuri Pankov <yuri.pankov@gmail.com>
Approved by: maintainer
|
|
|
|
|
| |
PR: 164856
Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com> (maintainer)
|
|
|
|
|
| |
PR: 164665
Submitted by: maintainer
|
|
|
|
|
| |
PR: 163655
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
| |
Changes: http://search.cpan.org/dist/CPAN-Meta/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Test-Spec/Changes
|
|
|
|
|
|
| |
- Add BUILD_DEPENDS
Changes: http://search.cpan.org/dist/MooseX-MetaDescription/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Class-DBI-Lite/Changes
|
|
|
|
|
|
|
| |
- Use TEST_DEPENDS
- Sort PLIST
Changes: http://search.cpan.org/dist/Ima-DBI-Contextual/Changes
|
|
|
|
|
|
|
|
|
| |
- Pet portlint
PR: ports/165683
Notified by: makc
Submitted by: sunpoet (myself)
Approved by: Jason E. Hale <bsdkaffee@gmail.com> (maintainer)
|
|
|
|
|
|
| |
PR: ports/164963
Submitted by: John Hein <jhein@symmetricom.com>
Approved by: maintainer
|
|
|
|
|
|
|
|
|
|
|
| |
and generates Ruby code. Almost all functions of yacc(1) is
implemented.
Author: Minero Aoki <aamine@loveruby.net>
WWW: http://rubyforge.org/frs/?group_id=7299
PR: ports/164842
Submitted by: Shin-ya MURAKAMI <murashin@gfd-dennou.org>
|
|
|
|
|
|
|
|
| |
- No PORTREVISION bump
PR: ports/165670
Submitted by: scheidell (me)
Approved by: Alex Samorukov <samm@os2.kiev.ua> (maintainer), gabor (mentor, implicit)
|
|
|
|
|
|
|
|
|
|
| |
Change initialize() routine to call getuid() to ensure the program is being
run as root before trying to call rtprio(). This allows the program to
be run by a non-privileged user in a jail(8) environment.
PR: ports/165681
Submitted by: Conrad J. Sabatier <conrads@cox.net> (maintainer)
Submitted by: Marco Steinbach <coco@executive-computing.de>
|
|
|
|
|
|
|
| |
- Added LICENSE information
PR: ports/165447
Submitted by: rea@
|
|
|
|
|
|
|
|
| |
PIC is already detected by libtool.
PR: ports/164906
Submitted by: Jan Beich, bf
Approved by: maintainer timeout
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
PR: 164664
Submitted by: maintainer
|
|
|
|
|
|
|
| |
- Pass maintainership to submitter
PR: 165656
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add patch for vendor issues:
#22100 segfault on shutdown when using multiple repositories
#15505 warning on errors
#59976 svn build fails on PHP5.4
#60583 compile failing due to missing definition of svn_version_t in newer
releases of libsvn
PR: 165524
Submitted by: mm@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add LICENSE section
* Add CONFLICTS with japanese/mailman
* Make use of SUB_FILES
* Make use of PORTDOCS
* Apply simple use of OPTIONS
* Add WITHOUT_NLS knob to make portlint happier
* Append "MTA = 'Postfix'" to mm_cfg.py.dist.in when defined
both WITH_POSTFIX and WITH_INTEGRATION at the same time [3]
* Bump PORTREVISION
- japanese/mailman [2]
* Switch to Japanized mailman 2.1.14+j7 based on mail/mailman
* Take maintainership
* Add CONFLICTS with mail/mailman
* Update pkg-descr
* Set PORTEPOCH because 2.1.14.j7 is less than 2.1.14_6
PR: ports/165404 (based on) [1], ports/165403 [2]
Submitted by: tota (myself) [1] [2]
Suggested by: Yoshito Takeuchi [3]
Approved by: Sunagawa Koji (maintainer) [2]
Dedicated to: Tokio Kikuchi
|
|
|
|
|
| |
PR: 165571
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 164988
Submitted by: Ports Fury
|
|
|
|
|
| |
PR: 165570
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165572
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165572
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165563
Submitted by: swills@
|
|
|
|
|
| |
PR: 165445
Submitted by: Matthew D.Fuller <fullermd@over-yonder.net> (maintainer)
|
|
|
|
|
| |
PR: 164995
Submitted by: Ports Fury
|
|
|
|
|
| |
PR: 165617
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165486
Submitted by: Jase Thew <freebsd@beardz.net>
|
|
|
|
|
| |
PR: 165616
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165614
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
| |
PR: 165615
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
| |
Approved by: maintainer
|
|
|
|
| |
Approved by: eadler (mentor)
|
|
|
|
|
|
|
| |
- update whitelists
- merge nonstandard pkg-* check to nonstandard files
Approved by: eadler (mentor)
|
| |
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
coincides with the GCC 4.6.3 release.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
PR: ports/165652
Submitted by: maintainer, jason.harmening@gmail.com
Add Linux /dev/radio support
Add support for Hauppauge WinTV PCI-FM
Add support for ATI HDTV Wonder
|
|
|
|
|
| |
PR: ports/165646
Submitted by: maintainer, jason.harmening@gmail.com
|
| |
|
|
|
|
|
|
| |
2011-11-26 net/p5-Net-Subnets: Disappeared from CPAN
Approved by: maintainer (implicit)
|
|
|
|
| |
Approved by: maintainer (implicit)
|
|
|
|
|
| |
PR: ports/165649
Submitted by: maintainer, freebsd@beardz.net
|
| |
|
| |
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
| |
WWW: http://search.cpan.org/dist/Test-Classy/
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The caching method is determined automatically from the list of supported cache
backends: APC, XCache, eAccelerator, local file system.
|
|
|
|
|
|
|
| |
- Add TEST_DEPENDS
PR: 165109
Submitted by: swills@
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Changelog at <https://raw.github.com/neubot/neubot/0.4.9/ChangeLog>.
|
|
|
|
| |
Approved by: eadler (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- If applicable, use CVS/Repository as the source of the port's
directory name,
- else try to fall back to the basename of the working directory
if the PORTNAME heuristic fails.
- The patches also fix
<http://sourceforge.net/support/tracker.php?aid=1969774>.
- Add CVSauto as a new diff mode:
- Handle added/deleted files without having to cvs add/delete them.
- Works with :pserver:anoncvs@anoncvs.fr.freebsd.org.
- When submitting you're asked to use "port submit -L" if files are
added or deleted, because that's FATAL for portlint.
- Don't use the full path of the working directory in diffs.
- Include a port's PORTEPOCH in update mode in the generated PR.
- To aid in debugging porttools include this information in the PR:
- porttools' PORTREVISION and PORTEPOCH (if defined),
- submit and diff mode used by the submitter.
- Bump PORTREVISION.
- Pass maintainership to submitter
PR: ports/139872
Submitted by: Johannes 5 Joemann <joemann@beefree.free.de>
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/164029
Submitted by: Jan Henrik Sylvester <me@janh.de>
Reviewed by: Rob Farmer <rfarmer@predatorlabs.net> (maintainer)
Approved by: gabor (mentor, implicit)
|
|
|
|
|
|
|
|
|
| |
to the standard "make readmes" for building the README.html files for the
FreeBSD Ports Collection, building the files in a fraction of the time of the
standard method.
PR: ports/165631
Submitted by: Conrad J. Sabatier <conrads@cox.net>
|
|
|
|
|
|
|
|
| |
- Hand maintainership to submitter
- Add USE_GETTEXT, port has translations
PR: ports/165621
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
|
|
|
| |
PR: ports/165627
Submitted by: sunpoet@
|
|
|
|
|
|
|
| |
- Hand maintainership to submitter
PR: ports/165620
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
|
|
|
|
|
| |
math/fftw3 is only needed for the test suite; audio/libsndfile
is only needed for an example program and the test suite;
respect NOPORTEXAMPLES; don't build the docs if NOPORTDOCS is
defined; provide a test target; shorten a long line
|
| |
|
|
|
|
|
| |
service providers. Includes drivers for WeatherUnderground, WorldWeatherOnline
and Google Weather.
|
| |
|
| |
|
|
|
|
| |
Changes: http://curl.haxx.se/changes.html
|
|
|
|
| |
Changes: http://search.cpan.org/dist/JavaScript-Packer/Changes
|
|
|
|
| |
Changes: http://people.FreeBSD.org/~sunpoet/pciids-20120227.diff
|
|
|
|
| |
Changes: http://search.cpan.org/dist/IO-Async/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/CGI-Ex/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Custom/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/CPAN-Meta/Changes
|
|
|
|
|
|
|
|
| |
Mu is the mail indexer that uses Xapian as the search engine.
In my tests it is blazingly fast, at least 5 times faster
than nmzmail and it understands cyrillic ;))
QA page: http://codelabs.ru/fbsd/ports/qa/mail/mu/0.9.8.1
|
|
|
|
| |
LTO option available.
|
|
|
|
|
| |
PR: ports/161871
Submitted by: "Edward.Sanford.Sutton, III" <mirror176@cox.net>
|
|
|
|
|
|
| |
Note: this still fails tests
Approved by: portmgr (blanket)
|
|
|
|
|
|
| |
Note: This still fails tests
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
| |
PR: ports/165625
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Approved by: gabor (mentor, implicit)
Obtained from: http://cristal.inria.fr/~ddr/camlp5/
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Approved by: eadler (mentor)
|
|
|
|
|
|
|
|
|
|
| |
- changes:
* pkg info -R now show a full yaml (script, options, users and groups were missing in previous versions)
* new pkg query -e <evalutaion> <query-format> to be able to query packages base on boolean expression matching content of the package
* pkg check now works like other subcommand: -a for all, -gxX for (glob, regex, eregex)
* pkg check is now able to check the file checksum and print what has been modified since package installation (-s option)
* pkg check is now able to recompute the flatsize (-r) this can fix the flatsize of packages installed with version prior to beta7
* new pkg set currently can only be used to manually mark package as automatically installed or not
|
| |
|
| |
|
|
|
|
| |
Reported by: pointyhat
|
|
|
|
|
|
| |
install: /usr/ports/security/nacl/work/nacl-20110221/build/jail-31/bin/nacl-sha256: No such file or directory
Reported by: pointyhat
|
|
|
|
|
|
| |
ec_send.c:37:23: error: pcap/pcap.h: No such file or directory
Reported by: pointyhat
|
|
|
|
|
| |
Reported by: pointyhat
Pointy hat to: glewis
|
|
|
|
| |
PR: ports/165613
|
|
|
|
|
|
| |
PR: ports/165613
Submitted by: andrej.zverev@gmail.com
Approved by: maintainer
|
| |
|
|
|
|
|
| |
Requested by: ume
Pointy hat to: pav
|
|
|
|
|
| |
CPU speed on FreeBSD by reading the hw.clockrate sysctl instead of
one that is not always present.
|
|
|
|
| |
Approved by: glarkin@ (mentor, implicit)
|
|
|
|
| |
the ac_cv_c_inline_asm=no fix that seemed no longer to be necessary.
|
|
|
|
|
|
|
| |
points to the correct file and there is no reason trying to protect the link as
it would be deleted on deinstall anyway.
Suggested by: dougb
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Use strncpy for COMM_LEN and make it 18 characters to cover brackets
in name.
* don't change COMM_LEN, it breaks matching long commands
Debian #661145
* Enable some harden AM_CFLAGS by default, use configure option
--disable-harden-flags to not use it.
PR: ports/165607
Submitted by: maintainer, douglas@douglasthrift.net
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Mac OS X keyring backend now uses subprocess calls to the `security`
command instead of calling the API, which with the latest updates, no
longer allows Python to invoke from a virtualenv. Fixes issue #13.
* When using file-based storage, the keyring files are no longer stored
in the user's home directory, but are instead stored in platform-friendly
locations (`%localappdata%\Python Keyring` on Windows and according to
the freedesktop.org Base Dir Specification
(`$XDG_DATA_HOME/python_keyring` or `$HOME/.local/share/python_keyring`)
on other operating systems). This fixes #21.
*Backward Compatibility Notice*
Due to the new storage location for file-based keyrings, keyring 0.8
supports backward compatibility by automatically moving the password
files to the updated location. In general, users can upgrade to 0.8 and
continue to operate normally. Any applications that customize the storage
location or make assumptions about the storage location will need to take
this change into consideration. Additionally, after upgrading to 0.8,
it is not possible to downgrade to 0.7 without manually moving
configuration files. In 1.0, the backward compatibilty
will be removed.
PR: ports/165606
Submitted by: maintainer, douglas@douglasthrift.net
|
|
|
|
|
|
|
|
|
|
| |
- while here loop on install of man pages
Changed qjail to work with new path and single base
file install format now used in 9.0.
PR: ports/165603
Submitted by: maintainer, qjail@a1poweruser.com
|
|
|
|
|
| |
PR: ports/165629
Submitted by: gjb@ (maintainer)
|
|
|
|
| |
Obtained from: decke (via irc)
|
|
|
|
|
| |
PR: ports/165580
Submitted by: Jyun-Yan You <jyyou@cs.nctu.edu.tw> (maintainer)
|
|
|
|
| |
Release notes: http://www.kitware.com/news/home/browse/394
|
|
|
|
|
|
|
|
| |
- Pet portlint(1) by moving LICENSE section earlier
Changes: http://cristal.inria.fr/~ddr/ledit/CHANGES
PR: ports/165626
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
|
|
|
|
|
|
| |
PR: ports/165608
Submitted by: pgollucci
Approved by: portmgr (hat)
|
| |
|
|
|
|
|
|
| |
since FreeBSD 7.0-RELEASE
Ok'ed by: flz (maintainer)
|
|
|
|
|
| |
PR: ports/165592
Submitted by: Kirk Strauser <kirk@strauser.com> (maintainer)
|
|
|
|
|
|
|
| |
Pass maintainership to submitter
PR: ports/165531
Submitted by: Muhammad Moinur Rahman <5u623l20 at gmail.com>
|
|
|
|
| |
Reformat description
|
|
|
|
|
| |
PR: ports/165619
Reported by: Tsurutani Naoki <turutani at scphys.kyoto-u.ac.jp>
|
|
|
|
|
|
|
|
|
|
| |
built with clang
Also reported and comitted upstream (https://svn.boost.org/trac/boost/ticket/6636 thanks dim@)
PR: ports/165567
Submitted by: bapt@ (myself)
Approved by: Alexander Churanov <alexanderchuranov@gmail.com> (maintainer) miwi@ (responsible of the PR)
|
|
|
|
|
|
| |
- Pet portlint
Changes: http://search.cpan.org/dist/Pod-Simple/ChangeLog
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Contextual-Return/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Params-Util/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Config-Model/ChangeLog
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Test-Trap/Changes
|
|
|
|
| |
Changes: http://repo.or.cz/w/quvi-tool.git/blob/HEAD:/NEWS
|
|
|
|
| |
Changes: http://repo.or.cz/w/libquvi-scripts.git/blob/HEAD:/NEWS
|
|
|
|
|
| |
Zfec is a fast erasure codec which can be used with the command-line,
C, Python, or Haskell.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Foolscap is an RPC protocol for Python+Twisted, providing a
capability-based security model and flexible serialization.
|
|
|
|
|
| |
PR: ports/165578
Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
|
|
|
|
|
|
| |
PR: ports/165598
Submitted by: 4721@hushmail.com
Reviewed by: Corey Halpin <chalpin@cs.wisc.edu> (maintainer)
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Audio-MPD/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Audio-MPD-Common/Changes
|
|
|
|
|
|
|
|
|
|
|
| |
- GEMS_DOC_DIR does not exist if NOPORTDOCS is set
- 4 entries in PLIST are no-op
They are equivalent to the TMPPLIST manipulation in post-patch:
They should occur after the entries of doc files
PR: ports/165554
Submitted by: sunpoet (myself)
Approved by: swills (with ruby hat)
|
|
|
|
|
|
|
|
| |
application
PR: ports/165468
Submitted by: Doug Penner <darwinsurvivor@gmail.com>
Approved by: gabor (mentor, implicit)
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
| |
- Add TEST_DEPENDS to enable testing
Approved by: portmgr (blanket)
|
|
|
|
|
|
| |
PR: ports/165398
Submitted by: Radim Kolar <hsn@sendmail.cz>
Approved by: dan@langille.org (maintainer), gabor (mentor, implicit)
|
| |
|
|
|
|
|
| |
PR: ports/164832
Submitted by: RyoTa SimaMoto <liangtai.s4@gmail.com> (maintainer)
|
|
|
|
|
|
|
|
|
|
|
| |
it takes to read an input buffer and write an output buffer. Statistics of
average throughput and the total amount of bytes copied are printed to the
standard error output.
WWW: http://developer.berlios.de/projects/cpipe/
PR: ports/165593
Submitted by: "Christopher J. Umina" <chris@uminac.com>
|