From b2be182d49eea46686b5cf2680d457df61e89dc4 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 30 Jun 2018 08:49:38 +0100 Subject: gentoo resync : 30.06.2018 --- dev-util/automoc/Manifest | 4 -- dev-util/automoc/automoc-0.9.88-r1.ebuild | 34 --------------- dev-util/automoc/files/automoc-0.9.88-objc++.patch | 48 ---------------------- dev-util/automoc/metadata.xml | 8 ---- 4 files changed, 94 deletions(-) delete mode 100644 dev-util/automoc/Manifest delete mode 100644 dev-util/automoc/automoc-0.9.88-r1.ebuild delete mode 100644 dev-util/automoc/files/automoc-0.9.88-objc++.patch delete mode 100644 dev-util/automoc/metadata.xml (limited to 'dev-util/automoc') diff --git a/dev-util/automoc/Manifest b/dev-util/automoc/Manifest deleted file mode 100644 index 5e5f904af7a8..000000000000 --- a/dev-util/automoc/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX automoc-0.9.88-objc++.patch 2971 BLAKE2B cf42668b7dbf5c3373db3184e0eb17fda47ec1d3cdc741d5c795ce837daebd1a4fac37cbe9f251e96a51cfa99b114b963116da3f92de597ab0caed7e14c251c4 SHA512 c965e4aa3de0c1c711d944f349853ec6e183e28070e86aee0a38321ae48d80c4dd1dc2e8d3fc501512efed9c923ffc98dbab5730959f3cc81c2aaad7bd13c170 -DIST automoc4-0.9.88.tar.bz2 9153 BLAKE2B 4fbe9a5e07a0ef964b0a4fc4efa898cedeb239129de3f9e83b6081ad6c54469019118f613c9d4fff2a22227e62b374be5541898abf047254806fcfcd63e709a4 SHA512 96dfa096a3793f93f6a4acf98c051c871c0285124bff09b12914a17e08a1f26cd63f0bb1c22fdf2c5c29550a1727a087b5de86bfa8a555c562e96052b4a2d820 -EBUILD automoc-0.9.88-r1.ebuild 759 BLAKE2B da2a7f9e9a13712bbc55b26b5e29365fa28bcd3705f6496a38bcf1ce1efc2c9002635a1dc27a3238c458f18ed8b13684b071ed2cd47f777732cabe2427a63322 SHA512 943a2b41663bcda600e933b612e6882aac7580bfc129e699ba6836186ada604625ef6b058dd4ee6ee954eddaaa66c6a3db9bec7cea53542702d6d9ea3d7115dd -MISC metadata.xml 249 BLAKE2B ad415db89e5dee1627aa77f44ded9d4e1e5b8217d06c7ca25bbaa3fe92ce67c2b1090957c45a821b407d7927e5af798498aa6a5b903895ee1af8ee20a446c7f7 SHA512 76a5a340b13f0053ca3c5e94ed24380ea8d29b45ac8655419e22eaadb1e4a827c04d2e7e36b65145c4964e6526f656618fc6ac144e277ef53cb7373e6239e3c3 diff --git a/dev-util/automoc/automoc-0.9.88-r1.ebuild b/dev-util/automoc/automoc-0.9.88-r1.ebuild deleted file mode 100644 index 60198cf0b581..000000000000 --- a/dev-util/automoc/automoc-0.9.88-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_PN="automoc4" -MY_P="${MY_PN}-${PV}" -inherit cmake-utils flag-o-matic - -DESCRIPTION="KDE Meta Object Compiler" -HOMEPAGE="https://www.kde.org" -SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/${MY_P}.tar.bz2" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - dev-qt/qtcore:4 -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( "${FILESDIR}/${PN}-0.9.88-objc++.patch" ) - -src_prepare() { - cmake-utils_src_prepare - - if [[ ${ELIBC} = uclibc ]]; then - append-flags -pthread - fi -} diff --git a/dev-util/automoc/files/automoc-0.9.88-objc++.patch b/dev-util/automoc/files/automoc-0.9.88-objc++.patch deleted file mode 100644 index 1f4dacdc06eb..000000000000 --- a/dev-util/automoc/files/automoc-0.9.88-objc++.patch +++ /dev/null @@ -1,48 +0,0 @@ -Please refer to - http://websvn.kde.org/?view=revision&revision=934696 - -Adds support for objc++ in automoc, so that running moc on .mm-files will work. - ---- trunk/kdesupport/automoc/Automoc4Config.cmake 2009/03/03 15:40:57 934695 -+++ trunk/kdesupport/automoc/Automoc4Config.cmake 2009/03/03 15:42:18 934696 -@@ -105,9 +105,9 @@ - if(NOT _generated AND NOT _skip) - get_filename_component(_suffix "${_current_FILE}" EXT) - # skip every source file that's not C++ -- if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C") -+ if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm") - list(APPEND _moc_files ${_abs_current_FILE}) -- endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C") -+ endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm") - endif(NOT _generated AND NOT _skip) - endforeach (_current_FILE) - -@@ -156,7 +156,7 @@ - if(NOT _generated AND NOT _skip) - get_filename_component(_suffix "${_current_FILE}" EXT) - # skip every source file that's not C++ -- if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C") -+ if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm") - get_filename_component(_basename "${_current_FILE}" NAME_WE) - get_filename_component(_abs_path "${_abs_current_FILE}" PATH) - set(_header "${_abs_path}/${_basename}.h") -@@ -168,7 +168,7 @@ - list(APPEND _moc_headers ${_pheader}) - endif(EXISTS "${_pheader}") - list(APPEND _moc_files ${_abs_current_FILE}) -- endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C") -+ endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm") - endif(NOT _generated AND NOT _skip) - endforeach (_current_FILE) - ---- trunk/kdesupport/automoc/kde4automoc.cpp 2009/03/03 15:40:57 934695 -+++ trunk/kdesupport/automoc/kde4automoc.cpp 2009/03/03 15:42:18 934696 -@@ -326,7 +326,7 @@ - foreach (const QString &absFilename, sourceFiles) { - //qDebug() << absFilename; - const QFileInfo sourceFileInfo(absFilename); -- if (absFilename.endsWith(".cpp") || absFilename.endsWith(".cc") || -+ if (absFilename.endsWith(".cpp") || absFilename.endsWith(".cc") || absFilename.endsWith(".mm") || - absFilename.endsWith(".cxx") || absFilename.endsWith(".C")) { - //qDebug() << "check .cpp file"; - QFile sourceFile(absFilename); diff --git a/dev-util/automoc/metadata.xml b/dev-util/automoc/metadata.xml deleted file mode 100644 index 2fdbf33d963d..000000000000 --- a/dev-util/automoc/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - kde@gentoo.org - Gentoo KDE Project - - -- cgit v1.2.3