-
Notifications
You must be signed in to change notification settings - Fork 350
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
Evaluate releases distribution #432
Comments
I'd argue the opposite:
You're contradicting yourself here: You're calling Debians versioning system ingenious while in the next sentence blaming ubuntu's system.
Debian releases one major version every 2 years and they are supported officially for 3 years and up to 5 years via the LTS program, similar to ubuntus. While these distributions do support the software they include both have very strict guidelines on what changes can go into stable, when, and for what reason. You can't just push a bugfix release and expect it to make it there. For example the debian developers reference states
Possible but personally I hate the PPA system with a passion. So much could go wrong. But do you really want to do all the work making sure dunst works fine with all available ubuntu versions as well as new ones as they come out?
While I've heard of flatpak and the line I've never used them so I don't have a proper opinion on them. But I think we should avoid using less known methods since it makes it unlikely someone will use them - at this point it's easier to just build from source. |
Yes, but my goal is not the existing version of dunst. My goal is the latest version with almost zero effort. This has a simple reason: People can't come to the bugtracker and ask about old stuff. Yes, the could install dunst manually via If you provide a repo, you do not have to handle any make calls and missing
In general yes, but there's a small detail. Ubuntu does not provide an equivalent to the debian testing release. If you're on testing, you get the latest dunst (which of course had to travel through sid at first). There is no such equivalent of Ubuntu. You either can use a stable snapshot or an old stable snapshot. On Debian you can choose between testing and stable and if you choose stable you can still fine-tune the version via apt-pinning.
Well, that does not apply to debian. It was meant for ubuntu.
Well, I wouldn't set the standards of debian stable there. As long as the package builds fine in the PPA, I assume it's ok. Also, most of the introduced bugs are then mostly from upstream.
I've researched appimage yesterday (flatpak and appimage have fundamental differences), but appimage did not suffice me. AppImage's pro is, that you just have a single bundle and it works with any Unix. But therefore, AppImage includes all required libraries in the file. So, this will only work after #334 is solved. Also, I don't know how easy it is to update an AppImage. Flatpak's advantage is, that it provides an appstore and therefore you could easily update dunst. Con: you need the actual flatpak system package/binary first. Off topic:
Oh, tell me more! |
Please elaborate. If you have questions, AppImage developers are on #AppImage on irc.freenode.net.
Please check https://github.com/AppImage/AppImageUpdate. |
@probonopd There are a few features I personally miss. Currently, some example scripts look quite hackish and the fact that everything is done in your local dir and nothing like $DESTDIR/PKGDIR is exported in your env make such scripts cumbersome. Also packaging it currently with Appimage makes no sense, as we would have to bundle GTK+, making the package for factor 1000 (sic!) bigger. We want to get rid of that first. |
My opinion (and it's just my opinion, since you're doing most (all) of the work, you have more say in this than I do): I dislike installation paths that circumvent the systems package manager. It just adds more stuff you can forget when trying to keep your system up to date (things installed via ruby gems or python pip comes to mind). I haven't looked into it very deeply but http://openbuildservice.org/about/ (https://build.opensuse.org/) seems to be interesting in order to get native packages for the most popular distributions without having to setup a build environment for everything by ourselves. |
I agree with you by 110%. But I measure the Regarding OBS: I did not find any docs according OBS and the WebUI is IMHO fucking complicated. I think that OBS is actually a good thing, but I guess it's hard to master. |
What are you referring to? AppImageKit does not compile your sources. What you put inside an AppImage is entirely your own business.
Factor 100, really? Depending on how exactly you do it and which target systems you are targeting, you may even get away without bundling Gtk+. |
Well, OBS != build.opensuse.org and clicking on docs there resolves to the Opensuse docs and not the general OBS docs (which I needed).
Well, it still is. Some things are very untuitive. But it's getting easier with the docs and IRC support and the ability to copy some stuff from albert. And also have a neat command line client (
Also, if it's not an upstream issue (which would be our work anyways), others can "branch" our dunst package and make a request, which is the equivalent of a PR. insert woohooo gif here I'm missing this in the AUR. |
So, I've worked inside my own project and got deeper into OBS now. It's still the case, that the documentation lacks. But I had been able to create valid repositories for Arch, Ubuntu, Debian and Fedora. At the end of the day, it's supereasy to update multiple repositories with just one push. It should be also possible to trigger an update/rebuild via git push and have dunst nightlies. The support offers At the current point, I have to polish packaging files, as I have copied them plain from the distros with minimal changes. |
And AppImages! |
OBS supports requests 😜 |
I give up on OBS. Why? OBS simply lacks the feature to make patches to the package and increasing the package revision number. The This is bad. The workaround would be to not use This is actually symptomatic to OBS. There are more mistakes of this sort. I don't want to go through the hassle of creating a PPA for Ubuntu. Going through the hassle and feeding multiple distros was cool, but not just for a single distro, I don't primarily use. I pull the "Pull requests welcome" card here. snapcraft: This is the first well documented tool in this thread! It was really a joy reading the docs. Looking at the yaml files, these look quite clean and it even has a special DBus interface (but I don't know how it works in conflicts with notify-osd). It works a bit like docker. Downside: Additional daemon required. Also I estimate the cut of the dunst user set and snapcraft user set minimal. flatpak: Docs are quite good. When reading them, you can see the GApplication stuff shining through. Downside: Also requires a daemon. Also it looks like flatpak apps are mainly targeted for GNOME desktop and dunst can't run there. And like snapcraft, I expect the user set to be quite low. AppImage: In theory, the stuff should work. I've got a clue how it works and dunst can be injected into the system. AppImage is quite open and allows to install the dbus service file by our own via shell script. I also like the idea to have one Exe for all. But I'm reluctant to create it. Like OBS it lacks a proper tutorial and more important: A reference. There are plenty of use cases listed in the wiki. But how are these supposed to help without knowing which command does what? It's like putting the actual source code into your comany's wiki and saying to your colleagues "it's documented".
I wanted to provide packages, but I believe the outcome is not worth the effort. |
Might be a bug. Ping @adrianschroeter |
No. It's not working on OBS for debian and Arch. OBS is doing it right only for RPM. He already pointed this out in IRC. |
Hey is there some interest in providing an appimage? I made one here It bundles its own ld-*.so so it works on any linux system and not just like most appimages that only work on certain glibc systems. I also make use of the |
Seems interesting. Maybe you can integrate this and send a pr? Also by multiple binary you mean dunstify and dunst, correct? |
Thanks, will try, just refactored the script a little bit to deploy everything manually and not rely on external tools as much as possible.
dunstify, dunst and dunstctl, if you On top of that by default it will always launch dunst if |
After discussing with @tsipinakis the release schema, I posed myself a yet unanswered question. How should dunst get distributed?
As we only want to maintain the current release with patches, I think it's unfair for the user and also contraproductive for all, not packaging the current dunst release for common distros. Users either have to manually install it to get an up-to-date dunst.
For distros like Arch and Debian, these problems are a small burden. For arch there is no need and for Debian, there is no real need, as they have an ingenious system for their versioning.
But it might be a good thing for Ubuntu to provide a PPA, as many only install the latest LTS to not update every 6 months, and actually do not want to have an old dunst version.
So, what are possible solutions?
$HOME/.local/share/dbus-1/services
I've put it onto 1.3 milestone. I want to have this question answered for me before the next release. I don't require this to be answered positively, but to be answered and reasoned well.
The text was updated successfully, but these errors were encountered: