| |
@@ -1,429 +0,0 @@
|
| |
- Name: blockerbugs
|
| |
- # NOTE: if you update version, *make sure* to also update
|
| |
- # `blockerbugs/__init__.py` and `docs/source/conf.py`
|
| |
- Version: 1.5
|
| |
- Release: 1%{?dist}
|
| |
- Summary: Fedora QA Blocker Tracking Application
|
| |
-
|
| |
- License: GPLv2+
|
| |
- URL: https://pagure.io/fedora-qa/blockerbugs
|
| |
- Source0: https://releases.pagure.org/fedora-qa/blockerbugs/blockerbugs-%{version}.tar.gz
|
| |
-
|
| |
- BuildArch: noarch
|
| |
-
|
| |
- # required by type hints (in the form they are used)
|
| |
- Requires: python3 >= 3.9
|
| |
-
|
| |
- Requires: python3-bodhi-client
|
| |
- Requires: python3-email-validator
|
| |
- Requires: python3-flask
|
| |
- Requires: python3-flask-sqlalchemy
|
| |
- Requires: python3-flask-wtf
|
| |
- Requires: python3-fedora
|
| |
- Requires: python3-fedora-flask
|
| |
- Requires: python3-alembic
|
| |
- Requires: python3-psycopg2
|
| |
- # bugzilla 3.2.0 because of API auth changes:
|
| |
- # https://listman.redhat.com/archives/bugzilla-announce-list/2022-February/msg00000.html
|
| |
- Requires: python3-bugzilla >= 3.2.0
|
| |
- Requires: python3-flask-admin
|
| |
- Requires: python3-iso8601
|
| |
- Requires: python3-openid
|
| |
- Requires: python3-openid-cla
|
| |
- Requires: python3-openid-teams
|
| |
- Requires: python3-sqlalchemy
|
| |
- Requires: python3-koji
|
| |
-
|
| |
- BuildRequires: python3-bodhi-client
|
| |
- BuildRequires: python3-pytest
|
| |
- BuildRequires: python3-pytest-cov
|
| |
- BuildRequires: python3-devel >= 3.9
|
| |
- BuildRequires: python3-setuptools
|
| |
- BuildRequires: python3-munch
|
| |
- BuildRequires: python3-email-validator
|
| |
- BuildRequires: python3-flask
|
| |
- BuildRequires: python3-flask-sqlalchemy
|
| |
- BuildRequires: python3-flask-admin
|
| |
- BuildRequires: python3-fedora-flask
|
| |
- BuildRequires: python3-mock
|
| |
- BuildRequires: python3-koji
|
| |
- BuildRequires: python3-sqlalchemy
|
| |
- BuildRequires: python3-sphinx
|
| |
- BuildRequires: python3-bugzilla
|
| |
- BuildRequires: python3-iso8601
|
| |
-
|
| |
- %description
|
| |
- The blocker tracking app is a web front end to the currently proposed blocker
|
| |
- and freeze exception bugs for Fedora releases under development.
|
| |
-
|
| |
- %prep
|
| |
- %setup -q
|
| |
-
|
| |
- %check
|
| |
- %{python3} setup.py test
|
| |
-
|
| |
- %build
|
| |
- %py3_build
|
| |
- sphinx-build -b html -d docs/_build/doctrees docs/source docs/_build/html
|
| |
- sphinx-build -b man -d docs/_build/doctrees docs/source docs/_build/man
|
| |
-
|
| |
- %install
|
| |
- %py3_install
|
| |
-
|
| |
- # alembic stuff
|
| |
- mkdir -p %{buildroot}%{_datadir}/blockerbugs
|
| |
- cp -r alembic %{buildroot}%{_datadir}/blockerbugs/.
|
| |
- cp alembic.ini %{buildroot}%{_datadir}/blockerbugs/.
|
| |
-
|
| |
- # apache config and wsgi stuff
|
| |
- mkdir -p %{buildroot}%{_datadir}/blockerbugs/conf
|
| |
- cp conf/blockerbugs.conf %{buildroot}%{_datadir}/blockerbugs/conf/.
|
| |
- cp conf/blockerbugs.cron.example %{buildroot}%{_datadir}/blockerbugs/conf/.
|
| |
- cp conf/blockerbugs.wsgi %{buildroot}%{_datadir}/blockerbugs/.
|
| |
-
|
| |
- # configuration file
|
| |
- mkdir -p %{buildroot}%{_sysconfdir}/blockerbugs
|
| |
- install conf/settings.py.example %{buildroot}%{_sysconfdir}/blockerbugs/settings.py.example
|
| |
-
|
| |
- # man page for CLI
|
| |
- mkdir -p %{buildroot}/%{_mandir}/man1/
|
| |
- cp -v docs/_build/man/*.1 %{buildroot}/%{_mandir}/man1/
|
| |
-
|
| |
- %pre
|
| |
-
|
| |
- # add a user and group mostly for running the cron job
|
| |
- %{_sbindir}/groupadd -r %{name} &>/dev/null || :
|
| |
- %{_sbindir}/useradd -r -s /sbin/nologin -d %{_datadir}/%{name} -M \
|
| |
- -c 'Blocker Tracking App' -g %{name} %{name} &>/dev/null || :
|
| |
-
|
| |
- %files
|
| |
- %doc docs/_build/html/*
|
| |
- %doc %{_mandir}/man1/blockerbugs*
|
| |
-
|
| |
- %{python3_sitelib}/%{name}/
|
| |
- %{python3_sitelib}/%{name}-*.egg-info
|
| |
-
|
| |
- %{_bindir}/blockerbugs
|
| |
- %dir %{_sysconfdir}/blockerbugs
|
| |
- %{_sysconfdir}/blockerbugs/*
|
| |
- %dir %{_datadir}/blockerbugs
|
| |
- %{_datadir}/blockerbugs/*
|
| |
-
|
| |
-
|
| |
- %changelog
|
| |
- * Mon Sep 13 2021 Tim Flink <tflink@fedoraproject.org> - 1.4.1-1
|
| |
- - hotfix to address change to rhbz and the number of results returned
|
| |
-
|
| |
- * Mon Aug 23 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.4.0-1
|
| |
- - SQLAlchemy: add naming conventions
|
| |
- - replace partner-bugzilla with bugzilla.stage
|
| |
- - db models: replace backref= with back_populates=
|
| |
- - docstrings: add module docstrings
|
| |
- - display bugs with dependencies
|
| |
- - bugzilla: disable "quick" sync in favor of a full sync
|
| |
-
|
| |
- * Tue May 18 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.3.1-1
|
| |
- - blocker_list: don't display update popup needlessly
|
| |
- - Werkzeug ProxyFix changed with 1.0 release, fixing our usage
|
| |
- - updating flask and werkzeug versions to match new production
|
| |
-
|
| |
- * Wed May 05 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.3.0-1
|
| |
- - blocker_list.html: make it more readable, don't wrap status icons
|
| |
- - pytest: ignore a DeprecationWarning from the openid package
|
| |
- - show review vote counts only for Proposed bugs
|
| |
- - discussions: add component to the ticket title, reshuffle
|
| |
- - blocker_list: prevent wrapping votes in the middle
|
| |
- - allow the dev to log in as any user, always in admin group
|
| |
- - init_db.sh: update to F35 release
|
| |
- - requirements: work around idna dependency error
|
| |
- - .gitignore: re-shuffle into sections
|
| |
- - .gitignore: add /.pytest_cache/
|
| |
-
|
| |
- * Fri Apr 09 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.2.1-1
|
| |
- - Fix the migration from 72031671860e
|
| |
-
|
| |
- * Wed Mar 24 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.2.0-1
|
| |
- - Prioritized Bugs hotfix
|
| |
- - show TBD when a discussion link doesn't exist, show if user already voted
|
| |
- - Show discussion vote counts in web UI and IRC format
|
| |
- - tests: ignore a Koji deprecation warning
|
| |
- - tests: avoid ORM warnings
|
| |
- - supress warnings about SQLALCHEMY_TRACK_MODIFICATIONS
|
| |
- - initialize FAS only when needed
|
| |
- - run tests with just 'pytest'
|
| |
- - init: add pre-config logging
|
| |
- - cli: add --debug option
|
| |
-
|
| |
- * Wed Jan 20 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.1.0-1
|
| |
- - discussions: ignore closed tickets
|
| |
-
|
| |
- * Wed Jan 13 2021 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.0.0-1
|
| |
- - cli: add close-inactive-discussions command
|
| |
- - pagure_bot: don't double-parse commands
|
| |
- - discussions: update review voting guide
|
| |
- - pagure_bot: add more unit tests, restructure a few existing ones
|
| |
- - pagure_bot: make comment parsing more reliable
|
| |
- - pagure_bot: make agreed_revote_parser more standalone
|
| |
- - pagure_bot: add docstrings
|
| |
- - pagure_bot: handle "FE" abbreviation in a safer way
|
| |
- - pagure_bot: small readability improvements
|
| |
- - Revise Pagure comment parsers, make more liberal
|
| |
- - get_bz_query: use last_update_string for bug creation too
|
| |
- - discussion_sync: commit after creating each ticket
|
| |
- - discussions: add a short voting hint to tickets
|
| |
- - discussions: prefix ticket title with "rhbz#"
|
| |
- - cli: add 'update-discussion'
|
| |
- - Fix bugimg for reopened bugs
|
| |
-
|
| |
- * Wed Sep 30 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.7.4-1
|
| |
- - Bug proposal/rejection status as SVG endpoint
|
| |
- - sync_updates: allow Bugs for same bug ID but different milestone
|
| |
-
|
| |
- * Tue Aug 25 2020 Tim Flink <tflink@fedoraproject.org> - 0.7.3-1
|
| |
- - Fix some log messages
|
| |
- - Only create one ticket per bug, regardless of how many milestones it's in
|
| |
- - Change some terminology for links to blocker discussions
|
| |
-
|
| |
- * Wed Aug 19 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.7.2-1
|
| |
- - Add BEHIND_PROXY to config.py
|
| |
-
|
| |
- * Wed Aug 19 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.7.1-1
|
| |
- - Fix db-uri leakage and add Proxy support (jskladan)
|
| |
-
|
| |
- * Tue Aug 18 2020 Tim Flink <tflink@fedoraproject.org> - 0.7.0-1
|
| |
- - Add support for async blocker discussion in a pagure repo
|
| |
- - Look for Flatpak and module updates in addition to rpms
|
| |
- - Dependency updates and many bug fixes
|
| |
-
|
| |
- * Wed Jun 19 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.6.1-1
|
| |
- - Don't log an exception we're ignoring like we didn't ignore it
|
| |
-
|
| |
- * Mon Apr 8 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.6.0-1
|
| |
- - Support Python 3 and use it on Fedora >= 29 and RHEL >= 8
|
| |
- - Cleanup some css and js files and load them from CDN
|
| |
- - Fix UI problems introduced in 0.5.0
|
| |
- - Modernize spec file
|
| |
-
|
| |
- * Wed Jan 30 2019 Tim Flink <tflink@fedoraproject.org> - 0.5.0-4
|
| |
- - changing arch back to noarch, using ExclusiveArch correctly this time
|
| |
-
|
| |
- * Wed Jan 30 2019 Tim Flink <tflink@fedoraproject.org> - 0.5.0-3
|
| |
- - removing ExclusiveArch, changing Arch to x86_64 so that the srpm can be built sanely in Koji
|
| |
-
|
| |
- * Wed Jan 30 2019 Tim Flink <tflink@fedoraproject.org> - 0.5.0-2
|
| |
- - added ExclusiveArch to make it build on x86_64
|
| |
-
|
| |
- * Tue Jan 8 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.5.0-1
|
| |
- - New Bootstrap based frontend
|
| |
- - Dropped Spins Support
|
| |
- - Removed use of flask-assets
|
| |
- - Preliminary Python 3 Support (Python 2 is still used by default)
|
| |
-
|
| |
- * Wed Aug 15 2018 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.4.15-1
|
| |
- - Adapt to Bodhi changes to exit nicely if some Release does not exist in Bodhi
|
| |
- - Removed deprecated flask imports
|
| |
- - Switched to Python 3 compatible print
|
| |
- - Switched from bunch to munch (Python 3 preparations)
|
| |
-
|
| |
- * Thu Mar 22 2018 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.4.14-1
|
| |
- - nicer favicon
|
| |
- - change alpha criteria links to basic
|
| |
-
|
| |
- * Mon Aug 14 2017 Kamil Páral <kparal@redhat.com> - 0.4.13-1
|
| |
- - Correct update URLs
|
| |
- - Add tab for candidate compose / stable push request text
|
| |
- - project moved to Pagure
|
| |
- - enable release switcher to show more releases
|
| |
-
|
| |
- * Tue Nov 8 2016 Tim Flink <tflink@fedoraproject.org> - 0.4.4.12-1
|
| |
- - limit cleanup to specified release (D1049)
|
| |
-
|
| |
- * Fri Sep 30 2016 Tim Flink <tflink@fedoraproject.org> - 0.4.4.11-1
|
| |
- - fix bug proposal form (D1017)
|
| |
-
|
| |
- * Wed Sep 14 2016 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.4.10-1
|
| |
- - Use unicode instead of str on data passed from forms (D835)
|
| |
- - Prevent openid from caching session on disk (D997)
|
| |
- - Default to the current milestone when proposing a blocker (D974)
|
| |
- - Rebuild CSS and amend docs (D998)
|
| |
-
|
| |
- * Wed Apr 27 2016 Tim Flink <tflink@fedoraproject.org> - 0.4.4.9-1
|
| |
- - don't consider previous release and 0-day blockers 'proposed' (D829)
|
| |
-
|
| |
- * Tue Apr 26 2016 Tim Flink <tflink@fedoraproject.org> - 0.4.4.8-1
|
| |
- - Fixing alembic revision numbers so there isn't a 'multiple head' situation (D828)
|
| |
-
|
| |
- * Tue Apr 26 2016 Tim Flink <tflink@fedoraproject.org> - 0.4.4.7-1
|
| |
- - Allow users to see bugs whose blocker status has chnaged (D22)
|
| |
- - Handle 0-day and stable blockers (D689)
|
| |
-
|
| |
- * Tue Dec 1 2015 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.4.6-1
|
| |
- - Be more generic when catching Invalid release exc (D669)
|
| |
-
|
| |
- * Thu Nov 5 2015 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.4.5-1
|
| |
- - Fix crashing when syncing release that is not in bodhi (T644)
|
| |
-
|
| |
- * Thu Aug 20 2015 Tim Flink <tflink@fedoraproject.org> - 0.4.4.4-1
|
| |
- - Adjusting update sync to work with new data member names in bodhi2 api
|
| |
-
|
| |
- * Tue Aug 18 2015 Tim Flink <tflink@fedoraproject.org> - 0.4.4.3-1
|
| |
- - change bodhi client usage to prepare for bodhi2 (T569)
|
| |
-
|
| |
- * Thu Jan 22 2015 Tim Flink <tflink@fedoraproject.org> - 0.4.4.1-1
|
| |
- - Actually use the configured URL when connecting to bodhi. (T386)
|
| |
-
|
| |
- * Thu Jan 22 2015 Tim Flink <tflink@fedoraproject.org> - 0.4.4.1-1
|
| |
- - Updating some links on landing page
|
| |
- - Making Bodhi URL configurable (T386)
|
| |
-
|
| |
- * Wed Jan 14 2015 Tim Flink <tflink@fedoraproject.org> - 0.4.4-1
|
| |
- - updating package to target el7 instead of el6
|
| |
- - several small changes to allow running on el7
|
| |
-
|
| |
- * Wed Nov 19 2014 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.3.6-1
|
| |
- - Fix syncing when needinfo has no requestee T373
|
| |
- - HTTP 500 errors on incorrect bugzilla credential entry T358
|
| |
- - Do not hardcode links to release criteria on blocker proposal page T360
|
| |
-
|
| |
- * Thu Oct 9 2014 Tim Flink <tflink@fedoraproject.org> - 0.4.3.5-1
|
| |
- - Fixing imports of flask admin to remove warning. T348
|
| |
- - Removing py.test from install_requires so that cli works at install. T349
|
| |
-
|
| |
- * Tue Sep 9 2014 Tim Flink <tflink@fedoraproject.org> - 0.4.3.4-1
|
| |
- - Fixing milestone relationship for synced updates. T327
|
| |
- - Adding milestone/current endpoint to API. T328
|
| |
-
|
| |
- * Wed Jul 9 2014 Tim Flink <tflink@fedoraproject.org> - 0.4.3.3-1
|
| |
- - updating for use with python-bugzilla 1.1.0
|
| |
-
|
| |
- * Thu Feb 27 2014 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.3.2-1
|
| |
- - update to 0.4.3.2
|
| |
-
|
| |
- * Thu Feb 13 2014 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.3.1-1
|
| |
- - remove bugzilla cookie code
|
| |
-
|
| |
- * Wed Nov 20 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.3-1
|
| |
- - fix for #435
|
| |
-
|
| |
- * Thu Nov 14 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.2-1
|
| |
- - update to 0.4.2-1
|
| |
-
|
| |
- * Thu Nov 14 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.1.1-1
|
| |
- - add minify command to the cli
|
| |
-
|
| |
- * Wed Nov 13 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.1-1
|
| |
- - add python-cssmin as dep
|
| |
-
|
| |
- * Tue Nov 12 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.4.0-1
|
| |
- - update to 0.4.0-1
|
| |
-
|
| |
- * Thu Oct 10 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.13-3
|
| |
- - removing status restriction on bugzilla query during sync (#421)
|
| |
-
|
| |
- * Tue Oct 1 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.13-2
|
| |
- - removing /var/www/blockerbugs from dirs as it isn't used anymore
|
| |
-
|
| |
- * Thu Sep 26 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.13-1
|
| |
- - using bodhi update ID urls where possible (fixes #386)
|
| |
-
|
| |
- * Thu Sep 26 2013 Ilgiz Islamgulov <ilgizisl@gmail.com> - 0.3.0.12-1
|
| |
- - added missed GPL headers and
|
| |
-
|
| |
- * Tue Sep 24 2013 Ilgiz Islamgulov <ilgizisl@gmail.com> - 0.3.0.11-1
|
| |
- - adding 404 response status code for page not found
|
| |
-
|
| |
- * Tue Sep 24 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.10-1
|
| |
- - fixing bugzilla login and fixing filter in the spin admin page
|
| |
-
|
| |
- * Tue Sep 24 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.9-1
|
| |
- - adding build information to the spin information returned in the API
|
| |
-
|
| |
- * Fri Sep 13 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.8-1
|
| |
- - fixing some bugs in the admin interface
|
| |
-
|
| |
- * Fri Sep 13 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.7-1
|
| |
- - adding new flask-admin based admin interface and api auth
|
| |
-
|
| |
- * Fri Sep 13 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.6.3-1
|
| |
- - removing need for python-bugzilla cookiefile after review (#414)
|
| |
-
|
| |
- * Thu Sep 5 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.6.2-2
|
| |
- - fixing file declarations to remove un-needed dir
|
| |
-
|
| |
- * Thu Sep 5 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.6.2-1
|
| |
- - moving python-bugzilla cookiefile to /var/www/blockerbugs
|
| |
-
|
| |
- * Thu Sep 5 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.6.1-1
|
| |
- - fixing seliux issue preventing proposal from webui (#414)
|
| |
-
|
| |
- * Mon Aug 26 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.6-1
|
| |
- - fixing issues with python 2.6
|
| |
-
|
| |
- * Thu Aug 22 2013 Martin Krizek <mkrizek@redhat.com> - 0.3.0.5-3
|
| |
- - Add python-flask-assets and uglify-js as dep
|
| |
-
|
| |
- * Fri Aug 16 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.5-2
|
| |
- - adding openid deps and api module to setup.py
|
| |
-
|
| |
- * Fri Aug 16 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.5-1
|
| |
- - implementing api for spins, updates and bugs
|
| |
- - improving update sync to be more efficient and not leave orphan updates visable
|
| |
-
|
| |
- * Thu Jul 25 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.4-2
|
| |
- - adding python-openid, python-openid-teams, python-openid-cla as deps
|
| |
-
|
| |
- * Thu Jul 25 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.4-1
|
| |
- - migrating to fas-openid for authentication (#383)
|
| |
-
|
| |
- * Mon Jul 8 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.3-1
|
| |
- - fixing crash on milestone modification (#390)
|
| |
-
|
| |
- * Thu May 30 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.2-1
|
| |
- - fixing sync trigger on component rename (#330) and full sync
|
| |
-
|
| |
- * Tue Apr 30 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.1-1
|
| |
- - Several minor visual fixes and fixing the admin page rendering
|
| |
-
|
| |
- * Tue Apr 23 2013 Tim Flink <tflink@fedoraproject.org> - 0.3.0.0-1
|
| |
- - Made some minor visual changes for 0.3 release
|
| |
-
|
| |
- * Thu Apr 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.4-1
|
| |
- - Added a visually obvious staging configuration
|
| |
-
|
| |
- * Thu Apr 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.3-2
|
| |
- - Added the blockerbugs group for user creation
|
| |
-
|
| |
- * Thu Apr 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.3-1
|
| |
- - Fixed a few minor bugs in the proposal process and cleaned up a template
|
| |
-
|
| |
- * Wed Apr 10 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.2-1
|
| |
- - Centralized logging setup, changed logger creation and added syslog logger option
|
| |
- - Added blockerbugs user for cron job running
|
| |
-
|
| |
- * Fri Mar 29 2013 Martin Krizek <mkrizek@fedoraproject.org> - 0.2.7.1-2
|
| |
- - Added log file location
|
| |
-
|
| |
- * Mon Mar 25 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.1-1
|
| |
- - Fixed issue with cli utility using incorrect variable names
|
| |
-
|
| |
- * Mon Mar 25 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.7.0-1
|
| |
- - Merged in bugzilla account integration and blocker proposal functionality
|
| |
-
|
| |
- * Wed Mar 13 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6.2-2
|
| |
- - Changed el6 build to use sphinx 1.0 for manpage generation support
|
| |
-
|
| |
- * Tue Mar 12 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6.2-1
|
| |
- - Added manpage for blockerbugs cli
|
| |
- - Enabled check for fedora, need build of python-dingus on el6
|
| |
-
|
| |
- * Mon Mar 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6.1-3
|
| |
- - Updated default value for bugzilla cookie
|
| |
-
|
| |
- * Mon Mar 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6.1-2
|
| |
- - Changed config file generation to installation of example
|
| |
-
|
| |
- * Mon Mar 11 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6.1-1
|
| |
- - New upstream version with fewer dependencies and added example cron job
|
| |
-
|
| |
- * Wed Mar 6 2013 Tim Flink <tflink@fedoraproject.org> - 0.2.6-1
|
| |
- - Initial package for the blocker tracking app
|
| |
Since we no longer deploy BBA as an RPM, the spec file is not needed anymore.
The Makefile has been outdated for quite some time, and now it had minimal use.
Because of how hard it is to write and maintain a Makefile, I rewrote the
remaining useful bits into a
./run
bash script. It is a generic launcher formost developer-related commands, and it has help(!), so it's now easy to
remember or figure out how to do things. The
run
script now also includesinit_db.sh
andrun_cli.py
. It referencesrunapp.py
, so that there is asingle launcher for everything. Documentation is updated, and RPM building
instructions are removed.
Additional notes:
docs/Makefile
is removed, because we didn't use itrunapp.py
is moved toscripts/
, to reduce top-level clutterbuild/
, which makes it easier to find themand also to git ignore them
run setup
is now updated to F37 staging tracker numbers