public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-04-17 22:14 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-17 22:14 UTC (permalink / raw
  To: gentoo-commits

commit:     a2351a7d1c31952970939b8e4d9934af9eff58bc
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 22:07:20 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 22:07:20 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=a2351a7d

sys-apps/systemd-udev: Initial commit for systemd udev units.

(Portage version: 2.2.0_alpha29_p5/git/Linux x86_64, signed Manifest commit with key 05DE07BB)

---
 sys-apps/systemd-udev/Manifest                |   13 ++++++++
 sys-apps/systemd-udev/metadata.xml            |    9 +++++
 sys-apps/systemd-udev/systemd-udev-167.ebuild |   42 +++++++++++++++++++++++++
 3 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
new file mode 100644
index 0000000..1af5d79
--- /dev/null
+++ b/sys-apps/systemd-udev/Manifest
@@ -0,0 +1,13 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
+EBUILD systemd-udev-167.ebuild 820 RMD160 45e2329802a03d607004ca056235acb586f81086 SHA1 b0a781832379d60c323ce388a42addda3da31c0e SHA256 d6b264ebf5c258efd2a7d7b6a9ed57dee084e8e3d5156efcb524f57f946cb840
+MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+iEYEARECAAYFAk2rZJgACgkQnGSe5QXeB7upugCfYHJclHV+d+FvMGSRMAXkeSDL
+QJ8AoLNeY+iizv0hxd2XJSqxmRO2cNCk
+=QRAA
+-----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/metadata.xml b/sys-apps/systemd-udev/metadata.xml
new file mode 100644
index 0000000..af81389
--- /dev/null
+++ b/sys-apps/systemd-udev/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>no-herd</herd>
+	<maintainer>
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/sys-apps/systemd-udev/systemd-udev-167.ebuild b/sys-apps/systemd-udev/systemd-udev-167.ebuild
new file mode 100644
index 0000000..5586e49
--- /dev/null
+++ b/sys-apps/systemd-udev/systemd-udev-167.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit systemd
+
+MY_P=udev-${PV}
+DESCRIPTION="systemd unit files for udev"
+HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
+SRC_URI="mirror://kernel/linux/utils/kernel/hotplug/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!sys-fs/udev[systemd]"
+DEPEND=""
+
+S=${WORKDIR}/${MY_P}/init
+
+src_configure() {
+	:
+}
+
+src_compile() {
+	local f
+
+	for f in *.in; do
+		sed -e 's:@sbindir@:/sbin:' "${f}" > "${f%.in}" || die
+		rm -f "${f}"
+	done
+}
+
+src_install() {
+	systemd_dounit *
+	systemd_enable_service sockets.target udev.socket
+	systemd_enable_service basic.target udev.service
+	systemd_enable_service basic.target udev-trigger.service
+}



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

* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-04-18  6:20 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-18  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     3ffe7423dfbd9e0d843c84ac5f7785baea8962a0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 18 06:20:38 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 18 06:20:38 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=3ffe7423

sys-apps/systemd-udev: Fix sed call.

(Portage version: 2.2.0_alpha29_p5/git/Linux x86_64, signed Manifest commit with key 05DE07BB)

---
 sys-apps/systemd-udev/Manifest                     |    8 ++++----
 ...-udev-167.ebuild => systemd-udev-167-r1.ebuild} |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
index 1af5d79..3aedf0d 100644
--- a/sys-apps/systemd-udev/Manifest
+++ b/sys-apps/systemd-udev/Manifest
@@ -2,12 +2,12 @@
 Hash: SHA1
 
 DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
-EBUILD systemd-udev-167.ebuild 820 RMD160 45e2329802a03d607004ca056235acb586f81086 SHA1 b0a781832379d60c323ce388a42addda3da31c0e SHA256 d6b264ebf5c258efd2a7d7b6a9ed57dee084e8e3d5156efcb524f57f946cb840
+EBUILD systemd-udev-167-r1.ebuild 821 RMD160 aee023e71e27b345f64c479b6c248358af67b542 SHA1 635677a3d41afe79679480984d4cff8e19f684a1 SHA256 634383b494079d96e270c8d0e766636173f6f5a44a2b8d904f7df115c7d685f5
 MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.17 (GNU/Linux)
 
-iEYEARECAAYFAk2rZJgACgkQnGSe5QXeB7upugCfYHJclHV+d+FvMGSRMAXkeSDL
-QJ8AoLNeY+iizv0hxd2XJSqxmRO2cNCk
-=QRAA
+iEYEARECAAYFAk2r2DYACgkQnGSe5QXeB7t98ACg5sg4Yar+K4D14XYUwOfLRv0Q
+2BsAn2AK3o9x7HxXfKaFN1IyZXIz62cq
+=VVvk
 -----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/systemd-udev-167.ebuild b/sys-apps/systemd-udev/systemd-udev-167-r1.ebuild
similarity index 92%
rename from sys-apps/systemd-udev/systemd-udev-167.ebuild
rename to sys-apps/systemd-udev/systemd-udev-167-r1.ebuild
index 5586e49..4a0c19a 100644
--- a/sys-apps/systemd-udev/systemd-udev-167.ebuild
+++ b/sys-apps/systemd-udev/systemd-udev-167-r1.ebuild
@@ -29,7 +29,7 @@ src_compile() {
 	local f
 
 	for f in *.in; do
-		sed -e 's:@sbindir@:/sbin:' "${f}" > "${f%.in}" || die
+		sed -e 's:@sbindir@:/sbin:g' "${f}" > "${f%.in}" || die
 		rm -f "${f}"
 	done
 }



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

* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-04-23 17:37 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-23 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     bd3f995750a549a2af76e88654b056094a25f285
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 23 17:37:18 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 17:37:18 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=bd3f9957

sys-apps/systemd-udev: Add a strict udev version dep to avoid potential unit incompatibility.

(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key 05DE07BB)

---
 sys-apps/systemd-udev/Manifest                     |    8 ++++----
 ...ev-167-r1.ebuild => systemd-udev-167-r2.ebuild} |    4 +++-
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
index 3aedf0d..f5cac5c 100644
--- a/sys-apps/systemd-udev/Manifest
+++ b/sys-apps/systemd-udev/Manifest
@@ -2,12 +2,12 @@
 Hash: SHA1
 
 DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
-EBUILD systemd-udev-167-r1.ebuild 821 RMD160 aee023e71e27b345f64c479b6c248358af67b542 SHA1 635677a3d41afe79679480984d4cff8e19f684a1 SHA256 634383b494079d96e270c8d0e766636173f6f5a44a2b8d904f7df115c7d685f5
+EBUILD systemd-udev-167-r2.ebuild 858 RMD160 7ad4d1b5a955f2a407ede8dfae52218f707a3e3a SHA1 75a33ed9819ad4915e83bdc05f993269d2215f2b SHA256 aff03a8b378f5dc6447b6eea3dee5345e78afdf282c119f858b1562298dd9184
 MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.17 (GNU/Linux)
 
-iEYEARECAAYFAk2r2DYACgkQnGSe5QXeB7t98ACg5sg4Yar+K4D14XYUwOfLRv0Q
-2BsAn2AK3o9x7HxXfKaFN1IyZXIz62cq
-=VVvk
+iEYEARECAAYFAk2zDk4ACgkQnGSe5QXeB7uzDQCffXtj8nT/l7sGfWj9LxqSVpeT
+BwUAn1ZRoR52A1F7d+sChgiV8uvQ6xQM
+=gR4t
 -----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/systemd-udev-167-r1.ebuild b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
similarity index 91%
rename from sys-apps/systemd-udev/systemd-udev-167-r1.ebuild
rename to sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
index 4a0c19a..8bea2a4 100644
--- a/sys-apps/systemd-udev/systemd-udev-167-r1.ebuild
+++ b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
@@ -16,7 +16,9 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-RDEPEND="!sys-fs/udev[systemd]"
+RDEPEND="<sys-fs/udev-168
+	>=sys-fs/udev-167
+	!sys-fs/udev[systemd]"
 DEPEND=""
 
 S=${WORKDIR}/${MY_P}/init



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

* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-04-28 14:33 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-28 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     531125b39c3a41bcc87c3a9694d8482c863ac92d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 14:07:00 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 14:07:00 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=531125b3

sys-apps/systemd-udev: The eclass has been renamed to systemd-units.

(Portage version: 2.2.0_alpha30_p2/git/Linux x86_64, signed Manifest commit with key 05DE07BB)

