Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[imap + ssl] connect and upgrade asynchronously in multi mode #7

Merged
2 commits merged into from
Mar 12, 2011

Conversation

bnoordhuis
Copy link
Contributor

Hi bagder,

Could you review these patches? I'd like to know if this is an acceptable approach because I need to do it for SMTP and maybe POP3 too. :-)

Here is a test case that covers all modes (easy vs. multi, IMAP, IMAPS and IMAP + STARTTLS).

https://gist.github.com/828613

Thanks!

@bagder
Copy link
Member

bagder commented Feb 16, 2011

Yes, I think this looks like a fine approach to do this.

Please post your patch(es) to the curl-library mailing list so that others can also join in and review/apply the work. Also please consider turning your test case into a curl test case, see the test/libtest/ directory for how we've done other libcurl tests and see test 801 for an existing IMAP test.

Thanks a lot for your work on this!

@bnoordhuis
Copy link
Contributor Author

Will do, bagder. I've some questions on how to convert the test cases but I'll post them to the mailing list.

Andersbakken added a commit to Andersbakken/curl that referenced this pull request Mar 1, 2016
This prevents a crash in the following scenario:

2 (or more) requests are made to the same host and pipelining is enabled.

The first request times out. Curl_done will return early in this block
since conn->send_pipe->size == 1:

  if((conn->send_pipe->size + conn->recv_pipe->size != 0 &&
      !data->set.reuse_forbid &&
      !conn->bits.close)) {
    /* Stop if pipeline is not empty and we do not have to close
       connection. */
    DEBUGF(infof(data, "Connection still in use, no more Curl_done now!\n"));
    return CURLE_OK;
  }

When the second one fails it will not return early and will in fact
call Curl_disconnect which will free the connection.

When curl_easy_cleanup is called on the first request his easy_conn
pointer will be a dangling pointer and the app will crash.

ASAN output:

==7245==ERROR: AddressSanitizer: heap-use-after-free on address 0xda366d80 at pc 0x986d05b bp 0xd94b16d8 sp 0xd94b16c0
READ of size 4 at 0xda366d80 thread T16 (RESOURCE_HTTP)
    #0 0x986d05a in curl_multi_remove_handle
    curl#1 0x98a3e2b in Curl_close
    curl#2 0x985abb5 in curl_easy_cleanup
    curl#3 0x9777302 in <application frames>
    curl#4 0xf7b2a016 in __asan::AsanThread::ThreadStart(unsigned long)
    curl#5 0xf7b16f40 in asan_thread_start(void*)
    curl#6 0xf7a971a9 in start_thread
    curl#7 0xf681b02d in clone

0xda366d80 is located 0 bytes inside of 1100-byte region [0xda366d80,0xda3671cc)
freed by thread T16 (RESOURCE_HTTP) here:
    #0 0xf7b1fa5a in free
    curl#1 0x98b5948 in Curl_disconnect
    curl#2 0x98d067d in Curl_done
    curl#3 0x9875a61 in curl_multi_perform
    curl#4 0x9758a71 in <application frames>
    curl#5 0xf7b2a016 in __asan::AsanThread::ThreadStart(unsigned long)
    curl#6 0xf681b02d in clone
Andersbakken added a commit to Andersbakken/curl that referenced this pull request Oct 20, 2016
In short the easy handle needs to be disconnected from its connection at
this point since the connection still is serving other easy handles.

In our app we can reliably reproduce a crash in our http2 stress test
that is fixed by this change. I can't easily reproduce the same test in
a small example.

This is the gdb/asan output:

==11785==ERROR: AddressSanitizer: heap-use-after-free on address 0xe9f4fb80 at pc 0x09f41f19 bp 0xf27be688 sp 0xf27be67c
READ of size 4 at 0xe9f4fb80 thread T13 (RESOURCE_HTTP)
    #0 0x9f41f18 in curl_multi_remove_handle /path/to/source/3rdparty/curl/lib/multi.c:666

0xe9f4fb80 is located 0 bytes inside of 1128-byte region [0xe9f4fb80,0xe9f4ffe8)
freed by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1b5c2 in __interceptor_free /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:45
    curl#1 0x9f7862d in conn_free /path/to/source/3rdparty/curl/lib/url.c:2808
    curl#2 0x9f78c6a in Curl_disconnect /path/to/source/3rdparty/curl/lib/url.c:2876
    curl#3 0x9f41b09 in multi_done /path/to/source/3rdparty/curl/lib/multi.c:615
    curl#4 0x9f48017 in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1896
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

previously allocated by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1ba27 in __interceptor_calloc /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:70
    curl#1 0x9f7dfa6 in allocate_conn /path/to/source/3rdparty/curl/lib/url.c:3904
    curl#2 0x9f88ca0 in create_conn /path/to/source/3rdparty/curl/lib/url.c:5797
    curl#3 0x9f8c928 in Curl_connect /path/to/source/3rdparty/curl/lib/url.c:6438
    curl#4 0x9f45a8c in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1411
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

SUMMARY: AddressSanitizer: heap-use-after-free /path/to/source/3rdparty/curl/lib/multi.c:666 in curl_multi_remove_handle
Shadow bytes around the buggy address:
  0x3d3e9f20: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f30: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f40: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f50: fd fd fd fd fd fd fd fd fd fd fd fd fd fa fa fa
  0x3d3e9f60: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x3d3e9f70:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f80: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f90: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fa0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fb0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fc0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==11785==ABORTING

Thread 14 "RESOURCE_HTTP" received signal SIGABRT, Aborted.
[Switching to Thread 0xf27bfb40 (LWP 12324)]
0xf7fd8be9 in __kernel_vsyscall ()
(gdb) bt
Andersbakken added a commit to Andersbakken/curl that referenced this pull request Oct 20, 2016
In short the easy handle needs to be disconnected from its connection at
this point since the connection still is serving other easy handles.

In our app we can reliably reproduce a crash in our http2 stress test
that is fixed by this change. I can't easily reproduce the same test in
a small example.

This is the gdb/asan output:

==11785==ERROR: AddressSanitizer: heap-use-after-free on address 0xe9f4fb80 at pc 0x09f41f19 bp 0xf27be688 sp 0xf27be67c
READ of size 4 at 0xe9f4fb80 thread T13 (RESOURCE_HTTP)
    #0 0x9f41f18 in curl_multi_remove_handle /path/to/source/3rdparty/curl/lib/multi.c:666

0xe9f4fb80 is located 0 bytes inside of 1128-byte region [0xe9f4fb80,0xe9f4ffe8)
freed by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1b5c2 in __interceptor_free /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:45
    curl#1 0x9f7862d in conn_free /path/to/source/3rdparty/curl/lib/url.c:2808
    curl#2 0x9f78c6a in Curl_disconnect /path/to/source/3rdparty/curl/lib/url.c:2876
    curl#3 0x9f41b09 in multi_done /path/to/source/3rdparty/curl/lib/multi.c:615
    curl#4 0x9f48017 in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1896
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

previously allocated by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1ba27 in __interceptor_calloc /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:70
    curl#1 0x9f7dfa6 in allocate_conn /path/to/source/3rdparty/curl/lib/url.c:3904
    curl#2 0x9f88ca0 in create_conn /path/to/source/3rdparty/curl/lib/url.c:5797
    curl#3 0x9f8c928 in Curl_connect /path/to/source/3rdparty/curl/lib/url.c:6438
    curl#4 0x9f45a8c in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1411
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

SUMMARY: AddressSanitizer: heap-use-after-free /path/to/source/3rdparty/curl/lib/multi.c:666 in curl_multi_remove_handle
Shadow bytes around the buggy address:
  0x3d3e9f20: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f30: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f40: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f50: fd fd fd fd fd fd fd fd fd fd fd fd fd fa fa fa
  0x3d3e9f60: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x3d3e9f70:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f80: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f90: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fa0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fb0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fc0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==11785==ABORTING

Thread 14 "RESOURCE_HTTP" received signal SIGABRT, Aborted.
[Switching to Thread 0xf27bfb40 (LWP 12324)]
0xf7fd8be9 in __kernel_vsyscall ()
(gdb) bt
Andersbakken added a commit to Andersbakken/curl that referenced this pull request Oct 20, 2016
In short the easy handle needs to be disconnected from its connection at
this point since the connection still is serving other easy handles.

In our app we can reliably reproduce a crash in our http2 stress test
that is fixed by this change. I can't easily reproduce the same test in
a small example.

This is the gdb/asan output:

==11785==ERROR: AddressSanitizer: heap-use-after-free on address 0xe9f4fb80 at pc 0x09f41f19 bp 0xf27be688 sp 0xf27be67c
READ of size 4 at 0xe9f4fb80 thread T13 (RESOURCE_HTTP)
    #0 0x9f41f18 in curl_multi_remove_handle /path/to/source/3rdparty/curl/lib/multi.c:666

0xe9f4fb80 is located 0 bytes inside of 1128-byte region [0xe9f4fb80,0xe9f4ffe8)
freed by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1b5c2 in __interceptor_free /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:45
    curl#1 0x9f7862d in conn_free /path/to/source/3rdparty/curl/lib/url.c:2808
    curl#2 0x9f78c6a in Curl_disconnect /path/to/source/3rdparty/curl/lib/url.c:2876
    curl#3 0x9f41b09 in multi_done /path/to/source/3rdparty/curl/lib/multi.c:615
    curl#4 0x9f48017 in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1896
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

previously allocated by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1ba27 in __interceptor_calloc /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:70
    curl#1 0x9f7dfa6 in allocate_conn /path/to/source/3rdparty/curl/lib/url.c:3904
    curl#2 0x9f88ca0 in create_conn /path/to/source/3rdparty/curl/lib/url.c:5797
    curl#3 0x9f8c928 in Curl_connect /path/to/source/3rdparty/curl/lib/url.c:6438
    curl#4 0x9f45a8c in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1411
    curl#5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    curl#6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    curl#7 0x9c445e0 in ...
    curl#8 0x9c4cf1d in ...
    curl#9 0xa2be6b5 in ...
    curl#10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    curl#11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

SUMMARY: AddressSanitizer: heap-use-after-free /path/to/source/3rdparty/curl/lib/multi.c:666 in curl_multi_remove_handle
Shadow bytes around the buggy address:
  0x3d3e9f20: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f30: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f40: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f50: fd fd fd fd fd fd fd fd fd fd fd fd fd fa fa fa
  0x3d3e9f60: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x3d3e9f70:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f80: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f90: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fa0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fb0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fc0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==11785==ABORTING

Thread 14 "RESOURCE_HTTP" received signal SIGABRT, Aborted.
[Switching to Thread 0xf27bfb40 (LWP 12324)]
0xf7fd8be9 in __kernel_vsyscall ()
 (gdb) bt
 #0  0xf7fd8be9 in __kernel_vsyscall ()
 curl#1  0xf4c7ee89 in __GI_raise (sig=6) at ../sysdeps/unix/sysv/linux/raise.c:54
 curl#2  0xf4c803e7 in __GI_abort () at abort.c:89
 curl#3  0xf7b2ef2e in __sanitizer::Abort () at /opt/toolchain/src/gcc-6.2.0/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc:122
 curl#4  0xf7b262fa in __sanitizer::Die () at /opt/toolchain/src/gcc-6.2.0/libsanitizer/sanitizer_common/sanitizer_common.cc:145
 curl#5  0xf7b21ab3 in __asan::ScopedInErrorReport::~ScopedInErrorReport (this=0xf27be171, __in_chrg=<optimized out>) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_report.cc:689
 curl#6  0xf7b214a5 in __asan::ReportGenericError (pc=166993689, bp=4068206216, sp=4068206204, addr=3925146496, is_write=false, access_size=4, exp=0, fatal=true) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_report.cc:1074
 curl#7  0xf7b21fce in __asan::__asan_report_load4 (addr=3925146496) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_rtl.cc:129
 curl#8  0x09f41f19 in curl_multi_remove_handle (multi=0xf3406080, data=0xde582400) at /path/to/source3rdparty/curl/lib/multi.c:666
 curl#9  0x09f6b277 in Curl_close (data=0xde582400) at /path/to/source3rdparty/curl/lib/url.c:415
 curl#10 0x09f3354e in curl_easy_cleanup (data=0xde582400) at /path/to/source3rdparty/curl/lib/easy.c:860
 curl#11 0x09c6de3f in ...
 curl#12 0x09c378c5 in ...
 curl#13 0x09c48133 in ...
 curl#14 0x09c4d092 in ...
 curl#15 0x0a2be6b6 in ...
 curl#16 0xf7aa5781 in asan_thread_start (arg=0xf2d22938) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
 curl#17 0xf5de52b5 in start_thread (arg=0xf27bfb40) at pthread_create.c:333
 curl#18 0xf4d3a16e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:114
bagder pushed a commit that referenced this pull request Oct 22, 2016
In short the easy handle needs to be disconnected from its connection at
this point since the connection still is serving other easy handles.

In our app we can reliably reproduce a crash in our http2 stress test
that is fixed by this change. I can't easily reproduce the same test in
a small example.

This is the gdb/asan output:

==11785==ERROR: AddressSanitizer: heap-use-after-free on address 0xe9f4fb80 at pc 0x09f41f19 bp 0xf27be688 sp 0xf27be67c
READ of size 4 at 0xe9f4fb80 thread T13 (RESOURCE_HTTP)
    #0 0x9f41f18 in curl_multi_remove_handle /path/to/source/3rdparty/curl/lib/multi.c:666

0xe9f4fb80 is located 0 bytes inside of 1128-byte region [0xe9f4fb80,0xe9f4ffe8)
freed by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1b5c2 in __interceptor_free /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:45
    #1 0x9f7862d in conn_free /path/to/source/3rdparty/curl/lib/url.c:2808
    #2 0x9f78c6a in Curl_disconnect /path/to/source/3rdparty/curl/lib/url.c:2876
    #3 0x9f41b09 in multi_done /path/to/source/3rdparty/curl/lib/multi.c:615
    #4 0x9f48017 in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1896
    #5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    #6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    #7 0x9c445e0 in ...
    #8 0x9c4cf1d in ...
    #9 0xa2be6b5 in ...
    #10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    #11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

previously allocated by thread T13 (RESOURCE_HTTP) here:
    #0 0xf7b1ba27 in __interceptor_calloc /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_malloc_linux.cc:70
    #1 0x9f7dfa6 in allocate_conn /path/to/source/3rdparty/curl/lib/url.c:3904
    #2 0x9f88ca0 in create_conn /path/to/source/3rdparty/curl/lib/url.c:5797
    #3 0x9f8c928 in Curl_connect /path/to/source/3rdparty/curl/lib/url.c:6438
    #4 0x9f45a8c in multi_runsingle /path/to/source/3rdparty/curl/lib/multi.c:1411
    #5 0x9f490f1 in curl_multi_perform /path/to/source/3rdparty/curl/lib/multi.c:2123
    #6 0x9c4443c in perform /path/to/source/src/net/resourcemanager/ResourceManagerCurlThread.cpp:854
    #7 0x9c445e0 in ...
    #8 0x9c4cf1d in ...
    #9 0xa2be6b5 in ...
    #10 0xf7aa5780 in asan_thread_start /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
    #11 0xf4d3a16d in __clone (/lib/i386-linux-gnu/libc.so.6+0xe716d)

SUMMARY: AddressSanitizer: heap-use-after-free /path/to/source/3rdparty/curl/lib/multi.c:666 in curl_multi_remove_handle
Shadow bytes around the buggy address:
  0x3d3e9f20: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f30: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f40: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f50: fd fd fd fd fd fd fd fd fd fd fd fd fd fa fa fa
  0x3d3e9f60: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x3d3e9f70:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f80: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9f90: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fa0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fb0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
  0x3d3e9fc0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==11785==ABORTING

Thread 14 "RESOURCE_HTTP" received signal SIGABRT, Aborted.
[Switching to Thread 0xf27bfb40 (LWP 12324)]
0xf7fd8be9 in __kernel_vsyscall ()
 (gdb) bt
 #0  0xf7fd8be9 in __kernel_vsyscall ()
 #1  0xf4c7ee89 in __GI_raise (sig=6) at ../sysdeps/unix/sysv/linux/raise.c:54
 #2  0xf4c803e7 in __GI_abort () at abort.c:89
 #3  0xf7b2ef2e in __sanitizer::Abort () at /opt/toolchain/src/gcc-6.2.0/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc:122
 #4  0xf7b262fa in __sanitizer::Die () at /opt/toolchain/src/gcc-6.2.0/libsanitizer/sanitizer_common/sanitizer_common.cc:145
 #5  0xf7b21ab3 in __asan::ScopedInErrorReport::~ScopedInErrorReport (this=0xf27be171, __in_chrg=<optimized out>) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_report.cc:689
 #6  0xf7b214a5 in __asan::ReportGenericError (pc=166993689, bp=4068206216, sp=4068206204, addr=3925146496, is_write=false, access_size=4, exp=0, fatal=true) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_report.cc:1074
 #7  0xf7b21fce in __asan::__asan_report_load4 (addr=3925146496) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_rtl.cc:129
 #8  0x09f41f19 in curl_multi_remove_handle (multi=0xf3406080, data=0xde582400) at /path/to/source3rdparty/curl/lib/multi.c:666
 #9  0x09f6b277 in Curl_close (data=0xde582400) at /path/to/source3rdparty/curl/lib/url.c:415
 #10 0x09f3354e in curl_easy_cleanup (data=0xde582400) at /path/to/source3rdparty/curl/lib/easy.c:860
 #11 0x09c6de3f in ...
 #12 0x09c378c5 in ...
 #13 0x09c48133 in ...
 #14 0x09c4d092 in ...
 #15 0x0a2be6b6 in ...
 #16 0xf7aa5781 in asan_thread_start (arg=0xf2d22938) at /opt/toolchain/src/gcc-6.2.0/libsanitizer/asan/asan_interceptors.cc:226
 #17 0xf5de52b5 in start_thread (arg=0xf27bfb40) at pthread_create.c:333
 #18 0xf4d3a16e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:114

