rpms/bzrtools/FC-6 .cvsignore, 1.10, 1.11 bzrtools.spec, 1.16, 1.17 sources, 1.10, 1.11

Toshio Ernie Kuratomi (toshio) fedora-extras-commits at redhat.com
Fri Sep 28 00:15:47 UTC 2007


Author: toshio

Update of /cvs/pkgs/rpms/bzrtools/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7273

Modified Files:
	.cvsignore bzrtools.spec sources 
Log Message:
* Wed Sep 26 2007 Toshio Kuratomi <a.badger at gmail.com> 0.91.0-1
- Update to 0.91.0.  This has numerous bugfixes over the previous version.



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/bzrtools/FC-6/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore	3 Apr 2007 02:45:41 -0000	1.10
+++ .cvsignore	28 Sep 2007 00:15:10 -0000	1.11
@@ -1 +1 @@
-bzrtools-0.15.4.tar.gz
+bzrtools-0.91.0.tar.gz


Index: bzrtools.spec
===================================================================
RCS file: /cvs/pkgs/rpms/bzrtools/FC-6/bzrtools.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- bzrtools.spec	3 Apr 2007 02:49:50 -0000	1.16
+++ bzrtools.spec	28 Sep 2007 00:15:12 -0000	1.17
@@ -1,22 +1,25 @@
 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 
-%define bzrver 0.15
-%define bzrnextver 0.16
+# Oh the horrors of arch dependent noarch packages!
+# (bzrlib is arch dependent.  Thus bzrlib plugins are also arch dependent.)
+%define debug_package %{nil}
+
+%define bzrver 0.91
+%define bzrnextver 0.92
 
 Name:           bzrtools
-Version:        %{bzrver}.4
-Release:        2%{?dist}
+Version:        %{bzrver}.0
+Release:        1%{?dist}
 Summary:        A collection of utilities and plugins for Bazaar-NG
 
 Group:          Development/Tools
-License:        GPL
+License:        GPLv2+
 URL:            http://bazaar-vcs.org/BzrTools
 Source0:        http://panoramicfeedback.com/opensource/%{name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildArch:      noarch
 BuildRequires:  python-devel
-Requires:   python-abi = %(%{__python} -c "import sys ; print sys.version[:3]")
 # Bzrtools is meant to work with a version of bzr that is the same major
 # version.  In addition to being incompatible with older bzr versions, it is 
 # also untested with bzrversion++ and may not work (depending on what has
@@ -46,9 +49,14 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
+if test "%{python_sitelib}" != "%{python_sitearch}" ; then
+    install -d $RPM_BUILD_ROOT/%{python_sitearch}/bzrlib/plugins/
+    mv $RPM_BUILD_ROOT/%{python_sitelib}/bzrlib/plugins/bzrtools $RPM_BUILD_ROOT/%{python_sitearch}/bzrlib/plugins
+fi
+
 # remove shebangs from all files as none should be executable scripts
-sed -e '/^#!\//,1 d' -i $RPM_BUILD_ROOT/%{python_sitelib}/bzrlib/plugins/bzrtools/*.py
+sed -e '/^#!\//,1 d' -i $RPM_BUILD_ROOT/%{python_sitearch}/bzrlib/plugins/bzrtools/*.py
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -57,13 +65,32 @@
 %files
 %defattr(-,root,root,-)
 %doc README NEWS COPYING
-%dir %{python_sitelib}/bzrlib/plugins/bzrtools
-%{python_sitelib}/bzrlib/plugins/bzrtools/*.py
-%{python_sitelib}/bzrlib/plugins/bzrtools/*.pyc
-%{python_sitelib}/bzrlib/plugins/bzrtools/*.pyo
-%{python_sitelib}/bzrlib/plugins/bzrtools/tests/
+%dir %{python_sitearch}/bzrlib/plugins/bzrtools
+%{python_sitearch}/bzrlib/plugins/bzrtools/*.py
+%{python_sitearch}/bzrlib/plugins/bzrtools/*.pyc
+%{python_sitearch}/bzrlib/plugins/bzrtools/*.pyo
+%{python_sitearch}/bzrlib/plugins/bzrtools/tests/
 
 %changelog
+* Wed Sep 26 2007 Toshio Kuratomi <a.badger at gmail.com> 0.91.0-1
+- Update to 0.91.0.
+
+* Thu Aug 30 2007 Toshio Kuratomi <a.badger at gmail.com> 0.90.0-2
+- Move plugin manually since setuptools has no way of knowing that bzr is
+  arch specific.
+- Disable debuginfo packages.
+
+* Tue Aug 28 2007 Toshio Kuratomi <a.badger at gmail.com> 0.90.0-1
+- Update to 0.90.0.
+- Fix License tag to conform to the new Licensing Guidelines.
+- Bzr is now arch specific so all its plugins have to be as well.
+
+* Wed Jul 25 2007 Warren Togami <wtogami at redhat.com> 0.18.0-1
+- Update to 0.18.0.
+
+* Thu Jun 28 2007 Warren Togami <wtogami at redhat.com> 0.17.1-1
+- Update to 0.17.1.
+
 * Mon Apr 2 2007 Toshio Kuratomi <toshio at tiki-lounge.com> 0.15.4-2
 - Bump for tagging problem.
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/bzrtools/FC-6/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources	3 Apr 2007 02:45:41 -0000	1.10
+++ sources	28 Sep 2007 00:15:12 -0000	1.11
@@ -1 +1 @@
-83f2b309e5320a7269dbb64947265a81  bzrtools-0.15.4.tar.gz
+7ca989b950ea59ff02f9425fb3faa39e  bzrtools-0.91.0.tar.gz




More information about the fedora-extras-commits mailing list