My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/buildbot/default.nix

110 lines
2.9 KiB

buildbot: 2.7.0 -> 2.8.0 ``` Bug fixes Fix GitHubEventHandler to include files in Change that comes from a github PR (issue # 5294) Updated the Docker container buildbot-master to Alpine 3.11 to fix segmentation faults caused by an old version of musl Base64 encoding logs and attachments sent via email so emails conform to RFC 5322 2.1.1 Handling the case where the BitbucketStatusPush return code is not 200 When cancelling a buildrequest, the reason field is now correctly transmitted all the way to the cancelled step. Fix Cache-control header to be compliant with RFC 7234 (issue # 5220) Fix GerritEventLogPoller class to be declared as entry_point (can be used in master.cfg file) Git poller: add –ignore-missing argument to git log call to avoid fatal: bad object errors Log watcher looks for the “tail” utility in the right location on Haiku OS. Add limit and filtering support for the changes data API as described in issue # 5207 Improved Documentation Make docs build with the latest sphinx and improve rendering of the example HTML file for custom dashboard Make docs build with Sphinx 3 and fix some typos and incorrect Python module declarations Features Property and Interpolate objects can now be compared. This will generate a renderable that will be evaluated at runtime. see Renderable Comparison. Added argument count to lock access to allow a lock to consume a variable amount of units Added arguments pollRandomDelayMin and pollRandomDelayMax to HgPoller, GitPoller, P4Poller, SvnPoller to spread the polling load ```
4 years ago
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, makeWrapper, isPy3k,
python, twisted, jinja2, zope_interface, future, sqlalchemy,
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins,
parameterized, git, openssh, glibcLocales, nixosTests }:
let
withPlugins = plugins: buildPythonPackage {
name = "${package.name}-with-plugins";
phases = [ "installPhase" "fixupPhase" ];
buildInputs = [ makeWrapper ];
propagatedBuildInputs = plugins ++ package.propagatedBuildInputs;
installPhase = ''
makeWrapper ${package}/bin/buildbot $out/bin/buildbot \
--prefix PYTHONPATH : "${package}/${python.sitePackages}:$PYTHONPATH"
ln -sfv ${package}/lib $out/lib
'';
passthru = package.passthru // {
withPlugins = morePlugins: withPlugins (morePlugins ++ plugins);
};
};
package = buildPythonPackage rec {
pname = "buildbot";
buildbot: 2.7.0 -> 2.8.0 ``` Bug fixes Fix GitHubEventHandler to include files in Change that comes from a github PR (issue # 5294) Updated the Docker container buildbot-master to Alpine 3.11 to fix segmentation faults caused by an old version of musl Base64 encoding logs and attachments sent via email so emails conform to RFC 5322 2.1.1 Handling the case where the BitbucketStatusPush return code is not 200 When cancelling a buildrequest, the reason field is now correctly transmitted all the way to the cancelled step. Fix Cache-control header to be compliant with RFC 7234 (issue # 5220) Fix GerritEventLogPoller class to be declared as entry_point (can be used in master.cfg file) Git poller: add –ignore-missing argument to git log call to avoid fatal: bad object errors Log watcher looks for the “tail” utility in the right location on Haiku OS. Add limit and filtering support for the changes data API as described in issue # 5207 Improved Documentation Make docs build with the latest sphinx and improve rendering of the example HTML file for custom dashboard Make docs build with Sphinx 3 and fix some typos and incorrect Python module declarations Features Property and Interpolate objects can now be compared. This will generate a renderable that will be evaluated at runtime. see Renderable Comparison. Added argument count to lock access to allow a lock to consume a variable amount of units Added arguments pollRandomDelayMin and pollRandomDelayMax to HgPoller, GitPoller, P4Poller, SvnPoller to spread the polling load ```
4 years ago
version = "2.8.0";
buildbot: 2.7.0 -> 2.8.0 ``` Bug fixes Fix GitHubEventHandler to include files in Change that comes from a github PR (issue # 5294) Updated the Docker container buildbot-master to Alpine 3.11 to fix segmentation faults caused by an old version of musl Base64 encoding logs and attachments sent via email so emails conform to RFC 5322 2.1.1 Handling the case where the BitbucketStatusPush return code is not 200 When cancelling a buildrequest, the reason field is now correctly transmitted all the way to the cancelled step. Fix Cache-control header to be compliant with RFC 7234 (issue # 5220) Fix GerritEventLogPoller class to be declared as entry_point (can be used in master.cfg file) Git poller: add –ignore-missing argument to git log call to avoid fatal: bad object errors Log watcher looks for the “tail” utility in the right location on Haiku OS. Add limit and filtering support for the changes data API as described in issue # 5207 Improved Documentation Make docs build with the latest sphinx and improve rendering of the example HTML file for custom dashboard Make docs build with Sphinx 3 and fix some typos and incorrect Python module declarations Features Property and Interpolate objects can now be compared. This will generate a renderable that will be evaluated at runtime. see Renderable Comparison. Added argument count to lock access to allow a lock to consume a variable amount of units Added arguments pollRandomDelayMin and pollRandomDelayMax to HgPoller, GitPoller, P4Poller, SvnPoller to spread the polling load ```
4 years ago
# tests fail with the 2.8.0 sdist, so fetchFromGitHub instead
# https://github.com/buildbot/buildbot/pull/5322
src = fetchFromGitHub {
owner = "buildbot";
repo = "buildbot";
rev = "v${version}";
sha256 = "0akd61mgjp53c3vyf2yyzd0xf0cjwpvsi7g8pz72xrvnil1s4w7k";
};
buildbot: 2.7.0 -> 2.8.0 ``` Bug fixes Fix GitHubEventHandler to include files in Change that comes from a github PR (issue # 5294) Updated the Docker container buildbot-master to Alpine 3.11 to fix segmentation faults caused by an old version of musl Base64 encoding logs and attachments sent via email so emails conform to RFC 5322 2.1.1 Handling the case where the BitbucketStatusPush return code is not 200 When cancelling a buildrequest, the reason field is now correctly transmitted all the way to the cancelled step. Fix Cache-control header to be compliant with RFC 7234 (issue # 5220) Fix GerritEventLogPoller class to be declared as entry_point (can be used in master.cfg file) Git poller: add –ignore-missing argument to git log call to avoid fatal: bad object errors Log watcher looks for the “tail” utility in the right location on Haiku OS. Add limit and filtering support for the changes data API as described in issue # 5207 Improved Documentation Make docs build with the latest sphinx and improve rendering of the example HTML file for custom dashboard Make docs build with Sphinx 3 and fix some typos and incorrect Python module declarations Features Property and Interpolate objects can now be compared. This will generate a renderable that will be evaluated at runtime. see Renderable Comparison. Added argument count to lock access to allow a lock to consume a variable amount of units Added arguments pollRandomDelayMin and pollRandomDelayMax to HgPoller, GitPoller, P4Poller, SvnPoller to spread the polling load ```
4 years ago
sourceRoot = "./source/master";
propagatedBuildInputs = [
# core
twisted
jinja2
zope_interface
sqlalchemy
sqlalchemy_migrate
dateutil
txaio
autobahn
pyjwt
pyyaml
]
# tls
++ twisted.extras.tls;
checkInputs = [
treq
txrequests
pyjade
boto3
moto
mock
python-lz4
setuptoolsTrial
isort
pylint
flake8
buildbot-worker
buildbot-pkg
buildbot-plugins.www
parameterized
git
openssh
glibcLocales
];
patches = [
# This patch disables the test that tries to read /etc/os-release which
# is not accessible in sandboxed builds.
./skip_test_linux_distro.patch
];
postPatch = ''
substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
'';
# TimeoutErrors on slow machines -> aarch64
doCheck = !stdenv.isAarch64;
preCheck = ''
export LC_ALL="en_US.UTF-8"
export PATH="$out/bin:$PATH"
'';
disabled = !isPy3k;
passthru = {
inherit withPlugins;
tests.buildbot = nixosTests.buildbot;
};
meta = with lib; {
homepage = "https://buildbot.net/";
description = "Buildbot is an open-source continuous integration framework for automating software build, test, and release processes";
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
license = licenses.gpl2;
};
};
in package