-
Notifications
You must be signed in to change notification settings - Fork 7
Add missing debug symbol packages for APT packages #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add missing debug symbol packages for APT packages #30
Conversation
Fix: pgroonga/pgroonga#382 We build PGroonga's packages for Ubuntu and Debian by using this script. However, this script missing definition for including debug symbol packages. So, https://packages.groonga.org/ubuntu/dists/jammy/universe/binary-amd64/Packages doesn't include postgresql-14-pgdg-pgroonga-dbgsym. We can include debug symbol packages in the packages for Ubuntu and Debian by this modification. Here is the result of "rake apt:build" command with this modification. ``` ├── apt │ ├── build.sh │ ├── debian-bookworm │ │ └── Dockerfile │ ├── debian-bookworm-arm64 │ │ └── from │ ├── debian-bullseye │ │ └── Dockerfile │ ├── debian-bullseye-arm64 │ │ └── from │ ├── env.sh │ ├── repositories │ │ ├── debian │ │ │ └── pool │ │ │ ├── bookworm │ │ │ │ └── main │ │ │ │ └── p │ │ │ │ └── postgresql-14-pgdg-pgroonga │ │ │ │ ├── postgresql-14-pgdg-pgroonga-dbgsym_3.1.6-1_amd64.deb │ │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.debian.tar.xz │ │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.dsc │ │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.buildinfo │ │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.changes │ │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.deb │ │ │ │ └── postgresql-14-pgdg-pgroonga_3.1.6.orig.tar.gz │ │ │ └── bullseye │ │ │ └── main │ │ │ └── p │ │ │ └── postgresql-14-pgdg-pgroonga │ │ │ ├── postgresql-14-pgdg-pgroonga-dbgsym_3.1.6-1_amd64.deb │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.debian.tar.xz │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.dsc │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.buildinfo │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.changes │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.deb │ │ │ └── postgresql-14-pgdg-pgroonga_3.1.6.orig.tar.gz │ │ └── ubuntu │ │ └── pool │ │ ├── focal │ │ │ └── universe │ │ │ └── p │ │ │ └── postgresql-14-pgdg-pgroonga │ │ │ ├── postgresql-14-pgdg-pgroonga-dbgsym_3.1.6-1_amd64.ddeb │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.debian.tar.xz │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.dsc │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.buildinfo │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.changes │ │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.deb │ │ │ └── postgresql-14-pgdg-pgroonga_3.1.6.orig.tar.gz │ │ └── jammy │ │ └── universe │ │ └── p │ │ └── postgresql-14-pgdg-pgroonga │ │ ├── postgresql-14-pgdg-pgroonga-dbgsym_3.1.6-1_amd64.ddeb │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.debian.tar.xz │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1.dsc │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.buildinfo │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.changes │ │ ├── postgresql-14-pgdg-pgroonga_3.1.6-1_amd64.deb │ │ └── postgresql-14-pgdg-pgroonga_3.1.6.orig.tar.gz ```
Could you also show a generated |
Here is contents of the generated debug symbol packages.
|
No. |
You also mentioned it in the description:
|
Fix: pgroonga/pgroonga#382
We build PGroonga's packages for Ubuntu and Debian by using this script. However, this script missing definition for including debug symbol packages. So, https://packages.groonga.org/ubuntu/dists/jammy/universe/binary-amd64/Packages doesn't include postgresql-14-pgdg-pgroonga-dbgsym.
We can include debug symbol packages in the packages for Ubuntu and Debian by this modification. Here is the result of "rake apt:build" command with this modification.