diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-08-21 13:23:15 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-08-21 13:26:47 -0400 |
commit | 6e43a0ddf75bf7521d203a4996584512b24ff7f5 (patch) | |
tree | 5ce242f915191ef515b45367d5ab2dd47a49f05a /dev-util/coccigrep | |
parent | www-client/chromium: depend on >=ffmpeg-3.0.1 (bug #591722) (diff) | |
download | gentoo-6e43a0ddf75bf7521d203a4996584512b24ff7f5.tar.gz gentoo-6e43a0ddf75bf7521d203a4996584512b24ff7f5.tar.bz2 gentoo-6e43a0ddf75bf7521d203a4996584512b24ff7f5.zip |
dev-util/coccigrep: remove old
Diffstat (limited to 'dev-util/coccigrep')
-rw-r--r-- | dev-util/coccigrep/Manifest | 3 | ||||
-rw-r--r-- | dev-util/coccigrep/coccigrep-1.10.ebuild | 67 | ||||
-rw-r--r-- | dev-util/coccigrep/coccigrep-1.11.ebuild | 67 | ||||
-rw-r--r-- | dev-util/coccigrep/coccigrep-1.12.ebuild | 62 |
4 files changed, 0 insertions, 199 deletions
diff --git a/dev-util/coccigrep/Manifest b/dev-util/coccigrep/Manifest index cca9af6f22f6..24f228d3d88d 100644 --- a/dev-util/coccigrep/Manifest +++ b/dev-util/coccigrep/Manifest @@ -1,4 +1 @@ -DIST coccigrep-1.10.tar.gz 31286 SHA256 db882f449ed4df45916601c31f5aa34a83fce622f1044be7c324138f3e78aba6 SHA512 75eceb1da7dd9970c51c5d9ad26ddfcf26f11210086710a84199856f975801cbe7044916feb3e8d43304b49213f5607b26b10375412ec0a1c7b015c231383782 WHIRLPOOL 3eebf7ffec80833f03b9c55f10d6e9225ce41ecd07503097c7231513d8dca90c6db9b65928b37924039d2b04d778221e45e1c42dee41b5233f2f3e0f937dcae3 -DIST coccigrep-1.11.tar.gz 31618 SHA256 a13783fc52cf8074c5d2ac8267f57d30a52798c10d57899789e47589841f9c17 SHA512 d2cbe8e3efa5e9a9fee387a13185cad12bdb5bb482c4c87653cdbef4a6c0463c25a388042ff6556b1fe3ff4cf887bc241ff8a13145af4ff0793e6f77d57d0007 WHIRLPOOL 0b45530d67e8a7cd7a0b4f1a3063daf36176e5b4b75ec79e3fe237e0e6d7e7bc178566cf5b67d5da29ca3f09fcf89fe52cf2d520faecbc53f52ee71be6fda59a -DIST coccigrep-1.12.tar.gz 31692 SHA256 1a873c1d1d3ca6b11d2b46bb7b5489afd1f7435db2b179b3bf886b2f8c956642 SHA512 269623e11de47badfbdfe1e8f971b8b2f7f6b7c4347f99e40ded21377ecf043887662127d0244c241e3bf868326ec4630e43f96f64d04cfec0a5525fd4728699 WHIRLPOOL 31603c2939f0c282ea753c5dd5f2269cb8b16074c67f8b47e758f51728b936f145719ad34c3a45e02dfaa9af57393b9fc094156ca12f5c66bcbe54f22a47d2a1 DIST coccigrep-1.13.tar.gz 32366 SHA256 15fb99a1f5435a6d30fa967cc24141fee2d5116d1140d7ca34b38b763cf26b32 SHA512 d01baefe1c5f5d23ce03e5daccde0c38d4c05872313a0c8d15e53444c34fa6ae0db3b25bd62d8635a3f7b16e64767f92051c59d29bbd81cd24f94c9376af08ba WHIRLPOOL 0c5fded9ac451298754c95f9453c4f4d08c82b3f59749b4cf099d51b22b8885b1cd5c440f781783a226b0bc7707980eed644b3aa8efbba14f591978c835b698d diff --git a/dev-util/coccigrep/coccigrep-1.10.ebuild b/dev-util/coccigrep/coccigrep-1.10.ebuild deleted file mode 100644 index b52de5204b68..000000000000 --- a/dev-util/coccigrep/coccigrep-1.10.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -PYTHON_DEPEND="2" - -inherit distutils elisp-common vcs-snapshot - -DESCRIPTION="A semantic grep for the C language" -HOMEPAGE="http://home.regit.org/software/coccigrep/" -SRC_URI="https://github.com/regit/${PN}/tarball/v${PV/_/} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc emacs vim" - -RDEPEND="dev-util/coccinelle[python] - emacs? ( virtual/emacs ) - vim? ( || ( app-editors/vim app-editors/gvim ) )" -DEPEND="doc? ( dev-python/sphinx ) - emacs? ( virtual/emacs )" - -SITEFILE="50${PN}-gentoo.el" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_compile() { - distutils_src_compile - use doc && emake -C doc html - - if use emacs ; then - elisp-compile editors/*.el || die - fi -} - -src_install() { - distutils_src_install - doman ${PN}.1 - - use doc && dohtml -r doc/_build/html/* - - if use emacs ; then - elisp-install ${PN} editors/*.{el,elc} || die - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die - fi - - if use vim ; then - insinto /usr/share/vim/vimfiles/plugin - doins editors/cocci-grep.vim - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen - - einfo "Syntax highlighting is supported through dev-python/pygments." - einfo "Install it if you want colorized output formats." -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-util/coccigrep/coccigrep-1.11.ebuild b/dev-util/coccigrep/coccigrep-1.11.ebuild deleted file mode 100644 index b52de5204b68..000000000000 --- a/dev-util/coccigrep/coccigrep-1.11.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -PYTHON_DEPEND="2" - -inherit distutils elisp-common vcs-snapshot - -DESCRIPTION="A semantic grep for the C language" -HOMEPAGE="http://home.regit.org/software/coccigrep/" -SRC_URI="https://github.com/regit/${PN}/tarball/v${PV/_/} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc emacs vim" - -RDEPEND="dev-util/coccinelle[python] - emacs? ( virtual/emacs ) - vim? ( || ( app-editors/vim app-editors/gvim ) )" -DEPEND="doc? ( dev-python/sphinx ) - emacs? ( virtual/emacs )" - -SITEFILE="50${PN}-gentoo.el" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_compile() { - distutils_src_compile - use doc && emake -C doc html - - if use emacs ; then - elisp-compile editors/*.el || die - fi -} - -src_install() { - distutils_src_install - doman ${PN}.1 - - use doc && dohtml -r doc/_build/html/* - - if use emacs ; then - elisp-install ${PN} editors/*.{el,elc} || die - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die - fi - - if use vim ; then - insinto /usr/share/vim/vimfiles/plugin - doins editors/cocci-grep.vim - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen - - einfo "Syntax highlighting is supported through dev-python/pygments." - einfo "Install it if you want colorized output formats." -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-util/coccigrep/coccigrep-1.12.ebuild b/dev-util/coccigrep/coccigrep-1.12.ebuild deleted file mode 100644 index 914e1825f28a..000000000000 --- a/dev-util/coccigrep/coccigrep-1.12.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 elisp-common vcs-snapshot - -DESCRIPTION="A semantic grep for the C language" -HOMEPAGE="http://home.regit.org/software/coccigrep/" -SRC_URI="https://github.com/regit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc emacs vim" - -RDEPEND="dev-util/coccinelle[python] - emacs? ( virtual/emacs ) - vim? ( || ( app-editors/vim app-editors/gvim ) )" -DEPEND="doc? ( dev-python/sphinx ) - emacs? ( virtual/emacs )" - -SITEFILE="50${PN}-gentoo.el" - -python_compile_all() { - use doc && emake -C doc html - - if use emacs ; then - elisp-compile editors/*.el || die - fi -} - -python_install_all() { - distutils-r1_python_install_all - - doman ${PN}.1 - - use doc && dohtml -r doc/_build/html/* - - if use emacs ; then - elisp-install ${PN} editors/*.{el,elc} || die - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die - fi - - if use vim ; then - insinto /usr/share/vim/vimfiles/plugin - doins editors/cocci-grep.vim - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen - - einfo "Syntax highlighting is supported through dev-python/pygments." - einfo "Install it if you want colorized output formats." -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |