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.27.57-r1.ebuild
@ 2008-04-07 21:35 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2008-04-07 21:35 UTC (permalink / raw
  To: gentoo-commits

aballier    08/04/07 21:35:31

  Modified:             ChangeLog
  Added:                unison-2.27.57-r1.ebuild
  Log:
  Revision bump for slotted version, mainly by Martin von Gagern <Martin.vGagern@gmx.net> in bug #207746 and bug #183019
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.46                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	27 Jan 2008 15:06:14 -0000	1.45
+++ ChangeLog	7 Apr 2008 21:35:31 -0000	1.46
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.45 2008/01/27 15:06:14 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.46 2008/04/07 21:35:31 aballier Exp $
+
+*unison-2.27.57-r1 (07 Apr 2008)
+
+  07 Apr 2008; Alexis Ballier <aballier@gentoo.org>
+  +unison-2.27.57-r1.ebuild:
+  Revision bump for slotted version, mainly by Martin von Gagern
+  <Martin.vGagern@gmx.net> in bug #207746 and bug #183019
 
 *unison-2.27.57 (27 Jan 2008)
 



1.1                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.1 2008/04/07 21:35:31 aballier Exp $

EAPI=1

inherit eutils versionator

IUSE="gtk doc static debug threads"

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"

DEPEND=">=dev-lang/ocaml-3.04
	gtk? ( >=dev-ml/lablgtk-2.2 )"

RDEPEND="gtk? ( >=dev-ml/lablgtk-2.2
|| ( net-misc/x11-ssh-askpass net-misc/gtk2-ssh-askpass ) )
	!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_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${P}-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

	# Discard cflags as it will try to pass them to ocamlc...
	emake -j1 $myconf CFLAGS="" || 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
}


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."
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-04-10 19:36 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2008-04-10 19:36 UTC (permalink / raw
  To: gentoo-commits

maekke      08/04/10 19:36:16

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  add ~x86, bug #207746
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.47                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	7 Apr 2008 21:35:31 -0000	1.46
+++ ChangeLog	10 Apr 2008 19:36:15 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.46 2008/04/07 21:35:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.47 2008/04/10 19:36:15 maekke Exp $
+
+  10 Apr 2008; Markus Meier <maekke@gentoo.org> unison-2.27.57-r1.ebuild:
+  add ~x86, bug #207746
 
 *unison-2.27.57-r1 (07 Apr 2008)
 



1.3                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unison-2.27.57-r1.ebuild	8 Apr 2008 05:29:56 -0000	1.2
+++ unison-2.27.57-r1.ebuild	10 Apr 2008 19:36:15 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.2 2008/04/08 05:29:56 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.3 2008/04/10 19:36:15 maekke Exp $
 
 EAPI=1
 
@@ -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"
+KEYWORDS="~amd64 ~x86"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-04-14 18:12 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2008-04-14 18:12 UTC (permalink / raw
  To: gentoo-commits

armin76     08/04/14 18:12:00

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  Add ~sparc wrt #207746
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.48                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	10 Apr 2008 19:36:15 -0000	1.47
+++ ChangeLog	14 Apr 2008 18:11:59 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.47 2008/04/10 19:36:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.48 2008/04/14 18:11:59 armin76 Exp $
+
+  14 Apr 2008; Raúl Porcel <armin76@gentoo.org> unison-2.27.57-r1.ebuild:
+  Add ~sparc wrt #207746
 
   10 Apr 2008; Markus Meier <maekke@gentoo.org> unison-2.27.57-r1.ebuild:
   add ~x86, bug #207746



1.4                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unison-2.27.57-r1.ebuild	10 Apr 2008 19:36:15 -0000	1.3
+++ unison-2.27.57-r1.ebuild	14 Apr 2008 18:11:59 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.3 2008/04/10 19:36:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.4 2008/04/14 18:11:59 armin76 Exp $
 
 EAPI=1
 
@@ -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 ~x86"
+KEYWORDS="~amd64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-06-13 19:34 Matti Bickel (mabi)
  0 siblings, 0 replies; 9+ messages in thread
From: Matti Bickel (mabi) @ 2008-06-13 19:34 UTC (permalink / raw
  To: gentoo-commits

mabi        08/06/13 19:34:39

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  ~ppc added (bug #207746)
  (Portage version: 2.1.5.2)

Revision  Changes    Path
1.49                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	14 Apr 2008 18:11:59 -0000	1.48
+++ ChangeLog	13 Jun 2008 19:34:39 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.48 2008/04/14 18:11:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.49 2008/06/13 19:34:39 mabi Exp $
+
+  13 Jun 2008; Matti Bickel <mabi@gentoo.org> unison-2.27.57-r1.ebuild:
+  ~ppc added (bug #207746)
 
   14 Apr 2008; Raúl Porcel <armin76@gentoo.org> unison-2.27.57-r1.ebuild:
   Add ~sparc wrt #207746



1.5                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unison-2.27.57-r1.ebuild	14 Apr 2008 18:11:59 -0000	1.4
+++ unison-2.27.57-r1.ebuild	13 Jun 2008 19:34:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.4 2008/04/14 18:11:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.5 2008/06/13 19:34:39 mabi Exp $
 
 EAPI=1
 
@@ -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 ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-06-24 21:59 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-24 21:59 UTC (permalink / raw
  To: gentoo-commits

opfer       08/06/24 21:59:21

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  stable x86, bug 229187
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.54                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	24 Jun 2008 09:02:56 -0000	1.53
+++ ChangeLog	24 Jun 2008 21:59:20 -0000	1.54
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.53 2008/06/24 09:02:56 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.54 2008/06/24 21:59:20 opfer Exp $
+
+  24 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
+  unison-2.27.57-r1.ebuild:
+  stable x86, bug 229187
 
   24 Jun 2008; Alexis Ballier <aballier@gentoo.org>
   unison-2.13.16-r1.ebuild, unison-2.27.57-r1.ebuild:



1.7                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- unison-2.27.57-r1.ebuild	24 Jun 2008 09:02:56 -0000	1.6
+++ unison-2.27.57-r1.ebuild	24 Jun 2008 21:59:20 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.6 2008/06/24 09:02:56 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.7 2008/06/24 21:59:20 opfer Exp $
 
 EAPI=1
 
@@ -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"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-06-25 19:53 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 9+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-06-25 19:53 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/06/25 19:53:30

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  Stable on ppc wrt bug 229187
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.55                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	24 Jun 2008 21:59:20 -0000	1.54
+++ ChangeLog	25 Jun 2008 19:53:30 -0000	1.55
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.54 2008/06/24 21:59:20 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.55 2008/06/25 19:53:30 nixnut Exp $
+
+  25 Jun 2008; nixnut <nixnut@gentoo.org> unison-2.27.57-r1.ebuild:
+  Stable on ppc wrt bug 229187
 
   24 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
   unison-2.27.57-r1.ebuild:



1.8                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- unison-2.27.57-r1.ebuild	24 Jun 2008 21:59:20 -0000	1.7
+++ unison-2.27.57-r1.ebuild	25 Jun 2008 19:53:30 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.7 2008/06/24 21:59:20 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.8 2008/06/25 19:53:30 nixnut Exp $
 
 EAPI=1
 
@@ -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"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-06-26  0:05 Thomas Anderson (gentoofan23)
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Anderson (gentoofan23) @ 2008-06-26  0:05 UTC (permalink / raw
  To: gentoo-commits

gentoofan23    08/06/26 00:05:42

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  stable amd64, bug 229187
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.56                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	25 Jun 2008 19:53:30 -0000	1.55
+++ ChangeLog	26 Jun 2008 00:05:41 -0000	1.56
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.55 2008/06/25 19:53:30 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.56 2008/06/26 00:05:41 gentoofan23 Exp $
+
+  26 Jun 2008; Thomas Anderson <gentoofan23@gentoo.org>
+  unison-2.27.57-r1.ebuild:
+  stable amd64, bug 229187
 
   25 Jun 2008; nixnut <nixnut@gentoo.org> unison-2.27.57-r1.ebuild:
   Stable on ppc wrt bug 229187



1.9                  net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- unison-2.27.57-r1.ebuild	25 Jun 2008 19:53:30 -0000	1.8
+++ unison-2.27.57-r1.ebuild	26 Jun 2008 00:05:41 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.8 2008/06/25 19:53:30 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.9 2008/06/26 00:05:41 gentoofan23 Exp $
 
 EAPI=1
 
@@ -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"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2008-06-30 20:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2008-06-30 20:38 UTC (permalink / raw
  To: gentoo-commits

armin76     08/06/30 20:38:22

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  sparc stable wrt #229187
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.57                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	26 Jun 2008 00:05:41 -0000	1.56
+++ ChangeLog	30 Jun 2008 20:38:21 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/unison
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.56 2008/06/26 00:05:41 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.57 2008/06/30 20:38:21 armin76 Exp $
+
+  30 Jun 2008; Raúl Porcel <armin76@gentoo.org> unison-2.27.57-r1.ebuild:
+  sparc stable wrt #229187
 
   26 Jun 2008; Thomas Anderson <gentoofan23@gentoo.org>
   unison-2.27.57-r1.ebuild:



1.10                 net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- unison-2.27.57-r1.ebuild	26 Jun 2008 00:05:41 -0000	1.9
+++ unison-2.27.57-r1.ebuild	30 Jun 2008 20:38:21 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.9 2008/06/26 00:05:41 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.10 2008/06/30 20:38:21 armin76 Exp $
 
 EAPI=1
 
@@ -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"
 
 DEPEND=">=dev-lang/ocaml-3.04
 	gtk? ( >=dev-ml/lablgtk-2.2 )"



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild
@ 2009-08-28 21:59 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 9+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-08-28 21:59 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/08/28 21:59:22

  Modified:             ChangeLog unison-2.27.57-r1.ebuild
  Log:
  Migrate to EAPI 2 in order to remove built_with_use usage.
  (Portage version: 2.2_rc38/cvs/Linux i686)

Revision  Changes    Path
1.60                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	4 Dec 2008 18:48:33 -0000	1.59
+++ ChangeLog	28 Aug 2009 21:59:21 -0000	1.60
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/unison
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.59 2008/12/04 18:48:33 darkside Exp $
+# 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 $
+
+  28 Aug 2009; Petteri Räty <betelgeuse@gentoo.org>
+  unison-2.27.57-r1.ebuild:
+  Migrate to EAPI 2 in order to remove built_with_use usage.
 
   04 Dec 2008; Jeremy Olexa <darkside@gentoo.org> unison-2.13.16-r1.ebuild,
   unison-2.27.57-r1.ebuild:
@@ -101,6 +105,8 @@
   Adding fix for bug #115376, need a font installed with modular-x.
 
 *unison-2.12.0-r1 (21 Sep 2005)
+*unison-2.13.16 (21 Sep 2005)
+*unison-2.17.1 (21 Sep 2005)
 
   21 Sep 2005; Matthieu Sozeau <mattam@gentoo.org> +unison-2.12.0-r1.ebuild,
   -unison-2.12.0.ebuild, -unison-2.13.0.ebuild, +unison-2.13.16.ebuild,
@@ -132,6 +138,7 @@
   unison-2.13.0.ebuild:
   Make thread support configurable, minor fixes (doc flag, wrong cd).
 
+*unison-2.12.0 (12 Jul 2005)
 *unison-2.13.0 (12 Jul 2005)
 
   12 Jul 2005; Matthieu Sozeau <mattam@gentoo.org>
@@ -223,7 +230,7 @@
 
   06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
  
-*unison-2.9.1 (17 July 2002)
+*unison-2.9.1 (17 Jul 2002)
 
   17 July 2002; George Shapovalov <george@gentoo.org> unison-2.9.1.ebuild, files/digest-unison-2.9.1, ChangeLog :
 



1.12                 net-misc/unison/unison-2.27.57-r1.ebuild

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

Index: unison-2.27.57-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- unison-2.27.57-r1.ebuild	4 Dec 2008 18:48:33 -0000	1.11
+++ unison-2.27.57-r1.ebuild	28 Aug 2009 21:59:21 -0000	1.12
@@ -1,8 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# 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.27.57-r1.ebuild,v 1.11 2008/12/04 18:48:33 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.27.57-r1.ebuild,v 1.12 2009/08/28 21:59:21 betelgeuse Exp $
 
-EAPI=1
+EAPI="2"
 
 inherit eutils versionator
 
@@ -14,7 +14,8 @@
 SLOT="$(get_version_component_range 1-2 ${PV})"
 KEYWORDS="amd64 ppc sparc x86"
 
-DEPEND=">=dev-lang/ocaml-3.04
+# 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
@@ -28,18 +29,7 @@
 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 )"
 
-pkg_setup() {
-	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
-		eerror "In order to build ${PN} with native code support from ocaml"
-		eerror "You first need to have a native code ocaml compiler."
-		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
-		die "Please install ocaml with ocamlopt useflag"
-	fi
-}
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	epatch "${FILESDIR}/${P}-as-needed.patch"
 }
 






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

end of thread, other threads:[~2009-08-28 16:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-26  0:05 [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.27.57-r1.ebuild Thomas Anderson (gentoofan23)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-28 21:59 Petteri Raty (betelgeuse)
2008-06-30 20:38 Raul Porcel (armin76)
2008-06-25 19:53 Gysbert Wassenaar (nixnut)
2008-06-24 21:59 Christian Faulhammer (opfer)
2008-06-13 19:34 Matti Bickel (mabi)
2008-04-14 18:12 Raul Porcel (armin76)
2008-04-10 19:36 Markus Meier (maekke)
2008-04-07 21:35 Alexis Ballier (aballier)

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