public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2016-08-21 17:26 Tim Harder
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Harder @ 2016-08-21 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     6e43a0ddf75bf7521d203a4996584512b24ff7f5
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 21 17:23:15 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Aug 21 17:26:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e43a0dd

dev-util/coccigrep: remove old

 dev-util/coccigrep/Manifest              |  3 --
 dev-util/coccigrep/coccigrep-1.10.ebuild | 67 --------------------------------
 dev-util/coccigrep/coccigrep-1.11.ebuild | 67 --------------------------------
 dev-util/coccigrep/coccigrep-1.12.ebuild | 62 -----------------------------
 4 files changed, 199 deletions(-)

diff --git a/dev-util/coccigrep/Manifest b/dev-util/coccigrep/Manifest
index cca9af6..24f228d 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 b52de52..0000000
--- 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 b52de52..0000000
--- 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 914e182..0000000
--- 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
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2016-08-21 17:26 Tim Harder
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Harder @ 2016-08-21 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     47a5baf8a76a86056010eb21020922ad350b1665
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 21 17:25:38 2016 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Aug 21 17:26:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a5baf8

dev-util/coccigrep: update to EAPI 6

 dev-util/coccigrep/coccigrep-1.13.ebuild | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-util/coccigrep/coccigrep-1.13.ebuild b/dev-util/coccigrep/coccigrep-1.13.ebuild
index b79553c..00a59c2 100644
--- a/dev-util/coccigrep/coccigrep-1.13.ebuild
+++ b/dev-util/coccigrep/coccigrep-1.13.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 elisp-common
@@ -33,12 +33,11 @@ python_compile_all() {
 }
 
 python_install_all() {
+	use doc && local HTML_DOCS="doc/_build/html/."
 	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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2017-04-01 13:32 Alexis Ballier
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier @ 2017-04-01 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     be3332927469e4ae61e7d731f44f250ed23b7ba5
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 29 15:31:23 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Apr  1 13:32:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be333292

dev-util/coccigrep: Drop ~x86 keywords.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-util/coccigrep/coccigrep-1.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/coccigrep/coccigrep-1.13.ebuild b/dev-util/coccigrep/coccigrep-1.13.ebuild
index 2b39af1f209..6cc6aa3b0ab 100644
--- a/dev-util/coccigrep/coccigrep-1.13.ebuild
+++ b/dev-util/coccigrep/coccigrep-1.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/regit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 IUSE="doc emacs vim"
 
 RDEPEND="dev-util/coccinelle[python]


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2018-02-11 21:56 Thomas Deutschmann
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Deutschmann @ 2018-02-11 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     bec1ad903efd6c980b0da99f46563991632d7d0a
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 11 21:52:36 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 11 21:56:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec1ad90

dev-util/coccigrep: x86 keyworded (bug #614216)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/coccigrep/coccigrep-1.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/coccigrep/coccigrep-1.13.ebuild b/dev-util/coccigrep/coccigrep-1.13.ebuild
index 6cc6aa3b0ab..f56d4bacedc 100644
--- a/dev-util/coccigrep/coccigrep-1.13.ebuild
+++ b/dev-util/coccigrep/coccigrep-1.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/regit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc emacs vim"
 
 RDEPEND="dev-util/coccinelle[python]


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2022-10-29 18:28 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-10-29 18:28 UTC (permalink / raw
  To: gentoo-commits

commit:     bfe3ee779f9ef54afca99d2ada883732cea4ca6d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 18:26:49 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 18:26:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfe3ee77

dev-util/coccigrep: update HOMEPAGE

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/coccigrep/coccigrep-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/coccigrep/coccigrep-1.20.ebuild b/dev-util/coccigrep/coccigrep-1.20.ebuild
index f439caae2e86..5a30a6669a76 100644
--- a/dev-util/coccigrep/coccigrep-1.20.ebuild
+++ b/dev-util/coccigrep/coccigrep-1.20.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{8..11} )
 inherit distutils-r1 elisp-common optfeature
 
 DESCRIPTION="A semantic grep for the C language"
-HOMEPAGE="http://home.regit.org/software/coccigrep/"
+HOMEPAGE="https://home.regit.org/software/coccigrep/"
 SRC_URI="https://github.com/regit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/
@ 2022-10-30 20:12 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2022-10-30 20:12 UTC (permalink / raw
  To: gentoo-commits

commit:     40fc8bf42a7eec83a43d854b6ca416833ad17d8b
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 30 20:11:31 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 20:11:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40fc8bf4

dev-util/coccigrep: sphinx.ext.pngmath obsoleted

Closes: https://bugs.gentoo.org/878775
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-util/coccigrep/coccigrep-1.20.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-util/coccigrep/coccigrep-1.20.ebuild b/dev-util/coccigrep/coccigrep-1.20.ebuild
index 5a30a6669a76..7ce98d6d6821 100644
--- a/dev-util/coccigrep/coccigrep-1.20.ebuild
+++ b/dev-util/coccigrep/coccigrep-1.20.ebuild
@@ -26,6 +26,8 @@ BDEPEND="
 	emacs? ( >=app-editors/emacs-23.1:* )
 "
 
+PATCHES=( "${FILESDIR}"/${P}-sphinx.patch )
+
 SITEFILE="50${PN}-gentoo.el"
 
 python_compile_all() {


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-10-30 20:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-21 17:26 [gentoo-commits] repo/gentoo:master commit in: dev-util/coccigrep/ Tim Harder
  -- strict thread matches above, loose matches on Subject: below --
2022-10-30 20:12 Alfredo Tupone
2022-10-29 18:28 Sam James
2018-02-11 21:56 Thomas Deutschmann
2017-04-01 13:32 Alexis Ballier
2016-08-21 17:26 Tim Harder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox