Commit graph

179 commits

Author SHA1 Message Date
Jason W. Bacon
69f9d7e451 biology/rainbow: Efficient clustering and assembling of short reads
Approved by:    jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D14924
2018-04-02 16:50:46 +00:00
Jason W. Bacon
56d5a1146f biology/stacks: Software pipeline for building loci from short-read sequences
Reviewed by:    mat
Approved by:    jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D14885
2018-03-31 13:16:05 +00:00
Jason W. Bacon
2a40ae35e7 biology/bamtools: API and toolkit for handling BAM files
Approved by:    jrm
Differential Revision:  https://reviews.freebsd.org/D14877
2018-03-28 13:26:31 +00:00
Jason W. Bacon
302f405a84 [new port] biology/canu: Single molecule sequence assembler
Approved by: jrm (mentor) or wen (mentor)
Differential Revision:  https://reviews.freebsd.org/D13574
2017-12-22 01:30:26 +00:00
Jason W. Bacon
7b14021ad6 [new port] biology/p5-TrimGalore: Wrapper around Cutadapt and FastQC for adapter and quality trimming
Approved by: jrm (mentor)
Differential Revision:	D13400
2017-12-09 13:23:32 +00:00
Jason W. Bacon
9956039fdd [new port] biology/py-macs2: Analysis of chromatin immunoprecipitation (ChIP) sequences
Approved by: jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D13322
2017-12-02 20:46:28 +00:00
Jason W. Bacon
429caa13b5 [new port] biology/kallisto: Quantify abundances of transcripts from RNA-Seq data
Approved by: jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D13328
2017-12-02 20:44:28 +00:00
Jason W. Bacon
eb53d36e45 [new port] biology/fastqc: Quality control tool for high throughput sequence data
Approved by: jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D13304
2017-11-30 22:54:29 +00:00
Jason W. Bacon
0b07bc6a59 [new port] biology/py-cutadapt: Finds and removes adapter sequences, primers, po
ly-A tails, etc
Approved by: jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D13294
2017-11-29 22:17:43 +00:00
Joseph Mingrone
1027ca2f40 New port, biology/iqtree: Efficient phylogenomic software
WWW: http://www.iqtree.org/
2017-10-21 16:57:53 +00:00
Sunpoet Po-Chuan Hsieh
ef8d7d7d98 Add p5-Bio-FeatureIO 1.6.905
Bio::FeatureIO is an iterator subsystem for genomic sequence features.

Bio::FeatureIO is a handler module for the formats in the FeatureIO set (eg,
Bio::FeatureIO::GFF). It is the officially sanctioned way of getting at the
format objects, which most people should use.

The Bio::FeatureIO system can be thought of like biological file handles. They
are attached to filehandles with smart formatting rules (eg, GFF format, or BED
format) and can either read or write feature objects (Bio::SeqFeature objects,
or more correctly, Bio::FeatureHolderI implementing objects, of which
Bio::SeqFeature is one such object). If you want to know what to do with a
Bio::SeqFeatureI object, read Bio::SeqFeatureI.

The idea is that you request a stream object for a particular format. All the
stream objects have a notion of an internal file that is read from or written
to. A particular FeatureIO object instance is configured for either input or
output. A specific example of a stream object is the Bio::FeatureIO::gff object.

WWW: http://search.cpan.org/dist/Bio-FeatureIO/
2017-09-15 19:17:17 +00:00
Rene Ladan
a91d5178df Remove expired ports:
2017-08-23 games/plee-the-bear: Broken for more than 6 months
2017-08-23 x11-themes/kde-icons-umicons: Broken for more than 6 months
2017-08-23 lang/bigloo: Broken for more than 6 months
2017-08-23 audio/linux-neroaaccodec: Broken for more than 6 months
2017-08-23 x11-themes/kde-icons-dark-glass: Broken for more than 6 months
2017-08-23 misc/fortune-mod-ferengi_rules_of_acquisition: Broken for more than 6 months
2017-08-23 misc/fortune-mod-culmea-culmilor: Broken for more than 6 months
2017-08-23 misc/xyzcmd: Broken for more than 6 months
2017-08-23 russian/fortuneru: Broken for more than 6 months
2017-08-23 security/bdc: Broken for more than 6 months
2017-08-23 x11-themes/kde-icons-icosx: Broken for more than 6 months
2017-08-23 devel/insight: Broken for more than 6 months
2017-08-23 devel/gdb66: Broken for more than 6 months
2017-08-23 biology/biojava: Broken for more than 6 months
2017-08-23 games/xroach: Broken for more than 6 months
2017-08-23 11:33:26 +00:00
Martin Wilke
177c8291a7 bx-python is a python library and associated set of scripts to allow for rapid
implementation of genome scale analyses. The library contains a variety of
useful modules, but the particular strengths are:

Classes for reading and working with genome-scale multiple local alignments
(in MAF, AXT, and LAV formats). Generic data structure for indexing on disk
files that contain blocks of data associated with intervals on various
sequences (used, for example, to provide random access to individual
alignments in huge files; optomized for use over network filesystems).
Data structures for working with intervals on sequences:
 * "Binned bitsets" which act just like chromosome sized bit arrays,
   but lazily allocate regions and allow large blocks of all set or
   all unset bits to be stored compactly
 * "Intersecter" for performing fast intersection tests that preserve
   both query and target intervals and associated annotation

WWW: https://github.com/bxlab/bx-python

PR:		218757
Submitted by:	Yuri Victorovich <yuri@rawbw.com>
2017-05-06 06:07:03 +00:00
Martin Wilke
9ca211c1ff pysam is a lightweight wrapper of the htslib C-API and provides facilities to
read and write SAM/BAM/VCF/BCF/BED/GFF/GTF/FASTA/FASTQ files as well as access
to the command line functionality of the samtools and bcftools packages. The
module supports compression and random access through indexing.

This module provides a low-level wrapper around the htslib C-API as using
cython and a high-level API for convenient access to the data within standard
genomic file formats.

