Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xflux/
Date: Thu, 29 Mar 2018 09:17:55
Message-Id: 1522314975.f8368de4a586d9c89d43b67a429c59795d7880b6.mgorny@gentoo
1 commit: f8368de4a586d9c89d43b67a429c59795d7880b6
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Tue Mar 27 20:41:16 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 09:16:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8368de4
7
8 x11-misc/xflux: New package
9
10 Closes: https://bugs.gentoo.org/606128
11 Closes: https://github.com/gentoo/gentoo/pull/7311
12
13 x11-misc/xflux/Manifest | 2 ++
14 x11-misc/xflux/metadata.xml | 12 ++++++++++++
15 x11-misc/xflux/xflux-20130927.ebuild | 29 +++++++++++++++++++++++++++++
16 3 files changed, 43 insertions(+)
17
18 diff --git a/x11-misc/xflux/Manifest b/x11-misc/xflux/Manifest
19 new file mode 100644
20 index 00000000000..77b6010b104
21 --- /dev/null
22 +++ b/x11-misc/xflux/Manifest
23 @@ -0,0 +1,2 @@
24 +DIST xflux-20130927.tar.gz 339845 BLAKE2B 15751b75b7c0603044c4e7e98a9b23ceab7e245b12833ed1b6e8bc1d1734c5838777b7561d035bdf6d6d781105cc48dbda6c262895c310cf9710529a088b0a97 SHA512 6204558b8fa1063ee19fe444f740ab4ddfdbc412459b2f5cea94ddbf11818e0c9bff7e066a4958c1ab5c160b1aedcd18fa7fc4cd800a67c5d51ad1206f203e52
25 +DIST xflux64-20130927.tar.gz 339845 BLAKE2B 15751b75b7c0603044c4e7e98a9b23ceab7e245b12833ed1b6e8bc1d1734c5838777b7561d035bdf6d6d781105cc48dbda6c262895c310cf9710529a088b0a97 SHA512 6204558b8fa1063ee19fe444f740ab4ddfdbc412459b2f5cea94ddbf11818e0c9bff7e066a4958c1ab5c160b1aedcd18fa7fc4cd800a67c5d51ad1206f203e52
26
27 diff --git a/x11-misc/xflux/metadata.xml b/x11-misc/xflux/metadata.xml
28 new file mode 100644
29 index 00000000000..54d5423c406
30 --- /dev/null
31 +++ b/x11-misc/xflux/metadata.xml
32 @@ -0,0 +1,12 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>ck+gentoo@××××××××.de</email>
38 + <name>Conrad Kostecki</name>
39 + </maintainer>
40 + <maintainer type="project">
41 + <email>proxy-maint@g.o</email>
42 + <name>Proxy Maintainers</name>
43 + </maintainer>
44 +</pkgmetadata>
45
46 diff --git a/x11-misc/xflux/xflux-20130927.ebuild b/x11-misc/xflux/xflux-20130927.ebuild
47 new file mode 100644
48 index 00000000000..4a83ec1eecd
49 --- /dev/null
50 +++ b/x11-misc/xflux/xflux-20130927.ebuild
51 @@ -0,0 +1,29 @@
52 +# Copyright 1999-2018 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +DESCRIPTION="Makes the color of your computer's display adapt to the time of the day"
58 +HOMEPAGE="https://justgetflux.com/"
59 +SRC_URI="amd64? ( https://justgetflux.com/linux/${PN}64.tgz -> ${PN}64-${PV}.tar.gz )
60 + x86? ( https://justgetflux.com/linux/${PN}-pre.tgz -> ${P}.tar.gz )"
61 +
62 +KEYWORDS="-* ~amd64 ~x86"
63 +LICENSE="f.lux"
64 +SLOT="0"
65 +
66 +RESTRICT="bindist mirror"
67 +
68 +RDEPEND="x11-libs/libX11
69 + x11-libs/libXext
70 + x11-libs/libXrandr
71 + x11-libs/libXxf86vm"
72 +
73 +S="${WORKDIR}"
74 +
75 +QA_PREBUILT="usr/bin/xflux"
76 +
77 +src_install() {
78 + # Install binary
79 + dobin xflux
80 +}