public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/accountsservice/files/, sys-apps/accountsservice/
Date: Wed, 17 May 2023 21:55:10 +0000 (UTC)	[thread overview]
Message-ID: <1684360497.30d033d9035df17a5530713f84dc3f0c9509cce4.mattst88@gentoo> (raw)

commit:     30d033d9035df17a5530713f84dc3f0c9509cce4
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 21:14:41 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed May 17 21:54:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d033d9

sys-apps/accountsservice: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 sys-apps/accountsservice/Manifest                  |  1 -
 .../accountsservice-22.08.8-r1.ebuild              | 88 ----------------------
 ...accountsservice-22.08.8-configure-clang16.patch | 33 --------
 3 files changed, 122 deletions(-)

diff --git a/sys-apps/accountsservice/Manifest b/sys-apps/accountsservice/Manifest
index e71030a3d55d..144f62adb755 100644
--- a/sys-apps/accountsservice/Manifest
+++ b/sys-apps/accountsservice/Manifest
@@ -1,2 +1 @@
-DIST accountsservice-22.08.8.tar.xz 102672 BLAKE2B 7c9436d3845fc1883772b434c4f9e2fba934d17e6d4452a6be65e1d790a23b331eaaa64b0e6eff6fefe79587a40cf1749a0f3de09f323b10740046bd9d145c9d SHA512 2ca3ceb1b44338d9924b86788256d4eef7ec10e0c2197bfb8cc6c31ae224fab3051f03cb406a526f90057684965bef4ba0f2cc01b26198ec1fc6baec36ad3ff8
 DIST accountsservice-23.13.9.tar.xz 636064 BLAKE2B 74dbbe816937e626ba0f6524b4293466ac2905f474396f5d23633e966d46e013de110671abcbfe2911fffa1e98872e2525b61594a967f917975ebf18d39b8547 SHA512 c6eb543ce2e07b61bbdfa454e388949bc688517be0536b14f30c66383ed105b15d3fab8b6c62b1eaa08f67d9bdc29b928729d9f7c704f47de4decf0de8e12f89

diff --git a/sys-apps/accountsservice/accountsservice-22.08.8-r1.ebuild b/sys-apps/accountsservice/accountsservice-22.08.8-r1.ebuild
deleted file mode 100644
index f40751c3540d..000000000000
--- a/sys-apps/accountsservice/accountsservice-22.08.8-r1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 2011-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{9..11} )
-inherit meson python-any-r1 systemd
-
-DESCRIPTION="D-Bus interfaces for querying and manipulating user account information"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/AccountsService/"
-SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
-
-IUSE="doc elogind gtk-doc +introspection selinux systemd test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="^^ ( elogind systemd )"
-
-CDEPEND="
-	>=dev-libs/glib-2.63.5:2
-	sys-auth/polkit
-	virtual/libcrypt:=
-	elogind? ( >=sys-auth/elogind-229.4 )
-	introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
-	systemd? ( >=sys-apps/systemd-186:0= )
-"
-DEPEND="${CDEPEND}"
-BDEPEND="
-	dev-libs/libxslt
-	dev-util/gdbus-codegen
-	dev-util/glib-utils
-	sys-devel/gettext
-	virtual/pkgconfig
-	doc? (
-		app-text/docbook-xml-dtd:4.1.2
-		app-text/xmlto
-	)
-	gtk-doc? (
-		dev-util/gtk-doc
-		app-text/docbook-xml-dtd:4.3
-	)
-	test? (
-		$(python_gen_any_dep '
-			dev-python/python-dbusmock[${PYTHON_USEDEP}]
-		')
-	)
-"
-RDEPEND="${CDEPEND}
-	selinux? ( sec-policy/selinux-accountsd )
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-22.04.62-gentoo-system-users.patch
-	"${FILESDIR}"/${P}-configure-clang16.patch
-)
-
-python_check_deps() {
-	if use test; then
-		python_has_version "dev-python/python-dbusmock[${PYTHON_USEDEP}]"
-	fi
-}
-
-src_configure() {
-	local emesonargs=(
-		--localstatedir="${EPREFIX}/var"
-		-Dsystemdsystemunitdir="$(systemd_get_systemunitdir)"
-		-Dadmin_group="wheel"
-		$(meson_use elogind)
-		$(meson_use introspection)
-		$(meson_use doc docbook)
-		$(meson_use gtk-doc gtk_doc)
-		-Dvapi=false
-	)
-	meson_src_configure
-}
-
-src_install() {
-	meson_src_install
-
-	# https://gitlab.freedesktop.org/accountsservice/accountsservice/-/issues/90
-	if use doc; then
-		mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" || die
-	fi
-
-	# This directories are created at runtime when needed
-	rm -r "${ED}"/var/lib || die
-}

diff --git a/sys-apps/accountsservice/files/accountsservice-22.08.8-configure-clang16.patch b/sys-apps/accountsservice/files/accountsservice-22.08.8-configure-clang16.patch
deleted file mode 100644
index 939418752731..000000000000
--- a/sys-apps/accountsservice/files/accountsservice-22.08.8-configure-clang16.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://gitlab.freedesktop.org/accountsservice/accountsservice/-/commit/453f893e3c38c209ae9dff47bca74ccb33a5bd34
-
-From 453f893e3c38c209ae9dff47bca74ccb33a5bd34 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Tue, 28 Feb 2023 02:31:50 +0000
-Subject: [PATCH] meson.build: fix -Wimplicit-function-declaration in configure
- tests for printf
-
-<stdio.h> needs to be included for printf. Newer compilers like Clang 16 make
-implicit function declarations an error by default which can cause misleading
-or incorrect configure test results.
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/meson.build
-+++ b/meson.build
-@@ -79,6 +79,7 @@ endforeach
- 
- if cc.has_header_symbol('utmpx.h', 'WTMPX_FILENAME', prefix: '#define _GNU_SOURCE')
-   code = '''#define _GNU_SOURCE
-+  #include <stdio.h>
-   #include <utmpx.h>
-   int main (int argc, char **argv) {
-     printf ("%s\n", WTMPX_FILENAME);
-@@ -91,6 +92,7 @@ if cc.has_header_symbol('utmpx.h', 'WTMPX_FILENAME', prefix: '#define _GNU_SOURC
-   config_h.set('PATH_WTMP', 'WTMPX_FILENAME')
- elif cc.has_header_symbol('paths.h', '_PATH_WTMPX')
-   code = '''#include <paths.h>
-+  #include <stdio.h>
-   int main (int argc, char **argv) {
-     printf ("%s\n", _PATH_WTMPX);
-     return 0;
--- 
-GitLab


             reply	other threads:[~2023-05-17 21:55 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-17 21:55 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-01-20  3:11 [gentoo-commits] repo/gentoo:master commit in: sys-apps/accountsservice/files/, sys-apps/accountsservice/ Sam James
2018-09-23 11:42 Pacho Ramos
2017-06-09 14:04 Michael Palimaka
2016-06-28 20:30 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1684360497.30d033d9035df17a5530713f84dc3f0c9509cce4.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox