public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/tea: metadata.xml tea-36.0.1.ebuild ChangeLog
@ 2013-06-24 16:47 Michael Palimaka (kensington)
  0 siblings, 0 replies; only message in thread
From: Michael Palimaka (kensington) @ 2013-06-24 16:47 UTC (permalink / raw
  To: gentoo-commits

kensington    13/06/24 16:47:38

  Modified:             metadata.xml ChangeLog
  Added:                tea-36.0.1.ebuild
  Log:
  Version bump. Update upstream metadata.
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)

Revision  Changes    Path
1.8                  app-editors/tea/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/metadata.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/metadata.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/metadata.xml?r1=1.7&r2=1.8

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml	3 Aug 2012 15:05:12 -0000	1.7
+++ metadata.xml	24 Jun 2013 16:47:38 -0000	1.8
@@ -11,8 +11,4 @@
     <flag name="aspell">Enable spellchecking using <pkg>app-text/aspell</pkg></flag>
     <flag name="hunspell">Enable spellchecking using <pkg>app-text/hunspell</pkg></flag>
   </use>
-  <upstream>
-    <remote-id type="sourceforge">tea-editor</remote-id>
-    <bugs-to>http://sourceforge.net/p/tea-editor/bugs/</bugs-to>
-  </upstream>
 </pkgmetadata>



1.63                 app-editors/tea/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	2 Mar 2013 19:22:18 -0000	1.62
+++ ChangeLog	24 Jun 2013 16:47:38 -0000	1.63
@@ -1,6 +1,12 @@
 # ChangeLog for app-editors/tea
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.62 2013/03/02 19:22:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.63 2013/06/24 16:47:38 kensington Exp $
+
+*tea-36.0.1 (24 Jun 2013)
+
+  24 Jun 2013; Michael Palimaka <kensington@gentoo.org> +tea-36.0.1.ebuild,
+  metadata.xml:
+  Version bump. Update upstream metadata.
 
   02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> tea-33.3.0.ebuild:
   Move Qt dependencies to the new category



1.1                  app-editors/tea/tea-36.0.1.ebuild

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

Index: tea-36.0.1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-36.0.1.ebuild,v 1.1 2013/06/24 16:47:38 kensington Exp $

EAPI=5
PLOCALES="de fr ru"

inherit eutils l10n qt4-r2

DESCRIPTION="Small, lightweight Qt text editor"
HOMEPAGE="http://semiletov.org/tea/"
SRC_URI="http://semiletov.org/${PN}/dloads/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
IUSE="aspell hunspell"

RDEPEND="
	sys-libs/zlib
	dev-qt/qtcore:4
	dev-qt/qtgui:4
	aspell? ( app-text/aspell )
	hunspell? ( app-text/hunspell )
"
DEPEND="${RDEPEND}
	hunspell? ( virtual/pkgconfig )
"

DOCS=( AUTHORS ChangeLog NEWS TODO )

src_configure() {
	eqmake4 src.pro \
		PREFIX="${EPREFIX}/usr/bin" \
		USE_ASPELL=$(use aspell && echo true || echo false) \
		USE_HUNSPELL=$(use hunspell && echo true || echo false)
}

src_install() {
	qt4-r2_src_install

	newicon icons/tea_icon_v2.png ${PN}.png
	make_desktop_entry ${PN} 'Tea Editor'

	# translations
	insinto /usr/share/qt4/translations
	local lang
	for lang in $(l10n_get_locales); do
		doins translations/${PN}_${lang}.qm
	done

	# docs
	dohtml manuals/en.html
	if use linguas_ru; then
		dodoc NEWS-RU
		dohtml manuals/ru.html
	fi
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-06-24 16:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-24 16:47 [gentoo-commits] gentoo-x86 commit in app-editors/tea: metadata.xml tea-36.0.1.ebuild ChangeLog Michael Palimaka (kensington)

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