public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/files/
@ 2016-05-04  5:12 Jason Zaman
  0 siblings, 0 replies; 2+ messages in thread
From: Jason Zaman @ 2016-05-04  5:12 UTC (permalink / raw
  To: gentoo-commits

commit:     894435c84ff31e4f15698eb985922364974f59ec
Author:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Wed May  4 05:06:17 2016 +0000
Commit:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Wed May  4 05:06:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=894435c8

sys-auth/consolekit: update openrc-run shebang

Package-Manager: portage-2.2.26

 sys-auth/consolekit/files/consolekit-0.2.rc      | 4 ++--
 sys-auth/consolekit/files/consolekit-1.0.0.initd | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-auth/consolekit/files/consolekit-0.2.rc b/sys-auth/consolekit/files/consolekit-0.2.rc
index 63eeefd..707f851 100644
--- a/sys-auth/consolekit/files/consolekit-0.2.rc
+++ b/sys-auth/consolekit/files/consolekit-0.2.rc
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License, v2 or later
 # $Id$
 

diff --git a/sys-auth/consolekit/files/consolekit-1.0.0.initd b/sys-auth/consolekit/files/consolekit-1.0.0.initd
index e84a2e0..57ebfbe 100644
--- a/sys-auth/consolekit/files/consolekit-1.0.0.initd
+++ b/sys-auth/consolekit/files/consolekit-1.0.0.initd
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2015 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License, v2 or later
 # $Id$
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/files/
@ 2017-11-18 18:03 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2017-11-18 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     6f8ab332d43e4350779caa5060d34407f74fb71f
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Nov 17 19:32:45 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 18 18:03:27 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8ab332

sys-auth/consolekit: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/6217

 ....1-0001-Fix-enable-libudev-configure-flag.patch | 41 ----------------------
 1 file changed, 41 deletions(-)

diff --git a/sys-auth/consolekit/files/consolekit-1.1.1-0001-Fix-enable-libudev-configure-flag.patch b/sys-auth/consolekit/files/consolekit-1.1.1-0001-Fix-enable-libudev-configure-flag.patch
deleted file mode 100644
index c6cc61d4784..00000000000
--- a/sys-auth/consolekit/files/consolekit-1.1.1-0001-Fix-enable-libudev-configure-flag.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 91f517bb6e19315c3a9971b2449f2b2e049e785b Mon Sep 17 00:00:00 2001
-From: Eric Koegel <eric.koegel@gmail.com>
-Date: Wed, 10 May 2017 07:13:23 +0300
-Subject: [PATCH] Fix --enable-libudev configure flag
-
-Thanks for perfinion to pointing this out.
----
- configure.ac | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 2d927fe..b17801a 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -364,10 +364,10 @@ AM_CONDITIONAL([ENABLE_UDEV_ACL], [test "x$enable_udev_acl" = "xyes"])
- # libudev - use udev as a device manager for ck-device-udev.c
- have_libudev=no
- AC_ARG_ENABLE([libudev],
--  AS_HELP_STRING([--enable-udev], [Enable udev support @<:@default=auto@:>@]),
--  [enable_udev=$enableval],
--  [enable_udev=auto])
--AS_IF([test "x$enable_udev" != "xno"], [
-+  AS_HELP_STRING([--enable-libudev], [Enable udev support @<:@default=auto@:>@]),
-+  [enable_libudev=$enableval],
-+  [enable_libudev=auto])
-+AS_IF([test "x$enable_libudev" != "xno"], [
-   PKG_CHECK_MODULES([LIBUDEV], [libudev], [have_libudev=yes], [have_libudev=no])
-   PKG_CHECK_MODULES([LIBDRM], [libdrm], [have_libdrm=yes], [have_libdrm=no])
-   AC_CHECK_LIB([prop], [prop_dictionary_get_cstring], [have_libprop=yes], [have_libprop=no])
-@@ -384,7 +384,7 @@ AS_IF([test "x$enable_udev" != "xno"], [
-     LIBUDEV_LIBS="$LIBUDEV_LIBS -lprop"
-   fi
- 
--  if test "x$enable_udev"  = "xyes" -a "x$have_udev" = "xno"; then
-+  if test "x$enable_libudev"  = "xyes" -a "x$have_libudev" = "xno"; then
-     AC_MSG_ERROR([udev support explicitly requested but dependencies not found])
-   fi
- ])
--- 
-2.10.2
-


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-18 18:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-04  5:12 [gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/files/ Jason Zaman
  -- strict thread matches above, loose matches on Subject: below --
2017-11-18 18:03 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox