diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2005-12-24 22:15:27 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2005-12-24 22:15:27 +0000 |
commit | be8bd6e0a3dffa5c449bd12f7489c3da5bed1008 (patch) | |
tree | 2d3d2c4f57c43c0852a21cf75b5cd452fb4f2a90 /sys-apps/hal | |
parent | 3.1 version bump, which should fix bug 111255. (diff) | |
download | historical-be8bd6e0a3dffa5c449bd12f7489c3da5bed1008.tar.gz historical-be8bd6e0a3dffa5c449bd12f7489c3da5bed1008.tar.bz2 historical-be8bd6e0a3dffa5c449bd12f7489c3da5bed1008.zip |
Fix if-statement thanks to Michail A.Baikov <rusxakep@mail.ru> in bug 116376
Package-Manager: portage-2.1_pre1
Diffstat (limited to 'sys-apps/hal')
-rw-r--r-- | sys-apps/hal/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/hal/Manifest | 14 | ||||
-rw-r--r-- | sys-apps/hal/hal-0.5.5.1-r1.ebuild | 4 |
3 files changed, 8 insertions, 15 deletions
diff --git a/sys-apps/hal/ChangeLog b/sys-apps/hal/ChangeLog index 0bb2ce634072..acb1d93718fc 100644 --- a/sys-apps/hal/ChangeLog +++ b/sys-apps/hal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/hal # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/ChangeLog,v 1.59 2005/12/21 09:41:19 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/ChangeLog,v 1.60 2005/12/24 22:15:27 genstef Exp $ + + 24 Dec 2005; Stefan Schweizer <genstef@gentoo.org> hal-0.5.5.1-r1.ebuild: + Fix if-statement thanks to Michail A.Baikov <rusxakep@mail.ru> in bug 116376 21 Dec 2005; Doug Goldstein <cardoe@gentoo.org> files/0.5-hald.rc, -hal-0.4.5-r2.ebuild, -hal-0.5.4.ebuild, -hal-0.5.5.1.ebuild, diff --git a/sys-apps/hal/Manifest b/sys-apps/hal/Manifest index b51c4fdd32b7..881fa99e97b6 100644 --- a/sys-apps/hal/Manifest +++ b/sys-apps/hal/Manifest @@ -1,7 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 32f19bf76082ed9c07c85df5a108ca20 ChangeLog 8585 +MD5 f0052a208af6b68030b666367ceb3c28 ChangeLog 8742 MD5 169d86aeebcd34b958b6e37c9fc36ec6 files/0.5-hald.rc 529 MD5 3031a9fe74f43859c313d5f3076e68cd files/digest-hal-0.4.7-r2 62 MD5 2bbbb519c89110dfec96cf63cf541afc files/digest-hal-0.4.8 62 @@ -21,12 +18,5 @@ MD5 7ee3fd5b5ee117f14633350e5b335c2f files/hal-unmount.dev 397 MD5 192112dfb678a9795a93d3cdcc50bb95 files/hald 543 MD5 1a146b79d18a689bbc8a96b81f74c7f6 hal-0.4.7-r2.ebuild 3455 MD5 c6d1202b415d119777b338fd1787592e hal-0.4.8.ebuild 3420 -MD5 2f1f44ebde0f3e55b620d061075b5105 hal-0.5.5.1-r1.ebuild 3601 +MD5 64ccf8ca68ea585db3fc05c33f7a6249 hal-0.5.5.1-r1.ebuild 3598 MD5 a60767d83157413d549c69b98fac962c metadata.xml 303 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDqSNPBtvusYtCZMsRApTRAJ9IT40JaQzN2WoH0IGLnR5zwQf+bgCcDzQX -G/xhmBCvE5YXuoAT+SkfEco= -=FGqn ------END PGP SIGNATURE----- diff --git a/sys-apps/hal/hal-0.5.5.1-r1.ebuild b/sys-apps/hal/hal-0.5.5.1-r1.ebuild index d8d70d836353..cf4c307893d7 100644 --- a/sys-apps/hal/hal-0.5.5.1-r1.ebuild +++ b/sys-apps/hal/hal-0.5.5.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.5.1-r1.ebuild,v 1.2 2005/12/21 09:41:19 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.5.1-r1.ebuild,v 1.3 2005/12/24 22:15:27 genstef Exp $ inherit eutils linux-info debug @@ -48,7 +48,7 @@ pkg_setup() { kernel_is ge 2 6 13 \ || die "You need a 2.6.13 or newer kernel to run this package" - if [ kernel_is le 2 6 15 ]; then + if kernel_is le 2 6 15; then linux_chkconfig_present KOBJECT_UEVENT || notify_uevent fi |