-
Notifications
You must be signed in to change notification settings - Fork 40
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
Package 5.7.2 for Ubuntu (focal, jammy), re-divide into lib / dev / bin + metapkg, automated ppa:swiftlang/swiftlang deploy #162
base: main
Are you sure you want to change the base?
Conversation
This is prep for turning the binary packages into libswiftlang, swiftlang-dev, swiftlang (swiftlang-lldb in succession?)
- Re-divide into libswiftlang-X.Y.Z, libswiftlang-X.Y.Z-dev, libswiftlang-X.Y.Z-bin, swiftlang metapackage - Add Jammy build - Share resource files with symlinks between different series where possible
… a self-reference
…e-install and post-removal actions instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added some hopefully clarifying review notes.
@@ -10,37 +10,66 @@ | |||
|
|||
set -eux | |||
|
|||
source_only_pkg=FALSE # build binary deb by default | |||
while getopts ":s" option; do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A -s
option was added to optionally build a source package with build_deb.sh
(source package's assets would then be signed and uploaded to an external build server to build the binary package in case of the PPA or later perhaps an Ubuntu or Debian distribution intended package).
|
||
# build the source package | ||
${here}/build_source_package.sh ${staging_dir} | ||
|
||
# install the build dependencies | ||
cd ${staging_dir} | ||
mk-build-deps --install ${package_dir}/debian/control.in --tool 'apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends' | ||
|
||
if [ -f /.dockerenv ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This conditional was added since I noticed as part of building in Jammy and Focal LXC containers with non-privileged accounts that it was necessary (and conversely plainly adding sudo
would break the Docker based build).
@@ -0,0 +1,7 @@ | |||
[swiftlang] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a config file needed for uploading the (signed) source package to Launchpad.
@@ -1 +0,0 @@ | |||
## bionic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I took the liberty to remove the bionic build since it didn't exist yet and since bionic is not going to be supported without ESM that much longer (probably not a good practice to encourage building with it since focal and jammy are in existence).
binutils, git, pkg-config, tzdata, unzip, | ||
python3 | ||
Description: Swift programming language | ||
Swift is a general-purpose programming language built using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't very sure if perhaps this longer schpiel about Swift should be repeated in the different packages, or should be there only in the meta-package? If the package division in this style is something you want to keep, the descriptions to the individual packages probably needs revisiting still, either way.
SWIFT_BUILDDIR=$(CURDIR)/build | ||
|
||
|
||
export DEB_BUILD_MAINT_OPTIONS=hardening=+format,+fortify,+stackprotectorstrong,+relro,optimize=-lto |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These env vars were added as a way to create CFLAGS
, CXXFLAGS
, LDFLAGS
devoid of the -ffat-lto-objects
and -flto=auto
flags which throws off linking on Jammy otherwise (see https://forums.swift.org/t/how-to-build-the-5-7-1-toolchain-in-swift-org-release-like-archive-layout-on-ubuntu-20-04-or-22-04/61837/8 for my fumbling on this topic).
The inclusion of -flto=auto
twice in the strings is intentional; it has to be stripped twice because bizarrely it features twice in the default flags.
Note that although I used these commands to create the list of flags below on lines 83--86 below, the env vars are in fact not referenced below in the override_dh_auto_build
(on said lines 83--86) but I instead included hard coded CFLAGS
etc down there. I did this because I noticed when dpkg-buildflags --get CFLAGS
etc are evaluated in context of debuild
, I found that it was producing an empty string for each of these flags (this would successfully build since the offending LTO related flags are then removed, but then leaves out the security oriented flags that are meant to be there for example), whereas when same command is executed in a regular terminal session on the build host, the strings I included in the rules
file on lines 83--85 are produced. So I am doing something wrong, and could not quite work out what, yet.
Long story short, it may make sense to just remove these lines 20--22 here unless someone knows how dpkg-buildflags
should actually be used to get the wanted effect...
sed -e 's/X.Y.Z/$(SWIFTLANG_PKG_VER)/g' < debian/swiftlang.postinst.in > debian/swiftlang-$(SWIFTLANG_PKG_VER)-bin.postinst | ||
sed -e 's/X.Y.Z/$(SWIFTLANG_PKG_VER)/g' < debian/swiftlang.prerm.in > debian/swiftlang-$(SWIFTLANG_PKG_VER)-bin.prerm | ||
|
||
chmod ugo+x debian/swiftlang-$(SWIFTLANG_PKG_VER)-bin.postinst |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The postinst
and prerm
actions were added as a means of installing and removing the alternative symlinks at package install and removal time, respectively. This could alternatively be done with dh_installalternatives
also in case of Jammy, but it is too new a feature to exist yet on Focal, I found (that looks to anyway just output similar post-install and pre-removal actions).
# We'd rather not do that either, see above. | ||
|
||
override_dh_shlibdeps: | ||
dh_shlibdeps -- -xlibswiftlang-$(SWIFTLANG_PKG_VER) -xswiftlang-$(SWIFTLANG_PKG_VER)-bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The division into libswiftlang-X.Y.Z
and libswiftlang-X.Y.Z-bin
necessitated:
- removing the
override_dh_makeshlibs
from above (it was overridden to be a no-op previous to these changes). - these
-x
params passed todh_slibdeps
. In their absence, including${shlibs:Depends}
for these packages in the control file would result in self-references in theDepends
lists for these packages (they would list themselves as a dependency). I guess because there are shared libraries that depend on other shared libraries within these packages, anddh_makeshlibs
when run mostly fails to list shared library names and versions sinceSOVERSION
is mostly not set anywhere in the Swift libraries built. This is a guess, functionally things seem OK, but I figured further cleanup on this topic would be follow-up material.
Re: making dh_makeshlibs
actually produce its output: with the packages divided into a lib and bin package, I did not manage to find flags which would make dh_shlibdeps
stage pass without dh_makeshlibs
also being run (an alternative would I guess be a shlibs.local
file, which gets quite tedious too?)
@@ -0,0 +1,101 @@ | |||
#!/usr/bin/make -f |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file did not get recognised as a moved file (because original is replaced with a symlink), so I am listing the changes I made systematically below.
@@ -0,0 +1,7 @@ | |||
#!/bin/sh -e | |||
|
|||
update-alternatives --install /usr/bin/swift swiftlang /usr/lib/swiftlang/X.Y.Z/bin/swift-frontend 50 \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the absence of multiple versions of the package that provide an alternative, the automatically installed alternative here gets installed as /usr/bin/swift
etc. Once multiple Swift package versions exist, the one exposed as /usr/bin/swift
etc is configurable with update-alternatives --config swiftlang
.
If this is an acceptable solution, it probably should be documented in the root level README in the repo at least?
... oh, installation instructions for the PPA were also missing, added to description (and below). sudo apt-add-repository ppa:swiftlang/swiftlang
sudo apt install swiftlang |
Thank you @mz2! I will review these changes soon, and provide my feedback. |
@mz2 I think it would good to jump on a call to discuss this pull request, can private message on forums.swift.org? |
DM'd - look forward to speaking with you! |
Dumping my notes from the call over here before I forget -- please correct if I have misunderstood anything:
|
Hi, can I get try continue this? |
@5hv5hvnk I'm about to post changes either tomorrow or later this weekend on the lines noted above. I'd propose waiting until that 😄 Sorry for the delay. |
Hi @mz2, do you intend to proceed with this PR? Maybe you could provide some details for what's missing in this PR before it can be reviewed? |
Yep, indeed am going to, just spring flu and work stuff of managerial kind
got in the way of hacking time in the end recently. I’ll have another stab
at splitting this on the easter weekend.
On Fri, 31 Mar 2023 at 14:55 Max Desiatov ***@***.***> wrote:
Hi @mz2 <https://github.com/mz2>, do you intend to proceed with this PR?
Maybe you could provide some details for what's missing in this PR before
it can be reviewed?
—
Reply to this email directly, view it on GitHub
<#162 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAARNQZW6ZWPNQI6KWPPEBLW63A4FANCNFSM6AAAAAATOKTAVM>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
- - - - -
Matias Piipari, PhD
***@***.***
|
This might look like a bit of a monster with unrelated changes pooled together. I have no particular attachment to all parts of this ever getting merged, but given the present maturity of the Deb packaging in this repo, there were several interrelated sets of changes that I thought are easiest demonstrated together even if in the end this were cut into smaller separate PRs or only partly accepted. Happy to discuss here, on the forum or wherever 🙂 ☮️
I'll put comments up with further review notes up tomorrow or later this week with better time, but...
The more straightforward changes:
The potentially less straightforward ones:
/opt/...
to/usr/lib/swiftlang/...
as one step in preparing to a package layout we could try get sponsored foruniverse
. At least with my interpretation of https://www.debian.org/doc/packaging-manuals/fhs/fhs-3.0.html#usrlibexec, this location should be preferable to/usr/libexec
, though further changes on this dimension should be straightforward.lib
,dev
,bin
+ metapackage, with the separation of the runtime libraries and the compiler executables being the more meaningful change here (the-dev
is potentially a bit pointless, or should also contain the lldb related libraries). I do not mean to claim this 3-way split + meta-package precisely should be the division, only meaning to assert that it is more useful than current since the runtime dependencies are comparatively small compared to the rest, and make building Deb or Snap packages that depend on just those possible (which is really where these packages add value compared to just OCI images, IMO).xcode-select
).ppa:swiftlang/swiftlang
(https://launchpad.net/~swiftlang/+archive/ubuntu/swiftlang), accomplishes right now Jammy and Focal series, for ARM64 and AMD64. I did this initially to make it easy for myself to check that the matrix of series x microarchitectures my changes are affecting continue to build, and in part as another step into producing packages that could eventually be accepted into universe (i.e. separating into a source package build + binary packages getting built on Launchpad). Since I know you state in the upstream README that you intend to firstly create an Apple APT repository, this PPA may not be what you want, but it might be also convenient as that initial step: updates could be signed with your key this way too, it would be easy for people to add the repo (without having to trust a script to modify one's apt sources), and the PPA I created is a "team based" one, which means access could be shared to it for Apple accounts (you could also just take it over, whatever works).The package can be installed from the PPA as follows on focal or jammy, on either AMD64 or ARM64 (the
jammy5
andfocal5
versions are the first properly functioning versions).sudo apt-add-repository ppa:swiftlang/swiftlang sudo apt install swiftlang # sudo apt install swiftlang-5.7.2-bin libswiftlang-5.7.2 libswiftlang-5.7.2-dev