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.13.16-r1.ebuild
@ 2008-06-16 20:20 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2008-06-16 20:20 UTC (permalink / raw
  To: gentoo-commits

aballier    08/06/16 20:20:08

  Modified:             ChangeLog
  Added:                unison-2.13.16-r1.ebuild
  Log:
  slotted 2.13.16 for bug #183019
  (Portage version: 2.1.5.5)

Revision  Changes    Path
1.50                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	13 Jun 2008 19:34:39 -0000	1.49
+++ ChangeLog	16 Jun 2008 20:20:07 -0000	1.50
@@ -1,6 +1,12 @@
 # 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.49 2008/06/13 19:34:39 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.50 2008/06/16 20:20:07 aballier Exp $
+
+*unison-2.13.16-r1 (16 Jun 2008)
+
+  16 Jun 2008; Alexis Ballier <aballier@gentoo.org>
+  +unison-2.13.16-r1.ebuild:
+  slotted 2.13.16 for bug #183019
 
   13 Jun 2008; Matti Bickel <mabi@gentoo.org> unison-2.27.57-r1.ebuild:
   ~ppc added (bug #207746)



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

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

Index: unison-2.13.16-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.13.16-r1.ebuild,v 1.1 2008/06/16 20:20:07 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 ~ppc ~sparc ~x86"

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 ${P}.tar.gz

	# Fix for coreutils change of tail syntax
	cd "${S}"
	sed -i -e 's/tail -1/tail -n 1/' Makefile.OCaml
	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

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

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] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.13.16-r1.ebuild
@ 2015-04-07 21:08 Andreas Huettel (dilfridge)
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Huettel (dilfridge) @ 2015-04-07 21:08 UTC (permalink / raw
  To: gentoo-commits

dilfridge    15/04/07 21:08:33

  Modified:             ChangeLog
  Removed:              unison-2.13.16-r1.ebuild
  Log:
  Drop old EAPI=1 version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0B08240A96F66571)

Revision  Changes    Path
1.74                 net-misc/unison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	31 Mar 2015 20:08:12 -0000	1.73
+++ ChangeLog	7 Apr 2015 21:08:33 -0000	1.74
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/unison
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.73 2015/03/31 20:08:12 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.74 2015/04/07 21:08:33 dilfridge Exp $
+
+  07 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org>
+  -unison-2.13.16-r1.ebuild:
+  Drop old EAPI=1 version
 
   31 Mar 2015; Ulrich Müller <ulm@gentoo.org> unison-2.13.16-r1.ebuild,
   unison-2.27.157.ebuild, unison-2.32.52.ebuild, unison-2.40.102.ebuild,





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

end of thread, other threads:[~2015-04-07 21:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-16 20:20 [gentoo-commits] gentoo-x86 commit in net-misc/unison: ChangeLog unison-2.13.16-r1.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-07 21:08 Andreas Huettel (dilfridge)

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