pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel Add py-buildbot-badges 2.6.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/26db44bbf6d6
branches:  trunk
changeset: 445768:26db44bbf6d6
user:      maya <maya%pkgsrc.org@localhost>
date:      Thu Jan 28 21:23:30 2021 +0000

description:
Add py-buildbot-badges 2.6.0

The BuildBot is a system to automate the compile/test cycle required by
most software projects to validate code changes. By automatically
rebuilding and testing the tree each time something has changed, build
problems are pinpointed quickly, before other developers are
inconvenienced by the failure. The guilty developer can be identified
and harassed without human intervention. By running the builds on a
variety of platforms, developers who do not have the facilities to test
their changes everywhere before checkin will at least know shortly
afterwards whether they have broken the build or not. Warning counts,
lint checks, image size, compile time, and other build parameters can
be tracked over time, are more visible, and are therefore easier to
improve.

This package contains the Badges Plugin.

diffstat:

 devel/Makefile                    |   3 ++-
 devel/py-buildbot-badges/DESCR    |  14 ++++++++++++++
 devel/py-buildbot-badges/Makefile |  24 ++++++++++++++++++++++++
 devel/py-buildbot-badges/PLIST    |  15 +++++++++++++++
 devel/py-buildbot-badges/distinfo |   6 ++++++
 5 files changed, 61 insertions(+), 1 deletions(-)

diffs (92 lines):

diff -r f836ce93d3aa -r 26db44bbf6d6 devel/Makefile
--- a/devel/Makefile    Thu Jan 28 21:22:04 2021 +0000
+++ b/devel/Makefile    Thu Jan 28 21:23:30 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3326 2021/01/28 21:17:37 maya Exp $
+# $NetBSD: Makefile,v 1.3327 2021/01/28 21:23:30 maya Exp $
 #
 
 COMMENT=       Development utilities
@@ -2209,6 +2209,7 @@
 SUBDIR+=       py-boost
 SUBDIR+=       py-bugzilla
 SUBDIR+=       py-buildbot
+SUBDIR+=       py-buildbot-badges
 SUBDIR+=       py-buildbot-console-view
 SUBDIR+=       py-buildbot-grid-view
 SUBDIR+=       py-buildbot-pkg
diff -r f836ce93d3aa -r 26db44bbf6d6 devel/py-buildbot-badges/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-buildbot-badges/DESCR    Thu Jan 28 21:23:30 2021 +0000
@@ -0,0 +1,14 @@
+The BuildBot is a system to automate the compile/test cycle required by
+most software projects to validate code changes. By automatically
+rebuilding and testing the tree each time something has changed, build
+problems are pinpointed quickly, before other developers are
+inconvenienced by the failure. The guilty developer can be identified
+and harassed without human intervention. By running the builds on a
+variety of platforms, developers who do not have the facilities to test
+their changes everywhere before checkin will at least know shortly
+afterwards whether they have broken the build or not. Warning counts,
+lint checks, image size, compile time, and other build parameters can
+be tracked over time, are more visible, and are therefore easier to
+improve.
+
+This package contains the Badges Plugin.
diff -r f836ce93d3aa -r 26db44bbf6d6 devel/py-buildbot-badges/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-buildbot-badges/Makefile Thu Jan 28 21:23:30 2021 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2021/01/28 21:23:30 maya Exp $
+
+DISTNAME=      buildbot-badges-2.6.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    devel net python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=b/buildbot-badges/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://buildbot.net/
+COMMENT=       Badges Plugin for the buildbot CI system
+LICENSE=       gnu-gpl-v2
+
+DEPENDS+=      ${PYPKGPREFIX}-buildbot-[0-9]*:../../devel/py-buildbot
+DEPENDS+=      ${PYPKGPREFIX}-cairocffi-[0-9]*:../../graphics/py-cairocffi
+DEPENDS+=      ${PYPKGPREFIX}-cairosvg-[0-9]*:../../converters/py-cairosvg
+DEPENDS+=      ${PYPKGPREFIX}-klein-[0-9]*:../../www/py-klein
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-buildbot-pkg-[0-9]*:../../devel/py-buildbot-pkg
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r f836ce93d3aa -r 26db44bbf6d6 devel/py-buildbot-badges/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-buildbot-badges/PLIST    Thu Jan 28 21:23:30 2021 +0000
@@ -0,0 +1,15 @@
+@comment $NetBSD: PLIST,v 1.1 2021/01/28 21:23:30 maya Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/buildbot_badges/VERSION
+${PYSITELIB}/buildbot_badges/__init__.py
+${PYSITELIB}/buildbot_badges/__init__.pyc
+${PYSITELIB}/buildbot_badges/__init__.pyo
+${PYSITELIB}/buildbot_badges/static/.placeholder
+${PYSITELIB}/buildbot_badges/templates/flat-square.svg.j2
+${PYSITELIB}/buildbot_badges/templates/flat.svg.j2
+${PYSITELIB}/buildbot_badges/templates/plastic.svg.j2
diff -r f836ce93d3aa -r 26db44bbf6d6 devel/py-buildbot-badges/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-buildbot-badges/distinfo Thu Jan 28 21:23:30 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/01/28 21:23:30 maya Exp $
+
+SHA1 (buildbot-badges-2.6.0.tar.gz) = 058266e9370e6cfad66aa0799fd004d57eab0b9f
+RMD160 (buildbot-badges-2.6.0.tar.gz) = 3a125e76d17be642d651fd22e402a4f6e542956b
+SHA512 (buildbot-badges-2.6.0.tar.gz) = 38718a33393494db90cf0b28931d6e6523f9b34bc938143c1e83d15edb9a264a248ea9fdc9928e19d06bc1625a4a9986bfe208333c69ff390b64b6dbe5e6f485
+Size (buildbot-badges-2.6.0.tar.gz) = 3885 bytes



Home | Main Index | Thread Index | Old Index