Hello wonderful form members!

I've recently started to try my hand at packaging applications for Solus and would like any feedback you may have. I genuinely have no idea what I'm doing and have learned everything from watching the "Learn Solus Packaging - Session 4 video and some help from the amazing forum members here.

I'm nothing close to a programmer and can barely manage my way through the CLI, but somehow managed to package my first two applications, KBackup and Featherpad! I was also able to sync them successfully as a .eopkg in a local repo, install them, and have them running on my Plasma machine. I would be eternally grateful if you have the time to visit my GitHub and look at the packaging files I have there and provide any feedback. I'd like to know if there is something I included in the builddeps that could be removed or is redundant, if something with my build or package was done incorrectly, or generally how I could improve. Or if I screwed something up on GitHub, let me know, because I learned how to use git in the CLI, use the GitHub web interface, and package all at the same time (there was a steep learning curve).

I've submitted KBackup for inclusion in the repos, along with a link to my GitHub and .eopkg build files, and on the advice/guidance from another member on the dev tracker, I have removed all .eopkg files, so each directory only contains the abi, package.yml, and pspec files for each build. My goal is to one day be able to be a package maintainer here and offer tangible support for the distribution I call home.

Thank you to all the forum members who have helped answer my questions, provide troubleshooting and guidance, and been a great support to me. You all are one of the main reasons I stopped distro hopping and settled down with Solus. It's a beautiful, intuitive, and all-around excellent Linux distribution, but the community is what really makes it feel like home.

Congrats on starting to get involved in packaging. I noticed that you are using the "explicitly named" packages versus the appropriate use of pkgconfigs. I'd suggest you read https://getsol.us/articles/packaging/packaging-practices/en/#build-dependencies and also be mindful of dependencies of packages you are adding as builddeps, so as to not unnecessary list builddeps which are being pulled in by other listed packages.

    JoshStrobl Thank you for the feedback! Is there a way to find that through the command line for all packages? Or would Google be my best bet if it's not listed? It works flawlessly in the libgtk-3-devel package in the example, but this is the output I get when I run eopkg info karchive-devel

    Package found in Solus repository:
    Name : karchive-devel, version: 5.80.0, release: 50
    Summary : Development files for karchive
    Description : Reading, creating, and manipulating file archives.
    Licenses : LGPL-2.0-or-later
    Component : programming.devel
    Dependencies : karchive extra-cmake-modules qt5-tools-devel
    Distribution : Solus, Dist. Release: 1
    Architecture : x86_64, Installed Size: 487.00 KB, Package Size: 256.00 KB
    Reverse Dependencies: mailimporter-devel kdelibs4support-devel

    It's a similar message for eopkg info karchive, does not show the Provides: field.

      Brucehankins Good question. If a package does not provide a .pc file (pkgconfig file), then it won't have a "Provides" listed with it. In those instances, the package name itself (e.g. k-archive-devel) is appropriate. Just continue to be mindful of the dependencies, and also note that you only ever need to include one pkgconfig from a single package. So for libgtk-3-devel, you'd only need to provide pkgconfig(gtk+-3.0) and not list all of them. It doesn't matter which one you use, they also just pull in the same package. If a piece of software says you need both glib-2.0 and gio, for example, you'd only need one of them in Solus land.

      About featherpad.

      1. License: should be GPL-3.0-or-later. For correct names of licenses you will find in this page: https://spdx.org/licenses/
      2. Summary: I think it should be something short like Lightweight Qt Plain-Text Editor
      3. Builddeps: Replace -devel with pkgconfig()
        • qt5-svg-devel with pkgconfig(Qt5Svg),
        • qt5-x11extras-devel with pkgconfig(Qt5X11Extras),
        • libx11-devel with pkgconfig(x11)
        • libhunspell-devel with pkgconfig(hunspell)
          In this case:
           builddeps  :
               - pkgconfig(Qt5Svg)
               - pkgconfig(Qt5X11Extras)
               - pkgconfig(hunspell)
               - pkgconfig(x11)
          The order should be 0-9,A-Z a-z.
        • Homepage: is optional but usually I like to add the homepage detail, because it adds this option in Software Center:

        algent Thank you for the feedback! I'll update the package and commit the changes as soon as I can.

        I'm still learning the licensing also, and as it seems almost none are compatible, I'm just using the same license information I can find on the source code websites and including that for individual packages rather than the whole repository.

          Brucehankins You don't need to apply any license on the packaging scripts, you only need to document the license(s) of the source code of the thing you are packaging via the license key. None of our source repos on Solus, with package instructions, have any licensing. It's effectively public domain.

          Brucehankins For example like this.
          At featherpad replace license : GNU GPL-3.0-or-later with license : GPL-3.0-or-later. Remove GNU.

          algent corrected the indentation and the licensing portion of the package.yml file and pushed to git. You sir are amazing for being so thorough and helpful.

          17 days later

          Sakura terminal emulator has been packaged and tested against Shannon stable repo for anyone who is interested.
          Note If you are not running the most recent update for Solus, you will only be able to install with unstable repos.

            Brucehankins Note If you are not running the most recent update for Solus

            I am running the most recent update for Solus Plasma, and could not install this or search the repo for information about it (like a package name). I was looking for something called sakura.

            Is there a different package name we should be asking for? Or does "packaged and tested against Shannon stable repo" not mean that it's actually in the repo, but something else instead?

            EDIT: I assumed that if eopkg it sakura didn't install anything, eopkg sr sakura would give me the information I needed to get it right the next time.

              WetGeek it's not in the Solus repos. The package build spec and package.yml file are on my personal github.

              If you're interested in trying it, you can contact me off site and I can get you the completed eopkg. You'll have to set up your own local repository to install it. It's like a version of Gnome terminal went on a diet.

              Side note for anyone, is there a reason I shouldn't host my own personally created eopkg packages on github? It was mentioned on the dev site, but I honestly didn't inquire too much as why it shouldn't be there.

                WetGeek probably should have added that this is more of a learning/passion project for me. Compiling and packaging software I like or find useful, that can't be found as a snap or Flatpak, as an eopkg. It helps me learn Linux, learn git, learn the CLI, and learn more about Solus as I go.

                Nothing hosted on my github is endorsed, sponsored, or otherwise affiliated with Solus or the team. Some like @algent have been extremely helpful with comments, helping me understand when I've include redundant build deps and troubleshoot problems. And honestly, I wouldn't have even been able to do it without Josh's youtube video.

                  Brucehankins Nice work! Sounds like I have a similar background as you (not a coder/programmer and no idea what I'd be doing), and also interested in learning Solus packaging. Seems like a challenging yet rewarding journey. Thanks for sharing some of your learning experiences here!

                    h3o Thanks for the kind words! I'm always up for a challenge, so if there's something you'd like to packaged that isn't available via repos, snap, or Flatpak like Sakura, Featherpad, or KBackup, let me know and I'll give it a shot. Contact info is on my github and in my forum bio.

                      Brucehankins it's not in the Solus repos

                      Sorry ... I misunderstood your post. No worries at all, I was just curious about trying a new terminal emulator. I'm actually very satisfied with bash.