public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2012-07-04 11:42 Johannes Huber
  0 siblings, 0 replies; 20+ messages in thread
From: Johannes Huber @ 2012-07-04 11:42 UTC (permalink / raw
  To: gentoo-commits

commit:     bf221c0261b3c86a2598078551e8117f95f94fae
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  4 11:42:07 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul  4 11:42:07 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=bf221c02

[app-editors/vim-qt] Initial import. Ebuild by Elijah El Lazkani <ThyArmageddon+GentooOverlay <AT> Gmail.com>.

(Portage version: 2.2.0_alpha115/git/Linux x86_64, unsigned Manifest commit)

---
 app-editors/vim-qt/metadata.xml       |   10 +++++
 app-editors/vim-qt/vim-qt-9999.ebuild |   59 +++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+), 0 deletions(-)

diff --git a/app-editors/vim-qt/metadata.xml b/app-editors/vim-qt/metadata.xml
new file mode 100644
index 0000000..be850cb
--- /dev/null
+++ b/app-editors/vim-qt/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>qt</herd>
+	<maintainer>
+		<email>ThyArmageddon+Gentoo@Gmail.com</email>
+		<name>Elijah El Lazkani</name>
+	</maintainer>
+	<longdescription lang="en">The well known vim editor with a Qt based front-end interface</longdescription>
+</pkgmetadata>

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
new file mode 100644
index 0000000..8026f03
--- /dev/null
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit eutils toolchain-funcs flag-o-matic git-2
+
+DESCRIPTION="Qt GUI version of the Vim text editor"
+HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/overview"
+EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git
+	https://gitorious.org/${PN}/${PN}.git"
+
+LICENSE="vim"
+SLOT="0"
+KEYWORDS=""
+IUSE="acl cscope debug gpm nls perl python ruby"
+
+COMMON_DEPEND="
+	app-admin/eselect-vi
+	=app-editors/vim-core-7.3.487
+	sys-libs/ncurses
+	>=x11-libs/qt-core-4.7.0:4
+	>=x11-libs/qt-gui-4.7.0:4
+	acl? ( kernel_linux? ( sys-apps/acl ) )
+	cscope? ( dev-util/cscope )
+	gpm? ( sys-libs/gpm )
+	nls? ( virtual/libintl )
+	perl? ( dev-lang/perl )
+	ruby? ( dev-lang/ruby:1.8 )"
+DEPEND="${COMMON_DEPEND}
+	sys-devel/autoconf"
+RDEPEND="${COMMON_DEPEND}"
+
+src_configure() {
+	use debug && append-flags "-DDEBUG"
+
+	local myconf="--with-features=huge
+		--enable-multibyte"
+	myconf+=" $(use_enable acl)"
+	myconf+=" $(use_enable gpm)"
+	myconf+=" $(use_enable nls)"
+	myconf+=" $(use_enable perl perlinterp)"
+	myconf+=" $(use_enable python pythoninterp)"
+	myconf+=" $(use_enable ruby rubyinterp)"
+	myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
+
+	if ! use cscope ; then
+		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || \
+			die "couldn't disable cscope"
+	fi
+	econf ${myconf}
+}
+
+src_install() {
+	dobin src/qvim
+	doicon -s 64 src/qt/icons/vim-qt.png
+	make_desktop_entry qvim Vim-qt vim-qt "QT;TextEditor;Development;"
+}



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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2012-07-04 11:43 Johannes Huber
  0 siblings, 0 replies; 20+ messages in thread
From: Johannes Huber @ 2012-07-04 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     5f247452131aeb6e9978dac20e1bd36a48ae21f6
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  4 11:42:56 2012 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul  4 11:42:56 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=5f247452

[app-editors/vim-qt] Relax deps on vim-core.

(Portage version: 2.2.0_alpha115/git/Linux x86_64, unsigned Manifest commit)

---
 app-editors/vim-qt/vim-qt-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index 8026f03..e6b854d 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -18,7 +18,7 @@ IUSE="acl cscope debug gpm nls perl python ruby"
 
 COMMON_DEPEND="
 	app-admin/eselect-vi
-	=app-editors/vim-core-7.3.487
+	>=app-editors/vim-core-7.3.487
 	sys-libs/ncurses
 	>=x11-libs/qt-core-4.7.0:4
 	>=x11-libs/qt-gui-4.7.0:4



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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-02-01 16:37 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2013-02-01 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     894c61872264c0c6fa4ee8e70c7aee25f63d6fe8
Author:     Ben de Groot <yngwin <AT> gmail <DOT> com>
AuthorDate: Fri Feb  1 16:37:12 2013 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Fri Feb  1 16:37:12 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=894c6187

