Hi all. sorry for my english, I'm from Ukraine.
so, i build http://dev.centos.org/centos/6/SCL/SRPMS/python27-1-10.el6.centos.alt.src.rp..., then http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos....http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos.alt.src.rpm%5Dpython27-pythonand when try to build http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7...http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7.el6.centos.alt.src.rpm%5Dpython27-python-setuptools%5B/urlit failed.
build.log and root.log is in attachment. Help me please, what i do not right?
On Wed, Feb 26, 2014 at 4:11 AM, titan titan.dn@gmail.com wrote:
Hi all. sorry for my english, I'm from Ukraine.
so, i build
http://dev.centos.org/centos/6/SCL/SRPMS/python27-1-10.el6.centos.alt.src.rp... , then
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos.... < http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos....
and
when try to build
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7... < http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7...
it
failed.
build.log and root.log is in attachment.
Your attachments were scrubbed. It's best to use pastebin.com or another pastebin service and provide the link in your reply.
Help me please, what i do not right?
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
ok build.log: http://pastebin.com/BvQ5au2h root.log: http://pastebin.com/UF5kPPuj
2014-02-26 20:05 GMT+02:00 SilverTip257 silvertip257@gmail.com:
On Wed, Feb 26, 2014 at 4:11 AM, titan titan.dn@gmail.com wrote:
Hi all. sorry for my english, I'm from Ukraine.
so, i build
http://dev.centos.org/centos/6/SCL/SRPMS/python27-1-10.el6.centos.alt.src.rp...
, then
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos....
<
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-2.7.5-7.el6.centos....
and
when try to build
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7...
<
http://dev.centos.org/centos/6/SCL/SRPMS/python27-python-setuptools-0.6.28-7...
it
failed.
build.log and root.log is in attachment.
Your attachments were scrubbed. It's best to use pastebin.com or another pastebin service and provide the link in your reply.
Help me please, what i do not right?
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
-- ---~~.~~--- Mike // SilverTip257 // _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 02/27/2014 12:06 AM, titan wrote:
ok build.log: http://pastebin.com/BvQ5au2h root.log: http://pastebin.com/UF5kPPuj
When building SCL packages, you need to add 2 things to the build root directly ... scl-utils-build and <scl_name>-build package
Your root log seems to have scl-utils-build, but not python27-build.
So the process is this:
1. Build the latest scl-utils package (looks like you have done that). 2. Build latest scl metadata package, in this case python27-1-10.el6.src.rpm package (that is not in your build root). This produces python27-1-10.el6.x86_64.rpm and python27-build-1-10.el6.x86_64.rpm 3. Add in these two packages to your mock root: scl-utils-build and <scl_name>-build (in this case python27-build)
See this whole mailing list thread for details: https://lists.fedorahosted.org/pipermail/softwarecollections/2012-November/0...
So,
You need to have a separate mock config file for each SCL (ie, one for python27 and another one for python33 or mysql55, etc) ... and you need to modify the line:
config_opts['chroot_setup_cmd'] =
so that it contains the build group and add to it scl-utils-build python27-build as explained in the above link (in that case perl514 is the scl name and they have this):
config_opts['chroot_setup_cmd'] = 'install @build scl-utils-build perl514-build'
=================
The real question is ... why are you trying to build SCLs, when you can just do:
yum install centos-release-SCL
then use the CentOS compiled version of SCLs (in this case ... yum install python27)
See our release announce for more info:
http://lists.centos.org/pipermail/centos-announce/2014-February/020164.html
i modified mock config and nothing be change
build.log: http://pastebin.com/ke4pKX4Y root.log: http://pastebin.com/aza0r4Yf
2014-02-27 11:01 GMT+02:00 Johnny Hughes johnny@centos.org:
On 02/27/2014 12:06 AM, titan wrote:
ok build.log: http://pastebin.com/BvQ5au2h root.log: http://pastebin.com/UF5kPPuj
When building SCL packages, you need to add 2 things to the build root directly ... scl-utils-build and <scl_name>-build package
Your root log seems to have scl-utils-build, but not python27-build.
So the process is this:
- Build the latest scl-utils package (looks like you have done that).
- Build latest scl metadata package, in this case
python27-1-10.el6.src.rpm package (that is not in your build root). This produces python27-1-10.el6.x86_64.rpm and python27-build-1-10.el6.x86_64.rpm 3. Add in these two packages to your mock root: scl-utils-build and <scl_name>-build (in this case python27-build)
See this whole mailing list thread for details:
https://lists.fedorahosted.org/pipermail/softwarecollections/2012-November/0...
So,
You need to have a separate mock config file for each SCL (ie, one for python27 and another one for python33 or mysql55, etc) ... and you need to modify the line:
config_opts['chroot_setup_cmd'] =
so that it contains the build group and add to it scl-utils-build python27-build as explained in the above link (in that case perl514 is the scl name and they have this):
config_opts['chroot_setup_cmd'] = 'install @build scl-utils-build perl514-build'
=================
The real question is ... why are you trying to build SCLs, when you can just do:
yum install centos-release-SCL
then use the CentOS compiled version of SCLs (in this case ... yum install python27)
See our release announce for more info:
http://lists.centos.org/pipermail/centos-announce/2014-February/020164.html
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 02/27/2014 03:42 AM, titan wrote:
i modified mock config and nothing be change
build.log: http://pastebin.com/ke4pKX4Y root.log: http://pastebin.com/aza0r4Yf
You still do not have python27-build in your root.log ... you added python27 and not python27-build to the config.
See my example here:
http://people.centos.org/hughesjr/scl_examples/
That is what I used to build python27, and the root.log and build.log.
You will first need to rebuild python27-python with that config (of course, modified for your environment), then build python27-python-setuptools.
omg, I'm careless thanks, it's job
2014-02-27 12:24 GMT+02:00 Johnny Hughes johnny@centos.org:
On 02/27/2014 03:42 AM, titan wrote:
i modified mock config and nothing be change
build.log: http://pastebin.com/ke4pKX4Y root.log: http://pastebin.com/aza0r4Yf
You still do not have python27-build in your root.log ... you added python27 and not python27-build to the config.
See my example here:
http://people.centos.org/hughesjr/scl_examples/
That is what I used to build python27, and the root.log and build.log.
You will first need to rebuild python27-python with that config (of course, modified for your environment), then build python27-python-setuptools.
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos