Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-util/krazy2/files/, dev-util/krazy2/
Date: Sat, 27 Jun 2015 20:39:04
Message-Id: 1435437163.4ef046f463d4ee969e977612d7f95ea460055f0a.johu@gentoo
1 commit: 4ef046f463d4ee969e977612d7f95ea460055f0a
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 27 20:32:43 2015 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 20:32:43 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4ef046f4
7
8 [dev-util/krazy2] Remove, dead git repo on gitorious
9
10 Alternative would be a kdevelop pluign:
11 https://projects.kde.org/projects/playground/devtools/plugins/kdev-krazy2
12
13 No frameworks branch so far...
14
15 Package-Manager: portage-2.2.20
16
17 dev-util/krazy2/files/krazy2-9999-libs.patch | 35 -------------
18 dev-util/krazy2/krazy2-9999.ebuild | 74 ----------------------------
19 dev-util/krazy2/metadata.xml | 5 --
20 3 files changed, 114 deletions(-)
21
22 diff --git a/dev-util/krazy2/files/krazy2-9999-libs.patch b/dev-util/krazy2/files/krazy2-9999-libs.patch
23 deleted file mode 100644
24 index f943db1..0000000
25 --- a/dev-util/krazy2/files/krazy2-9999-libs.patch
26 +++ /dev/null
27 @@ -1,35 +0,0 @@
28 -diff --git a/cppchecks/cplusplus/cppmodel/CMakeLists.txt b/cppchecks/cplusplus/cppmodel/CMakeLists.txt
29 -index ecdcdd8..a075415 100644
30 ---- a/cppchecks/cplusplus/cppmodel/CMakeLists.txt
31 -+++ b/cppchecks/cplusplus/cppmodel/CMakeLists.txt
32 -@@ -20,7 +20,5 @@ add_library(cppmodel SHARED ${cppmodel_SRCS})
33 - target_link_libraries(cppmodel preprocessor cpp_parser ${QT_QTCORE_LIBRARY})
34 - set_target_properties(cppmodel PROPERTIES DEFINE_SYMBOL CPLUSPLUSMODEL_BUILD_LIB)
35 -
36 --if(WIN32)
37 - install(TARGETS cppmodel ${INSTALL_TARGETS_DEFAULT_ARGS})
38 --endif(WIN32)
39 -
40 -diff --git a/cppchecks/cplusplus/parser/CMakeLists.txt b/cppchecks/cplusplus/parser/CMakeLists.txt
41 -index 08382f4..a57e037 100644
42 ---- a/cppchecks/cplusplus/parser/CMakeLists.txt
43 -+++ b/cppchecks/cplusplus/parser/CMakeLists.txt
44 -@@ -45,6 +45,4 @@ include_directories(${QT_INCLUDES})
45 - add_library(cpp_parser SHARED ${cplusplus_SRCS})
46 - set_target_properties(cpp_parser PROPERTIES DEFINE_SYMBOL CPLUSPLUS_BUILD_LIB)
47 -
48 --if(WIN32)
49 - install(TARGETS cpp_parser ${INSTALL_TARGETS_DEFAULT_ARGS})
50 --endif(WIN32)
51 -diff --git a/cppchecks/cplusplus/preprocessor/CMakeLists.txt b/cppchecks/cplusplus/preprocessor/CMakeLists.txt
52 -index 6251d44..44ed8df 100644
53 ---- a/cppchecks/cplusplus/preprocessor/CMakeLists.txt
54 -+++ b/cppchecks/cplusplus/preprocessor/CMakeLists.txt
55 -@@ -17,7 +17,5 @@ add_library(preprocessor SHARED ${preproc_SRCS})
56 - target_link_libraries(preprocessor cpp_parser ${QT_QTCORE_LIBRARY})
57 - set_target_properties(preprocessor PROPERTIES DEFINE_SYMBOL CPLUSPLUSPREPROCESSOR_BUILD_LIB)
58 -
59 --if(WIN32)
60 - install(TARGETS preprocessor ${INSTALL_TARGETS_DEFAULT_ARGS})
61 --endif(WIN32)
62 -
63
64 diff --git a/dev-util/krazy2/krazy2-9999.ebuild b/dev-util/krazy2/krazy2-9999.ebuild
65 deleted file mode 100644
66 index 665a2f2..0000000
67 --- a/dev-util/krazy2/krazy2-9999.ebuild
68 +++ /dev/null
69 @@ -1,74 +0,0 @@
70 -# Copyright 1999-2015 Gentoo Foundation
71 -# Distributed under the terms of the GNU General Public License v2
72 -# $Header: $
73 -
74 -EAPI=5
75 -
76 -inherit perl-module qt4-r2 cmake-utils multilib git-r3
77 -
78 -DESCRIPTION="Source code sanity checker for KDE developers"
79 -HOMEPAGE="http://www.kde.org/"
80 -EGIT_REPO_URI=( "git://gitorious.org/krazy/krazy.git" )
81 -
82 -LICENSE="GPL-2"
83 -KEYWORDS=""
84 -SLOT="0"
85 -IUSE="cxx debug"
86 -
87 -DEPEND="
88 - >=dev-perl/HTML-Parser-2.20
89 - >=dev-perl/Tie-IxHash-1.20
90 - >=dev-perl/XML-LibXML-1.57
91 - dev-perl/yaml
92 - >=dev-qt/qtcore-4.4:4
93 - >=dev-qt/qtgui-4.4:4
94 -"
95 -RDEPEND="${DEPEND}
96 - dev-util/desktop-file-utils
97 - virtual/perl-ExtUtils-MakeMaker
98 -"
99 -
100 -CMAKE_USE_DIR="${S}/cppchecks"
101 -
102 -PATCHES=( "${FILESDIR}/${P}-libs.patch" )
103 -
104 -src_prepare() {
105 - sed -i -e 's/+= ordered/+= ordered nostrip/' \
106 - src/src.pro || die "failed to apply nostrip"
107 -
108 - sed -i "s:lib\$(LIBSUFFIX):$(get_libdir):" src/passbyvalue/passbyvalue.pro || die "sed failed"
109 -
110 - base_src_prepare
111 -}
112 -
113 -src_configure() {
114 - use cxx && cmake-utils_src_configure
115 - perl-module_src_configure
116 - eqmake4 src/src.pro
117 -}
118 -
119 -src_compile() {
120 - use cxx && cmake-utils_src_compile
121 - perl-module_src_compile
122 - emake -C src
123 -}
124 -
125 -src_install() {
126 - dodoc README TODO
127 -
128 - use cxx && cmake-utils_src_install
129 -
130 - perl-module_src_install
131 -
132 - emake -C src install INSTALL_ROOT="${D}/usr"
133 - emake -C extras install PREFIX="${D}/usr"
134 - emake -C helpers install PREFIX="${D}/usr"
135 - emake -C sets install PREFIX="${D}/usr"
136 - emake -C plugins install DESTDIR="${D}/usr"
137 -
138 - insinto /usr/share/dtd
139 - doins share/*.*
140 -
141 - insinto /usr/share/xsl
142 - doins stylesheets/*.*
143 -}
144
145 diff --git a/dev-util/krazy2/metadata.xml b/dev-util/krazy2/metadata.xml
146 deleted file mode 100644
147 index a23f444..0000000
148 --- a/dev-util/krazy2/metadata.xml
149 +++ /dev/null
150 @@ -1,5 +0,0 @@
151 -<?xml version="1.0" encoding="UTF-8"?>
152 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
153 -<pkgmetadata>
154 - <herd>kde</herd>
155 -</pkgmetadata>