public inbox for [email protected]help / color / mirror / Atom feed
Error Building rpm 7+ messages / 4 participants [nested] [flat]
* Error Building rpm @ 2013-01-21 05:23 Vivek Singh Raghuwanshi <[email protected]> 0 siblings, 3 replies; 7+ messages in thread From: Vivek Singh Raghuwanshi @ 2013-01-21 05:23 UTC (permalink / raw) To: pgsql-www; [email protected]; +Cc: Devrim GÜNDÜZ <[email protected]> Hi All, I am trying to build rpm of PostgreSQL, and the approach is building rpm for 1. CentOS 6+ 2. Fedora 15+ 3. RedHat 6+ 4. OpenSUSE 5. SuSE via single spec file and not using any external rpm or repo while building the problem i am facing right now is there is some dependencies which is now not provided by RedHat and SUSE 1. SLE_11_SP2 perl-ExtUtils-Embed, uuid-devel, openldap-devel (For this i am using openldap2-devel its working fine so no problem) 2.openSUSE_12.2 perl-ExtUtils-Embed, openldap-devel (For this i am using openldap2-devel its working fine so no problem) 3.RedHat_RHEL-6 uuid-devel (Now RedHat is not providing this rpm) If i am installing uuid-devel from external source i am able to build rpm but how to build without installing it from external repo. now redhat is giving libuuid. and Suse is not having perl-ExtUtils-Embed rpm. Please advised. -- ViVek Raghuwanshi Mobile -+91-09595950504 Skype - vivek_raghuwanshi IRC vivekraghuwanshi http://vivekraghuwanshi.wordpress.com/ http://in.linkedin.com/in/vivekraghuwanshi ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: Error Building rpm @ 2013-01-21 05:29 John R Pierce <[email protected]> parent: Vivek Singh Raghuwanshi <[email protected]> 2 siblings, 0 replies; 7+ messages in thread From: John R Pierce @ 2013-01-21 05:29 UTC (permalink / raw) To: [email protected] On 1/20/2013 9:23 PM, Vivek Singh Raghuwanshi wrote: > 3.RedHat_RHEL-6 > uuid-devel (Now RedHat is not providing this rpm) you sure about that? now, I'm running CentOS 6 not RHEL6, but the packages are 1:1 and built from the same SRPMs. uuid-devel.i686 1.6.1-10.el6 base uuid-devel.x86_64 1.6.1-10.el6 base -- Sent via pgsql-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: Error Building rpm @ 2013-01-21 05:32 Tom Lane <[email protected]> parent: Vivek Singh Raghuwanshi <[email protected]> 2 siblings, 0 replies; 7+ messages in thread From: Tom Lane @ 2013-01-21 05:32 UTC (permalink / raw) To: Vivek Singh Raghuwanshi <[email protected]>; +Cc: pgsql-www; [email protected]; Devrim GÜNDÜZ <[email protected]> Vivek Singh Raghuwanshi <[email protected]> writes: > 3.RedHat_RHEL-6 > uuid-devel (Now RedHat is not providing this rpm) works for me in RHEL-6 ... regards, tom lane -- Sent via pgsql-www mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-www ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: [HACKERS] Error Building rpm @ 2013-01-21 05:39 Devrim GÜNDÜZ <[email protected]> parent: Vivek Singh Raghuwanshi <[email protected]> 2 siblings, 1 reply; 7+ messages in thread From: Devrim GÜNDÜZ @ 2013-01-21 05:39 UTC (permalink / raw) To: Vivek Singh Raghuwanshi <[email protected]>; +Cc: pgsql-www; [email protected] Hi, On Mon, 2013-01-21 at 10:53 +0530, Vivek Singh Raghuwanshi wrote: > I am trying to build rpm of PostgreSQL, and the approach is building > rpm for > 1. CentOS 6+ > 2. Fedora 15+ > 3. RedHat 6+ > 4. OpenSUSE > 5. SuSE > > via single spec file and not using any external rpm or repo while > building Building RPMs using a single spec file is almost impossible, as I wrote you in my previous emails. SuSE has different package names, Fedora 15+ has separate init system (systemd), etc. That's why I am keeping separate copies of each spec file for Fedora and its derivatives (RHEL, SL, CentOS) separately. -- Devrim GÜNDÜZ Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr http://www.gunduz.org Twitter: http://twitter.com/devrimgunduz Attachments: [application/pgp-signature] signature.asc (198B, 2-signature.asc) download ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: [HACKERS] Error Building rpm @ 2013-01-21 06:03 Vivek Singh Raghuwanshi <[email protected]> parent: Devrim GÜNDÜZ <[email protected]> 0 siblings, 1 reply; 7+ messages in thread From: Vivek Singh Raghuwanshi @ 2013-01-21 06:03 UTC (permalink / raw) To: Devrim GÜNDÜZ <[email protected]>; +Cc: pgsql-www; [email protected] Thanks Devrim, But i am trying to achieve this via multiple if conditions , can you send me your redhat and suse spec files. On Mon, Jan 21, 2013 at 11:09 AM, Devrim GÜNDÜZ <[email protected]> wrote: > > Hi, > > On Mon, 2013-01-21 at 10:53 +0530, Vivek Singh Raghuwanshi wrote: > > I am trying to build rpm of PostgreSQL, and the approach is building > > rpm for > > 1. CentOS 6+ > > 2. Fedora 15+ > > 3. RedHat 6+ > > 4. OpenSUSE > > 5. SuSE > > > > via single spec file and not using any external rpm or repo while > > building > > Building RPMs using a single spec file is almost impossible, as I wrote > you in my previous emails. SuSE has different package names, Fedora 15+ > has separate init system (systemd), etc. That's why I am keeping > separate copies of each spec file for Fedora and its derivatives (RHEL, > SL, CentOS) separately. > -- > Devrim GÜNDÜZ > Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com > PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer > Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr > http://www.gunduz.org Twitter: http://twitter.com/devrimgunduz > -- ViVek Raghuwanshi Mobile -+91-09595950504 Skype - vivek_raghuwanshi IRC vivekraghuwanshi http://vivekraghuwanshi.wordpress.com/ http://in.linkedin.com/in/vivekraghuwanshi ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: [HACKERS] Error Building rpm @ 2013-01-21 06:41 Devrim GÜNDÜZ <[email protected]> parent: Vivek Singh Raghuwanshi <[email protected]> 0 siblings, 1 reply; 7+ messages in thread From: Devrim GÜNDÜZ @ 2013-01-21 06:41 UTC (permalink / raw) To: Vivek Singh Raghuwanshi <[email protected]>; +Cc: pgsql-www; [email protected] Hi, On Mon, 2013-01-21 at 11:33 +0530, Vivek Singh Raghuwanshi wrote: > But i am trying to achieve this via multiple if conditions , can you > send me your redhat and suse spec files. As I have emailed you before, spec files,etc. are at http://svn.pgrpms.org/repo Regards, -- Devrim GÜNDÜZ Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr http://www.gunduz.org Twitter: http://twitter.com/devrimgunduz Attachments: [application/pgp-signature] signature.asc (198B, 2-signature.asc) download ^ permalink raw reply [nested|flat] 7+ messages in thread
* Re: [HACKERS] Error Building rpm @ 2013-01-21 06:45 Vivek Singh Raghuwanshi <[email protected]> parent: Devrim GÜNDÜZ <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Vivek Singh Raghuwanshi @ 2013-01-21 06:45 UTC (permalink / raw) To: Devrim GÜNDÜZ <[email protected]>; +Cc: pgsql-www; [email protected] On Mon, Jan 21, 2013 at 12:11 PM, Devrim GÜNDÜZ <[email protected]> wrote: > > Hi, > > On Mon, 2013-01-21 at 11:33 +0530, Vivek Singh Raghuwanshi wrote: > > > But i am trying to achieve this via multiple if conditions , can you > > send me your redhat and suse spec files. > > As I have emailed you before, spec files,etc. are at > http://svn.pgrpms.org/repo > Spec file for SuSE is only for 8.4 not for 9.2+ > > Regards, > -- > Devrim GÜNDÜZ > Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com > PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer > Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr > http://www.gunduz.org Twitter: http://twitter.com/devrimgunduz > -- ViVek Raghuwanshi Mobile -+91-09595950504 Skype - vivek_raghuwanshi IRC vivekraghuwanshi http://vivekraghuwanshi.wordpress.com/ http://in.linkedin.com/in/vivekraghuwanshi ^ permalink raw reply [nested|flat] 7+ messages in thread
end of thread, other threads:[~2013-01-21 06:45 UTC | newest] Thread overview: 7+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2013-01-21 05:23 Error Building rpm Vivek Singh Raghuwanshi <[email protected]> 2013-01-21 05:29 ` John R Pierce <[email protected]> 2013-01-21 05:32 ` Tom Lane <[email protected]> 2013-01-21 05:39 ` Devrim GÜNDÜZ <[email protected]> 2013-01-21 06:03 ` Vivek Singh Raghuwanshi <[email protected]> 2013-01-21 06:41 ` Devrim GÜNDÜZ <[email protected]> 2013-01-21 06:45 ` Vivek Singh Raghuwanshi <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox