X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 75545DC037C for ; Wed, 22 Apr 2015 16:55:45 +0000 (UTC) Received: from karif.server-speed.net (karif.server-speed.net [78.46.56.141]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 1B529DC00E7 for ; Wed, 22 Apr 2015 16:55:39 +0000 (UTC) Received: from karif.server-speed.net (karif.server-speed.net [127.0.0.1]) by karif.server-speed.net (Postfix) with ESMTP id 5591D143C47 for ; Wed, 22 Apr 2015 18:55:37 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on karif.server-speed.net X-Spam-Level: X-Spam-Status: No, score=-101.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Virus: No Received: from wallander (117-231.echostar.pl [213.156.117.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: barthalion) by karif.server-speed.net (Postfix) with ESMTPSA for ; Wed, 22 Apr 2015 18:55:37 +0200 (CEST) Date: Wed, 22 Apr 2015 18:55:35 +0200 From: =?UTF-8?B?QmFydMWCb21pZWo=?= Piotrowski To: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/gnome-colors: new aport Message-ID: <20150422185535.0c48beab@wallander> In-Reply-To: <1429529565-99296-1-git-send-email-developer@it-offshore.co.uk> References: <1429529565-99296-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.27; x86_64-unknown-linux-gnu) X-Clacks-Overhead: GNU Terry Pratchett X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/nUCo/og_0M3xTvEQN5XS5jR"; protocol="application/pgp-signature" X-Virus-Scanned: ClamAV using ClamSMTP --Sig_/nUCo/og_0M3xTvEQN5XS5jR Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Mon, 20 Apr 2015 11:32:45 +0000 Stuart Cardall wrote: > The GNOME-Colors is a project that aims to make the GNOME desktop as > elegant, consistent and colorful as possible. >=20 > There are seven full color-schemes available; >=20 > Brave (Blue), Human (Orange), Wine (Red), Noble (Purple), Wise > (Green), Dust (Chocolate) and Illustrious (Pink). >=20 > GNOME-Colors is mostly inspired/based on Tango, GNOME, Elementary, > Tango-Generator and many other open-source projects. > --- > testing/gnome-colors/APKBUILD | 77 > +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 > insertions(+) create mode 100644 testing/gnome-colors/APKBUILD >=20 > diff --git a/testing/gnome-colors/APKBUILD > b/testing/gnome-colors/APKBUILD new file mode 100644 > index 0000000..c78b29f > --- /dev/null > +++ b/testing/gnome-colors/APKBUILD > @@ -0,0 +1,77 @@ > +# Contributor: Stuart Cardall > +# Maintainer: Stuart Cardall > +pkgname=3Dgnome-colors > +pkgver=3D5.5.1 > +pkgrel=3D0 > +pkgdesc=3D"gnome-colors icon themes meta package (all themes)" > +url=3D"https://code.google.com/p/gnome-colors/" > +arch=3D"noarch" > +license=3D"GPLv2" > +depends_dev=3D"" > +makedepends=3D"$depends_dev" > +subpackages=3D"gnome-brave-icon-theme:brave > + $pkgname-common > + gnome-dust-icon-theme:dust > + gnome-human-icon-theme:human > + gnome-illustrious-icon-theme:illustrious > + gnome-noble-icon-theme:noble > + gnome-wine-icon-theme:wine > + gnome-wise-icon-theme:wise > + " > +install_if=3D"gnome-colors-common gnome-icon-theme-brave > gnome-icon-theme-dust gnome-icon-theme-human > + gnome-icon-theme-illustrious gnome-icon-theme-noble > gnome-icon-theme-wine gnome-icon-theme-wise" + > +source=3D"https://gnome-colors.googlecode.com/files/gnome-colors-$pkgver= .tar.gz" > + > +_builddir=3D"$srcdir"/$pkgname-$pkgver > + > +prepare() { > + mkdir $_builddir > + ls -1 | egrep -v "$pkgver|.patch" | xargs -I{} mv {} > $_builddir/ +} > + > +package() { > + cd "$_builddir" || return 1 > + find gnome* -name 'xchat*' | while read i; do > + ln -s "${i##*/}" "${i/xchat/hexchat}" || break > + done > + mkdir -p "$pkgdir/$pkgname" > +} > + > +_app() { > + local app=3D"$1" final_name=3D color=3D > + vmsg=3D"variation of the" cmsg=3D"icons for all" > + > + case "$app" in > + brave) color=3D"Blue $vmsg";; > + colors-common) color=3D"Common $cmsg";; > + dust) color=3D"Chocolate $vmsg";; > + human) color=3D"Orange $vmsg";; > + illustrious) color=3D"Pink $vmsg";; > + noble) color=3D"Purple $vmsg";; > + wine) color=3D"Red $vmsg";; > + wise) color=3D"Green $vmsg";; > + esac > + > + pkgdesc=3D"$color GNOME-Colors icon theme" > + if [ "$app" !=3D "colors-common" ]; then > + install_if=3D"$pkgname=3D$pkgver $pkgname-common" > + fi > + > + cd "$_builddir" > + mkdir -p "$subpkgdir/usr/share/icons" > + mv "gnome-$app" "$subpkgdir/usr/share/icons/" || return 1 > +} > + > +brave() { _app brave 'brave*'; } > +common() { _app colors-common 'colors-common*'; } > +dust() { _app dust 'dust*'; } > +human() { _app human 'human*'; } > +illustrious() { _app illustrious 'illustrious*'; } > +noble() { _app noble 'noble*'; } > +wine() { _app wine 'wine*'; } > +wise() { _app wise 'wise*'; } > + > +md5sums=3D"8ec81b556bac351817bd56a1701dbbfb gnome-colors-5.5.1.tar.gz" > +sha256sums=3D"1e91d845a753eb38671e7614a786f852ab858a12983111e780da4a47c9= debe58 > gnome-colors-5.5.1.tar.gz" > +sha512sums=3D"23d1fb9b96cd4287acc0f540c8a7abed1b9f16d7e2bc952beedc365cfd= 71a3a0134382a7f4bb1c01c62dc376acb6aaf81332167869ec6e8c036679e89d325ff3 > gnome-colors-5.5.1.tar.gz" Please disregard my message, just checking if patchwork changes patch' status after answer. --=20 Bart=C5=82omiej Piotrowski --Sig_/nUCo/og_0M3xTvEQN5XS5jR Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJVN9KHAAoJELvkN3FIcyipMI0IAM6QqivlW+qXnUxQIZSASw8p c2SUrEmMp7sDh6/pl3wGLXVeTQ7bzoq5WhcltCe02/BMD7clZC0yMpXGihE+sDdz O9Dp1QwB5NfRgRPdx1D6Bh/mKCXeMvPM52ZlwOjNsMdodnW2Gi04JcBHV+eId3eZ zt7O4wCp6OLR19HO8xRZH4eFJjHAdmskfhtH7s6B21WcLzZBCuFy6PCxem8TtS1/ REQobm0qDxGF1eqAdbp3ihUeoM4wDWVYUOmK2zHflPqkmA6vUcDxqFwQmsi3Nwhb O+dKyWjQuTwYTlCaoem4zX580vcNUaz21sb9dIr6VOc6srLAzYQMonYFNC4ALDM= =tf6c -----END PGP SIGNATURE----- --Sig_/nUCo/og_0M3xTvEQN5XS5jR-- --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---