Move tito under rpm-software-management namespace

This commit is contained in:
Jakub Kadlcik 2020-03-30 15:35:13 +02:00
parent 3e06357df7
commit 4edf7e4533
7 changed files with 11 additions and 34 deletions

View file

@ -1,24 +1,3 @@
[yum-f20-x86_64]
releaser = tito.release.YumRepoReleaser
builder = tito.builder.MockBuilder
builder.mock = fedora-20-x86_64
srpm_disttag = .fc20
rsync = fedorapeople.org:/srv/repos/dgoodwin/tito/fedora-20/x86_64/ fedorapeople.org:/srv/repos/dgoodwin/tito/fedora-20/i386/
[yum-f21-x86_64]
releaser = tito.release.YumRepoReleaser
builder = tito.builder.Builder
builder.mock = fedora-21-x86_64
srpm_disttag = .fc21
rsync = fedorapeople.org:/srv/repos/dgoodwin/tito/fedora-21/x86_64/ fedorapeople.org:/srv/repos/dgoodwin/tito/fedora-21/i386/
[yum-el6-x86_64]
releaser = tito.release.YumRepoReleaser
builder = tito.builder.MockBuilder
builder.mock = epel-6-x86_64
srpm_disttag = .el6
rsync = fedorapeople.org:/srv/repos/dgoodwin/tito/epel-6/x86_64/ fedorapeople.org:/srv/repos/dgoodwin/tito/epel-6/i386/
[test-koji] [test-koji]
releaser = tito.release.KojiReleaser releaser = tito.release.KojiReleaser
autobuild_tags = tag1 tag2 autobuild_tags = tag1 tag2
@ -32,7 +11,6 @@ git_url = git://example.com
releaser = tito.release.FedoraGitReleaser releaser = tito.release.FedoraGitReleaser
branches = master el6 epel7 epel8 f30 f31 f32 branches = master el6 epel7 epel8 f30 f31 f32
[copr-dgoodwin] [copr]
releaser = tito.release.CoprReleaser releaser = tito.release.CoprReleaser
project_name = tito project_name = @rpm-software-management/tito

View file

@ -2,7 +2,7 @@ Hacking
======= =======
This is the developer documentation for This is the developer documentation for
https://github.com/dgoodwin/tito https://github.com/rpm-software-management/tito
Python versions Python versions
--------------- ---------------

View file

@ -62,7 +62,7 @@ From git's `master` branch:
https://pip.pypa.io/en/stable/user_guide/#user-installs) (i.e. isolated to the https://pip.pypa.io/en/stable/user_guide/#user-installs) (i.e. isolated to the
current user): current user):
pip install --user https://github.com/dgoodwin/tito/archive/master.tar.gz pip install --user https://github.com/rpm-software-management/tito/archive/master.tar.gz
To make an rpm of tito to install elsewhere To make an rpm of tito to install elsewhere

View file

@ -34,7 +34,7 @@ Tito offers the following features:
To install from source To install from source
``` ```
$ git clone https://github.com/dgoodwin/tito.git $ git clone https://github.com/rpm-software-management/tito.git
$ cd tito/ $ cd tito/
$ sudo yum install python-setuptools $ sudo yum install python-setuptools
$ ./setup.py build $ ./setup.py build
@ -225,6 +225,6 @@ See:
* `man 5 titorc` * `man 5 titorc`
## External Docs ## External Docs
* [Tito release announcements](http://rm-rf.ca/blogs/dgoodwin) * [Tito release announcements](https://github.com/rpm-software-management/tito/releases)
* [How to create new release of RPM package in 5 seconds](http://miroslav.suchy.cz/blog/archives/2013/12/17/how_to_create_new_release_of_rpm_package_in_5_seconds) * [How to create new release of RPM package in 5 seconds](http://miroslav.suchy.cz/blog/archives/2013/12/17/how_to_create_new_release_of_rpm_package_in_5_seconds)
* [How to build in Copr](http://miroslav.suchy.cz/blog/archives/2013/12/29/how_to_build_in_copr) * [How to build in Copr](http://miroslav.suchy.cz/blog/archives/2013/12/29/how_to_build_in_copr)

View file

@ -1,5 +1,5 @@
site_name: Tito site_name: Tito
repo_url: https://github.com/dgoodwin/tito repo_url: https://github.com/rpm-software-management/tito
docs_dir: doc docs_dir: doc
markdown_extensions: markdown_extensions:
- codehilite - codehilite

View file

@ -23,9 +23,8 @@ setup(
name="tito", name="tito",
version='0.6.13', version='0.6.13',
description='A tool for managing rpm based git projects.', description='A tool for managing rpm based git projects.',
author='Devan Goodwin', author='rpm-software-management',
author_email='dgoodwin@rm-rf.ca', url='https://github.com/rpm-software-management/tito',
url='http://rm-rf.ca/tito',
license='GPLv2+', license='GPLv2+',
# tell distutils packages are under src directory # tell distutils packages are under src directory

View file

@ -21,9 +21,9 @@ Release: 1%{?dist}
Summary: A tool for managing rpm based git projects Summary: A tool for managing rpm based git projects
License: GPLv2 License: GPLv2
URL: https://github.com/dgoodwin/tito URL: https://github.com/rpm-software-management/tito
# Sources can be obtained by # Sources can be obtained by
# git clone https://github.com/dgoodwin/tito.git # git clone https://github.com/rpm-software-management/tito
# cd tito # cd tito
# tito build --tgz # tito build --tgz
Source0: %{name}-%{version}.tar.gz Source0: %{name}-%{version}.tar.gz