app-editors/vim-qt: update homepage and repos; some minor ebuild improvements

---
 app-editors/vim-qt/vim-qt-9999.ebuild |   19 +++++++++----------
 1 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index a45895c..1534986 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -2,21 +2,22 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 inherit eutils toolchain-funcs flag-o-matic git-2
 
 DESCRIPTION="Qt GUI version of the Vim text editor"
-HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/overview"
-EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git
-	https://gitorious.org/${PN}/${PN}.git"
+HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wii/Home"
+EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
+	git://github.com/equalsraf/${PN}.git
+	git://gitorious.org/${PN}/${PN}.git"
 
 LICENSE="vim"
 SLOT="0"
 KEYWORDS=""
 IUSE="acl cscope debug gpm nls perl python ruby"
 
-COMMON_DEPEND="
+RDEPEND="
 	app-admin/eselect-vi
 	>=app-editors/vim-core-7.3.487
 	sys-libs/ncurses
@@ -28,15 +29,13 @@ COMMON_DEPEND="
 	nls? ( virtual/libintl )
 	perl? ( dev-lang/perl )
 	ruby? ( dev-lang/ruby:1.8 )"
-DEPEND="${COMMON_DEPEND}
+DEPEND="${RDEPEND}
 	sys-devel/autoconf"
