[tor-commits] [tor/master] Two more small changes for CI.

2018-06-26 Thread nickm
commit cf66544941364ae2c0ed45486ac7b16e61422061 Author: Nick Mathewson Date: Fri Jun 22 13:10:52 2018 -0400 Two more small changes for CI. --- src/lib/log/util_bug.c| 2 ++ src/lib/string/compat_ctype.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/lib/log/util_bug.c

[tor-commits] [tor/master] Remove util_bug dependency on compat.h

2018-06-26 Thread nickm
commit 6fc2d532274ead9c903c6d94b1a513b8d9b6f677 Author: Nick Mathewson Date: Fri Jun 22 11:51:58 2018 -0400 Remove util_bug dependency on compat.h --- src/common/compat.c | 26 -- src/common/compat.h | 8 src/common/token_bucket.c | 2 +-

[tor-commits] [tor/master] A pair of missing includes.

2018-06-26 Thread nickm
commit 7aecea79cb7f48ce5a8620b4a9fc2534289b4d5d Author: Nick Mathewson Date: Fri Jun 22 12:53:57 2018 -0400 A pair of missing includes. --- src/lib/container/smartlist.h | 1 + src/lib/lock/compat_mutex_winthreads.c | 1 + 2 files changed, 2 insertions(+) diff --git

[tor-commits] [tor/master] Add another include for windows, and change a log to a raw_assert

2018-06-26 Thread nickm
commit 145665abcbdb095aba59560db4ea8e3eee012de1 Author: Nick Mathewson Date: Fri Jun 22 13:33:08 2018 -0400 Add another include for windows, and change a log to a raw_assert --- src/lib/wallclock/tor_gettimeofday.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[tor-commits] [tor/master] Move smartlist_add_{v, }asprintf into smartlist.[ch]

2018-06-26 Thread nickm
commit 3883338c8121212b3f6f9c020d489d50bbcdd855 Author: Nick Mathewson Date: Fri Jun 22 09:26:19 2018 -0400 Move smartlist_add_{v,}asprintf into smartlist.[ch] Now that I know that "strings" nests below "container", I know this is safe. --- src/common/util.c | 24

[tor-commits] [tor/master] Extract our code for answering "what time is it right now".

2018-06-26 Thread nickm
commit 9426751b72e922b5ee2b00bcc6158f5651a81014 Author: Nick Mathewson Date: Thu Jun 21 17:33:49 2018 -0400 Extract our code for answering "what time is it right now". The other time stuff is higher-level --- .gitignore | 2 + Makefile.am

[tor-commits] [tor/master] Move ARRAY_LENGTH to compiler_compat.h

2018-06-26 Thread nickm
commit 1e07b4031e2613826cf7ff2838a2f0c8f03e81c2 Author: Nick Mathewson Date: Fri Jun 22 08:41:57 2018 -0400 Move ARRAY_LENGTH to compiler_compat.h --- src/common/util.h| 2 -- src/lib/cc/compat_compiler.h | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git

[tor-commits] [tor/master] Update permissible includes

2018-06-26 Thread nickm
commit d1cada5a8a7e1631e25f5f413c66d5c9e5113e7a Author: Nick Mathewson Date: Thu Jun 21 17:06:58 2018 -0400 Update permissible includes --- src/lib/container/.may_include | 15 +++ src/lib/crypt_ops/.may_include | 2 ++ src/lib/tls/.may_include | 1 + 3 files changed,

[tor-commits] [tor/master] Extract core part of gmtime_r, localtime_r (without logging)

2018-06-26 Thread nickm
commit bfb39164ce49450fad11611a129dd875acebde54 Author: Nick Mathewson Date: Fri Jun 22 11:07:10 2018 -0400 Extract core part of gmtime_r, localtime_r (without logging) --- src/common/compat.c | 172 -- src/lib/log/torlog.c | 4 +-

[tor-commits] [tor/master] Extract key string manipulation functions into a new library.

2018-06-26 Thread nickm
commit 1abadee3fd1c15f3720003c411ec6043c29d7c09 Author: Nick Mathewson Date: Fri Jun 22 09:23:30 2018 -0400 Extract key string manipulation functions into a new library. --- .gitignore | 2 + Makefile.am| 2 + src/common/compat.c

