Skip to content
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

www-apps/radicale: Version bump to 2.1.8 #7274

Closed
wants to merge 1 commit into from

Conversation

Hawk777
Copy link
Contributor

@Hawk777 Hawk777 commented Feb 24, 2018

Bug: https://bugs.gentoo.org/618724
Package-Manager: Portage-2.3.19, Repoman-2.3.6

@gentoo-repo-qa-bot
Copy link
Collaborator

Pull Request assignment

Areas affected: ebuilds
Packages affected: www-apps/radicale

www-apps/radicale: @maksbotan

Bugs linked: 618724

In order to force reassignment and/or bug reference scan, please append [please reassign] to the pull request title.

@gentoo-repo-qa-bot gentoo-repo-qa-bot added assigned PR successfully assigned to the package maintainer(s). bug linked Bug/Closes found in footer, and cross-linked with the PR. labels Feb 24, 2018
@henning-schild
Copy link
Contributor

As far as i understand the migration guide (have not tried it myself), you need 1.1.6 to export the data before switching to 2.x. (which does not seem to contain the migration tool anymore)

If that is correct we need to warn the user before install, maybe even interactive.

exeinto /usr/share/${PN}
doexe radicale.wsgi
doexe radicale.fcgi

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be done under the global USE-flag "cgi"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, two questions about this. First, do you mean only the .fcgi file or the .wsgi file as well? Second, I thought this was in violation of the “don’t use USE flags to control installation of small files that don’t affect dependencies” rule (I don’t remember where that rule is documented, but I remember hearing something about it on the mailing list in the past)?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The files first looked like they would only be needed when running radicale under an external webserver, maybe that is not even true and the builtin server uses them as well. So not sure whether they can/should be left out. The rule you suggest sounds sensible, just leave it like that.

einfo "You will also find there an example FastCGI script."
ewarn "If you were previously using Radicale 1, manual migration is needed."
ewarn "Please see <http://radicale.org/1to2/> for details."
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as mentioned in a comment in the PR, this should probably happen earlier so people can migrate data before merging

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That sounds a lot like a news item. I don’t see a Github mirror of gentoo-news.git; do you know if there is one or if there is another way for a non-developer to get news items added? Particularly, how to make that happen at about the same time as the new ebuild is committed?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, no clue. I guess it can stay there and be a little more verbose. If the migration indeed requires 1.1.6 the ewarn should instruct people to downgrade again.

We need to make sure that:

  • 2.x does not corrupt/delete old data so it can not be migrated anymore
  • 1.1.6 stays in the tree for a long time

Or maybe, what we need can be implemented with blockers or slots, maybe in combination with a migration USE-flag.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ve requested review on the gentoo-dev mailing list of a news item to be shown to all <radicale-2 users.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the migration require using tools installed by v2 or is it done somehow else?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

einfo in ebuild removed in f94c56b due to news item being more appropriate. @mgorny, to answer your question, to migrate, you must have v1 installed, then you run v1 with --export-storage, then you upgrade to v2, then you run v2 and use the directory that --export-storage created as your storage location for v2. So no special tools outside Radicale itself, but you do need to run --export-storage while you still have v1 installed.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 2, 2018

Reviewers, I have requested review on gentoo-dev of a news item to notify users of the need to export their database before installing the new version. Please don’t merge this PR until the news item has met the review period and you will commit the news item along with the ebuild.

@henning-schild
Copy link
Contributor

@Hawk777 could you please do the migration once and describe the implications here

I see multiple open questions here:

  • can 2.x migrate data from 1.x
  • Yes: no problem, ewarn is fine, done
  • No: we need 1.1.6 in the tree
  • does 2.x destroy/delete old data, if not migrated before
  • Yes: we need a serious warning, or we could patch
  • No: we could instruct to downgrade to 1.1.6 for the migration, in ewarn or news

# directories
diropts -m0750
dodir ${RDIR}
fowners radicale:radicale ${RDIR}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason to do fowners instead of passing -o to diropts?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not really. I just copied the existing ebuild. Fixed in 6325aab.


# directories
diropts -m0750
dodir ${RDIR}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keepdir implies dodir, so there is no need for explicit dodir.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just copied the existing ebuild. Fixed in 6325aab.

doins config logging

