public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/vim-qt: vim-qt-20150102.ebuild ChangeLog
@ 2015-01-05 11:45 Ben de Groot (yngwin)
  0 siblings, 0 replies; 2+ messages in thread
From: Ben de Groot (yngwin) @ 2015-01-05 11:45 UTC (permalink / raw
  To: gentoo-commits

yngwin      15/01/05 11:45:50

  Modified:             ChangeLog
  Added:                vim-qt-20150102.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x0F9C590B7FF324F6!)

Revision  Changes    Path
1.11                 app-editors/vim-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	24 Nov 2014 12:51:50 -0000	1.10
+++ ChangeLog	5 Jan 2015 11:45:50 -0000	1.11
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/vim-qt
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v 1.10 2014/11/24 12:51:50 yngwin Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v 1.11 2015/01/05 11:45:50 yngwin Exp $
+
+*vim-qt-20150102 (05 Jan 2015)
+
+  05 Jan 2015; Ben de Groot <yngwin@gentoo.org> +vim-qt-20150102.ebuild:
+  version bump
 
 *vim-qt-20140827-r2 (24 Nov 2014)
 



1.1                  app-editors/vim-qt/vim-qt-20150102.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild?rev=1.1&content-type=text/plain

Index: vim-qt-20150102.ebuild
===================================================================
# 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-20150102.ebuild,v 1.1 2015/01/05 11:45:50 yngwin 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"
HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"

if [[ ${PV} == *9999* ]]; then
	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"
	KEYWORDS="~amd64 ~x86"
	S="${WORKDIR}/${PN}-package-${PV}"
fi

LICENSE="vim"
SLOT="0"
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
	>=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
	acl? ( kernel_linux? ( sys-apps/acl ) )
	cscope? ( dev-util/cscope )
	lua? ( luajit? ( dev-lang/luajit )
		!luajit? ( dev-lang/lua[deprecated] ) )
	nls? ( virtual/libintl )
	perl? ( dev-lang/perl )
	python? ( ${PYTHON_DEPS} )
	racket? ( dev-scheme/racket )
	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 )"

pkg_setup() {
	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"

	local myconf="--with-features=huge --disable-gpm --enable-multibyte"
	myconf+=" $(use_enable acl)"
	myconf+=" $(use_enable cscope)"
	myconf+=" $(use_enable nls)"
	myconf+=" $(use_enable lua luainterp)"
	myconf+=" $(use_with luajit)"
	myconf+=" $(use_enable perl perlinterp)"
	myconf+=" $(use_enable racket mzschemeinterp)"
	myconf+=" $(use_enable ruby rubyinterp)"

	if ! use cscope ; then
		sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || die 'sed failed'
	fi

	# keep prefix env contained within the EPREFIX
	use prefix && myconf+=" --without-local-dir"

	if use python ; then
		if [[ ${EPYTHON} == python3* ]] ; then
			myconf+=" --enable-python3interp"
			export vi_cv_path_python3="${PYTHON}"
		else
			myconf+=" --enable-pythoninterp"
			export vi_cv_path_python="${PYTHON}"
		fi
	else
		myconf+=" --disable-pythoninterp --disable-python3interp"
	fi

	econf ${myconf} --enable-gui=qt --with-vim-name=qvim --with-modified-by=Gentoo-${PVR}
}

src_install() {
	dobin src/qvim
	dosym qvim /usr/bin/qvimdiff

	dodir /usr/share/man/man1
	echo ".so vim.1" > "${ED}"/usr/share/man/man1/qvim.1
	echo ".so vimdiff.1" > "${ED}"/usr/share/man/man1/qvimdiff.1

	# track https://bitbucket.org/equalsraf/vim-qt/issue/93/include-desktop-file-in-source
	# for inclusion of desktop file
	newmenu "${FILESDIR}"/vim-qt.desktop vim-qt.desktop
	doicon -s 64 src/qt/icons/vim-qt.png
}

pkg_postinst() {
	fdo-mime_mime_database_update
}

pkg_postrm() {
	fdo-mime_mime_database_update
}





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

* [gentoo-commits] gentoo-x86 commit in app-editors/vim-qt: vim-qt-20150102.ebuild ChangeLog
@ 2015-04-17 23:23 Davide Pesavento (pesa)
  0 siblings, 0 replies; 2+ messages in thread
From: Davide Pesavento (pesa) @ 2015-04-17 23:23 UTC (permalink / raw
  To: gentoo-commits

pesa        15/04/17 23:23:53

  Modified:             vim-qt-20150102.ebuild ChangeLog
  Log:
  Drop gitorious mirror. Sort deps.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)

Revision  Changes    Path
1.3                  app-editors/vim-qt/vim-qt-20150102.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild?r1=1.2&r2=1.3

Index: vim-qt-20150102.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim-qt/vim-qt-20150102.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vim-qt-20150102.ebuild	31 Mar 2015 17:34:46 -0000	1.2
+++ vim-qt-20150102.ebuild	17 Apr 2015 23:23:53 -0000	1.3
@@ -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-20150102.ebuild,v 1.2 2015/03/31 17:34:46 ulm 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 @@
 	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 @@
 REQUIRED_USE="luajit? ( lua )
 	python? ( ${PYTHON_REQUIRED_USE} )"
 
-RDEPEND=">=app-eselect/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 )



1.13                 app-editors/vim-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vim-qt/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	31 Mar 2015 17:34:46 -0000	1.12
+++ ChangeLog	17 Apr 2015 23:23:53 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/vim-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v 1.12 2015/03/31 17:34:46 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/ChangeLog,v 1.13 2015/04/17 23:23:53 pesa Exp $
+
+  17 Apr 2015; Davide Pesavento <pesa@gentoo.org> vim-qt-20150102.ebuild:
+  Drop gitorious mirror. Sort deps.
 
   31 Mar 2015; Ulrich Müller <ulm@gentoo.org> vim-qt-20140827-r2.ebuild,
   vim-qt-20150102.ebuild:





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

end of thread, other threads:[~2015-04-17 23:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-17 23:23 [gentoo-commits] gentoo-x86 commit in app-editors/vim-qt: vim-qt-20150102.ebuild ChangeLog Davide Pesavento (pesa)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-05 11:45 Ben de Groot (yngwin)

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