WWW: https://pypi.python.org/pypi/pysam

PR:		218745
Submitted by:	Yuri Victorovich <yuri@rawbw.com>
2017-05-06 06:05:24 +00:00
Larry Rosenman
6840168813 2017-04-30 devel/stormlib-ghost++: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/py-coil: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/py-cmdln: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/privman: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/c-unit: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/py-px: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/nglogc: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/bncsutil-ghost++: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/liblouisxml: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/nxt-python: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/spdict: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/guiloader-c++: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/streamhtmlparser: Unfetchable for more than six months (google code has gone away)
2017-04-30 devel/winpdb: Unfetchable for more than six months (google code has gone away)
2017-04-30 net/opendpi: Unfetchable for more than six months (google code has gone away)
2017-04-30 net/py-pybeanstalk: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/qwit: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/linux-instantbird: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/jabber-pyicq: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/qwit-devel: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/naim: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-im/pwytter: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/sievelog: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/ldapenter: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/py-danzfs: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/plasma-applet-apcups: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/scanmem: Unfetchable for more than six months (google code has gone away)
2017-04-30 sysutils/pdsh: Unfetchable for more than six months (google code has gone away)
2017-04-30 deskutils/superswitcher: Unfetchable for more than six months (google code has gone away)
2017-04-30 deskutils/plasma-applet-playwolf: Unfetchable for more than six months (google code has gone away)
2017-04-30 deskutils/nagaina: Unfetchable for more than six months (google code has gone away)
2017-04-30 deskutils/vboxgtk: Unfetchable for more than six months (google code has gone away)
2017-04-30 deskutils/libgcal: Unfetchable for more than six months (google code has gone away)
2017-04-30 math/carve: Unfetchable for more than six months (google code has gone away)
2017-04-30 math/foma: Unfetchable for more than six months (google code has gone away)
2017-04-30 math/libjbigi: Unfetchable for more than six months (google code has gone away)
2017-04-30 multimedia/gcap: Unfetchable for more than six months (google code has gone away)
2017-04-30 multimedia/freetuxtv: Unfetchable for more than six months (google code has gone away)
2017-04-30 multimedia/bangarang: Unfetchable for more than six months (google code has gone away)
2017-04-30 multimedia/opencinematools: Unfetchable for more than six months (google code has gone away)
2017-04-30 multimedia/vstream-client: Unfetchable for more than six months (google code has gone away)
2017-04-30 biology/treeviewx: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/pylot: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/xpi-pencil: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_myvhost: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/feedonfeeds: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_jail: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/jspacker: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/cocoon: Overly complex port with no maintainer since 2008, requires openjdk 1.6
2017-04-30 www/mod_authz_unixgroup24: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/trac-down: Upstream is gone
www/tengine
2017-04-30 www/arora: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/py-postmarkup: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/py-dotcloud.cli: deprecated in upstream
2017-04-30 www/closure-linter: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/httpsqs: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/sventon: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_authnz_external22: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_authn_otp: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/php-plurk-api: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/py-django-app-plugins: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_authz_unixgroup22: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/squidstats: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/mod_log_firstbyte: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/gaeo: Unfetchable for more than six months (google code has gone away)
2017-04-30 www/xpi-pentadactyl: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-mgmt/py-flowtools: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/ydict: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/py-cconv: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/fqterm: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/libgooglepinyin: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/p5-cconv: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/fcitx-googlepinyin: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/php-cconv: Unfetchable for more than six months (google code has gone away)
2017-04-30 chinese/ibus-table-chinese: Unfetchable for more than six months (google code has gone away)
2017-04-30 databases/jdbm2: Unfetchable for more than six months (google code has gone away)
2017-04-30 databases/akonadi-googledata: Unfetchable for more than six months (google code has gone away)
2017-04-30 lang/ofc: Unfetchable for more than six months (google code has gone away)
2017-04-30 comms/esmska: Unfetchable for more than six months (google code has gone away)
2017-04-30 x11/keynav: Unfetchable for more than six months (google code has gone away)
2017-04-30 x11/hotwire-shell: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/fuzzdb: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/truecrack: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/skipfish: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/py-yara-editor: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/nmapsi4: Unfetchable for more than six months (google code has gone away)
2017-04-30 security/cmd5checkpw: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-p2p/unworkable: Unfetchable for more than six months (google code has gone away)
2017-04-30 net-p2p/rtgui: Unfetchable for more than six months (google code has gone away)
2017-04-30 audio/xpi-musicpm: Unfetchable for more than six months (google code has gone away)
2017-04-30 audio/pidgin-musictracker: Unfetchable for more than six months (google code has gone away)
2017-04-30 audio/logitechmediaserver-superdatetime: Unfetchable for more than six months (google code has gone away)
2017-04-30 audio/last-cmus: Unfetchable for more than six months (google code has gone away)
2017-04-30 audio/mehdiaplayer: Unfetchable for more than six months (google code has gone away)
2017-04-30 japanese/nhocr: Unfetchable for more than six months (google code has gone away)
2017-04-30 misc/xsw: Unfetchable for more than six months (google code has gone away)
2017-04-30 dns/py-adns: Unfetchable for more than six months (google code has gone away)
2017-04-30 dns/py-bonjour: Unfetchable for more than six months (google code has gone away)
2017-04-30 games/robocalypto: Unfetchable for more than six months (google code has gone away)
2017-04-30 games/libfov: Unfetchable for more than six months (google code has gone away)
2017-04-30 games/dcross: Unfetchable for more than six months (google code has gone away)
2017-04-30 games/lostfeathers: Unfetchable for more than six months (google code has gone away)
2017-04-30 games/hexglass: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/ibus-table: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/chm2pdf: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/dtdinst: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/py-xmltv: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/ibus-m17n: Unfetchable for more than six months (google code has gone away)
2017-04-30 textproc/libroxml: Unfetchable for more than six months (google code has gone away)
2017-04-30 mail/gnome-gmail-notifier: Unfetchable for more than six months (google code has gone away)
2017-04-30 irc/py-gozerbot: Unfetchable for more than six months (google code has gone away)
2017-04-30 irc/tircd: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/qiviewer: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/py-gchartwrapper: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/svgfig: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/iulib: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/seam-carving-gui: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/py-pyggel: Unfetchable for more than six months (google code has gone away)
2017-04-30 graphics/rubygem-gemojione2: Use graphics/rubygem-gemojione instead
2017-04-30 15:47:51 +00:00
Sunpoet Po-Chuan Hsieh
238ff1a7ff Move devel/rubygem-bio to biology/rubygem-bio 2017-02-05 04:26:56 +00:00
Sunpoet Po-Chuan Hsieh
2b3263ca6a - Add p5-Bio-Coordinate 1.007001
Bio::Coordinate classes are used for working with various biological coordinate
systems. See Bio::Coordinate::Collection and Bio::Collection::Pair for examples.

