Re: [Rpm-maint] [rpm-software-management/rpm] Docs: Revamp BUILD OPTIONS section in rpmbuild(8) (#1318)

2020-07-29 Thread ニール・ゴンパ
@Conan-Kudo approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1318#pullrequestreview-457471065___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] Support threading for zstd compression. (#1303)

2020-07-29 Thread Florian Festi
Looks like it fails to detect the right commit to checkout and build. Can you 
force push a new version, please, to test if that get's it unstuck? Just do 
some white space changes to the commit message.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1303#issuecomment-665638944___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] Support threading for zstd compression. (#1303)

2020-07-29 Thread marxin
@marxin pushed 1 commit.

790bd81bc215b7aea17cbc5eb2e7a53e15b99ded  Support threading for zstd 
compression.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1303/files/11358ce35d0c98d716d68bb4824e86c44f78491b..790bd81bc215b7aea17cbc5eb2e7a53e15b99ded
___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] Support threading for zstd compression. (#1303)

2020-07-29 Thread marxin
> Looks like it fails to detect the right commit to checkout and build. Can you 
> force push a new version, please, to test if that get's it unstuck? Just do 
> some white space changes to the commit message.

Done, good point!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1303#issuecomment-665651388___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


[Rpm-maint] [rpm-software-management/rpm] debugedit: Fix missing relocation of .debug_types section. (#1322)

2020-07-29 Thread Jan Kratochvil

You can view, comment on, or merge this pull request online at:

  https://github.com/rpm-software-management/rpm/pull/1322

-- Commit Summary --

  * [NFC] debugedit: Reindent edit_dwarf2().
  * debugedit: Fix missing relocation of .debug_types section.

-- File Changes --

M tools/debugedit.c (694)

-- Patch Links --

https://github.com/rpm-software-management/rpm/pull/1322.patch
https://github.com/rpm-software-management/rpm/pull/1322.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1322
___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] debugedit: Fix missing relocation of .debug_types section. (#1322)

2020-07-29 Thread Jan Kratochvil
testcase:
```
rm -f file{,-orig}{,.xz};wget 
https://people.redhat.com/jkratoch/file-orig.xz;xz -dv file-orig.xz;gcc -o 
debugedit tools/debugedit.c tools/hashtab.c -Wall -g -I. -DHAVE_UNISTD_H 
-DHAVE_SETPROGNAME -DHAVE_SYS_PARAM_H -D_GNU_SOURCE -DVERSION='""' -lelf -lrpm 
-lrpmio -lpopt -ldw;cp -p file-orig file;./debugedit -b 
/home/jkratoch/redhat/fedora/ann/master/ann_1.1.2 -d 
/usr/src/debug/ann-1.1.2-18.fc33.x86_64 file;readelf -wi file|sed -n '/Contents 
of the .debug_types section:/,$p'|grep DW_AT_linkage_name
```
before:
```
readelf: file: Warning: DW_FORM_strp offset too big: 38fc
<54>   DW_AT_linkage_name: (indirect string, offset: 0x1490): size
<7e>   DW_AT_linkage_name: (indirect string, offset: 0x1714): 
IcE7not_eofERKi
   DW_AT_linkage_name: (indirect string, offset: 0xcf8): 
rthHalfSpace4distEPd
```
after:
```
<54>   DW_AT_linkage_name: (indirect string, offset: 0x11e6): 
_ZN11ANNorthRectC4Eidd
<7e>   DW_AT_linkage_name: (indirect string, offset: 0xaa4): 
_ZN11ANNorthRectC4EiRKS_
   DW_AT_linkage_name: (indirect string, offset: 0x61e): 
_ZN11ANNorthRectC4EiPdS0_
   DW_AT_linkage_name: (indirect string, offset: 0x353f): 
_ZN11ANNorthRectD4Ev
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1322#issuecomment-665915585___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] debugedit: Fix missing relocation of .debug_types section. (#1322)

2020-07-29 Thread Jan Kratochvil
semaphoreci test failed, I will recheck it.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1322#issuecomment-665916452___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: [Rpm-maint] [rpm-software-management/rpm] debugedit: Fix missing relocation of .debug_types section. (#1322)

2020-07-29 Thread Jan Kratochvil
Closed #1322.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1322#event-3600773769___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


[Rpm-maint] [rpm-software-management/rpm] debugedit: Fix missing relocation of .debug_types section. (#1323)

2020-07-29 Thread Jan Kratochvil
There is a new testcase: `debugedit .debug_types exe`
You can view, comment on, or merge this pull request online at:

  https://github.com/rpm-software-management/rpm/pull/1323

-- Commit Summary --

  * [NFC] debugedit: Reindent edit_dwarf2().
  * debugedit: Fix missing relocation of .debug_types section.

-- File Changes --

M tests/data/SOURCES/foo.c (5)
M tests/debugedit.at (26)
M tools/debugedit.c (699)

-- Patch Links --

https://github.com/rpm-software-management/rpm/pull/1323.patch
https://github.com/rpm-software-management/rpm/pull/1323.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1323
___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint