Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libcmis/files/
Date: Sun, 12 Feb 2017 16:23:23
Message-Id: 1486916563.9f713701f8beb859e275ad342281437e2f305ec0.asturm@gentoo
1 commit: 9f713701f8beb859e275ad342281437e2f305ec0
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 16:22:43 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 16:22:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f713701
7
8 dev-cpp/libcmis: Drop unused patches
9
10 Reported-by: Anonymous user
11 Gentoo-bug: 609130
12
13 Package-Manager: portage-2.3.3
14
15 .../files/libcmis-0.5.0-boost-linking.patch | 21 -----------
16 dev-cpp/libcmis/files/libcmis-0.5.0-cppcheck.patch | 44 ----------------------
17 2 files changed, 65 deletions(-)
18
19 diff --git a/dev-cpp/libcmis/files/libcmis-0.5.0-boost-linking.patch b/dev-cpp/libcmis/files/libcmis-0.5.0-boost-linking.patch
20 deleted file mode 100644
21 index 348a590f4c..0000000000
22 --- a/dev-cpp/libcmis/files/libcmis-0.5.0-boost-linking.patch
23 +++ /dev/null
24 @@ -1,21 +0,0 @@
25 -From b572b60a5fdc630f7f3b31dfd5dbdd1ed48659ca Mon Sep 17 00:00:00 2001
26 -From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= <cedric.bosdonnat@××××.fr>
27 -Date: Thu, 16 Jul 2015 16:22:11 +0200
28 -Subject: [PATCH] Fix linking error when building with --with-boot
29 -
30 ----
31 - src/libcmis/Makefile.am | 1 +
32 - 1 file changed, 1 insertion(+)
33 -
34 -diff --git a/src/libcmis/Makefile.am b/src/libcmis/Makefile.am
35 -index 3915d45..1955ea6 100644
36 ---- a/src/libcmis/Makefile.am
37 -+++ b/src/libcmis/Makefile.am
38 -@@ -144,6 +144,7 @@ libcmis_@LIBCMIS_API_VERSION@_la_LIBADD = \
39 - $(XML2_LIBS) \
40 - $(CURL_LIBS) \
41 - $(BOOST_SMART_PTR_LIBS) \
42 -+ $(BOOST_DATE_TIME_LDFLAGS) \
43 - $(BOOST_DATE_TIME_LIBS)
44 -
45 - libcmis_@LIBCMIS_API_VERSION@_la_includedir = $(includedir)/libcmis-@LIBCMIS_API_VERSION@/libcmis
46
47 diff --git a/dev-cpp/libcmis/files/libcmis-0.5.0-cppcheck.patch b/dev-cpp/libcmis/files/libcmis-0.5.0-cppcheck.patch
48 deleted file mode 100644
49 index 8c89ab8bfe..0000000000
50 --- a/dev-cpp/libcmis/files/libcmis-0.5.0-cppcheck.patch
51 +++ /dev/null
52 @@ -1,44 +0,0 @@
53 -From 0ad3ec084d918be503a8ce971af1b54887d7726f Mon Sep 17 00:00:00 2001
54 -From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= <cedric.bosdonnat@××××.fr>
55 -Date: Thu, 16 Jul 2015 16:23:06 +0200
56 -Subject: [PATCH] Getting cppcheck-test to pass again
57 -
58 ----
59 - Makefile.am | 1 +
60 - cppcheck-suppress | 3 +++
61 - cppcheck-test.sh.in | 4 +++-
62 - 3 files changed, 7 insertions(+), 1 deletion(-)
63 - create mode 100644 cppcheck-suppress
64 -
65 -diff --git a/Makefile.am b/Makefile.am
66 -index ebf1f3b..9263497 100644
67 ---- a/Makefile.am
68 -+++ b/Makefile.am
69 -@@ -35,6 +35,7 @@ EXTRA_DIST = \
70 - COPYING.LGPL \
71 - doc/cmis-client.xml \
72 - cppcheck-test.sh \
73 -+ cppcheck-suppress \
74 - qa/libcmis/data
75 -
76 - if ENABLE_CPPCHECK
77 -diff --git a/cppcheck-suppress b/cppcheck-suppress
78 -new file mode 100644
79 -index 0000000..9ef8482
80 ---- /dev/null
81 -+++ b/cppcheck-suppress
82 -@@ -0,0 +1,3 @@
83 -+publicAllocationError:qa/libcmis/test-decoder.cxx
84 -+noExplicitConstructor
85 -+noExplicitCopyMoveConstructor
86 -diff --git a/cppcheck-test.sh.in b/cppcheck-test.sh.in
87 -index 20a73f8..175e0f5 100755
88 ---- a/cppcheck-test.sh.in
89 -+++ b/cppcheck-test.sh.in
90 -@@ -1,3 +1,5 @@
91 - #!/bin/sh
92 --@CPPCHECK@ -q --enable=style,performance,portability,information --error-exitcode=1 @SRCDIR@
93 -+@CPPCHECK@ -q --enable=style,performance,portability,information \
94 -+ --suppressions-list=./cppcheck-suppress \
95 -+ --error-exitcode=1 @SRCDIR@
96 - exit $?