Allow to pass prepared mock environment to F:R:Package::rebuild
[Fedora-Rebuild.git] / Changes
blob5c4440349cf884c5ef25d8cd4fac493f22b80811
1 v0.10.0
2 =======
3 - Fix local repozitory initialization if the repozitory is empty.
5 - Increasing package NEVRA while building SRPM only if not yet updated.
7 - Fix counting failures.
9 - Add `verbosesolver' configuration atribute to disable tracing dependency
10   solver. This is useful if the dependency tree is big and the solver consumes
11   a lot of memory due the tracing.
13 - Document `mock' mode.
15 - Fix scheduler in in select_rebuildable().
17 - Apply threaded glob() crash work-around. See Perl bug report
18   <https://rt.perl.org/rt3/Ticket/Display.html?id=117823> for more details.
20 - Add `mock_install_group' configuration attribute to control which yum group
21   to install into mock environment. Default value is `buildsys-build'.
23 v0.9.1
24 ======
26 - Do not cache mock environment when building a package because each package
27   uses different environment.
29 - Share mock environment when building source packages in single thread. This
30   is the fastest method now.
32 v0.9.0
33 ======
35 - Add new building mode `mock'. It builds source and binary packages using
36   mock tool. You need to specify where the mock can take packages by ne
37   `repourls' attribute. Already rebuilt packages get available as additional
38   repository automatically.
40 - Source packages are built using mock in `koji' mode either. This allows
41   influence generated build-requires during SRPM build phase by build root
42   environment (RPM macros, external tools).
44 - It's necessary to define build architecture with `architecture' attribute.
45   This is needed for mock mode.
47 - It's possible to retrieve source repositories by anonymous git access if new
48   attribute `anonymous' is true.
50 - It's possible to override fedpkg dist name value by new `pkgdist' attribute.
51   This allows building packages from private git branch locally.
53 v0.8.0
54 ======
56 - Fix progress bar while selecting rebuildable packages.
58 - rebuildperl can read configuration for ~/.rebuildperlrc.
60 - New comparebuildroots tool. It compares latest build of source package in
61   given koji build root specified by tag.
63 v0.7.0
64 ======
66 - Draw progress bar for each parallelized task (e.g. loading dependencies,
67   selecting buildable packages). Please note there is no overall progress bar.
69 v0.6.0
70 ======
72 - Unordered build mode added (set ordered to false in Fedora::Rebuild
73   constructor). This allows to build packages disregarding dependencies.
75 v0.5.1
76 ======
78 - Handle exception in scheduler jobs.
80 - Add work-around for fedpkg output bug
81   (https://bugzilla.redhat.com/show_bug.cgi?id=721389).
83 v0.5.0
84 ======
86 - Incompatible change: Format of binary package provides and requires has
87   changed. Please remove `.runrequiresstore' and `.providesstore' lock files.
88   The dependencies cache will be regenerated from already downloaded binary
89   packages.
91 - When selecting packages to rebuild, run-time dependenices of build-time
92   requirements of the package in question are considered too. Unfortunatelly
93   the dependency solver misbehaves in more than one thread.
95 - The number of solver threads is controlled by `selectthreads' attribute of
96   Fedora::Rebuild contructor. Please set it to 1.
98 - Computed recursive build-time dependecies are reported to
99   `.is_installable.log' files. Their's corresponding lock files are ignored.
101 v0.4.1
102 ======
104 - Fix storing and retrieving Koji task ID in submitbuild and build states.
106 v0.4.0
107 ======
109 - Record current time for each log message. (Requires DateTime Perl module.)
111 - Split `build' state to `submitbuild' and `build' state. The first submits
112   build to Koji and stores Koji task ID. It submits even if build exists in
113   Koji. This is needed to redo failed builds. Then it created state lock and
114   resubmit never more. Remove the lock to force resubmit. Second state just
115   waits to finishing build. In case of local build, remove submitbuild is
116   skipped always and rebuild is performed in build state. This approach is
117   still not ideal. We must found better heuristics to differentiate our and
118   others building failures and redoable failures.
120 - Retrieve requires of binary rebuilt packages. This is preparation for future
121   support of indirect build-time dependencies. It will process old done binary
122   packages automatically.
124 v0.3.0
125 ======
127 - Wait for build root ration after rebuilding current set of rebuildable
128   packages. This allows to utilize whole Koji power with low local thread
129   number.
131 - Fix logging at providesstore phase 
133 v0.2.1
134 ======
136 - Fix undefined Fedore::Rebuild->last_fail()
138 - Recreate SRPM package if missing when getting build requires
140 - Close state log file when state finishes successfully
142 v0.2.0
143 ======
145 - Fix build root identification when watching a koji for rotation.
147 - Fix child exit status decoding. You get exit code or signal name into log
148   now.
150 - Die optionally in case a lot of consequent failures. Driven by
151   `failurelimit' attribute. Default is 0 (i.e. do not die).
153 - Cache build requires and binary provides. You can run this script on v0.1.0
154   directory tree, the cache will be generated from RPM packages automatically.
156 v0.1.0
157 ======
159 - Introduce `loadthreads' attribute to tune number of threads distilling
160   dependencies to supress local I/O load.