# fcgi and wsgi files
exeinto /usr/share/${PN}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executable files don't belong in /usr/share.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here I’m not sure what the right answer is (and again the existing ebuild put them there which I just copied). I’m not sure if radicale.fcgi is useful to invoke on its own; I vaguely remember back when I used it I think I ran it through spawn-fcgi instead, not invoking it on its own, though I’m not too familiar with the business of how Python does FastCGI. Similarly executing radicale.wsgi on its own accomplishes absolutely nothing; it’s meant to be run through a WSGI container like uWSGI. So I don’t think they should be in $PATH. Maybe /usr/libexec? What do you think? I also discovered that, with uWSGI, radicale.wsgi doesn’t actually need execute permission, but I have no idea if that’s true with other containers. Thoughts? Should I leave it executable or make it not?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, is this something users put in their scripts via full path? If they do, then it's probably not worth the effort to move it right now.

As for executable bits, I think usually they aren't necessary but again, it depends on how it's used.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, is this something users put in their scripts via full path? If they do, then it's probably not worth the effort to move it right now.

I have Radicale deployed via uWSGI, and my config file contains --wsgi-file /usr/share/radicale/radicale.wsgi. So yes.

As for executable bits, I think usually they aren't necessary but again, it depends on how it's used.

If there’s any possibility of them needed, I would prefer to keep them set, to avoid running into issues like http://redmine.lighttpd.net/issues/2374—that was the opposite problem, but conceptually similar in that it was a file permission issue and required fixing file permissions by hand after every upgrade, which was annoying. Are you OK with leaving them executable? If any changes were to be made at all, I think it would be that radicale.wsgi could be non-executable, but radicale.fcgi would still need to be executable.

@Hawk777 Hawk777 changed the title www-apps/radicale: Version bump to 2.1.8 [WIP, do not merge yet] www-apps/radicale: Version bump to 2.1.8 Mar 3, 2018
@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 3, 2018

In reply to @henning-schild’s questions:

can 2.x migrate data from 1.x
Yes: no problem, ewarn is fine, done
No: we need 1.1.6 in the tree

No, not unless you run v1 with --export-storage first. You must do this before upgrading to v2, then point v2 at the output of the export. We must keep v1 for a while.

does 2.x destroy/delete old data, if not migrated before
Yes: we need a serious warning, or we could patch
No: we could instruct to downgrade to 1.1.6 for the migration, in ewarn or news

Running v2 against a storage directory in the v1 format shows up as if it had no data. If you create some data, it will make a collections directory and start putting things in it. It looks like it won’t touch any of your v1 files, which lived at the top level of the user’s root directory, so you can just delete collections and go back to using v1 later without data loss. If you happened to have a calendar or contact card set whose name is literally collections, then v2 gives an internal server error and refuses to destroy it. It looks about as safe as one could possibly want.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 3, 2018

Marked WIP due to unsquashed fixup commits which I will squash once review is complete.

@mgorny mgorny added the work in progress The PR is not yet ready to be merged. label Mar 4, 2018
@mgorny
Copy link
Member

mgorny commented Mar 4, 2018

Ok, so here's my idea: add a pkg_pretend that checks whether the system has v1 data but no export for v2. If that is true, abort the installation telling the user about the migration and how to export the data. Once the data is exported, the ebuild will allow upgrade.

Remember to check MERGE_TYPE not to complain in pure binary package builds.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 4, 2018

has v1 data but no export for v2

When the user runs v1 with --export-storage, they specify a path name to store the export in. What path would you look for?

@henning-schild
Copy link
Contributor

That is indeed not trivial. Even v1 data could be in another place if the default config was changed. And since it already sounds complicated and there seems no easy way to get it right, i would fall back to the original version. IMHO parsing configs is no option.
So someone having just installed v2 will get an einfo about the migration, with the advise to temporarily downgrade to v1 again. It is just a bit of python, so that won't take too long and is reasonable. Maybe also one ewarn line.

@mgorny ?

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 4, 2018

Oh, I didn’t realize the plan was to have the einfo and the news item. I removed the einfo due to the news item in f94c56b, thinking that one was enough. Do you want it added back?

@henning-schild
Copy link
Contributor

I was assuming the news item was still part of the WIP and not settled yet. einfo and ewarn are contained to this one PR and are IMHO enough. But now the issue is well understood, it does not matter much to me how the information gets brought to the user.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 4, 2018

The news item was posted on gentoo-dev for review. I removed the einfo message from this PR (in f94c56b); perhaps you are looking at an old version of the branch that doesn’t include that commit.

@mgorny
Copy link
Member

mgorny commented Mar 4, 2018

This is not going to be very helpful if you upgrade, then reboot (or restart the service) without noticing the problem. Using default paths should at least avoid the problem for some users.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 6, 2018

Isn’t that why we have news items? A way to communicate important information to users before they start installing things, as opposed to something like einfo which is used to communicate after installation?

@mgorny
Copy link
Member

mgorny commented Mar 6, 2018

It is. But it doesn't change the fact that users don't care to read them ;-).

@henning-schild
Copy link
Contributor

In that case the ebuild should match the default location of a v1 database in pkg_pretend, given that we can clearly distinguish that from a default v2. If a v1 exists, refuse a v2 install, no matter if a v2 exists as well. So a migrating user will have to delete/move the old database.
And all the users that changed the defaults and failed to read the einfo and news will get a non-migrated v2. Sounds good, as long as we can easily tell the difference between a v1 and v2 database.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 8, 2018

Something along the lines of d6b8f10?

@henning-schild
Copy link
Contributor

Given a v2 does not have .props as well that looks good. For all the users that do not read the entire message before acting, i would mention the backup before the deletion.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 9, 2018

My experimentation suggests that v1 creates a file named .props in the database root directory as soon as you touch it in any way (not as soon as it boots, but even just accessing the “it works!” page over HTTP prompts it to create one). Meanwhile v2 seems to create a collection-root directory inside the database directory and store everything in there, with the exception of a file called .Radicale.lock which lives in the database root. So AFAICT .props is a good sign that you have a v1 database.

Order of messages fixed in 0bf07db.

@henning-schild
Copy link
Contributor

LGTM, but.

Remember to check MERGE_TYPE not to complain in pure binary package builds.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 13, 2018

Sorry, missed that the first time. Fixed in a348ee0. Let me know if I’m done and OK to squash now.

@henning-schild
Copy link
Contributor

Looks good, please squash.

@Hawk777 Hawk777 changed the title [WIP, do not merge yet] www-apps/radicale: Version bump to 2.1.8 www-apps/radicale: Version bump to 2.1.8 Mar 20, 2018
@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 20, 2018

Squashed. Please don’t forget the news item!

@gentoo-repo-qa-bot
Copy link
Collaborator

Pull request CI report

Report generated at: 2018-03-20 08:11 UTC
Newest commit scanned: b87ebd3
Status: ❌ broken

There are too many broken packages to determine whether the breakages were added by the pull request. If in doubt, please rebase.

Issues:https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-admin/collectd
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-arch/rpm
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-benchmarks/os-autoinst
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-editors/gedit-plugins
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-emacs/emacs-wiki-blog
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#app-text/webgen
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-lang/julia
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-lang/php
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-lang/rust
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-scheme/bytestructures
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-scheme/guile-git
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/hxtools
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/icemon
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-cpanspec
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-download_files
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-download_src_package
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-download_url
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-extract_file
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-format_spec_file
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-generator_driver_update_disk
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-git_tarballs
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-github_tarballs
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-meta
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-rearchive
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-recompress
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-set_version
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-source_validator
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-tar_scm
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-update_source
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/obs-service-verify_file
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/osc
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/quilt
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/spec-cleaner
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#dev-util/suse-build
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#gnome-base/gvfs
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#kde-apps/okular
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#kde-apps/spectacle
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#media-fonts/fifth-leg
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-dns/avahi
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-fs/samba
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-im/mattermost-desktop-bin
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-mail/cyrus-imapd
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-misc/gns3-server
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-nds/openldap
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-p2p/vuze-coreplugins
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#net-wireless/ubertooth
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#sci-chemistry/bkchem
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#sci-libs/gdal
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#sci-libs/vtk
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#sys-apps/paludis
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#sys-devel/icecream
https://qa-reports.gentoo.org/output/gentoo-ci/3eb6a676c/output.html#x11-misc/xprintidle

@mgorny
Copy link
Member

mgorny commented Mar 20, 2018

Could you rebase it against master? Your base is so old that CI can't test it.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 21, 2018

Done.

eerror " http://radicale.org/1to2/"
eerror "After conversion, please delete the old database (including hidden .props files),"
eerror "then copy the exported database into ${RDIR}."
eerror "You should finish with a ${RDIR}/collection-root directory."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something to ponder upon, also in relevance to the news item: the upstream 'migration guide' is quite poor IMHO. The export stuff is basically mentioned in middle of paragraph without even a proper example, so I would suggest giving users some explicit suggestion, preferably something they could copy&paste. E.g.:

some-command --export-storage /var/lib/radicale.new
mv /var/lib/radicale /var/lib/radicale.old
mv /var/lib/radicale.new /var/lib/radicale

This sample covers conversion, and also backup. You can suggest upgrading, testing and removing the backup if it works.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess the migration instructions would be best placed in the news item, not the ebuild, right? Because that’s where most people will see them first, and the ebuild can just tell people to go read the news item? I agree the guide is not all that helpful for Gentoo users, but then I think it’s written more for people who have customized their install paths and everything. If you agree that this should go in the news item, then I’ll post a new revision with more detailed instructions in it.

As an aside, would you be willing to sponsor my continued posting access to the mailing list? I don’t know when the posting restrictions will happen, but if they do happen before this all gets sorted out, then I would not be able to post the new revisions of the news item. Alternatively I could send the news item somewhere (to you?) to pass on to the list.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd personally go for both, but up to you. As for ml, don't worry about it. When infra starts doing something, I'll probably look into including all active proxy-maint members.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How does 7817dd8 look? If you think the instructions are fine, then I will convert them to news item format and, barring any further issues, squash the branch.


PYTHON_COMPAT=( python{3_4,3_5,3_6} )

inherit eutils distutils-r1 user
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sort lexically whenever possible.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 4d6e56e.

doins config logging

# fcgi and wsgi files
exeinto /usr/share/${PN}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, is this something users put in their scripts via full path? If they do, then it's probably not worth the effort to move it right now.

As for executable bits, I think usually they aren't necessary but again, it depends on how it's used.

# fcgi and wsgi files
exeinto /usr/share/${PN}
doexe radicale.wsgi
doexe radicale.fcgi
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please combine this into one doexe with two files. Otherwise, people are going to repeatedly wtf before they notice that's fcgi/wsgi.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 32c014f.

}

pkg_postinst() {
einfo "A sample WSGI script has been put into ${ROOT}usr/share/${PN}."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

${ROOT%/}/

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in d7d11b0.

@Hawk777 Hawk777 changed the title www-apps/radicale: Version bump to 2.1.8 [WIP, do not merge yet] www-apps/radicale: Version bump to 2.1.8 Mar 22, 2018
@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 30, 2018

Is this OK to squash again and send the new news item to gentoo-dev?

@mgorny
Copy link
Member

mgorny commented Mar 30, 2018

Please do. I was actually waiting for you to send the item ;-).

Bug: https://bugs.gentoo.org/618724
Package-Manager: Portage-2.3.19, Repoman-2.3.6
@Hawk777 Hawk777 changed the title [WIP, do not merge yet] www-apps/radicale: Version bump to 2.1.8 www-apps/radicale: Version bump to 2.1.8 Mar 30, 2018
@Hawk777
Copy link
Contributor Author

Hawk777 commented Mar 30, 2018

Squashed and new news item posted. I guess this needs to wait another 72 hours before merge due to the news item.

@gentoo-repo-qa-bot
Copy link
Collaborator

Pull request CI report

Report generated at: 2018-03-31 00:49 UTC
Newest commit scanned: 328e1ae
Status: ✅ good

Issues already there before the PR (double-check them):
https://qa-reports.gentoo.org/output/gentoo-ci/97f74926f/output.html#net-fs/samba

@mgorny
Copy link
Member

mgorny commented Mar 31, 2018

Please ping us when it's ready to be merged.

@Hawk777
Copy link
Contributor Author

Hawk777 commented Apr 6, 2018

@henning-schild @mgorny That’s >72 hours now since the news item post, with no replies. This can go ahead whenever you’re ready.

@henning-schild
Copy link
Contributor

henning-schild commented Apr 6, 2018

I did not really follow up, did not test the ebuild or read the news item. I trust your judgement and do not want to hold that up any longer, just go ahead.

Thanks for pushing that forward!

@mgorny mgorny self-assigned this Apr 8, 2018
@mgorny
Copy link
Member

mgorny commented Apr 8, 2018

Merged, thanks!

@gentoo-bot gentoo-bot closed this in fd02aa1 Apr 8, 2018
@Hawk777 Hawk777 deleted the radicale-2 branch April 23, 2018 00:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
assigned PR successfully assigned to the package maintainer(s). bug linked Bug/Closes found in footer, and cross-linked with the PR. work in progress The PR is not yet ready to be merged.
Projects
None yet
4 participants