summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Reffett <creffett@gentoo.org>2013-08-22 02:23:03 +0000
committerChris Reffett <creffett@gentoo.org>2013-08-22 02:23:03 +0000
commitb3c47d47e564aaa027c8db8e6b098f3b2375f90e (patch)
tree082d167a5a00e7d20d7721dedc61637b77c1ef5f
parentVerbose build. (diff)
downloadgentoo-2-b3c47d47e564aaa027c8db8e6b098f3b2375f90e.tar.gz
gentoo-2-b3c47d47e564aaa027c8db8e6b098f3b2375f90e.tar.bz2
gentoo-2-b3c47d47e564aaa027c8db8e6b098f3b2375f90e.zip
Version bump wrt 417525. EAPI bump. Sync live version.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 42618354)
-rw-r--r--app-mobilephone/dfu-util/ChangeLog11
-rw-r--r--app-mobilephone/dfu-util/dfu-util-0.1.ebuild38
-rw-r--r--app-mobilephone/dfu-util/dfu-util-0.5.ebuild39
-rw-r--r--app-mobilephone/dfu-util/dfu-util-0.7.ebuild (renamed from app-mobilephone/dfu-util/dfu-util-0.4.ebuild)10
-rw-r--r--app-mobilephone/dfu-util/dfu-util-9999.ebuild9
5 files changed, 18 insertions, 89 deletions
diff --git a/app-mobilephone/dfu-util/ChangeLog b/app-mobilephone/dfu-util/ChangeLog
index c20fccab89a9..6ec4aaf94d55 100644
--- a/app-mobilephone/dfu-util/ChangeLog
+++ b/app-mobilephone/dfu-util/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-mobilephone/dfu-util
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/ChangeLog,v 1.8 2012/10/07 03:13:24 flameeyes Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/ChangeLog,v 1.9 2013/08/22 02:23:03 creffett Exp $
+
+*dfu-util-0.7 (22 Aug 2013)
+
+ 22 Aug 2013; Chris Reffett <creffett@gentoo.org> +dfu-util-0.7.ebuild,
+ -dfu-util-0.1.ebuild, -dfu-util-0.4.ebuild, -dfu-util-0.5.ebuild,
+ dfu-util-9999.ebuild:
+ Version bump wrt 417525. EAPI bump. Sync live version.
07 Oct 2012; Diego E. Pettenò <flameeyes@gentoo.org> dfu-util-0.4.ebuild,
dfu-util-0.5.ebuild, dfu-util-9999.ebuild:
diff --git a/app-mobilephone/dfu-util/dfu-util-0.1.ebuild b/app-mobilephone/dfu-util/dfu-util-0.1.ebuild
deleted file mode 100644
index 0d4867cab2ed..000000000000
--- a/app-mobilephone/dfu-util/dfu-util-0.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.1.ebuild,v 1.1 2010/06/05 19:25:17 vapier Exp $
-
-EAPI="2"
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="git://git.openezx.org/dfu-util.git"
- inherit autotools git
- SRC_URI=""
- #KEYWORDS=""
-else
- SRC_URI="http://dfu-util.gnumonks.org/releases/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="implements the Host (PC) side of the USB DFU (Device Firmware Upgrade) protocol"
-HOMEPAGE="http://wiki.openmoko.org/wiki/Dfu-util"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="virtual/libusb:0"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- if [[ ${PV} == "9999" ]] ; then
- git_src_prepare
- eautoreconf
- fi
- sed -i '/^bin_PROGRAMS/s:dfu-util_static[^ ]*::' src/Makefile.in
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ChangeLog README TODO
-}
diff --git a/app-mobilephone/dfu-util/dfu-util-0.5.ebuild b/app-mobilephone/dfu-util/dfu-util-0.5.ebuild
deleted file mode 100644
index 72779c3ade65..000000000000
--- a/app-mobilephone/dfu-util/dfu-util-0.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.5.ebuild,v 1.2 2012/10/07 03:13:24 flameeyes Exp $
-
-EAPI="2"
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="git://git.openezx.org/dfu-util.git"
- inherit autotools git
- SRC_URI=""
- #KEYWORDS=""
-else
- SRC_URI="http://dfu-util.gnumonks.org/releases/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="implements the Host (PC) side of the USB DFU (Device Firmware Upgrade) protocol"
-HOMEPAGE="http://wiki.openmoko.org/wiki/Dfu-util"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND="virtual/libusb:1"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- if [[ ${PV} == "9999" ]] ; then
- git_src_prepare
- eautoreconf
- fi
- sed -i '/^bin_PROGRAMS/s:dfu-util_static[^ ]*::' src/Makefile.in
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ChangeLog README TODO
-}
diff --git a/app-mobilephone/dfu-util/dfu-util-0.4.ebuild b/app-mobilephone/dfu-util/dfu-util-0.7.ebuild
index f96be68545f3..64532be3d2bc 100644
--- a/app-mobilephone/dfu-util/dfu-util-0.4.ebuild
+++ b/app-mobilephone/dfu-util/dfu-util-0.7.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.4.ebuild,v 1.2 2012/10/07 03:13:24 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.7.ebuild,v 1.1 2013/08/22 02:23:03 creffett Exp $
-EAPI="2"
+EAPI=5
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.openezx.org/dfu-util.git"
- inherit autotools git
+ inherit autotools git-2
SRC_URI=""
#KEYWORDS=""
else
@@ -27,7 +27,7 @@ DEPEND="${RDEPEND}
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
- git_src_prepare
+ git-2_src_prepare
eautoreconf
fi
sed -i '/^bin_PROGRAMS/s:dfu-util_static[^ ]*::' src/Makefile.in
diff --git a/app-mobilephone/dfu-util/dfu-util-9999.ebuild b/app-mobilephone/dfu-util/dfu-util-9999.ebuild
index d23dcab69403..fede7a7bc7d2 100644
--- a/app-mobilephone/dfu-util/dfu-util-9999.ebuild
+++ b/app-mobilephone/dfu-util/dfu-util-9999.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-9999.ebuild,v 1.4 2012/10/07 03:13:24 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-9999.ebuild,v 1.5 2013/08/22 02:23:03 creffett Exp $
-EAPI="2"
+EAPI=5
if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="git://git.openezx.org/${PN}.git
- http://cgit.openezx.org/${PN}/"
+ EGIT_REPO_URI="git://git.openezx.org/dfu-util.git"
inherit autotools git-2
SRC_URI=""
#KEYWORDS=""