Custom Query (894 matches)
Results (64 - 66 of 894)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#1089 | solj | m4z <[email protected]…> | fixed | bcfg2-admin pull creates info.xml even if :info already exists. |
Description |
(This seems to be new in 1.2.0, it hasn't happened to me before.) I haven't tested it in-depth, but it seems that the info.xml file overrides the values in :info. |
|||
#1088 | desai | https://www.google.com/accounts/o8/id?id=AItOawnTv8ZHD-ll7ZqPkAHpTzuh4z3Jc6QdqUc | invalid | Boyacı Badana Ev Boya Tadilat dış cephe boya mantolama |
Description |
boyacı badana http://www.boyabadanaustasi.com ev boya tadilat http://www.evboyatadilat.com dış cephe boya mantolama http://www.discepheboyamantolama.com |
|||
#1087 | https://www.google.com/accounts/o8/id?id=AItOawnSjgovXZr-_V3vGkvMSR0pc5LDykRc1Nc | Jake Davis <[email protected]…> | fixed | Problems with 1.2.0 RPM build from git |
Description |
While attempting to build rpms from a git checkout of the v1.2.0 tag following these instructions: http://docs.bcfg2.org/installation/packages.html#building-from-an-git-checkout After "cd redhat; make" I get this error: error: File /root/VCS/git/bcfg2.davisj/redhat/build/bcfg2-1.2.0.tar.gz: No such file or directory make: *** [buildrpmdist] Error 1 And this one: RPM build errors: Installed (but unpackaged) file(s) found: /usr/lib/python2.4/site-packages/Bcfg2/Bcfg2Py3k.py /usr/lib/python2.4/site-packages/Bcfg2/Bcfg2Py3k.pyc /usr/lib/python2.4/site-packages/Bcfg2/Bcfg2Py3k.pyo /usr/sbin/bcfg2-test make: *** [buildrpmdist] Error 1 The following patch seems to resolve both errors. index 7533b98..f8f7795 100644 --- a/redhat/Makefile +++ b/redhat/Makefile @@ -22,7 +22,7 @@ VERSION := $(shell cat VERSION) RELEASE := $(shell cat RELEASE) BASE_VER := ${VERSION}-${RELEASE} CURRENT_PACKAGE := $(PACKAGE)-$(BASE_VER) -TARBALL := $(CURRENT_PACKAGE).tar +TARBALL := $(PACKAGE)-$(VERSION).tar DIRNAME := $(shell echo $${PWD}) DIRBASE := $(shell basename $${PWD}) diff --git a/redhat/bcfg2.spec.in b/redhat/bcfg2.spec.in index be2375c..92593a5 100644 --- a/redhat/bcfg2.spec.in +++ b/redhat/bcfg2.spec.in @@ -205,6 +205,7 @@ fi %{python_sitelib}/Bcfg2*.egg-info %dir %{python_sitelib}/Bcfg2 %{python_sitelib}/Bcfg2/__init__.* +%{python_sitelib}/Bcfg2/Bcfg2Py3k.* %{python_sitelib}/Bcfg2/Client %{python_sitelib}/Bcfg2/Component.* %{python_sitelib}/Bcfg2/Logger.* Not that in later revisions of HEAD I also had to add "%{_sbindir}/bcfg2-test" to redhat/bcfg2.spec.in. |