summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-08-12 09:16:44 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-08-12 09:17:00 +0200
commit7a7a627164167509632bcd5b2e782b8a09c358d2 (patch)
tree462a52761d53088f4ab95ebe287fc43869843199 /dev-vcs/subversion/files
parentdev-ruby/rexical: cleanup (diff)
downloadgentoo-7a7a627164167509632bcd5b2e782b8a09c358d2.tar.gz
gentoo-7a7a627164167509632bcd5b2e782b8a09c358d2.tar.bz2
gentoo-7a7a627164167509632bcd5b2e782b8a09c358d2.zip
dev-vcs/subversion: Security cleanup
Bug: https://bugs.gentoo.org/690594 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-vcs/subversion/files')
-rw-r--r--dev-vcs/subversion/files/subversion-1.11.1-allow-apr-1.7.0+.patch18
-rw-r--r--dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch26
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-vcs/subversion/files/subversion-1.11.1-allow-apr-1.7.0+.patch b/dev-vcs/subversion/files/subversion-1.11.1-allow-apr-1.7.0+.patch
deleted file mode 100644
index a0da4a5931df..000000000000
--- a/dev-vcs/subversion/files/subversion-1.11.1-allow-apr-1.7.0+.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/build/ac-macros/swig.m4
-+++ b/build/ac-macros/swig.m4
-@@ -137,13 +137,13 @@
- AC_CACHE_CHECK([for apr_int64_t Python/C API format string],
- [svn_cv_pycfmt_apr_int64_t], [
- if test "x$svn_cv_pycfmt_apr_int64_t" = "x"; then
-- AC_EGREP_CPP([MaTcHtHiS +\"lld\" +EnDeNd],
-+ AC_EGREP_CPP([MaTcHtHiS +\"ll(\" *\")?d\" +EnDeNd],
- [#include <apr.h>
- MaTcHtHiS APR_INT64_T_FMT EnDeNd],
- [svn_cv_pycfmt_apr_int64_t="L"])
- fi
- if test "x$svn_cv_pycfmt_apr_int64_t" = "x"; then
-- AC_EGREP_CPP([MaTcHtHiS +\"ld\" +EnDeNd],r
-+ AC_EGREP_CPP([MaTcHtHiS +\"l(\" *\")?d\" +EnDeNd],r
- [#include <apr.h>
- MaTcHtHiS APR_INT64_T_FMT EnDeNd],
- [svn_cv_pycfmt_apr_int64_t="l"])
diff --git a/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch b/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch
deleted file mode 100644
index 6658bd683e79..000000000000
--- a/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://bugs.gentoo.org/605438
-
---- a/subversion/tests/libsvn_wc/wc-queries-test.c 2019/01/24 10:33:42 1852012
-+++ b/subversion/tests/libsvn_wc/wc-queries-test.c 2019/01/24 10:58:23 1852013
-@@ -670,7 +670,20 @@
- || (item->expression_vars < 1))
- && !is_result_table(item->table))
- {
-- if (in_list(primary_key_statements, i))
-+ if (MATCH_TOKEN(item->table, "sqlite_master"))
-+ {
-+ /* The sqlite_master table does not have an index.
-+ Query explanations that say 'SCAN TABLE sqlite_master'
-+ will appear if SQLite was compiled with the option
-+ SQLITE_ENABLE_STMT_SCANSTATUS, for queries such
-+ as 'DROP TABLE foo', but the performance of such
-+ statements is not our concern here. */
-+
-+ /* "Slow" statements do expect too see a warning, however. */
-+ if (is_slow_statement(i))
-+ warned = TRUE;
-+ }
-+ else if (in_list(primary_key_statements, i))
- {
- /* Reported as primary key index usage in Sqlite 3.7,
- as table scan in 3.8+, while the execution plan is