public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.32.52.ebuild
@ 2009-12-04 17:33 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-12-04 17:33 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/12/04 17:33:18

  Modified:             ChangeLog
  Added:                unison-2.32.52.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc55/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 net-misc/unison/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	28 Aug 2009 21:59:21 -0000	1.60
+++ ChangeLog	4 Dec 2009 17:33:18 -0000	1.61
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/unison
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.60 2009/08/28 21:59:21 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.61 2009/12/04 17:33:18 flameeyes Exp $
+
+*unison-2.32.52 (04 Dec 2009)
+
+  04 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  +unison-2.32.52.ebuild:
+  Version bump.
 
   28 Aug 2009; Petteri Räty <betelgeuse@gentoo.org>
   unison-2.27.57-r1.ebuild:



1.1                  net-misc/unison/unison-2.32.52.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.1&content-type=text/plain

Index: unison-2.32.52.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v 1.1 2009/12/04 17:33:18 flameeyes Exp $

EAPI="2"

inherit eutils versionator

IUSE="gtk doc static debug threads +ocamlopt"

DESCRIPTION="Two-way cross-platform file synchronizer"
HOMEPAGE="http://www.cis.upenn.edu/~bcpierce/unison/"
LICENSE="GPL-2"
SLOT="$(get_version_component_range 1-2 ${PV})"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"

# ocaml version so we are sure it has ocamlopt use flag
DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
	gtk? ( >=dev-ml/lablgtk-2.2 )"

RDEPEND="gtk? ( >=dev-ml/lablgtk-2.2
	|| ( net-misc/x11-ssh-askpass net-misc/ssh-askpass-fullscreen ) )
	!net-misc/unison:0
	app-admin/eselect-unison"

#PDEPEND="gtk? ( media-fonts/font-schumacher-misc )"

SRC_URI="http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}.tar.gz
	doc? ( http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}-manual.pdf
		http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}-manual.html )"

src_prepare() {
	epatch "${FILESDIR}/${PN}-2.27.57-as-needed.patch"
}

src_compile() {
	local myconf

	if use threads; then
		myconf="$myconf THREADS=true"
	fi

	if use static; then
		myconf="$myconf STATIC=true"
	fi

	if use debug; then
		myconf="$myconf DEBUGGING=true"
	fi

	if use gtk; then
		myconf="$myconf UISTYLE=gtk2"
	else
		myconf="$myconf UISTYLE=text"
	fi

	use ocamlopt || myconf="$myconf NATIVE=false"

	# Discard cflags as it will try to pass them to ocamlc...
	emake $myconf CFLAGS="" buildexecutable || die "error making unsion"
}

src_test() {
	emake selftest ||  die "selftest failed"
}

src_install () {
	# install manually, since it's just too much
	# work to force the Makefile to do the right thing.
	newbin unison unison-${SLOT} || die
	dodoc BUGS.txt CONTRIB INSTALL NEWS \
		  README ROADMAP.txt TODO.txt || die

	if use doc; then
		dohtml "${DISTDIR}/${P}-manual.html" || die
		dodoc "${DISTDIR}/${P}-manual.pdf" || die
	fi
	use ocamlopt || export STRIP_MASK="*/bin/*"
}

pkg_postinst() {
	elog "Unison now uses SLOTs, so you can specify servercmd=/usr/bin/unison-${SLOT}"
	elog "in your profile files to access exactly this version over ssh."
	elog "Or you can use 'eselect unison' to set the version."
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.32.52.ebuild
@ 2010-01-07 16:00 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-07 16:00 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/07 16:00:19

  Modified:             ChangeLog unison-2.32.52.ebuild
  Log:
  Transfer Prefix keywords
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.62                 net-misc/unison/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	4 Dec 2009 17:33:18 -0000	1.61
+++ ChangeLog	7 Jan 2010 16:00:19 -0000	1.62
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/unison
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.61 2009/12/04 17:33:18 flameeyes Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.62 2010/01/07 16:00:19 fauli Exp $
+
+  07 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
+  unison-2.32.52.ebuild:
+  Transfer Prefix keywords
 
 *unison-2.32.52 (04 Dec 2009)
 



1.2                  net-misc/unison/unison-2.32.52.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?r1=1.1&r2=1.2

Index: unison-2.32.52.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unison-2.32.52.ebuild	4 Dec 2009 17:33:18 -0000	1.1
+++ unison-2.32.52.ebuild	7 Jan 2010 16:00:19 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v 1.1 2009/12/04 17:33:18 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v 1.2 2010/01/07 16:00:19 fauli Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://www.cis.upenn.edu/~bcpierce/unison/"
 LICENSE="GPL-2"
 SLOT="$(get_version_component_range 1-2 ${PV})"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 
 # ocaml version so we are sure it has ocamlopt use flag
 DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]






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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.32.52.ebuild
@ 2010-07-18 14:38 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-18 14:38 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/18 14:38:34

  Modified:             ChangeLog unison-2.32.52.ebuild
  Log:
  add etags dependency for tests as described in bug 328493 by Olivier Huber <oli DOT huber AT gmail DOT com>
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.63                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	7 Jan 2010 16:00:19 -0000	1.62
+++ ChangeLog	18 Jul 2010 14:38:34 -0000	1.63
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/unison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.62 2010/01/07 16:00:19 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.63 2010/07/18 14:38:34 fauli Exp $
+
+  18 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
+  unison-2.32.52.ebuild:
+  add etags dependency for tests as described in bug 328493 by Olivier Huber
+  <oli DOT huber AT gmail DOT com>
 
   07 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
   unison-2.32.52.ebuild:



1.3                  net-misc/unison/unison-2.32.52.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild?r1=1.2&r2=1.3

Index: unison-2.32.52.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unison-2.32.52.ebuild	7 Jan 2010 16:00:19 -0000	1.2
+++ unison-2.32.52.ebuild	18 Jul 2010 14:38:34 -0000	1.3
@@ -1,12 +1,12 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v 1.2 2010/01/07 16:00:19 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.32.52.ebuild,v 1.3 2010/07/18 14:38:34 fauli Exp $
 
 EAPI="2"
 
 inherit eutils versionator
 
-IUSE="gtk doc static debug threads +ocamlopt"
+IUSE="gtk doc static debug threads +ocamlopt test"
 
 DESCRIPTION="Two-way cross-platform file synchronizer"
 HOMEPAGE="http://www.cis.upenn.edu/~bcpierce/unison/"
@@ -16,7 +16,8 @@
 
 # ocaml version so we are sure it has ocamlopt use flag
 DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
-	gtk? ( >=dev-ml/lablgtk-2.2 )"
+	gtk? ( >=dev-ml/lablgtk-2.2 )
+	test? ( || ( dev-util/ctags virtual/emacs ) )"
 
 RDEPEND="gtk? ( >=dev-ml/lablgtk-2.2
 	|| ( net-misc/x11-ssh-askpass net-misc/ssh-askpass-fullscreen ) )






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

end of thread, other threads:[~2010-07-18 14:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-04 17:33 [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.32.52.ebuild Diego Petteno (flameeyes)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-07 16:00 Christian Faulhammer (fauli)
2010-07-18 14:38 Christian Faulhammer (fauli)

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