* [gentoo-commits] proj/qt:master commit in: net-im/qtwitter/
@ 2012-02-15 18:17 Johannes Huber
0 siblings, 0 replies; 3+ messages in thread
From: Johannes Huber @ 2012-02-15 18:17 UTC (permalink / raw
To: gentoo-commits
commit: 284356815a20eba2544fcd3ad386ec50ae90ed0c
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 18:21:47 2012 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 18:21:47 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=28435681
[net-im/qtwitter] EAPI 4, git-2 eclass.
(Portage version: 2.2.0_alpha86/git/Linux i686, unsigned Manifest commit)
---
| 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
--git a/net-im/qtwitter/qtwitter-9999.ebuild b/net-im/qtwitter/qtwitter-9999.ebuild
index 062b25e..7854387 100644
--- a/net-im/qtwitter/qtwitter-9999.ebuild
+++ b/net-im/qtwitter/qtwitter-9999.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="2"
+EAPI=4
LANGS="nb_NO pt_BR"
LANGSLONG="ca_ES cs_CZ de_DE es_ES fr_FR it_IT ja_JP pl_PL"
-inherit qt4-edge git
+inherit qt4-edge git-2
DESCRIPTION="A Qt-based client for Twitter and Identi.ca"
HOMEPAGE="http://www.qt-apps.org/content/show.php/qTwitter?content=99087"
-EGIT_REPO_URI="git://github.com/ayoy/${PN}.git"
+EGIT_REPO_URI="git://github.com/ayoy/${PN}"
LICENSE="LGPL-2.1"
SLOT="0"
@@ -56,6 +56,6 @@ src_configure() {
}
src_install() {
- emake INSTALL_ROOT="${D}" install || die "emake install failed"
- dodoc README CHANGELOG || die "dodoc failed"
+ emake INSTALL_ROOT="${D}" install
+ dodoc README CHANGELOG
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/qt:master commit in: net-im/qtwitter/
@ 2012-03-16 17:52 Michael Palimaka
0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2012-03-16 17:52 UTC (permalink / raw
To: gentoo-commits
commit: 2be9ffee03dea78d20bd94736cbf1a0d0fe938de
Author: Michael Palimaka <kensington <AT> astralcloak <DOT> net>
AuthorDate: Fri Mar 16 17:51:53 2012 +0000
Commit: Michael Palimaka <kensington <AT> astralcloak <DOT> net>
CommitDate: Fri Mar 16 17:51:53 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=2be9ffee
[net-im/qtwitter] Sync with portage. Add missing deps. Remove rpath fix that has been merged upstream. Cleanup metadata.
(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)
---
| 9 +--------
| 22 +++++++++-------------
2 files changed, 10 insertions(+), 21 deletions(-)
--git a/net-im/qtwitter/metadata.xml b/net-im/qtwitter/metadata.xml
index 7ebe0fc..ab02f99 100644
--- a/net-im/qtwitter/metadata.xml
+++ b/net-im/qtwitter/metadata.xml
@@ -1,12 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>qt</herd>
-<maintainer>
-<email>d@ayoy.net</email>
-<name>Dominik Kapusta</name>
-</maintainer>
-<longdescription lang="en">
-</longdescription>
+ <herd>qt</herd>
</pkgmetadata>
-
--git a/net-im/qtwitter/qtwitter-9999.ebuild b/net-im/qtwitter/qtwitter-9999.ebuild
index 7854387..fac22f2 100644
--- a/net-im/qtwitter/qtwitter-9999.ebuild
+++ b/net-im/qtwitter/qtwitter-9999.ebuild
@@ -9,7 +9,7 @@ LANGSLONG="ca_ES cs_CZ de_DE es_ES fr_FR it_IT ja_JP pl_PL"
inherit qt4-edge git-2
-DESCRIPTION="A Qt-based client for Twitter and Identi.ca"
+DESCRIPTION="A Qt-based microblogging client"
HOMEPAGE="http://www.qt-apps.org/content/show.php/qTwitter?content=99087"
EGIT_REPO_URI="git://github.com/ayoy/${PN}"
@@ -18,13 +18,17 @@ SLOT="0"
KEYWORDS=""
IUSE="debug"
-DEPEND=">=x11-libs/qt-gui-4.5:4
+DEPEND=">=dev-libs/qoauth-1.0
+ x11-libs/libX11
+ >=x11-libs/qt-core-4.5:4
>=x11-libs/qt-dbus-4.5:4
- >=dev-libs/qoauth-1.0"
+ >=x11-libs/qt-gui-4.5:4"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
+DOCS="README CHANGELOG"
+
src_prepare() {
qt4-edge_src_prepare
echo "CONFIG += nostrip" >> "${S}"/${PN}.pro
@@ -43,19 +47,11 @@ src_prepare() {
done
# remove translations and add only the selected ones
- sed -i -e '/^ *LANGS/,/^$/s/^/#/' \
+ sed -e '/^ *LANGS/,/^$/s/^/#/' \
-e "/LANGS =/s/.*/LANGS = ${langs}/" \
- translations/translations.pri || die "sed translations failed"
- # fix insecure runpaths
- sed -i -e '/-Wl,-rpath,\$\${DESTDIR}/d' \
- qtwitter-app/qtwitter-app.pro || die "sed rpath failed"
+ -i translations/translations.pri || die "sed translations failed"
}
src_configure() {
eqmake4 PREFIX="/usr"
}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- dodoc README CHANGELOG
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/qt:master commit in: net-im/qtwitter/
@ 2016-02-09 17:11 Davide Pesavento
0 siblings, 0 replies; 3+ messages in thread
From: Davide Pesavento @ 2016-02-09 17:11 UTC (permalink / raw
To: gentoo-commits
commit: 3eb00fd671eae776ddcdcb9cb88e0813e7a6a0a3
Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 9 16:59:44 2016 +0000
Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Tue Feb 9 16:59:44 2016 +0000
URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=3eb00fd6
net-im/qtwitter: remove unmaintained live ebuild
Upstream also looks dead, last commit in 2012.
| 8 -----
| 57 ------------------------------------
2 files changed, 65 deletions(-)
diff --git a/net-im/qtwitter/metadata.xml b/net-im/qtwitter/metadata.xml
deleted file mode 100644
index 1723768..0000000
--- a/net-im/qtwitter/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>qt@gentoo.org</email>
- <name>Gentoo Qt Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/net-im/qtwitter/qtwitter-9999.ebuild b/net-im/qtwitter/qtwitter-9999.ebuild
deleted file mode 100644
index 15cf6b6..0000000
--- a/net-im/qtwitter/qtwitter-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-LANGS="nb_NO pt_BR"
-LANGSLONG="ca_ES cs_CZ de_DE es_ES fr_FR it_IT ja_JP pl_PL"
-
-inherit qt4-r2 git-2
-
-DESCRIPTION="A Qt-based microblogging client"
-HOMEPAGE="http://www.qt-apps.org/content/show.php/qTwitter?content=99087"
-EGIT_REPO_URI="git://github.com/ayoy/${PN}"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug"
-
-DEPEND=">=dev-libs/qoauth-1.0
- x11-libs/libX11
- >=dev-qt/qtcore-4.5:4
- >=dev-qt/qtdbus-4.5:4
- >=dev-qt/qtgui-4.5:4"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-DOCS="README CHANGELOG"
-
-src_prepare() {
- qt4-r2_src_prepare
- echo "CONFIG += nostrip" >> "${S}"/${PN}.pro
-
- local langs=
- for lingua in $LINGUAS; do
- if has $lingua $LANGS; then
- langs="$langs ${lingua}"
- else
- for a in $LANGSLONG; do
- if [[ $lingua == ${a%_*} ]]; then
- langs="$langs ${a}"
- fi
- done
- fi
- done
-
- # remove translations and add only the selected ones
- sed -e '/^ *LANGS/,/^$/s/^/#/' \
- -e "/LANGS =/s/.*/LANGS = ${langs}/" \
- -i translations/translations.pri || die "sed translations failed"
-}
-
-src_configure() {
- eqmake4 PREFIX="/usr"
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-09 17:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-16 17:52 [gentoo-commits] proj/qt:master commit in: net-im/qtwitter/ Michael Palimaka
-- strict thread matches above, loose matches on Subject: below --
2016-02-09 17:11 Davide Pesavento
2012-02-15 18:17 Johannes Huber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox