Am 27.01.23 um 02:56 schrieb David C. Rankin:
On 1/26/23 17:35, Markus Schaaf wrote:
Am 27.01.23 um 00:13 schrieb David C. Rankin:
Where can I get the last sourcepkg used to pkg hylafax for Arch before hylafax was dropped from Arch?
It is either in svntogit-packages or svntogit-community. Find the commit that dropped the package and checkout the predecessor.
I'll check there. To be clear, the hylafax package was in the extra repo and last updated in April, 2021 and dropped sometime thereafter.
I did not know that Github has no UI for searching history. Of course you would not want to download the whole repo just to search. Out of curiosity I tried it myself, with a little trick: $ git clone --filter=blob:none --no-checkout --single-branch --branch master https://github.com/archlinux/svntogit-packages.git $ cd svntogit-packages/ $ git log | less and a bit of searching gives commit ea9816ac98db68bc4b2af001538f97c87b46bfec Author: heftig <heftig@eb2447ed-0c53-47e4-bac8-5bc4a241df78> Date: Fri Apr 1 17:25:02 2022 +0000 archrelease: copy trunk to testing-x86_64 git-svn-id: file:///srv/repos/svn-packages/svn@441125 eb2447ed-0c53-47e4-bac8-5bc4a241df78 as a good candidate with latest hylafax still there: $ git checkout ea9816ac98db68bc4b2af001538f97c87b46bfec hylafax $ tree hylafax/ hylafax/ ├── repos │ └── extra-x86_64 │ ├── config.local │ ├── faxgetty@.service │ ├── faxq.service │ ├── hfaxd.service │ ├── hylafax.install │ ├── hylafax.service │ ├── hylafax.sysusers │ ├── hylafax.timer │ └── PKGBUILD └── trunk ├── config.local ├── faxgetty@.service ├── faxq.service ├── hfaxd.service ├── hylafax.install ├── hylafax.service ├── hylafax.sysusers ├── hylafax.timer └── PKGBUILD BR