[Rpm-maint] [rpm-software-management/rpm] How to pack a symbolic link file with the file link to not just a link file (#1122)

2020-03-15 Thread fbs2016
I try to pack rpm package which include a symbolic link file, I want to pack the file which the symbolic link file links to, but failed. Is there any options to enable the function? Or rpmbuild don't support it? -- You are receiving this because you are subscribed to this thread. Reply to

Re: [Rpm-maint] [rpm-software-management/rpm] The max lengthe of RPM package name is 66? (#974)

2020-01-18 Thread fbs2016
I just truncate the name if its length is more than 66, and it doesn't impact the RPM package generation and extraction. Thanks -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Rpm-maint] [rpm-software-management/rpm] The max lengthe of RPM package name is 66? (#974)

2019-12-25 Thread fbs2016
I meet some problem when try to setup the dev env for debugging. Could you point out the lead structure definition in source file? I find some code that the name length is "66" in struct "rpmlead_s" which I think it's deprecated. Thanks -- You are receiving this because you are subscribed to

Re: [Rpm-maint] [rpm-software-management/rpm] The max lengthe of RPM package name is 66? (#974)

2019-12-19 Thread fbs2016
The java program create the RPM package with a spec file as input. It's hard to tell why it can't work as only the extraction by standard RPM command failed. Maybe I can debug the RPM source code to find why it reports the err then I can update the java code to meet the standard RPM extraction

Re: [Rpm-maint] [rpm-software-management/rpm] The max lengthe of RPM package name is 66? (#974)

2019-12-19 Thread fbs2016
Thanks, Festi. In fact, I use a java program which to create RPM package, which refer to an old RPM API (RPM 4.4.2). I can use it to create a RPM package and use the standard RPM command to parser it, like rpm/rpm2cpio command. I meet the name length limit problem when create RPM package, then

[Rpm-maint] [rpm-software-management/rpm] The max lengthe of RPM package name is 66? (#974)

2019-12-11 Thread fbs2016
>From lib/rpmlead.c, I see the definatino "char name[66];", it means that the >limit of the rpm package name length is 66? I try to set it to a larger one like "98" in my code, it can generate the rpm package success but failed when I use rpm command to extract it. -- You are receiving this