Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/adjtime: ChangeLog adjtime-0.4-r2.ebuild
Date: Wed, 30 Apr 2014 18:28:10
Message-Id: 20140430182805.CD6572004B@flycatcher.gentoo.org
1 ulm 14/04/30 18:28:05
2
3 Modified: ChangeLog adjtime-0.4-r2.ebuild
4 Log:
5 Fix LICENSE, remove distfile from FILESDIR, add mirror and bindist restrictions, bug 441922.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.7 sys-apps/adjtime/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/adjtime/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 7 Oct 2012 09:13:13 -0000 1.6
23 +++ ChangeLog 30 Apr 2014 18:28:05 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/adjtime
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/adjtime/ChangeLog,v 1.6 2012/10/07 09:13:13 pacho Exp $
28 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/adjtime/ChangeLog,v 1.7 2014/04/30 18:28:05 ulm Exp $
30 +
31 + 30 Apr 2014; Ulrich Müller <ulm@g.o> adjtime-0.4-r2.ebuild,
32 + -files/adjtime.pl:
33 + Fix LICENSE, remove distfile from FILESDIR, add mirror and bindist
34 + restrictions, bug 441922.
35
36 07 Oct 2012; Pacho Ramos <pacho@g.o> metadata.xml:
37 Drop maintainer due retirement, #24135.
38
39
40
41 1.4 sys-apps/adjtime/adjtime-0.4-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild?r1=1.3&r2=1.4
46
47 Index: adjtime-0.4-r2.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild,v
50 retrieving revision 1.3
51 retrieving revision 1.4
52 diff -u -r1.3 -r1.4
53 --- adjtime-0.4-r2.ebuild 12 Jul 2007 05:10:21 -0000 1.3
54 +++ adjtime-0.4-r2.ebuild 30 Apr 2014 18:28:05 -0000 1.4
55 @@ -1,21 +1,30 @@
56 -# Copyright 1999-2006 Gentoo Foundation
57 +# Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild,v 1.3 2007/07/12 05:10:21 mr_bones_ Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/adjtime/adjtime-0.4-r2.ebuild,v 1.4 2014/04/30 18:28:05 ulm Exp $
61
62 -DESCRIPTION="A perl script to adjust the clock tick of the hardware clock on the system board (should work on most platforms)."
63 +EAPI=5
64 +
65 +DESCRIPTION="A perl script to adjust the clock tick of the hardware clock on the system board"
66 HOMEPAGE="http://groups.yahoo.com/group/LinkStation_General/"
67 +SRC_URI="http://www.gentoogeek.org/files/${PN}.zip"
68
69 -LICENSE="as-is"
70 +LICENSE="all-rights-reserved" #441922
71 SLOT="0"
72 KEYWORDS="ppc"
73 -IUSE=""
74 +RESTRICT="mirror bindist"
75
76 +DEPEND="app-arch/unzip"
77 RDEPEND="dev-lang/perl
78 >=net-misc/ntp-4.2"
79
80 +S="${WORKDIR}"
81 +
82 +src_prepare() {
83 + sed -i -e 's:/usr/sbin/tickadj:/usr/bin/tickadj:' adjtime.pl || die
84 +}
85 +
86 src_install() {
87 - dodir /usr/sbin
88 - dosbin ${FILESDIR}/adjtime.pl || die
89 + dosbin adjtime.pl
90 }
91
92 pkg_postinst() {