* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Catalyst-Model-DBIC-Plain/
@ 2012-10-27 8:36 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2012-10-27 8:36 UTC (permalink / raw
To: gentoo-commits
commit: 1d12d1f9762f88898111a88f531ab2f067b5daa8
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Oct 27 08:15:05 2012 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Sat Oct 27 08:15:05 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=1d12d1f9
[fixdep] Catalyst-Model-DBIC-Plain -> DBIx-Class ( normalize )
Package-Manager: portage-2.2.0_alpha141
Manifest-Sign-Key: ECD2C675C102CDA4
---
.../Catalyst-Model-DBIC-Plain-0.02.ebuild | 4 ++--
dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog | 8 ++++++++
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild b/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild
index 70c5d07..f990614 100644
--- a/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild
+++ b/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -14,5 +14,5 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
dev-perl/Catalyst-Runtime
- >=dev-perl/DBIx-Class-0.01
+ >=dev-perl/DBIx-Class-0.10.0
"
diff --git a/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog b/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog
new file mode 100644
index 0000000..df5bbb8
--- /dev/null
+++ b/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-perl/Catalyst-Model-DBIC-Plain
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 27 Oct 2012; Kent Fredric <kentfredric@gmail.com>
+ Catalyst-Model-DBIC-Plain-0.02.ebuild:
+ Fix dependency on DBIx-Class ( normalize )
+
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Catalyst-Model-DBIC-Plain/
@ 2014-08-26 19:06 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2014-08-26 19:06 UTC (permalink / raw
To: gentoo-commits
commit: 4323ab5dd19515ff2ba82425af7bebe3fd75bf62
Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Tue Aug 26 18:22:30 2014 +0000
Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
CommitDate: Tue Aug 26 18:22:30 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=4323ab5d
[fixup] dev-perl/Catalyst-Model-DBIC-Plain Normalise, EAPI5, fixups
Package-Manager: portage-2.2.10
---
...02.ebuild => Catalyst-Model-DBIC-Plain-0.20.0.ebuild} | 16 ++++++++++++----
dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog | 9 ++++++++-
2 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild b/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.20.0.ebuild
similarity index 52%
rename from dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild
rename to dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.20.0.ebuild
index f990614..a723b83 100644
--- a/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.02.ebuild
+++ b/dev-perl/Catalyst-Model-DBIC-Plain/Catalyst-Model-DBIC-Plain-0.20.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-
+EAPI=5
MODULE_AUTHOR=GABB
+MODULE_VERSION=0.02
inherit perl-module
DESCRIPTION="DBIC Model Class"
@@ -12,7 +13,14 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND="
- dev-perl/Catalyst-Runtime
+RDEPEND="
+ >=dev-perl/Catalyst-Runtime-5.0.0
>=dev-perl/DBIx-Class-0.10.0
"
+DEPEND="$RDEPEND"
+
+src_prepare() {
+ perl_rm_files "t/02pod.t" "t/03podcoverage.t"
+ perl-module_src_prepare
+}
+SRC_TEST=do
diff --git a/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog b/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog
index df5bbb8..08c8121 100644
--- a/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog
+++ b/dev-perl/Catalyst-Model-DBIC-Plain/ChangeLog
@@ -1,7 +1,14 @@
# ChangeLog for dev-perl/Catalyst-Model-DBIC-Plain
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*Catalyst-Model-DBIC-Plain-0.20.0 (26 Aug 2014)
+
+ 26 Aug 2014; Kent Fredric <kentfredric@gmail.com>
+ -Catalyst-Model-DBIC-Plain-0.02.ebuild,
+ +Catalyst-Model-DBIC-Plain-0.20.0.ebuild:
+ Normalise, EAPI5, fixups
+
27 Oct 2012; Kent Fredric <kentfredric@gmail.com>
Catalyst-Model-DBIC-Plain-0.02.ebuild:
Fix dependency on DBIx-Class ( normalize )
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-08-26 19:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-27 8:36 [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Catalyst-Model-DBIC-Plain/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2014-08-26 19:06 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox