Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: licenses/, profiles/, dev-util/staruml-bin/
Date: Sun, 02 Oct 2016 20:38:33
Message-Id: 1475440700.61bb50ff948cf5698550cc08572af56ca2f3c5b8.soap@gentoo
1 commit: 61bb50ff948cf5698550cc08572af56ca2f3c5b8
2 Author: Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
3 AuthorDate: Thu Sep 29 22:14:32 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 2 20:38:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61bb50ff
7
8 dev-util/staruml-bin: new ebuild
9
10 initial version: 2.7.0
11
12 new license: StarUML-EULA
13 Closes: https://github.com/gentoo/gentoo/pull/2433
14
15 Signed-off-by: David Seifert <soap <AT> gentoo.org>
16
17 dev-util/staruml-bin/Manifest | 2 +
18 dev-util/staruml-bin/metadata.xml | 12 ++++++
19 dev-util/staruml-bin/staruml-bin-2.7.0.ebuild | 61 +++++++++++++++++++++++++++
20 licenses/StarUML-EULA | 26 ++++++++++++
21 profiles/license_groups | 2 +-
22 5 files changed, 102 insertions(+), 1 deletion(-)
23
24 diff --git a/dev-util/staruml-bin/Manifest b/dev-util/staruml-bin/Manifest
25 new file mode 100644
26 index 00000000..2210c63
27 --- /dev/null
28 +++ b/dev-util/staruml-bin/Manifest
29 @@ -0,0 +1,2 @@
30 +DIST StarUML-v2.7.0-32-bit.deb 41745682 SHA256 a6728da7f6d1c05a6aca3f2681e83b14924e49c760a9c7f1d2541265260a5cf5 SHA512 c6d09d1504c7482bd6ce9224ea849cb7fa7530dad2691b283676487b67ecbb5f47e1515017de577bace4e703246edad9e75fa94f7ea9bd1c9ad47792e801bb1a WHIRLPOOL 4481d34fa4bcfb0f567c15dee81a0232bcdeecebabf860f89fbae3695baf4a8a87859ad36ade660e107471b93c64f81efd8d2cb61e92f5a356107c22f6b542b0
31 +DIST StarUML-v2.7.0-64-bit.deb 43560668 SHA256 9155d363266978314e74fe22c2dbf2411df591bca4a5d271f22b54ad55dc4ae5 SHA512 a651fe275e731cc626615e9ddbb1ba1a5e7ac62383ae01a7f6bb5683dc97f3795e05701bdc9717ee7140b64b3395a1ab68cacf7a12f640fa05b721fac611ea1f WHIRLPOOL 365818201529d57d2688bcb907f4cc08fd8c1e3cf4658dd77de230498eb7a647834409b773fcc6b0e620fcc6df32cc07754f68e0c948a5285b5513cc880eed68
32
33 diff --git a/dev-util/staruml-bin/metadata.xml b/dev-util/staruml-bin/metadata.xml
34 new file mode 100644
35 index 00000000..3554bdb
36 --- /dev/null
37 +++ b/dev-util/staruml-bin/metadata.xml
38 @@ -0,0 +1,12 @@
39 +<?xml version="1.0" encoding="UTF-8"?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <maintainer type="person">
43 + <email>hilobakho@×××××.com</email>
44 + <name>Mykyta Holubakha</name>
45 + </maintainer>
46 + <maintainer type="project">
47 + <email>proxy-maint@g.o</email>
48 + <name>Gentoo Proxy Maintainers Project</name>
49 + </maintainer>
50 +</pkgmetadata>
51
52 diff --git a/dev-util/staruml-bin/staruml-bin-2.7.0.ebuild b/dev-util/staruml-bin/staruml-bin-2.7.0.ebuild
53 new file mode 100644
54 index 00000000..cca6bdf
55 --- /dev/null
56 +++ b/dev-util/staruml-bin/staruml-bin-2.7.0.ebuild
57 @@ -0,0 +1,61 @@
58 +# Copyright 1999-2016 Gentoo Foundation
59 +# Distributed under the terms of the GNU General Public License v2
60 +# $Id$
61 +
62 +EAPI=6
63 +
64 +inherit unpacker
65 +
66 +DESCRIPTION="A sophisticated software modeler"
67 +HOMEPAGE="http://staruml.io/"
68 +SRC_URI="
69 + amd64? ( http://staruml.io/download/release/v${PV}/StarUML-v${PV}-64-bit.deb )
70 + x86? ( http://staruml.io/download/release/v${PV}/StarUML-v${PV}-32-bit.deb )
71 +"
72 +
73 +LICENSE="StarUML-EULA no-source-code"
74 +SLOT="0"
75 +KEYWORDS="~amd64 ~x86"
76 +IUSE=""
77 +RESTRICT="splitdebug"
78 +
79 +RDEPEND="
80 + dev-libs/atk
81 + dev-libs/expat
82 + dev-libs/glib:2
83 + dev-libs/libgcrypt:11
84 + dev-libs/nss
85 + dev-libs/nspr
86 + gnome-base/gconf
87 + media-libs/fontconfig
88 + media-libs/freetype
89 + media-libs/alsa-lib
90 + net-print/cups
91 + x11-libs/cairo
92 + x11-libs/gdk-pixbuf:2
93 + x11-libs/gtk+:2
94 + x11-libs/libXcomposite
95 + x11-libs/libXdamage
96 + x11-libs/libXext
97 + x11-libs/libXfixes
98 + x11-libs/libXi
99 + x11-libs/libXrender
100 + x11-libs/libX11
101 + x11-libs/pango
102 + virtual/libudev
103 +"
104 +
105 +S="${WORKDIR}"
106 +QA_PREBUILT="opt/staruml/Brackets-node opt/staruml/StarUML"
107 +
108 +src_unpack() {
109 + unpack_deb ${A}
110 +}
111 +
112 +MY_PN=${PN/-bin/}
113 +src_install() {
114 + mv opt "${ED}" || die
115 + dosym /usr/lib/libudev.so /opt/${MY_PN}/libudev.so.0
116 + dosym /opt/${MY_PN}/${MY_PN} /usr/bin/${MY_PN}
117 + newdoc usr/share/doc/${MY_PN}/copyright LICENSE
118 +}
119
120 diff --git a/licenses/StarUML-EULA b/licenses/StarUML-EULA
121 new file mode 100644
122 index 00000000..5208757
123 --- /dev/null
124 +++ b/licenses/StarUML-EULA
125 @@ -0,0 +1,26 @@
126 +End User License Agreement
127 +The SOFTWARE PRODUCT (StarUML) is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.
128 +LICENSES
129 +StarUML is licensed as follows:
130 +Installation and Usage.
131 +
132 +Licenses are per user and valid for use on all supported operating systems. License keys may be used on multiple computers and operating systems, provided the license key holder is the primary user. Businesses must purchase at least as many licenses as the number of people using StarUML.
133 +Backup Copies.
134 +
135 +You may make copies of the license key and or StarUML for backup and archival purposes.
136 +DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS
137 +Maintenance of Copyright Notices.
138 +
139 +You must not remove or alter any copyright notices on any copy of StarUML.
140 +Distribution.
141 +
142 +You may not distribute or sell license keys or StarUML to third parties. Licenses will be revoked if distributed or sold to third parties.
143 +Rental.
144 +
145 +You may not rent, lease, or lend the license key or StarUML.
146 +COPYRIGHT
147 +All title, including but not limited to copyrights, in and to StarUML and any copies thereof are owned by MKLab.
148 +NO WARRANTIES
149 +MKLab expressly disclaims any warranty for StarUML, which is provided 'as is' without any express or implied warranty of any kind, including but not limited to any warranties of merchantability, non-infringement, or fitness of a particular purpose.
150 +LIMITATION OF LIABILITY
151 +In no event shall MKLab be liable for any damages due to use of StarUML, to the maximum extent permitted by law. This includes without limitation, lost profits, business interruption, or lost information. In no event will MKLab be liable for loss of data or for indirect, special, incidental, consequential (including lost profit), or other damages. MKLab shall have no liability with respect to the content of StarUML or any part thereof, including but not limited to errors or omissions contained therein, libel, trademark rights, business interruption, loss of privacy or the disclosure of confidential information.
152
153 diff --git a/profiles/license_groups b/profiles/license_groups
154 index a95f9c3..1796c12 100644
155 --- a/profiles/license_groups
156 +++ b/profiles/license_groups
157 @@ -79,7 +79,7 @@ BINARY-REDISTRIBUTABLE @FREE bh-luxi Broadcom Dina hashcat intel-ucode ipw2100-f
158
159 # License agreements that try to take away your rights. These are more
160 # restrictive than "all-rights-reserved" or require explicit approval.
161 -EULA Adaptec-EULA AdobeFlash-11.x ArxFatalis-EULA-JoWooD baudline BCS bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER CROSSOVER-2 CYANA DOOM3 ETQW FAH-EULA-2009 FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA GIMPS GOG-EULA google-chrome googleearth Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA MARBLEBLAST Mendeley-terms MSjdbcEULA40 MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA Nero-AAC-EULA Nero-EULA-US OPERA-12 OPERA-2014 Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 Quartus-prime-megacore RTCW RTCW-ETEULA RuneScape-EULA SCM-MICRO SJ-Labs skype-4.0.0.7-copyright spin-commercial spin-educational TeamViewer THINKTANKS UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi
162 +EULA Adaptec-EULA AdobeFlash-11.x ArxFatalis-EULA-JoWooD baudline BCS bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER CROSSOVER-2 CYANA DOOM3 ETQW FAH-EULA-2009 FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA GIMPS GOG-EULA google-chrome googleearth Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA MARBLEBLAST Mendeley-terms MSjdbcEULA40 MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA Nero-AAC-EULA Nero-EULA-US OPERA-12 OPERA-2014 Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 Quartus-prime-megacore RTCW RTCW-ETEULA RuneScape-EULA SCM-MICRO SJ-Labs skype-4.0.0.7-copyright spin-commercial spin-educational StarUML-EULA TeamViewer THINKTANKS UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi
163
164 # Deprecated license labels, used by repoman
165 #DEPRECATED as-is