diff options
| author | jcwillia <jcwillia> | 2006-09-08 18:04:00 +0000 |
|---|---|---|
| committer | jcwillia <jcwillia> | 2006-09-08 18:04:00 +0000 |
| commit | fb6370dd0de18ac0bd20b89b4e86c29fef3a72ec (patch) | |
| tree | 48dc6a26914120bc617753a58ba3c165b32e532b | |
| parent | 5f313edf2b304a50f4b915211d51d95554db9dc3 (diff) | |
| download | mock-fb6370dd0de18ac0bd20b89b4e86c29fef3a72ec.tar.gz mock-fb6370dd0de18ac0bd20b89b4e86c29fef3a72ec.tar.xz mock-fb6370dd0de18ac0bd20b89b4e86c29fef3a72ec.zip | |
updated version to 0.7.1 in both spec and mock.py; modified Makefile and specfile to reflect path change for /usr/libexec/mock.py; updated ChangeLog
| -rw-r--r-- | ChangeLog | 12 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | mock.py | 2 | ||||
| -rw-r--r-- | mock.spec | 10 |
4 files changed, 21 insertions, 7 deletions
@@ -1,3 +1,15 @@ +2006-09-08 Clark Williams <williams@redhat.com> + + * mock.c + changed MOCK_PATH to /usr/libexec/mock.py + + * mock.spec + changed version to 0.7.1 + updated paths to reflect /usr/libexec/mock.py change + + * Changelog + updated + 2006-06-28 Clark Williams <williams@redhat.com> * mock.py @@ -19,8 +19,8 @@ subdirs: for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1 ; done install: - install -D -m 755 mock.py $(DESTDIR)/usr/bin/mock.py - install -D -m 755 mock-yum $(DESTDIR)/usr/libexec/mock-yum + install -D mock.py $(DESTDIR)/usr/libexec/mock.py + install -D mock-yum $(DESTDIR)/usr/libexec/mock-yum mkdir -p $(DESTDIR)/var/lib/mock for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; [ $$? = 0 ] || exit 1; done @@ -31,7 +31,7 @@ from exceptions import Exception from optparse import OptionParser -__VERSION__ = '0.7' +__VERSION__ = '0.7.1' def error(msg): print >> sys.stderr, msg @@ -1,7 +1,7 @@ Summary: Builds packages inside chroots Name: mock -Version: 0.7 -Release: 2%{?dist} +Version: 0.7.1 +Release: 1%{?dist} License: GPL Group: Development/Tools Source: http://fedoraproject.org/projects/mock/releases/%{name}-%{version}.tar.gz @@ -61,14 +61,16 @@ fi %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/*.cfg %attr(04750, root, mock) %{_bindir}/%{name} -%{_bindir}/%{name}.py* -%{_libexecdir}/mock-yum +%{_libexecdir}/mock* %{_mandir}/man1/mock.1* %attr(02775, root, mock) %dir /var/lib/mock %{_libdir}/libselinux-mock.so %changelog +* Fri Sep 8 2006 Clark Williams <williams@redhat.com> - 0.7.1-1 +- Change mock.py to /usr/libexec + * Wed Aug 16 2006 Clark Williams <williams@redhat.com> - 0.7-2 - Added buildsys-build.spec to docs - Added disttag |
