public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tek/
@ 2016-07-23 16:19 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 4+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2016-07-23 16:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8f079e5a55493424277efe239ba1aa7d7dbc8c35
Author:     Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 23 08:11:43 2016 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Sat Jul 23 16:18:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f079e5a

app-misc/tek: Add new package

Package-Manager: portage-2.3.0

 app-misc/tek/Manifest         |  1 +
 app-misc/tek/metadata.xml     |  8 ++++++++
 app-misc/tek/tek-1.3.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 53 insertions(+)

diff --git a/app-misc/tek/Manifest b/app-misc/tek/Manifest
new file mode 100644
index 0000000..24f7a37
--- /dev/null
+++ b/app-misc/tek/Manifest
@@ -0,0 +1 @@
+DIST tek-1.3.0.tar.gz 99399 SHA256 730e43749bf83fe1f717a64754262fe0577d25b3b47896838d4936fd8f76ffe6 SHA512 20e3e704db71a7c0fb7a7791c8ebbdb348d370b06bea39f2ee77cae72ac4b71873884c6ec58712c9bf85d7d0785310f33189ce977a77b970951e39c8803d28fd WHIRLPOOL 2736f63121b2a743234ddd972a88562f1e8094c45fc6aec79dbda1c5d2a4c8df776db6f6f997c88afd6155e5fdaffa44859b6ba987a987bb09c36556764b4e5f

diff --git a/app-misc/tek/metadata.xml b/app-misc/tek/metadata.xml
new file mode 100644
index 0000000..674f5ad
--- /dev/null
+++ b/app-misc/tek/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>aidecoe@gentoo.org</email>
+		<name>Amadeusz Żołnowski</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-misc/tek/tek-1.3.0.ebuild b/app-misc/tek/tek-1.3.0.ebuild
new file mode 100644
index 0000000..692a584
--- /dev/null
+++ b/app-misc/tek/tek-1.3.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+WX_GTK_VER=3.0
+
+inherit udev wxwidgets
+
+DESCRIPTION="GUI tool for upgrading the firmware of a Truly Ergonomic Keyboard"
+HOMEPAGE="http://trulyergonomic.com/ https://github.com/m-ou-se/tek"
+SRC_URI="https://github.com/m-ou-se/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="all-rights-reserved GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="mirror"
+
+RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}=[X]
+	virtual/udev"
+DEPEND="${RDEPEND}
+	app-editors/vim-core"
+
+src_prepare() {
+	default
+	setup-wxwidgets
+	sed -r \
+		-e '/LIN_STRIP/d' \
+		-e 's/LIN_CXX/CXX/g' \
+		-e 's/CXX=/CXX\?=/' \
+		-e 's/CXXFLAGS=(.*)/CXXFLAGS:=\1 $(CXXFLAGS)/' \
+		-i "${S}"/Makefile || die
+}
+
+src_install() {
+	newbin tek.lin tek
+	udev_newrules linux-udev-rules 40-tek.rules
+	einstalldocs
+}
+
+pkg_postinst() {
+	udev_reload
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tek/
@ 2016-07-23 17:36 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 4+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2016-07-23 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     4676a34e27a13a8416b1cb4cbbcffedac7b1284d
Author:     Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 23 17:34:47 2016 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Sat Jul 23 17:36:18 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4676a34e

app-misc/tek: Correct license (later versions of GPL are allowed)

Package-Manager: portage-2.3.0

 app-misc/tek/tek-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tek/tek-1.3.0.ebuild b/app-misc/tek/tek-1.3.0.ebuild
index 692a584..4cfeba4 100644
--- a/app-misc/tek/tek-1.3.0.ebuild
+++ b/app-misc/tek/tek-1.3.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="GUI tool for upgrading the firmware of a Truly Ergonomic Keyboard"
 HOMEPAGE="http://trulyergonomic.com/ https://github.com/m-ou-se/tek"
 SRC_URI="https://github.com/m-ou-se/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="all-rights-reserved GPL-3"
+LICENSE="all-rights-reserved GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tek/
@ 2017-03-12 11:19 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 4+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2017-03-12 11:19 UTC (permalink / raw
  To: gentoo-commits

commit:     972f5331e4f4b8b1b3ef3d811ec1014f1d9b7108
Author:     Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 12 11:18:59 2017 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Sun Mar 12 11:19:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972f5331

app-misc/tek: Add missing libusb dependency

Gentoo-Bug: 612332
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 app-misc/tek/tek-1.3.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-misc/tek/tek-1.3.0.ebuild b/app-misc/tek/tek-1.3.0.ebuild
index 2e36719949e..a999ca161f5 100644
--- a/app-misc/tek/tek-1.3.0.ebuild
+++ b/app-misc/tek/tek-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,6 +17,7 @@ IUSE=""
 RESTRICT="mirror"
 
 RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}=[X]
+	virtual/libusb:1
 	virtual/udev"
 DEPEND="${RDEPEND}
 	app-editors/vim-core"


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tek/
@ 2018-03-22 21:33 Amadeusz Piotr Żołnowski
  0 siblings, 0 replies; 4+ messages in thread
From: Amadeusz Piotr Żołnowski @ 2018-03-22 21:33 UTC (permalink / raw
  To: gentoo-commits

commit:     578aaf7bdd69641d019ef2be76ee040d9de09033
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Mar 22 18:24:16 2018 +0000
Commit:     Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
CommitDate: Thu Mar 22 21:32:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578aaf7b

app-misc/tek: use HTTPS

 app-misc/tek/tek-1.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/tek/tek-1.3.0.ebuild b/app-misc/tek/tek-1.3.0.ebuild
index a999ca161f5..69421b1eaec 100644
--- a/app-misc/tek/tek-1.3.0.ebuild
+++ b/app-misc/tek/tek-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ WX_GTK_VER=3.0
 inherit udev wxwidgets
 
 DESCRIPTION="GUI tool for upgrading the firmware of a Truly Ergonomic Keyboard"
-HOMEPAGE="http://trulyergonomic.com/ https://github.com/m-ou-se/tek"
+HOMEPAGE="https://trulyergonomic.com/ https://github.com/m-ou-se/tek"
 SRC_URI="https://github.com/m-ou-se/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="all-rights-reserved GPL-3+"


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

end of thread, other threads:[~2018-03-22 21:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-23 16:19 [gentoo-commits] repo/gentoo:master commit in: app-misc/tek/ Amadeusz Piotr Żołnowski
  -- strict thread matches above, loose matches on Subject: below --
2016-07-23 17:36 Amadeusz Piotr Żołnowski
2017-03-12 11:19 Amadeusz Piotr Żołnowski
2018-03-22 21:33 Amadeusz Piotr Żołnowski

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