CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Removed .md5sum files and added .signature files
authorVictor Martinez <pitillo@ono.com>
Thu, 15 Nov 2018 00:39:44 +0000 (01:39 +0100)
committerVictor Martinez <pitillo@ono.com>
Thu, 15 Nov 2018 00:39:44 +0000 (01:39 +0100)
15 files changed:
chromium/.signature [new file with mode: 0644]
chromium/chromium-64.0.3282.119-constexpr-1.patch [new file with mode: 0644]
chromium/chromium-cups-r0.patch [new file with mode: 0644]
chromium/chromium-memcpy-r0.patch [new file with mode: 0644]
chromium/chromium-omnibox-unescape-fragment.patch [new file with mode: 0644]
chromium/chromium-use-fromUTF8-for-UnicodeString-construction.patch [new file with mode: 0644]
firefox/.signature [new file with mode: 0644]
icu/.signature [new file with mode: 0644]
keyutils/.signature [new file with mode: 0644]
nspr/.signature [new file with mode: 0644]
nss/.signature [new file with mode: 0644]
python/.signature [new file with mode: 0644]
python3/.signature [new file with mode: 0644]
qt4/.signature [new file with mode: 0644]
ruby/.signature [new file with mode: 0644]

diff --git a/chromium/.signature b/chromium/.signature
new file mode 100644 (file)
index 0000000..0de9ad6
--- /dev/null
@@ -0,0 +1,16 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauGWhG6zxcbsRVEFqcAQA2EX+pXl3ud0sHQ5fcnE2wvaFGHYcVtwS02dTzVzdRSOYxSvQuRIssEHppvwFamoWWQE=
+SHA256 (Pkgfile) = 5513d36ada582adb768b0ee94e8706cc21f01f7c81442d3af96841c8bc69b4f9
+SHA256 (.footprint) = e1e6cdeeb1dc4e10e1b0f3e743f69fae1c35e4db1f455cd9e65e5bf0387d9d7e
+SHA256 (chromium-64.0.3282.119.tar.xz) = 342ea80a925d85f5155b2b423a0d3cbcf2ee5729bf107c601d7d902315d03127
+SHA256 (chromium-build-toolchain.patch) = 114d68d8230e830d45ac98d28137a80293ed3e59c350f8b44a20aa3bc8b8500a
+SHA256 (last-commit-position.patch) = d3dc397956a26ec045e76c25c57a1fac5fc0acff94306b2a670daee7ba15709e
+SHA256 (chromium.sh) = 7b182d0ae1e9ef841f8cd0b403a304babd548bf60b5e3808b2144bebdbb7c154
+SHA256 (chromium-64.0.3282.119-constexpr-1.patch) = 9982464badc03879c5f73ed18a719661f00aad51da078bae032293e656bfaf6d
+SHA256 (chromium-exclude_unwind_tables.patch) = 9478f1ec1a3c53425306cf41c2d0555c215a4f106955d9d6adfff38044530ce8
+SHA256 (chromium-use-fromUTF8-for-UnicodeString-construction.patch) = c82c830bac7ab328a76d85fb141e150a17d02d97138a6daa4720a8a8c371a402
+SHA256 (chromium-omnibox-unescape-fragment.patch) = f2d68e553b1b79fa326d9f2e7f7a57514e6e717ff3cea672fd01daad29bb3014
+SHA256 (chromium-skia-harmony.patch) = feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3
+SHA256 (chromium-memcpy-r0.patch) = f2d68e553b1b79fa326d9f2e7f7a57514e6e717ff3cea672fd01daad29bb3014
+SHA256 (chromium-clang-r2.patch) = 4495e8b29dae242c79ffe4beefc5171eb3c7aacb7e9aebfd2d4d69b9d8c958d3
+SHA256 (chromium-cups-r0.patch) = f2d68e553b1b79fa326d9f2e7f7a57514e6e717ff3cea672fd01daad29bb3014
diff --git a/chromium/chromium-64.0.3282.119-constexpr-1.patch b/chromium/chromium-64.0.3282.119-constexpr-1.patch
new file mode 100644 (file)
index 0000000..ae40fd1
--- /dev/null
@@ -0,0 +1,98 @@
+Submitted By:            DJ Lucas <dj_AT_linuxfromscratch_DOT_org>
+Date:                    2018-01-28
+Initial Package Version: 64.0.3282.119
+Upstream Status:         Committed
+Origin:                  Upstream
+Description:             Corrects error call to non-constexpr function
+
+
+From 030017a4855c7b6e7f2ff8d9566c146f31eb301b Mon Sep 17 00:00:00 2001
+From: Kai Ninomiya <kainino@chromium.org>
+Date: Wed, 06 Dec 2017 14:06:53 -0800
+Subject: [PATCH] Mark StaticType related functions as constexpr
+
+Fixes compilation on some versions of GCC and probably Clang.
+
+Follow-up to http://crrev.com/c/786317
+
+Bug: angleproject:1432
+Change-Id: I3fc3ad0f65492f9543eb27fcdce6ca29a9ad06e5
+Reviewed-on: https://chromium-review.googlesource.com/812220
+Reviewed-by: Jamie Madill <jmadill@chromium.org>
+Commit-Queue: Kai Ninomiya <kainino@chromium.org>
+---
+
+diff --git a/third_party/angle/src/compiler/translator/StaticType.h b/third_party/angle/src/compiler/translator/StaticType.h
+index e26e5ff..30b391a 100644
+--- a/third_party/angle/src/compiler/translator/StaticType.h
++++ b/third_party/angle/src/compiler/translator/StaticType.h
+@@ -160,7 +160,7 @@
+           TPrecision precision,
+           TQualifier qualifier,
+           unsigned char secondarySize>
+-const TType *GetForVecMatHelper(unsigned char primarySize)
++constexpr const TType *GetForVecMatHelper(unsigned char primarySize)
+ {
+     static_assert(basicType == EbtFloat || basicType == EbtInt || basicType == EbtUInt ||
+                       basicType == EbtBool,
+@@ -186,7 +186,7 @@
+ template <TBasicType basicType,
+           TPrecision precision = EbpUndefined,
+           TQualifier qualifier = EvqGlobal>
+-const TType *GetForVecMat(unsigned char primarySize, unsigned char secondarySize = 1)
++constexpr const TType *GetForVecMat(unsigned char primarySize, unsigned char secondarySize = 1)
+ {
+     static_assert(basicType == EbtFloat || basicType == EbtInt || basicType == EbtUInt ||
+                       basicType == EbtBool,
+@@ -208,7 +208,7 @@
+ }
+ template <TBasicType basicType, TPrecision precision = EbpUndefined>
+-const TType *GetForVec(TQualifier qualifier, unsigned char size)
++constexpr const TType *GetForVec(TQualifier qualifier, unsigned char size)
+ {
+     switch (qualifier)
+     {
+diff --git a/third_party/angle/src/compiler/translator/SymbolTable.cpp b/third_party/angle/src/compiler/translator/SymbolTable.cpp
+index adf1e4e..90d4c15 100644
+--- a/third_party/angle/src/compiler/translator/SymbolTable.cpp
++++ b/third_party/angle/src/compiler/translator/SymbolTable.cpp
+@@ -236,7 +236,7 @@
+         pop();
+ }
+-bool IsGenType(const TType *type)
++constexpr bool IsGenType(const TType *type)
+ {
+     if (type)
+     {
+@@ -248,7 +248,7 @@
+     return false;
+ }
+-bool IsVecType(const TType *type)
++constexpr bool IsVecType(const TType *type)
+ {
+     if (type)
+     {
+diff --git a/third_party/angle/src/compiler/translator/Types.h b/third_party/angle/src/compiler/translator/Types.h
+index 04f46f1..a54d447 100644
+--- a/third_party/angle/src/compiler/translator/Types.h
++++ b/third_party/angle/src/compiler/translator/Types.h
+@@ -142,13 +142,13 @@
+     {
+     }
+-    TBasicType getBasicType() const { return type; }
++    constexpr TBasicType getBasicType() const { return type; }
+     void setBasicType(TBasicType t);
+     TPrecision getPrecision() const { return precision; }
+     void setPrecision(TPrecision p) { precision = p; }
+-    TQualifier getQualifier() const { return qualifier; }
++    constexpr TQualifier getQualifier() const { return qualifier; }
+     void setQualifier(TQualifier q) { qualifier = q; }
+     bool isInvariant() const { return invariant; }
+
diff --git a/chromium/chromium-cups-r0.patch b/chromium/chromium-cups-r0.patch
new file mode 100644 (file)
index 0000000..0a8ad99
--- /dev/null
@@ -0,0 +1,316 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
+<!-- git web interface version 1.9.0, (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke -->
+<!-- git core binaries version 2.15.1 -->
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+<meta name="generator" content="gitweb/1.9.0 git/2.15.1"/>
+<meta name="robots" content="index, nofollow"/>
+<title>crux.nu Git - ports/opt.git/summary</title>
+<link rel="stylesheet" type="text/css" href="gitweb.css"/>
+<link rel="alternate" title="ports/opt.git - log - RSS feed" href="/gitweb/?p=ports/opt.git;a=rss" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - RSS feed (no merges)" href="/gitweb/?p=ports/opt.git;a=rss;opt=--no-merges" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed" href="/gitweb/?p=ports/opt.git;a=atom" type="application/atom+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed (no merges)" href="/gitweb/?p=ports/opt.git;a=atom;opt=--no-merges" type="application/atom+xml" />
+<link rel="shortcut icon" href="git-favicon.png" type="image/png" />
+</head>
+<body>
+<div class="cruxheader">
+  <a href="/" title="">Home</a> :: 
+  <a href="/Main/Documentation">Documentation</a> :: 
+  <a href="/Main/Download">Download</a> :: 
+  <a href="/Main/Development">Development</a> :: 
+  <a href="/Main/Community">Community</a> :: 
+  <a href="/Wiki/HomePage">Wiki</a> :: 
+  <a href="/portdb">Ports</a> :: 
+  <a href="/Main/Bugs" title="">Bugs</a> :: 
+  <a href="/Main/Links" title="">Links</a> :: 
+  <a href="/Main/About" title="">About</a>
+</div>
+<div class="page_header">
+<a href="http://git.or.cz/" title="git homepage"><img alt="git" class="logo" height="27" src="git-logo.png" width="72" /></a><a href="/gitweb/">repositories</a> / <a href="/gitweb/?a=project_list;pf=ports">ports</a> / <a href="/gitweb/?p=ports/opt.git;a=summary">opt.git</a> / summary
+</div>
+<div class="content">
+<div class="page_nav">
+summary | <a href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log">log</a> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree">tree</a><br/>
+<br/>
+</div>
+<div class="title">&nbsp;</div>
+<table class="projects_list">
+<tr id="metadata_desc"><td>description</td><td>CRUX opt ports</td></tr>
+<tr id="metadata_owner"><td>owner</td><td>CRUX Ports Team</td></tr>
+<tr id="metadata_lchange"><td>last change</td><td>Tue, 13 Nov 2018 19:04:35 +0000 (20:04 +0100)</td></tr>
+<tr class="metadata_url"><td>URL</td><td>git://crux.nu/ports/opt.git</td></tr>
+<tr class="metadata_url"><td></td><td>ssh://git@crux.nu/ports/opt.git</td></tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a>
+</div>
+<table class="shortlog">
+<tr class="dark">
+<td title="2018-11-13"><i>28 hours ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">libjpeg-turbo: updated to 2.0.1</a> <span class="refs"> <span class="head" title="heads/3.4"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></span></span></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=9e25975843dee35e0bb787114c61916a6d87346b;hb=9e25975843dee35e0bb787114c61916a6d87346b">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=9e25975843dee35e0bb787114c61916a6d87346b;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-13"><i>29 hours ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">nano: update to 1.8.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5331b5c48c47c8bcd823c51a3482210af02aab88;hb=5331b5c48c47c8bcd823c51a3482210af02aab88">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5331b5c48c47c8bcd823c51a3482210af02aab88;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">krb5: update to 1.16.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;hb=e1844234da4a5f05f206f456cf4a60f8a35e44bd">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">geeqie: fix maintainer email address</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=404b5ed2605076aae02bfde78fd359eada51b082">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=404b5ed2605076aae02bfde78fd359eada51b082;hb=404b5ed2605076aae02bfde78fd359eada51b082">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=404b5ed2605076aae02bfde78fd359eada51b082;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">flash-player-plugin: update to 31.0.0.122</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;hb=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Thomas Penteker</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">gdb: update footprint, fixes FS#1688</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;hb=2e830e4b7db0b9f41780dab32de8d8b1b0496002">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c" title="[notify] libtiff: updated to 4.0.10. Many security fixes.">[notify] libtiff: updated to 4.0.10. Many security... </a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;hb=81cfb9814fb48494268f9d233d9f1cc26164f98c">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">nss: updated to 3.40</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;hb=c705adb6cbf89b3ce9b343a91616448dc3186ed3">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">cmake: updated to 3.12.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=96aff5d4c966a46f9610901af944818803ef2ba2">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=96aff5d4c966a46f9610901af944818803ef2ba2;hb=96aff5d4c966a46f9610901af944818803ef2ba2">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=96aff5d4c966a46f9610901af944818803ef2ba2;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">xfsprogs: update to 4.19.0, enable readline</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;hb=d2c5a7f583d5640805e870c44371c05f3eed7b25">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">python3-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;hb=5d373be1c833e9387388268f6ec753a0f81cbd8a">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">python-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;hb=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">python-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=774cba368d0e21e4f7a079b418be5e4b7617a499;hb=774cba368d0e21e4f7a079b418be5e4b7617a499">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=774cba368d0e21e4f7a079b418be5e4b7617a499;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">python3-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;hb=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">python3-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;hb=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">python-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=a9d51d17480836bf4f75e8d912a67e00596711e8;hb=a9d51d17480836bf4f75e8d912a67e00596711e8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=a9d51d17480836bf4f75e8d912a67e00596711e8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr>
+<td colspan="4"><a href="/gitweb/?p=ports/opt.git;a=shortlog">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=tags">tags</a>
+</div>
+<table class="tags">
+<tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">release-3.4</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">CRUX-3.4</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.4">log</a></td>
+</tr><tr class="light">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">3.4-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc2">log</a></td>
+</tr><tr class="dark">
+<td><i>7 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">3.4-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc1">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">release-3.3</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">CRUX-3.3</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.3">log</a></td>
+</tr><tr class="dark">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">3.3-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">3.3-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>22 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">3.3-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>23 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">3.3-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">release-3.2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.2">log</a></td>
+</tr><tr class="light">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">3.2-rc5</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc5">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">3.2-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">3.2-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">3.2-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">3.2-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">release-3.1</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">CRUX 3.1</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.1">log</a></td>
+</tr><tr class="light">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">3.1-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.1-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.1-rc3">log</a></td>
+</tr><tr>
+<td colspan="5"><a href="/gitweb/?p=ports/opt.git;a=tags">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=heads">heads</a>
+</div>
+<table class="heads">
+<tr class="dark">
+<td><i>28 hours ago</i></td>
+<td class="current_head"><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.4;hb=refs/heads/3.4">tree</a></td>
+</tr><tr class="light">
+<td><i>5 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">3.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.3;hb=refs/heads/3.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">3.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.5;hb=refs/heads/3.5">tree</a></td>
+</tr><tr class="light">
+<td><i>20 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">3.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.2;hb=refs/heads/3.2">tree</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">3.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.1;hb=refs/heads/3.1">tree</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.0">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.0;hb=refs/heads/3.0">tree</a></td>
+</tr><tr class="dark">
+<td><i>5 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">2.8</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.8">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.8;hb=refs/heads/2.8">tree</a></td>
+</tr><tr class="light">
+<td><i>6 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">2.7</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.7">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.7;hb=refs/heads/2.7">tree</a></td>
+</tr><tr class="dark">
+<td><i>8 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">2.6</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.6">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.6;hb=refs/heads/2.6">tree</a></td>
+</tr><tr class="light">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">2.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.5;hb=refs/heads/2.5">tree</a></td>
+</tr><tr class="dark">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">2.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.4;hb=refs/heads/2.4">tree</a></td>
+</tr><tr class="light">
+<td><i>10 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">2.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.3;hb=refs/heads/2.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>11 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">2.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.2;hb=refs/heads/2.2">tree</a></td>
+</tr><tr class="light">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">2.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.1;hb=refs/heads/2.1">tree</a></td>
+</tr><tr class="dark">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">master</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/master">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/master;hb=refs/heads/master">tree</a></td>
+</tr></table>
+</div>
+<div class="page_footer">
+<div class="page_footer_text">CRUX opt ports</div>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=rss" title="log RSS feed">RSS</a>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=atom" title="log Atom feed">Atom</a>
+</div>
+<script type="text/javascript" src="gitweb.js"></script>
+<script type="text/javascript">
+window.onload = function () {
+};
+</script>
+</body>
+</html>
\ No newline at end of file
diff --git a/chromium/chromium-memcpy-r0.patch b/chromium/chromium-memcpy-r0.patch
new file mode 100644 (file)
index 0000000..0a8ad99
--- /dev/null
@@ -0,0 +1,316 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
+<!-- git web interface version 1.9.0, (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke -->
+<!-- git core binaries version 2.15.1 -->
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+<meta name="generator" content="gitweb/1.9.0 git/2.15.1"/>
+<meta name="robots" content="index, nofollow"/>
+<title>crux.nu Git - ports/opt.git/summary</title>
+<link rel="stylesheet" type="text/css" href="gitweb.css"/>
+<link rel="alternate" title="ports/opt.git - log - RSS feed" href="/gitweb/?p=ports/opt.git;a=rss" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - RSS feed (no merges)" href="/gitweb/?p=ports/opt.git;a=rss;opt=--no-merges" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed" href="/gitweb/?p=ports/opt.git;a=atom" type="application/atom+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed (no merges)" href="/gitweb/?p=ports/opt.git;a=atom;opt=--no-merges" type="application/atom+xml" />
+<link rel="shortcut icon" href="git-favicon.png" type="image/png" />
+</head>
+<body>
+<div class="cruxheader">
+  <a href="/" title="">Home</a> :: 
+  <a href="/Main/Documentation">Documentation</a> :: 
+  <a href="/Main/Download">Download</a> :: 
+  <a href="/Main/Development">Development</a> :: 
+  <a href="/Main/Community">Community</a> :: 
+  <a href="/Wiki/HomePage">Wiki</a> :: 
+  <a href="/portdb">Ports</a> :: 
+  <a href="/Main/Bugs" title="">Bugs</a> :: 
+  <a href="/Main/Links" title="">Links</a> :: 
+  <a href="/Main/About" title="">About</a>
+</div>
+<div class="page_header">
+<a href="http://git.or.cz/" title="git homepage"><img alt="git" class="logo" height="27" src="git-logo.png" width="72" /></a><a href="/gitweb/">repositories</a> / <a href="/gitweb/?a=project_list;pf=ports">ports</a> / <a href="/gitweb/?p=ports/opt.git;a=summary">opt.git</a> / summary
+</div>
+<div class="content">
+<div class="page_nav">
+summary | <a href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log">log</a> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree">tree</a><br/>
+<br/>
+</div>
+<div class="title">&nbsp;</div>
+<table class="projects_list">
+<tr id="metadata_desc"><td>description</td><td>CRUX opt ports</td></tr>
+<tr id="metadata_owner"><td>owner</td><td>CRUX Ports Team</td></tr>
+<tr id="metadata_lchange"><td>last change</td><td>Tue, 13 Nov 2018 19:04:35 +0000 (20:04 +0100)</td></tr>
+<tr class="metadata_url"><td>URL</td><td>git://crux.nu/ports/opt.git</td></tr>
+<tr class="metadata_url"><td></td><td>ssh://git@crux.nu/ports/opt.git</td></tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a>
+</div>
+<table class="shortlog">
+<tr class="dark">
+<td title="2018-11-13"><i>28 hours ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">libjpeg-turbo: updated to 2.0.1</a> <span class="refs"> <span class="head" title="heads/3.4"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></span></span></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=9e25975843dee35e0bb787114c61916a6d87346b;hb=9e25975843dee35e0bb787114c61916a6d87346b">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=9e25975843dee35e0bb787114c61916a6d87346b;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-13"><i>29 hours ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">nano: update to 1.8.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5331b5c48c47c8bcd823c51a3482210af02aab88;hb=5331b5c48c47c8bcd823c51a3482210af02aab88">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5331b5c48c47c8bcd823c51a3482210af02aab88;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">krb5: update to 1.16.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;hb=e1844234da4a5f05f206f456cf4a60f8a35e44bd">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">geeqie: fix maintainer email address</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=404b5ed2605076aae02bfde78fd359eada51b082">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=404b5ed2605076aae02bfde78fd359eada51b082;hb=404b5ed2605076aae02bfde78fd359eada51b082">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=404b5ed2605076aae02bfde78fd359eada51b082;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">flash-player-plugin: update to 31.0.0.122</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;hb=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Thomas Penteker</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">gdb: update footprint, fixes FS#1688</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;hb=2e830e4b7db0b9f41780dab32de8d8b1b0496002">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c" title="[notify] libtiff: updated to 4.0.10. Many security fixes.">[notify] libtiff: updated to 4.0.10. Many security... </a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;hb=81cfb9814fb48494268f9d233d9f1cc26164f98c">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">nss: updated to 3.40</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;hb=c705adb6cbf89b3ce9b343a91616448dc3186ed3">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">cmake: updated to 3.12.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=96aff5d4c966a46f9610901af944818803ef2ba2">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=96aff5d4c966a46f9610901af944818803ef2ba2;hb=96aff5d4c966a46f9610901af944818803ef2ba2">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=96aff5d4c966a46f9610901af944818803ef2ba2;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">xfsprogs: update to 4.19.0, enable readline</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;hb=d2c5a7f583d5640805e870c44371c05f3eed7b25">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">python3-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;hb=5d373be1c833e9387388268f6ec753a0f81cbd8a">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">python-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;hb=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">python-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=774cba368d0e21e4f7a079b418be5e4b7617a499;hb=774cba368d0e21e4f7a079b418be5e4b7617a499">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=774cba368d0e21e4f7a079b418be5e4b7617a499;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">python3-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;hb=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">python3-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;hb=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">python-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=a9d51d17480836bf4f75e8d912a67e00596711e8;hb=a9d51d17480836bf4f75e8d912a67e00596711e8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=a9d51d17480836bf4f75e8d912a67e00596711e8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr>
+<td colspan="4"><a href="/gitweb/?p=ports/opt.git;a=shortlog">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=tags">tags</a>
+</div>
+<table class="tags">
+<tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">release-3.4</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">CRUX-3.4</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.4">log</a></td>
+</tr><tr class="light">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">3.4-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc2">log</a></td>
+</tr><tr class="dark">
+<td><i>7 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">3.4-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc1">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">release-3.3</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">CRUX-3.3</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.3">log</a></td>
+</tr><tr class="dark">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">3.3-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">3.3-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>22 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">3.3-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>23 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">3.3-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">release-3.2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.2">log</a></td>
+</tr><tr class="light">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">3.2-rc5</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc5">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">3.2-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">3.2-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">3.2-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">3.2-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">release-3.1</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">CRUX 3.1</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.1">log</a></td>
+</tr><tr class="light">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">3.1-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.1-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.1-rc3">log</a></td>
+</tr><tr>
+<td colspan="5"><a href="/gitweb/?p=ports/opt.git;a=tags">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=heads">heads</a>
+</div>
+<table class="heads">
+<tr class="dark">
+<td><i>28 hours ago</i></td>
+<td class="current_head"><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.4;hb=refs/heads/3.4">tree</a></td>
+</tr><tr class="light">
+<td><i>5 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">3.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.3;hb=refs/heads/3.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">3.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.5;hb=refs/heads/3.5">tree</a></td>
+</tr><tr class="light">
+<td><i>20 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">3.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.2;hb=refs/heads/3.2">tree</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">3.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.1;hb=refs/heads/3.1">tree</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.0">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.0;hb=refs/heads/3.0">tree</a></td>
+</tr><tr class="dark">
+<td><i>5 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">2.8</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.8">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.8;hb=refs/heads/2.8">tree</a></td>
+</tr><tr class="light">
+<td><i>6 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">2.7</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.7">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.7;hb=refs/heads/2.7">tree</a></td>
+</tr><tr class="dark">
+<td><i>8 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">2.6</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.6">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.6;hb=refs/heads/2.6">tree</a></td>
+</tr><tr class="light">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">2.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.5;hb=refs/heads/2.5">tree</a></td>
+</tr><tr class="dark">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">2.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.4;hb=refs/heads/2.4">tree</a></td>
+</tr><tr class="light">
+<td><i>10 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">2.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.3;hb=refs/heads/2.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>11 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">2.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.2;hb=refs/heads/2.2">tree</a></td>
+</tr><tr class="light">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">2.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.1;hb=refs/heads/2.1">tree</a></td>
+</tr><tr class="dark">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">master</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/master">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/master;hb=refs/heads/master">tree</a></td>
+</tr></table>
+</div>
+<div class="page_footer">
+<div class="page_footer_text">CRUX opt ports</div>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=rss" title="log RSS feed">RSS</a>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=atom" title="log Atom feed">Atom</a>
+</div>
+<script type="text/javascript" src="gitweb.js"></script>
+<script type="text/javascript">
+window.onload = function () {
+};
+</script>
+</body>
+</html>
\ No newline at end of file
diff --git a/chromium/chromium-omnibox-unescape-fragment.patch b/chromium/chromium-omnibox-unescape-fragment.patch
new file mode 100644 (file)
index 0000000..0a8ad99
--- /dev/null
@@ -0,0 +1,316 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
+<!-- git web interface version 1.9.0, (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke -->
+<!-- git core binaries version 2.15.1 -->
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+<meta name="generator" content="gitweb/1.9.0 git/2.15.1"/>
+<meta name="robots" content="index, nofollow"/>
+<title>crux.nu Git - ports/opt.git/summary</title>
+<link rel="stylesheet" type="text/css" href="gitweb.css"/>
+<link rel="alternate" title="ports/opt.git - log - RSS feed" href="/gitweb/?p=ports/opt.git;a=rss" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - RSS feed (no merges)" href="/gitweb/?p=ports/opt.git;a=rss;opt=--no-merges" type="application/rss+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed" href="/gitweb/?p=ports/opt.git;a=atom" type="application/atom+xml" />
+<link rel="alternate" title="ports/opt.git - log - Atom feed (no merges)" href="/gitweb/?p=ports/opt.git;a=atom;opt=--no-merges" type="application/atom+xml" />
+<link rel="shortcut icon" href="git-favicon.png" type="image/png" />
+</head>
+<body>
+<div class="cruxheader">
+  <a href="/" title="">Home</a> :: 
+  <a href="/Main/Documentation">Documentation</a> :: 
+  <a href="/Main/Download">Download</a> :: 
+  <a href="/Main/Development">Development</a> :: 
+  <a href="/Main/Community">Community</a> :: 
+  <a href="/Wiki/HomePage">Wiki</a> :: 
+  <a href="/portdb">Ports</a> :: 
+  <a href="/Main/Bugs" title="">Bugs</a> :: 
+  <a href="/Main/Links" title="">Links</a> :: 
+  <a href="/Main/About" title="">About</a>
+</div>
+<div class="page_header">
+<a href="http://git.or.cz/" title="git homepage"><img alt="git" class="logo" height="27" src="git-logo.png" width="72" /></a><a href="/gitweb/">repositories</a> / <a href="/gitweb/?a=project_list;pf=ports">ports</a> / <a href="/gitweb/?p=ports/opt.git;a=summary">opt.git</a> / summary
+</div>
+<div class="content">
+<div class="page_nav">
+summary | <a href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log">log</a> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree">tree</a><br/>
+<br/>
+</div>
+<div class="title">&nbsp;</div>
+<table class="projects_list">
+<tr id="metadata_desc"><td>description</td><td>CRUX opt ports</td></tr>
+<tr id="metadata_owner"><td>owner</td><td>CRUX Ports Team</td></tr>
+<tr id="metadata_lchange"><td>last change</td><td>Tue, 13 Nov 2018 19:04:35 +0000 (20:04 +0100)</td></tr>
+<tr class="metadata_url"><td>URL</td><td>git://crux.nu/ports/opt.git</td></tr>
+<tr class="metadata_url"><td></td><td>ssh://git@crux.nu/ports/opt.git</td></tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=shortlog">shortlog</a>
+</div>
+<table class="shortlog">
+<tr class="dark">
+<td title="2018-11-13"><i>28 hours ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">libjpeg-turbo: updated to 2.0.1</a> <span class="refs"> <span class="head" title="heads/3.4"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></span></span></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=9e25975843dee35e0bb787114c61916a6d87346b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=9e25975843dee35e0bb787114c61916a6d87346b">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=9e25975843dee35e0bb787114c61916a6d87346b;hb=9e25975843dee35e0bb787114c61916a6d87346b">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=9e25975843dee35e0bb787114c61916a6d87346b;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-13"><i>29 hours ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">nano: update to 1.8.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5331b5c48c47c8bcd823c51a3482210af02aab88">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5331b5c48c47c8bcd823c51a3482210af02aab88;hb=5331b5c48c47c8bcd823c51a3482210af02aab88">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5331b5c48c47c8bcd823c51a3482210af02aab88;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">krb5: update to 1.16.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;hb=e1844234da4a5f05f206f456cf4a60f8a35e44bd">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=e1844234da4a5f05f206f456cf4a60f8a35e44bd;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">geeqie: fix maintainer email address</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=404b5ed2605076aae02bfde78fd359eada51b082">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=404b5ed2605076aae02bfde78fd359eada51b082">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=404b5ed2605076aae02bfde78fd359eada51b082;hb=404b5ed2605076aae02bfde78fd359eada51b082">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=404b5ed2605076aae02bfde78fd359eada51b082;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-11"><i>3 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">flash-player-plugin: update to 31.0.0.122</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;hb=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c190e6da1f5f7ef1d9ee9bcecb11bf96e2b10fc1;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Thomas Penteker</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">gdb: update footprint, fixes FS#1688</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;hb=2e830e4b7db0b9f41780dab32de8d8b1b0496002">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=2e830e4b7db0b9f41780dab32de8d8b1b0496002;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c" title="[notify] libtiff: updated to 4.0.10. Many security fixes.">[notify] libtiff: updated to 4.0.10. Many security... </a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=81cfb9814fb48494268f9d233d9f1cc26164f98c">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;hb=81cfb9814fb48494268f9d233d9f1cc26164f98c">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=81cfb9814fb48494268f9d233d9f1cc26164f98c;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">nss: updated to 3.40</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;hb=c705adb6cbf89b3ce9b343a91616448dc3186ed3">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c705adb6cbf89b3ce9b343a91616448dc3186ed3;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Fredrik Rinnestam</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">cmake: updated to 3.12.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=96aff5d4c966a46f9610901af944818803ef2ba2">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=96aff5d4c966a46f9610901af944818803ef2ba2">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=96aff5d4c966a46f9610901af944818803ef2ba2;hb=96aff5d4c966a46f9610901af944818803ef2ba2">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=96aff5d4c966a46f9610901af944818803ef2ba2;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Juergen Daubert</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">xfsprogs: update to 4.19.0, enable readline</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=d2c5a7f583d5640805e870c44371c05f3eed7b25">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;hb=d2c5a7f583d5640805e870c44371c05f3eed7b25">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=d2c5a7f583d5640805e870c44371c05f3eed7b25;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">python3-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=5d373be1c833e9387388268f6ec753a0f81cbd8a">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;hb=5d373be1c833e9387388268f6ec753a0f81cbd8a">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=5d373be1c833e9387388268f6ec753a0f81cbd8a;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">python-pyparsing: 2.2.0 -&gt; 2.3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;hb=08850c24c869cdceee3fb3c7f12f7076f6c56f2e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=08850c24c869cdceee3fb3c7f12f7076f6c56f2e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">python-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=774cba368d0e21e4f7a079b418be5e4b7617a499">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=774cba368d0e21e4f7a079b418be5e4b7617a499;hb=774cba368d0e21e4f7a079b418be5e4b7617a499">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=774cba368d0e21e4f7a079b418be5e4b7617a499;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">python3-cairo: 1.17.1 -&gt; 1.18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;hb=c26b3cc9b8a92d0dbdfb747ff68330faa040298e">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=c26b3cc9b8a92d0dbdfb747ff68330faa040298e;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="dark">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">python3-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;hb=1459c4e3a45ed6123ae089af9828c5cc849a9ca8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=1459c4e3a45ed6123ae089af9828c5cc849a9ca8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr class="light">
+<td title="2018-11-10"><i>4 days ago</i></td>
+<td class="author">Danny Rawlins</td><td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">python-packaging: 17.1 -&gt; 18.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=commit;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=commitdiff;h=a9d51d17480836bf4f75e8d912a67e00596711e8">commitdiff</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=a9d51d17480836bf4f75e8d912a67e00596711e8;hb=a9d51d17480836bf4f75e8d912a67e00596711e8">tree</a> | <a href="/gitweb/?p=ports/opt.git;a=snapshot;h=a9d51d17480836bf4f75e8d912a67e00596711e8;sf=tgz" title="in format: tar.gz">snapshot</a></td>
+</tr>
+<tr>
+<td colspan="4"><a href="/gitweb/?p=ports/opt.git;a=shortlog">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=tags">tags</a>
+</div>
+<table class="tags">
+<tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">release-3.4</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">CRUX-3.4</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=f51a084d9921c36713a5e50c0248cc9910f77214">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=eaf2ec7eb036710389037c532942b003e340c39e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.4">log</a></td>
+</tr><tr class="light">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">3.4-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=8ba92f4bd11dbc174951157a522c0922d66fbcff">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc2">log</a></td>
+</tr><tr class="dark">
+<td><i>7 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">3.4-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=769d08f87c2ef1910129e117f456d2b0cc335334">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.4-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.4-rc1">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">release-3.3</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">CRUX-3.3</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=0da429ebd5f16f51c3890f3ecfb1f600b08f2711">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.3">log</a></td>
+</tr><tr class="dark">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">3.3-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=85f9a8dc00a8577a30d3da8775c19444bf8ea744">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>21 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">3.3-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=61c55da42814df609d044d0d512f0885955fcf22">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>22 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">3.3-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=562245d4990a512f008f8e4a0ed7fbc1b86e1209">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>23 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">3.3-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=0a7ce655846ab3b1b181e3fccb6a0d9eb77334c7">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.3-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.3-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">release-3.2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.2">log</a></td>
+</tr><tr class="light">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">3.2-rc5</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=688d4cf90daa165e54f98c8ddac05cf031ed9c88">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc5">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">3.2-rc4</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=159ac81220f7d94ee92942b478c5a28548675053">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc4">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">3.2-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=28ab6138c06cd1719b0376da663fb09bd132d48b">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc3">log</a></td>
+</tr><tr class="dark">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">3.2-rc2</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=e26fc2792ded57e7e3483655f60bbd2b33f3ddb0">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc2">log</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">3.2-rc1</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=bb4610908a7661afca20b922d938a8356525e8bb">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.2-rc1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.2-rc1">log</a></td>
+</tr><tr class="dark">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">release-3.1</a></td>
+<td><a class="list subject" href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">CRUX 3.1</a></td>
+<td class="selflink"><a href="/gitweb/?p=ports/opt.git;a=tag;h=1fc5ce19c2f05aec09d2ddee4727ef1686a25aca">tag</a></td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=cf2a7efb6497083bb90e43bd1fe951efdaea155e">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/release-3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/release-3.1">log</a></td>
+</tr><tr class="light">
+<td><i>4 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">3.1-rc3</a></td>
+<td></td>
+<td class="selflink">&nbsp;</td>
+<td class="link"> | <a href="/gitweb/?p=ports/opt.git;a=commit;h=4e49218c6a35efe9d04834e5bed17e97655f8bfe">commit</a> | <a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/tags/3.1-rc3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/tags/3.1-rc3">log</a></td>
+</tr><tr>
+<td colspan="5"><a href="/gitweb/?p=ports/opt.git;a=tags">...</a></td>
+</tr>
+</table>
+<div class="header">
+<a class="title" href="/gitweb/?p=ports/opt.git;a=heads">heads</a>
+</div>
+<table class="heads">
+<tr class="dark">
+<td><i>28 hours ago</i></td>
+<td class="current_head"><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">3.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.4;hb=refs/heads/3.4">tree</a></td>
+</tr><tr class="light">
+<td><i>5 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">3.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.3;hb=refs/heads/3.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>6 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">3.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.5;hb=refs/heads/3.5">tree</a></td>
+</tr><tr class="light">
+<td><i>20 months ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">3.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.2;hb=refs/heads/3.2">tree</a></td>
+</tr><tr class="dark">
+<td><i>2 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">3.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.1;hb=refs/heads/3.1">tree</a></td>
+</tr><tr class="light">
+<td><i>3 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">3.0</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/3.0">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/3.0">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/3.0;hb=refs/heads/3.0">tree</a></td>
+</tr><tr class="dark">
+<td><i>5 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">2.8</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.8">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.8">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.8;hb=refs/heads/2.8">tree</a></td>
+</tr><tr class="light">
+<td><i>6 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">2.7</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.7">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.7">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.7;hb=refs/heads/2.7">tree</a></td>
+</tr><tr class="dark">
+<td><i>8 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">2.6</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.6">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.6">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.6;hb=refs/heads/2.6">tree</a></td>
+</tr><tr class="light">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">2.5</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.5">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.5">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.5;hb=refs/heads/2.5">tree</a></td>
+</tr><tr class="dark">
+<td><i>9 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">2.4</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.4">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.4">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.4;hb=refs/heads/2.4">tree</a></td>
+</tr><tr class="light">
+<td><i>10 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">2.3</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.3">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.3">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.3;hb=refs/heads/2.3">tree</a></td>
+</tr><tr class="dark">
+<td><i>11 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">2.2</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.2">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.2">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.2;hb=refs/heads/2.2">tree</a></td>
+</tr><tr class="light">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">2.1</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/2.1">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/2.1">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/2.1;hb=refs/heads/2.1">tree</a></td>
+</tr><tr class="dark">
+<td><i>12 years ago</i></td>
+<td><a class="list name" href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">master</a></td>
+<td class="link"><a href="/gitweb/?p=ports/opt.git;a=shortlog;h=refs/heads/master">shortlog</a> | <a href="/gitweb/?p=ports/opt.git;a=log;h=refs/heads/master">log</a> | <a href="/gitweb/?p=ports/opt.git;a=tree;h=refs/heads/master;hb=refs/heads/master">tree</a></td>
+</tr></table>
+</div>
+<div class="page_footer">
+<div class="page_footer_text">CRUX opt ports</div>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=rss" title="log RSS feed">RSS</a>
+<a class="rss_logo" href="/gitweb/?p=ports/opt.git;a=atom" title="log Atom feed">Atom</a>
+</div>
+<script type="text/javascript" src="gitweb.js"></script>
+<script type="text/javascript">
+window.onload = function () {
+};
+</script>
+</body>
+</html>
\ No newline at end of file
diff --git a/chromium/chromium-use-fromUTF8-for-UnicodeString-construction.patch b/chromium/chromium-use-fromUTF8-for-UnicodeString-construction.patch
new file mode 100644 (file)
index 0000000..0e0765a
--- /dev/null
@@ -0,0 +1,68 @@
+From e58fa0ba66272c5f28828b15d06c7e42a9882b3b Mon Sep 17 00:00:00 2001
+From: Jungshik Shin <jshin@chromium.org>
+Date: Sat, 16 Dec 2017 04:19:27 +0000
+Subject: [PATCH] Use fromUTF8() for UnicodeString construction from UTF-8
+
+Chrome's copy of ICU is built with U_CHARSET_IS_UTF8=1 so that |char *|
+buffer is treated as UTF-8 when constructing UnicodeString() regardless
+of the default encoding of the current locale on Linux or non-Unicode code
+page on Windows.
+
+However, some Linux distros do not set U_CHARSET_IS_UTF=1 when building
+ICU and Chromium build with system_icu crashes when Chromium is run in
+non-UTF-8 locale (e.g. 'C').
+
+To make Chromium work in a non-UTF-8 locale (which is pretty rare these
+days), use 'icu::UnicodeString::fromUTF8(StringPiece)' instead of
+'icu::UnicodeString(const char*)'.
+
+Bug: 772655
+Test: components_unittests --gtest_filter=*IDN*
+Test: Chromium built with system_icu does not crash in C locale.
+Change-Id: I0daa284ec06b8e83814fc70eb8e9e5c96444ebfa
+Reviewed-on: https://chromium-review.googlesource.com/831247
+Reviewed-by: Peter Kasting <pkasting@chromium.org>
+Commit-Queue: Jungshik Shin <jshin@chromium.org>
+Cr-Commit-Position: refs/heads/master@{#524586}
+---
+ components/url_formatter/idn_spoof_checker.cc | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/components/url_formatter/idn_spoof_checker.cc b/components/url_formatter/idn_spoof_checker.cc
+index a88c5e8f8331..aee748d8a4d5 100644
+--- a/components/url_formatter/idn_spoof_checker.cc
++++ b/components/url_formatter/idn_spoof_checker.cc
+@@ -110,8 +110,8 @@ IDNSpoofChecker::IDNSpoofChecker() {
+   // These Cyrillic letters look like Latin. A domain label entirely made of
+   // these letters is blocked as a simplified whole-script-spoofable.
+-  cyrillic_letters_latin_alike_ =
+-      icu::UnicodeSet(icu::UnicodeString("[асԁеһіјӏорԛѕԝхуъЬҽпгѵѡ]"), status);
++  cyrillic_letters_latin_alike_ = icu::UnicodeSet(
++      icu::UnicodeString::fromUTF8("[асԁеһіјӏорԛѕԝхуъЬҽпгѵѡ]"), status);
+   cyrillic_letters_latin_alike_.freeze();
+   cyrillic_letters_ =
+@@ -141,8 +141,8 @@ IDNSpoofChecker::IDNSpoofChecker() {
+   UParseError parse_error;
+   diacritic_remover_.reset(icu::Transliterator::createFromRules(
+       UNICODE_STRING_SIMPLE("DropAcc"),
+-      icu::UnicodeString("::NFD; ::[:Nonspacing Mark:] Remove; ::NFC;"
+-                         " ł > l; ø > o; đ > d;"),
++      icu::UnicodeString::fromUTF8("::NFD; ::[:Nonspacing Mark:] Remove; ::NFC;"
++                                   " ł > l; ø > o; đ > d;"),
+       UTRANS_FORWARD, parse_error, status));
+   // Supplement the Unicode confusable list by the following mapping.
+@@ -158,7 +158,7 @@ IDNSpoofChecker::IDNSpoofChecker() {
+   //   - U+0D1F (ട) => s
+   extra_confusable_mapper_.reset(icu::Transliterator::createFromRules(
+       UNICODE_STRING_SIMPLE("ExtraConf"),
+-      icu::UnicodeString(
++      icu::UnicodeString::fromUTF8(
+           "ӏ > l; [кĸκ] > k; п > n; [ƅь] > b; в > b; м > m; н > h; "
+           "т > t; [шщ] > w; ട > s;"),
+       UTRANS_FORWARD, parse_error, status));
+-- 
+2.15.1
+
diff --git a/firefox/.signature b/firefox/.signature
new file mode 100644 (file)
index 0000000..fae3fb6
--- /dev/null
@@ -0,0 +1,7 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauFGBdXv3dSax4dEYy7HAl5Svc6nLDioHcyaTYMtcYxLXDUXl95JKW15Bp3Xzlv9tI2jy8X9XJQxpo1cx/7gkLw0=
+SHA256 (Pkgfile) = 148fee33baccf1c33f20ef5af96ae9b73c10c33038c946321dc12bad3c42b340
+SHA256 (.footprint) = 9e7da7026823a39848eddb14dbb15724ca09774202ac5e60749c2f1d26851a7e
+SHA256 (firefox-52.8.0esr.source.tar.xz) = babed4fe0ae95783e39358aedf7111b20fd9442f73b3b41b025fa4951fe76287
+SHA256 (firefox-install-dir.patch) = 32c0102521b7296627ba457575c742746400680c3aecd18be8b1b382dccdc0ce
+SHA256 (firefox.desktop) = 8ba3439f3dfc5cab883641969c93d8d15f8f20d7188d9568346b2edad52d6f91
diff --git a/icu/.signature b/icu/.signature
new file mode 100644 (file)
index 0000000..b5c3bbb
--- /dev/null
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauEQzEpHriwsYu0bOQ9Zyf7F0G62JcBr0C2U1y80t6IJzuhZYFdx0PmX+0wA9DOIZ3LJzPIAtIuvl0A4hG7+HXgA=
+SHA256 (Pkgfile) = 6d2d75379ab5be50b2d8da8fc3c346253aba53ac20d640b2a3e5c280ffe9c411
+SHA256 (.footprint) = 0d304799bbf096baf182ef7faf158b24949d374c6b64ba137ba8bae28e5072f2
+SHA256 (icu4c-62_1-src.tgz) = 3dd9868d666350dda66a6e305eecde9d479fb70b30d5b55d78a1deffb97d5aa3
diff --git a/keyutils/.signature b/keyutils/.signature
new file mode 100644 (file)
index 0000000..1ae8fea
--- /dev/null
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauNZmj8ZYaOc8RaUgqg3teCakqFL+n4G6kN2SLUv/eRgUa3RiplFh2zvUG0aJDWYiT/FRi2O2Fcm8IPeL7HBA6Q8=
+SHA256 (Pkgfile) = 01da167b691908828f6915378d1fede905ca12f56c697a9dba183030815a5133
+SHA256 (.footprint) = 81a06fa2d4e4a914b4d8e13d95463a737756b389455fec4f993e3bf1d196615b
+SHA256 (keyutils-1.5.11.tar.bz2) = 11584488206edc30736263eb855bf7793f16e661987241d333d3cb5ea479b1b5
diff --git a/nspr/.signature b/nspr/.signature
new file mode 100644 (file)
index 0000000..67fcfdf
--- /dev/null
@@ -0,0 +1,6 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauLxkNAKct+WGgMMOY5OtgJRcf5Av/ye13iVjOw0sSKwvxjV0mgJ8lFStPbUyQ4a92SXSJHii+M5BPDk24DQKEQg=
+SHA256 (Pkgfile) = 2b4aa892c3915e2cdd495b49b88789d83bbf4866e893ae5742e1acfda05d4cd8
+SHA256 (.footprint) = ca5a9f3ef9c25bbb9276ddaf58e30935286f63deee679e7268d602e09f9934af
+SHA256 (nspr-4.19.tar.gz) = 2ed95917fa2277910d1d1cf36030607dccc0ba522bba08e2af13c113dcd8f729
+SHA256 (nspr.pc.in) = 57a655d034221760ce10278d2050bbe040b1db55be3db6e3a30f04a570877b71
diff --git a/nss/.signature b/nss/.signature
new file mode 100644 (file)
index 0000000..408503d
--- /dev/null
@@ -0,0 +1,7 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauLCQr64TstEujnCKQPCeCH8/SmAGWI4HvX9BiwRVokQdmtrdFGGI5sCpW4W/nbSMryBYZuNnOkqizq2mlixXNwY=
+SHA256 (Pkgfile) = f7c5783343c5bc4413c88d16981a48aac237df23b3be928251f65711bc00d1e6
+SHA256 (.footprint) = 0a4d27e330acd0d1d51a4c00efcc2b4f12faee05259b022162fccfa6a48616f1
+SHA256 (nss-3.38.tar.gz) = 2c643d3c08d6935f4d325f40743719b6990aa25a79ec2f8f712c99d086672f62
+SHA256 (nss-config.in) = 08dbc1202186308e86125b5c5e7e2d0e1bd1bd5ed65eab011b9af210f656aff5
+SHA256 (nss.pc.in) = 135fbde6866e422b7a436e18d5b8e0defbb67dde6b8e1dc9e84de14b5c645626
diff --git a/python/.signature b/python/.signature
new file mode 100644 (file)
index 0000000..0515d61
--- /dev/null
@@ -0,0 +1,6 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauENElsZ7UaedrS9B7BhFKqAswfSq2CSvlhoBbO4S3E7rmURqAtlY2ptf6iBKvlNC31cBnhhUYWFX14jkMVlCowo=
+SHA256 (Pkgfile) = 88c6f66d2c31232c824b1c5c0b02ec2acf31e32ad5c3855e12b98b84812b52a2
+SHA256 (.footprint) = 408d0aaf20344ddd5d5442413f628ec229bca106212dc5ceaff7e35538d75a91
+SHA256 (Python-2.7.15.tar.xz) = 22d9b1ac5b26135ad2b8c2901a9413537e08749a753356ee913c84dbd2df5574
+SHA256 (pyconfig.h) = 081426cb9524c2e156a71bb035c25a67e44d389afc6f7e091bcf86a7f4e2002f
diff --git a/python3/.signature b/python3/.signature
new file mode 100644 (file)
index 0000000..549438a
--- /dev/null
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauHmNdPFov7oIDLzGyvCu8rsm6XKB6D7ymDRPM6s0ztMDR8j+DL/p1eEEx1DLoXFFPhLPSBXUmclbiZiWoNktYQ0=
+SHA256 (Pkgfile) = 0faf8d6cb4c872dc9851866537bc79754eef02a7974873bc0d42ea9f42601e21
+SHA256 (.footprint) = 2958ef3d6fe205e5191ea4261cae34be7fb22118774e721e8b67a3e1ceee8836
+SHA256 (Python-3.6.5.tar.xz) = f434053ba1b5c8a5cc597e966ead3c5143012af827fd3f0697d21450bb8d87a6
diff --git a/qt4/.signature b/qt4/.signature
new file mode 100644 (file)
index 0000000..05c9aae
--- /dev/null
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauH6TerDamFhZA9ZBo1Ab6dpLb5+l0vyHkIbmffqLE70v+p9Dw4Xq2IQhWwaJ/u9oGta1sIGfiJgBfDp2T8VlGAA=
+SHA256 (Pkgfile) = 50f1138bd9973d6210edcc0215708ea879ba138a13800d0d8a17b8f74c2c9d74
+SHA256 (.footprint) = 254ff8e725593951bbef43fd94bf7755726daedbacdf7fdc6df9f82d4b50e4c9
+SHA256 (qt-everywhere-opensource-src-4.8.7.tar.gz) = e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0
diff --git a/ruby/.signature b/ruby/.signature
new file mode 100644 (file)
index 0000000..2566736
--- /dev/null
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/opt-arm.pub
+RWQh9Dk2FlLauCuBuSjRQSZ9oF05ercBpHUvy9ES2qpSE6qyRmwR0xHfNs7MAxSOcGmLHFB6D+IXTrEkR4NYoLxbcuF0xrmURQQ=
+SHA256 (Pkgfile) = b2ac0a2692e3f87aba6ae935a4e682dac9e9e43e4b68184a500085119aa91a32
+SHA256 (.footprint) = 89bf3be59da1954e8333cd75c92c3216e160e7436ebe473d0c52d73752f0c873
+SHA256 (ruby-2.5.3.tar.xz) = 1cc9d0359a8ea35fc6111ec830d12e60168f3b9b305a3c2578357d360fcf306f