public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/debhelper: debhelper-9.20130605.ebuild ChangeLog
@ 2013-06-06 13:47 Jeroen Roovers (jer)
  0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2013-06-06 13:47 UTC (permalink / raw
  To: gentoo-commits

jer         13/06/06 13:47:37

  Modified:             ChangeLog
  Added:                debhelper-9.20130605.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.74                 dev-util/debhelper/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	4 Jun 2013 23:37:58 -0000	1.73
+++ ChangeLog	6 Jun 2013 13:47:37 -0000	1.74
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/debhelper
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.73 2013/06/04 23:37:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.74 2013/06/06 13:47:37 jer Exp $
+
+*debhelper-9.20130605 (06 Jun 2013)
+
+  06 Jun 2013; Jeroen Roovers <jer@gentoo.org> +debhelper-9.20130605.ebuild:
+  Version bump.
 
 *debhelper-9.20130604 (04 Jun 2013)
 



1.1                  dev-util/debhelper/debhelper-9.20130605.ebuild

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

Index: debhelper-9.20130605.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20130605.ebuild,v 1.1 2013/06/06 13:47:37 jer Exp $

EAPI=5
inherit eutils toolchain-funcs

DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
HOMEPAGE="http://packages.qa.debian.org/d/debhelper.html http://joeyh.name/code/debhelper/"
SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="test"
DH_LINGUAS=( de es fr )
IUSE+=" ${DH_LINGUAS[@]/#/linguas_}"

NLS_DEPEND=$(
	printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]}
)

RDEPEND="
	>=dev-lang/perl-5.10
	app-arch/dpkg
	dev-perl/TimeDate
	virtual/perl-Getopt-Long
"
DEPEND="${RDEPEND}
	${NLS_DEPEND}
	test? ( dev-perl/Test-Pod )
"

S=${WORKDIR}/${PN}

src_compile() {
	tc-export CC

	local LANGS="" USE_NLS=no lingua
	for lingua in ${DH_LINGUAS[@]}; do
		if use linguas_${lingua}; then
			LANGS+=" ${lingua}"
			USE_NLS=yes
		fi
	done

	emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
}

src_install() {
	default
	dodoc doc/* debian/changelog
	docinto examples
	dodoc examples/*
	local lingua
	for manfile in *.1 *.7 ; do
		for lingua in ${DH_LINGUAS[@]}; do
			case ${manfile} in
				*.${lingua}.?)
					use linguas_${lingua} \
						&& cp ${manfile} "${T}"/${manfile/.${lingua}/} \
						&& doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/}
					;;
				*)
					doman ${manfile}
					;;
			esac
		done
	done
}





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

* [gentoo-commits] gentoo-x86 commit in dev-util/debhelper: debhelper-9.20130605.ebuild ChangeLog
@ 2013-06-18  4:17 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Junghans (ottxor) @ 2013-06-18  4:17 UTC (permalink / raw
  To: gentoo-commits

ottxor      13/06/18 04:17:26

  Modified:             debhelper-9.20130605.ebuild ChangeLog
  Log:
  added prefix support (bug #382849)
  
  (Portage version: 2.2.0_alpha180/cvs/Linux x86_64, signed Manifest commit with key C2000586)

Revision  Changes    Path
1.2                  dev-util/debhelper/debhelper-9.20130605.ebuild

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

Index: debhelper-9.20130605.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20130605.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- debhelper-9.20130605.ebuild	6 Jun 2013 13:47:37 -0000	1.1
+++ debhelper-9.20130605.ebuild	18 Jun 2013 04:17:26 -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-util/debhelper/debhelper-9.20130605.ebuild,v 1.1 2013/06/06 13:47:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20130605.ebuild,v 1.2 2013/06/18 04:17:26 ottxor Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux"
 IUSE="test"
 DH_LINGUAS=( de es fr )
 IUSE+=" ${DH_LINGUAS[@]/#/linguas_}"
@@ -48,7 +48,7 @@
 }
 
 src_install() {
-	default
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
 	dodoc doc/* debian/changelog
 	docinto examples
 	dodoc examples/*



1.75                 dev-util/debhelper/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	6 Jun 2013 13:47:37 -0000	1.74
+++ ChangeLog	18 Jun 2013 04:17:26 -0000	1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/debhelper
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.74 2013/06/06 13:47:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.75 2013/06/18 04:17:26 ottxor Exp $
+
+  18 Jun 2013; Christoph Junghans <ottxor@gentoo.org>
+  debhelper-9.20130605.ebuild:
+  added prefix support (bug #382849)
 
 *debhelper-9.20130605 (06 Jun 2013)
 





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

end of thread, other threads:[~2013-06-18  4:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06 13:47 [gentoo-commits] gentoo-x86 commit in dev-util/debhelper: debhelper-9.20130605.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-18  4:17 Christoph Junghans (ottxor)

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