commit: 2db4d7e5079744650b62fb56c16a1870f6fd4f28 Author: Leo Douglas <douglarek <AT> gmail <DOT> com> AuthorDate: Sun Dec 8 12:31:11 2024 +0000 Commit: Horodniceanu Andrei <a.horodniceanu <AT> proton <DOT> me> CommitDate: Wed Dec 18 11:16:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=2db4d7e5
net-misc/onedrive: add 2.5.3 Co-authored-by: Andrei Horodniceanu <a.horodniceanu <AT> proton.me> Signed-off-by: Leo Douglas <douglarek <AT> gmail.com> Closes: https://github.com/gentoo/dlang/pull/133 Signed-off-by: Andrei Horodniceanu <a.horodniceanu <AT> proton.me> net-misc/onedrive/Manifest | 1 + net-misc/onedrive/onedrive-2.5.3.ebuild | 69 +++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) diff --git a/net-misc/onedrive/Manifest b/net-misc/onedrive/Manifest index 266db1d..8464684 100644 --- a/net-misc/onedrive/Manifest +++ b/net-misc/onedrive/Manifest @@ -1 +1,2 @@ DIST onedrive-2.4.25.tar.gz 1243977 BLAKE2B 0bcf0b3786586395746c343c0c808c9e868e71b5c0d7b1e789add2a1d1c1305741a8251e239ce48f4d7d76bb9b4ec4c6fbe247874545a0c24c84aeea47b93576 SHA512 bbf1a87be25f69041a36f41967ee5ee692faae012f38d050fdeca7de1fc35c4ff79bf597032354fc7421699f2e9b75b458364c45c17de2db112f884dac42d781 +DIST onedrive-2.5.3.tar.gz 4145315 BLAKE2B 1dd36c09121f33807eeafb3caa30913fd0a877cc110951c257b70acc3b0cb4ad8247774ba8f3a1521d1d0901165acad4f0470cddefc9af48e42d8264b1b85bb2 SHA512 440b470f0cb09699486faa6abcfe0fdbc0ca26bfc484f4844f21b5c2bafb93813605771f49025dcb0b6f65f415ffcacd929792efc71f2f52e73faa962536160c diff --git a/net-misc/onedrive/onedrive-2.5.3.ebuild b/net-misc/onedrive/onedrive-2.5.3.ebuild new file mode 100644 index 0000000..20dc3b6 --- /dev/null +++ b/net-misc/onedrive/onedrive-2.5.3.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DLANG_COMPAT=( dmd-2_{106..109} ldc2-1_{35..39} ) +inherit bash-completion-r1 dlang-single systemd + +DESCRIPTION="Free Client for OneDrive on Linux" +HOMEPAGE="https://abraunegg.github.io/" +SRC_URI="https://codeload.github.com/abraunegg/onedrive/tar.gz/v${PV} -> ${P}.tar.gz" +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="" +# no straight forward way to run unittests. Probably need to do DFLAGS=-unittest econf +IUSE="debug libnotify" +RESTRICT=test + +REQUIRED_USE=${DLANG_REQUIRED_USE} +RDEPEND=" + ${DLANG_DEPS} + >=dev-db/sqlite-3.7.15:3 + net-misc/curl + libnotify? ( x11-libs/libnotify ) +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" +BDEPEND=${DLANG_DEPS} + +src_configure() { + DCFLAGS="${DCFLAGS} ${DLANG_LDFLAGS}" econf \ + --disable-version-check --enable-completions \ + $(use_enable debug) $(use_enable libnotify notifications) \ + --with-zsh-completion-dir=/usr/share/zsh/site-functions \ + --with-bash-completion-dir="$(get_bashcompdir)" \ + --with-fish-completion-dir=/usr/share/fish/completions \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ + --with-systemduserunitdir="$(systemd_get_userunitdir)" +} + +src_install() { + emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install + # log directory + keepdir /var/log/onedrive + fperms 775 /var/log/onedrive + fowners root:users /var/log/onedrive + # init script + dobin contrib/init.d/onedrive_service.sh + newinitd contrib/init.d/onedrive.init onedrive +} + +pkg_postinst() { + elog "OneDrive Free Client needs to be authorized to access your data before the" + elog "first use. To do so, run onedrive in a terminal for the user in question and" + elog "follow the steps on screen." + + local old_ver minor_part="$(ver_cut 1-2)" + for old_ver in ${REPLACING_VERSIONS}; do + if ver_test "${old_ver}" -lt "${minor_part}"; then + ewarn "You are performing an upgrade that is not backwards-compatible" + ewarn "and you need to upgrade to ${PN}-${minor_part} on all your devices." + ewarn "Please read: https://github.com/abraunegg/onedrive/releases/tag/v${PV}" + break + fi + done +}
