public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2017-10-03  6:35 Göktürk Yüksek
  0 siblings, 0 replies; 12+ messages in thread
From: Göktürk Yüksek @ 2017-10-03  6:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5c2f1337a48523c475f90f7eb2bf1b43610e4215
Author:     Andrey Utkin <andrey_utkin <AT> fastmail <DOT> com>
AuthorDate: Wed Aug 16 20:51:33 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 06:34:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c2f1337

media-gfx/propaganda: add 1.0-r1 for improvements and fixes

This is to facilitate maintenance such as update to EAPI=6 and fixes
the issues highlighted by repoman and more.

- add quotes around strings with variables

- fix LICENSE
  Actual COPYING files are saying the license is GPLv2 or any later
  version.

- omit COPYING, README-GPL from dodoc
  These files contain GPLv2+ license text which shouldn't be installed
  as it is already indicated by LICENSE in ebuild.

- replace dead homepage URL with No_homepage

- use mirror://gentoo/ in SRC_URI
  SRC_URI contained URLs which don't work anymore, distfiles are being
  fetched from mirrors anyway.

- install just jpg files and doc, simplify ebuild
  Unnecessary files which were installed by 1.0 ebuild, listed below,
  are no more shipped. This allowed to simplify ebuild logic.

  HTML files for viewing of image files and navigation between
  them. They are deemed not essential.

  README: contained nothing more than an author's suggestion to view
  images directories in KDE. README-PROPAGANDA, which contains a
  substantial introduction into project history, is still installed.

  magicbg.tar{,.gz}: source code of some app, not essential for usage
  of the package.

  script.perl: scripts for generation of navigation HTML.

  More non-essential files, e.g.
  /usr/share/pixmaps/Propaganda/Vol11/Icon:0d
  /usr/share/pixmaps/Propaganda/Vol11/Modified by Michael Coyle
  /usr/share/pixmaps/Propaganda/Vol12/Icon:0d

- use prepare phase for renames
  Renaming (volume dir names, *.JPG to *.jpg) is not really compiling, so
  use src_prepare phase which is designed for actions like these.

- add "|| die" to commands which may fail

Suggested-by: Amy Liffey <amynka <AT> gentoo.org>
Suggested-by: Göktürk Yüksek <gokturk <AT> gentoo.org>

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 media-gfx/propaganda/propaganda-1.0-r1.ebuild | 47 +++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/media-gfx/propaganda/propaganda-1.0-r1.ebuild b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
new file mode 100644
index 00000000000..86f584a1d5f
--- /dev/null
+++ b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+S="${WORKDIR}/Propaganda"
+DESCRIPTION="Propaganda Volume 1-14 + E. Tiling images for your desktop"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SITE="mirror://gentoo/"
+SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
+	${SITE}Propaganda-Vol-02.tar.gz
+	${SITE}Propaganda-Vol-03.tar.gz
+	${SITE}Propaganda-Vol-04.tar.gz
+	${SITE}Propaganda-Vol-05.tar.gz
+	${SITE}Propaganda-Vol-06.tar.gz
+	${SITE}Propaganda-Vol-07.tar.gz
+	${SITE}Propaganda-Vol-08.tar.gz
+	${SITE}Propaganda-Vol-09.tar.gz
+	${SITE}Propaganda-Vol-10.tar.gz
+	${SITE}Propaganda-Vol-11.tar.gz
+	${SITE}Propaganda-Vol-12.tar.gz
+	${SITE}Propaganda-13.tar.gz
+	${SITE}Propaganda-14.tar.gz
+	${SITE}Propaganda-For-E.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+src_prepare() {
+	default
+
+	mv ../Propaganda-Vol-11 Vol11 || die
+	mv ../Propaganda-Vol-12 Vol12 || die
+
+	rename JPG jpg */*.JPG || die
+}
+
+src_install() {
+	dodoc README-PROPAGANDA
+
+	local VOLUME
+	for VOLUME in Vol* Propaganda-For-E; do
+		insinto "/usr/share/pixmaps/Propaganda/${VOLUME}"
+		doins "${VOLUME}"/*.jpg
+	done
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2017-11-21  0:47 Andrey Utkin
  0 siblings, 0 replies; 12+ messages in thread
From: Andrey Utkin @ 2017-11-21  0:47 UTC (permalink / raw
  To: gentoo-commits

commit:     18bd94228b53c3f7c8e821bf179c16128e5aa842
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 21 00:41:11 2017 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 00:44:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18bd9422

media-gfx/propaganda: add maintainer

The package was marked with maintainer-needed. Adding myself as
the maintainer. I familiarized with this package during my Gentoo
recruitment when I made EAPI bump and general ebuild upkeep.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-gfx/propaganda/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/media-gfx/propaganda/metadata.xml b/media-gfx/propaganda/metadata.xml
index 6f49eba8f49..0d42cb6211d 100644
--- a/media-gfx/propaganda/metadata.xml
+++ b/media-gfx/propaganda/metadata.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>andrey_utkin@gentoo.org</email>
+		<name>Andrey Utkin</name>
+	</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2017-11-27 19:55 Sergei Trofimovich
  0 siblings, 0 replies; 12+ messages in thread
From: Sergei Trofimovich @ 2017-11-27 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     a65a3b802f91f5df5b2e19d8ea37e2877232299d
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 27 19:54:55 2017 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 19:55:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65a3b80

media-gfx/propaganda: stable 1.0-r1 for amd64/x86/ppc/ppc64, bug #638288

Package-Manager: Portage-2.3.16, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64 ppc ppc64 x86"

 media-gfx/propaganda/Manifest                 | 24 ++++++++++++------------
 media-gfx/propaganda/propaganda-1.0-r1.ebuild |  2 +-
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/media-gfx/propaganda/Manifest b/media-gfx/propaganda/Manifest
index c4d50f69ec3..16cbbac7736 100644
--- a/media-gfx/propaganda/Manifest
+++ b/media-gfx/propaganda/Manifest
@@ -1,15 +1,15 @@
-DIST Propaganda-13.tar.gz 4143608 SHA256 69ec4fa3ce48ad8f775ba9f1fbb4c7fcc8e7046fc7290782f3dc93fc4e2823d9 SHA512 c945e87f90e3f2617916a6e66522f9f0395e12b036bcbc4ef1b072e05443b865122dcffec2358fa98138ef14104d6a2b02285c19c45b26ee64255b869049a09f WHIRLPOOL a6bbb07a14e77196173ab71fe0c838d36d322a3c9467acd0bbb7385bfa52ed9766573c9bb7c2b584b23dfdee32ed95b247c73065f41cdfdf36602224f59ad1e1
-DIST Propaganda-14.tar.gz 3734658 SHA256 1b13ba961a029e15e22c63abaeb237f2775a1735405209f97c62890b7982c21d SHA512 aa0ce453096501728270b995ea91bc79be425f7b37255753687410c9a6d3205023b25bb9b3adc41856315d143099834d490547422d640a964b2c9ff751e039fc WHIRLPOOL ce344f0ea32603fdc8ad3235b51c48215eea9ff8b31b8f23da9db87f193ef7991ef25e02ef50a08a01384424916eaf7778618a40931c523e47b0b6c89e1aa57c
-DIST Propaganda-For-E.tar.gz 4234559 SHA256 af2eb4c656598cbd3cb1f8356be264eaba63b438bc4fa6b08c5745b44308c49e SHA512 3c44bff6d78fca42e31c1229a27d0bc1ce2931ab16004242444772cd04ce09bf36940aa498a2e32e45470122a6a79e08d5ed2b32d530bee329b47faff359e93d WHIRLPOOL 2251d208766751d1415fcdbeab69ed45377233aaa41cd6d8cdf93470c04aead5236485a4cd8c5873400025b532fed048d74db2ab9e267bb85320aee50cade218
-DIST Propaganda-Vol-01.tar.gz 1086117 SHA256 a859a05f3d9b4c0ed85aeff37fee68b404fc7767400b978f07b0ada16d9680ea SHA512 58465f94d0df1b2445f02a61202e8fd6af5759250154684e2a1752d031f5e2c09156ead538d43c519bfa7bb572cd8c9b9355c4f014706072528c06ac35e73b98 WHIRLPOOL df908ffa8d445348e1f82b32a0e7dde902c5988b36d333d382585b65da825b0be496c5e9d0f5c76d70689efd6a60e08fcc252a9ed2eb31231ef1c7b5633cbe96
+DIST Propaganda-13.tar.gz 4143608 BLAKE2B d14fda5d9d6b39034999013233a7ec34f87ca381b6bd8479f771904d14879c647c2843dc8a4bab637d960d80a631577a925c19242a3212f7cc545bb7aa75c471 SHA512 c945e87f90e3f2617916a6e66522f9f0395e12b036bcbc4ef1b072e05443b865122dcffec2358fa98138ef14104d6a2b02285c19c45b26ee64255b869049a09f
+DIST Propaganda-14.tar.gz 3734658 BLAKE2B 1e7d6936a521a17b49a049646ddb2f5aa00cacb0107afc38e944dfa8944ddc4ca21f2caf5fe405c2e2c9757263d294ac42fbc2305d47cdee4ed649656133abb1 SHA512 aa0ce453096501728270b995ea91bc79be425f7b37255753687410c9a6d3205023b25bb9b3adc41856315d143099834d490547422d640a964b2c9ff751e039fc
+DIST Propaganda-For-E.tar.gz 4234559 BLAKE2B 53b719428fa9c9c622bc28db0c261efdd8897d12aff45a47a2c95cbc46ceae2c2ad48cd65ab5b69a5d417327371249892efe0efe2ae67eb02b10a9f4c05f665a SHA512 3c44bff6d78fca42e31c1229a27d0bc1ce2931ab16004242444772cd04ce09bf36940aa498a2e32e45470122a6a79e08d5ed2b32d530bee329b47faff359e93d
+DIST Propaganda-Vol-01.tar.gz 1086117 BLAKE2B f0f50411a2fcd41eb5a27f4c9defb22d84d90fe4c2000ea58bcc317e866633ccf337dc16498b8e0507c855f668603273427e088a0166f78904659c76a5503c89 SHA512 58465f94d0df1b2445f02a61202e8fd6af5759250154684e2a1752d031f5e2c09156ead538d43c519bfa7bb572cd8c9b9355c4f014706072528c06ac35e73b98
 DIST Propaganda-Vol-02.tar.gz 335094 SHA256 d5184bcb3a92f984a79087432ebee41bfaaceaa451d58b1e7d7471f08d164595 SHA512 f97b68a772f739fb1763409a9046a5bebf17958ea64ec0a843cca546dec5d2dabb14be9494d8ebb144ccc27f9bcbe6a6fcec670b27e5d74ab06ec9147245875d WHIRLPOOL e3ac7a290f30c46ed5edc154599bd6e5571edcfd529cd8b6a5ca3d98fb2489ce42c70ca36dc59de93ef2bc61feae58d5483fc6da7cd53d3dbcccb346154532dd
-DIST Propaganda-Vol-03.tar.gz 1186808 SHA256 f906297306e55398c4335db7cb5154b0c7ef07e40323b7d5698f988b187bd064 SHA512 ea41270952829d8c089615c9fbfc160b52383446ffcfd818a18f56be30615be5e6ec5cd6527792a926a4ecf7b738e2982c8614b86a8abb37d395bbc32ec1febc WHIRLPOOL 4b5c863ccaf8792eebfb1025728ccc4eba391ef9450f6f0d8b2823f4918f6cc0a54e8478e4f8846c1f156e896cd8e723570d9125cb3cf58f9e239a61c6db6145
-DIST Propaganda-Vol-04.tar.gz 1136867 SHA256 f1b8e04a0935b97540783c67e01942aa72a54609dbd1a8d947f4a03248ed7e8b SHA512 567d6379d9bbbad90216576dae5260f52e45d3d0bde09dfd9190a5e24cdc70955004edd28e0a45a2a5107ca9b0f134ff8918261c39e952ff0075f021465767cd WHIRLPOOL 54289e10fef21f5a372d5d053b1efdd13d359b9fc8814b60b5a4fa763683d3ea6bcfce89f79322280466ec82ac8e82e1fd57b8918fdcc004ebeb00d463ca3730
+DIST Propaganda-Vol-03.tar.gz 1186808 BLAKE2B bf361c280f4da1b55f7d5c92bda00110dd21d2dd30fba8e39a847bb48ec04826df9558a381d132ae0c77e9934b8192feaeceddd947c5500f686f9d07a558ff87 SHA512 ea41270952829d8c089615c9fbfc160b52383446ffcfd818a18f56be30615be5e6ec5cd6527792a926a4ecf7b738e2982c8614b86a8abb37d395bbc32ec1febc
+DIST Propaganda-Vol-04.tar.gz 1136867 BLAKE2B dfdf4c09e5f13a2a983c18b8adcc752a74b1d670a908751f44a1c2aa54e167a3a2e1e595fb3e947c7697f36b8a9af0f7fd57627f42b6ec4a5320f5563646c59c SHA512 567d6379d9bbbad90216576dae5260f52e45d3d0bde09dfd9190a5e24cdc70955004edd28e0a45a2a5107ca9b0f134ff8918261c39e952ff0075f021465767cd
 DIST Propaganda-Vol-05.tar.gz 1020372 SHA256 f886a25a0b2401bdefd62a770afb4221b1385691492dccbe683276a69447ef1d SHA512 c695545ac2fa72287e014d4598025d984c04495b6ed32e1a3eaa295b9af107516431516de2f3cf779a209b10c3245d2fee5de5b5f6c2e3ccabc831824e53bbd4 WHIRLPOOL c8afa9ca1d2b96974f9d0c192429ee7ca36ff8e5fef8196a2ff12e1b42d93bf14722787677ffdfaf5ab56c91b801d209d360f81bd6123cffec60eaff44126ed1
-DIST Propaganda-Vol-06.tar.gz 1165404 SHA256 718ae670c608ff049b0be010bd894529a88702ba399f8502bf60648a3ad6c427 SHA512 bc1475ee96ff7d26c288374c40ee7cd538ad64908c0604bba1cded56600ec6485c24e89ada3acba5dd8932b9302cf0756ed00728903e480790d063c846a7fa4c WHIRLPOOL 1c8e502afd59f07c87e2303242ab0c6da4d067b31445de08f3a21ea3079cb6bcaacf0c2da3ac4df87710795528c20915ec909f54159258689ca9a74c13a46aee
+DIST Propaganda-Vol-06.tar.gz 1165404 BLAKE2B 8a23745a5c2e22e9471afb8c0a98971a41bfdbb98f3d4fe6cd5e9c794485d89b6e6db851ff1ae3d265ca317dc012228234e1b8f409679c9e7acfd7f1601bdd34 SHA512 bc1475ee96ff7d26c288374c40ee7cd538ad64908c0604bba1cded56600ec6485c24e89ada3acba5dd8932b9302cf0756ed00728903e480790d063c846a7fa4c
 DIST Propaganda-Vol-07.tar.gz 1736281 SHA256 cc4219992257620d85f34db0e542bd0d8b9932fda42b93fa2a874aa56a3dc113 SHA512 0a3c7fce63985af882c0297697a06683adf0cca1c45662d8113f970a5ed631db1ffa3e2ac32966e561100e57849eec4442ed7a5b8ead25c988aa467293b2e2bd WHIRLPOOL ec87b0963bfdeb8cb8cde5fd02e530efe7d04c7f93ac8d256d7e0cc9ce27c98ff7030485be995fe19fbbdfdbe2ae830a395e485ec92158282848087c4f25deb2
-DIST Propaganda-Vol-08.tar.gz 1486421 SHA256 34cae16d1cb8ec07c309ab450a5bcdffc0ed02a6ffa3f594c2f50734f6e65895 SHA512 357143586e5b882a13f78b2aabed4c7434f45be54b6a3a46601f6ead2307d36e28c9ec56c68a6e40fe6040a3b093b9a9d1d9624073f9ed711f55473185df3f39 WHIRLPOOL 2608a4ec4e96b40e97340158c4b1031bbf11cee6eb7fc4f20d7780a6845e6f8a77ff9704e9703a471d6055efc40696fdf1583fe7aef7ad1ddc5a28d5401366c0
-DIST Propaganda-Vol-09.tar.gz 1664869 SHA256 1029ce133b109eff2e64ee97563488e22e4d0e75e4e0df29e409eec07d665ad9 SHA512 cd70f63d9a68cf1d73627d31589aa6c2bb42ba014c6c0fc9e0b2991017bb0136950f4bc9d478b39e156ba2039f72c970ad9ef4b4e0a73294ffec1c6adfe4b303 WHIRLPOOL 5d58e77d1ceb31e83fbf6d229a1fed799348c81f7fd740c6d8aa45f744c40f5970632a3eb232599eb48f618bc3af8a090b098ce3b6c4ed782a82874334e97715
-DIST Propaganda-Vol-10.tar.gz 6376914 SHA256 2a9df4a6af44aa0a4e061412e67cd096cb1d13eddc6fbb3ba7a2b0a2a869cf5c SHA512 080d563442050f1266d09fbb2148d14173555a213ce1fb110ce4aab2d85a18563543705227b1e68146dd2f1a5b1bb7cc75f9512f823a4970f92b55eb9251b1fd WHIRLPOOL 4bf5d9944bece8f3628878ae52d40e5598b906e6ac283c0ec45b73534af825bfc6a123970eda40ea47c8579f30ae76104dd08b6fcef88786f264d2cfc7da6633
-DIST Propaganda-Vol-11.tar.gz 3030910 SHA256 c9aa7e8379b10dd4353e791b3f90aa43543e3d8745c0a1630343aea7ab52c515 SHA512 752a3e27bfbde1f694be3f57e4c7bf638159f8e7b06c00c703a82ff2795625298feca20f91beecc651da66ac7b6dc5e7fcfc0b5d7b465118e94f8769488be1c7 WHIRLPOOL 8cb9b5df0ebac9ad72044786960fd3dc67e2e576436ffc8443692c55bb495bd2be9bdbd8913f6a3d0a4581cca8a6d868f12c616b82e3f7ccbd1b76b73ecbbd9f
-DIST Propaganda-Vol-12.tar.gz 3140955 SHA256 704973ebf106b0e30ecbae211f1a67daddd9f84f880a191d03a726010823d919 SHA512 1cef61c88a4cbe4c757c05c1ecf2d72ab67ad13e0268497971f9a11047351d0a0e8770a69bd6754672b6a8c99e69a2e61693fb593bcfb4db7003cd9eddd31f80 WHIRLPOOL c0c98c4f3f32927974b7cd36b550737596f830924952c16faafa3f52243bbdeaa0fa0e2c7a46e3d63320817d836408489bc58450ea9e70e07646d81ab4b3649b
+DIST Propaganda-Vol-08.tar.gz 1486421 BLAKE2B 866e76c153f0fb4f16aea95d158d8f2e06a531b11a6e31a7525e069741de85fb34f0f1e0b0a4de7d4d63d66f47e9e46f30039caf630081e7e3702e49ba8b58f8 SHA512 357143586e5b882a13f78b2aabed4c7434f45be54b6a3a46601f6ead2307d36e28c9ec56c68a6e40fe6040a3b093b9a9d1d9624073f9ed711f55473185df3f39
+DIST Propaganda-Vol-09.tar.gz 1664869 BLAKE2B 48baf8efa75f18141a557e0f36a982232d480ee3454ddf045a71a317e9fd56d059639b6dea11afdb7a4a5cdef3f451334eea367373450d3efa5732a2ef5d5b05 SHA512 cd70f63d9a68cf1d73627d31589aa6c2bb42ba014c6c0fc9e0b2991017bb0136950f4bc9d478b39e156ba2039f72c970ad9ef4b4e0a73294ffec1c6adfe4b303
+DIST Propaganda-Vol-10.tar.gz 6376914 BLAKE2B 365e96616d8f82321fd0a0460e6b14e5db7b96942ffa49f193ac86bba76c2394fa451718e611e8697ccde3ff02a6ac649d0ea85a04fad76a940c3769418b9751 SHA512 080d563442050f1266d09fbb2148d14173555a213ce1fb110ce4aab2d85a18563543705227b1e68146dd2f1a5b1bb7cc75f9512f823a4970f92b55eb9251b1fd
+DIST Propaganda-Vol-11.tar.gz 3030910 BLAKE2B b5637635165557c079d7801b91a6b1d7372a7ac1ef1ba414d0cf172d652de779fb05f106f0ef7cabebac79bbc8a1b21cabde0f34a14735eca17ccb193ade0882 SHA512 752a3e27bfbde1f694be3f57e4c7bf638159f8e7b06c00c703a82ff2795625298feca20f91beecc651da66ac7b6dc5e7fcfc0b5d7b465118e94f8769488be1c7
+DIST Propaganda-Vol-12.tar.gz 3140955 BLAKE2B ce23e5e781bd1d1cba757bcee71df199627e18bb72eddd0a6dc5759f1d80fcefbb4daa6048450aa51f9b4830ece14461ef63a299e0c13d43a1670bc8b1a4b0fc SHA512 1cef61c88a4cbe4c757c05c1ecf2d72ab67ad13e0268497971f9a11047351d0a0e8770a69bd6754672b6a8c99e69a2e61693fb593bcfb4db7003cd9eddd31f80

diff --git a/media-gfx/propaganda/propaganda-1.0-r1.ebuild b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
index 86f584a1d5f..59b1cfda3be 100644
--- a/media-gfx/propaganda/propaganda-1.0-r1.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
@@ -24,7 +24,7 @@ SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
 
 SLOT="0"
 LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2017-12-22 17:47 Andrey Utkin
  0 siblings, 0 replies; 12+ messages in thread
From: Andrey Utkin @ 2017-12-22 17:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4e507cbaa821975cef9fb16e0a29315afd988b84
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 14:13:44 2017 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 17:46:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e507cba

media-gfx/propaganda: drop old revision

Dropping 1.0 as 1.0-r1 is now stable.

Package-Manager: Portage-2.3.17, Repoman-2.3.6

 media-gfx/propaganda/propaganda-1.0.ebuild | 67 ------------------------------
 1 file changed, 67 deletions(-)

diff --git a/media-gfx/propaganda/propaganda-1.0.ebuild b/media-gfx/propaganda/propaganda-1.0.ebuild
deleted file mode 100644
index d4918b18446..00000000000
--- a/media-gfx/propaganda/propaganda-1.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-S=${WORKDIR}/Propaganda
-DESCRIPTION="Propaganda Volume 1-14 + E. Tiling images for your desktop"
-HOMEPAGE="http://www.resexcellence.com/propaganda/index.shtml"
-SITE="http://www.resexcellence.com/propaganda/"
-# Point to any required sources; these will be automatically
-# downloaded by Portage.
-SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
-	${SITE}Propaganda-Vol-02.tar.gz
-	${SITE}Propaganda-Vol-03.tar.gz
-	${SITE}Propaganda-Vol-04.tar.gz
-	${SITE}Propaganda-Vol-05.tar.gz
-	${SITE}Propaganda-Vol-06.tar.gz
-	${SITE}Propaganda-Vol-07.tar.gz
-	${SITE}Propaganda-Vol-08.tar.gz
-	${SITE}Propaganda-Vol-09.tar.gz
-	${SITE}Propaganda-Vol-10.tar.gz
-	${SITE}Propaganda-Vol-11.tar.gz
-	${SITE}Propaganda-Vol-12.tar.gz
-	${SITE}Propaganda-13.tar.gz
-	${SITE}Propaganda-14.tar.gz
-	${SITE}Propaganda-For-E.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE=""
-
-src_compile() {
-	rm -fr ${S}/../Propaganda-Vol-11/.finderinfo
-	rm -fr ${S}/../Propaganda-Vol-11/.resource
-
-	rm -fr ${S}/../Propaganda-Vol-12/.finderinfo
-	rm -fr ${S}/../Propaganda-Vol-12/.resource
-
-	mv ${S}/../Propaganda-Vol-11 ${S}/Vol11
-	mv ${S}/../Propaganda-Vol-12 ${S}/Vol12
-
-	for NUM in 1 2 3 4 5 6 7 8 9 10 11 12 13 14; do
-		chmod -x ${S}/Vol${NUM}/*
-		cd ${S}/Vol${NUM}
-		rm *.html
-		rename JPG jpg *.JPG
-		chmod +x script.perl
-		./script.perl *.jpg
-	done
-	chmod -x ${S}/Propaganda-For-E/*
-	cd ${S}/Propaganda-For-E/
-	rm *.html
-	rename JPG jpg *.JPG
-	chmod +x script.perl
-	./script.perl *.jpg
-	cd ${S}
-	pwd
-	rm -f ${S}/Vol2/\@
-	chmod ugo-w -R ${S}
-	chmod ugo+r -R ${S}
-}
-
-src_install() {
-	dodir /usr/share/pixmaps/
-	gunzip magicbg.tar.gz
-	dodoc COPYING READM*  magicbg.tar
-	mv -f ${S} ${D}/usr/share/pixmaps || die
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2019-02-25 20:13 Andrey Utkin
  0 siblings, 0 replies; 12+ messages in thread
From: Andrey Utkin @ 2019-02-25 20:13 UTC (permalink / raw
  To: gentoo-commits

commit:     4ad2b06ee5196402a0f51ac42f203ea719e12e07
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 25 19:44:35 2019 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon Feb 25 20:13:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad2b06e

media-gfx/propaganda: use devspace, not mirror pseudo-URL, in SRC_URI

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r1.ebuild b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
index 59b1cfda3be..f683c1bd627 100644
--- a/media-gfx/propaganda/propaganda-1.0-r1.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 S="${WORKDIR}/Propaganda"
 DESCRIPTION="Propaganda Volume 1-14 + E. Tiling images for your desktop"
 HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SITE="mirror://gentoo/"
+SITE="https://dev.gentoo.org/~andrey_utkin/distfiles/"
 SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
 	${SITE}Propaganda-Vol-02.tar.gz
 	${SITE}Propaganda-Vol-03.tar.gz


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2020-07-27 23:48 Andrey Utkin
  0 siblings, 0 replies; 12+ messages in thread
From: Andrey Utkin @ 2020-07-27 23:48 UTC (permalink / raw
  To: gentoo-commits

commit:     dda05cd1a758cbfd3ccb8e58e801f15e8eb9b911
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 27 22:56:15 2020 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Mon Jul 27 23:47:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda05cd1

media-gfx/propaganda: drop to maintainer-needed

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>

 media-gfx/propaganda/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/media-gfx/propaganda/metadata.xml b/media-gfx/propaganda/metadata.xml
index 0d42cb6211d..7a38bb90096 100644
--- a/media-gfx/propaganda/metadata.xml
+++ b/media-gfx/propaganda/metadata.xml
@@ -1,8 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>andrey_utkin@gentoo.org</email>
-		<name>Andrey Utkin</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-07-15  5:48 Sam James
  0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2022-07-15  5:48 UTC (permalink / raw
  To: gentoo-commits

commit:     d8e47493d5b6912586cb8d10a04fcac2f3b43fa1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 05:47:49 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 05:47:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e47493

media-gfx/propaganda: update EAPI 6 -> 8

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r2.ebuild | 47 +++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/media-gfx/propaganda/propaganda-1.0-r2.ebuild b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
new file mode 100644
index 000000000000..86662e6c0a08
--- /dev/null
+++ b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+SITE="https://dev.gentoo.org/~andrey_utkin/distfiles/"
+DESCRIPTION="Propaganda Volume 1-14 + E. Tiling images for your desktop"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
+	${SITE}Propaganda-Vol-02.tar.gz
+	${SITE}Propaganda-Vol-03.tar.gz
+	${SITE}Propaganda-Vol-04.tar.gz
+	${SITE}Propaganda-Vol-05.tar.gz
+	${SITE}Propaganda-Vol-06.tar.gz
+	${SITE}Propaganda-Vol-07.tar.gz
+	${SITE}Propaganda-Vol-08.tar.gz
+	${SITE}Propaganda-Vol-09.tar.gz
+	${SITE}Propaganda-Vol-10.tar.gz
+	${SITE}Propaganda-Vol-11.tar.gz
+	${SITE}Propaganda-Vol-12.tar.gz
+	${SITE}Propaganda-13.tar.gz
+	${SITE}Propaganda-14.tar.gz
+	${SITE}Propaganda-For-E.tar.gz"
+S="${WORKDIR}/Propaganda"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+src_prepare() {
+	default
+
+	mv ../Propaganda-Vol-11 Vol11 || die
+	mv ../Propaganda-Vol-12 Vol12 || die
+
+	rename JPG jpg */*.JPG || die
+}
+
+src_install() {
+	dodoc README-PROPAGANDA
+
+	local VOLUME
+	for VOLUME in Vol* Propaganda-For-E; do
+		insinto "/usr/share/pixmaps/Propaganda/${VOLUME}"
+		doins "${VOLUME}"/*.jpg
+	done
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-08-28 18:18 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-08-28 18:18 UTC (permalink / raw
  To: gentoo-commits

commit:     a51b0c316a95b8b99e13e77e1d39faab5a48493f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 18:18:23 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 18:18:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51b0c31

media-gfx/propaganda: Stabilize 1.0-r2 ppc64, #867136

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r2.ebuild b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
index b0d29da23541..77eaa13762f4 100644
--- a/media-gfx/propaganda/propaganda-1.0-r2.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
@@ -25,7 +25,7 @@ S="${WORKDIR}/Propaganda"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~x86"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-08-28 18:18 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-08-28 18:18 UTC (permalink / raw
  To: gentoo-commits

commit:     1752af2f472b7ce44d921d746f72361627784656
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 18:18:22 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 18:18:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1752af2f

media-gfx/propaganda: Stabilize 1.0-r2 ppc, #867136

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r2.ebuild b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
index 86662e6c0a08..b0d29da23541 100644
--- a/media-gfx/propaganda/propaganda-1.0-r2.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
@@ -25,7 +25,7 @@ S="${WORKDIR}/Propaganda"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-08-29  7:22 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-08-29  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     74028f4fdf22aa35ba4139ab151fde815b26c815
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:07:38 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 07:21:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74028f4f

media-gfx/propaganda: Stabilize 1.0-r2 x86, #867136

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r2.ebuild b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
index 18ccc8bd44e5..764db3933a3e 100644
--- a/media-gfx/propaganda/propaganda-1.0-r2.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
@@ -25,7 +25,7 @@ S="${WORKDIR}/Propaganda"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-08-29  7:22 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-08-29  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     08f7dc7d069eba752bc8b56896186adeb03b64ec
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:04:24 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 07:21:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08f7dc7d

media-gfx/propaganda: Stabilize 1.0-r2 amd64, #867136

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r2.ebuild b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
index 77eaa13762f4..18ccc8bd44e5 100644
--- a/media-gfx/propaganda/propaganda-1.0-r2.ebuild
+++ b/media-gfx/propaganda/propaganda-1.0-r2.ebuild
@@ -25,7 +25,7 @@ S="${WORKDIR}/Propaganda"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 ~x86"
 
 src_prepare() {
 	default


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/
@ 2022-08-29  7:22 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-08-29  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     2aa11d9b63a239aa4489e6ff222d0d78338ef3e2
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:17:28 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 07:22:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa11d9b

media-gfx/propaganda: drop 1.0-r1

Bug: https://bugs.gentoo.org/867136
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-gfx/propaganda/propaganda-1.0-r1.ebuild | 47 ---------------------------
 1 file changed, 47 deletions(-)

diff --git a/media-gfx/propaganda/propaganda-1.0-r1.ebuild b/media-gfx/propaganda/propaganda-1.0-r1.ebuild
deleted file mode 100644
index f683c1bd6279..000000000000
--- a/media-gfx/propaganda/propaganda-1.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-S="${WORKDIR}/Propaganda"
-DESCRIPTION="Propaganda Volume 1-14 + E. Tiling images for your desktop"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SITE="https://dev.gentoo.org/~andrey_utkin/distfiles/"
-SRC_URI="${SITE}Propaganda-Vol-01.tar.gz
-	${SITE}Propaganda-Vol-02.tar.gz
-	${SITE}Propaganda-Vol-03.tar.gz
-	${SITE}Propaganda-Vol-04.tar.gz
-	${SITE}Propaganda-Vol-05.tar.gz
-	${SITE}Propaganda-Vol-06.tar.gz
-	${SITE}Propaganda-Vol-07.tar.gz
-	${SITE}Propaganda-Vol-08.tar.gz
-	${SITE}Propaganda-Vol-09.tar.gz
-	${SITE}Propaganda-Vol-10.tar.gz
-	${SITE}Propaganda-Vol-11.tar.gz
-	${SITE}Propaganda-Vol-12.tar.gz
-	${SITE}Propaganda-13.tar.gz
-	${SITE}Propaganda-14.tar.gz
-	${SITE}Propaganda-For-E.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2+"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE=""
-
-src_prepare() {
-	default
-
-	mv ../Propaganda-Vol-11 Vol11 || die
-	mv ../Propaganda-Vol-12 Vol12 || die
-
-	rename JPG jpg */*.JPG || die
-}
-
-src_install() {
-	dodoc README-PROPAGANDA
-
-	local VOLUME
-	for VOLUME in Vol* Propaganda-For-E; do
-		insinto "/usr/share/pixmaps/Propaganda/${VOLUME}"
-		doins "${VOLUME}"/*.jpg
-	done
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-08-29  7:22 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-25 20:13 [gentoo-commits] repo/gentoo:master commit in: media-gfx/propaganda/ Andrey Utkin
  -- strict thread matches above, loose matches on Subject: below --
2022-08-29  7:22 Joonas Niilola
2022-08-29  7:22 Joonas Niilola
2022-08-29  7:22 Joonas Niilola
2022-08-28 18:18 Arthur Zamarin
2022-08-28 18:18 Arthur Zamarin
2022-07-15  5:48 Sam James
2020-07-27 23:48 Andrey Utkin
2017-12-22 17:47 Andrey Utkin
2017-11-27 19:55 Sergei Trofimovich
2017-11-21  0:47 Andrey Utkin
2017-10-03  6:35 Göktürk Yüksek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox