On Sat, Apr 7, 2012 at 5:42 PM, Johnny Hughes johnny@centos.org wrote:
On 04/07/2012 08:24 AM, Peter Penzov wrote:
I have some more questions:
You are still top posting ... please don't.
- Do you use a cluster for building the source code or you take the
SRPMs and manually copy/paste them into the building systems?
There are any number of build systems out there for different things. There is the OBS (Open Build System from open SUSE ... Dell uses this alot), Koji (the Scientific Linux system uses this), or plague (we use this for CentOS-4 and CentOS-5).
However, we wrote our own build system for CentOS-6.
We basically use a beanstalk queue. However, what you use does not matter. I still use scripts like the ones we initially used at the very beginning of CentOS-3 as well.
- What tool do you use to find differences into SRPMs? I don't believe
that you extract the packets manually and compate the code with diff tool every time.
There is NO PROGRAM that I use. I am a Unix system admin. If I want to do something, I use the tools I have been using for 20 years to do it.
In the case of looking at the inside of an SRPM, I would personally do it this way.
- Download the redhat SRPM from here (for example, lets do the latest
firefox):
ftp://ftp.redhat.com/pub/redhat/linux/enterprise/6Client/en/os/SRPMS/firefox-10.0.3-1.el6_2.src.rpm
and the centos SRPM
http://vault.centos.org/6.2/updates/Source/SPackages/firefox-10.0.3-1.el6.ce...
- Now you need to extract the SRPMS in to separate directories. There
are many ways to do this. 2 ways are are to use "rpm2cpio" ...OR... "rpm -Uvh"
If all want to do is to see the differences and not rebuild the pack, I would use rpm2cpio like this:
a. create a separate directory and put each SRPM in there.
b. extract the RedHat SRPM like this: rpm2cpio firefox-10.0.3-1.el6_2.src.rpm | cpio -idv
c. go to the directory with the CentOS SRPM in it and do this: rpm2cpio firefox-10.0.3-1.el6.centos.src.rpm | cpio -idv
d. now do a diff of the two directories: diff -uNrp RHEL/ CentOS/
The output looks like this:
http://pastebin.centos.org/38641
So, you can see that besides the actual SRPM files (which you know are different and line 1 and 2 in the link) ... there are 3 other differences.
We added a file named "firefox-centos-default-prefs.js" (lines 4-18) and removed a file named "firefox-redhat-default-prefs.js" (lines 20-34).
We also modified the SPEC file (lines 36-58)
(The changes are changing the name redhat to centos for sources 12 and 13 and a changelog entry ... note that since this is centos6 there is no source 13)
- Every other file in those two directories are the same.
=========================================================
How would I compare every file ... I would script something to do it.
You could also create one directory named firefox, and you could (if you had rpm and rpmbuild installed) also do it this way:
download both files.
Install the CentOS SRPM like this:
rpm --define "_topdir `pwd`" firefox-10.0.3-1.el6.centos.src.rpm mv SOURCES SOURCES.centos mv SPECS SPECS.centos
- Install the Red Hat SRPM like this:
rpm --define "_topdir `pwd`" firefox-10.0.3-1.el6_2.src.rpm mv SOURCES SOURCES.rhel mv SPECS SPECS.rhel
- do diffs for each dir like this:
diff -uNrp SPECS.rhel/ SPECS.centos/ > SPECS.diff diff -uNrp SOURCES.rhel/ SOURCES.centos/ > SOURCES.diff
======================================================== If you want to have a local git repo that tracks the differences, you could do this instead:
download both files, put them in a firefox dir.
Install the RHEL SRPM (the original file):
rpm --define "_topdir `pwd`" firefox-10.0.3-1.el6_2.src.rpm
- add the SPECS and SOURCES directories to the git repo (I don't like
to add bzipped or gzipped or tar files to git, so I exclude those from the repos):
cd SPECS; git add *; cd ../
cd SOURCES; git add $(ls | egrep -v ".bz2|.gz|.tar"); cd ../
- commit the changes to the git repo so you can track the centos
changes later:
git commit -m "initial rhel rpm imported"
- Repeat steps 2, 3 for the CentOS SRPM ...
a. Now you can see the spec diff doing:
git diff SPECS/
b. or the SOURCES diff doing:
git diff SOURCES/
- Now you can commit the CentOS changes to git:
git commit -m "initial centos rpm imported"
=============================================================== I am not going to also tell you how to do it for svn or some other VCS system ... the bottom line is that there are a hundred different ways to extract the original SRPMS and make changes and track the changes.
Once you do the changes to the SPEC file and the SOURCES, you rebuild the SRPM and then submit that SRPM somehow to a build system (mock, build locally, plague, koji, brew, OBS, ect.). You can have any number of build systems.
This is not rocket science ...
CentOS-devel mailing list CentOS-devel@centos.org http://lists.centos.org/mailman/listinfo/centos-devel
Yes it will be very difficult to create a custom build.
I want to ask you a very specific question: If I decide to create my custom build from Red Hat Linux (with removed Red Hat logos, red color and etc in order not to violate the GPL license) and I just change the name with my own are there going to be any build problems?
I'm not interested in becoming a competitor in Red Hat's support businesses I just want open source OS certified for installation by Oracle database which I can custom modify. I'm not interested in any kernel code modification or package source code modification. I just want to build custom OS with just changed name and color. Maybe deployed on no more that 20 servers.
If I build from source Red Hat just with change name and color are there going to be any problems like dependency problems package source code problems and etc, left by Red Hat to make the life of the competitors terrible? I'm not interested what are they just answer me with YES or NO. I'm sure that you have insight development information about this.