[tor-commits] [tor/master] Automated fixup of include paths after torlog.h movement.

2018-06-26 Thread nickm
commit da4ae8a6b6bc45f301c1493bb55b09e2f1209ac2 Author: Nick Mathewson Date: Fri Jun 22 10:32:10 2018 -0400 Automated fixup of include paths after torlog.h movement. --- src/common/address.c | 2 +- src/common/buffers.c | 2 +- src/common/compat.c

[tor-commits] [tor/master] Extract strlcpy and strlcmp to libtor-string

2018-06-26 Thread nickm
commit 90a09df5ba7b3e55ea388a4cc9b92161442bb380 Author: Nick Mathewson Date: Fri Jun 22 11:18:19 2018 -0400 Extract strlcpy and strlcmp to libtor-string --- src/common/.may_include| 2 -- src/common/compat.c| 8 src/common/compat.h| 26

[tor-commits] [tor/master] Extract simple integer math into its own module

2018-06-26 Thread nickm
commit 2cf033f238c111bef62552da16117568435d3a18 Author: Nick Mathewson Date: Fri Jun 22 09:48:24 2018 -0400 Extract simple integer math into its own module --- .gitignore | 2 + Makefile.am | 2 + src/common/util.c| 161

[tor-commits] [tor/master] Extract smartlist.h from container.h

2018-06-26 Thread nickm
commit de508c5f50af855742b59579afd6c9c328eb7cd6 Author: Nick Mathewson Date: Thu Jun 21 17:00:48 2018 -0400 Extract smartlist.h from container.h --- src/common/address.c | 2 +- src/common/address.h | 23 --- src/common/compat.c

[tor-commits] [tor/master] Remove compat.h as unneeded from log.c and torlog.h

2018-06-26 Thread nickm
commit 0932f322911f41e72b5155d06775658039814a39 Author: Nick Mathewson Date: Thu Jun 21 17:35:56 2018 -0400 Remove compat.h as unneeded from log.c and torlog.h --- src/common/log.c | 2 +- src/common/torlog.h | 4 +++- src/common/util_format.c | 2 +- 3 files changed, 5

[tor-commits] [tor/master] Extract the locking and logging code

2018-06-26 Thread nickm
commit 97b15a1d7c51764888d2172711e3f3a71fb01916 Author: Nick Mathewson Date: Fri Jun 22 10:30:45 2018 -0400 Extract the locking and logging code The locking code gets its own module, since it's more fundamental than the higher-level locking code. Extracting the

[tor-commits] [tor/master] Remove the util_bug.h include from smartlist.h.

2018-06-26 Thread nickm
commit b2d4e786b7ed2563461513e36c7e75bea1f70be8 Author: Nick Mathewson Date: Fri Jun 22 10:50:12 2018 -0400 Remove the util_bug.h include from smartlist.h. This change makes a whole bunch of things in torlog.c break, since apparently I did not find all the fd dependencies. ---

[tor-commits] [tor/master] Expunge container.h

2018-06-26 Thread nickm
commit c2a558a346cf1f4db8751eb5c6dfecaab760a652 Author: Nick Mathewson Date: Thu Jun 21 17:03:45 2018 -0400 Expunge container.h --- src/common/address.h | 1 - src/common/compat_time.c | 1 - src/common/compat_winthreads.c| 1 - src/common/memarea.c

[tor-commits] [tor/master] Rectify include paths after container split (automatic)

2018-06-26 Thread nickm
commit b8be8265b6dc477efe591ccdb14fcd4b044dd241 Author: Nick Mathewson Date: Thu Jun 21 15:40:15 2018 -0400 Rectify include paths after container split (automatic) --- src/common/address.c | 2 +- src/common/address.h | 2 +- src/common/address_set.c

[tor-commits] [tor/master] Refactor container into a library.

2018-06-26 Thread nickm
commit 77dff00b18fc70acdb2939dd20197a0044d41fe5 Author: Nick Mathewson Date: Thu Jun 21 15:39:36 2018 -0400 Refactor container into a library. --- .gitignore| 2 ++ Makefile.am | 2 ++ src/common/include.am

[tor-commits] [tor/master] Remove map from container.h

2018-06-26 Thread nickm
commit 9cf6fc91b1d0870dab8bf87feb9132e7e0de2808 Author: Nick Mathewson Date: Thu Jun 21 16:52:58 2018 -0400 Remove map from container.h --- src/common/address.c | 2 +- src/common/sandbox.c | 4 +++- src/lib/container/container.h | 1 - src/lib/crypt_ops/.may_include

[tor-commits] [tor/master] Move STRUCT_VAR_P to compat_compiler.

2018-06-26 Thread nickm
commit 479c2ab503a3a051200339a7df9a99dcfb0ed976 Author: Nick Mathewson Date: Thu Jun 21 16:29:24 2018 -0400 Move STRUCT_VAR_P to compat_compiler. --- src/common/util.h | 11 --- src/lib/cc/compat_compiler.h | 11 +++ src/lib/container/smartlist.c | 3 ++- 3

[tor-commits] [tor/master] Remove container->crypto dependency

2018-06-26 Thread nickm
commit 932b4d0a4342ec281b6f692f23453d6c46026c18 Author: Nick Mathewson Date: Thu Jun 21 16:34:00 2018 -0400 Remove container->crypto dependency Containers were using crypto_digest.h, just to see the value of DIGEST_LEN. Moved those constants into a new defs module. ---

[tor-commits] [tor/master] Remove bloom filters, order statistics, and bitarrays from container.h

2018-06-26 Thread nickm
commit 50a5954003a0478273d9e2c1a546e641e763a997 Author: Nick Mathewson Date: Thu Jun 21 16:48:54 2018 -0400 Remove bloom filters, order statistics, and bitarrays from container.h --- src/common/address_set.c | 3 +-- src/common/util_bug.c | 1 +

[tor-commits] [tor/master] Simplify include structure of container.[ch]

2018-06-26 Thread nickm
commit f95e3bf5fc4e2d5fef42b86d81f155c00b1983ac Author: Nick Mathewson Date: Thu Jun 21 15:33:25 2018 -0400 Simplify include structure of container.[ch] --- src/common/address.h | 2 +- src/common/container.c | 13 +++-- src/common/container.h | 12 ++--

[tor-commits] [tor/master] Extract tor_malloc and friends to a new module.

2018-06-26 Thread nickm
commit e066966bf48b4f6ca557175cb2ab3e2dffa5b1db Author: Nick Mathewson Date: Thu Jun 21 15:17:54 2018 -0400 Extract tor_malloc and friends to a new module. --- .gitignore | 2 + Makefile.am | 2 + src/common/util.c| 210

[tor-commits] [tor/release-0.3.4] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.2.9] Merge branch 'maint-0.2.9' into release-0.2.9

2018-06-26 Thread nickm
commit e7b146736f7014abb6dbce3e596ee5b94a1d5916 Merge: 2ef4bccb4 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into release-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.4' into release-0.3.4

2018-06-26 Thread nickm
commit 37119ef9d87037d15122b59131e951d4c98e5089 Merge: 3015d3d7c c08102ea7 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.4' into release-0.3.4 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.2.9] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.2] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.1] Merge branch 'maint-0.3.1' into release-0.3.1

2018-06-26 Thread nickm
commit 4671b05736c1c09d6d6f126f47875d18f5a06156 Merge: ac46e04fe d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into release-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.3.3' into release-0.3.3

2018-06-26 Thread nickm
commit 63cddead384d067604f44091e2a8a3f776ccd2bf Merge: 6c38795b7 f8dad5a07 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.3' into release-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.4] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.3.2' into maint-0.3.3

2018-06-26 Thread nickm
commit f8dad5a079ac356ef72f14cfddca2d81fd824102 Merge: 8b108935b 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into maint-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.3] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-06-26 Thread nickm
commit c08102ea777ddaaa8404021a1c8b84082f5eff8b Merge: cf0597c3b f8dad5a07 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.3] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.2' into maint-0.3.3

2018-06-26 Thread nickm
commit f8dad5a079ac356ef72f14cfddca2d81fd824102 Merge: 8b108935b 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into maint-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/master] Merge branch 'maint-0.3.2' into maint-0.3.3

2018-06-26 Thread nickm
commit f8dad5a079ac356ef72f14cfddca2d81fd824102 Merge: 8b108935b 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into maint-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.2] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.1] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.2] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.1] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/master] Merge branch 'maint-0.3.4'

2018-06-26 Thread nickm
commit b4e23dba930cbb8168151e1fe9dcf280615d6f3b Merge: 06f3526b0 c08102ea7 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.4' changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1 deletion(-)

[tor-commits] [tor/release-0.2.9] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/master] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.1] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/master] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.2] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/master] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/release-0.3.2] Merge branch 'maint-0.3.2' into release-0.3.2

2018-06-26 Thread nickm
commit aec52266185782f73725a4df8eabb98d6902584f Merge: f5b9e43d0 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into release-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/master] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-06-26 Thread nickm
commit c08102ea777ddaaa8404021a1c8b84082f5eff8b Merge: cf0597c3b f8dad5a07 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/master] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.3.2' into maint-0.3.3

2018-06-26 Thread nickm
commit f8dad5a079ac356ef72f14cfddca2d81fd824102 Merge: 8b108935b 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into maint-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.4] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.3] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.2] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-06-26 Thread nickm
commit c08102ea777ddaaa8404021a1c8b84082f5eff8b Merge: cf0597c3b f8dad5a07 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.3] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/maint-0.3.4] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.3] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.3] Merge branch 'maint-0.3.1' into maint-0.3.2

2018-06-26 Thread nickm
commit 25226fb260a6b5f93187b707ec35f06637fbe710 Merge: 6107a2127 d6d3f8486 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.1' into maint-0.3.2 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.2] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.3] Merge branch 'maint-0.3.2' into maint-0.3.3

2018-06-26 Thread nickm
commit f8dad5a079ac356ef72f14cfddca2d81fd824102 Merge: 8b108935b 25226fb26 Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.3.2' into maint-0.3.3 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.2] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.2] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/maint-0.2.9] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.1] Merge branch 'maint-0.2.9' into maint-0.3.1

2018-06-26 Thread nickm
commit d6d3f8486dbac9837a793f431dcd58505e7274e4 Merge: 340fcc7e2 fcd26af7c Author: Nick Mathewson Date: Tue Jun 26 09:21:59 2018 -0400 Merge branch 'maint-0.2.9' into maint-0.3.1 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.1] Prefer recent Python 3 in autoconf.

2018-06-26 Thread nickm
commit 47ee7978fe73816bf15cb392d0e89301f65724f8 Author: Nick Mathewson Date: Thu Jun 21 09:28:50 2018 -0400 Prefer recent Python 3 in autoconf. Closes ticket 26372. --- changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9 insertions(+), 1

[tor-commits] [tor/maint-0.3.1] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [tor/maint-0.2.9] Merge branch 'feature26372_029' into maint-0.2.9

2018-06-26 Thread nickm
commit fcd26af7c0b9926f8e56149a72de9dd47ad37a69 Merge: dd69e74e3 47ee7978f Author: Nick Mathewson Date: Tue Jun 26 09:21:55 2018 -0400 Merge branch 'feature26372_029' into maint-0.2.9 changes/feature26372_029 | 4 configure.ac | 6 +- 2 files changed, 9

[tor-commits] [webwml/master] Bug 26380: Remove tor browser sandbox from the download page

2018-06-26 Thread boklm
commit dd6d2ed159b353260cbb087ee5d5f857a94ad603 Author: Nicolas Vigier Date: Tue Jun 26 14:53:12 2018 +0200 Bug 26380: Remove tor browser sandbox from the download page --- include/versions.wmi | 1 - projects/en/torbrowser.wml | 25 - 2 files changed, 26

[tor-commits] [webwml/master] Merge branch 'staging'

