* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2016-01-01 17:52 Andreas Hüttel
0 siblings, 0 replies; 11+ messages in thread
From: Andreas Hüttel @ 2016-01-01 17:52 UTC (permalink / raw
To: gentoo-commits
commit: 005acec39392003804f1ed3a553ea9d760321b37
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 1 17:52:29 2016 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jan 1 17:52:48 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=005acec3
dev-perl/DateTime-Format-Flexible: Remove old
Package-Manager: portage-2.2.26
.../DateTime-Format-Flexible-0.250.0.ebuild | 26 ----------------------
dev-perl/DateTime-Format-Flexible/Manifest | 1 -
2 files changed, 27 deletions(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.250.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.250.0.ebuild
deleted file mode 100644
index f4bad9c..0000000
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.250.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=THINC
-MODULE_VERSION=0.25
-inherit perl-module
-
-DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-perl/DateTime
- >=dev-perl/DateTime-Format-Builder-0.74
- dev-perl/DateTime-TimeZone
- dev-perl/Module-Pluggable"
-DEPEND="${RDEPEND}
- test? (
- dev-perl/Test-MockTime
- )"
-
-SRC_TEST=do
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index e560b0f..b79ec07 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1,2 +1 @@
-DIST DateTime-Format-Flexible-0.25.tar.gz 71657 SHA256 cd3267e68736ece386d677289b334d4ef1f33ff2524b17b9c9deb53d20420090 SHA512 c2cdd0dc682a7ef87f006c27c3822f92db658d187748852c2079b58a08fa527f83ed810e4b737dcc3d3de26eae7b89fb173ab2ffbc25935b868d01510fab8ca6 WHIRLPOOL f58636ceea745c268d96f396bd3a6920c2a0fedde53d8e3611bdd3cb5c6680d58c5cc8ce92782f09b9846000b8c7c32d434e97007cde501d6119badde594d17a
DIST DateTime-Format-Flexible-0.26.tar.gz 71862 SHA256 436efbc5e87cc385112e1c44336427fea32df670caf2b7d6dbb7a113ac6e693d SHA512 70f5d50fd97bede5790853b526ee8150ab86592fa3f34ee16b0f26268c190052701f16510de6465ade46c647b5d1750f5c9cccf4b48ae7eac1455d6cadc015a3 WHIRLPOOL 7a8fcd095ad0a214a7f4e8c969b28538226a480548eee751a1043e2915bab21c6eab94710fe866edeae7c83d181a82d9c036eb4b7e642494b32ffa5e399f28d1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2017-03-23 3:13 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2017-03-23 3:13 UTC (permalink / raw
To: gentoo-commits
commit: 5df60fd6c21d2a95b3ff9366470b743b25385e0c
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 03:12:57 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 03:13:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df60fd6
dev-perl/DateTime-Format-Flexible: Bump to version 0.270.0
- EAPI6
- Add USE="examples"
- Purge POD tests
Upstream:
- Add support for a single string lang instead of arrayref
- Add support for ranges, "next <weekday>", "last <weekday>",
"next <month>", "last <month>", "<amount> <unit> from now",
"<[+-]amount> <unit>", "YYMMDD HH:MM:SS", "YYMMDD HH:MM:SS.NS"
"Mon D HH:MM:SS.NS TZ YYYY"
- "0/DD/YYYY" assumes "YYYY-10-DD" ( October )
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../DateTime-Format-Flexible-0.270.0.ebuild | 34 ++++++++++++++++++++++
dev-perl/DateTime-Format-Flexible/Manifest | 1 +
2 files changed, 35 insertions(+)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild
new file mode 100644
index 00000000000..ccfd94ed6a6
--- /dev/null
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=THINC
+DIST_VERSION=0.27
+DIST_EXAMPLES=( "example/*" )
+inherit perl-module
+
+DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+ dev-perl/DateTime
+ >=dev-perl/DateTime-Format-Builder-0.740.0
+ dev-perl/DateTime-TimeZone
+ dev-perl/List-MoreUtils
+ dev-perl/Module-Pluggable
+"
+DEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Test-MockTime
+ >=virtual/perl-Test-Simple-0.440.0
+ )
+"
+src_test() {
+ perl_rm_files t/002_pod.t t/003_podcoverage.t
+ perl-module_src_test
+}
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index b79ec07fe04..3f148e20a98 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1 +1,2 @@
DIST DateTime-Format-Flexible-0.26.tar.gz 71862 SHA256 436efbc5e87cc385112e1c44336427fea32df670caf2b7d6dbb7a113ac6e693d SHA512 70f5d50fd97bede5790853b526ee8150ab86592fa3f34ee16b0f26268c190052701f16510de6465ade46c647b5d1750f5c9cccf4b48ae7eac1455d6cadc015a3 WHIRLPOOL 7a8fcd095ad0a214a7f4e8c969b28538226a480548eee751a1043e2915bab21c6eab94710fe866edeae7c83d181a82d9c036eb4b7e642494b32ffa5e399f28d1
+DIST DateTime-Format-Flexible-0.27.tar.gz 73579 SHA256 8354cbfa820a283df795a1d7e838cbb8429e32db6483d55bfb7e5ada2cd6ac4e SHA512 add6af39b204308231c8023f75305b277ee2094416e7aee71b0ec23c4136ddca88952c6e11d4fb3df6b09e22ccbb5098924418ba0b8dc2296039a5c8e72ab069 WHIRLPOOL f2d01bd162eb271635cb1377fb4fe7fa3fad55454ead1017675a0d736fee05aeac2dd2c3326bfcd99726f5f012b43243d3cab49e16b4ed647c6523ba863e04b5
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2017-03-24 13:30 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2017-03-24 13:30 UTC (permalink / raw
To: gentoo-commits
commit: b1ac1f844d3d3ae1fcbd708daf8d20dc3457c7aa
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 13:11:55 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 13:11:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ac1f84
dev-perl/DateTime-Format-Flexible: Bump to version 0.280.0 re bug #613590
Upstream:
- Fix '.' in @INC issues
Bug: https://bugs.gentoo.org/613590
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../DateTime-Format-Flexible-0.280.0.ebuild | 34 ++++++++++++++++++++++
dev-perl/DateTime-Format-Flexible/Manifest | 1 +
2 files changed, 35 insertions(+)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild
new file mode 100644
index 00000000000..d14afe324c3
--- /dev/null
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=THINC
+DIST_VERSION=0.28
+DIST_EXAMPLES=( "example/*" )
+inherit perl-module
+
+DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+ dev-perl/DateTime
+ >=dev-perl/DateTime-Format-Builder-0.740.0
+ dev-perl/DateTime-TimeZone
+ dev-perl/List-MoreUtils
+ dev-perl/Module-Pluggable
+"
+DEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Test-MockTime
+ >=virtual/perl-Test-Simple-0.440.0
+ )
+"
+src_test() {
+ perl_rm_files t/002_pod.t t/003_podcoverage.t
+ perl-module_src_test
+}
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index 3f148e20a98..7ff2f2d89af 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1,2 +1,3 @@
DIST DateTime-Format-Flexible-0.26.tar.gz 71862 SHA256 436efbc5e87cc385112e1c44336427fea32df670caf2b7d6dbb7a113ac6e693d SHA512 70f5d50fd97bede5790853b526ee8150ab86592fa3f34ee16b0f26268c190052701f16510de6465ade46c647b5d1750f5c9cccf4b48ae7eac1455d6cadc015a3 WHIRLPOOL 7a8fcd095ad0a214a7f4e8c969b28538226a480548eee751a1043e2915bab21c6eab94710fe866edeae7c83d181a82d9c036eb4b7e642494b32ffa5e399f28d1
DIST DateTime-Format-Flexible-0.27.tar.gz 73579 SHA256 8354cbfa820a283df795a1d7e838cbb8429e32db6483d55bfb7e5ada2cd6ac4e SHA512 add6af39b204308231c8023f75305b277ee2094416e7aee71b0ec23c4136ddca88952c6e11d4fb3df6b09e22ccbb5098924418ba0b8dc2296039a5c8e72ab069 WHIRLPOOL f2d01bd162eb271635cb1377fb4fe7fa3fad55454ead1017675a0d736fee05aeac2dd2c3326bfcd99726f5f012b43243d3cab49e16b4ed647c6523ba863e04b5
+DIST DateTime-Format-Flexible-0.28.tar.gz 73722 SHA256 658929a426e765c2cc155c3951078f7d9a570a03c5c693938080748181fec3bc SHA512 e74de1cf104a37cf832d5976fd450476a42b945a8fd03ab1ddea504e4041009534cef9e72a75a120ab3ed9a1af63fb05bd5876632b594db9e7f21f419678d2d8 WHIRLPOOL 83b55db6cafd522933832231c6ef70426dfaecb6c7d3075e3e81961013f3772b89e962e707f5a83ae4774f7939d213826523a6c7d7506d9636893fe2f42f5d16
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2017-04-01 13:05 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2017-04-01 13:05 UTC (permalink / raw
To: gentoo-commits
commit: 8382e1e2b5f5e98ccddbb94a0d8c06e401014d5b
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 1 12:31:03 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Apr 1 13:05:01 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8382e1e2
dev-perl/DateTime-Format-Flexible: Remove old versions for bug #613590
Bug: https://bugs.gentoo.org/613590
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../DateTime-Format-Flexible-0.260.0.ebuild | 31 --------------------
.../DateTime-Format-Flexible-0.270.0.ebuild | 34 ----------------------
dev-perl/DateTime-Format-Flexible/Manifest | 2 --
3 files changed, 67 deletions(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.260.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.260.0.ebuild
deleted file mode 100644
index aa67f62725b..00000000000
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.260.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=THINC
-MODULE_VERSION=0.26
-inherit perl-module
-
-DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- dev-perl/DateTime
- >=dev-perl/DateTime-Format-Builder-0.740.0
- dev-perl/DateTime-TimeZone
- dev-perl/List-MoreUtils
- dev-perl/Module-Pluggable
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- dev-perl/Test-MockTime
- >=virtual/perl-Test-Simple-0.440.0
- )
-"
-
-SRC_TEST=do
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild
deleted file mode 100644
index ccfd94ed6a6..00000000000
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.270.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=THINC
-DIST_VERSION=0.27
-DIST_EXAMPLES=( "example/*" )
-inherit perl-module
-
-DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- dev-perl/DateTime
- >=dev-perl/DateTime-Format-Builder-0.740.0
- dev-perl/DateTime-TimeZone
- dev-perl/List-MoreUtils
- dev-perl/Module-Pluggable
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- dev-perl/Test-MockTime
- >=virtual/perl-Test-Simple-0.440.0
- )
-"
-src_test() {
- perl_rm_files t/002_pod.t t/003_podcoverage.t
- perl-module_src_test
-}
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index 7ff2f2d89af..944cfa1c9ca 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1,3 +1 @@
-DIST DateTime-Format-Flexible-0.26.tar.gz 71862 SHA256 436efbc5e87cc385112e1c44336427fea32df670caf2b7d6dbb7a113ac6e693d SHA512 70f5d50fd97bede5790853b526ee8150ab86592fa3f34ee16b0f26268c190052701f16510de6465ade46c647b5d1750f5c9cccf4b48ae7eac1455d6cadc015a3 WHIRLPOOL 7a8fcd095ad0a214a7f4e8c969b28538226a480548eee751a1043e2915bab21c6eab94710fe866edeae7c83d181a82d9c036eb4b7e642494b32ffa5e399f28d1
-DIST DateTime-Format-Flexible-0.27.tar.gz 73579 SHA256 8354cbfa820a283df795a1d7e838cbb8429e32db6483d55bfb7e5ada2cd6ac4e SHA512 add6af39b204308231c8023f75305b277ee2094416e7aee71b0ec23c4136ddca88952c6e11d4fb3df6b09e22ccbb5098924418ba0b8dc2296039a5c8e72ab069 WHIRLPOOL f2d01bd162eb271635cb1377fb4fe7fa3fad55454ead1017675a0d736fee05aeac2dd2c3326bfcd99726f5f012b43243d3cab49e16b4ed647c6523ba863e04b5
DIST DateTime-Format-Flexible-0.28.tar.gz 73722 SHA256 658929a426e765c2cc155c3951078f7d9a570a03c5c693938080748181fec3bc SHA512 e74de1cf104a37cf832d5976fd450476a42b945a8fd03ab1ddea504e4041009534cef9e72a75a120ab3ed9a1af63fb05bd5876632b594db9e7f21f419678d2d8 WHIRLPOOL 83b55db6cafd522933832231c6ef70426dfaecb6c7d3075e3e81961013f3772b89e962e707f5a83ae4774f7939d213826523a6c7d7506d9636893fe2f42f5d16
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2020-07-25 18:34 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2020-07-25 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 7c064ebd3c4a363240f7ce8a176c1b339db43951
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 25 18:33:58 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Jul 25 18:34:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c064ebd
dev-perl/DateTime-Format-Flexible: Bump to version 0.320.0
- EAPI7
- Unconditionally patch bad tests
Upstream:
- Add support for "DD Month YYYY at HH:MM"
- Add support for bare times with am/pm
- Add support for format "MON" + "DD'YY"
- Add support for bare times with "at <DESC>"
- Add support for "Mon DD, YYYY HH:MM"
- Add support for "Mon DD, YY HH:MM"
- Add support for offset timezones without a space seperator and
formated HH:MM
- Allow negative timezone offsets like -ZZ and -ZZZZ, with and without
spaces
- Validate timezone offsets
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../DateTime-Format-Flexible-0.320.0.ebuild | 37 ++++++++++++++++++++++
dev-perl/DateTime-Format-Flexible/Manifest | 1 +
2 files changed, 38 insertions(+)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild
new file mode 100644
index 00000000000..7b41977acc3
--- /dev/null
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=THINC
+DIST_VERSION=0.32
+DIST_EXAMPLES=( "example/*" )
+inherit perl-module
+
+DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-perl/DateTime
+ >=dev-perl/DateTime-Format-Builder-0.740.0
+ dev-perl/DateTime-TimeZone
+ dev-perl/List-MoreUtils
+ dev-perl/Module-Pluggable
+"
+DEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Test-Exception
+ dev-perl/Test-MockTime
+ dev-perl/Test-NoWarnings
+ >=virtual/perl-Test-Simple-0.440.0
+ )
+"
+PERL_RM_FILES=(
+ t/002_pod.t
+ t/003_podcoverage.t
+)
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index 3169e0c3c5b..b61519defcb 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1 +1,2 @@
DIST DateTime-Format-Flexible-0.28.tar.gz 73722 BLAKE2B 38e23f7795ca66154e303eb7260568a27b08af937ffeef2aa61b03a81ad91d55e6a46e08105d564034a8cf02fc00ec87c26ce6510aed76e08ce73d3ec8c16abb SHA512 e74de1cf104a37cf832d5976fd450476a42b945a8fd03ab1ddea504e4041009534cef9e72a75a120ab3ed9a1af63fb05bd5876632b594db9e7f21f419678d2d8
+DIST DateTime-Format-Flexible-0.32.tar.gz 76438 BLAKE2B b7a0f5abdba67e70979c510f13849697a9107eb275d5702ce6eafaa5abed140ee4072778642157f827823badd0f425e861927d5956a4818f6d0ce31c821c28fc SHA512 90e0e83cecff5daab132860c2da2d77c92c0791fe8d0d6aa9275c1e0d603b644a8531848d8fb4bad8e1800c02a4e571ceda1a4bf4b8ee9bd7ac0215898db2882
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2020-07-25 18:41 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2020-07-25 18:41 UTC (permalink / raw
To: gentoo-commits
commit: 2e598b37791eb925a179a7ec05fd79158b7c5a4d
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 25 18:40:40 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Jul 25 18:40:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e598b37
dev-perl/DateTime-Format-Flexible: Fix DEPEND vs BDEPEND
Ugh. I hate this mistake.
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild
index 7b41977acc3..6d0b678a7d3 100644
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.320.0.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
dev-perl/List-MoreUtils
dev-perl/Module-Pluggable
"
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/Test-Exception
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2020-08-31 8:48 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2020-08-31 8:48 UTC (permalink / raw
To: gentoo-commits
commit: 37eae13081f997d41af3f5cfcd4df37e87751d3c
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 08:09:20 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 08:46:56 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37eae130
dev-perl/DateTime-Format-Flexible: Cleanup old 0.280.0
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../DateTime-Format-Flexible-0.280.0.ebuild | 35 ----------------------
dev-perl/DateTime-Format-Flexible/Manifest | 1 -
2 files changed, 36 deletions(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild
deleted file mode 100644
index 435b4d584ce..00000000000
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.280.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=THINC
-DIST_VERSION=0.28
-DIST_EXAMPLES=( "example/*" )
-inherit perl-module
-
-DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-perl/DateTime
- >=dev-perl/DateTime-Format-Builder-0.740.0
- dev-perl/DateTime-TimeZone
- dev-perl/List-MoreUtils
- dev-perl/Module-Pluggable
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- dev-perl/Test-MockTime
- >=virtual/perl-Test-Simple-0.440.0
- )
-"
-src_test() {
- perl_rm_files t/002_pod.t t/003_podcoverage.t
- perl-module_src_test
-}
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index b61519defcb..34d058efd30 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1,2 +1 @@
-DIST DateTime-Format-Flexible-0.28.tar.gz 73722 BLAKE2B 38e23f7795ca66154e303eb7260568a27b08af937ffeef2aa61b03a81ad91d55e6a46e08105d564034a8cf02fc00ec87c26ce6510aed76e08ce73d3ec8c16abb SHA512 e74de1cf104a37cf832d5976fd450476a42b945a8fd03ab1ddea504e4041009534cef9e72a75a120ab3ed9a1af63fb05bd5876632b594db9e7f21f419678d2d8
DIST DateTime-Format-Flexible-0.32.tar.gz 76438 BLAKE2B b7a0f5abdba67e70979c510f13849697a9107eb275d5702ce6eafaa5abed140ee4072778642157f827823badd0f425e861927d5956a4818f6d0ce31c821c28fc SHA512 90e0e83cecff5daab132860c2da2d77c92c0791fe8d0d6aa9275c1e0d603b644a8531848d8fb4bad8e1800c02a4e571ceda1a4bf4b8ee9bd7ac0215898db2882
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2021-10-18 19:43 Andreas K. Hüttel
0 siblings, 0 replies; 11+ messages in thread
From: Andreas K. Hüttel @ 2021-10-18 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 7c5aa5809d5c6daa1fa62e72842a86940d1f3623
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 18 19:36:50 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Oct 18 19:42:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5aa580
dev-perl/DateTime-Format-Flexible: Version bump 0.34
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
.../DateTime-Format-Flexible-0.340.0.ebuild | 35 ++++++++++++++++++++++
dev-perl/DateTime-Format-Flexible/Manifest | 1 +
2 files changed, 36 insertions(+)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
new file mode 100644
index 00000000000..9f0ef2c2586
--- /dev/null
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=THINC
+DIST_VERSION=0.34
+DIST_EXAMPLES=( "example/*" )
+inherit perl-module
+
+DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-perl/DateTime
+ >=dev-perl/DateTime-Format-Builder-0.740.0
+ dev-perl/DateTime-TimeZone
+ dev-perl/List-MoreUtils
+"
+BDEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Test-Exception
+ dev-perl/Test-MockTime
+ dev-perl/Test-NoWarnings
+ >=virtual/perl-Test-Simple-0.440.0
+ )
+"
+
+PERL_RM_FILES=(
+ t/002_pod.t
+ t/003_podcoverage.t
+)
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index 34d058efd30..e750c64bcdd 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1 +1,2 @@
DIST DateTime-Format-Flexible-0.32.tar.gz 76438 BLAKE2B b7a0f5abdba67e70979c510f13849697a9107eb275d5702ce6eafaa5abed140ee4072778642157f827823badd0f425e861927d5956a4818f6d0ce31c821c28fc SHA512 90e0e83cecff5daab132860c2da2d77c92c0791fe8d0d6aa9275c1e0d603b644a8531848d8fb4bad8e1800c02a4e571ceda1a4bf4b8ee9bd7ac0215898db2882
+DIST DateTime-Format-Flexible-0.34.tar.gz 76347 BLAKE2B e1b2b5506be26ba274a80889c17bd7f5f3073d10e01948c9c3b591476dfd19d048c7d25269802bc071b1c9df1dc1752ab3febe524ca22b997ccbec7674fd0b0b SHA512 2b2d730aaa9c8f6152f57493b8a0b2f9600b06dcdf2776bd1cb3fbf26c3b5ab31351a32fccb5072ed7410b558354fb3f9e3e8fa5af99da846fc623ae25e1f763
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2021-12-13 5:43 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-12-13 5:43 UTC (permalink / raw
To: gentoo-commits
commit: 4822c6200eb70726e88903053dd2c099b8df299d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 13 05:43:06 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 13 05:43:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4822c620
dev-perl/DateTime-Format-Flexible: Stabilize 0.340.0 amd64, #828234
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
index 9f0ef2c25864..b1a204a46204 100644
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="
dev-perl/DateTime
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2022-09-13 10:40 Jakov Smolić
0 siblings, 0 replies; 11+ messages in thread
From: Jakov Smolić @ 2022-09-13 10:40 UTC (permalink / raw
To: gentoo-commits
commit: 19ef6fe9ae3e88bd8fee4848274cd53d4439726d
Author: Yu Gu <guyu2876 <AT> gmail <DOT> com>
AuthorDate: Mon Sep 12 12:20:45 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 13 10:39:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ef6fe9
dev-perl/DateTime-Format-Flexible: Keyword 0.340.0 riscv, #869833
Signed-off-by: Yu Gu <guyu2876 <AT> gmail.com>
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
.../DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
index 51c8d32b66a3..5af85c8e7b29 100644
--- a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.340.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86"
RDEPEND="
dev-perl/DateTime
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/
@ 2024-10-17 7:24 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-10-17 7:24 UTC (permalink / raw
To: gentoo-commits
commit: e669910fa9ecb780f6089d07ecb2ae433e70907f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 07:23:38 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 07:23:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e669910f
dev-perl/DateTime-Format-Flexible: add 0.360.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../DateTime-Format-Flexible-0.360.0.ebuild | 36 ++++++++++++++++++++++
dev-perl/DateTime-Format-Flexible/Manifest | 1 +
2 files changed, 37 insertions(+)
diff --git a/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.360.0.ebuild b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.360.0.ebuild
new file mode 100644
index 000000000000..55d46c17b4da
--- /dev/null
+++ b/dev-perl/DateTime-Format-Flexible/DateTime-Format-Flexible-0.360.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=THINC
+DIST_VERSION=0.36
+DIST_EXAMPLES=( "example/*" )
+inherit perl-module
+
+DESCRIPTION="Flexibly parse strings and turn them into DateTime objects"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-perl/DateTime
+ >=dev-perl/DateTime-Format-Builder-0.740.0
+ dev-perl/DateTime-TimeZone
+ dev-perl/List-MoreUtils
+"
+BDEPEND="
+ ${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ dev-perl/Test-Exception
+ dev-perl/Test-MockTime
+ dev-perl/Test-NoWarnings
+ >=virtual/perl-Test-Simple-0.440.0
+ )
+"
+
+PERL_RM_FILES=(
+ t/002_pod.t
+ t/003_podcoverage.t
+)
diff --git a/dev-perl/DateTime-Format-Flexible/Manifest b/dev-perl/DateTime-Format-Flexible/Manifest
index 6bd84e86a08f..0aa88f7b18ad 100644
--- a/dev-perl/DateTime-Format-Flexible/Manifest
+++ b/dev-perl/DateTime-Format-Flexible/Manifest
@@ -1 +1,2 @@
DIST DateTime-Format-Flexible-0.34.tar.gz 76347 BLAKE2B e1b2b5506be26ba274a80889c17bd7f5f3073d10e01948c9c3b591476dfd19d048c7d25269802bc071b1c9df1dc1752ab3febe524ca22b997ccbec7674fd0b0b SHA512 2b2d730aaa9c8f6152f57493b8a0b2f9600b06dcdf2776bd1cb3fbf26c3b5ab31351a32fccb5072ed7410b558354fb3f9e3e8fa5af99da846fc623ae25e1f763
+DIST DateTime-Format-Flexible-0.36.tar.gz 76034 BLAKE2B b6858761cfb1946e1e188c887999f08d6f1b177e8bf9f0f7bf35342ae299909b0884e716df6d689a5a70cd19c8f91dacc56af90eb29e796d4b441f8967c42ff7 SHA512 728acfa1199032add6c26eae5ad69d71592eeaa719f8be8b26d2735c200811cdc83cef2189bd358c222ae69529d09e81c019f3d26348c9f993f1927cc371c715
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-17 7:24 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-01 13:05 [gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Flexible/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2024-10-17 7:24 Sam James
2022-09-13 10:40 Jakov Smolić
2021-12-13 5:43 Sam James
2021-10-18 19:43 Andreas K. Hüttel
2020-08-31 8:48 Kent Fredric
2020-07-25 18:41 Kent Fredric
2020-07-25 18:34 Kent Fredric
2017-03-24 13:30 Kent Fredric
2017-03-23 3:13 Kent Fredric
2016-01-01 17:52 Andreas Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox