From 8834457d602e4d9f93c58c4ff39f4bca27fdfceb Mon Sep 17 00:00:00 2001 From: Mikle Kolyada Date: Tue, 26 Dec 2017 19:33:40 +0300 Subject: dev-util/uncrustify: Drop old Package-Manager: Portage-2.3.13, Repoman-2.3.3 --- dev-util/uncrustify/Manifest | 2 -- .../uncrustify/files/uncrustify-0.59-unistdh.patch | 16 ---------- dev-util/uncrustify/uncrustify-0.59.ebuild | 32 -------------------- dev-util/uncrustify/uncrustify-0.66.ebuild | 35 ---------------------- 4 files changed, 85 deletions(-) delete mode 100644 dev-util/uncrustify/files/uncrustify-0.59-unistdh.patch delete mode 100644 dev-util/uncrustify/uncrustify-0.59.ebuild delete mode 100644 dev-util/uncrustify/uncrustify-0.66.ebuild (limited to 'dev-util/uncrustify') diff --git a/dev-util/uncrustify/Manifest b/dev-util/uncrustify/Manifest index 0cb5831714b9..510a78358375 100644 --- a/dev-util/uncrustify/Manifest +++ b/dev-util/uncrustify/Manifest @@ -1,3 +1 @@ -DIST uncrustify-0.59.tar.gz 983822 BLAKE2B b73ef70bf4175433d1e7ad9c2f0adca251af55ccc0e7892d3d4e4a987854eb4285fe2d2da3b66d8765a64a2cc3ad50c23ceb494b0d8afa54ab64f399aa97fa3f SHA512 eb228ecb63f777e90ecca44bdef2312fbca2cdbdf9dd899e1f67e9917265667584796b983050138bae39773ab2627e3c3035e519f64dfe51475f207a0e3af900 DIST uncrustify-0.66.1.tar.gz 1208142 BLAKE2B d642eb6c8e2a147aa17bd25f4ca0ee7e9471fa4f7d288c5e06e4814d0103032989e83349377d9d9a19371047fb82ad4d6e1aeec90bea3a068e8884ec4a698e0c SHA512 edfde1d46bded9febd47b77cbff86028e1d21c41fee6a46a8b43f0928bf937259be2f88fe4606f406f414601bb757e27eda373ca738606d1bb74b6cd27335f47 -DIST uncrustify-0.66.tar.gz 1435142 BLAKE2B c16146af69a20e8dc8850c2b4534fe75dcb0b245463a966076183db01167958661339a47f57624e73cf23dc92713866e8418d572e779f0033d2202d42ba6f66f SHA512 607486c6c34ab1551707c0c5e1c4ce73d53f518f9db478734a3af6711569b0c91e371d9b88b4fc3c34a4d9459feba32c24c87b82bd2c2645fa9d9a6a674f429d diff --git a/dev-util/uncrustify/files/uncrustify-0.59-unistdh.patch b/dev-util/uncrustify/files/uncrustify-0.59-unistdh.patch deleted file mode 100644 index 275c21aba339..000000000000 --- a/dev-util/uncrustify/files/uncrustify-0.59-unistdh.patch +++ /dev/null @@ -1,16 +0,0 @@ -open/close/etc. are defined in unistd.h, GCC 4.7 is stricter in this and -breaks the build, bug #413859. Upstream already applied a similar -change for another issue, so next release should be fine. - ---- uncrustify-0.59/src/uncrustify.cpp -+++ uncrustify-0.59/src/uncrustify.cpp -@@ -24,6 +24,9 @@ - #include - #include - #include -+#ifdef HAVE_UNISTD_H -+#include -+#endif - #include - #include "unc_ctype.h" - #ifdef HAVE_SYS_STAT_H diff --git a/dev-util/uncrustify/uncrustify-0.59.ebuild b/dev-util/uncrustify/uncrustify-0.59.ebuild deleted file mode 100644 index 38fc0c4aa6b7..000000000000 --- a/dev-util/uncrustify/uncrustify-0.59.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -inherit eutils - -DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" -HOMEPAGE="http://uncrustify.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" -IUSE="test" - -DEPEND="test? ( =dev-lang/python-2* )" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${P}-unistdh.patch -} - -src_test() { - cd tests - python2 run_tests.py || die "tests failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "Install failed" - dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" -} diff --git a/dev-util/uncrustify/uncrustify-0.66.ebuild b/dev-util/uncrustify/uncrustify-0.66.ebuild deleted file mode 100644 index d0891fcae6c3..000000000000 --- a/dev-util/uncrustify/uncrustify-0.66.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ $PV == *9999* ]]; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - KEYWORDS="" - SRC_URI="" - scm_eclass=git-r3 -else - KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" - SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz" - S=${WORKDIR}/${PN}-${P} -fi - -inherit cmake-utils ${scm_eclass} - -PYTHON_COMPAT=( python2_7 ) - -inherit python-any-r1 - -DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" -HOMEPAGE="http://uncrustify.sourceforge.net/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" - -DEPEND="test? ( ${PYTHON_DEPS} )" - -python_test() { - cd tests - ${EPYTHON} run_tests.py || die "tests failed" -} -- cgit v1.2.3-65-gdbad