Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] tools/general_assembly: avoid using DateTime->is_between()
@ 2023-12-07 16:49 Anton Khirnov
  2023-12-07 19:19 ` Michael Niedermayer
  0 siblings, 1 reply; 2+ messages in thread
From: Anton Khirnov @ 2023-12-07 16:49 UTC (permalink / raw)
  To: ffmpeg-devel

It was added relatively recently and is not available everywhere.
---
 tools/general_assembly.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/general_assembly.pl b/tools/general_assembly.pl
index aa10384aef..0dafa82e27 100755
--- a/tools/general_assembly.pl
+++ b/tools/general_assembly.pl
@@ -72,7 +72,7 @@ sub get_date_range {
     # date when the regular update rule is first applied
     my $date_first_regular = DateTime->new(year => 2024);
 
-    if ($now->is_between($date_ga_rule, $date_first_regular)) {
+    if ($now > $date_ga_rule && $now < $date_first_regular) {
         return ($date_ga_rule->clone()->set_year($date_ga_rule->year - 3), $date_ga_rule);
     }
 
@@ -123,7 +123,7 @@ foreach my $line (@shortlog) {
 
 foreach my $entry (@extra_members) {
     my $elected = $entry->[2];
-    if ($date->is_between($elected, $elected->clone()->set_year($elected->year + 2))) {
+    if ($date > $elected && $date < $elected->clone()->set_year($elected->year + 2)) {
         $assembly{$entry->[0]} = $entry->[1];
     }
 }
-- 
2.42.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

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

end of thread, other threads:[~2023-12-07 19:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-07 16:49 [FFmpeg-devel] [PATCH] tools/general_assembly: avoid using DateTime->is_between() Anton Khirnov
2023-12-07 19:19 ` Michael Niedermayer

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git