2018-06-26 Thread boklm
commit b0fac878027b3973b74efe4c1df50b8f0089e753 Merge: eaf380a9 dd6d2ed1 Author: Nicolas Vigier Date: Tue Jun 26 15:14:16 2018 +0200 Merge branch 'staging' include/versions.wmi | 1 - projects/en/torbrowser.wml | 25 - 2 files changed, 26 deletions(-)

[tor-commits] [tor/master] Bump version to 0.3.4.3-alpha-dev

2018-06-26 Thread nickm
commit cf0597c3b2eb3baea34205a401acd28b307fc900 Author: Nick Mathewson Date: Tue Jun 26 09:12:23 2018 -0400 Bump version to 0.3.4.3-alpha-dev --- configure.ac| 2 +- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files

[tor-commits] [tor/release-0.3.4] Bump version to 0.3.4.3-alpha-dev

2018-06-26 Thread nickm
commit cf0597c3b2eb3baea34205a401acd28b307fc900 Author: Nick Mathewson Date: Tue Jun 26 09:12:23 2018 -0400 Bump version to 0.3.4.3-alpha-dev --- configure.ac| 2 +- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.4' into release-0.3.4

2018-06-26 Thread nickm
commit 3015d3d7c4f0b6fd5e7b9c8271b03e80791beade Merge: e8c256ca8 cf0597c3b Author: Nick Mathewson Date: Tue Jun 26 09:12:39 2018 -0400 Merge branch 'maint-0.3.4' into release-0.3.4 configure.ac| 2 +- contrib/win32build/tor-mingw.nsi.in | 2 +-

[tor-commits] [tor/maint-0.3.4] Bump version to 0.3.4.3-alpha-dev

2018-06-26 Thread nickm
commit cf0597c3b2eb3baea34205a401acd28b307fc900 Author: Nick Mathewson Date: Tue Jun 26 09:12:23 2018 -0400 Bump version to 0.3.4.3-alpha-dev --- configure.ac| 2 +- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files

[tor-commits] [tor/master] Merge branch 'maint-0.3.4'

2018-06-26 Thread nickm
commit 06f3526b03a7a9462f26515ae7c2dde2b283a3fb Merge: ed2dbd51e cf0597c3b Author: Nick Mathewson Date: Tue Jun 26 09:12:28 2018 -0400 Merge branch 'maint-0.3.4' "ours" to avoid version bump. ___ tor-commits mailing list

[tor-commits] [webwml/staging] Bug 26380: Remove tor browser sandbox from the download page

2018-06-26 Thread boklm
commit dd6d2ed159b353260cbb087ee5d5f857a94ad603 Author: Nicolas Vigier Date: Tue Jun 26 14:53:12 2018 +0200 Bug 26380: Remove tor browser sandbox from the download page --- include/versions.wmi | 1 - projects/en/torbrowser.wml | 25 - 2 files changed, 26

[tor-commits] [webwml/master] Tor alpha release: 0.3.4.3-alpha

2018-06-26 Thread nickm
commit eaf380a9f73b92ca61147f78823f6daa4a1d5061 Author: Nick Mathewson Date: Tue Jun 26 08:53:45 2018 -0400 Tor alpha release: 0.3.4.3-alpha --- Makefile | 2 +- include/versions.wmi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile

[tor-commits] [tor/master] Forward-port the 0.3.4.3-alpha ChangeLog

2018-06-26 Thread nickm
commit ed2dbd51ef4762cff0bbb29f86664b217ca218b9 Author: Nick Mathewson Date: Tue Jun 26 08:49:06 2018 -0400 Forward-port the 0.3.4.3-alpha ChangeLog --- ChangeLog | 70 ++- 1 file changed, 69 insertions(+), 1 deletion(-) diff

[tor-commits] [translation/tor-launcher-properties] Update translations for tor-launcher-properties

2018-06-26 Thread translation
commit d26df0f89df5fa996df1c1711dfbf6cedd929f1f Author: Translation commit bot Date: Tue Jun 26 12:46:16 2018 + Update translations for tor-launcher-properties --- de/torlauncher.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[tor-commits] [translation/tor-launcher-properties_completed] Update translations for tor-launcher-properties_completed

2018-06-26 Thread translation
commit ff2d5dc3afd72f4c91004ba5c43c4643baf4853c Author: Translation commit bot Date: Tue Jun 26 12:46:21 2018 + Update translations for tor-launcher-properties_completed --- de/torlauncher.properties | 14 ++ 1 file changed, 14 insertions(+) diff --git

[tor-commits] [tor/release-0.3.4] Set the release date.

2018-06-26 Thread nickm
commit e8c256ca803b09879f52a641d8143543c22ac763 Author: Nick Mathewson Date: Tue Jun 26 08:44:04 2018 -0400 Set the release date. --- ChangeLog | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c0fddc4eb..5d2c6e6ec 100644 --- a/ChangeLog +++

[tor-commits] [webwml/staging] Adjust teor' people page entry

2018-06-26 Thread boklm
commit 8abebffcde8d23a435b69e0aaf6de77ecc36c73f Author: Damian Johnson Date: Thu Jun 21 11:03:19 2018 -0700 Adjust teor' people page entry Dropping their name and adjusting the description per their request. --- about/en/corepeople.wml | 4 ++-- 1 file changed, 2 insertions(+), 2

[tor-commits] [webwml/staging] Add pm jobs posts

2018-06-26 Thread boklm
commit 49eec96a54e91ba3bfbd13523ee572efc158d3b3 Author: hiro Date: Mon Jun 18 09:28:12 2018 +0200 Add pm jobs posts --- about/en/jobs-projectmanager-network.wml | 64 +++ about/en/jobs-projectmanager-product.wml | 66

[tor-commits] [webwml/staging] Change Cindy's description to third person

2018-06-26 Thread boklm
commit 9f73a34662697bba0a3b592187dd2505767e7c3c Author: Damian Johnson Date: Thu Jun 21 10:40:31 2018 -0700 Change Cindy's description to third person Requested by Cindy. --- about/en/corepeople.wml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [webwml/staging] Adjust Isis' people page entry

2018-06-26 Thread boklm
commit f02588f90306eb622b4fda65d14e2cabf4b7568b Author: Damian Johnson Date: Thu Jun 21 10:51:25 2018 -0700 Adjust Isis' people page entry Changing the name, photo, and description as requested. I don't think layout-wise we'll be able to include their middle name, but as

[tor-commits] [webwml/staging] Add pronouns to the people page

2018-06-26 Thread boklm
commit 2867ba62433ec8c9f4f92f9079168b59f281c3ce Merge: 49eec96a 83b90b64 Author: Damian Johnson Date: Thu Jun 21 12:46:44 2018 -0700 Add pronouns to the people page Proposed and information collected by Tom. Quite a few other changes were requested at the same time...

[tor-commits] [webwml/staging] Update Linus's description

2018-06-26 Thread boklm
commit 89f76aba2a35312af0da55392186ff633221046a Author: Damian Johnson Date: Thu Jun 21 10:57:32 2018 -0700 Update Linus's description --- about/en/corepeople.wml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about/en/corepeople.wml b/about/en/corepeople.wml index

[tor-commits] [webwml/staging] Update Matt's description

2018-06-26 Thread boklm
commit 581d875dc4c8a99d5cb92fbadf409dc86e9b2094 Author: Damian Johnson Date: Thu Jun 21 11:00:29 2018 -0700 Update Matt's description --- about/en/corepeople.wml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about/en/corepeople.wml b/about/en/corepeople.wml index

[tor-commits] [webwml/staging] Drop Isis' middle name

2018-06-26 Thread boklm
commit 83b90b6430b18aee0b0ef3a35e05ffb1061032c2 Author: Damian Johnson Date: Thu Jun 21 12:44:23 2018 -0700 Drop Isis' middle name With the addition of pronouns the only entry to overflow is isis. They asked for a longer description and to include their middle name but we

[tor-commits] [webwml/staging] Add pronouns to the people page

2018-06-26 Thread boklm
commit 4a591306bec225069096a4475a040d2ea962e1e3 Author: Damian Johnson Date: Thu Jun 21 12:41:32 2018 -0700 Add pronouns to the people page Proposed and information collected by Tom... https://lists.torproject.org/pipermail/tor-project/2018-May/001776.html ---

<    1   2   3   4   >