Пакет alt-tasks: Specfile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | Name: alt-tasks Version: 0.12.1 Release: alt1 Summary: Utility for observing ALT Linux tasks License: GPLv3 Group: Development/Tools Packager: Alexey Appolonov <alexey@altlinux.org> # http://git.altlinux.org/people/alexey/packages/?p=alt-tasks.git Source: %{name}-%{version}.tar BuildRequires: golang %description %{name} recursively searches for and parses all "d-t-s-evr.list" files in specified directories, then selects and prints out those tasks that satisfy a given criteria. %prep %setup %build make tests make %install mkdir -p %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_defaultdocdir}/%{name} cp %{name} %{buildroot}%{_bindir} cp COPYING readme.txt %{buildroot}%{_defaultdocdir}/%{name} %files %{_bindir}/%{name} %{_defaultdocdir}/%{name} # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # %changelog * Fri Jan 23 2026 Alexey Appolonov <alexey@altlinux.org> 0.12.1-alt1 - A correct handling of a couple of special situations in which a task ID has been specified. * Thu Nov 20 2025 Alexey Appolonov <alexey@altlinux.org> 0.12.0-alt1 - New ability to add data that corresponds to left/right boundaries of a specified range to the results; - New ability to impose various time conditions simultaneously. * Tue Oct 29 2024 Alexey Appolonov <alexey@altlinux.org> 0.11.0-alt1 - There is no need to access the ALT server (team:/tasks/archive/done); - New ability to select today's and yesterday's tasks, as well as tasks completed until today, using simple flags. * Thu Oct 17 2024 Alexey Appolonov <alexey@altlinux.org> 0.10.0-alt1 - Ability to display Unix time of a task while using a custom output format; - Ability to select tasks using a range of task IDs (the commit time of a task specified by the "after_task" and "before_task" parameters are used the same as values of the "after" and "before" parameters respectively). * Wed Mar 20 2024 Alexey Appolonov <alexey@altlinux.org> 0.9.1-alt1 - Updated help notes. * Fri Nov 17 2023 Alexey Appolonov <alexey@altlinux.org> 0.9.0-alt2 - Corrected copyright notices. * Mon Nov 06 2023 Alexey Appolonov <alexey@altlinux.org> 0.9.0-alt1 - Ability to filter the results by src package names taken from a txt file; - Ability to process all targets at once (with a single command). * Sat Nov 04 2023 Alexey Appolonov <alexey@altlinux.org> 0.8.0-alt1 - Ability to filter resuls not only by a src package name, but also by its version and release; - Branch names are displayed in the results. * Wed Nov 01 2023 Alexey Appolonov <alexey@altlinux.org> 0.7.0-alt1 - The missing initial package versions are taken from the "plan/rm-src" files of the tasks. * Fri Oct 27 2023 Alexey Appolonov <alexey@altlinux.org> 0.6.0-alt1 - A dump file is not used if the file "~/.alt-tasks/src_list" was modified after this dump file was created (rescan is performed). * Sat Oct 14 2023 Alexey Appolonov <alexey@altlinux.org> 0.5.0-alt1 - Time saving on the processing the timelines of packages if a time of the previous processing is no latter than a requested "before" time (the dump file is used even if it's expired); - The "after" param is checked to ensure that it doesn't exceed the current time (instead of getting an empty result, the program terminates with an error). * Thu Oct 11 2023 Alexey Appolonov <alexey@altlinux.org> 0.4.0-alt1 - A previous version of a package is displayed for each subtask (use a new flag "--no_prev_ver" for the former behavior) as well as the "built from" part of a subtask commit designation ("gear" or "srpm"). * Mon Mar 01 2021 Alexey Appolonov <alexey@altlinux.org> 0.3.0-alt2 - Fixed build after new release of the "golang" package ("1.16-alt1"). * Fri Jul 03 2020 Alexey Appolonov <alexey@altlinux.org> 0.3.0-alt1 - Ability to format the output according to a given format string; - Ability to choose between verbose and not verbose output mode. * Thu Jun 25 2020 Alexey Appolonov <alexey@altlinux.org> 0.2.1-alt1 - Couple of minor bug fixes. * Fri Jun 19 2020 Alexey Appolonov <alexey@altlinux.org> 0.2.0-alt1 - Improved performance by the use of binary dumps. * Tue May 12 2020 Alexey Appolonov <alexey@altlinux.org> 0.1.0-alt1 - Initial release. |