WWW: http://search.cpan.org/dist/Bio-Coordinate/
2016-12-19 15:54:39 +00:00
Sunpoet Po-Chuan Hsieh
a17d97a2e6 - Move biology/p5-bioperl-run to biology/p5-BioPerl-Run
- Sort *_DEPENDS
- Add NO_ARCH
- Bump PORTREVISION for biology/p5-bioperl renaming
2016-12-18 15:25:44 +00:00
Sunpoet Po-Chuan Hsieh
99a028004e - Move biology/p5-bioperl to biology/p5-BioPerl
- Sort *_DEPENDS
- Bump PORTREVISION for dependent ports
2016-12-18 15:25:04 +00:00
Joseph Mingrone
a3fc357457 biology/njplot: Revive and update to version 2.4
Approved by:	AMDmi3 (mentor)
Differential Revision:	https://reviews.freebsd.org/D8518
2016-11-16 14:52:53 +00:00
Rene Ladan
19f31a471b Remove expired ports without open PRs:
2016-07-04 security/openpgpsdk: Broken for more than 6 months
2016-07-04 security/radiusniff: Broken for more than 6 months
2016-07-04 security/pear-Auth_OpenID: Broken for more than 6 months
2016-07-04 security/sshit: Broken for more than 6 months
2016-07-04 security/ifd-slb_rf60: Broken for more than 6 months
2016-07-04 security/rainbowcrack: Broken for more than 6 months
2016-07-04 security/vlog: Broken for more than 6 months
2016-07-04 security/cryptstring: Broken for more than 6 months
2016-07-04 x11/libdnd: Broken for more than 6 months
2016-07-04 x11/xlupe: Broken for more than 6 months
2016-07-04 x11/xco: Broken for more than 6 months
2016-07-04 x11/xclick: Broken for more than 6 months
2016-07-04 devel/ocfpcsc: Broken for more than 6 months
2016-07-04 devel/dits: Broken for more than 6 months
2016-07-04 devel/ruby-cache: Broken for more than 6 months
2016-07-04 devel/rapidsvn: Broken for more than 6 months
2016-07-04 devel/svnkit: Broken for more than 6 months
2016-07-04 devel/py-EnthoughtBase: Broken for more than 6 months
2016-07-04 devel/cl-uffi: Broken for more than 6 months
2016-07-04 devel/ruby-event-loop: Broken for more than 6 months
2016-07-04 devel/libqxt: Broken for more than 6 months
2016-07-04 devel/dasm: Broken for more than 6 months
2016-07-04 devel/libopendaap: Broken for more than 6 months
2016-07-04 devel/cl-uffi-sbcl: Depends on expiring devel/cl-uffi
2016-07-04 devel/cvs2p4: Broken for more than 6 months
2016-07-04 devel/bufferpool: Broken for more than 6 months
2016-07-04 devel/ifd-test: Broken for more than 6 months
2016-07-04 devel/eric4: Broken for more than 6 months
2016-07-04 devel/uclmmbase: Broken for more than 6 months
2016-07-04 devel/obfuscatejs: Broken for more than 6 months
2016-07-04 devel/oniguruma: Broken for more than 6 months
2016-07-04 devel/libbnr: Broken for more than 6 months
2016-07-04 devel/c4: Broken for more than 6 months
2016-07-04 devel/memcheck: Broken for more than 6 months
2016-07-04 devel/liblcfg: Broken for more than 6 months
2016-07-04 devel/omake: Broken for more than 6 months
2016-07-04 devel/svndelta: Broken for more than 6 months
2016-07-04 devel/papp: Broken for more than 6 months
2016-07-04 devel/mk: Broken for more than 6 months
2016-07-04 devel/avltree: Broken for more than 6 months
2016-07-04 devel/cbind: Broken for more than 6 months
2016-07-04 devel/tclgetopts: Broken for more than 6 months
2016-07-04 devel/antlrworks: Broken for more than 6 months
2016-07-04 devel/acme: Broken for more than 6 months
2016-07-04 devel/libopensync022: Broken for more than 6 months
2016-07-04 archivers/epkg: Broken for more than 6 months
2016-07-04 print/enscriptfonts: Broken for more than 6 months
2016-07-04 print/mup: Broken for more than 6 months
2016-07-04 lang/lua-mode.el: Broken for more than 6 months
2016-07-04 lang/s9fes: Broken for more than 6 months
2016-07-04 lang/alisp: Broken for more than 6 months
2016-07-04 lang/intel2gas: Broken for more than 6 months
2016-07-04 lang/stalin: Broken for more than 6 months
2016-07-04 french/eric4: Depends on expiring devel/eric4
2016-07-04 textproc/exslt: Broken for more than 6 months
2016-07-04 textproc/xt: Broken for more than 6 months
2016-07-04 textproc/ssddiff: Broken for more than 6 months
2016-07-04 textproc/xslint: Broken for more than 6 months
2016-07-04 textproc/cbedic: Broken for more than 6 months
2016-07-04 textproc/tralics: Broken for more than 6 months
2016-07-04 textproc/docbookide.el: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-AdditionalReports: Broken for more than 6 months
2016-07-04 textproc/tdhkit: Broken for more than 6 months
2016-07-04 textproc/p5-Groonga-API: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-DataInjection: Broken for more than 6 months
2016-07-04 dns/ldnsm: Broken for more than 6 months
2016-07-04 japanese/guesswork-classic: Broken for more than 6 months
2016-07-04 japanese/texinfo: Broken for more than 6 months
2016-07-04 japanese/jyuroku: Broken for more than 6 months
2016-07-04 japanese/mtools: Broken for more than 6 months
2016-07-04 palm/pdbar: Broken for more than 6 months
2016-07-04 graphics/gplot: Broken for more than 6 months
2016-07-04 graphics/white_dune: Broken for more than 6 months
2016-07-04 graphics/whirlgif: Broken for more than 6 months
2016-07-04 graphics/libaux: Broken for more than 6 months
2016-07-04 graphics/import-pictures: Broken for more than 6 months
2016-07-04 math/xgobi: Broken for more than 6 months
2016-07-04 math/fricas: Broken for more than 6 months
2016-07-04 math/dcdflib: Broken for more than 6 months
2016-07-04 math/libneural: Broken for more than 6 months
2016-07-04 math/open-axiom: Broken for more than 6 months
2016-07-04 irc/nefarious: Broken for more than 6 months
2016-07-04 irc/slirc: Broken for more than 6 months
2016-07-04 irc/ratbox-respond: Broken for more than 6 months
2016-07-04 irc/qwebirc: Broken for more than 6 months
2016-07-04 biology/platon: Broken for more than 6 months
2016-07-04 news/slnr: Broken for more than 6 months
2016-07-04 science/jmol: Broken for more than 6 months
2016-07-04 net/nstxd: Broken for more than 6 months
2016-07-04 net/sprinkle: Broken for more than 6 months
2016-07-04 editors/ssam: Broken for more than 6 months
2016-07-04 editors/fb: Broken for more than 6 months
2016-07-04 misc/quotes: Broken for more than 6 months
2016-07-04 misc/boxquote.el: Broken for more than 6 months
2016-07-04 misc/pypanda: Broken for more than 6 months
2016-07-04 misc/cuecat: Broken for more than 6 months
2016-07-04 deskutils/displaycalibrator: Broken for more than 6 months
2016-07-04 german/eric4: Depends on expiring devel/eric4
2016-07-04 multimedia/vic: Depends on expiring devel/uclmmbase
2016-07-04 multimedia/ggrab: Broken for more than 6 months
2016-07-04 emulators/dynamips: Broken for more than 6 months
2016-07-04 emulators/dynamips-devel: Broken for more than 6 months
2016-07-04 emulators/sim6811: Broken for more than 6 months
2016-07-04 emulators/minivmac: Broken for more than 6 months
2016-07-04 cad/qcad-partslib: Broken for more than 6 months
2016-07-04 comms/dump1090_mr: Broken for more than 6 months
2016-07-04 x11-fm/asfiles: Depends on expiring x11/libdnd
2016-07-04 x11-fonts/fonts-te: Broken for more than 6 months
2016-07-04 sysutils/rsyncmanager: Broken for more than 6 months
2016-07-04 sysutils/jfbterm: Broken for more than 6 months
2016-07-04 sysutils/daedalus: Broken for more than 6 months
2016-07-04 sysutils/pcfclock: Broken for more than 6 months
2016-07-04 sysutils/vlogger: Broken for more than 6 months
2016-07-04 sysutils/bontmia: Broken for more than 6 months
2016-07-04 mail/pop3gwd: Broken for more than 6 months
2016-07-04 mail/mailtray: Broken for more than 6 months
2016-07-04 mail/pflogstats: Broken for more than 6 months
2016-07-04 mail/exact: Broken for more than 6 months
2016-07-04 mail/wmpop3: Broken for more than 6 months
2016-07-04 mail/qmail-conf: Broken for more than 6 months
2016-07-04 mail/gld: Broken for more than 6 months
2016-07-04 mail/dsbl-testers: Broken for more than 6 months
2016-07-04 mail/vqregister: Broken for more than 6 months
2016-07-04 mail/atmail: Broken for more than 6 months
2016-07-04 mail/ml: Broken for more than 6 months
2016-07-04 net-im/icb: Broken for more than 6 months
2016-07-04 net-im/cicquin: Broken for more than 6 months
2016-07-04 net-im/pidgin-manualsize: Broken for more than 6 months
2016-07-04 net-im/pidgin-rhythmbox: Broken for more than 6 months
2016-07-04 russian/eric4: Depends on expiring devel/eric4
2016-07-04 russian/fortune-bashorgru: Broken for more than 6 months
2016-07-04 www/xpi-clearfields: Broken for more than 6 months
2016-07-04 www/pecl-varnish: Broken for more than 6 months
2016-07-04 www/py-requests-oauth-hook: Broken for more than 6 months
2016-07-04 www/hudson: Broken for more than 6 months
2016-07-04 www/xpi-mldonkey: Broken for more than 6 months
2016-07-04 www/xpi-cookiesafe: Broken for more than 6 months
2016-07-04 www/trac-mastertickets: Broken for more than 6 months
2016-07-04 www/dotclear: Broken for more than 6 months
2016-07-04 www/ruby-wgettsv: Broken for more than 6 months
2016-07-04 www/wwwstat: Broken for more than 6 months
2016-07-04 www/xpi-prism: Broken for more than 6 months
2016-07-04 www/xpi-fasterfox: Broken for more than 6 months
2016-07-04 www/siteframe: Broken for more than 6 months
2016-07-04 www/py-urljr: Broken for more than 6 months
2016-07-04 www/reviewboard: Broken for more than 6 months
2016-07-04 www/xpi-tabletools: Broken for more than 6 months
2016-07-04 www/wikindx: Broken for more than 6 months
2016-07-04 www/typolight: Broken for more than 6 months
2016-07-04 www/varnish-libvmod-header: Broken for more than 6 months
2016-07-04 www/xpi-gbrain: Broken for more than 6 months
2016-07-04 www/trac-robotstxt: Broken for more than 6 months
2016-07-04 www/simplog: Broken for more than 6 months
2016-07-04 www/chtml: Broken for more than 6 months
2016-07-04 databases/postgresql_autodoc: Broken for more than 6 months
2016-07-04 databases/oracle_odbc_driver: Broken for more than 6 months
2016-07-04 databases/mysql-xql: Broken for more than 6 months
2016-07-04 databases/mysql-udf-sys: Broken for more than 6 months
2016-07-04 games/lucidlife: Broken for more than 6 months
2016-07-04 games/gma: Broken for more than 6 months
2016-07-04 games/smiley: Broken for more than 6 months
2016-07-04 games/noegnud-littlehack: Broken for more than 6 months
2016-07-04 games/sdlquake2: Broken for more than 6 months
2016-07-04 games/daimonin: Depends on expiring games/daimonin-music
2016-07-04 games/noegnud-nethack: Broken for more than 6 months
2016-07-04 games/xbomber: Broken for more than 6 months
2016-07-04 games/xwelltris: Broken for more than 6 months
2016-07-04 games/ftjava: Broken for more than 6 months
2016-07-04 games/daimonin-music: Broken for more than 6 months
2016-07-04 games/gno3dtet: Broken for more than 6 months
2016-07-04 games/qtv: Broken for more than 6 months
2016-07-04 games/xwordpy: Broken for more than 6 months
2016-07-04 games/netris: Broken for more than 6 months
2016-07-04 games/rt2-demo: Broken for more than 6 months
2016-07-04 games/noegnud-addons: Broken for more than 6 months
2016-07-04 games/noegnud-nethack-deet: Broken for more than 6 months
2016-07-04 games/live-f1: Broken for more than 6 months
2016-07-04 games/xonix: Broken for more than 6 months
2016-07-04 games/fgkicker: Broken for more than 6 months
2016-07-04 games/tank: Depends on expiring graphics/libaux
2016-07-04 games/linux-nwserver: Broken for more than 6 months
2016-07-04 games/quake2-zaero: Broken for more than 6 months
2016-07-04 games/pyching: Broken for more than 6 months
2016-07-04 games/thevalley: Broken for more than 6 months
2016-07-04 games/xroads: Broken for more than 6 months
2016-07-04 games/fxsudoku: Broken for more than 6 months
2016-07-04 games/sudoku: Broken for more than 6 months
2016-07-04 games/kmancala: Broken for more than 6 months
2016-07-04 games/plonx: Broken for more than 6 months
2016-07-04 games/wmminichess: Broken for more than 6 months
2016-07-04 games/noegnud-slashem: Broken for more than 6 months
2016-07-04 games/latrine: Broken for more than 6 months
2016-07-04 games/pysycache-themes: Broken for more than 6 months
2016-07-04 games/nibbles: Broken for more than 6 months
2016-07-04 games/hlstatsx: Broken for more than 6 months
2016-07-04 audio/streamtuner: Broken for more than 6 months
2016-07-04 audio/mangler: Broken for more than 6 months
2016-07-04 audio/hawkvoice: Broken for more than 6 months
2016-07-04 audio/alac: Broken for more than 6 months
2016-07-04 x11-wm/e-module-mpdule: Broken for more than 6 months
2016-07-04 x11-wm/e-module-tclock: Broken for more than 6 months
2016-07-04 x11-wm/musca: Broken for more than 6 months
2016-07-04 x11-wm/e-module-places: Broken for more than 6 months
2016-07-04 x11-wm/e-module-forecasts: Broken for more than 6 months
2016-07-04 x11-wm/e-module-net: Broken for more than 6 months
2016-07-04 x11-wm/e-module-penguins: Broken for more than 6 months
2016-07-04 ftp/fget: Broken for more than 6 months
2016-07-04 net-mgmt/netmond: Broken for more than 6 months
2016-07-04 net-mgmt/ipfm: Broken for more than 6 months
2016-07-04 20:48:23 +00:00
Jason Unovitch
864e413d06 biology/seqan: update 1.3.1 -> 2.1.1
biology/seqan1: create port from current SeqAn 1.3.1 for legacy usage
UPDATING: document SeqAn updates and seqan1 port for legacy usage

PR:		204127
Submitted by:	Hannes Hauswedell <h2+fbsdports@fsfe.org>
2016-05-10 01:05:23 +00:00
Jason Unovitch
7a3991c9de New port: biology/seqan-apps
SeqAn is an open source C++ library of efficient algorithms
and data structures for the analysis of sequences with the
focus on biological data.

This port contains applications built on SeqAn and developed
within the SeqAn project. Among them are famous read mappers
like RazerS and Yara, as well as many other tools. Some
applications are packaged seperately and the library
can be found at biology/seqan.

WWW: http://www.seqan.de/

PR:		204127
Submitted by:	Hannes Hauswedell <h2+fbsdports@fsfe.org>
2016-05-10 00:52:04 +00:00
Olivier Duchateau
0eea70a2a0 The BIOM file format (canonically pronounced biome) is designed to be a
general-use format for representing biological sample by observation contingency
tables. BIOM is a recognized standard for the Earth Microbiome Project and is a
Genomics Standards Consortium supported project.

The BIOM format is designed for general use in broad areas of comparative
-omics. For example, in marker-gene surveys, the primary use of this format is
to represent OTU tables: the observations in this case are OTUs and the matrix
contains counts corresponding to the number of times each OTU is observed in
each sample. With respect to metagenome data, this format would be used to
represent metagenome tables: the observations in this case might correspond to
SEED subsystems, and the matrix would contain counts corresponding to the number
of times each subsystem is observed in each metagenome. Similarly, with respect
to genome data, this format may be used to represent a set of genomes: the
observations in this case again might correspond to SEED subsystems, and the
counts would correspond to the number of times each subsystem is observed in
each genome.

