* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 10+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: e459ae1677652986d24941915585b05feb756b7c
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Feb 8 12:02:02 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 12:02:02 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e459ae16
added proper quotes for variables, use fperms in favor of chmod
---
sys-apps/likwid/likwid-3.0.ebuild | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.0.ebuild b/sys-apps/likwid/likwid-3.0.ebuild
index 62605a7..dd49a87 100644
--- a/sys-apps/likwid/likwid-3.0.ebuild
+++ b/sys-apps/likwid/likwid-3.0.ebuild
@@ -13,14 +13,14 @@ SRC_URI="http://likwid.googlecode.com/files/${P}.0.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="access-daemon"
+IUSE="+access-daemon"
src_prepare() {
if use access-daemon ; then
epatch "${FILESDIR}/use_access_daemon.patch"
fi
epatch "${FILESDIR}/likwid.patch"
- sed -i -e "s:/usr/local:$D/usr:" config.mk || die "Couldn't set prefix!"
+ sed -i -e "s:/usr/local:${D}/usr:" config.mk || die "Couldn't set prefix!"
}
src_compile() {
@@ -31,6 +31,6 @@ src_compile() {
pkg_preinst()
{
if use access-daemon ; then
- chmod +s "${D}/usr/bin/likwid-accessD" || die "Couldn't set SUID for access daemon"
+ fperms 4755 /usr/bin/likwid-accessD
fi
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2014-02-21 16:19 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2014-02-21 16:19 UTC (permalink / raw
To: gentoo-commits
commit: c46c19c9f0377514d75038b2b50f9ad9600f7160
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Wed Feb 19 01:14:31 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 01:14:31 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c46c19c9
merged sed commands into one
---
sys-apps/likwid/likwid-3.1.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.1.1.ebuild b/sys-apps/likwid/likwid-3.1.1.ebuild
index d9876b2..9406a26 100644
--- a/sys-apps/likwid/likwid-3.1.1.ebuild
+++ b/sys-apps/likwid/likwid-3.1.1.ebuild
@@ -18,8 +18,7 @@ IUSE=""
src_prepare() {
epatch "${FILESDIR}/${P}-paths.patch"
epatch "${FILESDIR}/${P}-shared_lib.patch"
- sed -i -e "s:PREFIX_MARKER:${EPREFIX}/usr/bin:" config.mk || die "Couldn't replace daemon dir!"
- sed -i -e "s:/usr/local:${ED}/usr:" config.mk || die "Couldn't set prefix!"
+ sed -i -e "s:PREFIX_MARKER:${EPREFIX}/usr/bin:" -e "s:/usr/local:${ED}/usr:" config.mk || die "Couldn't set directories!"
}
src_compile() {
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2014-02-21 16:19 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2014-02-21 16:19 UTC (permalink / raw
To: gentoo-commits
commit: e14d78acaf9ee4eda81840ac2e02cd228bc699f3
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Wed Feb 19 00:29:04 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 00:29:04 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e14d78ac
now using correct prefix for install prefix
---
sys-apps/likwid/likwid-3.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/likwid/likwid-3.1.1.ebuild b/sys-apps/likwid/likwid-3.1.1.ebuild
index 54f18ca..b23bb71 100644
--- a/sys-apps/likwid/likwid-3.1.1.ebuild
+++ b/sys-apps/likwid/likwid-3.1.1.ebuild
@@ -18,7 +18,7 @@ IUSE=""
src_prepare() {
epatch "${FILESDIR}/${P}-paths.patch"
epatch "${FILESDIR}/${P}-shared_lib.patch"
- sed -i -e "s:/usr/local:${D}/usr:" config.mk || die "Couldn't set prefix!"
+ sed -i -e "s:/usr/local:${ED}/usr:" config.mk || die "Couldn't set prefix!"
}
src_compile() {
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2014-02-21 16:19 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2014-02-21 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 8070e9d0f441118054f5abadecc8c621db15e27d
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Wed Feb 19 00:28:22 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 00:28:22 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8070e9d0
fixed download link
---
sys-apps/likwid/likwid-3.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/likwid/likwid-3.1.1.ebuild b/sys-apps/likwid/likwid-3.1.1.ebuild
index e6c6a5e..54f18ca 100644
--- a/sys-apps/likwid/likwid-3.1.1.ebuild
+++ b/sys-apps/likwid/likwid-3.1.1.ebuild
@@ -8,7 +8,7 @@ inherit eutils
DESCRIPTION="Command line tools for developing high performance multi threaded programs"
HOMEPAGE="http://code.google.com/p/likwid/"
-SRC_URI="http://likwid.googlecode.com/files/${P}.tar.gz"
+SRC_URI="http://gentryx.de/~gentryx/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-3"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2014-02-21 16:19 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2014-02-21 16:19 UTC (permalink / raw
To: gentoo-commits
commit: f6472d25769f6b490624ce9b39a1df3d4092f8b3
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Wed Feb 19 00:01:41 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 00:01:41 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f6472d25
dropped superfluous patch and related use flag from likwid 3.1.1
---
sys-apps/likwid/likwid-3.1.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.1.1.ebuild b/sys-apps/likwid/likwid-3.1.1.ebuild
index dd1f0b0..e6c6a5e 100644
--- a/sys-apps/likwid/likwid-3.1.1.ebuild
+++ b/sys-apps/likwid/likwid-3.1.1.ebuild
@@ -13,12 +13,11 @@ SRC_URI="http://likwid.googlecode.com/files/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64"
-IUSE="uncore"
+IUSE=""
src_prepare() {
epatch "${FILESDIR}/${P}-paths.patch"
epatch "${FILESDIR}/${P}-shared_lib.patch"
- use uncore && epatch "${FILESDIR}/use_uncore.patch"
sed -i -e "s:/usr/local:${D}/usr:" config.mk || die "Couldn't set prefix!"
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2014-02-21 16:19 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2014-02-21 16:19 UTC (permalink / raw
To: gentoo-commits
commit: ea40ec9aa393fc38ca5788c1c0f31177b0113ef6
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Wed Feb 19 00:00:26 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 19 00:00:26 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ea40ec9a
renamed patch to include version number
---
sys-apps/likwid/likwid-3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/likwid/likwid-3.0.ebuild b/sys-apps/likwid/likwid-3.0.ebuild
index e991e56..82fde9a 100644
--- a/sys-apps/likwid/likwid-3.0.ebuild
+++ b/sys-apps/likwid/likwid-3.0.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64"
IUSE="+access-daemon uncore"
src_prepare() {
- epatch "${FILESDIR}/likwid.patch"
+ epatch "${FILESDIR}/${P}-paths.patch"
use access-daemon && epatch "${FILESDIR}/use_access_daemon.patch"
use uncore && epatch "${FILESDIR}/use_uncore.patch"
sed -i -e "s:/usr/local:${D}/usr:" config.mk || die "Couldn't set prefix!"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 10+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: 28b6f349ce869de70008302b5fdfdf0c1d88c41e
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Sun Feb 10 11:44:18 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Feb 10 11:44:18 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=28b6f349
moved fperms to correct ebuild phase
---
sys-apps/likwid/likwid-3.0.ebuild | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.0.ebuild b/sys-apps/likwid/likwid-3.0.ebuild
index 33ace71..543f589 100644
--- a/sys-apps/likwid/likwid-3.0.ebuild
+++ b/sys-apps/likwid/likwid-3.0.ebuild
@@ -26,6 +26,7 @@ src_compile() {
emake likwid-bench
}
-pkg_preinst() {
+src_install() {
+ default
use access-daemon && fperms 4755 /usr/bin/likwid-accessD
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 10+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: b8d33cc01aa9e3e5f8db6093fbf47157ccce0d34
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Feb 8 11:10:19 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 11:10:19 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b8d33cc0
added missing metadata.xml
---
sys-apps/likwid/metadata.xml | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/sys-apps/likwid/metadata.xml b/sys-apps/likwid/metadata.xml
new file mode 100644
index 0000000..1a4a8e3
--- /dev/null
+++ b/sys-apps/likwid/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>cluster</herd>
+ <longdescription>
+ Likwid stands for Like I knew what I am doing. This project contributes easy to use command line tools for Linux to support programmers in developing high performance multi threaded programs.
+ </longdescription>
+ <use>
+ <flag name="access-daemon">Build access-daemon for secure access to /dev/cpu/*/msr.</flag>
+ </use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 10+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: 08b0c78a03a9580241ef6971e56d92f83ab638cd
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Feb 8 11:09:41 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 11:09:41 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=08b0c78a
using new EAPI and skipping superfluous die
---
sys-apps/likwid/likwid-3.0.ebuild | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.0.ebuild b/sys-apps/likwid/likwid-3.0.ebuild
index ed57d15..62605a7 100644
--- a/sys-apps/likwid/likwid-3.0.ebuild
+++ b/sys-apps/likwid/likwid-3.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
inherit eutils
@@ -24,8 +24,8 @@ src_prepare() {
}
src_compile() {
- emake || die "emake failed"
- emake likwid-bench || die "emake likwid-bench failed"
+ emake
+ emake likwid-bench
}
pkg_preinst()
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 10+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: 3ed5eed4570f80c9de91fa0523d8ecf8df8ce72f
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Feb 8 11:04:06 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 11:04:06 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3ed5eed4
adapted coding style to appease repoman
---
sys-apps/likwid/likwid-3.0.ebuild | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/sys-apps/likwid/likwid-3.0.ebuild b/sys-apps/likwid/likwid-3.0.ebuild
index f7fad81..ed57d15 100644
--- a/sys-apps/likwid/likwid-3.0.ebuild
+++ b/sys-apps/likwid/likwid-3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2013-2013 Andreas Schäfer
+# Copyright 2013-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -6,7 +6,7 @@ EAPI=4
inherit eutils
-DESCRIPTION="Likwid stands for Like I knew what I am doing. This project contributes easy to use command line tools for Linux to support programmers in developing high performance multi threaded programs."
+DESCRIPTION="Command line tools for developing high performance multi threaded programs"
HOMEPAGE="http://code.google.com/p/likwid/"
SRC_URI="http://likwid.googlecode.com/files/${P}.0.tar.gz"
@@ -16,21 +16,21 @@ KEYWORDS="~amd64"
IUSE="access-daemon"
src_prepare() {
- if use access-daemon ; then
- epatch "${FILESDIR}/use_access_daemon.patch"
- fi
- epatch "${FILESDIR}/likwid.patch"
- sed -i -e "s:/usr/local:$D/usr:" config.mk || die "Couldn't set prefix!"
+ if use access-daemon ; then
+ epatch "${FILESDIR}/use_access_daemon.patch"
+ fi
+ epatch "${FILESDIR}/likwid.patch"
+ sed -i -e "s:/usr/local:$D/usr:" config.mk || die "Couldn't set prefix!"
}
src_compile() {
- emake || die "emake failed"
- emake likwid-bench || die "emake likwid-bench failed"
- }
+ emake || die "emake failed"
+ emake likwid-bench || die "emake likwid-bench failed"
+}
pkg_preinst()
{
- if use access-daemon ; then
- chmod +s $D/usr/bin/likwid-accessD || die "Couldn't set SUID for access daemon"
- fi
+ if use access-daemon ; then
+ chmod +s "${D}/usr/bin/likwid-accessD" || die "Couldn't set SUID for access daemon"
+ fi
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-02-21 16:26 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-10 14:39 [gentoo-commits] proj/sci:master commit in: sys-apps/likwid/ Alexey Shvetsov
-- strict thread matches above, loose matches on Subject: below --
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2014-02-21 16:19 Justin Lecher
2013-02-10 14:39 Alexey Shvetsov
2013-02-10 14:39 Alexey Shvetsov
2013-02-10 14:39 Alexey Shvetsov
2013-02-10 14:39 Alexey Shvetsov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox