Compare commits

..

9 Commits

Author SHA1 Message Date
Fedora Release Engineering 30f81cd585 dist-git conversion 2010-07-29 11:38:33 +00:00
Ville Skyttä b9b6c90c34 - Update to 7.8, fixes #562316.
Tue Feb 2 2010 Ville Skyttä <ville.skytta@iki.fi> - 7.7-1
- Update to 7.7, fixes #558263.
Mon Dec 7 2009 Ville Skyttä <ville.skytta@iki.fi> - 7.6-1
- Update to 7.6, fixes #528907.
2010-02-15 22:31:42 +00:00
Bill Nottingham 493ac7761f Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:29:16 +00:00
Ville Skyttä f15a0484fb Add missing patch. 2009-09-17 21:30:32 +00:00
Ville Skyttä b2169c6e52 - Update to 7.5, fixes #502403.
Fri Aug 21 2009 Ville Skyttä <ville.skytta@iki.fi> - 7.4-1
- Update to 7.4, fixes #215927 and #466353.
- Patch spectool to make -s and -p to work as documented (Todd Zullinger).
2009-09-17 21:13:33 +00:00
Ville Skyttä fa464052ad Doh. 2009-05-24 21:34:14 +00:00
Ville Skyttä ad236b74cf - Release 7.3.
Sat May 23 2009 Ville Skyttä <ville.skytta at iki.fi>
- Add rpmdev-packager - script for getting rpm packager info.
- Use rpmdev-packager in rpmdev-bumpspec and rpmdev-init.el.
- Fix rpmdev-extract MIME type comparisons with file(1) output containing
    parameters.
2009-05-24 21:29:50 +00:00
Ville Skyttä fe9555b86f - Release 7.2.
Sun May 3 2009 Ville Skyttä <ville.skytta at iki.fi>
- Add dummy spec template for ad-hoc testing.
Sat May 2 2009 Ville Skyttä <ville.skytta at iki.fi>
- Improve newspec/newinit when only "-o foo" argument is given (#498588,
    thanks to Edwin ten Brink).
- Try to get packager mail address for *Emacs rpm-spec-mode from
    ~/.fedora.cert if rpm-spec-user-mail-address is not set.
- Add xz support to rpmdev-extract.
Sat Apr 18 2009 Ville Skyttä <ville.skytta at iki.fi>
- Make bumpspec's use of "head" POSIX compliant.
Thu Apr 16 2009 Ville Skyttä <ville.skytta at iki.fi>
- Add rpmdev-newinit for easier access to the init script template, move
    the template to %{_sysconfdir}/rpmdevtools, improve reload action
    example.
Tue Apr 7 2009 Ville Skyttä <ville.skytta at iki.fi>
- Speed up rpmls bash completion.
2009-05-21 14:48:30 +00:00
Jesse Keating 223f09dee1 Initialize branch F-11 for rpmdevtools 2009-04-15 07:41:29 +00:00
2 changed files with 0 additions and 21 deletions
View File
-21
View File
@@ -1,21 +0,0 @@
# Makefile for source rpm: rpmdevtools
# $Id$
NAME := rpmdevtools
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)