WWW: http://biom-format.org/

PR:		209193
Submitted by:	Joseph Mingrone
2016-05-09 16:37:44 +00:00
Wen Heping
ec07b546cf DNA query sequences against a protein reference database (BLASTP and BLASTX
alignment mode). The speedup over BLAST is up to 20,000 on short reads at a
typical sensitivity of 90-99% relative to BLAST depending on the data and
settings.

WWW: http://ab.inf.uni-tuebingen.de/software/diamond/

PR:		208998
Submitted by:	jrm@ftfl.ca
2016-05-06 08:45:02 +00:00
Dmitry Marakasov
ee6e0c4336 Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA.
A k-mer is a substring of length k, and counting the occurrences of all such
substrings is a central step in many analyses of DNA sequence. JELLYFISH can
count k-mers quickly by using an efficient encoding of a hash table and by
exploiting the "compare-and-swap" CPU instruction to increase parallelism.

WWW: http://www.genome.umd.edu/jellyfish.html

PR:		207929
Submitted by:	bacon4000@gmail.com
2016-03-24 13:53:06 +00:00
Raphael Kubo da Costa
bc3c1d13d6 New port: biology/bowtie2.
Bowtie is an ultrafast, memory-efficient short read aligner. It aligns short
DNA sequences (reads) to the human genome at a rate of over 25 million 35-bp
reads per hour.

This is Bowtie version 2, which will need to coexists with Bowtie 1 for the
foreseeable future. Both are required by certain genomics pipelines, in some
cases (e.g. Trinity) by the same pipeline.

WWW: https://github.com/BenLangmead/bowtie2

PR:		207908
Submitted by:	Jason Bacon <bacon4000@gmail.com>
2016-03-23 11:22:39 +00:00
Raphael Kubo da Costa
66631eff75 New port: biology/slclust.
Slclust is a utility that performs single-linkage clustering with the option of
applying a Jaccard similarity coefficient to break weakly bound clusters into
distinct clusters.

WWW: http://sourceforge.net/projects/slclust/

PR:		207997
Submitted by:	Jason Bacon <bacon4000@gmail.com>
2016-03-23 11:00:44 +00:00
Wen Heping
ce265985eb Trimmomatic performs a variety of useful trimming tasks for illumina
NGS paired-end and single ended data.

WWW: http://www.usadellab.org/cms/?page=trimmomatic

PR:		208044
Submitted by:	bacon4000@gmail.com
2016-03-17 08:21:14 +00:00
Kurt Jaeger
9cae6c02e4 New port: biology/p5-transdecoder
TransDecoder identifies candidate coding regions within transcript
sequences, such as those generated by de novo RNA-Seq transcript
assembly using Trinity, or constructed based on RNA-Seq alignments
to the genome using Tophat and Cufflinks.

WWW: http://transdecoder.github.io/

PR:		207993
Submitted by:	Jason Bacon <bacon4000@gmail.com>
2016-03-16 20:12:32 +00:00
Raphael Kubo da Costa
b8b592e17b New port: biology/bowtie.
Bowtie is an ultrafast, memory-efficient short read aligner. It aligns short
DNA sequences (reads) to the human genome at a rate of over 25 million 35-bp
reads per hour.

WWW: http://bowtie-bio.sourceforge.net/index.shtml

PR:		206939
Submitted by:	Jason Bacon <bacon4000@gmail.com>
2016-03-05 13:21:26 +00:00
Raphael Kubo da Costa
feaee54d6e New port: biology/vcftools.
A set of tools written in Perl and C++ for working with VCF files, such as
those generated by the 1000 Genomes Project.

WWW: https://github.com/vcftools/vcftools

PR:		206926
Submitted by:	Jason Bacon <bacon4000@gmail.com>
2016-02-26 17:07:59 +00:00
Wen Heping
9411038eac The bedtools utilities are a suite of tools for performing a wide range of
genomics analysis tasks.  The most widely-used of these tools enable genome
arithmetic, i.e., set theory on the genome.  For example, with bedtools one
can intersect, merge, count, complement, and shuffle genomic intervals from
multiple files in common genomic formats such as BAM, BED, GFF/GTF, and VCF.

Although each individual utility is designed to do a relatively simple task,
e.g., intersect two interval files, more sophisticated analyses can be
conducted by stringing together multiple bedtools operations on the command
line or in shell scripts.

WWW: http://bedtools.readthedocs.org/

PR:		204536
Submitted by:	scottcheloha@gmail.com
2016-01-19 08:56:34 +00:00
Rene Ladan
691f434f54 Remove expired ports:
2015-11-26 audio/pecl-id3: Broken for more than 6 months
2015-11-26 dns/geta: Broken for more than 6 months
2015-11-26 finance/openerp-web: Broken for more than 6 months
2015-11-26 devel/py-async: Further using of this module is not encouraged by upstream
2015-11-26 chinese/kon2: Depends on expiring chinese/cce
2015-11-26 games/linux-skulltag: Depends on expiring audio/linux-fmodapi
2015-11-26 archivers/wzip: Broken for more than 6 months
2015-11-26 databases/sybtcl: Broken for more than 6 months
2015-11-26 biology/povchem: Broken for more than 6 months
2015-11-26 audio/btc: Broken for more than 6 months
2015-11-26 astro/wmglobe: Broken for more than 6 months
2015-11-26 graphics/pyro: Broken for more than 6 months
2015-11-26 graphics/jpeg2ps: Broken for more than 6 months
2015-11-26 chinese/gugod-clean: Broken for more than 6 months
2015-11-26 comms/bforce: Broken for more than 6 months
2015-11-26 cad/geda-docs: Broken for more than 6 months
2015-11-26 chinese/cwtexttf: Broken for more than 6 months
2015-11-26 comms/zmtx-zmrx: Broken for more than 6 months
2015-11-26 astro/sky2000: Broken for more than 6 months
2015-11-26 deskutils/libopensync-plugin-file: Broken for more than 6 months
2015-11-26 databases/sqlite-ext-mobigroup: Broken for more than 6 months
2015-11-26 chinese/bg5ps: Broken for more than 6 months
2015-11-26 deskutils/x-tile: Broken for more than 6 months
2015-11-26 graphics/pure-gl: Broken for more than 6 months
2015-11-26 audio/dvda-author: Broken for more than 6 months
2015-11-26 chinese/oxim: Broken for more than 6 months
2015-11-26 editors/spe: Broken for more than 6 months
2015-11-26 audio/mpdscribble: Broken for more than 6 months
2015-11-26 cad/geda-symcheck: Broken for more than 6 months
2015-11-26 audio/linux-fmodapi: Broken for more than 6 months
2015-11-26 audio/pure-audio: Broken for more than 6 months
2015-11-26 editors/bpatch: Broken for more than 6 months
2015-11-26 benchmarks/geekbench: Broken for more than 6 months
2015-11-26 graphics/icoconvert: Broken for more than 6 months
2015-11-26 cad/geda-utils: Broken for more than 6 months
2015-11-26 deskutils/tomboy-plugin-wordcount: Broken for more than 6 months
2015-11-26 graphics/sketch: Broken for more than 6 months
2015-11-26 ftp/spegla: Broken for more than 6 months
2015-11-26 graphics/clutter-box2d: Broken for more than 6 months
2015-11-26 audio/scmpc: Broken for more than 6 months
2015-11-26 ftp/gnusget: Broken for more than 6 months
2015-11-26 comms/gpsk31: Broken for more than 6 months
2015-11-26 cad/geda-gschem: Broken for more than 6 months
2015-11-26 audio/ampache: Broken for more than 6 months
2015-11-26 cad/slffea: Broken for more than 6 months
2015-11-26 audio/cripple: Broken for more than 6 months
2015-11-26 cad/geda-gattrib: Broken for more than 6 months
2015-11-26 cad/findhier: Broken for more than 6 months
2015-11-26 biology/njplot: Broken for more than 6 months
2015-11-26 audio/wmmp: Broken for more than 6 months
2015-11-26 x11/avant-window-navigator: Broken for more than 6 months
2015-11-26 cad/geda-netlist: Broken for more than 6 months
2015-11-26 deskutils/libopensync-plugin-sunbird: Broken for more than 6 months
2015-11-26 biology/ortep3: Broken for more than 6 months
2015-11-26 astro/aa: Broken for more than 6 months
2015-11-26 french/belote: Broken for more than 6 months
2015-11-26 converters/p5-String-SetUTF8: Broken for more than 6 months
2015-11-26 cad/geda-examples: Broken for more than 6 months
2015-11-26 editors/yasnippet: Broken for more than 6 months
2015-11-26 audio/musica: Broken for more than 6 months
2015-11-26 graphics/rubyphoto: Broken for more than 6 months
2015-11-26 german/bsdpaste: Broken for more than 6 months
2015-11-26 audio/amrcoder: Broken for more than 6 months
2015-11-26 sysutils/bashburn: Broken for more than 6 months
2015-11-26 editors/e93: Broken for more than 6 months
2015-11-26 audio/tepsonic: Broken for more than 6 months
2015-11-26 astro/ephem: Broken for more than 6 months
2015-11-26 chinese/cce: Broken for more than 6 months
2015-11-26 graphics/qcread: Broken for more than 6 months
2015-11-26 databases/py-sqlkit: Broken for more than 6 months
2015-11-26 databases/usogres: Broken for more than 6 months
2015-11-26 cad/libgeda: Broken for more than 6 months
2015-11-26 chinese/p5-Lingua-ZH-BPMFConvert: Broken for more than 6 months
2015-11-26 french/alphabet_sounds_fr: Broken for more than 6 months
2015-11-26 deskutils/mrundlg: Broken for more than 6 months
2015-11-26 databases/erlang-mysql: Broken for more than 6 months
2015-11-26 graphics/linux-XnViewMP: Broken for more than 6 months
2015-11-26 deskutils/akamaru: Broken for more than 6 months
2015-11-26 dns/p5-Net-DNS-ZoneCheck: Broken for more than 6 months
2015-11-26 astro/dgpsip: Broken for more than 6 months
2015-11-26 databases/pecl-handlersocket: Broken for more than 6 months
2015-11-26 audio/cymbaline: Broken for more than 6 months
2015-11-26 french/dico: Broken for more than 6 months
2015-11-26 comms/qpage: Broken for more than 6 months
2015-11-26 audio/sonice: Broken for more than 6 months
2015-11-26 cad/geda-symbols: Broken for more than 6 months
2015-11-26 databases/java-mybatis: Broken for more than 6 months
2015-11-26 databases/openbase-jdbc: Broken for more than 6 months
2015-11-27 www/mediawiki119: Please upgrade to mediawiki-1.25
2015-11-28 www/R-cran-Rpad: Unmaintained upstream
2015-11-28 23:08:03 +00:00
Ruslan Makhmatkhanov
164e1138b8 BWA is a program for aligning sequencing reads against a large reference
genome (e.g. human genome). It has two major components, one for read shorter
than 150bp and the other for longer reads.

WWW: http://sourceforge.net/projects/bio-bwa/

PR:		203158
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:39:36 +00:00
Ruslan Makhmatkhanov
e20b08bbfc Fast indexing and retrieval of FASTA records from flat file data bases.
WWW: http://sourceforge.net/projects/cdbfasta/

PR:		203233
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:37:24 +00:00
Ruslan Makhmatkhanov
835d05fd2c Simple and quick FastQ and FastA tool for file reading and conversion.
WWW: https://github.com/fstrozzi/Fastool

PR:		203293
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:35:14 +00:00
Ruslan Makhmatkhanov
2b9505d069 FastTree infers approximately-maximum-likelihood phylogenetic trees from
alignments of nucleotide or protein sequences. FastTree can handle alignments
with up to a million of sequences in a reasonable amount of time and memory.

WWW: http://www.microbesonline.org/fasttree/

PR:		203295
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:34:29 +00:00
Ruslan Makhmatkhanov
4d7b4d8d90 The FASTX-Toolkit is a collection of command line tools for Short-Reads
FASTA/FASTQ files preprocessing.

WWW: http://hannonlab.cshl.edu/fastx_toolkit/

PR:		203318
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:33:18 +00:00
Ruslan Makhmatkhanov
036ac0906d Gordon's text utilities.
WWW: https://github.com/agordon/libgtextutils

PR:		203309
Submitted by:	Jason Bacon <jwbacon@tds.net>
2015-09-25 18:31:28 +00:00
Wen Heping
cd1751b03f CD-HIT is a very widely used program for clustering and comparing protein or
nucleotide sequences.

WWW: http://weizhong-lab.ucsd.edu/cd-hit/

PR:		203183
Submitted by:	jwbacon@tds.net
2015-09-19 11:16:51 +00:00
Kurt Jaeger
def75b1a0f New port: biology/bcftools
BCFtools is a set of utilities that manipulate variant calls in the
Variant Call Format (VCF) and its binary counterpart BCF. All
commands work transparently with both VCFs and BCFs, both
uncompressed and BGZF-compressed.

WWW: http://www.htslib.org/

PR:		199747
Submitted by:	cartwright@asu.edu
2015-06-05 21:01:13 +00:00
Rene Ladan
8bda684e01 Remove expired ports:
2015-01-01 biology/boinc-simap: Project shutting down, see http://boincsimap.org/boincsimap/forum_thread.php?id=88
2015-01-01 security/openssh-portable-base: Overwrite-base option/port/pkg will be removed. There is no real need for foot-shooting.
2015-01-01 devel/cedet: Fails to build, use Emacs' builtin cedet package instead
2015-01-01 devel/ecb: does not work with newer Emacs versions, use the elpa package instead
2015-01-01 01:13:11 +00:00
Michael Gmelin
a4f3630a73 Rename biology/ncbi-blast to biology/ncbi-blast+
Approved by:	mentors (implicit)
2014-12-30 20:03:13 +00:00
Pawel Pekala
dc1d64b572 Samtools implements various utilities for post-processing alignments in the
SAM, BAM, and CRAM formats, including indexing, variant calling (in conjunction
with bcftools), and a simple alignment viewer.

WWW: http://www.htslib.org/

PR:		195592
Submitted by:	Reed A. Cartwright <cartwright@asu.edu>
2014-12-15 21:59:19 +00:00
Pawel Pekala
91bd9cdb68 HTSlib is an implementation of a unified C library for accessing common file
formats, such as SAM, CRAM, VCF, and BCF, used for high-throughput sequencing
data. It is the core library used by samtools and bcftools.

WWW: http://www.htslib.org/

PR:		195591
Submitted by:	Reed A. Cartwright <cartwright@asu.edu>
2014-12-14 22:35:07 +00:00
John Marino
35bfc60170 Add new port biology/ncbi-blast
PR:		190854
Submitted by:	Jason Bacon

The Basic Local Alignment Search Tool (BLAST) finds regions of local
similarity between sequences. The program compares nucleotide or protein
sequences to sequence databases and calculates the statistical
significance of matches. BLAST can be used to infer functional and
evolutionary relationships between sequences as well as help identify
members of gene families.
2014-10-06 20:16:35 +00:00
Baptiste Daroussin
5ead879a85 Second run at cleaning out non staged ports without pending PR 2014-09-02 12:45:01 +00:00
Baptiste Daroussin
a76b6b5c50 Remove non staged ports without pending PR from b* 2014-09-01 11:37:14 +00:00
Rene Ladan
8b3c8800eb Remove expired ports:
2014-04-16 ports-mgmt/pkgsearch: Upstream disappeared
2014-04-17 science/flounder: Unmaintained since 2002
2014-04-17 security/nbaudit: Unmaintained since 2002
2014-04-17 security/saint: Unmaintained since 2002
2014-04-17 graphics/gozer: Unmaintained since 2002
2014-04-17 misc/pdfmap: Unmaintained since 2002
2014-04-17 devel/showgrammar: Unmaintained since 2002
2014-04-17 biology/libgenome: Unmaintained since 2002
2014-04-17 deskutils/narval: Unmaintained since 2002
2014-04-17 devel/fampp: Unmaintained since 2002
2014-04-17 net-p2p/py-fngrab: Unmaintained since 2002
2014-04-17 misc/wmfirew: Unmaintained since 2002
2014-04-17 x11-wm/e16utils: Unmaintained since 2002
2014-04-17 misc/salias: Unmaintained since 2002
2014-04-17 print/latex2slides: Unmaintained since 2002
2014-04-17 lang/sxm: Unmaintained since 2002
2014-04-17 textproc/pybook: Unmaintained since 2002
2014-04-17 mail/mailcrypt: Unmaintained since 2002
2014-04-17 japanese/elvis: Unmaintained since 2002
2014-04-17 devel/prototype: Unmaintained since 2002
2014-04-17 print/wprint: Unmaintained since 2002
2014-04-17 science/euler: Unmaintained since 2002
2014-04-17 multimedia/gopchop: Unmaintained since 2002
2014-04-17 science/gdis: Unmaintained since 2002
2014-04-17 net/googolplex: Unmaintained since 2002
2014-04-17 lang/logo: Unmaintained since 2002
2014-04-17 textproc/roap: Unmaintained since 2002
2014-04-17 x11-wm/afterstep-i18n: Unmaintained since 2002
2014-04-17 games/yamsweeper: Unmaintained since 2002
2014-04-17 net-mgmt/echolot: Unmaintained since 2002
2014-04-17 security/pam_smb: Unmaintained since 2002
2014-04-18 devel/lua-redis-parser: Broken for more than 6 months
2014-04-18 biology/finchtv: Broken for more than 6 months
2014-04-18 net-im/ari-yahoo: Broken for more than 1 year (http://www.icculus.org/ari-yahoo/)
2014-04-18 11:17:45 +00:00