aboutsummaryrefslogtreecommitdiffhomepage
path: root/packaging
Commit message (Collapse)AuthorAge
* Use relative patch to install gbp.confGuido Günther2016-12-18
| | | | to make pip install --user work
* Introduce gbp-rpm-chMarkus Lehtonen2016-06-30
| | | | | | | | | Initial version of gbp rpm-ch command, a tool for maintaining RPM changelogs. The new command supports %changelog section inside spec files as well as separate changelog files ("OBS style"). Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Closes: #808027
* rpm packaging: update dependencies for unittestsMarkus Lehtonen2015-12-16
| | | | | | | Add some missing (build) dependencies if unit tests are enabled as part of the build process. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* rpm packaging: direct dependency to zipmerge binaryMarkus Lehtonen2015-12-16
| | | | | | | The name of the package containing zipmerge varies, e.g. 'libzip' in Fedora 22 vs. 'libzip-tools' in Fedora 23. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* rpm packaging: bump package version to 0.7.0Markus Lehtonen2015-11-20
| | | | Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* buildpackage-rpm: add support for mock chroot builderGuido Günther2015-11-16
| | | | | | | | | | Try: gbp buildpackage-rpm --git-mock --git-dist=epel-6 Results will be under ../rpmbuild/results/ This is very heavily based on a patch from Tzafrir Cohen.
* rpm packaging: remove Tizen-specific providesMarkus Lehtonen2015-10-19
| | | | Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* rpm packaging: remove hack for ancient openSUSE versionsMarkus Lehtonen2015-10-19
| | | | Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* rpm packaging: fix build for CentOSMarkus Lehtonen2015-10-19
| | | | | | | The Recommends tag is not supported by older rpm that is still in use CentOS. Also, fix some centos version macro usage. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* spec: add missing python depsGuido Günther2015-08-19
|
* spec: Only OpenSuSE seems to use python-baseGuido Günther2015-08-19
| | | | so make python the default
* spec: Nobody seems to ship pristine-tar atmGuido Günther2015-08-19
| | | | | | so only recommend it. See https://bugzilla.redhat.com/show_bug.cgi?id=1235404
* spec: Add new manpagesGuido Günther2015-08-19
|
* Add gbp buildpackage-rpmGuido Günther2015-08-19
| | | | This adds a minimal gbp buildpackage-rpm based on Markus Lehtonens work.
* Add spec file taken from git-buildpackage-rpmGuido Günther2015-06-26
Minimal changes only to get it to build (like removing the bb package and yet missing manpages of the *-rpm tools). Due to changes in Debian's dist- vs. site-packages you need to do a: cat <<EOF >> ~/.rpmmacros %python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib().replace('dist-', 'site-'))") %python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib(1).replace('dist-', 'site-'))") EOF to build the RPMs on Debian.