-RDEPEND="${COMMON_DEPEND}"
 
 src_configure() {
 	use debug && append-flags "-DDEBUG"
 
-	local myconf="--with-features=huge
-		--enable-multibyte"
+	local myconf="--with-features=huge --enable-multibyte"
 	myconf+=" $(use_enable acl)"
 	myconf+=" $(use_enable gpm)"
 	myconf+=" $(use_enable nls)"
@@ -55,5 +54,5 @@ src_configure() {
 src_install() {
 	dobin src/qvim
 	doicon -s 64 src/qt/icons/vim-qt.png
-	make_desktop_entry qvim Vim-qt vim-qt "QT;TextEditor;Development;"
+	make_desktop_entry qvim Vim-qt vim-qt "Qt;TextEditor;Development;"
 }


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-02-01 19:15 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2013-02-01 19:15 UTC (permalink / raw
  To: gentoo-commits

commit:     4f603f823235dfe6a76bacf062597b447c5fa35a
Author:     Ben de Groot <yngwin <AT> gmail <DOT> com>
AuthorDate: Fri Feb  1 19:15:16 2013 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Fri Feb  1 19:15:16 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=4f603f82

app-editors/vim-qt: update live ebuild, preparing for upstream tagged version ebuild

---
 app-editors/vim-qt/metadata.xml       |    7 +----
 app-editors/vim-qt/vim-qt-9999.ebuild |   50 +++++++++++++++++++++++----------
 2 files changed, 36 insertions(+), 21 deletions(-)

diff --git a/app-editors/vim-qt/metadata.xml b/app-editors/vim-qt/metadata.xml
index be850cb..3cbebd8 100644
--- a/app-editors/vim-qt/metadata.xml
+++ b/app-editors/vim-qt/metadata.xml
@@ -1,10 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<herd>qt</herd>
-	<maintainer>
-		<email>ThyArmageddon+Gentoo@Gmail.com</email>
-		<name>Elijah El Lazkani</name>
-	</maintainer>
-	<longdescription lang="en">The well known vim editor with a Qt based front-end interface</longdescription>
+  <herd>qt</herd>
 </pkgmetadata>

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index 1534986..6b08006 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -3,23 +3,31 @@
 # $Header: $
 
 EAPI=5
-
-inherit eutils toolchain-funcs flag-o-matic git-2
+PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+PYTHON_REQ_USE="threads"
+inherit eutils fdo-mime python-any-r1
 
 DESCRIPTION="Qt GUI version of the Vim text editor"
-HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wii/Home"
-EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
-	git://github.com/equalsraf/${PN}.git
-	git://gitorious.org/${PN}/${PN}.git"
+HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-2
+	EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
+		git://github.com/equalsraf/${PN}.git
+		git://gitorious.org/${PN}/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-package-${PV}"
+fi
 
 LICENSE="vim"
 SLOT="0"
-KEYWORDS=""
 IUSE="acl cscope debug gpm nls perl python ruby"
 
-RDEPEND="
-	app-admin/eselect-vi
-	>=app-editors/vim-core-7.3.487
+RDEPEND="app-admin/eselect-vi
+	>=app-editors/vim-core-7.3.762[acl?]
 	sys-libs/ncurses
 	>=x11-libs/qt-core-4.7.0:4
 	>=x11-libs/qt-gui-4.7.0:4
@@ -28,9 +36,14 @@ RDEPEND="
 	gpm? ( sys-libs/gpm )
 	nls? ( virtual/libintl )
 	perl? ( dev-lang/perl )
-	ruby? ( dev-lang/ruby:1.8 )"
-DEPEND="${RDEPEND}
-	sys-devel/autoconf"
+	python? ( ${PYTHON_DEPS} )
+	ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+	export LC_COLLATE="C" # prevent locale brokenness bug #82186
+	use python && python-any-r1_pkg_setup
+}
 
 src_configure() {
 	use debug && append-flags "-DDEBUG"
@@ -45,8 +58,7 @@ src_configure() {
 	myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
 
 	if ! use cscope ; then
-		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || \
-			die "couldn't disable cscope"
+		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || die 'sed failed'
 	fi
 	econf ${myconf}
 }
@@ -56,3 +68,11 @@ src_install() {
 	doicon -s 64 src/qt/icons/vim-qt.png
 	make_desktop_entry qvim Vim-qt vim-qt "Qt;TextEditor;Development;"
 }
+
+pkg_postinst() {
+	fdo-mime_mime_database_update
+}
+
+pkg_postrm() {
+	fdo-mime_mime_database_update
+}


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-02-01 19:42 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2013-02-01 19:42 UTC (permalink / raw
  To: gentoo-commits

commit:     f21148abe4d6349eb2aeb82ddb0dbdcd4848d4ce
Author:     Ben de Groot <yngwin <AT> gmail <DOT> com>
AuthorDate: Fri Feb  1 19:42:16 2013 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Fri Feb  1 19:42:16 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=f21148ab

app-editors/vim-qt: we need flag-o-matic after all

---
 app-editors/vim-qt/vim-qt-9999.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index 6b08006..56867eb 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 PYTHON_COMPAT=( python{2_5,2_6,2_7} )
 PYTHON_REQ_USE="threads"
-inherit eutils fdo-mime python-any-r1
+inherit eutils fdo-mime flag-o-matic python-any-r1
 
 DESCRIPTION="Qt GUI version of the Vim text editor"
 HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-07-14 10:32 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2013-07-14 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     56aad1b935963479d35a8bdfcd9e2bf5d79eac6f
Author:     Ben de Groot <yngwin <AT> gmail <DOT> com>
AuthorDate: Sun Jul 14 10:31:51 2013 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 10:31:51 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=56aad1b9

app-editors/vim-qt: add lua support, update perl requirement

---
 app-editors/vim-qt/vim-qt-9999.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index 7437c3e..5c6fe8c 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -24,7 +24,7 @@ fi
 
 LICENSE="vim"
 SLOT="0"
-IUSE="acl cscope debug gpm nls perl python ruby"
+IUSE="acl cscope debug gpm lua nls perl python ruby"
 
 RDEPEND="app-admin/eselect-vi
 	>=app-editors/vim-core-7.3.762[acl?]
@@ -34,8 +34,9 @@ RDEPEND="app-admin/eselect-vi
 	acl? ( kernel_linux? ( sys-apps/acl ) )
 	cscope? ( dev-util/cscope )
 	gpm? ( sys-libs/gpm )
+	lua? ( dev-lang/lua )
 	nls? ( virtual/libintl )
-	perl? ( dev-lang/perl )
+	perl? ( >=dev-lang/perl-5.16.0 )
 	python? ( ${PYTHON_DEPS} )
 	ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
 DEPEND="${RDEPEND}"
@@ -52,6 +53,7 @@ src_configure() {
 	myconf+=" $(use_enable acl)"
 	myconf+=" $(use_enable gpm)"
 	myconf+=" $(use_enable nls)"
+	myconf+=" $(use_enable lua luainterp)"
 	myconf+=" $(use_enable perl perlinterp)"
 	myconf+=" $(use_enable python pythoninterp)"
 	myconf+=" $(use_enable ruby rubyinterp)"


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-07-14 11:08 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2013-07-14 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     b3525532ab9bda3d8689346a2783fbc7c31333dd
Author:     Ben de Groot <yngwin <AT> gmail <DOT> com>
AuthorDate: Sun Jul 14 11:08:30 2013 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 11:08:30 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=b3525532

app-editors/vim-qt: make sure live ebuild has higher version number

---
 app-editors/vim-qt/vim-qt-99999999.ebuild | 80 +++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
new file mode 100644
index 0000000..5c6fe8c
--- /dev/null
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+PYTHON_REQ_USE="threads"
+inherit eutils fdo-mime flag-o-matic python-any-r1
+
+DESCRIPTION="Qt GUI version of the Vim text editor"
+HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-2
+	EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
+		git://github.com/equalsraf/${PN}.git
+		git://gitorious.org/${PN}/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-package-${PV}"
+fi
+
+LICENSE="vim"
+SLOT="0"
+IUSE="acl cscope debug gpm lua nls perl python ruby"
+
+RDEPEND="app-admin/eselect-vi
+	>=app-editors/vim-core-7.3.762[acl?]
+	sys-libs/ncurses
+	>=dev-qt/qtcore-4.7.0:4
+	>=dev-qt/qtgui-4.7.0:4
+	acl? ( kernel_linux? ( sys-apps/acl ) )
+	cscope? ( dev-util/cscope )
+	gpm? ( sys-libs/gpm )
+	lua? ( dev-lang/lua )
+	nls? ( virtual/libintl )
+	perl? ( >=dev-lang/perl-5.16.0 )
+	python? ( ${PYTHON_DEPS} )
+	ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+	export LC_COLLATE="C" # prevent locale brokenness bug #82186
+	use python && python-any-r1_pkg_setup
+}
+
+src_configure() {
+	use debug && append-flags "-DDEBUG"
+
+	local myconf="--with-features=huge --enable-multibyte"
+	myconf+=" $(use_enable acl)"
+	myconf+=" $(use_enable gpm)"
+	myconf+=" $(use_enable nls)"
+	myconf+=" $(use_enable lua luainterp)"
+	myconf+=" $(use_enable perl perlinterp)"
+	myconf+=" $(use_enable python pythoninterp)"
+	myconf+=" $(use_enable ruby rubyinterp)"
+	myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
+
+	if ! use cscope ; then
+		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || die 'sed failed'
+	fi
+	econf ${myconf}
+}
+
+src_install() {
+	dobin src/qvim
+	doicon -s 64 src/qt/icons/vim-qt.png
+	make_desktop_entry qvim Vim-qt vim-qt "Qt;TextEditor;Development;"
+}
+
+pkg_postinst() {
+	fdo-mime_mime_database_update
+}
+
+pkg_postrm() {
+	fdo-mime_mime_database_update
+}


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2013-08-08 10:53 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2013-08-08 10:53 UTC (permalink / raw
  To: gentoo-commits

commit:     dfa678c69fa0f7961dbfd5b220c65847c04e2d68
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  8 10:49:49 2013 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Aug  8 10:49:49 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=dfa678c6

[app-editors/vim-qt] Remove support for deprecated python versions.

Package-Manager: portage-2.1.13.6

---
 app-editors/vim-qt/vim-qt-9999.ebuild     | 2 +-
 app-editors/vim-qt/vim-qt-99999999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index 5c6fe8c..6f50efe 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+PYTHON_COMPAT=( python{2_6,2_7} )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic python-any-r1
 

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index 5c6fe8c..6f50efe 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+PYTHON_COMPAT=( python{2_6,2_7} )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic python-any-r1
 


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-06-10  7:58 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2014-06-10  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     32d4c83ab09ed0b1cab5af3d8d76e9c8a2d2071f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 10 07:56:24 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Jun 10 07:56:29 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=32d4c83a

[app-editors/vim-qt] Remove Python 2.6 support.

Package-Manager: portage-2.2.10

---
 app-editors/vim-qt/vim-qt-9999.ebuild     | 2 +-
 app-editors/vim-qt/vim-qt-99999999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
index d6c2652..d6c1c61 100644
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ b/app-editors/vim-qt/vim-qt-9999.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic python-any-r1
 

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index d6c2652..d6c1c61 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic python-any-r1
 


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-10-19 22:30 Davide Pesavento
  0 siblings, 0 replies; 20+ messages in thread
From: Davide Pesavento @ 2014-10-19 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e8e68f95b860269bcac7e8ff71f0ec1d1f82f0bf
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 19 22:28:33 2014 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Sun Oct 19 22:28:33 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=e8e68f95

[app-editors/vim-qt] Delete redundant ebuild.

Package-Manager: portage-2.2.14_rc1

---
 app-editors/vim-qt/vim-qt-9999.ebuild | 80 -----------------------------------
 1 file changed, 80 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild
deleted file mode 100644
index d6c1c61..0000000
--- a/app-editors/vim-qt/vim-qt-9999.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="threads"
-inherit eutils fdo-mime flag-o-matic python-any-r1
-
-DESCRIPTION="Qt GUI version of the Vim text editor"
-HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-2
-	EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
-		git://github.com/equalsraf/${PN}.git
-		git://gitorious.org/${PN}/${PN}.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-package-${PV}"
-fi
-
-LICENSE="vim"
-SLOT="0"
-IUSE="acl cscope debug gpm lua nls perl python ruby"
-
-RDEPEND="app-admin/eselect-vi
-	>=app-editors/vim-core-7.3.762[acl?]
-	sys-libs/ncurses
-	>=dev-qt/qtcore-4.7.0:4
-	>=dev-qt/qtgui-4.7.0:4
-	acl? ( kernel_linux? ( sys-apps/acl ) )
-	cscope? ( dev-util/cscope )
-	gpm? ( sys-libs/gpm )
-	lua? ( dev-lang/lua )
-	nls? ( virtual/libintl )
-	perl? ( >=dev-lang/perl-5.16.0 )
-	python? ( ${PYTHON_DEPS} )
-	ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
-	export LC_COLLATE="C" # prevent locale brokenness bug #82186
-	use python && python-any-r1_pkg_setup
-}
-
-src_configure() {
-	use debug && append-flags "-DDEBUG"
-
-	local myconf="--with-features=huge --enable-multibyte"
-	myconf+=" $(use_enable acl)"
-	myconf+=" $(use_enable gpm)"
-	myconf+=" $(use_enable nls)"
-	myconf+=" $(use_enable lua luainterp)"
-	myconf+=" $(use_enable perl perlinterp)"
-	myconf+=" $(use_enable python pythoninterp)"
-	myconf+=" $(use_enable ruby rubyinterp)"
-	myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
-
-	if ! use cscope ; then
-		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || die 'sed failed'
-	fi
-	econf ${myconf}
-}
-
-src_install() {
-	dobin src/qvim
-	doicon -s 64 src/qt/icons/vim-qt.png
-	make_desktop_entry qvim Vim-qt vim-qt "Qt;TextEditor;Development;"
-}
-
-pkg_postinst() {
-	fdo-mime_mime_database_update
-}
-
-pkg_postrm() {
-	fdo-mime_mime_database_update
-}


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-10-25  2:24 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2014-10-25  2:24 UTC (permalink / raw
  To: gentoo-commits

commit:     e20abcf379e40d729d2d6a84ba329d86afe964fa
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 02:23:56 2014 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 02:23:56 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=e20abcf3

app-editors/vim-qt: sync with in tree changes

---
 app-editors/vim-qt/vim-qt-99999999.ebuild | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index d6c1c61..fe30111 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -3,9 +3,9 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_6,2_7} )
 PYTHON_REQ_USE="threads"
-inherit eutils fdo-mime flag-o-matic python-any-r1
+inherit eutils fdo-mime flag-o-matic python-single-r1
 
 DESCRIPTION="Qt GUI version of the Vim text editor"
 HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
@@ -24,26 +24,32 @@ fi
 
 LICENSE="vim"
 SLOT="0"
-IUSE="acl cscope debug gpm lua nls perl python ruby"
+IUSE="acl cscope debug gpm lua luajit nls perl python ruby"
 
 RDEPEND="app-admin/eselect-vi
-	>=app-editors/vim-core-7.3.762[acl?]
+	>=app-editors/vim-core-7.4.417[acl?]
 	sys-libs/ncurses
 	>=dev-qt/qtcore-4.7.0:4
 	>=dev-qt/qtgui-4.7.0:4
 	acl? ( kernel_linux? ( sys-apps/acl ) )
 	cscope? ( dev-util/cscope )
 	gpm? ( sys-libs/gpm )
-	lua? ( dev-lang/lua )
+	lua? ( luajit? ( dev-lang/luajit )
+		!luajit? ( dev-lang/lua ) )
 	nls? ( virtual/libintl )
 	perl? ( >=dev-lang/perl-5.16.0 )
 	python? ( ${PYTHON_DEPS} )
-	ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
-DEPEND="${RDEPEND}"
+	ruby? ( || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 ) )"
+DEPEND="${RDEPEND}
+	dev-util/ctags
+	sys-devel/autoconf
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 pkg_setup() {
 	export LC_COLLATE="C" # prevent locale brokenness bug #82186
-	use python && python-any-r1_pkg_setup
+	use python && python-single-r1_pkg_setup
 }
 
 src_configure() {
@@ -54,6 +60,7 @@ src_configure() {
 	myconf+=" $(use_enable gpm)"
 	myconf+=" $(use_enable nls)"
 	myconf+=" $(use_enable lua luainterp)"
+	myconf+=" $(use_with luajit)"
 	myconf+=" $(use_enable perl perlinterp)"
 	myconf+=" $(use_enable python pythoninterp)"
 	myconf+=" $(use_enable ruby rubyinterp)"


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-10-25 17:15 Davide Pesavento
  0 siblings, 0 replies; 20+ messages in thread
From: Davide Pesavento @ 2014-10-25 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     1ba88fff8eaae466d3161f3b22aca51ca527bc3a
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 17:15:14 2014 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 17:15:14 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=1ba88fff

[app-editors/vim-qt] Re-remove python2_6; switch to git-r3; sync metadata.

Package-Manager: portage-2.2.14

---
 app-editors/vim-qt/metadata.xml           |  3 +++
 app-editors/vim-qt/vim-qt-99999999.ebuild | 12 +++++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/app-editors/vim-qt/metadata.xml b/app-editors/vim-qt/metadata.xml
index 3cbebd8..1cca617 100644
--- a/app-editors/vim-qt/metadata.xml
+++ b/app-editors/vim-qt/metadata.xml
@@ -2,4 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
   <herd>qt</herd>
+  <use>
+    <flag name='luajit'>Use <pkg>dev-lang/luajit</pkg> instead of <pkg>dev-lang/lua</pkg></flag>
+  </use>
 </pkgmetadata>

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index fe30111..f510276 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic python-single-r1
 
@@ -11,10 +11,12 @@ DESCRIPTION="Qt GUI version of the Vim text editor"
 HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
 
 if [[ ${PV} == *9999* ]]; then
-	inherit git-2
-	EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
-		git://github.com/equalsraf/${PN}.git
-		git://gitorious.org/${PN}/${PN}.git"
+	inherit git-r3
+	EGIT_REPO_URI=(
+		"https://bitbucket.org/equalsraf/${PN}.git"
+		"https://github.com/equalsraf/${PN}.git"
+		"git://gitorious.org/${PN}/${PN}.git"
+	)
 	KEYWORDS=""
 else
 	SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-11-16  1:12 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2014-11-16  1:12 UTC (permalink / raw
  To: gentoo-commits

commit:     aae7da0d24adf19d9685017360fb97922217fbe0
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 16 01:12:29 2014 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sun Nov 16 01:12:29 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=aae7da0d

[app-editors/vim-qt] drop gpm, add system vimrc

---
 app-editors/vim-qt/vim-qt-99999999.ebuild | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index d2e5597..be64047 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -26,7 +26,7 @@ fi
 
 LICENSE="vim"
 SLOT="0"
-IUSE="acl cscope debug gpm lua luajit nls perl python racket ruby"
+IUSE="acl cscope debug lua luajit nls perl python racket ruby"
 
 REQUIRED_USE="luajit? ( lua )
 	python? ( ${PYTHON_REQUIRED_USE} )"
@@ -38,7 +38,6 @@ RDEPEND="app-admin/eselect-vi
 	>=dev-qt/qtgui-4.7.0:4
 	acl? ( kernel_linux? ( sys-apps/acl ) )
 	cscope? ( dev-util/cscope )
-	gpm? ( sys-libs/gpm )
 	lua? ( luajit? ( dev-lang/luajit )
 		!luajit? ( dev-lang/lua[deprecated] ) )
 	nls? ( virtual/libintl )
@@ -53,10 +52,15 @@ DEPEND="${RDEPEND}
 	nls? ( sys-devel/gettext )"
 
 pkg_setup() {
-	export LC_COLLATE="C" # prevent locale brokenness bug #82186
+	export LC_COLLATE="C" # prevent locale brokenness
 	use python && python-single-r1_pkg_setup
 }
 
+src_prepare() {
+	# Read vimrc from /etc/vim/
+	echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> "${S}"/src/feature.h
+}
+
 src_configure() {
 	use debug && append-flags "-DDEBUG"
 


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-11-20  3:19 Davide Pesavento
  0 siblings, 0 replies; 20+ messages in thread
From: Davide Pesavento @ 2014-11-20  3:19 UTC (permalink / raw
  To: gentoo-commits

commit:     6009196b7679b24a8792464b644b22f79eb278ca
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 20 03:19:37 2014 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Thu Nov 20 03:19:37 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=6009196b

[app-editors/vim-qt] Sync metadata.

Package-Manager: portage-2.2.14

---
 app-editors/vim-qt/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-editors/vim-qt/metadata.xml b/app-editors/vim-qt/metadata.xml
index 1cca617..f9d6c82 100644
--- a/app-editors/vim-qt/metadata.xml
+++ b/app-editors/vim-qt/metadata.xml
@@ -4,5 +4,6 @@
   <herd>qt</herd>
   <use>
     <flag name='luajit'>Use <pkg>dev-lang/luajit</pkg> instead of <pkg>dev-lang/lua</pkg></flag>
+    <flag name='racket'>Enable support for Scheme using <pkg>dev-lang/racket</pkg></flag>
   </use>
 </pkgmetadata>


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2014-11-24 12:54 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2014-11-24 12:54 UTC (permalink / raw
  To: gentoo-commits

commit:     13966b72927615889b002f20270d8679adb97d90
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 24 12:54:37 2014 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Mon Nov 24 12:54:37 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=13966b72

[app-editors/vim-qt] sync with gx86

---
 app-editors/vim-qt/vim-qt-99999999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index be64047..bfca3eb 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/vim-qt-20140827-r2.ebuild,v 1.1 2014/11/24 12:51:50 yngwin Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 PYTHON_REQ_USE="threads"
 inherit eutils fdo-mime flag-o-matic prefix python-single-r1
 
@@ -31,7 +31,7 @@ IUSE="acl cscope debug lua luajit nls perl python racket ruby"
 REQUIRED_USE="luajit? ( lua )
 	python? ( ${PYTHON_REQUIRED_USE} )"
 
-RDEPEND="app-admin/eselect-vi
+RDEPEND=">=app-admin/eselect-vi-1.1.8
 	>=app-editors/vim-core-7.4.417[acl?]
 	sys-libs/ncurses
 	>=dev-qt/qtcore-4.7.0:4


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2015-01-04 11:24 Ben de Groot
  0 siblings, 0 replies; 20+ messages in thread
From: Ben de Groot @ 2015-01-04 11:24 UTC (permalink / raw
  To: gentoo-commits

commit:     8e68131e817e18948293d4087b18cbc1f3e09ac3
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  4 11:24:11 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sun Jan  4 11:24:11 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=8e68131e

app-editors/vim-qt: update vim dependency version

---
 app-editors/vim-qt/vim-qt-99999999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index bfca3eb..2bc5fe9 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -32,7 +32,7 @@ REQUIRED_USE="luajit? ( lua )
 	python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND=">=app-admin/eselect-vi-1.1.8
-	>=app-editors/vim-core-7.4.417[acl?]
+	>=app-editors/vim-core-7.4.560[acl?]
 	sys-libs/ncurses
 	>=dev-qt/qtcore-4.7.0:4
 	>=dev-qt/qtgui-4.7.0:4


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2015-04-17 23:25 Davide Pesavento
  0 siblings, 0 replies; 20+ messages in thread
From: Davide Pesavento @ 2015-04-17 23:25 UTC (permalink / raw
  To: gentoo-commits

commit:     9c43d60fbaf28580224c75d0fb2f7782f37a3613
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 17 23:25:26 2015 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Fri Apr 17 23:25:26 2015 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=9c43d60f

[app-editors/vim-qt] Sync.

Package-Manager: portage-2.2.18

 app-editors/vim-qt/vim-qt-99999999.ebuild | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index ea64180..3ef357a 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -1,10 +1,11 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/vim-qt-20140827-r2.ebuild,v 1.1 2014/11/24 12:51:50 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild,v 1.3 2015/04/17 23:23:53 pesa Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 PYTHON_REQ_USE="threads"
+
 inherit eutils fdo-mime flag-o-matic prefix python-single-r1
 
 DESCRIPTION="Qt GUI version of the Vim text editor"
@@ -15,13 +16,12 @@ if [[ ${PV} == *9999* ]]; then
 	EGIT_REPO_URI=(
 		"https://bitbucket.org/equalsraf/${PN}.git"
 		"https://github.com/equalsraf/${PN}.git"
-		"git://gitorious.org/${PN}/${PN}.git"
 	)
 	KEYWORDS=""
 else
 	SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-package-${PV}"
+	S=${WORKDIR}/${PN}-package-${PV}
 fi
 
 LICENSE="vim"
@@ -31,11 +31,12 @@ IUSE="acl cscope debug lua luajit nls perl python racket ruby"
 REQUIRED_USE="luajit? ( lua )
 	python? ( ${PYTHON_REQUIRED_USE} )"
 
-RDEPEND=">=app-admin/eselect-vi-1.1.8
+RDEPEND="
 	>=app-editors/vim-core-7.4.560[acl?]
-	sys-libs/ncurses
+	>=app-eselect/eselect-vi-1.1.8
 	>=dev-qt/qtcore-4.7.0:4
 	>=dev-qt/qtgui-4.7.0:4
+	sys-libs/ncurses
 	acl? ( kernel_linux? ( sys-apps/acl ) )
 	cscope? ( dev-util/cscope )
 	lua? ( luajit? ( dev-lang/luajit )


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2015-09-27 19:02 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2015-09-27 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     5c283001876385eaf97611c274b43d1c147276a9
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 27 19:01:34 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 19:01:34 2015 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=5c283001

app-editors/vim: set sys-libs/ncurses SLOT

Package-Manager: portage-2.2.20.1

 app-editors/vim-qt/vim-qt-99999999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index e2d31b2..cb3aa25 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -36,7 +36,7 @@ RDEPEND="
 	>=app-eselect/eselect-vi-1.1.8
 	>=dev-qt/qtcore-4.7.0:4
 	>=dev-qt/qtgui-4.7.0:4
-	sys-libs/ncurses
+	sys-libs/ncurses:0
 	acl? ( kernel_linux? ( sys-apps/acl ) )
 	cscope? ( dev-util/cscope )
 	lua? ( luajit? ( dev-lang/luajit )


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2016-02-09 17:47 Davide Pesavento
  0 siblings, 0 replies; 20+ messages in thread
From: Davide Pesavento @ 2016-02-09 17:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f285d0381e2ab9b9201e8bc9da9163e104dfe8ea
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 17:36:13 2016 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 17:36:13 2016 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=f285d038

app-editors/vim-qt: drop unsatisfiable SLOT in ruby dep

Package-Manager: portage-2.2.27

 app-editors/vim-qt/vim-qt-99999999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index cb3aa25..7443cd1 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -42,10 +42,10 @@ RDEPEND="
 	lua? ( luajit? ( dev-lang/luajit )
 		!luajit? ( dev-lang/lua[deprecated] ) )
 	nls? ( virtual/libintl )
-	perl? ( dev-lang/perl )
+	perl? ( dev-lang/perl:= )
 	python? ( ${PYTHON_DEPS} )
 	racket? ( dev-scheme/racket )
-	ruby? ( || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 ) )"
+	ruby? ( dev-lang/ruby:2.0 )"
 DEPEND="${RDEPEND}
 	dev-util/ctags
 	sys-devel/autoconf


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

* [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/
@ 2016-10-28 19:22 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2016-10-28 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     ca1b4b22916f52b3d19a0262d6b99cc43f775bc8
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 19:20:57 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 19:21:58 2016 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=ca1b4b22

app-editors/vim-qt: EAPI 6

Package-Manager: portage-2.3.2

 app-editors/vim-qt/vim-qt-99999999.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-editors/vim-qt/vim-qt-99999999.ebuild b/app-editors/vim-qt/vim-qt-99999999.ebuild
index 7443cd1..a4ecc62 100644
--- a/app-editors/vim-qt/vim-qt-99999999.ebuild
+++ b/app-editors/vim-qt/vim-qt-99999999.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 PYTHON_REQ_USE="threads"
 
@@ -58,6 +58,7 @@ pkg_setup() {
 }
 
 src_prepare() {
+	default
 	# Read vimrc from /etc/vim/
 	echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> "${S}"/src/feature.h
 }


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

end of thread, other threads:[~2016-10-28 19:22 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-09 17:47 [gentoo-commits] proj/qt:master commit in: app-editors/vim-qt/ Davide Pesavento
  -- strict thread matches above, loose matches on Subject: below --
2016-10-28 19:22 Michael Palimaka
2015-09-27 19:02 Michael Palimaka
2015-04-17 23:25 Davide Pesavento
2015-01-04 11:24 Ben de Groot
2014-11-24 12:54 Ben de Groot
2014-11-20  3:19 Davide Pesavento
2014-11-16  1:12 Ben de Groot
2014-10-25 17:15 Davide Pesavento
2014-10-25  2:24 Ben de Groot
2014-10-19 22:30 Davide Pesavento
2014-06-10  7:58 Michael Palimaka
2013-08-08 10:53 Michael Palimaka
2013-07-14 11:08 Ben de Groot
2013-07-14 10:32 Ben de Groot
2013-02-01 19:42 Ben de Groot
2013-02-01 19:15 Ben de Groot
2013-02-01 16:37 Ben de Groot
2012-07-04 11:43 Johannes Huber
2012-07-04 11:42 Johannes Huber

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