Fixes #1083
@usergoodvery usergoodvery mentioned this pull request Nov 9, 2016
@shaka25 shaka25 mentioned this pull request May 8, 2017
@kolychen kolychen mentioned this pull request May 18, 2017
Thinstation pushed a commit to Thinstation/thinstation that referenced this pull request Nov 19, 2018
	modified:   ts/bin/newpython
	new file:   ts/build/boot-images/hw/boot/hwlister/initrd
	new file:   ts/build/boot-images/hw/boot/hwlister/vmlinuz
	modified:   ts/build/build
	modified:   ts/build/build.conf.example
	modified:   ts/build/conf/LiveCD/build.conf.example
	modified:   ts/build/conf/debuginit/build.conf.example
	modified:   ts/build/conf/default/build.conf.example
	modified:   ts/build/conf/development/build.conf.example
	modified:   ts/build/conf/devstation/build.conf.example
	modified:   ts/build/conf/freerdp/build.conf.example
	modified:   ts/build/conf/hwlister/build.conf.example
	modified:   ts/build/conf/icewm-rdesktop/build.conf.example
	modified:   ts/build/conf/icewm/build.conf.example
	modified:   ts/build/conf/installer/build.conf.example
	modified:   ts/build/conf/itona-Md54/build.conf.example
	modified:   ts/build/conf/rdesktop-tiny/build.conf.example
	modified:   ts/build/conf/rdesktop/build.conf.example
	modified:   ts/build/conf/tiny/build.conf.example
	modified:   ts/build/conf/vmviewpcoip-micro/build.conf.example
	modified:   ts/build/conf/vmviewpcoip/build.conf.example
	modified:   ts/build/conf/xterm/build.conf.example
	deleted:    ts/build/packages/crystalhd/.dna
	deleted:    ts/build/packages/crystalhd/dependencies
	modified:   ts/build/packages/dig/.dna
	modified:   ts/build/packages/freerdp/dependencies
	new file:   ts/build/packages/gdk-pixbuf/.dna
	renamed:    ts/build/packages/sound-esd/dependencies -> ts/build/packages/gdk-pixbuf/dependencies
	new file:   ts/build/packages/gnome-core/build/extra/lib/thinstation/system/gnome
	modified:   ts/build/packages/gnome-core/build/finalize
	modified:   ts/build/packages/gnome-core/build/install
	deleted:    ts/build/packages/gnome-media/.dna
	deleted:    ts/build/packages/gnome-media/.gitignore
	deleted:    ts/build/packages/gnome-media/build/extra/etc/cmd/gstreamer.global
	deleted:    ts/build/packages/gnome-media/build/extra/etc/cmd/mixer.global
	deleted:    ts/build/packages/gnome-media/build/extra/etc/init.d/gstreamer
	deleted:    ts/build/packages/gnome-media/build/extra/etc/init.d/mixer
	deleted:    ts/build/packages/gnome-media/build/extra/etc/ld.so.conf.d/glade.conf
	deleted:    ts/build/packages/gnome-media/build/extra/lib/menu/gstreamer
	deleted:    ts/build/packages/gnome-media/build/extra/lib/menu/mixer
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/gstreamer_16x16.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/gstreamer_32x32.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/mixer_16x16.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/mixer_32x32.xpm
	deleted:    ts/build/packages/gnome-media/build/install
	deleted:    ts/build/packages/gnome-media/build/remove
	deleted:    ts/build/packages/gnome-media/dependencies
	deleted:    ts/build/packages/gnome-network-properties/.dna
	deleted:    ts/build/packages/gnome-network-properties/dependencies
	deleted:    ts/build/packages/gnome-network-properties/etc/cmd/gnome-network-properties.global
	deleted:    ts/build/packages/gnome-network-properties/etc/init.d/gnome-network-properties
	deleted:    ts/build/packages/gnome-network-properties/lib/applications/gnome-network-properties.desktop
	deleted:    ts/build/packages/gnome-network-properties/lib/menu/gnome-network-properties
	deleted:    ts/build/packages/gnome-network-properties/lib/pixmaps/gnome-network-properties_16x16.xpm
	deleted:    ts/build/packages/gnome-network-properties/lib/pixmaps/gnome-network-properties_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/.dna
	deleted:    ts/build/packages/gnome-pulse/.gitignore
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/cmd/gstreamer.global
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/cmd/mixer.global
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/init.d/gstreamer
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/init.d/mixer
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/ld.so.conf.d/glade.conf
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/menu/gstreamer
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/menu/mixer
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/gstreamer_16x16.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/gstreamer_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/mixer_16x16.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/mixer_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/build/finalize
	deleted:    ts/build/packages/gnome-pulse/build/install
	deleted:    ts/build/packages/gnome-pulse/build/remove
	deleted:    ts/build/packages/gnome-pulse/dependencies
	deleted:    ts/build/packages/gnome-python/.dna
	deleted:    ts/build/packages/gnome-python/dependencies
	modified:   ts/build/packages/gnome-search-tool/.dna
	renamed:    ts/build/packages/gnome-search-tool/lib/menu/gnome-search-tool -> ts/build/packages/gnome-search-tool/build/extra/lib/menu/gnome-search-tool
	new file:   ts/build/packages/gnome-search-tool/build/install
	new file:   ts/build/packages/gnome-search-tool/build/remove
	deleted:    ts/build/packages/gst-ffmpeg/build/install
	deleted:    ts/build/packages/gst-ffmpeg/build/remove
	renamed:    ts/build/packages/gst-ffmpeg/.dna -> ts/build/packages/gst-libav/.dna
	renamed:    ts/build/packages/gst-ffmpeg/.gitignore -> ts/build/packages/gst-libav/.gitignore
	new file:   ts/build/packages/gst-libav/build/install
	new file:   ts/build/packages/gst-libav/build/remove
	renamed:    ts/build/packages/gst-ffmpeg/dependencies -> ts/build/packages/gst-libav/dependencies
	modified:   ts/build/packages/gtk-2.0/.dna
	modified:   ts/build/packages/gtk-2.0/dependencies
	modified:   ts/build/packages/ica/.dna
	modified:   ts/build/packages/libxml2-python/.dna
	deleted:    ts/build/packages/notify-python/.dna
	deleted:    ts/build/packages/notify-python/dependencies
	modified:   ts/build/packages/pycurl/.dna
	new file:   ts/build/packages/pycurl/.gitignore
	new file:   ts/build/packages/pycurl/build/install
	new file:   ts/build/packages/pycurl/build/remove
	deleted:    ts/build/packages/sound-esd/.dna
	deleted:    ts/build/packages/sound-esd/etc/init.d/sound-esd
	deleted:    ts/build/packages/sound-esd/etc/rc5.d/S10sound-esd
	modified:   ts/build/packages/tarantella/.dna
	modified:   ts/build/packages/xfwm4/build/install
	modified:   ts/ports/binary-core/intel-microcode/.gitignore
	modified:   ts/ports/binary-core/intel-microcode/intel-microcode#20170511-1.pkg.tar.xz
	modified:   ts/ports/binary-opt/edk2/.footprint
	modified:   ts/ports/binary-opt/edk2/.gitignore
	modified:   ts/ports/binary-opt/edk2/.md5sum
	modified:   ts/ports/binary-opt/edk2/Pkgfile
	renamed:    ts/ports/components/ocsinventory/.footprint -> ts/ports/binary-opt/ocsinventory/.footprint
	renamed:    ts/ports/components/ocsinventory/.md5sum -> ts/ports/binary-opt/ocsinventory/.md5sum
	new file:   ts/ports/binary-opt/ocsinventory/Pkgfile
	renamed:    ts/ports/components/ocsinventory/ocsinventory#git-1.pkg.tar.gz -> ts/ports/binary-opt/ocsinventory/ocsinventory#git-1.pkg.tar.gz
	modified:   ts/ports/components/autofs/.footprint
	modified:   ts/ports/components/autofs/.md5sum
	modified:   ts/ports/components/autofs/Pkgfile
	deleted:    ts/ports/components/autofs/autofs#5.0.6-1.pkg.tar.gz
	new file:   ts/ports/components/autofs/autofs#5.1.2-1.pkg.tar.xz
	modified:   ts/ports/components/avahi/.footprint
	modified:   ts/ports/components/avahi/.md5sum
	modified:   ts/ports/components/avahi/Pkgfile
	deleted:    ts/ports/components/avahi/avahi#0.6.31-1.pkg.tar.gz
	new file:   ts/ports/components/avahi/avahi#0.6.32-1.pkg.tar.xz
	new file:   ts/ports/components/colord/.footprint
	new file:   ts/ports/components/colord/.md5sum
	new file:   ts/ports/components/colord/Pkgfile
	new file:   ts/ports/components/colord/colord#1.3.2-1.pkg.tar.xz
	new file:   ts/ports/components/colord/post-install
	deleted:    ts/ports/components/crystalhd/.footprint
	deleted:    ts/ports/components/crystalhd/.md5sum
	deleted:    ts/ports/components/crystalhd/Pkgfile
	deleted:    ts/ports/components/crystalhd/crystalhd#2.6.11-1.pkg.tar.gz
	modified:   ts/ports/components/eekboard/.footprint
	deleted:    ts/ports/components/eekboard/eekboard#1.0.5-1.pkg.tar.gz
	new file:   ts/ports/components/eekboard/eekboard#1.0.5-1.pkg.tar.xz
	modified:   ts/ports/components/gc/.footprint
	modified:   ts/ports/components/gc/.md5sum
	new file:   ts/ports/components/gc/PKGBUILD
	modified:   ts/ports/components/gc/Pkgfile
	deleted:    ts/ports/components/gc/gc#7.2d-1.pkg.tar.gz
	new file:   ts/ports/components/gc/gc#7.6.0-1.pkg.tar.xz
	new file:   ts/ports/components/geoclue/.footprint
	new file:   ts/ports/components/geoclue/.md5sum
	new file:   ts/ports/components/geoclue/Pkgfile
	new file:   ts/ports/components/geoclue/geoclue#2.4.3-2.pkg.tar.xz
	new file:   ts/ports/components/ibus/.footprint
	renamed:    ts/ports/components/sbsigntool/.md5sum -> ts/ports/components/ibus/.md5sum
	new file:   ts/ports/components/ibus/Pkgfile
	new file:   ts/ports/components/ibus/ibus#1.5.14-1.pkg.tar.xz
	new file:   ts/ports/components/jemalloc/.footprint
	new file:   ts/ports/components/jemalloc/.md5sum
	new file:   ts/ports/components/jemalloc/PKGBUILD
	new file:   ts/ports/components/jemalloc/Pkgfile
	new file:   ts/ports/components/jemalloc/jemalloc#5.0.1-3.pkg.tar.xz
	modified:   ts/ports/components/kismet/.footprint
	modified:   ts/ports/components/kismet/.md5sum
	modified:   ts/ports/components/kismet/Pkgfile
	deleted:    ts/ports/components/kismet/kismet#2011-03-R2-1.pkg.tar.gz
	new file:   ts/ports/components/kismet/kismet#2016_07_R1-1.pkg.tar.xz
	new file:   ts/ports/components/libatomic_ops/.footprint
	new file:   ts/ports/components/libatomic_ops/.md5sum
	new file:   ts/ports/components/libatomic_ops/PKGBUILD
	new file:   ts/ports/components/libatomic_ops/Pkgfile
	new file:   ts/ports/components/libatomic_ops/libatomic_ops#7.4.6-1.pkg.tar.xz
	modified:   ts/ports/components/libcanberra/.footprint
	modified:   ts/ports/components/libcanberra/.md5sum
	modified:   ts/ports/components/libcanberra/Pkgfile
	deleted:    ts/ports/components/libcanberra/libcanberra#0.24-1.pkg.tar.gz
	new file:   ts/ports/components/libcanberra/libcanberra#0.30-1.pkg.tar.xz
	new file:   ts/ports/components/libgusb/.footprint
	new file:   ts/ports/components/libgusb/.md5sum
	new file:   ts/ports/components/libgusb/Pkgfile
	new file:   ts/ports/components/libgusb/libgusb#0.2.9-1.pkg.tar.xz
	modified:   ts/ports/components/libimobiledevice/Pkgfile
	deleted:    ts/ports/components/libimobiledevice/libimobiledevice#1.2.0-1.pkg.tar.gz
	new file:   ts/ports/components/libimobiledevice/libimobiledevice#1.2.0-1.pkg.tar.xz
	deleted:    ts/ports/components/libmbim/libmbim#1.12.2-1.pkg.tar.gz
	new file:   ts/ports/components/libmbim/libmbim#1.12.2-1.pkg.tar.xz
	deleted:    ts/ports/components/libmeanwhile/libmeanwhile#1.0.2-2.pkg.tar.gz
	new file:   ts/ports/components/libmeanwhile/libmeanwhile#1.0.2-2.pkg.tar.xz
	modified:   ts/ports/components/libmicrohttpd/.footprint
	deleted:    ts/ports/components/libmicrohttpd/libmicrohttpd#0.9.39-1.pkg.tar.gz
	new file:   ts/ports/components/libmicrohttpd/libmicrohttpd#0.9.39-1.pkg.tar.xz
	new file:   ts/ports/components/libmspack/.footprint
	new file:   ts/ports/components/libmspack/.md5sum
	new file:   ts/ports/components/libmspack/Pkgfile
	new file:   ts/ports/components/libmspack/libmspack#1.5-1.pkg.tar.xz
	deleted:    ts/ports/components/libqmi/libqmi#1.12.6-1.pkg.tar.gz
	new file:   ts/ports/components/libqmi/libqmi#1.12.6-1.pkg.tar.xz
	modified:   ts/ports/components/libslang2/Pkgfile
	deleted:    ts/ports/components/libslang2/libslang2#2.2.4-1.pkg.tar.gz
	new file:   ts/ports/components/libslang2/libslang2#2.2.4-1.pkg.tar.xz
	modified:   ts/ports/components/libssh2/.footprint
	modified:   ts/ports/components/libssh2/.md5sum
	new file:   ts/ports/components/libssh2/PKGBUILD
	modified:   ts/ports/components/libssh2/Pkgfile
	deleted:    ts/ports/components/libssh2/libssh2#1.4.3-1.pkg.tar.gz
	new file:   ts/ports/components/libssh2/libssh2#1.8.0-2.pkg.tar.xz
	modified:   ts/ports/components/libuser/.footprint
	modified:   ts/ports/components/libuser/.md5sum
	modified:   ts/ports/components/libuser/Pkgfile
	deleted:    ts/ports/components/libuser/libuser#0.57.7-1.pkg.tar.gz
	new file:   ts/ports/components/libuser/libuser#0.62-1.pkg.tar.xz
	new file:   ts/ports/components/libvirt-glib/.footprint
	new file:   ts/ports/components/libvirt-glib/.md5sum
	new file:   ts/ports/components/libvirt-glib/PKGBUILD
	new file:   ts/ports/components/libvirt-glib/Pkgfile
	new file:   ts/ports/components/libvirt-glib/libvirt-glib#1.0.0-1.pkg.tar.xz
	modified:   ts/ports/components/libvirt/libvirt#1.3.5-1.pkg.tar.xz
	new file:   ts/ports/components/libwacom/.footprint
	new file:   ts/ports/components/libwacom/.md5sum
	new file:   ts/ports/components/libwacom/Pkgfile
	new file:   ts/ports/components/libwacom/libwacom#0.21-1.pkg.tar.xz
	new file:   ts/ports/components/mariadb/.footprint
	new file:   ts/ports/components/mariadb/.md5sum
	new file:   ts/ports/components/mariadb/0001-openssl-1-1-0.patch
	new file:   ts/ports/components/mariadb/PKGBUILD
	new file:   ts/ports/components/mariadb/Pkgfile
	new file:   ts/ports/components/mariadb/mariadb#10.1.25-1.pkg.tar.xz
	new file:   ts/ports/components/mariadb/mariadb-sysusers.conf
	new file:   ts/ports/components/mariadb/mariadb-tmpfile.conf
	new file:   ts/ports/components/mariadb/mariadb.install
	modified:   ts/ports/components/motif/.footprint
	modified:   ts/ports/components/motif/.md5sum
	modified:   ts/ports/components/motif/Pkgfile
	deleted:    ts/ports/components/motif/motif#2.3.4-1.pkg.tar.gz
	new file:   ts/ports/components/motif/motif#2.3.6-1.pkg.tar.xz
	modified:   ts/ports/components/notification-daemon/.footprint
	modified:   ts/ports/components/notification-daemon/.md5sum
	modified:   ts/ports/components/notification-daemon/Pkgfile
	deleted:    ts/ports/components/notification-daemon/notification-daemon#0.4.0-1.pkg.tar.gz
	new file:   ts/ports/components/notification-daemon/notification-daemon#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/components/ocsinventory/Pkgfile
	modified:   ts/ports/components/open-vm-tools/.footprint
	modified:   ts/ports/components/open-vm-tools/.md5sum
	modified:   ts/ports/components/open-vm-tools/Pkgfile
	new file:   ts/ports/components/open-vm-tools/open-vm-tools#10.1.5-1.pkg.tar.xz
	deleted:    ts/ports/components/open-vm-tools/open-vm-tools#9.4.6-1770165-1.pkg.tar.gz
	modified:   ts/ports/components/opencryptoki/.footprint
	modified:   ts/ports/components/opencryptoki/.md5sum
	modified:   ts/ports/components/opencryptoki/Pkgfile
	deleted:    ts/ports/components/opencryptoki/opencryptoki#2.4.2-1.pkg.tar.gz
	new file:   ts/ports/components/opencryptoki/opencryptoki#3.7.0-1.pkg.tar.xz
	modified:   ts/ports/components/pidgin-sipe/.footprint
	modified:   ts/ports/components/pidgin-sipe/.md5sum
	modified:   ts/ports/components/pidgin-sipe/Pkgfile
	deleted:    ts/ports/components/pidgin-sipe/pidgin-sipe#1.18.4-1.pkg.tar.gz
	new file:   ts/ports/components/pidgin-sipe/pidgin-sipe#1.21.1-1.pkg.tar.xz
	deleted:    ts/ports/components/redland/redland#1.0.16-1.pkg.tar.gz
	new file:   ts/ports/components/redland/redland#1.0.16-1.pkg.tar.xz
	deleted:    ts/ports/components/sbsigntool/.footprint
	deleted:    ts/ports/components/sbsigntool/Pkgfile
	deleted:    ts/ports/components/sbsigntool/sbsigntool#git-1.pkg.tar.gz
	new file:   ts/ports/components/sbsigntools/.footprint
	new file:   ts/ports/components/sbsigntools/.md5sum
	new file:   ts/ports/components/sbsigntools/0001-sbsigntools-fix-autogen.sh-for-build-service.patch
	new file:   ts/ports/components/sbsigntools/Pkgfile
	new file:   ts/ports/components/sbsigntools/sbsigntools#0.8-2.pkg.tar.xz
	new file:   ts/ports/components/sbsigntools/update-openssl-api-usage-to-support-openssl-1.1.patch
	modified:   ts/ports/components/splashutils/.footprint
	modified:   ts/ports/components/splashutils/Pkgfile
	deleted:    ts/ports/components/splashutils/splashutils#1.5.4.4-1.pkg.tar.gz
	new file:   ts/ports/components/splashutils/splashutils#1.5.4.4-1.pkg.tar.xz
	modified:   ts/ports/components/strongswan/strongswan#5.5.3-2.pkg.tar.xz
	modified:   ts/ports/components/systemd/.footprint
	modified:   ts/ports/components/systemd/.md5sum
	modified:   ts/ports/components/systemd/Pkgfile
	new file:   ts/ports/components/systemd/post-install
	deleted:    ts/ports/components/systemd/systemd#211-1.pkg.tar.gz
	new file:   ts/ports/components/systemd/systemd#231-1.pkg.tar.xz
	modified:   ts/ports/components/tn5250/.md5sum
	modified:   ts/ports/components/tn5250/Pkgfile
	new file:   ts/ports/components/tn5250/patch-lib5250_sslstream_c.patch
	deleted:    ts/ports/components/udisks/udisks#2.1.3-1.pkg.tar.gz
	new file:   ts/ports/components/udisks/udisks#2.1.3-1.pkg.tar.xz
	modified:   ts/ports/components/usbmuxd/usbmuxd#1.1.0-1.pkg.tar.xz
	modified:   ts/ports/components/virt-viewer/.footprint
	modified:   ts/ports/components/virt-viewer/.md5sum
	modified:   ts/ports/components/virt-viewer/Pkgfile
	deleted:    ts/ports/components/virt-viewer/virt-viewer#2.0-1.pkg.tar.xz
	new file:   ts/ports/components/virt-viewer/virt-viewer#5.0-1.pkg.tar.xz
	new file:   ts/ports/components/virt-viewer/virt-viewer-2.0.tar.gz
	modified:   ts/ports/components/windowmaker/.footprint
	deleted:    ts/ports/components/windowmaker/windowmaker#0.95.5-git.pkg.tar.gz
	new file:   ts/ports/components/windowmaker/windowmaker#0.95.5-git.pkg.tar.xz
	new file:   ts/ports/components/yelp-tools/.footprint
	new file:   ts/ports/components/yelp-tools/.md5sum
	new file:   ts/ports/components/yelp-tools/Pkgfile
	new file:   ts/ports/components/yelp-tools/yelp-tools#3.10.0-1.pkg.tar.xz
	new file:   ts/ports/components/yelp-xsl/.footprint
	new file:   ts/ports/components/yelp-xsl/.md5sum
	new file:   ts/ports/components/yelp-xsl/Pkgfile
	new file:   ts/ports/components/yelp-xsl/yelp-xsl#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/contrib/aircrack-ng/.footprint
	deleted:    ts/ports/contrib/aircrack-ng/.md5sum
	deleted:    ts/ports/contrib/aircrack-ng/Pkgfile
	deleted:    ts/ports/contrib/aircrack-ng/README
	deleted:    ts/ports/contrib/aircrack-ng/aircrack-ng#1.1-1.pkg.tar.gz
	modified:   ts/ports/contrib/atkmm/.footprint
	modified:   ts/ports/contrib/atkmm/.md5sum
	modified:   ts/ports/contrib/atkmm/Pkgfile
	deleted:    ts/ports/contrib/atkmm/atkmm#2.22.6-1.pkg.tar.gz
	new file:   ts/ports/contrib/atkmm/atkmm#2.24.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/boost/.footprint
	new file:   ts/ports/contrib/boost/.md5sum
	new file:   ts/ports/contrib/boost/Pkgfile
	new file:   ts/ports/contrib/boost/boost#1.63.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/cairomm/.footprint
	modified:   ts/ports/contrib/cairomm/.md5sum
	modified:   ts/ports/contrib/cairomm/Pkgfile
	deleted:    ts/ports/contrib/cairomm/cairomm#1.10.0-1.pkg.tar.gz
	new file:   ts/ports/contrib/cairomm/cairomm#1.12.0-1.pkg.tar.xz
	new file:   ts/ports/contrib/cracklib/.footprint
	new file:   ts/ports/contrib/cracklib/.md5sum
	new file:   ts/ports/contrib/cracklib/Pkgfile
	new file:   ts/ports/contrib/cracklib/cracklib#2.9.6-1.pkg.tar.xz
	modified:   ts/ports/contrib/dillo/.footprint
	modified:   ts/ports/contrib/dillo/.md5sum
	modified:   ts/ports/contrib/dillo/Pkgfile
	deleted:    ts/ports/contrib/dillo/dillo#3.0.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/dillo/dillo#3.0.5-1.pkg.tar.xz
	modified:   ts/ports/contrib/dsniff/.md5sum
	modified:   ts/ports/contrib/dsniff/Pkgfile
	deleted:    ts/ports/contrib/dsniff/dsniff#2.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/dsniff/dsniff#2.4-1.pkg.tar.xz
	new file:   ts/ports/contrib/dsniff/dsniff-openssl-1.1.patch
	deleted:    ts/ports/contrib/enchant/enchant#1.6.0-2.pkg.tar.gz
	new file:   ts/ports/contrib/enchant/enchant#1.6.0-2.pkg.tar.xz
	new file:   ts/ports/contrib/gcr/.footprint
	new file:   ts/ports/contrib/gcr/.md5sum
	new file:   ts/ports/contrib/gcr/Pkgfile
	new file:   ts/ports/contrib/gcr/gcr#3.20.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/geany-plugins/.footprint
	deleted:    ts/ports/contrib/geany-plugins/geany-plugins#git-1.pkg.tar.gz
	new file:   ts/ports/contrib/geany-plugins/geany-plugins#git-1.pkg.tar.xz
	modified:   ts/ports/contrib/geany/.footprint
	modified:   ts/ports/contrib/geany/.md5sum
	modified:   ts/ports/contrib/geany/Pkgfile
	deleted:    ts/ports/contrib/geany/geany#1.24.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/geany/geany#1.29-1.pkg.tar.xz
	modified:   ts/ports/contrib/glib-networking/.footprint
	modified:   ts/ports/contrib/glib-networking/.md5sum
	modified:   ts/ports/contrib/glib-networking/Pkgfile
	deleted:    ts/ports/contrib/glib-networking/glib-networking#2.32.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/glib-networking/glib-networking#2.48.2-1.pkg.tar.xz
	modified:   ts/ports/contrib/glibmm/.footprint
	modified:   ts/ports/contrib/glibmm/.md5sum
	modified:   ts/ports/contrib/glibmm/Pkgfile
	deleted:    ts/ports/contrib/glibmm/glibmm#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/glibmm/glibmm#2.48.1-1.pkg.tar.xz
	deleted:    ts/ports/contrib/gst-ffmpeg/.footprint
	deleted:    ts/ports/contrib/gst-ffmpeg/.md5sum
	deleted:    ts/ports/contrib/gst-ffmpeg/Pkgfile
	deleted:    ts/ports/contrib/gst-ffmpeg/gst-ffmpeg#0.10.13-1.pkg.tar.gz
	new file:   ts/ports/contrib/gst-libav/.footprint
	new file:   ts/ports/contrib/gst-libav/.md5sum
	new file:   ts/ports/contrib/gst-libav/Pkgfile
	new file:   ts/ports/contrib/gst-libav/gst-libav#1.8.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-bad/.footprint
	new file:   ts/ports/contrib/gst-plugins-bad/.md5sum
	new file:   ts/ports/contrib/gst-plugins-bad/Pkgfile
	new file:   ts/ports/contrib/gst-plugins-bad/gst-plugins-bad#1.12.1-2.pkg.tar.xz
	modified:   ts/ports/contrib/gst-plugins-good/.footprint
	modified:   ts/ports/contrib/gst-plugins-good/.md5sum
	modified:   ts/ports/contrib/gst-plugins-good/Pkgfile
	deleted:    ts/ports/contrib/gst-plugins-good/gst-plugins-good#0.10.31-1.pkg.tar.gz
	new file:   ts/ports/contrib/gst-plugins-good/gst-plugins-good#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-good/gst-plugins-good-1.8.2.tar.xz
	new file:   ts/ports/contrib/gst-plugins-ugly/.footprint
	new file:   ts/ports/contrib/gst-plugins-ugly/.md5sum
	new file:   ts/ports/contrib/gst-plugins-ugly/Pkgfile
	new file:   ts/ports/contrib/gst-plugins-ugly/gst-plugins-ugly#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-ugly/gst-plugins-ugly-1.8.2.tar.xz
	modified:   ts/ports/contrib/gtk-doc/.footprint
	modified:   ts/ports/contrib/gtk-doc/.md5sum
	modified:   ts/ports/contrib/gtk-doc/Pkgfile
	deleted:    ts/ports/contrib/gtk-doc/gtk-doc#1.18-1.pkg.tar.gz
	new file:   ts/ports/contrib/gtk-doc/gtk-doc#1.25-1.pkg.tar.xz
	deleted:    ts/ports/contrib/gtkmm/.footprint
	deleted:    ts/ports/contrib/gtkmm/.md5sum
	deleted:    ts/ports/contrib/gtkmm/Pkgfile
	deleted:    ts/ports/contrib/gtkmm/gtkmm#2.24.2-1.pkg.tar.gz
	modified:   ts/ports/contrib/gtkspell/.footprint
	deleted:    ts/ports/contrib/gtkspell/gtkspell#2.0.16-1.pkg.tar.gz
	new file:   ts/ports/contrib/gtkspell/gtkspell#2.0.16-1.pkg.tar.xz
	new file:   ts/ports/contrib/hyphen/.footprint
	new file:   ts/ports/contrib/hyphen/.md5sum
	new file:   ts/ports/contrib/hyphen/Pkgfile
	new file:   ts/ports/contrib/hyphen/hyphen#2.8.8-1.pkg.tar.xz
	modified:   ts/ports/contrib/inkscape/.footprint
	modified:   ts/ports/contrib/inkscape/.md5sum
	new file:   ts/ports/contrib/inkscape/PKGBUILD
	modified:   ts/ports/contrib/inkscape/Pkgfile
	deleted:    ts/ports/contrib/inkscape/inkscape#0.48.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/inkscape/inkscape#0.92.1-3.pkg.tar.xz
	new file:   ts/ports/contrib/libcacard/.footprint
	new file:   ts/ports/contrib/libcacard/.md5sum
	new file:   ts/ports/contrib/libcacard/PKGBUILD
	new file:   ts/ports/contrib/libcacard/Pkgfile
	new file:   ts/ports/contrib/libcacard/libcacard#2.5.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdcss/.footprint
	new file:   ts/ports/contrib/libdvdcss/.md5sum
	new file:   ts/ports/contrib/libdvdcss/Pkgfile
	new file:   ts/ports/contrib/libdvdcss/libdvdcss#1.4.0-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdnav/.footprint
	new file:   ts/ports/contrib/libdvdnav/.md5sum
	new file:   ts/ports/contrib/libdvdnav/Pkgfile
	new file:   ts/ports/contrib/libdvdnav/libdvdnav#5.0.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdread/.footprint
	new file:   ts/ports/contrib/libdvdread/.md5sum
	new file:   ts/ports/contrib/libdvdread/Pkgfile
	new file:   ts/ports/contrib/libdvdread/libdvdread#5.0.3-1.pkg.tar.xz
	modified:   ts/ports/contrib/libfm/.footprint
	deleted:    ts/ports/contrib/libfm/libfm#git-1.pkg.tar.gz
	new file:   ts/ports/contrib/libfm/libfm#git-1.pkg.tar.xz
	modified:   ts/ports/contrib/libsigc++/.footprint
	modified:   ts/ports/contrib/libsigc++/.md5sum
	modified:   ts/ports/contrib/libsigc++/Pkgfile
	deleted:    ts/ports/contrib/libsigc++/libsigc++#2.3.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/libsigc++/libsigc++#2.8.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/libsoup/.footprint
	modified:   ts/ports/contrib/libsoup/.md5sum
	modified:   ts/ports/contrib/libsoup/Pkgfile
	deleted:    ts/ports/contrib/libsoup/libsoup#2.38.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/libsoup/libsoup#2.54.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/libwebp/.footprint
	new file:   ts/ports/contrib/libwebp/.md5sum
	new file:   ts/ports/contrib/libwebp/Pkgfile
	new file:   ts/ports/contrib/libwebp/libwebp#0.5.1-1.pkg.tar.xz
	modified:   ts/ports/contrib/nmap/.footprint
	modified:   ts/ports/contrib/nmap/.md5sum
	modified:   ts/ports/contrib/nmap/Pkgfile
	deleted:    ts/ports/contrib/nmap/nmap#6.40-1.pkg.tar.gz
	new file:   ts/ports/contrib/nmap/nmap#7.50-1.pkg.tar.xz
	new file:   ts/ports/contrib/nmap/nmap-6.40.tar.bz2
	new file:   ts/ports/contrib/nodejs/.footprint
	new file:   ts/ports/contrib/nodejs/.md5sum
	new file:   ts/ports/contrib/nodejs/Pkgfile
	new file:   ts/ports/contrib/nodejs/nodejs#6.4.0-3.pkg.tar.xz
	modified:   ts/ports/contrib/ntp/.footprint
	modified:   ts/ports/contrib/ntp/.md5sum
	modified:   ts/ports/contrib/ntp/Pkgfile
	deleted:    ts/ports/contrib/ntp/ntp#4.2.8p1-1.pkg.tar.gz
	new file:   ts/ports/contrib/ntp/ntp#4.2.8p10-1.pkg.tar.xz
	modified:   ts/ports/contrib/openvpn/.footprint
	modified:   ts/ports/contrib/openvpn/.md5sum
	modified:   ts/ports/contrib/openvpn/Pkgfile
	deleted:    ts/ports/contrib/openvpn/openvpn#2.2.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/openvpn/openvpn#2.4.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/openvpn/openvpn-2.2.1.tar.gz
	modified:   ts/ports/contrib/pangomm/.md5sum
	modified:   ts/ports/contrib/pangomm/Pkgfile
	deleted:    ts/ports/contrib/pangomm/pangomm#2.28.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/pangomm/pangomm#2.40.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/pidgin/.footprint
	modified:   ts/ports/contrib/pidgin/.md5sum
	modified:   ts/ports/contrib/pidgin/Pkgfile
	deleted:    ts/ports/contrib/pidgin/pidgin#2.10.11-1.pkg.tar.gz
	new file:   ts/ports/contrib/pidgin/pidgin#2.11.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/rdesktop/.md5sum
	modified:   ts/ports/contrib/rdesktop/Pkgfile
	new file:   ts/ports/contrib/rdesktop/bd6aa6acddf0ba640a49834807872f4cc0d0a773.patch
	new file:   ts/ports/contrib/rdesktop/c6e8e1074b8ac57de6c80c4e3ed38e105b4d94f1.patch
	deleted:    ts/ports/contrib/rdesktop/rdesktop#1.8.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/rdesktop/rdesktop#1.8.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/rest/.footprint
	new file:   ts/ports/contrib/rest/.md5sum
	new file:   ts/ports/contrib/rest/Pkgfile
	new file:   ts/ports/contrib/rest/rest#0.8.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/rtmpdump/.md5sum
	modified:   ts/ports/contrib/rtmpdump/Pkgfile
	new file:   ts/ports/contrib/rtmpdump/libdir.patch
	deleted:    ts/ports/contrib/rtmpdump/rtmpdump#0.5.2.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/rtmpdump/rtmpdump#2.4.r96.fa8646d-1.pkg.tar.xz
	modified:   ts/ports/contrib/spice-gtk/.footprint
	modified:   ts/ports/contrib/spice-gtk/.md5sum
	new file:   ts/ports/contrib/spice-gtk/PKGBUILD?h=packages%2Fspice-gtk3
	modified:   ts/ports/contrib/spice-gtk/Pkgfile
	new file:   ts/ports/contrib/spice-gtk/debian_843471-clipboard_Fix_crash_by_handling_error.patch
	deleted:    ts/ports/contrib/spice-gtk/spice-gtk#0.26-1.pkg.tar.xz
	new file:   ts/ports/contrib/spice-gtk/spice-gtk#0.33-1.pkg.tar.xz
	new file:   ts/ports/contrib/spice-gtk/ssl-Rework-our-custom-BIO-type.patch
	new file:   ts/ports/contrib/spice-gtk/ssl-Stop-creating-our-own-X509_LOOKUP_METHOD.patch
	new file:   ts/ports/contrib/spice-gtk/ssl-Use-accessors-rather-than-direct-struct-access.patch
	modified:   ts/ports/contrib/spice/Pkgfile
	modified:   ts/ports/contrib/spice/spice#0.13.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/vala/.footprint
	new file:   ts/ports/contrib/vala/.md5sum
	new file:   ts/ports/contrib/vala/Pkgfile
	new file:   ts/ports/contrib/vala/vala#0.29.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/webkit-gtk2/.footprint
	new file:   ts/ports/contrib/webkit-gtk2/.md5sum
	new file:   ts/ports/contrib/webkit-gtk2/.signature
	new file:   ts/ports/contrib/webkit-gtk2/Pkgfile
	new file:   ts/ports/contrib/webkit-gtk2/webkit-gtk2#2.4.11-1.pkg.tar.xz
	new file:   ts/ports/contrib/webkit-gtk2/webkitgtk-2.4.9-abs.patch
	new file:   ts/ports/contrib/webkit-gtk3/.footprint
	new file:   ts/ports/contrib/webkit-gtk3/.md5sum
	new file:   ts/ports/contrib/webkit-gtk3/Pkgfile
	new file:   ts/ports/contrib/webkit-gtk3/webkit-gtk3#2.4.11-1.pkg.tar.xz
	deleted:    ts/ports/contrib/webkit/.footprint
	deleted:    ts/ports/contrib/webkit/.md5sum
	deleted:    ts/ports/contrib/webkit/Pkgfile
	deleted:    ts/ports/contrib/webkit/webkit#1.7.5-1.pkg.tar.gz
	new file:   ts/ports/contrib/webkit2gtk/.footprint
	new file:   ts/ports/contrib/webkit2gtk/.md5sum
	new file:   ts/ports/contrib/webkit2gtk/Pkgfile
	new file:   ts/ports/contrib/webkit2gtk/webkit2gtk#2.12.3-1.pkg.tar.xz
	deleted:    ts/ports/contrib/wxgtk/wxgtk#2.8.12-1.pkg.tar.gz
	new file:   ts/ports/contrib/wxgtk/wxgtk#2.8.12-1.pkg.tar.xz
	deleted:    ts/ports/contrib/x11vnc/x11vnc#0.9.13-1.pkg.tar.gz
	new file:   ts/ports/contrib/x11vnc/x11vnc#0.9.13-1.pkg.tar.xz
	modified:   ts/ports/contrib/xerces-c/.md5sum
	modified:   ts/ports/contrib/xerces-c/Pkgfile
	deleted:    ts/ports/contrib/xerces-c/xerces-c#3.1.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/xerces-c/xerces-c#3.1.4-1.pkg.tar.xz
	modified:   ts/ports/core/automake/.footprint
	modified:   ts/ports/core/automake/.md5sum
	modified:   ts/ports/core/automake/Pkgfile
	deleted:    ts/ports/core/automake/automake#1.14.1-1.pkg.tar.gz
	new file:   ts/ports/core/automake/automake#1.15-2.pkg.tar.xz
	deleted:    ts/ports/core/bash/bash#4.3.33-1.pkg.tar.gz
	new file:   ts/ports/core/bash/bash#4.3.33-1.pkg.tar.xz
	modified:   ts/ports/core/bindutils/.md5sum
	modified:   ts/ports/core/bindutils/Pkgfile
	new file:   ts/ports/core/bindutils/bind-9.8.1.tar.gz
	new file:   ts/ports/core/bindutils/bindutils#9.11.1-P1-1.pkg.tar.xz
	deleted:    ts/ports/core/bindutils/bindutils#9.8.1-1.pkg.tar.gz
	modified:   ts/ports/core/binutils/.footprint
	modified:   ts/ports/core/binutils/.md5sum
	modified:   ts/ports/core/binutils/Pkgfile
	deleted:    ts/ports/core/binutils/binutils#2.24-2.pkg.tar.gz
	new file:   ts/ports/core/binutils/binutils#2.27-2.pkg.tar.xz
	modified:   ts/ports/core/curl/curl#7.49.1-1.pkg.tar.xz
	modified:   ts/ports/core/exim/.footprint
	modified:   ts/ports/core/exim/.md5sum
	new file:   ts/ports/core/exim/.signature
	modified:   ts/ports/core/exim/Pkgfile
	modified:   ts/ports/core/exim/exim
	deleted:    ts/ports/core/exim/exim#4.77-1.pkg.tar.gz
	new file:   ts/ports/core/exim/exim#4.89-1.pkg.tar.xz
	deleted:    ts/ports/core/exim/exim-4.77-compile_number.patch
	modified:   ts/ports/core/exim/exim-config.patch
	modified:   ts/ports/core/gettext/.footprint
	modified:   ts/ports/core/gettext/.md5sum
	modified:   ts/ports/core/gettext/Pkgfile
	deleted:    ts/ports/core/gettext/gettext#0.18.1.1-1.pkg.tar.gz
	new file:   ts/ports/core/gettext/gettext#0.19.8.1-1.pkg.tar.xz
	modified:   ts/ports/core/grep/.footprint
	deleted:    ts/ports/core/grep/grep#2.9-1.pkg.tar.gz
	new file:   ts/ports/core/grep/grep#2.9-1.pkg.tar.xz
	deleted:    ts/ports/core/groff/groff#1.21-1.pkg.tar.gz
	new file:   ts/ports/core/groff/groff#1.21-1.pkg.tar.xz
	modified:   ts/ports/core/gzip/.md5sum
	modified:   ts/ports/core/gzip/Pkgfile
	deleted:    ts/ports/core/gzip/gzip#1.4-1.pkg.tar.gz
	new file:   ts/ports/core/gzip/gzip#1.8-1.pkg.tar.xz
	deleted:    ts/ports/core/iputils/iputils#s20101006-1.pkg.tar.gz
	new file:   ts/ports/core/iputils/iputils#s20101006-1.pkg.tar.xz
	deleted:    ts/ports/core/less/less#444-1.pkg.tar.gz
	new file:   ts/ports/core/less/less#444-1.pkg.tar.xz
	modified:   ts/ports/core/libarchive/.footprint
	modified:   ts/ports/core/libarchive/.md5sum
	modified:   ts/ports/core/libarchive/Pkgfile
	deleted:    ts/ports/core/libarchive/libarchive#2.8.5-1.pkg.tar.gz
	new file:   ts/ports/core/libarchive/libarchive#3.2.1-3.pkg.tar.xz
	modified:   ts/ports/core/libpcre/.footprint
	modified:   ts/ports/core/libpcre/.md5sum
	modified:   ts/ports/core/libpcre/Pkgfile
	deleted:    ts/ports/core/libpcre/libpcre#8.20-1.pkg.tar.gz
	new file:   ts/ports/core/libpcre/libpcre#8.40-1.pkg.tar.xz
	modified:   ts/ports/core/ncurses/.footprint
	modified:   ts/ports/core/ncurses/.md5sum
	modified:   ts/ports/core/ncurses/Pkgfile
	deleted:    ts/ports/core/ncurses/ncurses#5.9-1.pkg.tar.gz
	new file:   ts/ports/core/ncurses/ncurses#6.0-2.pkg.tar.xz
	new file:   ts/ports/core/ncurses/post-install
	modified:   ts/ports/core/openssh/.md5sum
	modified:   ts/ports/core/openssh/Pkgfile
	deleted:    ts/ports/core/openssh/openssh#7.2p2-1.pkg.tar.gz
	new file:   ts/ports/core/openssh/openssh#7.5p1-1.pkg.tar.xz
	new file:   ts/ports/core/openssh/openssl-1.1.0.patch
	new file:   ts/ports/core/openssl-1/.footprint
	new file:   ts/ports/core/openssl-1/.md5sum
	new file:   ts/ports/core/openssl-1/Pkgfile
	new file:   ts/ports/core/openssl-1/mksslcert.sh
	new file:   ts/ports/core/openssl-1/openssl-1#1.0.2l-2.pkg.tar.xz
	new file:   ts/ports/core/openssl-1/openssl-1.1.0f.tar.gz
	new file:   ts/ports/core/openssl-1/post-install
	modified:   ts/ports/core/openssl/.footprint
	modified:   ts/ports/core/openssl/.md5sum
	modified:   ts/ports/core/openssl/Pkgfile
	modified:   ts/ports/core/openssl/mksslcert.sh
	deleted:    ts/ports/core/openssl/openssl#1.0.2g-1.pkg.tar.gz
	new file:   ts/ports/core/openssl/openssl#1.1.0f-2.pkg.tar.xz
	modified:   ts/ports/core/perl/.footprint
	deleted:    ts/ports/core/perl/perl#5.20.0-1.pkg.tar.gz
	new file:   ts/ports/core/perl/perl#5.20.0-1.pkg.tar.xz
	deleted:    ts/ports/core/pkg-config/pkg-config#0.28-1.pkg.tar.gz
	new file:   ts/ports/core/pkg-config/pkg-config#0.28-1.pkg.tar.xz
	modified:   ts/ports/core/ppp/.footprint
	modified:   ts/ports/core/ppp/.md5sum
	new file:   ts/ports/core/ppp/CVE-2015-3310.patch
	new file:   ts/ports/core/ppp/PKGBUILD
	modified:   ts/ports/core/ppp/Pkgfile
	new file:   ts/ports/core/ppp/ip-down
	new file:   ts/ports/core/ppp/ip-down.d.dns.sh
	new file:   ts/ports/core/ppp/ip-up
	new file:   ts/ports/core/ppp/ip-up.d.dns.sh
	new file:   ts/ports/core/ppp/ipv6-down
	new file:   ts/ports/core/ppp/ipv6-up
	new file:   ts/ports/core/ppp/ipv6-up.d.iface-config.sh
	new file:   ts/ports/core/ppp/options
	new file:   ts/ports/core/ppp/ppp#2.4.7-2.pkg.tar.xz
	deleted:    ts/ports/core/ppp/ppp#2.4.7-3.pkg.tar.gz
	new file:   ts/ports/core/ppp/ppp-2.4.6-makefiles.patch
	deleted:    ts/ports/core/ppp/ppp-nofilter.patch
	new file:   ts/ports/core/ppp/ppp.systemd
	modified:   ts/ports/core/shadow/.footprint
	modified:   ts/ports/core/shadow/.md5sum
	modified:   ts/ports/core/shadow/Pkgfile
	modified:   ts/ports/core/shadow/login.defs
	deleted:    ts/ports/core/shadow/other
	deleted:    ts/ports/core/shadow/shadow#4.1.4.3-1.pkg.tar.gz
	new file:   ts/ports/core/shadow/shadow#4.2.1-2.pkg.tar.xz
	deleted:    ts/ports/core/shadow/system-auth
	modified:   ts/ports/core/util-linux/.footprint
	modified:   ts/ports/core/util-linux/.md5sum
	modified:   ts/ports/core/util-linux/Pkgfile
	deleted:    ts/ports/core/util-linux/util-linux#2.26.2-1.pkg.tar.gz
	new file:   ts/ports/core/util-linux/util-linux#2.28-1.pkg.tar.xz
	modified:   ts/ports/core/wget/.md5sum
	modified:   ts/ports/core/wget/Pkgfile
	deleted:    ts/ports/core/wget/wget#1.13.4-1.pkg.tar.gz
	new file:   ts/ports/core/wget/wget#1.19.1-1.pkg.tar.xz
	modified:   ts/ports/core/xz/.footprint
	modified:   ts/ports/core/xz/.md5sum
	modified:   ts/ports/core/xz/Pkgfile
	deleted:    ts/ports/core/xz/xz#5.0.3-1.pkg.tar.gz
	new file:   ts/ports/core/xz/xz#5.2.2-1.pkg.tar.xz
	new file:   ts/ports/gnome/adwaita-icon-theme/.footprint
	renamed:    ts/ports/opt/adwaita-icon-theme/.md5sum -> ts/ports/gnome/adwaita-icon-theme/.md5sum
	new file:   ts/ports/gnome/adwaita-icon-theme/Pkgfile
	new file:   ts/ports/gnome/adwaita-icon-theme/adwaita-icon-theme#3.20-1.pkg.tar.xz
	renamed:    ts/ports/opt/adwaita-icon-theme/post-install -> ts/ports/gnome/adwaita-icon-theme/post-install
	new file:   ts/ports/gnome/at-spi2-atk/.footprint
	new file:   ts/ports/gnome/at-spi2-atk/.md5sum
	new file:   ts/ports/gnome/at-spi2-atk/Pkgfile
	new file:   ts/ports/gnome/at-spi2-atk/at-spi2-atk#2.20.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/at-spi2-core/.footprint
	new file:   ts/ports/gnome/at-spi2-core/.md5sum
	new file:   ts/ports/gnome/at-spi2-core/Pkgfile
	new file:   ts/ports/gnome/at-spi2-core/at-spi2-core#2.20.2-1.pkg.tar.xz
	new file:   ts/ports/gnome/atk/.footprint
	new file:   ts/ports/gnome/atk/.md5sum
	new file:   ts/ports/gnome/atk/Pkgfile
	new file:   ts/ports/gnome/atk/atk#2.20.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter-gst/.footprint
	new file:   ts/ports/gnome/clutter-gst/.md5sum
	new file:   ts/ports/gnome/clutter-gst/Pkgfile
	new file:   ts/ports/gnome/clutter-gst/clutter-gst#3.0.18-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter-gtk/.footprint
	new file:   ts/ports/gnome/clutter-gtk/.md5sum
	new file:   ts/ports/gnome/clutter-gtk/Pkgfile
	new file:   ts/ports/gnome/clutter-gtk/clutter-gtk#1.8.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter/.footprint
	new file:   ts/ports/gnome/clutter/.md5sum
	new file:   ts/ports/gnome/clutter/Pkgfile
	new file:   ts/ports/gnome/clutter/clutter#1.26.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/cogl/.footprint
	new file:   ts/ports/gnome/cogl/.md5sum
	new file:   ts/ports/gnome/cogl/Pkgfile
	new file:   ts/ports/gnome/cogl/cogl#1.22.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/dconf/.footprint
	modified:   ts/ports/gnome/dconf/.md5sum
	modified:   ts/ports/gnome/dconf/Pkgfile
	new file:   ts/ports/gnome/dconf/dconf#0.26.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/dconf/dconf#0.5.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/esound/.footprint
	deleted:    ts/ports/gnome/esound/.md5sum
	deleted:    ts/ports/gnome/esound/Pkgfile
	deleted:    ts/ports/gnome/esound/esound#0.2.41-1.pkg.tar.gz
	modified:   ts/ports/gnome/evince/.footprint
	modified:   ts/ports/gnome/evince/.md5sum
	modified:   ts/ports/gnome/evince/Pkgfile
	deleted:    ts/ports/gnome/evince/evince#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/evince/evince#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/file-roller/.footprint
	modified:   ts/ports/gnome/file-roller/.md5sum
	modified:   ts/ports/gnome/file-roller/Pkgfile
	deleted:    ts/ports/gnome/file-roller/file-roller#2.32.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/file-roller/file-roller#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/galculator/.footprint
	modified:   ts/ports/gnome/galculator/.md5sum
	modified:   ts/ports/gnome/galculator/Pkgfile
	deleted:    ts/ports/gnome/galculator/galculator#1.3.4-1.pkg.tar.gz
	new file:   ts/ports/gnome/galculator/galculator#2.1.4-1.pkg.tar.xz
	modified:   ts/ports/gnome/gamin/Pkgfile
	deleted:    ts/ports/gnome/gamin/gamin#0.1.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/gamin/gamin#0.1.10-1.pkg.tar.xz
	modified:   ts/ports/gnome/gconf/.footprint
	modified:   ts/ports/gnome/gconf/.md5sum
	modified:   ts/ports/gnome/gconf/Pkgfile
	deleted:    ts/ports/gnome/gconf/gconf#2.31.91-1.pkg.tar.gz
	new file:   ts/ports/gnome/gconf/gconf#3.2.6-1.pkg.tar.xz
	new file:   ts/ports/gnome/gdk-pixbuf/.footprint
	new file:   ts/ports/gnome/gdk-pixbuf/.md5sum
	new file:   ts/ports/gnome/gdk-pixbuf/Pkgfile
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf#2.34.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf-register.sh
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf.loaders
	new file:   ts/ports/gnome/geocode-glib/.footprint
	new file:   ts/ports/gnome/geocode-glib/.md5sum
	new file:   ts/ports/gnome/geocode-glib/Pkgfile
	new file:   ts/ports/gnome/geocode-glib/geocode-glib#3.20.1-2.pkg.tar.xz
	new file:   ts/ports/gnome/glib/.footprint
	new file:   ts/ports/gnome/glib/.md5sum
	new file:   ts/ports/gnome/glib/Pkgfile
	new file:   ts/ports/gnome/glib/glib#2.48.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/glib/gschemas.compiled
	new file:   ts/ports/gnome/glib/post-install
	modified:   ts/ports/gnome/gmime/.footprint
	deleted:    ts/ports/gnome/gmime/gmime#2.6.20-1.pkg.tar.gz
	new file:   ts/ports/gnome/gmime/gmime#2.6.20-1.pkg.tar.xz
	modified:   ts/ports/gnome/gmtk/.footprint
	modified:   ts/ports/gnome/gmtk/.md5sum
	modified:   ts/ports/gnome/gmtk/Pkgfile
	deleted:    ts/ports/gnome/gmtk/gmtk#1.0.7-1.pkg.tar.gz
	new file:   ts/ports/gnome/gmtk/gmtk#1.0.9b-1.pkg.tar.xz
	new file:   ts/ports/gnome/gnome-bluetooth/.footprint
	new file:   ts/ports/gnome/gnome-bluetooth/.md5sum
	new file:   ts/ports/gnome/gnome-bluetooth/Pkgfile
	new file:   ts/ports/gnome/gnome-bluetooth/gnome-bluetooth#3.20.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-common/.footprint
	modified:   ts/ports/gnome/gnome-common/.md5sum
	modified:   ts/ports/gnome/gnome-common/Pkgfile
	deleted:    ts/ports/gnome/gnome-common/gnome-common#2.34.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-common/gnome-common#3.18.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-control-center/.footprint
	modified:   ts/ports/gnome/gnome-control-center/.md5sum
	modified:   ts/ports/gnome/gnome-control-center/Pkgfile
	deleted:    ts/ports/gnome/gnome-control-center/gnome-control-center#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-control-center/gnome-control-center#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-desktop/.footprint
	modified:   ts/ports/gnome/gnome-desktop/.md5sum
	modified:   ts/ports/gnome/gnome-desktop/Pkgfile
	deleted:    ts/ports/gnome/gnome-desktop/gnome-desktop#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-desktop/gnome-desktop#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-disk-utility/.footprint
	modified:   ts/ports/gnome/gnome-disk-utility/.md5sum
	modified:   ts/ports/gnome/gnome-disk-utility/Pkgfile
	deleted:    ts/ports/gnome/gnome-disk-utility/gnome-disk-utility#2.30.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-disk-utility/gnome-disk-utility#3.20.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-doc-utils/.footprint
	deleted:    ts/ports/gnome/gnome-doc-utils/.md5sum
	deleted:    ts/ports/gnome/gnome-doc-utils/Pkgfile
	deleted:    ts/ports/gnome/gnome-doc-utils/gnome-doc-utils#0.20.10-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-doc-utils/post-install
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/.footprint
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/.md5sum
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/Pkgfile
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic#3.12.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-icon-theme/.footprint
	modified:   ts/ports/gnome/gnome-icon-theme/.md5sum
	modified:   ts/ports/gnome/gnome-icon-theme/Pkgfile
	new file:   ts/ports/gnome/gnome-icon-theme/gnome-icon-theme#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-icon-theme/gnome-icon-theme#3.6.2-1.pkg.tar.gz
	modified:   ts/ports/gnome/gnome-keyring/.footprint
	modified:   ts/ports/gnome/gnome-keyring/.md5sum
	modified:   ts/ports/gnome/gnome-keyring/Pkgfile
	deleted:    ts/ports/gnome/gnome-keyring/gnome-keyring#2.31.4-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-keyring/gnome-keyring#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-media/.footprint
	deleted:    ts/ports/gnome/gnome-media/.md5sum
	deleted:    ts/ports/gnome/gnome-media/Pkgfile
	deleted:    ts/ports/gnome/gnome-media/gnome-media#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-media/post-install
	modified:   ts/ports/gnome/gnome-menus/.footprint
	modified:   ts/ports/gnome/gnome-menus/.md5sum
	modified:   ts/ports/gnome/gnome-menus/Pkgfile
	deleted:    ts/ports/gnome/gnome-menus/gnome-menus#2.30.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-menus/gnome-menus#3.13.3-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-mime-data/.footprint
	deleted:    ts/ports/gnome/gnome-mime-data/.md5sum
	deleted:    ts/ports/gnome/gnome-mime-data/Pkgfile
	deleted:    ts/ports/gnome/gnome-mime-data/gnome-mime-data#2.18.0-1.pkg.tar.gz
	modified:   ts/ports/gnome/gnome-mplayer/.md5sum
	modified:   ts/ports/gnome/gnome-mplayer/Pkgfile
	deleted:    ts/ports/gnome/gnome-mplayer/gnome-mplayer#1.0.7-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-mplayer/gnome-mplayer#1.0.9b-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-nettool/.footprint
	modified:   ts/ports/gnome/gnome-nettool/.md5sum
	modified:   ts/ports/gnome/gnome-nettool/Pkgfile
	deleted:    ts/ports/gnome/gnome-nettool/gnome-nettool#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-nettool/gnome-nettool#3.8.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/gnome-online-accounts/.footprint
	new file:   ts/ports/gnome/gnome-online-accounts/.md5sum
	new file:   ts/ports/gnome/gnome-online-accounts/Pkgfile
	new file:   ts/ports/gnome/gnome-online-accounts/gnome-online-accounts#3.20.3-2.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-pulse/.footprint
	deleted:    ts/ports/gnome/gnome-pulse/.md5sum
	deleted:    ts/ports/gnome/gnome-pulse/Pkgfile
	deleted:    ts/ports/gnome/gnome-pulse/gnome-pulse#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-python/.footprint
	deleted:    ts/ports/gnome/gnome-python/.md5sum
	deleted:    ts/ports/gnome/gnome-python/Pkgfile
	deleted:    ts/ports/gnome/gnome-python/gnome-python#2.28.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-search-tool/.footprint
	new file:   ts/ports/gnome/gnome-search-tool/.md5sum
	new file:   ts/ports/gnome/gnome-search-tool/Pkgfile
	new file:   ts/ports/gnome/gnome-search-tool/gnome-search-tool#3.6.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-settings-daemon/.footprint
	modified:   ts/ports/gnome/gnome-settings-daemon/.md5sum
	modified:   ts/ports/gnome/gnome-settings-daemon/Pkgfile
	deleted:    ts/ports/gnome/gnome-settings-daemon/gnome-settings-daemon#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-settings-daemon/gnome-settings-daemon#3.20.1-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-utils/.footprint
	deleted:    ts/ports/gnome/gnome-utils/.md5sum
	deleted:    ts/ports/gnome/gnome-utils/Pkgfile
	deleted:    ts/ports/gnome/gnome-utils/deprecated.patch
	deleted:    ts/ports/gnome/gnome-utils/gnome-utils#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-vfs/.footprint
	deleted:    ts/ports/gnome/gnome-vfs/.md5sum
	deleted:    ts/ports/gnome/gnome-vfs/Pkgfile
	deleted:    ts/ports/gnome/gnome-vfs/gnome-vfs#2.24.4-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-vfs/post-install
	new file:   ts/ports/gnome/grilo/.footprint
	new file:   ts/ports/gnome/grilo/.md5sum
	new file:   ts/ports/gnome/grilo/Pkgfile
	new file:   ts/ports/gnome/grilo/grilo#0.3.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gsettings-desktop-schemas/.footprint
	modified:   ts/ports/gnome/gsettings-desktop-schemas/.md5sum
	modified:   ts/ports/gnome/gsettings-desktop-schemas/Pkgfile
	new file:   ts/ports/gnome/gsettings-desktop-schemas/gsettings-desktop-schemas#3.21.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gsettings-desktop-schemas/gsettings-desktop-schemas#3.6.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtk-engines/.footprint
	new file:   ts/ports/gnome/gtk-engines/.md5sum
	new file:   ts/ports/gnome/gtk-engines/Pkgfile
	new file:   ts/ports/gnome/gtk-engines/gtk-engines#2.21.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gtk-sharp/gtk-sharp#2.12.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtk-sharp/gtk-sharp#2.12.10-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk-theme-adwaita/.footprint
	renamed:    ts/ports/opt/gtk-theme-adwaita/.md5sum -> ts/ports/gnome/gtk-theme-adwaita/.md5sum
	new file:   ts/ports/gnome/gtk-theme-adwaita/Pkgfile
	new file:   ts/ports/gnome/gtk-theme-adwaita/gtk-theme-adwaita#3.20-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk-vnc/.footprint
	new file:   ts/ports/gnome/gtk-vnc/.md5sum
	new file:   ts/ports/gnome/gtk-vnc/Pkgfile
	new file:   ts/ports/gnome/gtk-vnc/gtk-vnc#0.6.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk/.footprint
	new file:   ts/ports/gnome/gtk/.md5sum
	new file:   ts/ports/gnome/gtk/Pkgfile
	new file:   ts/ports/gnome/gtk/gtk#2.24.30-1.pkg.tar.xz
	renamed:    ts/ports/opt/gtk/gtk-register.sh -> ts/ports/gnome/gtk/gtk-register.sh
	renamed:    ts/ports/opt/gtk/gtk.immodules -> ts/ports/gnome/gtk/gtk.immodules
	renamed:    ts/ports/opt/gtk/old-icon-symlinks.patch -> ts/ports/gnome/gtk/old-icon-symlinks.patch
	new file:   ts/ports/gnome/gtk3/.footprint
	new file:   ts/ports/gnome/gtk3/.md5sum
	new file:   ts/ports/gnome/gtk3/Pkgfile
	new file:   ts/ports/gnome/gtk3/gtk3#3.20.8-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk3/post-install
	new file:   ts/ports/gnome/gtkmm/.footprint
	new file:   ts/ports/gnome/gtkmm/.md5sum
	new file:   ts/ports/gnome/gtkmm/Pkgfile
	new file:   ts/ports/gnome/gtkmm/gtkmm#2.24.4-2.pkg.tar.xz
	new file:   ts/ports/gnome/gtkmm3/.footprint
	new file:   ts/ports/gnome/gtkmm3/.md5sum
	new file:   ts/ports/gnome/gtkmm3/Pkgfile
	new file:   ts/ports/gnome/gtkmm3/gtkmm3#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gtksourceview/.footprint
	modified:   ts/ports/gnome/gtksourceview/.md5sum
	modified:   ts/ports/gnome/gtksourceview/Pkgfile
	deleted:    ts/ports/gnome/gtksourceview/gtksourceview#2.10.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtksourceview/gtksourceview#3.18.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gvfs/.footprint
	modified:   ts/ports/gnome/gvfs/.md5sum
	modified:   ts/ports/gnome/gvfs/Pkgfile
	deleted:    ts/ports/gnome/gvfs/gvfs#1.12.3-1.pkg.tar.gz
	new file:   ts/ports/gnome/gvfs/gvfs#1.28.3-1.pkg.tar.xz
	new file:   ts/ports/gnome/gvfs/post-install
	modified:   ts/ports/gnome/jhbuild/.footprint
	deleted:    ts/ports/gnome/jhbuild/jhbuild#git-1.pkg.tar.gz
	new file:   ts/ports/gnome/jhbuild/jhbuild#git-1.pkg.tar.xz
	modified:   ts/ports/gnome/json-glib/.footprint
	modified:   ts/ports/gnome/json-glib/.md5sum
	modified:   ts/ports/gnome/json-glib/Pkgfile
	deleted:    ts/ports/gnome/json-glib/json-glib#0.15.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/json-glib/json-glib#1.2.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libbonobo/.footprint
	deleted:    ts/ports/gnome/libbonobo/.md5sum
	deleted:    ts/ports/gnome/libbonobo/Pkgfile
	deleted:    ts/ports/gnome/libbonobo/libbonobo#2.32.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libbonoboui/.footprint
	deleted:    ts/ports/gnome/libbonoboui/.md5sum
	deleted:    ts/ports/gnome/libbonoboui/Pkgfile
	deleted:    ts/ports/gnome/libbonoboui/libbonoboui#2.24.5-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libbonoboui/post-install
	renamed:    ts/ports/opt/libcroco/.footprint -> ts/ports/gnome/libcroco/.footprint
	new file:   ts/ports/gnome/libcroco/.md5sum
	new file:   ts/ports/gnome/libcroco/Pkgfile
	new file:   ts/ports/gnome/libcroco/libcroco#0.6.11-1.pkg.tar.xz
	modified:   ts/ports/gnome/libgnome-keyring/.footprint
	modified:   ts/ports/gnome/libgnome-keyring/.md5sum
	modified:   ts/ports/gnome/libgnome-keyring/Pkgfile
	deleted:    ts/ports/gnome/libgnome-keyring/libgnome-keyring#2.31.92-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgnome-keyring/libgnome-keyring#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libgnome/.footprint
	deleted:    ts/ports/gnome/libgnome/.md5sum
	deleted:    ts/ports/gnome/libgnome/Pkgfile
	deleted:    ts/ports/gnome/libgnome/libgnome#2.32.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libgnome/post-install
	deleted:    ts/ports/gnome/libgnomecanvas/.footprint
	deleted:    ts/ports/gnome/libgnomecanvas/.md5sum
	deleted:    ts/ports/gnome/libgnomecanvas/Pkgfile
	deleted:    ts/ports/gnome/libgnomecanvas/libgnomecanvas#2.30.3-1.pkg.tar.gz
	modified:   ts/ports/gnome/libgnomekbd/.footprint
	modified:   ts/ports/gnome/libgnomekbd/.md5sum
	modified:   ts/ports/gnome/libgnomekbd/Pkgfile
	deleted:    ts/ports/gnome/libgnomekbd/libgnomekbd#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgnomekbd/libgnomekbd#3.6.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libgnomeui/.footprint
	deleted:    ts/ports/gnome/libgnomeui/.md5sum
	deleted:    ts/ports/gnome/libgnomeui/Pkgfile
	deleted:    ts/ports/gnome/libgnomeui/libgnomeui#2.24.5-1.pkg.tar.gz
	modified:   ts/ports/gnome/libgtop/.footprint
	modified:   ts/ports/gnome/libgtop/.md5sum
	modified:   ts/ports/gnome/libgtop/Pkgfile
	deleted:    ts/ports/gnome/libgtop/libgtop#2.28.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgtop/libgtop#2.34.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libgudev/.footprint
	new file:   ts/ports/gnome/libgudev/.md5sum
	new file:   ts/ports/gnome/libgudev/Pkgfile
	new file:   ts/ports/gnome/libgudev/libgudev#230-1.pkg.tar.xz
	new file:   ts/ports/gnome/libgweather/.footprint
	new file:   ts/ports/gnome/libgweather/.md5sum
	new file:   ts/ports/gnome/libgweather/Pkgfile
	new file:   ts/ports/gnome/libgweather/libgweather#3.20.2-1.pkg.tar.xz
	renamed:    ts/ports/opt/libidl/.footprint -> ts/ports/gnome/libidl/.footprint
	renamed:    ts/ports/opt/libidl/.md5sum -> ts/ports/gnome/libidl/.md5sum
	new file:   ts/ports/gnome/libidl/Pkgfile
	new file:   ts/ports/gnome/libidl/libidl#0.8.14-1.pkg.tar.xz
	new file:   ts/ports/gnome/libnotify/.footprint
	renamed:    ts/ports/opt/libnotify/.md5sum -> ts/ports/gnome/libnotify/.md5sum
	new file:   ts/ports/gnome/libnotify/Pkgfile
	new file:   ts/ports/gnome/libnotify/libnotify#0.7.6-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpeas/.footprint
	new file:   ts/ports/gnome/libpeas/.md5sum
	new file:   ts/ports/gnome/libpeas/Pkgfile
	new file:   ts/ports/gnome/libpeas/libpeas#1.10.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpwquality/.footprint
	new file:   ts/ports/gnome/libpwquality/.md5sum
	new file:   ts/ports/gnome/libpwquality/Pkgfile
	new file:   ts/ports/gnome/libpwquality/libpwquality#1.4.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpwquality/libpwquality-1.3.0.tar.bz2
	new file:   ts/ports/gnome/librsvg/.footprint
	new file:   ts/ports/gnome/librsvg/.md5sum
	new file:   ts/ports/gnome/librsvg/Pkgfile
	new file:   ts/ports/gnome/librsvg/bgo759084.patch
	new file:   ts/ports/gnome/librsvg/librsvg#2.40.16-2.pkg.tar.xz
	new file:   ts/ports/gnome/librsvg/post-install
	modified:   ts/ports/gnome/libsecret/.footprint
	modified:   ts/ports/gnome/libsecret/.md5sum
	modified:   ts/ports/gnome/libsecret/Pkgfile
	deleted:    ts/ports/gnome/libsecret/libsecret#0.11-1.pkg.tar.gz
	new file:   ts/ports/gnome/libsecret/libsecret#0.18.5-1.pkg.tar.xz
	modified:   ts/ports/gnome/libtasn1/.footprint
	modified:   ts/ports/gnome/libtasn1/.md5sum
	modified:   ts/ports/gnome/libtasn1/Pkgfile
	deleted:    ts/ports/gnome/libtasn1/libtasn1#4.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/libtasn1/libtasn1#4.9-1.pkg.tar.xz
	new file:   ts/ports/gnome/libwnck-gtk3/.footprint
	new file:   ts/ports/gnome/libwnck-gtk3/.md5sum
	new file:   ts/ports/gnome/libwnck-gtk3/Pkgfile
	new file:   ts/ports/gnome/libwnck-gtk3/libwnck-gtk3#3.14.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libxml2/.footprint
	new file:   ts/ports/gnome/libxml2/.md5sum
	new file:   ts/ports/gnome/libxml2/Pkgfile
	new file:   ts/ports/gnome/libxml2/libxml2#2.9.3-1.pkg.tar.xz
	modified:   ts/ports/gnome/metacity/.footprint
	modified:   ts/ports/gnome/metacity/.md5sum
	modified:   ts/ports/gnome/metacity/Pkgfile
	deleted:    ts/ports/gnome/metacity/metacity#2.34.13-1.pkg.tar.gz
	new file:   ts/ports/gnome/metacity/metacity#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/mobile-broadband-provider-info/Pkgfile
	deleted:    ts/ports/gnome/mobile-broadband-provider-info/mobile-broadband-provider-info#20150420-1.pkg.tar.gz
	new file:   ts/ports/gnome/mobile-broadband-provider-info/mobile-broadband-provider-info#20151214-1.pkg.tar.xz
	modified:   ts/ports/gnome/networkmanager-applet/.footprint
	modified:   ts/ports/gnome/networkmanager-applet/Pkgfile
	deleted:    ts/ports/gnome/networkmanager-applet/networkmanager-applet#0.9.8.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/networkmanager-applet/networkmanager-applet#0.9.8.10-1.pkg.tar.xz
	modified:   ts/ports/gnome/networkmanager/.footprint
	modified:   ts/ports/gnome/networkmanager/.md5sum
	modified:   ts/ports/gnome/networkmanager/Pkgfile
	deleted:    ts/ports/gnome/networkmanager/networkmanager#0.9.8.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/networkmanager/networkmanager#1.2.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/neu-icon-theme/.footprint
	deleted:    ts/ports/gnome/neu-icon-theme/.md5sum
	deleted:    ts/ports/gnome/neu-icon-theme/Pkgfile
	deleted:    ts/ports/gnome/neu-icon-theme/neu-icon-theme#0.11-1.pkg.tar.gz
	deleted:    ts/ports/gnome/neu-icon-theme/post-install
	deleted:    ts/ports/gnome/orbit2/.footprint
	deleted:    ts/ports/gnome/orbit2/.md5sum
	deleted:    ts/ports/gnome/orbit2/Pkgfile
	deleted:    ts/ports/gnome/orbit2/orbit2#2.14.19-1.pkg.tar.gz
	deleted:    ts/ports/gnome/orbit2/orbit2-deprecated.patch
	new file:   ts/ports/gnome/pango/.footprint
	new file:   ts/ports/gnome/pango/.md5sum
	new file:   ts/ports/gnome/pango/Pkgfile
	new file:   ts/ports/gnome/pango/pango#1.40.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/pygobject-gtk3/.footprint
	new file:   ts/ports/gnome/pygobject-gtk3/.md5sum
	new file:   ts/ports/gnome/pygobject-gtk3/Pkgfile
	new file:   ts/ports/gnome/pygobject-gtk3/pygobject-gtk3#3.21.0-1.pkg.tar.xz
	renamed:    ts/ports/opt/pygobject/.footprint -> ts/ports/gnome/pygobject/.footprint
	new file:   ts/ports/gnome/pygobject/.md5sum
	new file:   ts/ports/gnome/pygobject/Pkgfile
	new file:   ts/ports/gnome/pygobject/pygobject#2.28.6-1.pkg.tar.xz
	renamed:    ts/ports/opt/pygtk/.footprint -> ts/ports/gnome/pygtk/.footprint
	new file:   ts/ports/gnome/pygtk/.md5sum
	new file:   ts/ports/gnome/pygtk/Pkgfile
	new file:   ts/ports/gnome/pygtk/pygtk#2.24.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/pygtk/python27.patch
	deleted:    ts/ports/gnome/pyorbit/.footprint
	deleted:    ts/ports/gnome/pyorbit/.md5sum
	deleted:    ts/ports/gnome/pyorbit/Pkgfile
	deleted:    ts/ports/gnome/pyorbit/pyorbit#2.24.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/scrollkeeper/.footprint
	deleted:    ts/ports/gnome/scrollkeeper/.md5sum
	deleted:    ts/ports/gnome/scrollkeeper/Pkgfile
	deleted:    ts/ports/gnome/scrollkeeper/scrollkeeper#0.3.14-1.pkg.tar.gz
	new file:   ts/ports/gnome/shared-mime-info/.footprint
	new file:   ts/ports/gnome/shared-mime-info/.md5sum
	new file:   ts/ports/gnome/shared-mime-info/Pkgfile
	renamed:    ts/ports/opt/shared-mime-info/README -> ts/ports/gnome/shared-mime-info/README
	renamed:    ts/ports/opt/shared-mime-info/post-install -> ts/ports/gnome/shared-mime-info/post-install
	new file:   ts/ports/gnome/shared-mime-info/shared-mime-info#1.6-1.pkg.tar.xz
	modified:   ts/ports/gnome/totem-pl-parser/.footprint
	modified:   ts/ports/gnome/totem-pl-parser/.md5sum
	modified:   ts/ports/gnome/totem-pl-parser/Pkgfile
	deleted:    ts/ports/gnome/totem-pl-parser/totem-pl-parser#2.32.6-1.pkg.tar.gz
	new file:   ts/ports/gnome/totem-pl-parser/totem-pl-parser#3.10.7-1.pkg.tar.xz
	modified:   ts/ports/gnome/totem/.footprint
	modified:   ts/ports/gnome/totem/.md5sum
	modified:   ts/ports/gnome/totem/Pkgfile
	deleted:    ts/ports/gnome/totem/totem#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/totem/totem#3.24.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/zenity/.footprint
	modified:   ts/ports/gnome/zenity/.md5sum
	modified:   ts/ports/gnome/zenity/Pkgfile
	deleted:    ts/ports/gnome/zenity/zenity#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/zenity/zenity#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/lxde/python-xklavier/python-xklavier#0.4-1.pkg.tar.gz
	new file:   ts/ports/lxde/python-xklavier/python-xklavier#0.4-1.pkg.tar.xz
	deleted:    ts/ports/opt/adwaita-icon-theme/.footprint
	deleted:    ts/ports/opt/adwaita-icon-theme/Pkgfile
	deleted:    ts/ports/opt/adwaita-icon-theme/adwaita-icon-theme#3.20-1.pkg.tar.xz
	modified:   ts/ports/opt/alsa-plugins/alsa-plugins#1.1.1-1.pkg.tar.xz
	modified:   ts/ports/opt/apache/.footprint
	modified:   ts/ports/opt/apache/.md5sum
	modified:   ts/ports/opt/apache/Pkgfile
	modified:   ts/ports/opt/apache/apache
	deleted:    ts/ports/opt/apache/apache#2.2.21-1.pkg.tar.gz
	new file:   ts/ports/opt/apache/apache#2.4.26-1.pkg.tar.xz
	modified:   ts/ports/opt/apache/crux.layout
	deleted:    ts/ports/opt/atk/.footprint
	deleted:    ts/ports/opt/atk/.md5sum
	deleted:    ts/ports/opt/atk/Pkgfile
	deleted:    ts/ports/opt/atk/atk#2.6.0-1.pkg.tar.gz
	new file:   ts/ports/opt/bash-completion/.footprint
	new file:   ts/ports/opt/bash-completion/.md5sum
	new file:   ts/ports/opt/bash-completion/Pkgfile
	new file:   ts/ports/opt/bash-completion/README
	new file:   ts/ports/opt/bash-completion/bash-completion#2.3-2.pkg.tar.xz
	modified:   ts/ports/opt/cairo/.footprint
	modified:   ts/ports/opt/cairo/.md5sum
	modified:   ts/ports/opt/cairo/Pkgfile
	deleted:    ts/ports/opt/cairo/cairo#1.12.8-3.pkg.tar.gz
	new file:   ts/ports/opt/cairo/cairo#1.14.6-1.pkg.tar.xz
	modified:   ts/ports/opt/chromium/.footprint
	modified:   ts/ports/opt/chromium/.md5sum
	new file:   ts/ports/opt/chromium/0001-ClientNativePixmapFactoryDmabuf-uses-ioctl-instead-o.patch
	new file:   ts/ports/opt/chromium/0001-Fix-kernel-version-condition-for-including-dma-buf.h.patch
	modified:   ts/ports/opt/chromium/Pkgfile
	deleted:    ts/ports/opt/chromium/chromium#51.0.2704.84-1.pkg.tar.xz
	new file:   ts/ports/opt/chromium/chromium#59.0.3071.115-1.pkg.tar.xz
	modified:   ts/ports/opt/cups-filters/cups-filters#1.8.3-1.pkg.tar.xz
	modified:   ts/ports/opt/cyrus-sasl/.footprint
	modified:   ts/ports/opt/cyrus-sasl/.md5sum
	new file:   ts/ports/opt/cyrus-sasl/.signature
	modified:   ts/ports/opt/cyrus-sasl/Pkgfile
	deleted:    ts/ports/opt/cyrus-sasl/cyrus-sasl#2.1.25-1.pkg.tar.gz
	new file:   ts/ports/opt/cyrus-sasl/cyrus-sasl#2.1.26-2.pkg.tar.xz
	new file:   ts/ports/opt/cyrus-sasl/cyrus-sasl-2.1.27-openssl-1.1.0.patch
	new file:   ts/ports/opt/cyrus-sasl/fix-CVE-2013-4122.diff
	deleted:    ts/ports/opt/dbus-glib/dbus-glib#0.102-2.pkg.tar.gz
	new file:   ts/ports/opt/dbus-glib/dbus-glib#0.102-2.pkg.tar.xz
	modified:   ts/ports/opt/fetchmail/.footprint
	modified:   ts/ports/opt/fetchmail/.md5sum
	new file:   ts/ports/opt/fetchmail/.signature
	modified:   ts/ports/opt/fetchmail/Pkgfile
	new file:   ts/ports/opt/fetchmail/disable-sslv3.patch
	deleted:    ts/ports/opt/fetchmail/fetchmail#6.3.21-1.pkg.tar.gz
	new file:   ts/ports/opt/fetchmail/fetchmail#6.3.26-2.pkg.tar.xz
	modified:   ts/ports/opt/freerdp/freerdp#2.0-dev-master.pkg.tar.xz
	deleted:    ts/ports/opt/gdk-pixbuf/.footprint
	deleted:    ts/ports/opt/gdk-pixbuf/.md5sum
	deleted:    ts/ports/opt/gdk-pixbuf/Pkgfile
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf#2.26.4-2.pkg.tar.gz
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf-register.sh
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf.loaders
	modified:   ts/ports/opt/git/.footprint
	modified:   ts/ports/opt/git/.md5sum
	modified:   ts/ports/opt/git/Pkgfile
	deleted:    ts/ports/opt/git/git#1.9.1-1.pkg.tar.gz
	new file:   ts/ports/opt/git/git#2.12.2-1.pkg.tar.xz
	deleted:    ts/ports/opt/glib/.footprint
	deleted:    ts/ports/opt/glib/.md5sum
	deleted:    ts/ports/opt/glib/Pkgfile
	deleted:    ts/ports/opt/glib/glib#2.32.4-1.pkg.tar.gz
	modified:   ts/ports/opt/gobject-introspection/.footprint
	modified:   ts/ports/opt/gobject-introspection/.md5sum
	modified:   ts/ports/opt/gobject-introspection/Pkgfile
	deleted:    ts/ports/opt/gobject-introspection/gobject-introspection#1.32.1-1.pkg.tar.gz
	new file:   ts/ports/opt/gobject-introspection/gobject-introspection#1.48.0-1.pkg.tar.xz
	modified:   ts/ports/opt/gst-plugins-base/.footprint
	modified:   ts/ports/opt/gst-plugins-base/.md5sum
	modified:   ts/ports/opt/gst-plugins-base/Pkgfile
	deleted:    ts/ports/opt/gst-plugins-base/gst-plugins-base#0.10.36-1.pkg.tar.gz
	new file:   ts/ports/opt/gst-plugins-base/gst-plugins-base#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/opt/gst-plugins-base/gst-plugins-base-1.8.2.tar.xz
	modified:   ts/ports/opt/gstreamer/.footprint
	modified:   ts/ports/opt/gstreamer/.md5sum
	modified:   ts/ports/opt/gstreamer/Pkgfile
	deleted:    ts/ports/opt/gstreamer/gstreamer#0.10.36-1.pkg.tar.gz
	new file:   ts/ports/opt/gstreamer/gstreamer#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/opt/gstreamer/gstreamer-1.8.2.tar.xz
	deleted:    ts/ports/opt/gtk-engines/.footprint
	deleted:    ts/ports/opt/gtk-engines/.md5sum
	deleted:    ts/ports/opt/gtk-engines/Pkgfile
	deleted:    ts/ports/opt/gtk-engines/gt…
Thinstation added a commit to Thinstation/thinstation that referenced this pull request Nov 19, 2018
* 	modified:   ts/TS_ENV
	modified:   ts/bin/newpython
	new file:   ts/build/boot-images/hw/boot/hwlister/initrd
	new file:   ts/build/boot-images/hw/boot/hwlister/vmlinuz
	modified:   ts/build/build
	modified:   ts/build/build.conf.example
	modified:   ts/build/conf/LiveCD/build.conf.example
	modified:   ts/build/conf/debuginit/build.conf.example
	modified:   ts/build/conf/default/build.conf.example
	modified:   ts/build/conf/development/build.conf.example
	modified:   ts/build/conf/devstation/build.conf.example
	modified:   ts/build/conf/freerdp/build.conf.example
	modified:   ts/build/conf/hwlister/build.conf.example
	modified:   ts/build/conf/icewm-rdesktop/build.conf.example
	modified:   ts/build/conf/icewm/build.conf.example
	modified:   ts/build/conf/installer/build.conf.example
	modified:   ts/build/conf/itona-Md54/build.conf.example
	modified:   ts/build/conf/rdesktop-tiny/build.conf.example
	modified:   ts/build/conf/rdesktop/build.conf.example
	modified:   ts/build/conf/tiny/build.conf.example
	modified:   ts/build/conf/vmviewpcoip-micro/build.conf.example
	modified:   ts/build/conf/vmviewpcoip/build.conf.example
	modified:   ts/build/conf/xterm/build.conf.example
	deleted:    ts/build/packages/crystalhd/.dna
	deleted:    ts/build/packages/crystalhd/dependencies
	modified:   ts/build/packages/dig/.dna
	modified:   ts/build/packages/freerdp/dependencies
	new file:   ts/build/packages/gdk-pixbuf/.dna
	renamed:    ts/build/packages/sound-esd/dependencies -> ts/build/packages/gdk-pixbuf/dependencies
	new file:   ts/build/packages/gnome-core/build/extra/lib/thinstation/system/gnome
	modified:   ts/build/packages/gnome-core/build/finalize
	modified:   ts/build/packages/gnome-core/build/install
	deleted:    ts/build/packages/gnome-media/.dna
	deleted:    ts/build/packages/gnome-media/.gitignore
	deleted:    ts/build/packages/gnome-media/build/extra/etc/cmd/gstreamer.global
	deleted:    ts/build/packages/gnome-media/build/extra/etc/cmd/mixer.global
	deleted:    ts/build/packages/gnome-media/build/extra/etc/init.d/gstreamer
	deleted:    ts/build/packages/gnome-media/build/extra/etc/init.d/mixer
	deleted:    ts/build/packages/gnome-media/build/extra/etc/ld.so.conf.d/glade.conf
	deleted:    ts/build/packages/gnome-media/build/extra/lib/menu/gstreamer
	deleted:    ts/build/packages/gnome-media/build/extra/lib/menu/mixer
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/gstreamer_16x16.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/gstreamer_32x32.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/mixer_16x16.xpm
	deleted:    ts/build/packages/gnome-media/build/extra/lib/pixmaps/mixer_32x32.xpm
	deleted:    ts/build/packages/gnome-media/build/install
	deleted:    ts/build/packages/gnome-media/build/remove
	deleted:    ts/build/packages/gnome-media/dependencies
	deleted:    ts/build/packages/gnome-network-properties/.dna
	deleted:    ts/build/packages/gnome-network-properties/dependencies
	deleted:    ts/build/packages/gnome-network-properties/etc/cmd/gnome-network-properties.global
	deleted:    ts/build/packages/gnome-network-properties/etc/init.d/gnome-network-properties
	deleted:    ts/build/packages/gnome-network-properties/lib/applications/gnome-network-properties.desktop
	deleted:    ts/build/packages/gnome-network-properties/lib/menu/gnome-network-properties
	deleted:    ts/build/packages/gnome-network-properties/lib/pixmaps/gnome-network-properties_16x16.xpm
	deleted:    ts/build/packages/gnome-network-properties/lib/pixmaps/gnome-network-properties_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/.dna
	deleted:    ts/build/packages/gnome-pulse/.gitignore
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/cmd/gstreamer.global
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/cmd/mixer.global
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/init.d/gstreamer
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/init.d/mixer
	deleted:    ts/build/packages/gnome-pulse/build/extra/etc/ld.so.conf.d/glade.conf
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/menu/gstreamer
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/menu/mixer
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/gstreamer_16x16.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/gstreamer_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/mixer_16x16.xpm
	deleted:    ts/build/packages/gnome-pulse/build/extra/lib/pixmaps/mixer_32x32.xpm
	deleted:    ts/build/packages/gnome-pulse/build/finalize
	deleted:    ts/build/packages/gnome-pulse/build/install
	deleted:    ts/build/packages/gnome-pulse/build/remove
	deleted:    ts/build/packages/gnome-pulse/dependencies
	deleted:    ts/build/packages/gnome-python/.dna
	deleted:    ts/build/packages/gnome-python/dependencies
	modified:   ts/build/packages/gnome-search-tool/.dna
	renamed:    ts/build/packages/gnome-search-tool/lib/menu/gnome-search-tool -> ts/build/packages/gnome-search-tool/build/extra/lib/menu/gnome-search-tool
	new file:   ts/build/packages/gnome-search-tool/build/install
	new file:   ts/build/packages/gnome-search-tool/build/remove
	deleted:    ts/build/packages/gst-ffmpeg/build/install
	deleted:    ts/build/packages/gst-ffmpeg/build/remove
	renamed:    ts/build/packages/gst-ffmpeg/.dna -> ts/build/packages/gst-libav/.dna
	renamed:    ts/build/packages/gst-ffmpeg/.gitignore -> ts/build/packages/gst-libav/.gitignore
	new file:   ts/build/packages/gst-libav/build/install
	new file:   ts/build/packages/gst-libav/build/remove
	renamed:    ts/build/packages/gst-ffmpeg/dependencies -> ts/build/packages/gst-libav/dependencies
	modified:   ts/build/packages/gtk-2.0/.dna
	modified:   ts/build/packages/gtk-2.0/dependencies
	modified:   ts/build/packages/ica/.dna
	modified:   ts/build/packages/libxml2-python/.dna
	deleted:    ts/build/packages/notify-python/.dna
	deleted:    ts/build/packages/notify-python/dependencies
	modified:   ts/build/packages/pycurl/.dna
	new file:   ts/build/packages/pycurl/.gitignore
	new file:   ts/build/packages/pycurl/build/install
	new file:   ts/build/packages/pycurl/build/remove
	deleted:    ts/build/packages/sound-esd/.dna
	deleted:    ts/build/packages/sound-esd/etc/init.d/sound-esd
	deleted:    ts/build/packages/sound-esd/etc/rc5.d/S10sound-esd
	modified:   ts/build/packages/tarantella/.dna
	modified:   ts/build/packages/xfwm4/build/install
	modified:   ts/ports/binary-core/intel-microcode/.gitignore
	modified:   ts/ports/binary-core/intel-microcode/intel-microcode#20170511-1.pkg.tar.xz
	modified:   ts/ports/binary-opt/edk2/.footprint
	modified:   ts/ports/binary-opt/edk2/.gitignore
	modified:   ts/ports/binary-opt/edk2/.md5sum
	modified:   ts/ports/binary-opt/edk2/Pkgfile
	renamed:    ts/ports/components/ocsinventory/.footprint -> ts/ports/binary-opt/ocsinventory/.footprint
	renamed:    ts/ports/components/ocsinventory/.md5sum -> ts/ports/binary-opt/ocsinventory/.md5sum
	new file:   ts/ports/binary-opt/ocsinventory/Pkgfile
	renamed:    ts/ports/components/ocsinventory/ocsinventory#git-1.pkg.tar.gz -> ts/ports/binary-opt/ocsinventory/ocsinventory#git-1.pkg.tar.gz
	modified:   ts/ports/components/autofs/.footprint
	modified:   ts/ports/components/autofs/.md5sum
	modified:   ts/ports/components/autofs/Pkgfile
	deleted:    ts/ports/components/autofs/autofs#5.0.6-1.pkg.tar.gz
	new file:   ts/ports/components/autofs/autofs#5.1.2-1.pkg.tar.xz
	modified:   ts/ports/components/avahi/.footprint
	modified:   ts/ports/components/avahi/.md5sum
	modified:   ts/ports/components/avahi/Pkgfile
	deleted:    ts/ports/components/avahi/avahi#0.6.31-1.pkg.tar.gz
	new file:   ts/ports/components/avahi/avahi#0.6.32-1.pkg.tar.xz
	new file:   ts/ports/components/colord/.footprint
	new file:   ts/ports/components/colord/.md5sum
	new file:   ts/ports/components/colord/Pkgfile
	new file:   ts/ports/components/colord/colord#1.3.2-1.pkg.tar.xz
	new file:   ts/ports/components/colord/post-install
	deleted:    ts/ports/components/crystalhd/.footprint
	deleted:    ts/ports/components/crystalhd/.md5sum
	deleted:    ts/ports/components/crystalhd/Pkgfile
	deleted:    ts/ports/components/crystalhd/crystalhd#2.6.11-1.pkg.tar.gz
	modified:   ts/ports/components/eekboard/.footprint
	deleted:    ts/ports/components/eekboard/eekboard#1.0.5-1.pkg.tar.gz
	new file:   ts/ports/components/eekboard/eekboard#1.0.5-1.pkg.tar.xz
	modified:   ts/ports/components/gc/.footprint
	modified:   ts/ports/components/gc/.md5sum
	new file:   ts/ports/components/gc/PKGBUILD
	modified:   ts/ports/components/gc/Pkgfile
	deleted:    ts/ports/components/gc/gc#7.2d-1.pkg.tar.gz
	new file:   ts/ports/components/gc/gc#7.6.0-1.pkg.tar.xz
	new file:   ts/ports/components/geoclue/.footprint
	new file:   ts/ports/components/geoclue/.md5sum
	new file:   ts/ports/components/geoclue/Pkgfile
	new file:   ts/ports/components/geoclue/geoclue#2.4.3-2.pkg.tar.xz
	new file:   ts/ports/components/ibus/.footprint
	renamed:    ts/ports/components/sbsigntool/.md5sum -> ts/ports/components/ibus/.md5sum
	new file:   ts/ports/components/ibus/Pkgfile
	new file:   ts/ports/components/ibus/ibus#1.5.14-1.pkg.tar.xz
	new file:   ts/ports/components/jemalloc/.footprint
	new file:   ts/ports/components/jemalloc/.md5sum
	new file:   ts/ports/components/jemalloc/PKGBUILD
	new file:   ts/ports/components/jemalloc/Pkgfile
	new file:   ts/ports/components/jemalloc/jemalloc#5.0.1-3.pkg.tar.xz
	modified:   ts/ports/components/kismet/.footprint
	modified:   ts/ports/components/kismet/.md5sum
	modified:   ts/ports/components/kismet/Pkgfile
	deleted:    ts/ports/components/kismet/kismet#2011-03-R2-1.pkg.tar.gz
	new file:   ts/ports/components/kismet/kismet#2016_07_R1-1.pkg.tar.xz
	new file:   ts/ports/components/libatomic_ops/.footprint
	new file:   ts/ports/components/libatomic_ops/.md5sum
	new file:   ts/ports/components/libatomic_ops/PKGBUILD
	new file:   ts/ports/components/libatomic_ops/Pkgfile
	new file:   ts/ports/components/libatomic_ops/libatomic_ops#7.4.6-1.pkg.tar.xz
	modified:   ts/ports/components/libcanberra/.footprint
	modified:   ts/ports/components/libcanberra/.md5sum
	modified:   ts/ports/components/libcanberra/Pkgfile
	deleted:    ts/ports/components/libcanberra/libcanberra#0.24-1.pkg.tar.gz
	new file:   ts/ports/components/libcanberra/libcanberra#0.30-1.pkg.tar.xz
	new file:   ts/ports/components/libgusb/.footprint
	new file:   ts/ports/components/libgusb/.md5sum
	new file:   ts/ports/components/libgusb/Pkgfile
	new file:   ts/ports/components/libgusb/libgusb#0.2.9-1.pkg.tar.xz
	modified:   ts/ports/components/libimobiledevice/Pkgfile
	deleted:    ts/ports/components/libimobiledevice/libimobiledevice#1.2.0-1.pkg.tar.gz
	new file:   ts/ports/components/libimobiledevice/libimobiledevice#1.2.0-1.pkg.tar.xz
	deleted:    ts/ports/components/libmbim/libmbim#1.12.2-1.pkg.tar.gz
	new file:   ts/ports/components/libmbim/libmbim#1.12.2-1.pkg.tar.xz
	deleted:    ts/ports/components/libmeanwhile/libmeanwhile#1.0.2-2.pkg.tar.gz
	new file:   ts/ports/components/libmeanwhile/libmeanwhile#1.0.2-2.pkg.tar.xz
	modified:   ts/ports/components/libmicrohttpd/.footprint
	deleted:    ts/ports/components/libmicrohttpd/libmicrohttpd#0.9.39-1.pkg.tar.gz
	new file:   ts/ports/components/libmicrohttpd/libmicrohttpd#0.9.39-1.pkg.tar.xz
	new file:   ts/ports/components/libmspack/.footprint
	new file:   ts/ports/components/libmspack/.md5sum
	new file:   ts/ports/components/libmspack/Pkgfile
	new file:   ts/ports/components/libmspack/libmspack#1.5-1.pkg.tar.xz
	deleted:    ts/ports/components/libqmi/libqmi#1.12.6-1.pkg.tar.gz
	new file:   ts/ports/components/libqmi/libqmi#1.12.6-1.pkg.tar.xz
	modified:   ts/ports/components/libslang2/Pkgfile
	deleted:    ts/ports/components/libslang2/libslang2#2.2.4-1.pkg.tar.gz
	new file:   ts/ports/components/libslang2/libslang2#2.2.4-1.pkg.tar.xz
	modified:   ts/ports/components/libssh2/.footprint
	modified:   ts/ports/components/libssh2/.md5sum
	new file:   ts/ports/components/libssh2/PKGBUILD
	modified:   ts/ports/components/libssh2/Pkgfile
	deleted:    ts/ports/components/libssh2/libssh2#1.4.3-1.pkg.tar.gz
	new file:   ts/ports/components/libssh2/libssh2#1.8.0-2.pkg.tar.xz
	modified:   ts/ports/components/libuser/.footprint
	modified:   ts/ports/components/libuser/.md5sum
	modified:   ts/ports/components/libuser/Pkgfile
	deleted:    ts/ports/components/libuser/libuser#0.57.7-1.pkg.tar.gz
	new file:   ts/ports/components/libuser/libuser#0.62-1.pkg.tar.xz
	new file:   ts/ports/components/libvirt-glib/.footprint
	new file:   ts/ports/components/libvirt-glib/.md5sum
	new file:   ts/ports/components/libvirt-glib/PKGBUILD
	new file:   ts/ports/components/libvirt-glib/Pkgfile
	new file:   ts/ports/components/libvirt-glib/libvirt-glib#1.0.0-1.pkg.tar.xz
	modified:   ts/ports/components/libvirt/libvirt#1.3.5-1.pkg.tar.xz
	new file:   ts/ports/components/libwacom/.footprint
	new file:   ts/ports/components/libwacom/.md5sum
	new file:   ts/ports/components/libwacom/Pkgfile
	new file:   ts/ports/components/libwacom/libwacom#0.21-1.pkg.tar.xz
	new file:   ts/ports/components/mariadb/.footprint
	new file:   ts/ports/components/mariadb/.md5sum
	new file:   ts/ports/components/mariadb/0001-openssl-1-1-0.patch
	new file:   ts/ports/components/mariadb/PKGBUILD
	new file:   ts/ports/components/mariadb/Pkgfile
	new file:   ts/ports/components/mariadb/mariadb#10.1.25-1.pkg.tar.xz
	new file:   ts/ports/components/mariadb/mariadb-sysusers.conf
	new file:   ts/ports/components/mariadb/mariadb-tmpfile.conf
	new file:   ts/ports/components/mariadb/mariadb.install
	modified:   ts/ports/components/motif/.footprint
	modified:   ts/ports/components/motif/.md5sum
	modified:   ts/ports/components/motif/Pkgfile
	deleted:    ts/ports/components/motif/motif#2.3.4-1.pkg.tar.gz
	new file:   ts/ports/components/motif/motif#2.3.6-1.pkg.tar.xz
	modified:   ts/ports/components/notification-daemon/.footprint
	modified:   ts/ports/components/notification-daemon/.md5sum
	modified:   ts/ports/components/notification-daemon/Pkgfile
	deleted:    ts/ports/components/notification-daemon/notification-daemon#0.4.0-1.pkg.tar.gz
	new file:   ts/ports/components/notification-daemon/notification-daemon#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/components/ocsinventory/Pkgfile
	modified:   ts/ports/components/open-vm-tools/.footprint
	modified:   ts/ports/components/open-vm-tools/.md5sum
	modified:   ts/ports/components/open-vm-tools/Pkgfile
	new file:   ts/ports/components/open-vm-tools/open-vm-tools#10.1.5-1.pkg.tar.xz
	deleted:    ts/ports/components/open-vm-tools/open-vm-tools#9.4.6-1770165-1.pkg.tar.gz
	modified:   ts/ports/components/opencryptoki/.footprint
	modified:   ts/ports/components/opencryptoki/.md5sum
	modified:   ts/ports/components/opencryptoki/Pkgfile
	deleted:    ts/ports/components/opencryptoki/opencryptoki#2.4.2-1.pkg.tar.gz
	new file:   ts/ports/components/opencryptoki/opencryptoki#3.7.0-1.pkg.tar.xz
	modified:   ts/ports/components/pidgin-sipe/.footprint
	modified:   ts/ports/components/pidgin-sipe/.md5sum
	modified:   ts/ports/components/pidgin-sipe/Pkgfile
	deleted:    ts/ports/components/pidgin-sipe/pidgin-sipe#1.18.4-1.pkg.tar.gz
	new file:   ts/ports/components/pidgin-sipe/pidgin-sipe#1.21.1-1.pkg.tar.xz
	deleted:    ts/ports/components/redland/redland#1.0.16-1.pkg.tar.gz
	new file:   ts/ports/components/redland/redland#1.0.16-1.pkg.tar.xz
	deleted:    ts/ports/components/sbsigntool/.footprint
	deleted:    ts/ports/components/sbsigntool/Pkgfile
	deleted:    ts/ports/components/sbsigntool/sbsigntool#git-1.pkg.tar.gz
	new file:   ts/ports/components/sbsigntools/.footprint
	new file:   ts/ports/components/sbsigntools/.md5sum
	new file:   ts/ports/components/sbsigntools/0001-sbsigntools-fix-autogen.sh-for-build-service.patch
	new file:   ts/ports/components/sbsigntools/Pkgfile
	new file:   ts/ports/components/sbsigntools/sbsigntools#0.8-2.pkg.tar.xz
	new file:   ts/ports/components/sbsigntools/update-openssl-api-usage-to-support-openssl-1.1.patch
	modified:   ts/ports/components/splashutils/.footprint
	modified:   ts/ports/components/splashutils/Pkgfile
	deleted:    ts/ports/components/splashutils/splashutils#1.5.4.4-1.pkg.tar.gz
	new file:   ts/ports/components/splashutils/splashutils#1.5.4.4-1.pkg.tar.xz
	modified:   ts/ports/components/strongswan/strongswan#5.5.3-2.pkg.tar.xz
	modified:   ts/ports/components/systemd/.footprint
	modified:   ts/ports/components/systemd/.md5sum
	modified:   ts/ports/components/systemd/Pkgfile
	new file:   ts/ports/components/systemd/post-install
	deleted:    ts/ports/components/systemd/systemd#211-1.pkg.tar.gz
	new file:   ts/ports/components/systemd/systemd#231-1.pkg.tar.xz
	modified:   ts/ports/components/tn5250/.md5sum
	modified:   ts/ports/components/tn5250/Pkgfile
	new file:   ts/ports/components/tn5250/patch-lib5250_sslstream_c.patch
	deleted:    ts/ports/components/udisks/udisks#2.1.3-1.pkg.tar.gz
	new file:   ts/ports/components/udisks/udisks#2.1.3-1.pkg.tar.xz
	modified:   ts/ports/components/usbmuxd/usbmuxd#1.1.0-1.pkg.tar.xz
	modified:   ts/ports/components/virt-viewer/.footprint
	modified:   ts/ports/components/virt-viewer/.md5sum
	modified:   ts/ports/components/virt-viewer/Pkgfile
	deleted:    ts/ports/components/virt-viewer/virt-viewer#2.0-1.pkg.tar.xz
	new file:   ts/ports/components/virt-viewer/virt-viewer#5.0-1.pkg.tar.xz
	new file:   ts/ports/components/virt-viewer/virt-viewer-2.0.tar.gz
	modified:   ts/ports/components/windowmaker/.footprint
	deleted:    ts/ports/components/windowmaker/windowmaker#0.95.5-git.pkg.tar.gz
	new file:   ts/ports/components/windowmaker/windowmaker#0.95.5-git.pkg.tar.xz
	new file:   ts/ports/components/yelp-tools/.footprint
	new file:   ts/ports/components/yelp-tools/.md5sum
	new file:   ts/ports/components/yelp-tools/Pkgfile
	new file:   ts/ports/components/yelp-tools/yelp-tools#3.10.0-1.pkg.tar.xz
	new file:   ts/ports/components/yelp-xsl/.footprint
	new file:   ts/ports/components/yelp-xsl/.md5sum
	new file:   ts/ports/components/yelp-xsl/Pkgfile
	new file:   ts/ports/components/yelp-xsl/yelp-xsl#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/contrib/aircrack-ng/.footprint
	deleted:    ts/ports/contrib/aircrack-ng/.md5sum
	deleted:    ts/ports/contrib/aircrack-ng/Pkgfile
	deleted:    ts/ports/contrib/aircrack-ng/README
	deleted:    ts/ports/contrib/aircrack-ng/aircrack-ng#1.1-1.pkg.tar.gz
	modified:   ts/ports/contrib/atkmm/.footprint
	modified:   ts/ports/contrib/atkmm/.md5sum
	modified:   ts/ports/contrib/atkmm/Pkgfile
	deleted:    ts/ports/contrib/atkmm/atkmm#2.22.6-1.pkg.tar.gz
	new file:   ts/ports/contrib/atkmm/atkmm#2.24.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/boost/.footprint
	new file:   ts/ports/contrib/boost/.md5sum
	new file:   ts/ports/contrib/boost/Pkgfile
	new file:   ts/ports/contrib/boost/boost#1.63.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/cairomm/.footprint
	modified:   ts/ports/contrib/cairomm/.md5sum
	modified:   ts/ports/contrib/cairomm/Pkgfile
	deleted:    ts/ports/contrib/cairomm/cairomm#1.10.0-1.pkg.tar.gz
	new file:   ts/ports/contrib/cairomm/cairomm#1.12.0-1.pkg.tar.xz
	new file:   ts/ports/contrib/cracklib/.footprint
	new file:   ts/ports/contrib/cracklib/.md5sum
	new file:   ts/ports/contrib/cracklib/Pkgfile
	new file:   ts/ports/contrib/cracklib/cracklib#2.9.6-1.pkg.tar.xz
	modified:   ts/ports/contrib/dillo/.footprint
	modified:   ts/ports/contrib/dillo/.md5sum
	modified:   ts/ports/contrib/dillo/Pkgfile
	deleted:    ts/ports/contrib/dillo/dillo#3.0.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/dillo/dillo#3.0.5-1.pkg.tar.xz
	modified:   ts/ports/contrib/dsniff/.md5sum
	modified:   ts/ports/contrib/dsniff/Pkgfile
	deleted:    ts/ports/contrib/dsniff/dsniff#2.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/dsniff/dsniff#2.4-1.pkg.tar.xz
	new file:   ts/ports/contrib/dsniff/dsniff-openssl-1.1.patch
	deleted:    ts/ports/contrib/enchant/enchant#1.6.0-2.pkg.tar.gz
	new file:   ts/ports/contrib/enchant/enchant#1.6.0-2.pkg.tar.xz
	new file:   ts/ports/contrib/gcr/.footprint
	new file:   ts/ports/contrib/gcr/.md5sum
	new file:   ts/ports/contrib/gcr/Pkgfile
	new file:   ts/ports/contrib/gcr/gcr#3.20.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/geany-plugins/.footprint
	deleted:    ts/ports/contrib/geany-plugins/geany-plugins#git-1.pkg.tar.gz
	new file:   ts/ports/contrib/geany-plugins/geany-plugins#git-1.pkg.tar.xz
	modified:   ts/ports/contrib/geany/.footprint
	modified:   ts/ports/contrib/geany/.md5sum
	modified:   ts/ports/contrib/geany/Pkgfile
	deleted:    ts/ports/contrib/geany/geany#1.24.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/geany/geany#1.29-1.pkg.tar.xz
	modified:   ts/ports/contrib/glib-networking/.footprint
	modified:   ts/ports/contrib/glib-networking/.md5sum
	modified:   ts/ports/contrib/glib-networking/Pkgfile
	deleted:    ts/ports/contrib/glib-networking/glib-networking#2.32.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/glib-networking/glib-networking#2.48.2-1.pkg.tar.xz
	modified:   ts/ports/contrib/glibmm/.footprint
	modified:   ts/ports/contrib/glibmm/.md5sum
	modified:   ts/ports/contrib/glibmm/Pkgfile
	deleted:    ts/ports/contrib/glibmm/glibmm#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/glibmm/glibmm#2.48.1-1.pkg.tar.xz
	deleted:    ts/ports/contrib/gst-ffmpeg/.footprint
	deleted:    ts/ports/contrib/gst-ffmpeg/.md5sum
	deleted:    ts/ports/contrib/gst-ffmpeg/Pkgfile
	deleted:    ts/ports/contrib/gst-ffmpeg/gst-ffmpeg#0.10.13-1.pkg.tar.gz
	new file:   ts/ports/contrib/gst-libav/.footprint
	new file:   ts/ports/contrib/gst-libav/.md5sum
	new file:   ts/ports/contrib/gst-libav/Pkgfile
	new file:   ts/ports/contrib/gst-libav/gst-libav#1.8.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-bad/.footprint
	new file:   ts/ports/contrib/gst-plugins-bad/.md5sum
	new file:   ts/ports/contrib/gst-plugins-bad/Pkgfile
	new file:   ts/ports/contrib/gst-plugins-bad/gst-plugins-bad#1.12.1-2.pkg.tar.xz
	modified:   ts/ports/contrib/gst-plugins-good/.footprint
	modified:   ts/ports/contrib/gst-plugins-good/.md5sum
	modified:   ts/ports/contrib/gst-plugins-good/Pkgfile
	deleted:    ts/ports/contrib/gst-plugins-good/gst-plugins-good#0.10.31-1.pkg.tar.gz
	new file:   ts/ports/contrib/gst-plugins-good/gst-plugins-good#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-good/gst-plugins-good-1.8.2.tar.xz
	new file:   ts/ports/contrib/gst-plugins-ugly/.footprint
	new file:   ts/ports/contrib/gst-plugins-ugly/.md5sum
	new file:   ts/ports/contrib/gst-plugins-ugly/Pkgfile
	new file:   ts/ports/contrib/gst-plugins-ugly/gst-plugins-ugly#1.12.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/gst-plugins-ugly/gst-plugins-ugly-1.8.2.tar.xz
	modified:   ts/ports/contrib/gtk-doc/.footprint
	modified:   ts/ports/contrib/gtk-doc/.md5sum
	modified:   ts/ports/contrib/gtk-doc/Pkgfile
	deleted:    ts/ports/contrib/gtk-doc/gtk-doc#1.18-1.pkg.tar.gz
	new file:   ts/ports/contrib/gtk-doc/gtk-doc#1.25-1.pkg.tar.xz
	deleted:    ts/ports/contrib/gtkmm/.footprint
	deleted:    ts/ports/contrib/gtkmm/.md5sum
	deleted:    ts/ports/contrib/gtkmm/Pkgfile
	deleted:    ts/ports/contrib/gtkmm/gtkmm#2.24.2-1.pkg.tar.gz
	modified:   ts/ports/contrib/gtkspell/.footprint
	deleted:    ts/ports/contrib/gtkspell/gtkspell#2.0.16-1.pkg.tar.gz
	new file:   ts/ports/contrib/gtkspell/gtkspell#2.0.16-1.pkg.tar.xz
	new file:   ts/ports/contrib/hyphen/.footprint
	new file:   ts/ports/contrib/hyphen/.md5sum
	new file:   ts/ports/contrib/hyphen/Pkgfile
	new file:   ts/ports/contrib/hyphen/hyphen#2.8.8-1.pkg.tar.xz
	modified:   ts/ports/contrib/inkscape/.footprint
	modified:   ts/ports/contrib/inkscape/.md5sum
	new file:   ts/ports/contrib/inkscape/PKGBUILD
	modified:   ts/ports/contrib/inkscape/Pkgfile
	deleted:    ts/ports/contrib/inkscape/inkscape#0.48.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/inkscape/inkscape#0.92.1-3.pkg.tar.xz
	new file:   ts/ports/contrib/libcacard/.footprint
	new file:   ts/ports/contrib/libcacard/.md5sum
	new file:   ts/ports/contrib/libcacard/PKGBUILD
	new file:   ts/ports/contrib/libcacard/Pkgfile
	new file:   ts/ports/contrib/libcacard/libcacard#2.5.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdcss/.footprint
	new file:   ts/ports/contrib/libdvdcss/.md5sum
	new file:   ts/ports/contrib/libdvdcss/Pkgfile
	new file:   ts/ports/contrib/libdvdcss/libdvdcss#1.4.0-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdnav/.footprint
	new file:   ts/ports/contrib/libdvdnav/.md5sum
	new file:   ts/ports/contrib/libdvdnav/Pkgfile
	new file:   ts/ports/contrib/libdvdnav/libdvdnav#5.0.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/libdvdread/.footprint
	new file:   ts/ports/contrib/libdvdread/.md5sum
	new file:   ts/ports/contrib/libdvdread/Pkgfile
	new file:   ts/ports/contrib/libdvdread/libdvdread#5.0.3-1.pkg.tar.xz
	modified:   ts/ports/contrib/libfm/.footprint
	deleted:    ts/ports/contrib/libfm/libfm#git-1.pkg.tar.gz
	new file:   ts/ports/contrib/libfm/libfm#git-1.pkg.tar.xz
	modified:   ts/ports/contrib/libsigc++/.footprint
	modified:   ts/ports/contrib/libsigc++/.md5sum
	modified:   ts/ports/contrib/libsigc++/Pkgfile
	deleted:    ts/ports/contrib/libsigc++/libsigc++#2.3.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/libsigc++/libsigc++#2.8.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/libsoup/.footprint
	modified:   ts/ports/contrib/libsoup/.md5sum
	modified:   ts/ports/contrib/libsoup/Pkgfile
	deleted:    ts/ports/contrib/libsoup/libsoup#2.38.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/libsoup/libsoup#2.54.1-1.pkg.tar.xz
	new file:   ts/ports/contrib/libwebp/.footprint
	new file:   ts/ports/contrib/libwebp/.md5sum
	new file:   ts/ports/contrib/libwebp/Pkgfile
	new file:   ts/ports/contrib/libwebp/libwebp#0.5.1-1.pkg.tar.xz
	modified:   ts/ports/contrib/nmap/.footprint
	modified:   ts/ports/contrib/nmap/.md5sum
	modified:   ts/ports/contrib/nmap/Pkgfile
	deleted:    ts/ports/contrib/nmap/nmap#6.40-1.pkg.tar.gz
	new file:   ts/ports/contrib/nmap/nmap#7.50-1.pkg.tar.xz
	new file:   ts/ports/contrib/nmap/nmap-6.40.tar.bz2
	new file:   ts/ports/contrib/nodejs/.footprint
	new file:   ts/ports/contrib/nodejs/.md5sum
	new file:   ts/ports/contrib/nodejs/Pkgfile
	new file:   ts/ports/contrib/nodejs/nodejs#6.4.0-3.pkg.tar.xz
	modified:   ts/ports/contrib/ntp/.footprint
	modified:   ts/ports/contrib/ntp/.md5sum
	modified:   ts/ports/contrib/ntp/Pkgfile
	deleted:    ts/ports/contrib/ntp/ntp#4.2.8p1-1.pkg.tar.gz
	new file:   ts/ports/contrib/ntp/ntp#4.2.8p10-1.pkg.tar.xz
	modified:   ts/ports/contrib/openvpn/.footprint
	modified:   ts/ports/contrib/openvpn/.md5sum
	modified:   ts/ports/contrib/openvpn/Pkgfile
	deleted:    ts/ports/contrib/openvpn/openvpn#2.2.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/openvpn/openvpn#2.4.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/openvpn/openvpn-2.2.1.tar.gz
	modified:   ts/ports/contrib/pangomm/.md5sum
	modified:   ts/ports/contrib/pangomm/Pkgfile
	deleted:    ts/ports/contrib/pangomm/pangomm#2.28.4-1.pkg.tar.gz
	new file:   ts/ports/contrib/pangomm/pangomm#2.40.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/pidgin/.footprint
	modified:   ts/ports/contrib/pidgin/.md5sum
	modified:   ts/ports/contrib/pidgin/Pkgfile
	deleted:    ts/ports/contrib/pidgin/pidgin#2.10.11-1.pkg.tar.gz
	new file:   ts/ports/contrib/pidgin/pidgin#2.11.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/rdesktop/.md5sum
	modified:   ts/ports/contrib/rdesktop/Pkgfile
	new file:   ts/ports/contrib/rdesktop/bd6aa6acddf0ba640a49834807872f4cc0d0a773.patch
	new file:   ts/ports/contrib/rdesktop/c6e8e1074b8ac57de6c80c4e3ed38e105b4d94f1.patch
	deleted:    ts/ports/contrib/rdesktop/rdesktop#1.8.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/rdesktop/rdesktop#1.8.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/rest/.footprint
	new file:   ts/ports/contrib/rest/.md5sum
	new file:   ts/ports/contrib/rest/Pkgfile
	new file:   ts/ports/contrib/rest/rest#0.8.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/rtmpdump/.md5sum
	modified:   ts/ports/contrib/rtmpdump/Pkgfile
	new file:   ts/ports/contrib/rtmpdump/libdir.patch
	deleted:    ts/ports/contrib/rtmpdump/rtmpdump#0.5.2.3-1.pkg.tar.gz
	new file:   ts/ports/contrib/rtmpdump/rtmpdump#2.4.r96.fa8646d-1.pkg.tar.xz
	modified:   ts/ports/contrib/spice-gtk/.footprint
	modified:   ts/ports/contrib/spice-gtk/.md5sum
	new file:   ts/ports/contrib/spice-gtk/PKGBUILD?h=packages%2Fspice-gtk3
	modified:   ts/ports/contrib/spice-gtk/Pkgfile
	new file:   ts/ports/contrib/spice-gtk/debian_843471-clipboard_Fix_crash_by_handling_error.patch
	deleted:    ts/ports/contrib/spice-gtk/spice-gtk#0.26-1.pkg.tar.xz
	new file:   ts/ports/contrib/spice-gtk/spice-gtk#0.33-1.pkg.tar.xz
	new file:   ts/ports/contrib/spice-gtk/ssl-Rework-our-custom-BIO-type.patch
	new file:   ts/ports/contrib/spice-gtk/ssl-Stop-creating-our-own-X509_LOOKUP_METHOD.patch
	new file:   ts/ports/contrib/spice-gtk/ssl-Use-accessors-rather-than-direct-struct-access.patch
	modified:   ts/ports/contrib/spice/Pkgfile
	modified:   ts/ports/contrib/spice/spice#0.13.3-1.pkg.tar.xz
	new file:   ts/ports/contrib/vala/.footprint
	new file:   ts/ports/contrib/vala/.md5sum
	new file:   ts/ports/contrib/vala/Pkgfile
	new file:   ts/ports/contrib/vala/vala#0.29.2-1.pkg.tar.xz
	new file:   ts/ports/contrib/webkit-gtk2/.footprint
	new file:   ts/ports/contrib/webkit-gtk2/.md5sum
	new file:   ts/ports/contrib/webkit-gtk2/.signature
	new file:   ts/ports/contrib/webkit-gtk2/Pkgfile
	new file:   ts/ports/contrib/webkit-gtk2/webkit-gtk2#2.4.11-1.pkg.tar.xz
	new file:   ts/ports/contrib/webkit-gtk2/webkitgtk-2.4.9-abs.patch
	new file:   ts/ports/contrib/webkit-gtk3/.footprint
	new file:   ts/ports/contrib/webkit-gtk3/.md5sum
	new file:   ts/ports/contrib/webkit-gtk3/Pkgfile
	new file:   ts/ports/contrib/webkit-gtk3/webkit-gtk3#2.4.11-1.pkg.tar.xz
	deleted:    ts/ports/contrib/webkit/.footprint
	deleted:    ts/ports/contrib/webkit/.md5sum
	deleted:    ts/ports/contrib/webkit/Pkgfile
	deleted:    ts/ports/contrib/webkit/webkit#1.7.5-1.pkg.tar.gz
	new file:   ts/ports/contrib/webkit2gtk/.footprint
	new file:   ts/ports/contrib/webkit2gtk/.md5sum
	new file:   ts/ports/contrib/webkit2gtk/Pkgfile
	new file:   ts/ports/contrib/webkit2gtk/webkit2gtk#2.12.3-1.pkg.tar.xz
	deleted:    ts/ports/contrib/wxgtk/wxgtk#2.8.12-1.pkg.tar.gz
	new file:   ts/ports/contrib/wxgtk/wxgtk#2.8.12-1.pkg.tar.xz
	deleted:    ts/ports/contrib/x11vnc/x11vnc#0.9.13-1.pkg.tar.gz
	new file:   ts/ports/contrib/x11vnc/x11vnc#0.9.13-1.pkg.tar.xz
	modified:   ts/ports/contrib/xerces-c/.md5sum
	modified:   ts/ports/contrib/xerces-c/Pkgfile
	deleted:    ts/ports/contrib/xerces-c/xerces-c#3.1.1-1.pkg.tar.gz
	new file:   ts/ports/contrib/xerces-c/xerces-c#3.1.4-1.pkg.tar.xz
	modified:   ts/ports/core/automake/.footprint
	modified:   ts/ports/core/automake/.md5sum
	modified:   ts/ports/core/automake/Pkgfile
	deleted:    ts/ports/core/automake/automake#1.14.1-1.pkg.tar.gz
	new file:   ts/ports/core/automake/automake#1.15-2.pkg.tar.xz
	deleted:    ts/ports/core/bash/bash#4.3.33-1.pkg.tar.gz
	new file:   ts/ports/core/bash/bash#4.3.33-1.pkg.tar.xz
	modified:   ts/ports/core/bindutils/.md5sum
	modified:   ts/ports/core/bindutils/Pkgfile
	new file:   ts/ports/core/bindutils/bind-9.8.1.tar.gz
	new file:   ts/ports/core/bindutils/bindutils#9.11.1-P1-1.pkg.tar.xz
	deleted:    ts/ports/core/bindutils/bindutils#9.8.1-1.pkg.tar.gz
	modified:   ts/ports/core/binutils/.footprint
	modified:   ts/ports/core/binutils/.md5sum
	modified:   ts/ports/core/binutils/Pkgfile
	deleted:    ts/ports/core/binutils/binutils#2.24-2.pkg.tar.gz
	new file:   ts/ports/core/binutils/binutils#2.27-2.pkg.tar.xz
	modified:   ts/ports/core/curl/curl#7.49.1-1.pkg.tar.xz
	modified:   ts/ports/core/exim/.footprint
	modified:   ts/ports/core/exim/.md5sum
	new file:   ts/ports/core/exim/.signature
	modified:   ts/ports/core/exim/Pkgfile
	modified:   ts/ports/core/exim/exim
	deleted:    ts/ports/core/exim/exim#4.77-1.pkg.tar.gz
	new file:   ts/ports/core/exim/exim#4.89-1.pkg.tar.xz
	deleted:    ts/ports/core/exim/exim-4.77-compile_number.patch
	modified:   ts/ports/core/exim/exim-config.patch
	modified:   ts/ports/core/gettext/.footprint
	modified:   ts/ports/core/gettext/.md5sum
	modified:   ts/ports/core/gettext/Pkgfile
	deleted:    ts/ports/core/gettext/gettext#0.18.1.1-1.pkg.tar.gz
	new file:   ts/ports/core/gettext/gettext#0.19.8.1-1.pkg.tar.xz
	modified:   ts/ports/core/grep/.footprint
	deleted:    ts/ports/core/grep/grep#2.9-1.pkg.tar.gz
	new file:   ts/ports/core/grep/grep#2.9-1.pkg.tar.xz
	deleted:    ts/ports/core/groff/groff#1.21-1.pkg.tar.gz
	new file:   ts/ports/core/groff/groff#1.21-1.pkg.tar.xz
	modified:   ts/ports/core/gzip/.md5sum
	modified:   ts/ports/core/gzip/Pkgfile
	deleted:    ts/ports/core/gzip/gzip#1.4-1.pkg.tar.gz
	new file:   ts/ports/core/gzip/gzip#1.8-1.pkg.tar.xz
	deleted:    ts/ports/core/iputils/iputils#s20101006-1.pkg.tar.gz
	new file:   ts/ports/core/iputils/iputils#s20101006-1.pkg.tar.xz
	deleted:    ts/ports/core/less/less#444-1.pkg.tar.gz
	new file:   ts/ports/core/less/less#444-1.pkg.tar.xz
	modified:   ts/ports/core/libarchive/.footprint
	modified:   ts/ports/core/libarchive/.md5sum
	modified:   ts/ports/core/libarchive/Pkgfile
	deleted:    ts/ports/core/libarchive/libarchive#2.8.5-1.pkg.tar.gz
	new file:   ts/ports/core/libarchive/libarchive#3.2.1-3.pkg.tar.xz
	modified:   ts/ports/core/libpcre/.footprint
	modified:   ts/ports/core/libpcre/.md5sum
	modified:   ts/ports/core/libpcre/Pkgfile
	deleted:    ts/ports/core/libpcre/libpcre#8.20-1.pkg.tar.gz
	new file:   ts/ports/core/libpcre/libpcre#8.40-1.pkg.tar.xz
	modified:   ts/ports/core/ncurses/.footprint
	modified:   ts/ports/core/ncurses/.md5sum
	modified:   ts/ports/core/ncurses/Pkgfile
	deleted:    ts/ports/core/ncurses/ncurses#5.9-1.pkg.tar.gz
	new file:   ts/ports/core/ncurses/ncurses#6.0-2.pkg.tar.xz
	new file:   ts/ports/core/ncurses/post-install
	modified:   ts/ports/core/openssh/.md5sum
	modified:   ts/ports/core/openssh/Pkgfile
	deleted:    ts/ports/core/openssh/openssh#7.2p2-1.pkg.tar.gz
	new file:   ts/ports/core/openssh/openssh#7.5p1-1.pkg.tar.xz
	new file:   ts/ports/core/openssh/openssl-1.1.0.patch
	new file:   ts/ports/core/openssl-1/.footprint
	new file:   ts/ports/core/openssl-1/.md5sum
	new file:   ts/ports/core/openssl-1/Pkgfile
	new file:   ts/ports/core/openssl-1/mksslcert.sh
	new file:   ts/ports/core/openssl-1/openssl-1#1.0.2l-2.pkg.tar.xz
	new file:   ts/ports/core/openssl-1/openssl-1.1.0f.tar.gz
	new file:   ts/ports/core/openssl-1/post-install
	modified:   ts/ports/core/openssl/.footprint
	modified:   ts/ports/core/openssl/.md5sum
	modified:   ts/ports/core/openssl/Pkgfile
	modified:   ts/ports/core/openssl/mksslcert.sh
	deleted:    ts/ports/core/openssl/openssl#1.0.2g-1.pkg.tar.gz
	new file:   ts/ports/core/openssl/openssl#1.1.0f-2.pkg.tar.xz
	modified:   ts/ports/core/perl/.footprint
	deleted:    ts/ports/core/perl/perl#5.20.0-1.pkg.tar.gz
	new file:   ts/ports/core/perl/perl#5.20.0-1.pkg.tar.xz
	deleted:    ts/ports/core/pkg-config/pkg-config#0.28-1.pkg.tar.gz
	new file:   ts/ports/core/pkg-config/pkg-config#0.28-1.pkg.tar.xz
	modified:   ts/ports/core/ppp/.footprint
	modified:   ts/ports/core/ppp/.md5sum
	new file:   ts/ports/core/ppp/CVE-2015-3310.patch
	new file:   ts/ports/core/ppp/PKGBUILD
	modified:   ts/ports/core/ppp/Pkgfile
	new file:   ts/ports/core/ppp/ip-down
	new file:   ts/ports/core/ppp/ip-down.d.dns.sh
	new file:   ts/ports/core/ppp/ip-up
	new file:   ts/ports/core/ppp/ip-up.d.dns.sh
	new file:   ts/ports/core/ppp/ipv6-down
	new file:   ts/ports/core/ppp/ipv6-up
	new file:   ts/ports/core/ppp/ipv6-up.d.iface-config.sh
	new file:   ts/ports/core/ppp/options
	new file:   ts/ports/core/ppp/ppp#2.4.7-2.pkg.tar.xz
	deleted:    ts/ports/core/ppp/ppp#2.4.7-3.pkg.tar.gz
	new file:   ts/ports/core/ppp/ppp-2.4.6-makefiles.patch
	deleted:    ts/ports/core/ppp/ppp-nofilter.patch
	new file:   ts/ports/core/ppp/ppp.systemd
	modified:   ts/ports/core/shadow/.footprint
	modified:   ts/ports/core/shadow/.md5sum
	modified:   ts/ports/core/shadow/Pkgfile
	modified:   ts/ports/core/shadow/login.defs
	deleted:    ts/ports/core/shadow/other
	deleted:    ts/ports/core/shadow/shadow#4.1.4.3-1.pkg.tar.gz
	new file:   ts/ports/core/shadow/shadow#4.2.1-2.pkg.tar.xz
	deleted:    ts/ports/core/shadow/system-auth
	modified:   ts/ports/core/util-linux/.footprint
	modified:   ts/ports/core/util-linux/.md5sum
	modified:   ts/ports/core/util-linux/Pkgfile
	deleted:    ts/ports/core/util-linux/util-linux#2.26.2-1.pkg.tar.gz
	new file:   ts/ports/core/util-linux/util-linux#2.28-1.pkg.tar.xz
	modified:   ts/ports/core/wget/.md5sum
	modified:   ts/ports/core/wget/Pkgfile
	deleted:    ts/ports/core/wget/wget#1.13.4-1.pkg.tar.gz
	new file:   ts/ports/core/wget/wget#1.19.1-1.pkg.tar.xz
	modified:   ts/ports/core/xz/.footprint
	modified:   ts/ports/core/xz/.md5sum
	modified:   ts/ports/core/xz/Pkgfile
	deleted:    ts/ports/core/xz/xz#5.0.3-1.pkg.tar.gz
	new file:   ts/ports/core/xz/xz#5.2.2-1.pkg.tar.xz
	new file:   ts/ports/gnome/adwaita-icon-theme/.footprint
	renamed:    ts/ports/opt/adwaita-icon-theme/.md5sum -> ts/ports/gnome/adwaita-icon-theme/.md5sum
	new file:   ts/ports/gnome/adwaita-icon-theme/Pkgfile
	new file:   ts/ports/gnome/adwaita-icon-theme/adwaita-icon-theme#3.20-1.pkg.tar.xz
	renamed:    ts/ports/opt/adwaita-icon-theme/post-install -> ts/ports/gnome/adwaita-icon-theme/post-install
	new file:   ts/ports/gnome/at-spi2-atk/.footprint
	new file:   ts/ports/gnome/at-spi2-atk/.md5sum
	new file:   ts/ports/gnome/at-spi2-atk/Pkgfile
	new file:   ts/ports/gnome/at-spi2-atk/at-spi2-atk#2.20.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/at-spi2-core/.footprint
	new file:   ts/ports/gnome/at-spi2-core/.md5sum
	new file:   ts/ports/gnome/at-spi2-core/Pkgfile
	new file:   ts/ports/gnome/at-spi2-core/at-spi2-core#2.20.2-1.pkg.tar.xz
	new file:   ts/ports/gnome/atk/.footprint
	new file:   ts/ports/gnome/atk/.md5sum
	new file:   ts/ports/gnome/atk/Pkgfile
	new file:   ts/ports/gnome/atk/atk#2.20.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter-gst/.footprint
	new file:   ts/ports/gnome/clutter-gst/.md5sum
	new file:   ts/ports/gnome/clutter-gst/Pkgfile
	new file:   ts/ports/gnome/clutter-gst/clutter-gst#3.0.18-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter-gtk/.footprint
	new file:   ts/ports/gnome/clutter-gtk/.md5sum
	new file:   ts/ports/gnome/clutter-gtk/Pkgfile
	new file:   ts/ports/gnome/clutter-gtk/clutter-gtk#1.8.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/clutter/.footprint
	new file:   ts/ports/gnome/clutter/.md5sum
	new file:   ts/ports/gnome/clutter/Pkgfile
	new file:   ts/ports/gnome/clutter/clutter#1.26.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/cogl/.footprint
	new file:   ts/ports/gnome/cogl/.md5sum
	new file:   ts/ports/gnome/cogl/Pkgfile
	new file:   ts/ports/gnome/cogl/cogl#1.22.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/dconf/.footprint
	modified:   ts/ports/gnome/dconf/.md5sum
	modified:   ts/ports/gnome/dconf/Pkgfile
	new file:   ts/ports/gnome/dconf/dconf#0.26.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/dconf/dconf#0.5.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/esound/.footprint
	deleted:    ts/ports/gnome/esound/.md5sum
	deleted:    ts/ports/gnome/esound/Pkgfile
	deleted:    ts/ports/gnome/esound/esound#0.2.41-1.pkg.tar.gz
	modified:   ts/ports/gnome/evince/.footprint
	modified:   ts/ports/gnome/evince/.md5sum
	modified:   ts/ports/gnome/evince/Pkgfile
	deleted:    ts/ports/gnome/evince/evince#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/evince/evince#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/file-roller/.footprint
	modified:   ts/ports/gnome/file-roller/.md5sum
	modified:   ts/ports/gnome/file-roller/Pkgfile
	deleted:    ts/ports/gnome/file-roller/file-roller#2.32.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/file-roller/file-roller#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/galculator/.footprint
	modified:   ts/ports/gnome/galculator/.md5sum
	modified:   ts/ports/gnome/galculator/Pkgfile
	deleted:    ts/ports/gnome/galculator/galculator#1.3.4-1.pkg.tar.gz
	new file:   ts/ports/gnome/galculator/galculator#2.1.4-1.pkg.tar.xz
	modified:   ts/ports/gnome/gamin/Pkgfile
	deleted:    ts/ports/gnome/gamin/gamin#0.1.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/gamin/gamin#0.1.10-1.pkg.tar.xz
	modified:   ts/ports/gnome/gconf/.footprint
	modified:   ts/ports/gnome/gconf/.md5sum
	modified:   ts/ports/gnome/gconf/Pkgfile
	deleted:    ts/ports/gnome/gconf/gconf#2.31.91-1.pkg.tar.gz
	new file:   ts/ports/gnome/gconf/gconf#3.2.6-1.pkg.tar.xz
	new file:   ts/ports/gnome/gdk-pixbuf/.footprint
	new file:   ts/ports/gnome/gdk-pixbuf/.md5sum
	new file:   ts/ports/gnome/gdk-pixbuf/Pkgfile
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf#2.34.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf-register.sh
	new file:   ts/ports/gnome/gdk-pixbuf/gdk-pixbuf.loaders
	new file:   ts/ports/gnome/geocode-glib/.footprint
	new file:   ts/ports/gnome/geocode-glib/.md5sum
	new file:   ts/ports/gnome/geocode-glib/Pkgfile
	new file:   ts/ports/gnome/geocode-glib/geocode-glib#3.20.1-2.pkg.tar.xz
	new file:   ts/ports/gnome/glib/.footprint
	new file:   ts/ports/gnome/glib/.md5sum
	new file:   ts/ports/gnome/glib/Pkgfile
	new file:   ts/ports/gnome/glib/glib#2.48.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/glib/gschemas.compiled
	new file:   ts/ports/gnome/glib/post-install
	modified:   ts/ports/gnome/gmime/.footprint
	deleted:    ts/ports/gnome/gmime/gmime#2.6.20-1.pkg.tar.gz
	new file:   ts/ports/gnome/gmime/gmime#2.6.20-1.pkg.tar.xz
	modified:   ts/ports/gnome/gmtk/.footprint
	modified:   ts/ports/gnome/gmtk/.md5sum
	modified:   ts/ports/gnome/gmtk/Pkgfile
	deleted:    ts/ports/gnome/gmtk/gmtk#1.0.7-1.pkg.tar.gz
	new file:   ts/ports/gnome/gmtk/gmtk#1.0.9b-1.pkg.tar.xz
	new file:   ts/ports/gnome/gnome-bluetooth/.footprint
	new file:   ts/ports/gnome/gnome-bluetooth/.md5sum
	new file:   ts/ports/gnome/gnome-bluetooth/Pkgfile
	new file:   ts/ports/gnome/gnome-bluetooth/gnome-bluetooth#3.20.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-common/.footprint
	modified:   ts/ports/gnome/gnome-common/.md5sum
	modified:   ts/ports/gnome/gnome-common/Pkgfile
	deleted:    ts/ports/gnome/gnome-common/gnome-common#2.34.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-common/gnome-common#3.18.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-control-center/.footprint
	modified:   ts/ports/gnome/gnome-control-center/.md5sum
	modified:   ts/ports/gnome/gnome-control-center/Pkgfile
	deleted:    ts/ports/gnome/gnome-control-center/gnome-control-center#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-control-center/gnome-control-center#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-desktop/.footprint
	modified:   ts/ports/gnome/gnome-desktop/.md5sum
	modified:   ts/ports/gnome/gnome-desktop/Pkgfile
	deleted:    ts/ports/gnome/gnome-desktop/gnome-desktop#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-desktop/gnome-desktop#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-disk-utility/.footprint
	modified:   ts/ports/gnome/gnome-disk-utility/.md5sum
	modified:   ts/ports/gnome/gnome-disk-utility/Pkgfile
	deleted:    ts/ports/gnome/gnome-disk-utility/gnome-disk-utility#2.30.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-disk-utility/gnome-disk-utility#3.20.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-doc-utils/.footprint
	deleted:    ts/ports/gnome/gnome-doc-utils/.md5sum
	deleted:    ts/ports/gnome/gnome-doc-utils/Pkgfile
	deleted:    ts/ports/gnome/gnome-doc-utils/gnome-doc-utils#0.20.10-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-doc-utils/post-install
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/.footprint
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/.md5sum
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/Pkgfile
	new file:   ts/ports/gnome/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic#3.12.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-icon-theme/.footprint
	modified:   ts/ports/gnome/gnome-icon-theme/.md5sum
	modified:   ts/ports/gnome/gnome-icon-theme/Pkgfile
	new file:   ts/ports/gnome/gnome-icon-theme/gnome-icon-theme#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-icon-theme/gnome-icon-theme#3.6.2-1.pkg.tar.gz
	modified:   ts/ports/gnome/gnome-keyring/.footprint
	modified:   ts/ports/gnome/gnome-keyring/.md5sum
	modified:   ts/ports/gnome/gnome-keyring/Pkgfile
	deleted:    ts/ports/gnome/gnome-keyring/gnome-keyring#2.31.4-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-keyring/gnome-keyring#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-media/.footprint
	deleted:    ts/ports/gnome/gnome-media/.md5sum
	deleted:    ts/ports/gnome/gnome-media/Pkgfile
	deleted:    ts/ports/gnome/gnome-media/gnome-media#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-media/post-install
	modified:   ts/ports/gnome/gnome-menus/.footprint
	modified:   ts/ports/gnome/gnome-menus/.md5sum
	modified:   ts/ports/gnome/gnome-menus/Pkgfile
	deleted:    ts/ports/gnome/gnome-menus/gnome-menus#2.30.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-menus/gnome-menus#3.13.3-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-mime-data/.footprint
	deleted:    ts/ports/gnome/gnome-mime-data/.md5sum
	deleted:    ts/ports/gnome/gnome-mime-data/Pkgfile
	deleted:    ts/ports/gnome/gnome-mime-data/gnome-mime-data#2.18.0-1.pkg.tar.gz
	modified:   ts/ports/gnome/gnome-mplayer/.md5sum
	modified:   ts/ports/gnome/gnome-mplayer/Pkgfile
	deleted:    ts/ports/gnome/gnome-mplayer/gnome-mplayer#1.0.7-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-mplayer/gnome-mplayer#1.0.9b-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-nettool/.footprint
	modified:   ts/ports/gnome/gnome-nettool/.md5sum
	modified:   ts/ports/gnome/gnome-nettool/Pkgfile
	deleted:    ts/ports/gnome/gnome-nettool/gnome-nettool#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-nettool/gnome-nettool#3.8.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/gnome-online-accounts/.footprint
	new file:   ts/ports/gnome/gnome-online-accounts/.md5sum
	new file:   ts/ports/gnome/gnome-online-accounts/Pkgfile
	new file:   ts/ports/gnome/gnome-online-accounts/gnome-online-accounts#3.20.3-2.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-pulse/.footprint
	deleted:    ts/ports/gnome/gnome-pulse/.md5sum
	deleted:    ts/ports/gnome/gnome-pulse/Pkgfile
	deleted:    ts/ports/gnome/gnome-pulse/gnome-pulse#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-python/.footprint
	deleted:    ts/ports/gnome/gnome-python/.md5sum
	deleted:    ts/ports/gnome/gnome-python/Pkgfile
	deleted:    ts/ports/gnome/gnome-python/gnome-python#2.28.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-search-tool/.footprint
	new file:   ts/ports/gnome/gnome-search-tool/.md5sum
	new file:   ts/ports/gnome/gnome-search-tool/Pkgfile
	new file:   ts/ports/gnome/gnome-search-tool/gnome-search-tool#3.6.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/gnome-settings-daemon/.footprint
	modified:   ts/ports/gnome/gnome-settings-daemon/.md5sum
	modified:   ts/ports/gnome/gnome-settings-daemon/Pkgfile
	deleted:    ts/ports/gnome/gnome-settings-daemon/gnome-settings-daemon#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/gnome-settings-daemon/gnome-settings-daemon#3.20.1-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gnome-utils/.footprint
	deleted:    ts/ports/gnome/gnome-utils/.md5sum
	deleted:    ts/ports/gnome/gnome-utils/Pkgfile
	deleted:    ts/ports/gnome/gnome-utils/deprecated.patch
	deleted:    ts/ports/gnome/gnome-utils/gnome-utils#2.32.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-vfs/.footprint
	deleted:    ts/ports/gnome/gnome-vfs/.md5sum
	deleted:    ts/ports/gnome/gnome-vfs/Pkgfile
	deleted:    ts/ports/gnome/gnome-vfs/gnome-vfs#2.24.4-1.pkg.tar.gz
	deleted:    ts/ports/gnome/gnome-vfs/post-install
	new file:   ts/ports/gnome/grilo/.footprint
	new file:   ts/ports/gnome/grilo/.md5sum
	new file:   ts/ports/gnome/grilo/Pkgfile
	new file:   ts/ports/gnome/grilo/grilo#0.3.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gsettings-desktop-schemas/.footprint
	modified:   ts/ports/gnome/gsettings-desktop-schemas/.md5sum
	modified:   ts/ports/gnome/gsettings-desktop-schemas/Pkgfile
	new file:   ts/ports/gnome/gsettings-desktop-schemas/gsettings-desktop-schemas#3.21.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gsettings-desktop-schemas/gsettings-desktop-schemas#3.6.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtk-engines/.footprint
	new file:   ts/ports/gnome/gtk-engines/.md5sum
	new file:   ts/ports/gnome/gtk-engines/Pkgfile
	new file:   ts/ports/gnome/gtk-engines/gtk-engines#2.21.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/gtk-sharp/gtk-sharp#2.12.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtk-sharp/gtk-sharp#2.12.10-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk-theme-adwaita/.footprint
	renamed:    ts/ports/opt/gtk-theme-adwaita/.md5sum -> ts/ports/gnome/gtk-theme-adwaita/.md5sum
	new file:   ts/ports/gnome/gtk-theme-adwaita/Pkgfile
	new file:   ts/ports/gnome/gtk-theme-adwaita/gtk-theme-adwaita#3.20-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk-vnc/.footprint
	new file:   ts/ports/gnome/gtk-vnc/.md5sum
	new file:   ts/ports/gnome/gtk-vnc/Pkgfile
	new file:   ts/ports/gnome/gtk-vnc/gtk-vnc#0.6.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk/.footprint
	new file:   ts/ports/gnome/gtk/.md5sum
	new file:   ts/ports/gnome/gtk/Pkgfile
	new file:   ts/ports/gnome/gtk/gtk#2.24.30-1.pkg.tar.xz
	renamed:    ts/ports/opt/gtk/gtk-register.sh -> ts/ports/gnome/gtk/gtk-register.sh
	renamed:    ts/ports/opt/gtk/gtk.immodules -> ts/ports/gnome/gtk/gtk.immodules
	renamed:    ts/ports/opt/gtk/old-icon-symlinks.patch -> ts/ports/gnome/gtk/old-icon-symlinks.patch
	new file:   ts/ports/gnome/gtk3/.footprint
	new file:   ts/ports/gnome/gtk3/.md5sum
	new file:   ts/ports/gnome/gtk3/Pkgfile
	new file:   ts/ports/gnome/gtk3/gtk3#3.20.8-1.pkg.tar.xz
	new file:   ts/ports/gnome/gtk3/post-install
	new file:   ts/ports/gnome/gtkmm/.footprint
	new file:   ts/ports/gnome/gtkmm/.md5sum
	new file:   ts/ports/gnome/gtkmm/Pkgfile
	new file:   ts/ports/gnome/gtkmm/gtkmm#2.24.4-2.pkg.tar.xz
	new file:   ts/ports/gnome/gtkmm3/.footprint
	new file:   ts/ports/gnome/gtkmm3/.md5sum
	new file:   ts/ports/gnome/gtkmm3/Pkgfile
	new file:   ts/ports/gnome/gtkmm3/gtkmm3#3.20.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gtksourceview/.footprint
	modified:   ts/ports/gnome/gtksourceview/.md5sum
	modified:   ts/ports/gnome/gtksourceview/Pkgfile
	deleted:    ts/ports/gnome/gtksourceview/gtksourceview#2.10.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/gtksourceview/gtksourceview#3.18.1-1.pkg.tar.xz
	modified:   ts/ports/gnome/gvfs/.footprint
	modified:   ts/ports/gnome/gvfs/.md5sum
	modified:   ts/ports/gnome/gvfs/Pkgfile
	deleted:    ts/ports/gnome/gvfs/gvfs#1.12.3-1.pkg.tar.gz
	new file:   ts/ports/gnome/gvfs/gvfs#1.28.3-1.pkg.tar.xz
	new file:   ts/ports/gnome/gvfs/post-install
	modified:   ts/ports/gnome/jhbuild/.footprint
	deleted:    ts/ports/gnome/jhbuild/jhbuild#git-1.pkg.tar.gz
	new file:   ts/ports/gnome/jhbuild/jhbuild#git-1.pkg.tar.xz
	modified:   ts/ports/gnome/json-glib/.footprint
	modified:   ts/ports/gnome/json-glib/.md5sum
	modified:   ts/ports/gnome/json-glib/Pkgfile
	deleted:    ts/ports/gnome/json-glib/json-glib#0.15.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/json-glib/json-glib#1.2.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libbonobo/.footprint
	deleted:    ts/ports/gnome/libbonobo/.md5sum
	deleted:    ts/ports/gnome/libbonobo/Pkgfile
	deleted:    ts/ports/gnome/libbonobo/libbonobo#2.32.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libbonoboui/.footprint
	deleted:    ts/ports/gnome/libbonoboui/.md5sum
	deleted:    ts/ports/gnome/libbonoboui/Pkgfile
	deleted:    ts/ports/gnome/libbonoboui/libbonoboui#2.24.5-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libbonoboui/post-install
	renamed:    ts/ports/opt/libcroco/.footprint -> ts/ports/gnome/libcroco/.footprint
	new file:   ts/ports/gnome/libcroco/.md5sum
	new file:   ts/ports/gnome/libcroco/Pkgfile
	new file:   ts/ports/gnome/libcroco/libcroco#0.6.11-1.pkg.tar.xz
	modified:   ts/ports/gnome/libgnome-keyring/.footprint
	modified:   ts/ports/gnome/libgnome-keyring/.md5sum
	modified:   ts/ports/gnome/libgnome-keyring/Pkgfile
	deleted:    ts/ports/gnome/libgnome-keyring/libgnome-keyring#2.31.92-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgnome-keyring/libgnome-keyring#3.12.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libgnome/.footprint
	deleted:    ts/ports/gnome/libgnome/.md5sum
	deleted:    ts/ports/gnome/libgnome/Pkgfile
	deleted:    ts/ports/gnome/libgnome/libgnome#2.32.1-1.pkg.tar.gz
	deleted:    ts/ports/gnome/libgnome/post-install
	deleted:    ts/ports/gnome/libgnomecanvas/.footprint
	deleted:    ts/ports/gnome/libgnomecanvas/.md5sum
	deleted:    ts/ports/gnome/libgnomecanvas/Pkgfile
	deleted:    ts/ports/gnome/libgnomecanvas/libgnomecanvas#2.30.3-1.pkg.tar.gz
	modified:   ts/ports/gnome/libgnomekbd/.footprint
	modified:   ts/ports/gnome/libgnomekbd/.md5sum
	modified:   ts/ports/gnome/libgnomekbd/Pkgfile
	deleted:    ts/ports/gnome/libgnomekbd/libgnomekbd#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgnomekbd/libgnomekbd#3.6.0-1.pkg.tar.xz
	deleted:    ts/ports/gnome/libgnomeui/.footprint
	deleted:    ts/ports/gnome/libgnomeui/.md5sum
	deleted:    ts/ports/gnome/libgnomeui/Pkgfile
	deleted:    ts/ports/gnome/libgnomeui/libgnomeui#2.24.5-1.pkg.tar.gz
	modified:   ts/ports/gnome/libgtop/.footprint
	modified:   ts/ports/gnome/libgtop/.md5sum
	modified:   ts/ports/gnome/libgtop/Pkgfile
	deleted:    ts/ports/gnome/libgtop/libgtop#2.28.5-1.pkg.tar.gz
	new file:   ts/ports/gnome/libgtop/libgtop#2.34.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libgudev/.footprint
	new file:   ts/ports/gnome/libgudev/.md5sum
	new file:   ts/ports/gnome/libgudev/Pkgfile
	new file:   ts/ports/gnome/libgudev/libgudev#230-1.pkg.tar.xz
	new file:   ts/ports/gnome/libgweather/.footprint
	new file:   ts/ports/gnome/libgweather/.md5sum
	new file:   ts/ports/gnome/libgweather/Pkgfile
	new file:   ts/ports/gnome/libgweather/libgweather#3.20.2-1.pkg.tar.xz
	renamed:    ts/ports/opt/libidl/.footprint -> ts/ports/gnome/libidl/.footprint
	renamed:    ts/ports/opt/libidl/.md5sum -> ts/ports/gnome/libidl/.md5sum
	new file:   ts/ports/gnome/libidl/Pkgfile
	new file:   ts/ports/gnome/libidl/libidl#0.8.14-1.pkg.tar.xz
	new file:   ts/ports/gnome/libnotify/.footprint
	renamed:    ts/ports/opt/libnotify/.md5sum -> ts/ports/gnome/libnotify/.md5sum
	new file:   ts/ports/gnome/libnotify/Pkgfile
	new file:   ts/ports/gnome/libnotify/libnotify#0.7.6-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpeas/.footprint
	new file:   ts/ports/gnome/libpeas/.md5sum
	new file:   ts/ports/gnome/libpeas/Pkgfile
	new file:   ts/ports/gnome/libpeas/libpeas#1.10.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpwquality/.footprint
	new file:   ts/ports/gnome/libpwquality/.md5sum
	new file:   ts/ports/gnome/libpwquality/Pkgfile
	new file:   ts/ports/gnome/libpwquality/libpwquality#1.4.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libpwquality/libpwquality-1.3.0.tar.bz2
	new file:   ts/ports/gnome/librsvg/.footprint
	new file:   ts/ports/gnome/librsvg/.md5sum
	new file:   ts/ports/gnome/librsvg/Pkgfile
	new file:   ts/ports/gnome/librsvg/bgo759084.patch
	new file:   ts/ports/gnome/librsvg/librsvg#2.40.16-2.pkg.tar.xz
	new file:   ts/ports/gnome/librsvg/post-install
	modified:   ts/ports/gnome/libsecret/.footprint
	modified:   ts/ports/gnome/libsecret/.md5sum
	modified:   ts/ports/gnome/libsecret/Pkgfile
	deleted:    ts/ports/gnome/libsecret/libsecret#0.11-1.pkg.tar.gz
	new file:   ts/ports/gnome/libsecret/libsecret#0.18.5-1.pkg.tar.xz
	modified:   ts/ports/gnome/libtasn1/.footprint
	modified:   ts/ports/gnome/libtasn1/.md5sum
	modified:   ts/ports/gnome/libtasn1/Pkgfile
	deleted:    ts/ports/gnome/libtasn1/libtasn1#4.2-1.pkg.tar.gz
	new file:   ts/ports/gnome/libtasn1/libtasn1#4.9-1.pkg.tar.xz
	new file:   ts/ports/gnome/libwnck-gtk3/.footprint
	new file:   ts/ports/gnome/libwnck-gtk3/.md5sum
	new file:   ts/ports/gnome/libwnck-gtk3/Pkgfile
	new file:   ts/ports/gnome/libwnck-gtk3/libwnck-gtk3#3.14.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/libxml2/.footprint
	new file:   ts/ports/gnome/libxml2/.md5sum
	new file:   ts/ports/gnome/libxml2/Pkgfile
	new file:   ts/ports/gnome/libxml2/libxml2#2.9.3-1.pkg.tar.xz
	modified:   ts/ports/gnome/metacity/.footprint
	modified:   ts/ports/gnome/metacity/.md5sum
	modified:   ts/ports/gnome/metacity/Pkgfile
	deleted:    ts/ports/gnome/metacity/metacity#2.34.13-1.pkg.tar.gz
	new file:   ts/ports/gnome/metacity/metacity#3.20.2-1.pkg.tar.xz
	modified:   ts/ports/gnome/mobile-broadband-provider-info/Pkgfile
	deleted:    ts/ports/gnome/mobile-broadband-provider-info/mobile-broadband-provider-info#20150420-1.pkg.tar.gz
	new file:   ts/ports/gnome/mobile-broadband-provider-info/mobile-broadband-provider-info#20151214-1.pkg.tar.xz
	modified:   ts/ports/gnome/networkmanager-applet/.footprint
	modified:   ts/ports/gnome/networkmanager-applet/Pkgfile
	deleted:    ts/ports/gnome/networkmanager-applet/networkmanager-applet#0.9.8.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/networkmanager-applet/networkmanager-applet#0.9.8.10-1.pkg.tar.xz
	modified:   ts/ports/gnome/networkmanager/.footprint
	modified:   ts/ports/gnome/networkmanager/.md5sum
	modified:   ts/ports/gnome/networkmanager/Pkgfile
	deleted:    ts/ports/gnome/networkmanager/networkmanager#0.9.8.10-1.pkg.tar.gz
	new file:   ts/ports/gnome/networkmanager/networkmanager#1.2.2-1.pkg.tar.xz
	deleted:    ts/ports/gnome/neu-icon-theme/.footprint
	deleted:    ts/ports/gnome/neu-icon-theme/.md5sum
	deleted:    ts/ports/gnome/neu-icon-theme/Pkgfile
	deleted:    ts/ports/gnome/neu-icon-theme/neu-icon-theme#0.11-1.pkg.tar.gz
	deleted:    ts/ports/gnome/neu-icon-theme/post-install
	deleted:    ts/ports/gnome/orbit2/.footprint
	deleted:    ts/ports/gnome/orbit2/.md5sum
	deleted:    ts/ports/gnome/orbit2/Pkgfile
	deleted:    ts/ports/gnome/orbit2/orbit2#2.14.19-1.pkg.tar.gz
	deleted:    ts/ports/gnome/orbit2/orbit2-deprecated.patch
	new file:   ts/ports/gnome/pango/.footprint
	new file:   ts/ports/gnome/pango/.md5sum
	new file:   ts/ports/gnome/pango/Pkgfile
	new file:   ts/ports/gnome/pango/pango#1.40.1-1.pkg.tar.xz
	new file:   ts/ports/gnome/pygobject-gtk3/.footprint
	new file:   ts/ports/gnome/pygobject-gtk3/.md5sum
	new file:   ts/ports/gnome/pygobject-gtk3/Pkgfile
	new file:   ts/ports/gnome/pygobject-gtk3/pygobject-gtk3#3.21.0-1.pkg.tar.xz
	renamed:    ts/ports/opt/pygobject/.footprint -> ts/ports/gnome/pygobject/.footprint
	new file:   ts/ports/gnome/pygobject/.md5sum
	new file:   ts/ports/gnome/pygobject/Pkgfile
	new file:   ts/ports/gnome/pygobject/pygobject#2.28.6-1.pkg.tar.xz
	renamed:    ts/ports/opt/pygtk/.footprint -> ts/ports/gnome/pygtk/.footprint
	new file:   ts/ports/gnome/pygtk/.md5sum
	new file:   ts/ports/gnome/pygtk/Pkgfile
	new file:   ts/ports/gnome/pygtk/pygtk#2.24.0-1.pkg.tar.xz
	new file:   ts/ports/gnome/pygtk/python27.patch
	deleted:    ts/ports/gnome/pyorbit/.footprint
	deleted:    ts/ports/gnome/pyorbit/.md5sum
	deleted:    ts/ports/gnome/pyorbit/Pkgfile
	deleted:    ts/ports/gnome/pyorbit/pyorbit#2.24.0-1.pkg.tar.gz
	deleted:    ts/ports/gnome/scrollkeeper/.footprint
	deleted:    ts/ports/gnome/scrollkeeper/.md5sum
	deleted:    ts/ports/gnome/scrollkeeper/Pkgfile
	deleted:    ts/ports/gnome/scrollkeeper/scrollkeeper#0.3.14-1.pkg.tar.gz
	new file:   ts/ports/gnome/shared-mime-info/.footprint
	new file:   ts/ports/gnome/shared-mime-info/.md5sum
	new file:   ts/ports/gnome/shared-mime-info/Pkgfile
	renamed:    ts/ports/opt/shared-mime-info/README -> ts/ports/gnome/shared-mime-info/README
	renamed:    ts/ports/opt/shared-mime-info/post-install -> ts/ports/gnome/shared-mime-info/post-install
	new file:   ts/ports/gnome/shared-mime-info/shared-mime-info#1.6-1.pkg.tar.xz
	modified:   ts/ports/gnome/totem-pl-parser/.footprint
	modified:   ts/ports/gnome/totem-pl-parser/.md5sum
	modified:   ts/ports/gnome/totem-pl-parser/Pkgfile
	deleted:    ts/ports/gnome/totem-pl-parser/totem-pl-parser#2.32.6-1.pkg.tar.gz
	new file:   ts/ports/gnome/totem-pl-parser/totem-pl-parser#3.10.7-1.pkg.tar.xz
	modified:   ts/ports/gnome/totem/.footprint
	modified:   ts/ports/gnome/totem/.md5sum
	modified:   ts/ports/gnome/totem/Pkgfile
	deleted:    ts/ports/gnome/totem/totem#2.32.0-1.pkg.tar.gz
	new file:   ts/ports/gnome/totem/totem#3.24.0-1.pkg.tar.xz
	modified:   ts/ports/gnome/zenity/.footprint
	modified:   ts/ports/gnome/zenity/.md5sum
	modified:   ts/ports/gnome/zenity/Pkgfile
	deleted:    ts/ports/gnome/zenity/zenity#2.32.1-1.pkg.tar.gz
	new file:   ts/ports/gnome/zenity/zenity#3.20.0-1.pkg.tar.xz
	deleted:    ts/ports/lxde/python-xklavier/python-xklavier#0.4-1.pkg.tar.gz
	new file:   ts/ports/lxde/python-xklavier/python-xklavier#0.4-1.pkg.tar.xz
	deleted:    ts/ports/opt/adwaita-icon-theme/.footprint
	deleted:    ts/ports/opt/adwaita-icon-theme/Pkgfile
	deleted:    ts/ports/opt/adwaita-icon-theme/adwaita-icon-theme#3.20-1.pkg.tar.xz
	modified:   ts/ports/opt/alsa-plugins/alsa-plugins#1.1.1-1.pkg.tar.xz
	modified:   ts/ports/opt/apache/.footprint
	modified:   ts/ports/opt/apache/.md5sum
	modified:   ts/ports/opt/apache/Pkgfile
	modified:   ts/ports/opt/apache/apache
	deleted:    ts/ports/opt/apache/apache#2.2.21-1.pkg.tar.gz
	new file:   ts/ports/opt/apache/apache#2.4.26-1.pkg.tar.xz
	modified:   ts/ports/opt/apache/crux.layout
	deleted:    ts/ports/opt/atk/.footprint
	deleted:    ts/ports/opt/atk/.md5sum
	deleted:    ts/ports/opt/atk/Pkgfile
	deleted:    ts/ports/opt/atk/atk#2.6.0-1.pkg.tar.gz
	new file:   ts/ports/opt/bash-completion/.footprint
	new file:   ts/ports/opt/bash-completion/.md5sum
	new file:   ts/ports/opt/bash-completion/Pkgfile
	new file:   ts/ports/opt/bash-completion/README
	new file:   ts/ports/opt/bash-completion/bash-completion#2.3-2.pkg.tar.xz
	modified:   ts/ports/opt/cairo/.footprint
	modified:   ts/ports/opt/cairo/.md5sum
	modified:   ts/ports/opt/cairo/Pkgfile
	deleted:    ts/ports/opt/cairo/cairo#1.12.8-3.pkg.tar.gz
	new file:   ts/ports/opt/cairo/cairo#1.14.6-1.pkg.tar.xz
	modified:   ts/ports/opt/chromium/.footprint
	modified:   ts/ports/opt/chromium/.md5sum
	new file:   ts/ports/opt/chromium/0001-ClientNativePixmapFactoryDmabuf-uses-ioctl-instead-o.patch
	new file:   ts/ports/opt/chromium/0001-Fix-kernel-version-condition-for-including-dma-buf.h.patch
	modified:   ts/ports/opt/chromium/Pkgfile
	deleted:    ts/ports/opt/chromium/chromium#51.0.2704.84-1.pkg.tar.xz
	new file:   ts/ports/opt/chromium/chromium#59.0.3071.115-1.pkg.tar.xz
	modified:   ts/ports/opt/cups-filters/cups-filters#1.8.3-1.pkg.tar.xz
	modified:   ts/ports/opt/cyrus-sasl/.footprint
	modified:   ts/ports/opt/cyrus-sasl/.md5sum
	new file:   ts/ports/opt/cyrus-sasl/.signature
	modified:   ts/ports/opt/cyrus-sasl/Pkgfile
	deleted:    ts/ports/opt/cyrus-sasl/cyrus-sasl#2.1.25-1.pkg.tar.gz
	new file:   ts/ports/opt/cyrus-sasl/cyrus-sasl#2.1.26-2.pkg.tar.xz
	new file:   ts/ports/opt/cyrus-sasl/cyrus-sasl-2.1.27-openssl-1.1.0.patch
	new file:   ts/ports/opt/cyrus-sasl/fix-CVE-2013-4122.diff
	deleted:    ts/ports/opt/dbus-glib/dbus-glib#0.102-2.pkg.tar.gz
	new file:   ts/ports/opt/dbus-glib/dbus-glib#0.102-2.pkg.tar.xz
	modified:   ts/ports/opt/fetchmail/.footprint
	modified:   ts/ports/opt/fetchmail/.md5sum
	new file:   ts/ports/opt/fetchmail/.signature
	modified:   ts/ports/opt/fetchmail/Pkgfile
	new file:   ts/ports/opt/fetchmail/disable-sslv3.patch
	deleted:    ts/ports/opt/fetchmail/fetchmail#6.3.21-1.pkg.tar.gz
	new file:   ts/ports/opt/fetchmail/fetchmail#6.3.26-2.pkg.tar.xz
	modified:   ts/ports/opt/freerdp/freerdp#2.0-dev-master.pkg.tar.xz
	deleted:    ts/ports/opt/gdk-pixbuf/.footprint
	deleted:    ts/ports/opt/gdk-pixbuf/.md5sum
	deleted:    ts/ports/opt/gdk-pixbuf/Pkgfile
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf#2.26.4-2.pkg.tar.gz
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf-register.sh
	deleted:    ts/ports/opt/gdk-pixbuf/gdk-pixbuf.loaders
	modified:   ts/ports/opt/git/.footprint
	modified:   ts/ports/opt/git/.md5sum
	modified:   ts/ports/opt/git/Pkgfile
	deleted:    ts/ports/opt/git/git#1.9.1-1.pkg.tar.gz
	new file:   ts/ports/opt/git/git#2.12.2-1.pkg.tar.xz
	deleted:    ts/ports/opt/glib/.footprint
	deleted:    ts/ports/opt/glib/.md5sum
	deleted:    ts/ports/opt/glib/Pkgfile
	deleted:    ts/ports/opt/glib/glib#2.32.4-1.pkg.tar.gz
	modified:   ts/ports/opt/gobject-introspection/.footprint
	modified:   ts/ports/opt/gobject-introspection/.md…
jens-maus pushed a commit to hzdr/thinstation that referenced this pull request Jan 11, 2019
	modified:   ts/5.1/build.urls
	deleted:    ts/5.1/conf/vmview.conf.sample
	modified:   ts/5.1/packages/alsa/.gitignore
	modified:   ts/5.1/packages/base/etc/thinstation.packages
	modified:   ts/5.1/packages/ca-bundle/.dna
	new file:   ts/5.1/packages/ca-bundle/build/install
	new file:   ts/5.1/packages/ca-bundle/build/remove
	new file:   ts/5.1/packages/ca-bundle/dependencies
	deleted:    ts/5.1/packages/ca-bundle/etc/pki/tls/certs
	modified:   ts/5.1/packages/cups/.gitignore
	modified:   ts/5.1/packages/curl/.dna
	new file:   ts/5.1/packages/curl/build/install
	new file:   ts/5.1/packages/curl/build/remove
	modified:   ts/5.1/packages/devstation/dependencies
	deleted:    ts/5.1/packages/dnscrypt/bin/toggle-dnscrypt
	modified:   ts/5.1/packages/dnscrypt/lib/dnscrypt/toggle-dnscrypt
	modified:   ts/5.1/packages/extensions/dependencies
	modified:   ts/5.1/packages/fontconfig/.gitignore
	modified:   ts/5.1/packages/git/dependencies
	modified:   ts/5.1/packages/installer/dependencies
	modified:   ts/5.1/packages/kiosk/build/finalize
	new file:   ts/5.1/packages/open-vm-tools/.gitignore
	modified:   ts/5.1/packages/pulseaudio/.gitignore
	modified:   ts/5.1/packages/samba-base-new/.dna
	modified:   ts/5.1/packages/util-linux-ng/.gitignore
	deleted:    ts/5.1/packages/vmview/.dna
	deleted:    ts/5.1/packages/vmview/bin/run_vmview
	deleted:    ts/5.1/packages/vmview/build/conf/50vmview
	deleted:    ts/5.1/packages/vmview/dependencies
	deleted:    ts/5.1/packages/vmview/etc/cmd/vmview.global
	deleted:    ts/5.1/packages/vmview/etc/init.d/vmview
	deleted:    ts/5.1/packages/vmview/etc/init.d/vmview.init
	deleted:    ts/5.1/packages/vmview/etc/rc5.d/S10vmview.init
	deleted:    ts/5.1/packages/vmview/etc/vmview.functions
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/128x128/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/16x16/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/22x22/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/24x24/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/256x256/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/32x32/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/48x48/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/64x64/apps/vmview.png
	deleted:    ts/5.1/packages/vmview/lib/icons/hicolor/scalable/apps/vmview.svg
	deleted:    ts/5.1/packages/vmview/lib/menu/vmview
	deleted:    ts/5.1/packages/vmview/lib/pixmaps/vmview_16x16.xpm
	deleted:    ts/5.1/packages/vmview/lib/pixmaps/vmview_32x32.xpm
	new file:   ts/5.1/packages/xfburn/.gitignore
	modified:   ts/5.1/packages/xfwm4/.gitignore
	new file:   ts/5.1/packages/xorg7_fglrx/.dna
	new file:   ts/5.1/packages/xorg7_fglrx/.gitignore
	new file:   ts/5.1/packages/xorg7_fglrx/build/install
	new file:   ts/5.1/packages/xorg7_fglrx/build/remove
	new file:   ts/5.1/packages/xorg7_fglrx/dependencies
	modified:   ts/5.1/packages/xorg7_nvidia/build/install
	modified:   ts/ports/chroot/boost-TS/.footprint
	modified:   ts/ports/chroot/boost-TS/.md5sum
	modified:   ts/ports/chroot/boost-TS/Pkgfile
	renamed:    ts/ports/components/samba/samba#3.6.20-1.pkg.tar.gz -> ts/ports/chroot/boost-TS/boost-TS#1.55.0-1.pkg.tar.gz
	deleted:    ts/ports/chroot/boost-jam-TS/.footprint
	deleted:    ts/ports/chroot/boost-jam-TS/.md5sum
	deleted:    ts/ports/chroot/boost-jam-TS/Pkgfile
	deleted:    ts/ports/chroot/boost-jam-TS/boost-jam-3.1.17-cflags.patch
	deleted:    ts/ports/chroot/boost-jam-TS/boost-jam-3.1.17-misc.patch
	deleted:    ts/ports/chroot/boost-jam-TS/boost-jam-TS#3.1.17-1.pkg.tar.gz
	modified:   ts/ports/chroot/rtmpdump/.footprint
	modified:   ts/ports/chroot/rtmpdump/Pkgfile
	modified:   ts/ports/chroot/rtmpdump/rtmpdump#0.5.2.3-1.pkg.tar.gz
	new file:   ts/ports/components/asciidoc/.footprint
	new file:   ts/ports/components/asciidoc/.md5sum
	new file:   ts/ports/components/asciidoc/Pkgfile
	new file:   ts/ports/components/asciidoc-py/asciidoc-py#8.6.9-1.pkg.tar.gz
	new file:   ts/ports/components/ca-bundle-utils/.footprint
	new file:   ts/ports/components/ca-bundle-utils/.md5sum
	new file:   ts/ports/components/ca-bundle-utils/Pkgfile
	new file:   ts/ports/components/ca-bundle-utils/ca-bundle-utils#cvs-1.pkg.tar.gz
	renamed:    ts/ports/components/ca-cert/make-ca.sh -> ts/ports/components/ca-bundle-utils/make-ca.sh
	renamed:    ts/ports/components/ca-cert/make-cert.pl -> ts/ports/components/ca-bundle-utils/make-cert.pl
	new file:   ts/ports/components/ca-bundle-utils/remove-expired-certs.sh
	new file:   ts/ports/components/ca-bundle/.footprint
	renamed:    ts/5.1/packages/vmview/etc/cmd/vmview.change_server_type -> ts/ports/components/ca-bundle/.md5sum
	new file:   ts/ports/components/ca-bundle/Pkgfile
	new file:   ts/ports/components/ca-bundle/ca-bundle#cvs-1.pkg.tar.gz
	deleted:    ts/ports/components/ca-cert/.footprint
	deleted:    ts/ports/components/ca-cert/.md5sum
	deleted:    ts/ports/components/ca-cert/Pkgfile
	deleted:    ts/ports/components/ca-cert/ca-cert#3.13.2-1.pkg.tar.gz
	modified:   ts/ports/components/freerdp/.footprint
	modified:   ts/ports/components/freerdp/Pkgfile
	modified:   ts/ports/components/FreeRDP/FreeRDP#1.1-stable.pkg.tar.gz
	new file:   ts/ports/components/ldb/.footprint
	new file:   ts/ports/components/ldb/.md5sum
	new file:   ts/ports/components/ldb/Pkgfile
	new file:   ts/ports/components/ldb/ldb#1.1.16-1.pkg.tar.gz
	new file:   ts/ports/components/libssh2/.footprint
	new file:   ts/ports/components/libssh2/.md5sum
	new file:   ts/ports/components/libssh2/Pkgfile
	new file:   ts/ports/components/libssh2/libssh2#1.4.3-1.pkg.tar.gz
	modified:   ts/ports/components/samba/.footprint
	modified:   ts/ports/components/samba/.md5sum
	modified:   ts/ports/components/samba/Pkgfile
	new file:   ts/ports/components/samba/samba
	renamed:    ts/ports/chroot/boost-TS/boost-TS#1.46.0-1.pkg.tar.gz -> ts/ports/components/samba/samba#4.1.4-1.pkg.tar.gz
	new file:   ts/ports/components/tdb/.footprint
	new file:   ts/ports/components/tdb/.md5sum
	new file:   ts/ports/components/tdb/Pkgfile
	new file:   ts/ports/components/tdb/tdb#1.2.12-1.pkg.tar.gz
	new file:   ts/ports/components/tevent/.footprint
	new file:   ts/ports/components/tevent/.md5sum
	new file:   ts/ports/components/tevent/Pkgfile
	new file:   ts/ports/components/tevent/tevent#0.9.21-1.pkg.tar.gz
	deleted:    ts/ports/components/vmware-view-TS/.footprint
	deleted:    ts/ports/components/vmware-view-TS/.md5sum
	deleted:    ts/ports/components/vmware-view-TS/Pkgfile
	deleted:    ts/ports/components/vmware-view-TS/http-curl.patch
	deleted:    ts/ports/components/vmware-view-TS/vmware-view-TS#4.5.0-297975-1.pkg.tar.gz
	modified:   ts/ports/xorg/xinput_calibrator/Pkgfile
	modified:   ts/unwind_cache/ca-bundle.turbo
	modified:   ts/unwind_cache/curl.turbo
	modified:   ts/unwind_cache/samba-base-new.turbo
	modified:   ts/unwind_cache/vmview.turbo
	new file:   ts/unwind_cache/xorg7_fglrx.turbo
	modified:   ts/wind_cache/ca-bundle.turbo
	modified:   ts/wind_cache/curl.turbo
	modified:   ts/wind_cache/samba-base-new.turbo
	modified:   ts/wind_cache/vmview.turbo
	new file:   ts/wind_cache/xorg7_fglrx.turbo
	modified:   usr/ports/core/curl/.footprint
	modified:   usr/ports/core/curl/.md5sum
	modified:   usr/ports/core/curl/Pkgfile
	deleted:    usr/ports/core/curl/curl#7.27.0-1.pkg.tar.gz
	new file:   usr/ports/core/curl/curl#7.35.0-1.pkg.tar.gz
	modified:   usr/ports/core/openssh/.md5sum
	modified:   usr/ports/core/openssh/Pkgfile
	deleted:    usr/ports/core/openssh/openssh#6.4p1-1.pkg.tar.gz
	new file:   usr/ports/core/openssh/openssh#6.5p1-1.pkg.tar.gz
	modified:   usr/ports/core/openssl/.footprint
	modified:   usr/ports/core/openssl/.md5sum
	modified:   usr/ports/core/openssl/Pkgfile
	deleted:    usr/ports/core/openssl/openssl#1.0.0l-1.pkg.tar.gz
	new file:   usr/ports/core/openssl/openssl#1.0.1f-fips205.pkg.tar.gz
	modified:   usr/ports/core/ppp/.footprint
	modified:   usr/ports/core/ppp/.md5sum
	modified:   usr/ports/core/ppp/Pkgfile
	deleted:    usr/ports/core/ppp/ppp#2.4.5-2.pkg.tar.gz
	new file:   usr/ports/core/ppp/ppp#2.4.5-3.pkg.tar.gz
	new file:   usr/ports/core/ppp/ppp-2.4.5-eaptls-mppe-0.994.patch
	modified:   usr/ports/opt/git/.footprint
	modified:   usr/ports/opt/git/.md5sum
	modified:   usr/ports/opt/git/Pkgfile
	deleted:    usr/ports/opt/git/git#1.7.6.4-1.pkg.tar.gz
	new file:   usr/ports/opt/git/git#1.9.1-1.pkg.tar.gz
	modified:   usr/ports/opt/nspr/.md5sum
	modified:   usr/ports/opt/nspr/Pkgfile
	deleted:    usr/ports/opt/nspr/nspr#4.10.2-1.pkg.tar.gz
	new file:   usr/ports/opt/nspr/nspr#4.10.3-1.pkg.tar.gz
	modified:   usr/ports/opt/nss/.md5sum
	modified:   usr/ports/opt/nss/Pkgfile
	deleted:    usr/ports/opt/nss/nss#3.15.3-1.pkg.tar.gz
	new file:   usr/ports/opt/nss/nss#3.15.4-1.pkg.tar.gz
	modified:   usr/ports/opt/sqlite3/.md5sum
	modified:   usr/ports/opt/sqlite3/Pkgfile
	deleted:    usr/ports/opt/sqlite3/sqlite3#3.8.1-1.pkg.tar.gz
	new file:   usr/ports/opt/sqlite3/sqlite3#3.8.3.1-1.pkg.tar.gz
	modified:   usr/ports/opt/talloc/.footprint
	modified:   usr/ports/opt/talloc/.md5sum
	modified:   usr/ports/opt/talloc/Pkgfile
	deleted:    usr/ports/opt/talloc/talloc#2.0.5-2.pkg.tar.gz
	new file:   usr/ports/opt/talloc/talloc#2.1.0-1.pkg.tar.gz
jens-maus pushed a commit to hzdr/thinstation that referenced this pull request Jan 11, 2019
	new file:   ts/build/machine/qemu/module.list
	modified:   ts/build/packages/glib/dependencies
	new file:   ts/ports/components/libvirt/.footprint
	new file:   ts/ports/components/libvirt/.md5sum
	new file:   ts/ports/components/libvirt/Pkgfile
	new file:   ts/ports/components/libvirt/libvirt#1.3.5-1.pkg.tar.xz
	new file:   ts/ports/components/virt-viewer/.footprint
	new file:   ts/ports/components/virt-viewer/.md5sum
	new file:   ts/ports/components/virt-viewer/Pkgfile
	new file:   ts/ports/components/virt-viewer/virt-viewer#2.0-1.pkg.tar.xz
	modified:   ts/ports/contrib/spice-gtk/.footprint
	modified:   ts/ports/contrib/spice-gtk/Pkgfile
	modified:   ts/ports/contrib/spice-gtk/spice-gtk#0.26-1.pkg.tar.xz
	modified:   ts/ports/core/curl/.footprint
	modified:   ts/ports/core/curl/.md5sum
	modified:   ts/ports/core/curl/Pkgfile
	deleted:    ts/ports/core/curl/curl#7.44.0-1.pkg.tar.gz
	new file:   ts/ports/core/curl/curl#7.49.1-1.pkg.tar.xz
	modified:   ts/ports/kernel-modules/VERSION
	modified:   ts/ports/kernel-modules/bbswitch/.footprint
	modified:   ts/ports/kernel-modules/bbswitch/bbswitch#0.8-1.pkg.tar.xz
	modified:   ts/ports/kernel-modules/kernel-TS/.footprint
	modified:   ts/ports/kernel-modules/kernel-TS/.md5sum
	modified:   ts/ports/kernel-modules/kernel-TS/Pkgfile
	modified:   ts/ports/kernel-modules/kernel-TS/kernel-TS#1-1.pkg.tar.xz
	modified:   ts/ports/kernel-modules/kernel-TS_64/.footprint
	modified:   ts/ports/kernel-modules/kernel-TS_64/.md5sum
	modified:   ts/ports/kernel-modules/kernel-TS_64/Pkgfile
	modified:   ts/ports/kernel-modules/kernel-TS_64/kernel-TS_64#1-1.pkg.tar.xz
	modified:   ts/ports/kernel-modules/kernel-TS_SMP/.footprint
	modified:   ts/ports/kernel-modules/kernel-TS_SMP/.md5sum
	modified:   ts/ports/kernel-modules/kernel-TS_SMP/Pkgfile
	modified:   ts/ports/kernel-modules/kernel-TS_SMP/kernel-TS_SMP#1-1.pkg.tar.xz
	modified:   ts/ports/kernel-modules/rtl8723bs/.footprint
	modified:   ts/ports/kernel-modules/rtl8723bs/rtl8723bs#git-1.pkg.tar.xz
	modified:   ts/ports/xorg/xorg-xf86-video-qxl/.footprint
	modified:   ts/ports/xorg/xorg-xf86-video-qxl/.md5sum
	modified:   ts/ports/xorg/xorg-xf86-video-qxl/Pkgfile
	new file:   ts/ports/xorg/xorg-xf86-video-qxl/xorg-xf86-video-qxl#0.1.4-2.pkg.tar.xz
	deleted:    ts/ports/xorg/xorg-xf86-video-qxl/xorg-xf86-video-qxl#git-2.pkg.tar.xz
@lock lock bot locked as resolved and limited conversation to collaborators Jan 20, 2019
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants