public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php/awl: awl-0.55-r1.ebuild awl-0.53-r2.ebuild ChangeLog awl-0.53-r1.ebuild awl-0.55.ebuild
@ 2015-05-02  2:06 Brian Evans (grknight)
  0 siblings, 0 replies; only message in thread
From: Brian Evans (grknight) @ 2015-05-02  2:06 UTC (permalink / raw
  To: gentoo-commits

grknight    15/05/02 02:06:18

  Modified:             ChangeLog
  Added:                awl-0.55-r1.ebuild awl-0.53-r2.ebuild
  Removed:              awl-0.53-r1.ebuild awl-0.55.ebuild
  Log:
  Revbump to eliminate the unnecessary re-building of the documentation which is present in the archive
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)

Revision  Changes    Path
1.11                 dev-php/awl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	15 Feb 2015 03:32:31 -0000	1.10
+++ ChangeLog	2 May 2015 02:06:18 -0000	1.11
@@ -1,6 +1,14 @@
 # ChangeLog for dev-php/awl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.10 2015/02/15 03:32:31 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.11 2015/05/02 02:06:18 grknight Exp $
+
+*awl-0.55-r1 (02 May 2015)
+*awl-0.53-r2 (02 May 2015)
+
+  02 May 2015; Brian Evans <grknight@gentoo.org> +awl-0.53-r2.ebuild,
+  +awl-0.55-r1.ebuild, -awl-0.53-r1.ebuild, -awl-0.55.ebuild:
+  Revbump to eliminate the unnecessary re-building of the documentation which is
+  present in the archive
 
   15 Feb 2015; Brian Evans <grknight@gentoo.org> awl-0.55.ebuild:
   Remove the need for git-r3 since there is a valid archive path



1.1                  dev-php/awl/awl-0.55-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.55-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.55-r1.ebuild?rev=1.1&content-type=text/plain

Index: awl-0.55-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/awl-0.55-r1.ebuild,v 1.1 2015/05/02 02:06:18 grknight Exp $

EAPI=5

DESCRIPTION="Andrew McMillan's Web Libraries"
HOMEPAGE="https://gitlab.com/davical-project/awl"
SRC_URI="${HOMEPAGE}/repository/archive.tar.gz?ref=r${PV} -> ${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"

DEPEND="test? ( dev-php/phpunit )"
RDEPEND="dev-lang/php:*[pdo,postgres,xml]"
S="${WORKDIR}/${PN}.git"

src_compile() {
	:
}

src_test() {
	phpunit tests/ || die "test suite failed"
}

src_install() {
	dodoc debian/changelog
	use doc && dohtml -r "docs/api/"
	insinto "/usr/share/php/${PN}"
	doins -r dba inc
}



1.1                  dev-php/awl/awl-0.53-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.53-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.53-r2.ebuild?rev=1.1&content-type=text/plain

Index: awl-0.53-r2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/awl-0.53-r2.ebuild,v 1.1 2015/05/02 02:06:18 grknight Exp $

EAPI=5

DESCRIPTION="Andrew McMillan's web libraries: A collection of generic classes
used by the davical calendar server"
HOMEPAGE="http://andrew.mcmillan.net.nz/projects/awl"
SRC_URI="http://debian.mcmillan.net.nz/packages/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

RDEPEND="dev-lang/php:*[pdo,postgres,xml]"

DOCS=( debian/README.Debian debian/changelog )

src_compile() {
	:
}

src_install() {
	dodoc "${DOCS[@]}"
	use doc && dohtml -r "docs/api/"
	insinto "/usr/share/php/${PN}"
	doins -r dba inc scripts
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-05-02  2:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-02  2:06 [gentoo-commits] gentoo-x86 commit in dev-php/awl: awl-0.55-r1.ebuild awl-0.53-r2.ebuild ChangeLog awl-0.53-r1.ebuild awl-0.55.ebuild Brian Evans (grknight)

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