rel-eng/packages/tito | 1
spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch | 24
spec-tree/tito/tito.props | 3
spec-tree/tito/tito.spec | 416 ++++++++++
4 files changed, 444 insertions(+)
New commits:
commit 023f64fa2c2121ddff5490a48c3df2150184aa3a
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Thu Nov 28 16:28:48 2013 +0100
Automatic commit of package [tito] minor release [0.4.18-1.1].
diff --git a/rel-eng/packages/tito b/rel-eng/packages/tito
new file mode 100644
index 0000000..288995b
--- /dev/null
+++ b/rel-eng/packages/tito
@@ -0,0 +1 @@
+0.4.18-1.1 spec-tree/tito/
diff --git a/spec-tree/tito/tito.props b/spec-tree/tito/tito.props
new file mode 100644
index 0000000..8c63ded
--- /dev/null
+++ b/spec-tree/tito/tito.props
@@ -0,0 +1,3 @@
+[buildconfig]
+tagger = tito.tagger.ReleaseTagger
+builder = spacewalkx.builderx.NoTgzBuilder
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
index e85964b..34d722b 100644
--- a/spec-tree/tito/tito.spec
+++ b/spec-tree/tito/tito.spec
@@ -2,7 +2,7 @@
Name: tito
Version: 0.4.18
-Release: 1%{?dist}
+Release: 1.1%{?dist}
Summary: A tool for managing rpm based git projects
Group: Development/Tools
@@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Nov 28 2013 Michael Mraka <michael.mraka(a)redhat.com> 0.4.18-1.1
+- support for local releaser.conf overwrite
+
* Thu Nov 14 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.18-1
- Merge the FiledVersionTagger into the base VersionTagger.
(dgoodwin(a)redhat.com)
commit d1bc583bcaab060399cbc4da21718b72d8892988
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 22 15:14:45 2013 +0100
support local releasers.conf overwrite
diff --git a/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch
b/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch
new file mode 100644
index 0000000..84d1366
--- /dev/null
+++ b/spec-tree/tito/0001-support-local-releasers.conf-overwrite.patch
@@ -0,0 +1,24 @@
+From 2ba7cf86f8ef21fbd37446778a0269dd68f98912 Mon Sep 17 00:00:00 2001
+From: Michael Mraka <michael.mraka(a)redhat.com>
+Date: Fri, 22 Nov 2013 14:27:07 +0100
+Subject: [PATCH] support local releasers.conf overwrite
+
+---
+ src/tito/cli.py | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/tito/cli.py b/src/tito/cli.py
+index 4c42b42..4aec245 100644
+--- a/src/tito/cli.py
++++ b/src/tito/cli.py
+@@ -499,7 +499,7 @@ class ReleaseModule(BaseCliModule):
+ rel_eng_dir = os.path.join(find_git_root(), "rel-eng")
+ filename = os.path.join(rel_eng_dir, RELEASERS_CONF_FILENAME)
+ config = ConfigParser.ConfigParser()
+- config.read(filename)
++ config.read([filename, RELEASERS_CONF_FILENAME])
+ return config
+
+ def _legacy_builder_hack(self, releaser_config):
+--
+1.7.1
commit d6998640467f5c959a6fd154a2c6d90897881a89
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 22 15:11:12 2013 +0100
spec for tito package
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
new file mode 100644
index 0000000..e85964b
--- /dev/null
+++ b/spec-tree/tito/tito.spec
@@ -0,0 +1,413 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name: tito
+Version: 0.4.18
+Release: 1%{?dist}
+Summary: A tool for managing rpm based git projects
+
+Group: Development/Tools
+License: GPLv2
+URL:
http://rm-rf.ca/tito
+Source0:
http://rm-rf.ca/files/tito/tito-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: python-devel
+BuildRequires: python-setuptools
+BuildRequires: asciidoc
+BuildRequires: libxslt
+
+Requires: python-setuptools
+Requires: rpm-build
+Requires: rpmlint
+Requires: GitPython >= 0.2.0
+Requires: fedpkg
+Requires: fedora-cert
+Requires: fedora-packager
+Requires: rpmdevtools
+Requires: rpm-python
+Requires: yum-utils
+
+%description
+Tito is a tool for managing tarballs, rpms, and builds for projects using
+git.
+
+%prep
+%setup -q -n tito-%{version}
+
+
+%build
+%{__python} setup.py build
+# convert manages
+a2x -d manpage -f manpage titorc.5.asciidoc
+a2x -d manpage -f manpage tito.8.asciidoc
+a2x -d manpage -f manpage tito.props.5.asciidoc
+a2x -d manpage -f manpage releasers.conf.5.asciidoc
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+rm -f $RPM_BUILD_ROOT%{python_sitelib}/*egg-info/requires.txt
+# manpages
+%{__mkdir_p} %{buildroot}%{_mandir}/man5
+%{__mkdir_p} %{buildroot}%{_mandir}/man8
+%{__gzip} -c titorc.5 > %{buildroot}/%{_mandir}/man5/titorc.5.gz
+%{__gzip} -c tito.8 > %{buildroot}/%{_mandir}/man8/tito.8.gz
+%{__gzip} -c tito.props.5 > %{buildroot}/%{_mandir}/man5/tito.props.5.gz
+%{__gzip} -c releasers.conf.5 > %{buildroot}/%{_mandir}/man5/releasers.conf.5.gz
+%{__gzip} -c build.py.props.5 > %{buildroot}/%{_mandir}/man5/build.py.props.5.gz
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc README.mkd AUTHORS COPYING
+%doc %{_mandir}/man5/titorc.5.gz
+%doc %{_mandir}/man5/tito.props.5.gz
+%doc %{_mandir}/man5/releasers.conf.5.gz
+%doc %{_mandir}/man5/build.py.props.5.gz
+%doc %{_mandir}/man8/tito.8.gz
+%{_bindir}/tito
+%{_bindir}/tar-fixup-stamp-comment.pl
+%{_bindir}/test-setup-specfile.pl
+%{_bindir}/generate-patches.pl
+%dir %{python_sitelib}/tito
+%{python_sitelib}/tito/*
+%{python_sitelib}/tito-*.egg-info
+
+
+%changelog
+* Thu Nov 14 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.18-1
+- Merge the FiledVersionTagger into the base VersionTagger.
+ (dgoodwin(a)redhat.com)
+- add Copr releaser (msuchy(a)redhat.com)
+- Fix broken asciidoc. (dgoodwin(a)redhat.com)
+- Fix old versions in yum repodata. (dgoodwin(a)redhat.com)
+- adding the FiledVersionTagger class that we are using internally
+ (vbatts(a)redhat.com)
+- tito report man page missing options (admiller(a)redhat.com)
+- Implement OBS releaser (msuchy(a)redhat.com)
+
+* Fri Aug 02 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.17-1
+- Fix permissions after a Fedora/Brew build. (dgoodwin(a)redhat.com)
+- Comment out old nightly releaser. (dgoodwin(a)redhat.com)
+- add newline to sys.stderr.write (msuchy(a)redhat.com)
+
+* Tue Jul 09 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.16-1
+- Fix KojiGitReleaser method arguments. (dgoodwin(a)redhat.com)
+
+* Mon Jul 08 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.15-1
+- docs clean up and additions for build_targets (admiller(a)redhat.com)
+
+* Mon Jul 08 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.14-1
+- resolve tito build failure on git 1.7.3.5 or older (jumanjiman(a)gmail.com)
+- Add more debugging facilities (jumanjiman(a)gmail.com)
+
+* Thu Jun 13 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.13-1
+- allow multiline blacklist/whitelist (lzap+git(a)redhat.com)
+- warn when no %%changelog section is present (msuchy(a)redhat.com)
+- Fix DistributionReleaser with GemBuilder (inecas(a)redhat.com)
+- Fix gem builder (necasik(a)gmail.com)
+- import error_out from tito.common (msuchy(a)redhat.com)
+- use correct path in rel-eng/packages if package reside in git-root for
+ DistributionBuilder (msuchy(a)redhat.com)
+- add missing import of commands (msuchy(a)redhat.com)
+- check if option in config exist (msuchy(a)redhat.com)
+- add example for remote_git_name (msuchy(a)redhat.com)
+- allow to override name of remote dist-git repo (msuchy(a)redhat.com)
+- add to releaser self.config which will contains values from global and pkg
+ config (msuchy(a)redhat.com)
+- use correct path in rel-eng/packages if package reside in git-root
+ (msuchy(a)redhat.com)
+
+* Fri Apr 26 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.12-1
+- mark build.py.props as obsolete (msuchy(a)redhat.com)
+- mark spacewalk.releng namespace as obsolete (msuchy(a)redhat.com)
+- various enhancement to man pages (msuchy(a)redhat.com)
+- document KojiReleaser and do not mark it as experimental any more
+ (msuchy(a)redhat.com)
+- document DEBUG environment variable (msuchy(a)redhat.com)
+- document environment variable EDITOR for tagger (msuchy(a)redhat.com)
+- Fix bad copy paste in releaser. (dgoodwin(a)redhat.com)
+- document scl option for rsync releaser (msuchy(a)redhat.com)
+- document RSYNC_USERNAME (msuchy(a)redhat.com)
+- add SCL support to RsyncReleaser (msuchy(a)redhat.com)
+- remove empty lines from rpm output (msuchy(a)redhat.com)
+- use SCL for KojiReleaser (msuchy(a)redhat.com)
+- move scl rpmbuild options to function and allow to build rpm using SC
+ (msuchy(a)redhat.com)
+- new option --scl which will allows you to build srpm for software collection
+ (msuchy(a)redhat.com)
+- fix the whitespace - tabs->spaces (lmeyer(a)redhat.com)
+- add --yes on tito release to keep from requiring input (lmeyer(a)redhat.com)
+- Enable tito release --test for git releasers * Store the --test flag on the
+ releaser and pass it to the builder * With --test in effect, have the builder
+ update the spec file * When the builder does so it also updates the
+ build_version to include git hash (lmeyer(a)redhat.com)
+- Add ability to customize rsync arguments (skane(a)kavi.com)
+- Fix broken extraction of bugzilla numbers from commits. (dgoodwin(a)redhat.com)
+- Re-add write permission fedpkg takes away. (dgoodwin(a)redhat.com)
+- Ensure rsync preserves timestamps and permissions (skane(a)kavi.com)
+- document SCRATCH environment variable (msuchy(a)redhat.com)
+- look for spec file in project directory (msuchy(a)redhat.com)
+- document NO_AUTO_INSTALL option (msuchy(a)redhat.com)
+- 31 - if build fails due missing dependecies, suggest to run yum-builddep
+ (msuchy(a)redhat.com)
+- document ONLY_TAGS variable (msuchy(a)redhat.com)
+- Do not create patch if there are binary files (msuchy(a)redhat.com)
+- Raise error if there are two spec files (msuchy(a)redhat.com)
+- Make increase_version _ aware and return original string upon failures
+ (skane(a)kavi.com)
+- merge common code from tagger and builder (msuchy(a)redhat.com)
+- allow tagger to get values from package config and override values in
+ global_config (msuchy(a)redhat.com)
+- Allow user to define which package need to be installed before tagging.
+ (msuchy(a)redhat.com)
+- Fixed check for existing tag (mbacovsk(a)redhat.com)
+- do not fail if spec does not have any source (msuchy(a)redhat.com)
+- Add install instructions (sean(a)practicalweb.co.uk)
+- NoTgzBuilder - do not guess source, get it correctly from spec file
+ (msuchy(a)redhat.com)
+
+* Thu Jan 17 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.11-1
+- add a --scratch option for KojiReleaser (aronparsons(a)gmail.com)
+- Fix no_build error in KojiReleaser.
+
+* Wed Nov 28 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.10-1
+- Add --no-build; this will allow scripted DistGit commits and
+ koji/brew chain-builds (admiller(a)redhat.com)
+- Added gembuilder, cleaned up pep8 (admiller(a)redhat.com)
+- Add a Travis configuration (jbowes(a)repl.ca)
+- Update README.mkd (misc(a)zarb.org)
+- fix: RsyncReleaser doesn't handle multiple rsync locations
+ (jesusr(a)redhat.com)
+- remove tabs and trailing whitespace. add whitespace between methods
+ (jesusr(a)redhat.com)
+- Handle stderr noise getting from remote server (inecas(a)redhat.com)
+- Can now specify a build target for fedora and distgit releasers
+ (mstead(a)redhat.com)
+
+* Tue Sep 04 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.9-1
+- Stop passing --installdeps for mock builds. (dgoodwin(a)redhat.com)
+- YumRepoReleaser feature: createrepo command can now be specified from
+ releasers.conf with the 'createrepo_command' config option
+ (palli(a)opensource.is)
+- Created new releaser called RsyncReleaser. Based heavily on YumRepoReleaser.
+ Refactored YumRepoReleaser to inherit most code from RsyncReleaser.
+ (palli(a)opensource.is)
+- Optionally print stacktrace whenever error_out is hit (bleanhar(a)redhat.com)
+- encourage users to push only their new tag (jbowes(a)redhat.com)
+- Attempt to copy local Sources during releases. (dgoodwin(a)redhat.com)
+
+* Mon Apr 02 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.8-1
+- Fix MockBuilder for packages that use non-standard builders normally.
+ (dgoodwin(a)redhat.com)
+- interpret '0' as False for changelog_with_email setting. (msuchy(a)redhat.com)
+
+* Thu Mar 15 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.7-1
+- Fix issues with DistributionBuilder constructor (dgoodwin(a)redhat.com)
+
+* Wed Mar 14 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.6-1
+- Issue 39: Create /tmp/tito if it doesn't already exist. (dgoodwin(a)redhat.com)
+- Add support for test build releases. (dgoodwin(a)redhat.com)
+- Stop passing all CLI args to builders. (dgoodwin(a)redhat.com)
+- Add mock builder speedup argument. (mstead(a)redhat.com)
+- Add support for no-value args in builder. (mstead(a)redhat.com)
+- Fix rsync options for yum repo releases. (jesusr(a)redhat.com)
+- Add support for customizable changelog formats (jeckersb(a)redhat.com)
+
+* Tue Jan 24 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.5-1
+- Extract bz's and prompt to modify commit message in git releasers.
+ (dgoodwin(a)redhat.com)
+
+* Mon Jan 23 2012 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.4-1
+- Issue #35: EDITOR with arguments produces backtrace (jeckersb(a)redhat.com)
+- remove unused fedora_cert reading (jesusr(a)redhat.com)
+- Drop to shell when dist-git merge errors encountered. (dgoodwin(a)redhat.com)
+- Use proper temp dirs for releasing. (dgoodwin(a)redhat.com)
+- Fix git release diff command. (dgoodwin(a)redhat.com)
+
+* Thu Dec 15 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.3-1
+- Escape percent character in changelog. (msuchy(a)redhat.com)
+- Fix distribution builder missing args in constructor.
+ (msuchy(a)redhat.com)
+- Add release to usage, alphabetize list. (jesusr(a)redhat.com)
+- PEP8 cleanup. (jesusr(a)redhat.com)
+- No need to maintain timestamps: remove -t and -O from rsync command.
+ (jesusr(a)redhat.com)
+- Chdir to yum_temp_dir after creating, avoids rsync's getcwd error
+ (jesusr(a)redhat.com)
+- Use -O during rsync commands to fix time setting errors. (dgoodwin(a)rm-rf.ca)
+
+* Mon Nov 28 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.2-1
+- Clean out old versions of RPMs when generating yum repos. (dgoodwin(a)rm-rf.ca)
+- Update manpage to show multiple rsync paths. (dgoodwin(a)rm-rf.ca)
+
+* Fri Nov 25 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.1-1
+- Allow one build to go to multiple yum repo URLs. (dgoodwin(a)redhat.com)
+- Fix --no-cleanup for release module. (dgoodwin(a)redhat.com)
+- Add a BrewDownloadBuilder. (dgoodwin(a)redhat.com)
+- Use proper temp directories to build. (dgoodwin(a)redhat.com)
+- Fix permissions when rsync'ing yum repositories. (dgoodwin(a)redhat.com)
+- Switch to CLI fedpkg command instead of module. (dgoodwin(a)rm-rf.ca)
+
+* Wed Nov 09 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.0-1
+- Fix import error with new fedpkg version. (dgoodwin(a)rm-rf.ca)
+- Add a KojiGitReleaser. (dgoodwin(a)rm-rf.ca)
+- Adding --use-version to allow Tito to force a version to use.
+ (awood(a)redhat.com)
+- Support SCRATCH=1 env variable for koji releaser. (dgoodwin(a)rm-rf.ca)
+- Support ONLY_TAGS env variable for koji releaser. (dgoodwin(a)rm-rf.ca)
+- List releasers option. (dgoodwin(a)rm-rf.ca)
+- Documentation update. (dgoodwin(a)rm-rf.ca)
+- Allow releaseing to multiple targets at once, and add --all-starting-with.
+ (dgoodwin(a)rm-rf.ca)
+- Make auto-install available to all builders. (dgoodwin(a)rm-rf.ca)
+- Allow setting specific builder and passing builder args on CLI. (dgoodwin@rm-
+ rf.ca)
+- Add new mechanism for passing custom arguments to builders. (dgoodwin@rm-
+ rf.ca)
+- HACKING tips updated. (dgoodwin(a)rm-rf.ca)
+- Add a rsync username env variable for yum repo releaser. (dgoodwin(a)rm-rf.ca)
+- Restructure release CLI. (dgoodwin(a)redhat.com)
+- Parsing spec files and bumping their versions or releases is now in Python.
+ (awood(a)redhat.com)
+
+* Wed Oct 05 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.3-1
+- Clarify some initial project layout documentation. (dgoodwin(a)rm-rf.ca)
+- match based on the tag for the package we are building (mmccune(a)redhat.com)
+- Teach tito how to checkout EUS branches (msuchy(a)redhat.com)
+- Remove release parameter from _update_package_metadata() (msuchy(a)redhat.com)
+- Avoid traceback if rpmbuild fails (jumanjiman(a)gmail.com)
+- Make Fedora git builds a little more tolerant if you need to re-run.
+ (dgoodwin(a)redhat.com)
+- Fix the binary spew in SOURCES on some weird tags. (dgoodwin(a)redhat.com)
+- Do not print traceback when user lacks write permission (jumanjiman(a)gmail.com)
+- Fix Fedora git releaser to use more reliable commands. (dgoodwin(a)rm-rf.ca)
+- Remove the old tito build --release code. (dgoodwin(a)rm-rf.ca)
+- Allow custom releasers to be loaded and used. (dgoodwin(a)rm-rf.ca)
+- Introduce new CLI module for releases. (dgoodwin(a)rm-rf.ca)
+- Use fedpkg switch branch for git releases. (dgoodwin(a)rm-rf.ca)
+- Do not print traceback when user hit Ctrl+C (msuchy(a)redhat.com)
+- '0' is True, we want it as false (msuchy(a)redhat.com)
+
+* Tue Apr 26 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.2-1
+- add debug logging (jesusr(a)redhat.com)
+
+* Tue Apr 26 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.1-1
+- flip condition so new files are added and existing files are copied
+ (msuchy(a)redhat.com)
+- fix traceback if git_email is not specified (miroslav(a)suchy.cz)
+- Refactor release code out of the builder class. (dgoodwin(a)rm-rf.ca)
+- Configure tito for Fedora git builds. (dgoodwin(a)rm-rf.ca)
+- Complete Fedora git build process. (dgoodwin(a)rm-rf.ca)
+- if remote.origin is not set, assume --offline and print warning, but proceed
+ (msuchy(a)redhat.com)
+- Source can be tar.bz2 (msuchy(a)redhat.com)
+- Source can be without number (msuchy(a)redhat.com)
+- add man page for tito.props(5) (msuchy(a)redhat.com)
+- document KOJI_OPTIONS options of titorc (msuchy(a)redhat.com)
+- add option HIDE_EMAIL to .titorc, which will hide your email in first line of
+ changelog entry (msuchy(a)redhat.com)
+- pass user_config to tagger class (msuchy(a)redhat.com)
+- issue 18 - do not print TB if user.name, user.email is not set
+ (msuchy(a)redhat.com)
+- Upload sources and confirm commit during git release. (dgoodwin(a)redhat.com)
+- First draft of Fedora Git releasing. (dgoodwin(a)redhat.com)
+- Add a --dry-run option for build --release. (dgoodwin(a)redhat.com)
+- Allow user config setting for sub-packages to skip during auto-install.
+ (dgoodwin(a)redhat.com)
+- Hookup bugzilla extraction during cvs release. (dgoodwin(a)redhat.com)
+- Plus and dot chars in git email handled correctly now (lzap+git(a)redhat.com)
+- put emails in changelog only if changelog_with_email is set to 1 in
+ [globalconfig] section of config (msuchy(a)redhat.com)
+- use _changelog_remove_cherrypick() for rheltagger (msuchy(a)redhat.com)
+- Add code for extracting bugzilla IDs from CVS diff or git log.
+ (dgoodwin(a)redhat.com)
+- Prompt user to edit CVS commit messages. (dgoodwin(a)redhat.com)
+- Fix no auto changelog option. (dgoodwin(a)redhat.com)
+- add tagger for Red Hat Enterprise Linux (msuchy(a)redhat.com)
+- Fix test builds in koji. (dgoodwin(a)rm-rf.ca)
+- Documentation update. (dgoodwin(a)rm-rf.ca)
+- Add missing dep on libxslt. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jan 05 2011 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.3.0-1
+- implement --only-tags option for builder class (msuchy(a)redhat.com)
+- implement --list-tags option for builder (msuchy(a)redhat.com)
+- add option --scratch to builder class (msuchy(a)redhat.com)
+- do not throw traceback if you hit Ctrl+C during Auto-instaling
+ (msuchy(a)redhat.com)
+- allow child taggers to control commit message (msuchy(a)redhat.com)
+- add new tagger: zStreamTagger - bump up release part after dist tag
+ (msuchy(a)redhat.com)
+- Better error-reporting when spec file has errors (jumanjiman(a)gmail.com)
+- if we grep rpmbuild output for some string, we have to switch to C locale
+ (miroslav(a)suchy.cz)
+- Adding more helpfull error message to show user what is busted
+ (mmccune(a)redhat.com)
+- Fix rpm command suggestion for broken specs. (dgoodwin(a)rm-rf.ca)
+- add manpage source: tito(8) (jumanjiman(a)gmail.com)
+- add manpage source: titorc(5) (jumanjiman(a)gmail.com)
+- adding rpm-build as a Requires. Seems pretty critical (mmccune(a)redhat.com)
+- Add missing dep on python-setuptools. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jun 02 2010 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.2.0-1
+- Restrict building to a minimum version of tito. (msuchy(a)redhat.com)
+- Added option to pass custom options to rpmbuild. (dgoodwin(a)rm-rf.ca)
+- Add tito-dev script to run directly from source. (dgoodwin(a)rm-rf.ca)
+- Better output after tagging. (dgoodwin(a)rm-rf.ca)
+- Display rpms build on successful completion. (dgoodwin(a)rm-rf.ca)
+- Added tito tag --undo. (dgoodwin(a)rm-rf.ca)
+- Bump versions in setup.py during tagging if possible. (dgoodwin(a)rm-rf.ca)
+- Added lib_dir setting for custom taggers/builders. (dgoodwin(a)rm-rf.ca)
+- Add option to auto-install rpms after build. (dgoodwin(a)rm-rf.ca)
+- Remove check for changelog with today's date. (dgoodwin(a)rm-rf.ca)
+- Allow user to specify an changelog string for new packages.
+ (jesusr(a)redhat.com)
+- Use latest commit instead of HEAD for --test. (jesusr(a)redhat.com)
+- Allow tito to understand pkg names with macros. (jesusr(a)redhat.com)
+- Use short sha1 when generating filenames. (jesusr(a)redhat.com)
+- Commit packages dir during tito init. (jesusr(a)redhat.com)
+- More detailed error message if spec has errors. (mmccune(a)redhat.com)
+
+* Wed Jun 02 2010 Devan Goodwin <dgoodwin(a)rm-rf.ca>
+- Restrict building to a minimal version of tito. (msuchy(a)redhat.com)
+- Added option to pass custom options to rpmbuild. (dgoodwin(a)rm-rf.ca)
+- Add tito-dev script to run directly from source. (dgoodwin(a)rm-rf.ca)
+- Better output after tagging. (dgoodwin(a)rm-rf.ca)
+- Display rpms build on successful completion. (dgoodwin(a)rm-rf.ca)
+- Added tito tag --undo. (dgoodwin(a)rm-rf.ca)
+- Bump versions in setup.py during tagging if possible. (dgoodwin(a)rm-rf.ca)
+- Added lib_dir setting for custom builders/taggers. (dgoodwin(a)rm-rf.ca)
+- Add option to auto-install rpms after build. (dgoodwin(a)rm-rf.ca)
+- Remove check for changelog with today's date. (dgoodwin(a)rm-rf.ca)
+- Allow user to specify an changelog string for new packages.
+ (jesusr(a)redhat.com)
+- Use latest commit instead of HEAD for --test. (jesusr(a)redhat.com)
+- Allow tito to understand pkg names with macros. (jesusr(a)redhat.com)
+- Use short sha1 when generating filenames. (jesusr(a)redhat.com)
+- Commit packages dir during tito init. (jesusr(a)redhat.com)
+- More detailed error message if spec is bad. (mmccune(a)redhat.com)
+
+* Thu Oct 01 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.1.1-2
+- Add AUTHORS and COPYING to doc.
+- Add BuildRequires on python-setuptools.
+
+* Tue Aug 25 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.1.1-1
+- Bumping to 0.1.0 for first release.
+
+* Mon Aug 24 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.4-1
+- Hack to fix import of tagger/builder on Python 2.4. (dgoodwin(a)rm-rf.ca)
+
+* Thu Aug 06 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.3-1
+- Introduce --output option for destination/tmp directory. (dgoodwin(a)rm-rf.ca)
+- Use tito.props for project specific config filename. (dgoodwin(a)rm-rf.ca)
+- Add multi-project repo tagging tests. (dgoodwin(a)rm-rf.ca)
+- Add support for offline (standalone) git repos. (dgoodwin(a)rm-rf.ca)
+- Fix reports for single project git repos. (dgoodwin(a)rm-rf.ca)
+- Add README documentation. (dgoodwin(a)rm-rf.ca)
+
+* Wed Jul 22 2009 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.0.1-1
+- Initial packaging.