public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: pilot-link-0.12.5-r1.ebuild ChangeLog
@ 2013-09-10  9:23 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2013-09-10  9:23 UTC (permalink / raw
  To: gentoo-commits

idella4     13/09/10 09:23:57

  Modified:             ChangeLog
  Added:                pilot-link-0.12.5-r1.ebuild
  Log:
  revbump -> EAPI5, distutils-r1
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.75                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	29 Aug 2012 03:20:32 -0000	1.74
+++ ChangeLog	10 Sep 2013 09:23:57 -0000	1.75
@@ -1,6 +1,11 @@
 # ChangeLog for app-pda/pilot-link
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.74 2012/08/29 03:20:32 blueness Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.75 2013/09/10 09:23:57 idella4 Exp $
+
+*pilot-link-0.12.5-r1 (10 Sep 2013)
+
+  10 Sep 2013; Ian Delaney <idella4@gentoo.org> +pilot-link-0.12.5-r1.ebuild:
+  revbump -> EAPI5, distutils-r1
 
   29 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
   pilot-link-0.12.5.ebuild:



1.1                  app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: pilot-link-0.12.5-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.1 2013/09/10 09:23:57 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} )

inherit autotools distutils-r1 eutils perl-module java-pkg-opt-2

DESCRIPTION="suite of tools for moving data between a Palm device and a desktop"
HOMEPAGE="http://www.pilot-link.org/"
SRC_URI="http://pilot-link.org/source/${P}.tar.bz2"

LICENSE="|| ( GPL-2 LGPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="bluetooth debug java perl png python readline static-libs threads usb"

COMMON_DEPEND="dev-libs/popt
	>=sys-libs/ncurses-5.7-r7
	virtual/libiconv
	bluetooth? ( net-wireless/bluez )
	perl? ( >=dev-lang/perl-5.12 )
	png? ( media-libs/libpng:0 )
	readline? ( >=sys-libs/readline-6 )
	usb? ( virtual/libusb:0 )"
DEPEND="${COMMON_DEPEND}
	java? ( >=virtual/jdk-1.4 )"
RDEPEND="${COMMON_DEPEND}
	java? ( >=virtual/jre-1.4 )"

src_prepare() {
	epatch \
		"${FILESDIR}"/${PN}-0.12.3-java-install.patch \
		"${FILESDIR}"/${PN}-0.12.3-respect-javacflags.patch \
		"${FILESDIR}"/${PN}-0.12.2-werror_194921.patch \
		"${FILESDIR}"/${PN}-0.12.2-threads.patch \
		"${FILESDIR}"/${PN}-0.12.3-{libpng14,png}.patch \
		"${FILESDIR}"/${PN}-0.12.3-distutils.patch \
		"${FILESDIR}"/${PN}-0.12.3-libusb-compat-usb_open.patch \
		"${FILESDIR}"/${PN}-0.12.5-perl514.patch

	AT_M4DIR="m4" eautoreconf
}

src_configure() {
	# tcl/tk support is disabled as per upstream request.
	econf \
		--includedir="${EPREFIX}"/usr/include/libpisock \
		$(use_enable static-libs static) \
		--enable-conduits \
		$(use_enable threads) \
		$(use_enable usb libusb) \
		$(use_enable debug) \
		$(use_with png libpng) \
		$(use_with bluetooth bluez) \
		$(use_with readline) \
		$(use_with perl) \
		$(use_with java) \
		--without-tcl \
		$(use_with python)
}

src_compile() {
	emake

	if use perl; then
		cd "${S}"/bindings/Perl
		perl-module_src_prep
		local mymake=( OTHERLDFLAGS="${LDFLAGS} -L../../libpisock/.libs -lpisock" ) #308629
		perl-module_src_compile
	fi

	if use python; then
		cd "${S}"/bindings/Python
		distutils-r1_src_compile
	fi
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc ChangeLog NEWS README doc/{README*,TODO}

	if use java; then
		cd "${S}"/bindings/Java
		java-pkg_newjar ${PN}.jar
		java-pkg_doso libjpisock.so
	fi

	if use perl; then
		cd "${S}"/bindings/Perl
		perl-module_src_install
	fi

	if use python; then
		cd "${S}"/bindings/Python
		distutils-r1_src_install
	fi

	find "${D}" -name '*.la' -exec rm -f {} +
}

pkg_preinst() {
	perl-module_pkg_preinst
	java-pkg-opt-2_pkg_preinst
}





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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: pilot-link-0.12.5-r1.ebuild ChangeLog
@ 2014-05-31 16:24 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-05-31 16:24 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/05/31 16:24:24

  Modified:             pilot-link-0.12.5-r1.ebuild ChangeLog
  Log:
  Use AC_CONFIG_HEADERS instead of the obsolete AM_CONFIG_HEADER wrt #467600 by Ian Stakenvicius
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.2                  app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?r1=1.1&r2=1.2

Index: pilot-link-0.12.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pilot-link-0.12.5-r1.ebuild	10 Sep 2013 09:23:57 -0000	1.1
+++ pilot-link-0.12.5-r1.ebuild	31 May 2014 16:24:24 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.1 2013/09/10 09:23:57 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.2 2014/05/31 16:24:24 ssuominen Exp $
 
 EAPI=5
 
@@ -41,6 +41,8 @@
 		"${FILESDIR}"/${PN}-0.12.3-libusb-compat-usb_open.patch \
 		"${FILESDIR}"/${PN}-0.12.5-perl514.patch
 
+	sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #467600
+
 	AT_M4DIR="m4" eautoreconf
 }
 



1.76                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	10 Sep 2013 09:23:57 -0000	1.75
+++ ChangeLog	31 May 2014 16:24:24 -0000	1.76
@@ -1,6 +1,11 @@
 # ChangeLog for app-pda/pilot-link
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.75 2013/09/10 09:23:57 idella4 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.76 2014/05/31 16:24:24 ssuominen Exp $
+
+  31 May 2014; Samuli Suominen <ssuominen@gentoo.org>
+  pilot-link-0.12.5-r1.ebuild:
+  Use AC_CONFIG_HEADERS instead of the obsolete AM_CONFIG_HEADER wrt #467600 by
+  Ian Stakenvicius
 
 *pilot-link-0.12.5-r1 (10 Sep 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: pilot-link-0.12.5-r1.ebuild ChangeLog
@ 2014-12-13 20:59 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas HAttel (dilfridge) @ 2014-12-13 20:59 UTC (permalink / raw
  To: gentoo-commits

dilfridge    14/12/13 20:59:54

  Modified:             pilot-link-0.12.5-r1.ebuild ChangeLog
  Log:
  Replace perl-module_src_prep with perl-module_src_configure
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)

Revision  Changes    Path
1.5                  app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?r1=1.4&r2=1.5

Index: pilot-link-0.12.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pilot-link-0.12.5-r1.ebuild	19 Nov 2014 19:46:46 -0000	1.4
+++ pilot-link-0.12.5-r1.ebuild	13 Dec 2014 20:59:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.4 2014/11/19 19:46:46 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.5 2014/12/13 20:59:54 dilfridge Exp $
 
 EAPI=5
 
@@ -69,7 +69,7 @@
 
 	if use perl; then
 		cd "${S}"/bindings/Perl
-		perl-module_src_prep
+		perl-module_src_configure
 		local mymake=( OTHERLDFLAGS="${LDFLAGS} -L../../libpisock/.libs -lpisock" ) #308629
 		perl-module_src_compile
 	fi



1.79                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	19 Nov 2014 19:46:46 -0000	1.78
+++ ChangeLog	13 Dec 2014 20:59:54 -0000	1.79
@@ -1,6 +1,10 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.78 2014/11/19 19:46:46 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.79 2014/12/13 20:59:54 dilfridge Exp $
+
+  13 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
+  pilot-link-0.12.5-r1.ebuild:
+  Replace perl-module_src_prep with perl-module_src_configure
 
   19 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org>
   pilot-link-0.12.5-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: pilot-link-0.12.5-r1.ebuild ChangeLog
@ 2015-04-08  7:30 Michal Gorny (mgorny)
  0 siblings, 0 replies; 4+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08  7:30 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 07:30:35

  Modified:             pilot-link-0.12.5-r1.ebuild ChangeLog
  Log:
  Remove old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.6                  app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild?r1=1.5&r2=1.6

Index: pilot-link-0.12.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pilot-link-0.12.5-r1.ebuild	13 Dec 2014 20:59:54 -0000	1.5
+++ pilot-link-0.12.5-r1.ebuild	8 Apr 2015 07:30:35 -0000	1.6
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.5 2014/12/13 20:59:54 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.5-r1.ebuild,v 1.6 2015/04/08 07:30:35 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit autotools distutils-r1 eutils perl-module java-pkg-opt-2
 



1.80                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	13 Dec 2014 20:59:54 -0000	1.79
+++ ChangeLog	8 Apr 2015 07:30:35 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for app-pda/pilot-link
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.79 2014/12/13 20:59:54 dilfridge Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.80 2015/04/08 07:30:35 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> pilot-link-0.12.5-r1.ebuild:
+  Remove old Python implementations
 
   13 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org>
   pilot-link-0.12.5-r1.ebuild:





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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-31 16:24 [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: pilot-link-0.12.5-r1.ebuild ChangeLog Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-08  7:30 Michal Gorny (mgorny)
2014-12-13 20:59 Andreas HAttel (dilfridge)
2013-09-10  9:23 Ian Delaney (idella4)

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