public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-vcs/tig: ChangeLog tig-1.2.1.ebuild
@ 2013-08-26  5:05 Tim Harder (radhermit)
  0 siblings, 0 replies; 2+ messages in thread
From: Tim Harder (radhermit) @ 2013-08-26  5:05 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/08/26 05:05:14

  Modified:             ChangeLog
  Added:                tig-1.2.1.ebuild
  Log:
  Version bump (bug #482406).
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.23                 dev-vcs/tig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	10 Aug 2013 19:07:01 -0000	1.22
+++ ChangeLog	26 Aug 2013 05:05:14 -0000	1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-vcs/tig
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.22 2013/08/10 19:07:01 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.23 2013/08/26 05:05:14 radhermit Exp $
+
+*tig-1.2.1 (26 Aug 2013)
+
+  26 Aug 2013; Tim Harder <radhermit@gentoo.org> +tig-1.2.1.ebuild:
+  Version bump (bug #482406).
 
 *tig-1.2 (10 Aug 2013)
 



1.1                  dev-vcs/tig/tig-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild?rev=1.1&content-type=text/plain

Index: tig-1.2.1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild,v 1.1 2013/08/26 05:05:14 radhermit Exp $

EAPI=5

inherit bash-completion-r1 toolchain-funcs

DESCRIPTION="Tig: text mode interface for git"
HOMEPAGE="http://jonas.nitro.dk/tig/"
SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"

CDEPEND="sys-libs/ncurses"
DEPEND="${CDEPEND}
	virtual/pkgconfig"
RDEPEND="${CDEPEND}
	dev-vcs/git"

src_prepare() {
	# pre-generated manpages are in the root directory
	sed -i '/^MANDOC/s#doc/##g' Makefile || die
}

src_configure() {
	econf CURSES_LIB="$($(tc-getPKG_CONFIG) --libs ncursesw)"
}

src_install() {
	emake DESTDIR="${D}" install install-doc-man
	dodoc BUGS NEWS
	dohtml manual.html README.html
	newbashcomp contrib/tig-completion.bash ${PN}
}





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

* [gentoo-commits] gentoo-x86 commit in dev-vcs/tig: ChangeLog tig-1.2.1.ebuild
@ 2013-08-26  5:14 Tim Harder (radhermit)
  0 siblings, 0 replies; 2+ messages in thread
From: Tim Harder (radhermit) @ 2013-08-26  5:14 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/08/26 05:14:59

  Modified:             ChangeLog tig-1.2.1.ebuild
  Log:
  Fix version set wrong in tarball.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.24                 dev-vcs/tig/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	26 Aug 2013 05:05:14 -0000	1.23
+++ ChangeLog	26 Aug 2013 05:14:59 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-vcs/tig
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.23 2013/08/26 05:05:14 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.24 2013/08/26 05:14:59 radhermit Exp $
+
+  26 Aug 2013; Tim Harder <radhermit@gentoo.org> tig-1.2.1.ebuild:
+  Fix version set wrong in tarball.
 
 *tig-1.2.1 (26 Aug 2013)
 



1.2                  dev-vcs/tig/tig-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild?r1=1.1&r2=1.2

Index: tig-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tig-1.2.1.ebuild	26 Aug 2013 05:05:14 -0000	1.1
+++ tig-1.2.1.ebuild	26 Aug 2013 05:14:59 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild,v 1.1 2013/08/26 05:05:14 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.2.1.ebuild,v 1.2 2013/08/26 05:14:59 radhermit Exp $
 
 EAPI=5
 
@@ -29,6 +29,11 @@
 	econf CURSES_LIB="$($(tc-getPKG_CONFIG) --libs ncursesw)"
 }
 
+src_compile() {
+	# fix version set wrong in tarball
+	emake VERSION=${PV}
+}
+
 src_install() {
 	emake DESTDIR="${D}" install install-doc-man
 	dodoc BUGS NEWS





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

end of thread, other threads:[~2013-08-26  5:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-26  5:05 [gentoo-commits] gentoo-x86 commit in dev-vcs/tig: ChangeLog tig-1.2.1.ebuild Tim Harder (radhermit)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-26  5:14 Tim Harder (radhermit)

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