---
 sys-apps/systemd-udev/Manifest                   |    8 ++++----
 sys-apps/systemd-udev/systemd-udev-167-r2.ebuild |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
index f5cac5c..ac589fb 100644
--- a/sys-apps/systemd-udev/Manifest
+++ b/sys-apps/systemd-udev/Manifest
@@ -2,12 +2,12 @@
 Hash: SHA1
 
 DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
-EBUILD systemd-udev-167-r2.ebuild 858 RMD160 7ad4d1b5a955f2a407ede8dfae52218f707a3e3a SHA1 75a33ed9819ad4915e83bdc05f993269d2215f2b SHA256 aff03a8b378f5dc6447b6eea3dee5345e78afdf282c119f858b1562298dd9184
+EBUILD systemd-udev-167-r2.ebuild 864 RMD160 57f44493f2ae6a1813583c58e5f8618527d18d29 SHA1 9f35dd837da1dfc1956c5d8d3c745a28de7583ea SHA256 a23f3cc8ded56b15706ae4f3afc7a2ba3a41a976bca48d7264f572ce39be7995
 MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.17 (GNU/Linux)
 
-iEYEARECAAYFAk2zDk4ACgkQnGSe5QXeB7uzDQCffXtj8nT/l7sGfWj9LxqSVpeT
-BwUAn1ZRoR52A1F7d+sChgiV8uvQ6xQM
-=gR4t
+iEYEARECAAYFAk25dIQACgkQnGSe5QXeB7sbdwCg1tdZk2IZHNH+EsUSEDr1px6B
+1/UAoLLOaobUTzS45Yeey1Fr5GaczGuJ
+=AD0z
 -----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
index 8bea2a4..fb05d73 100644
--- a/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
+++ b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-inherit systemd
+inherit systemd-units
 
 MY_P=udev-${PV}
 DESCRIPTION="systemd unit files for udev"



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

* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-04-28 16:33 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-28 16:33 UTC (permalink / raw
  To: gentoo-commits

commit:     38ee1d9365615fc1267800c63a773a56154835af
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 16:33:38 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 16:33:38 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=38ee1d93

Revert "sys-apps/systemd-udev: The eclass has been renamed to systemd-units."

This reverts commit 531125b39c3a41bcc87c3a9694d8482c863ac92d.

---
 sys-apps/systemd-udev/Manifest                   |    8 ++++----
 sys-apps/systemd-udev/systemd-udev-167-r2.ebuild |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
index ac589fb..f5cac5c 100644
--- a/sys-apps/systemd-udev/Manifest
+++ b/sys-apps/systemd-udev/Manifest
@@ -2,12 +2,12 @@
 Hash: SHA1
 
 DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
-EBUILD systemd-udev-167-r2.ebuild 864 RMD160 57f44493f2ae6a1813583c58e5f8618527d18d29 SHA1 9f35dd837da1dfc1956c5d8d3c745a28de7583ea SHA256 a23f3cc8ded56b15706ae4f3afc7a2ba3a41a976bca48d7264f572ce39be7995
+EBUILD systemd-udev-167-r2.ebuild 858 RMD160 7ad4d1b5a955f2a407ede8dfae52218f707a3e3a SHA1 75a33ed9819ad4915e83bdc05f993269d2215f2b SHA256 aff03a8b378f5dc6447b6eea3dee5345e78afdf282c119f858b1562298dd9184
 MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.17 (GNU/Linux)
 
-iEYEARECAAYFAk25dIQACgkQnGSe5QXeB7sbdwCg1tdZk2IZHNH+EsUSEDr1px6B
-1/UAoLLOaobUTzS45Yeey1Fr5GaczGuJ
-=AD0z
+iEYEARECAAYFAk2zDk4ACgkQnGSe5QXeB7uzDQCffXtj8nT/l7sGfWj9LxqSVpeT
+BwUAn1ZRoR52A1F7d+sChgiV8uvQ6xQM
+=gR4t
 -----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
index fb05d73..8bea2a4 100644
--- a/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
+++ b/sys-apps/systemd-udev/systemd-udev-167-r2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-inherit systemd-units
+inherit systemd
 
 MY_P=udev-${PV}
 DESCRIPTION="systemd unit files for udev"



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

* [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/
@ 2011-05-01 14:44 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-05-01 14:44 UTC (permalink / raw
  To: gentoo-commits

commit:     a69d600b786fd82842ccd57401b8c244a4e9df31
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May  1 14:44:21 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May  1 14:44:21 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=a69d600b

sys-apps/systemd-udev: Update for udev-168.

(Portage version: 2.2.0_alpha30_p24/git/Linux x86_64, signed Manifest commit with key 05DE07BB)

---
 sys-apps/systemd-udev/Manifest                |    8 +++--
 sys-apps/systemd-udev/systemd-udev-168.ebuild |   44 +++++++++++++++++++++++++
 2 files changed, 49 insertions(+), 3 deletions(-)

diff --git a/sys-apps/systemd-udev/Manifest b/sys-apps/systemd-udev/Manifest
index f5cac5c..c36667e 100644
--- a/sys-apps/systemd-udev/Manifest
+++ b/sys-apps/systemd-udev/Manifest
@@ -2,12 +2,14 @@
 Hash: SHA1
 
 DIST udev-167.tar.bz2 594474 RMD160 444f8ff62eb0a5b67621b5ea199e16bd0531a8b2 SHA1 f993ffb4430bfab666d997c643ed4b90a07e1e07 SHA256 bafaf33e8a39ae109a3e1b82eed72337776cad3e5cccacce8d909a44e09a32eb
+DIST udev-168.tar.bz2 598171 RMD160 a58fc418553bfc208bdc1d33e6798e21d99c5896 SHA1 c5ad16c9a3b9a4317a49f2a091e776d1ac00a8fa SHA256 9ddc43173cf7b397c8cc01d26d644932ff2c2259b3a5eea7be90db96a28080e2
 EBUILD systemd-udev-167-r2.ebuild 858 RMD160 7ad4d1b5a955f2a407ede8dfae52218f707a3e3a SHA1 75a33ed9819ad4915e83bdc05f993269d2215f2b SHA256 aff03a8b378f5dc6447b6eea3dee5345e78afdf282c119f858b1562298dd9184
+EBUILD systemd-udev-168.ebuild 858 RMD160 50c9a29eea455c90359a6aafb60067a77fa32dee SHA1 6da6770f1fedf6b1dd862e97ecda00aecbaa8a6c SHA256 4275a75a5d5da99258322e6a2d49c95cb26fe4a7a583af0aee44b5047bcd5442
 MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.17 (GNU/Linux)
 
-iEYEARECAAYFAk2zDk4ACgkQnGSe5QXeB7uzDQCffXtj8nT/l7sGfWj9LxqSVpeT
-BwUAn1ZRoR52A1F7d+sChgiV8uvQ6xQM
-=gR4t
+iEYEARECAAYFAk29ccUACgkQnGSe5QXeB7sxwgCbBF9U9pHCTMKpRYzmMQnpK9Cs
+DGcAoJcMaqF4oqRNy16ZZrnUjr9OfFSh
+=uTBp
 -----END PGP SIGNATURE-----

diff --git a/sys-apps/systemd-udev/systemd-udev-168.ebuild b/sys-apps/systemd-udev/systemd-udev-168.ebuild
new file mode 100644
index 0000000..bbbd050
--- /dev/null
+++ b/sys-apps/systemd-udev/systemd-udev-168.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit systemd
+
+MY_P=udev-${PV}
+DESCRIPTION="systemd unit files for udev"
+HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
+SRC_URI="mirror://kernel/linux/utils/kernel/hotplug/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="<sys-fs/udev-169
+	>=sys-fs/udev-168
+	!sys-fs/udev[systemd]"
+DEPEND=""
+
+S=${WORKDIR}/${MY_P}/init
+
+src_configure() {
+	:
+}
+
+src_compile() {
+	local f
+
+	for f in *.in; do
+		sed -e 's:@sbindir@:/sbin:g' "${f}" > "${f%.in}" || die
+		rm -f "${f}"
+	done
+}
+
+src_install() {
+	systemd_dounit *
+	systemd_enable_service sockets.target udev.socket
+	systemd_enable_service basic.target udev.service
+	systemd_enable_service basic.target udev-trigger.service
+}



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

end of thread, other threads:[~2011-05-01 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-01 14:44 [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-udev/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2011-04-28 16:33 Michał Górny
2011-04-28 14:33 Michał Górny
2011-04-23 17:37 Michał Górny
2011-04-18  6:20 Michał Górny
2011-04-17 22:14 Michał Górny

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