From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/keybinder/
Date: Sun, 15 Jan 2017 10:33:04 +0000 (UTC) [thread overview]
Message-ID: <1484476300.185cf7ca058cf361c10292fea6d697ce8564cc25.pacho@gentoo> (raw)
commit: 185cf7ca058cf361c10292fea6d697ce8564cc25
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 15 10:15:10 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 10:31:40 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185cf7ca
dev-libs/keybinder: Drop old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-libs/keybinder/Manifest | 2 -
dev-libs/keybinder/keybinder-0.3.0-r200.ebuild | 69 --------------------------
dev-libs/keybinder/keybinder-0.3.0-r300.ebuild | 41 ---------------
3 files changed, 112 deletions(-)
diff --git a/dev-libs/keybinder/Manifest b/dev-libs/keybinder/Manifest
index 4be7782..54d157e 100644
--- a/dev-libs/keybinder/Manifest
+++ b/dev-libs/keybinder/Manifest
@@ -1,4 +1,2 @@
-DIST keybinder-0.3.0.tar.gz 377765 SHA256 42863ca0174d568a8c02c6fb243fee1681823825e8bcb1718c51611d8e9793bb SHA512 93ed88caa8246286907b9744383487391412b52be534cf085a6090c390bab181dc617721bb9216f29fd8314a40f65e27630d699ac6cb1657e0641a3d472eb22e WHIRLPOOL 5962e6a5cf96aeb7c4fdf920901f3ed461189fa9ce32bff427762a2f99b38fe4239b7129b5f669d46c256a4e7bf1fedf62ee966f05f65547e6921f364d8ff0d2
DIST keybinder-0.3.1.tar.gz 391730 SHA256 879f07130ac64792ddb9fd758e6673119283bda37d75573787ae22af8684a240 SHA512 aec4070b3d3b6c00900c3cb814e4b6a98beea09817eba3c3f7e6d5ce1ff68c091d183583f09b475e3e56bac67c94c1d912ebbe079dcece8195ac0ed9379d5f82 WHIRLPOOL 016bd88c4ddad54c74e7a39b9fca75b3b282b570fa9d25c74713095c22a8d388f3224c87a6c46220ad255b9b2b068790e75efc71055714e540d15917e534517b
-DIST keybinder-3.0-0.3.0.tar.gz 346383 SHA256 982a6a5bc0fe1487862814b368e98211b9ec93fb5df3c9c0a88be526e0d2268e SHA512 6c5509b196fea848cda7e600edba2a59f7f65cbd7147e1d8ad2755aca8bb9b34ec68df1c90a456a7be800f049de0c2a4fc635adb60496a6aa32dea25f23dd86a WHIRLPOOL b378e7f2cc17cbe9bec9212df07e268377aea4979ab491d21092a6915fe219014686dbc188474daa2f21d1d48e016a657ae4d54d5c86407fc956c2c17d0398f0
DIST keybinder-3.0-0.3.1.tar.gz 358650 SHA256 d97d699f31169976e4cda49a8490f69326e652269a2379907a805948d116fd23 SHA512 af65ce02707ed2712c70470c9151bffee87e6d5b3b97218b653d3061b74001a7f3ac59e15b71362e4466e7ac16573bdb6331dc00ebccd906ce08ca8176b6770f WHIRLPOOL 79dc194413ac9725522847dc7130f9550ac7796be037762af618c63b2c41712108646cc5a730c51e1003c9a898ffd7fff4cf7e30adeb78a6acec85e9c6cf2545
diff --git a/dev-libs/keybinder/keybinder-0.3.0-r200.ebuild b/dev-libs/keybinder/keybinder-0.3.0-r200.ebuild
deleted file mode 100644
index 916cf2e..00000000
--- a/dev-libs/keybinder/keybinder-0.3.0-r200.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="python? 2:2.6"
-
-inherit eutils python
-
-DESCRIPTION="A library for registering global keyboard shortcuts"
-HOMEPAGE="https://github.com/engla/keybinder"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 x86"
-IUSE="+introspection lua python"
-
-RDEPEND=">=x11-libs/gtk+-2.20:2
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXrender
- introspection? ( dev-libs/gobject-introspection )
- lua? ( >=dev-lang/lua-5.1 )
- python? (
- >=dev-python/pygobject-2.15.3:2
- >=dev-python/pygtk-2.12
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS="AUTHORS NEWS README"
-
-pkg_setup() {
- if use python; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- >py-compile
-}
-
-src_configure() {
- local myconf
- use lua || myconf='--disable-lua'
-
- econf \
- $(use_enable introspection) \
- $(use_enable python) \
- ${myconf} \
- --with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html"
-}
-
-src_install() {
- default
- prune_libtool_files --all
- dosym /usr/share/doc/${PF}/html/${PN} /usr/share/gtk-doc/html/${PN}
-}
-
-pkg_postinst() {
- use python && python_mod_optimize ${PN}
-}
-
-pkg_postrm() {
- use python && python_mod_cleanup ${PN}
-}
diff --git a/dev-libs/keybinder/keybinder-0.3.0-r300.ebuild b/dev-libs/keybinder/keybinder-0.3.0-r300.ebuild
deleted file mode 100644
index 724c6fa..00000000
--- a/dev-libs/keybinder/keybinder-0.3.0-r300.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit eutils
-
-MY_P=${PN}-3.0-${PV}
-
-DESCRIPTION="A library for registering global keyboard shortcuts"
-HOMEPAGE="https://github.com/engla/keybinder"
-SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="3"
-KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 x86"
-IUSE="+introspection"
-
-RDEPEND="x11-libs/gtk+:3
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXrender
- introspection? ( dev-libs/gobject-introspection )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS="AUTHORS NEWS README"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
- econf \
- $(use_enable introspection) \
- --with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html"
-}
-
-src_install() {
- default
- prune_libtool_files --all
- dosym /usr/share/doc/${PF}/html/${PN}-3.0 /usr/share/gtk-doc/html/${PN}-3.0
-}
next reply other threads:[~2017-01-15 10:33 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-15 10:33 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-28 13:26 [gentoo-commits] repo/gentoo:master commit in: dev-libs/keybinder/ Arthur Zamarin
2024-12-28 10:49 Arthur Zamarin
2024-08-25 15:24 Andreas K. Hüttel
2022-08-28 6:49 WANG Xuerui
2021-07-21 14:49 Yixun Lan
2021-05-15 18:27 Andreas Sturmlechner
2021-04-12 23:33 Sam James
2021-03-05 22:20 Sam James
2021-01-16 19:03 Michał Górny
2020-12-21 17:05 Marek Szuba
2020-06-11 22:08 Mart Raudsepp
2020-02-04 4:50 Michał Górny
2019-12-26 11:05 Michał Górny
2019-12-08 11:11 Michał Górny
2018-05-28 5:27 Michał Górny
2018-05-27 20:56 Mikle Kolyada
2018-05-27 20:56 Mikle Kolyada
2018-04-19 21:08 Mikle Kolyada
2018-04-18 21:04 Sergei Trofimovich
2018-04-18 21:04 Sergei Trofimovich
2018-04-08 17:28 Aaron Bauman
2018-02-14 13:35 Michał Górny
2018-02-14 13:35 Michał Górny
2018-02-14 13:35 Michał Górny
2018-02-14 13:35 Michał Górny
2018-02-14 13:35 Michał Górny
2017-07-12 21:34 Sergei Trofimovich
2017-07-12 21:34 Sergei Trofimovich
2017-01-01 16:05 Jason Zaman
2016-10-18 19:26 Pacho Ramos
2016-10-01 8:45 Pacho Ramos
2016-10-01 8:03 Markus Meier
2016-10-01 8:02 Markus Meier
2016-07-03 19:45 Zac Medico
2015-12-31 16:23 Sven Wegener
2015-12-31 16:23 Sven Wegener
2015-09-20 15:07 Tobias Klausmann
2015-09-16 19:24 Tobias Klausmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1484476300.185cf7ca058cf361c10292fea6d697ce8564cc25.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox