Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/ubuntu-wallpapers/
Date: Thu, 29 Mar 2018 19:35:08
Message-Id: 1522352099.1dda66ac3ed0e2d1c58c5e9f5a17166deca39820.pacho@gentoo
1 commit: 1dda66ac3ed0e2d1c58c5e9f5a17166deca39820
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 29 19:34:46 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 19:34:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dda66ac
7
8 x11-themes/ubuntu-wallpapers: Version bump
9
10 Package-Manager: Portage-2.3.26, Repoman-2.3.7
11
12 x11-themes/ubuntu-wallpapers/Manifest | 1 +
13 .../ubuntu-wallpapers-18.04.0.ebuild | 37 ++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/x11-themes/ubuntu-wallpapers/Manifest b/x11-themes/ubuntu-wallpapers/Manifest
17 index ab63d4d0e71..7433f2add9c 100644
18 --- a/x11-themes/ubuntu-wallpapers/Manifest
19 +++ b/x11-themes/ubuntu-wallpapers/Manifest
20 @@ -1 +1,2 @@
21 DIST ubuntu-wallpapers_17.10.1.orig.tar.gz 129711183 BLAKE2B ca5c4010cc5b724d8f1a2963370393f096fd43bf2fde6150d9348d70538621ce364b352fae5903fc22dd63ec10a8dbbb3fc61859683fa1fe95030d10d82464e8 SHA512 1f863473079e1c95b9110c7fc18484a15a0215e35e29acb3c48ab5ebff4cab25b2c83e8a8864a2e5df7fd523dc4e519f2c27f0ee4479a64485f854d752942b76
22 +DIST ubuntu-wallpapers_18.04.0.orig.tar.gz 129653406 BLAKE2B 807b5212d95b5881bf4139b822f13e38b696c0fd8a848ed03ca035c98b570c1fa6a25dd301b62e1d9871ce42636f26cf6531f9f89480f7cb8518c36673b0f064 SHA512 a6a57f448c7180cc6fa946ca69dfdbc3af13cd7b29155b4a5d05f1fedf99736110b919514c6e5ded6ef0fd95262bb2902148529150ecc725e43f0f6e864d282e
23
24 diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild
25 new file mode 100644
26 index 00000000000..d4c81aca080
27 --- /dev/null
28 +++ b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +DESCRIPTION="Ubuntu wallpapers"
36 +HOMEPAGE="https://launchpad.net/ubuntu/+source/ubuntu-wallpapers"
37 +MY_P="${PN}_${PV}"
38 +SRC_URI="mirror://ubuntu/pool/main/u/${PN}/${MY_P}.orig.tar.gz"
39 +LICENSE="CC-BY-SA-3.0"
40 +KEYWORDS="~amd64 ~arm ~x86"
41 +IUSE=""
42 +
43 +RDEPEND=""
44 +DEPEND=""
45 +
46 +S="${WORKDIR}/${MY_P/_/-}"
47 +
48 +SLOT="0"
49 +
50 +src_compile() { :; }
51 +src_test() { :; }
52 +
53 +src_install() {
54 + insinto /usr/share/backgrounds
55 + doins *.jpg *.png
56 +
57 + insinto /usr/share/backgrounds/contest
58 + doins contest/*.xml
59 +
60 + for i in *.xml.in; do
61 + insinto /usr/share/gnome-background-properties
62 + newins ${i} ${i/.in/}
63 + done
64 +
65 + einstalldocs
66 +}