mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
dev-util: fix repoman issues
This commit is contained in:
parent
7dd72e0624
commit
f76eed0a90
94 changed files with 370 additions and 1468 deletions
8
dev-util/AndroidProjectCreator-bin/metadata.xml
Normal file
8
dev-util/AndroidProjectCreator-bin/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
|
|||
11
dev-util/apktool/metadata.xml
Normal file
11
dev-util/apktool/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="sdk">Add Android SDK support</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
8
dev-util/appmon/metadata.xml
Normal file
8
dev-util/appmon/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
DIST AMD-APP-SDK-v2.9-lnx32.tgz 100284370 SHA256 86c0ebfd6a9037385d83d43237d986614f05ba035f50fd8d45e27c0d3c465646 SHA512 c0490223e5d8880bedf076fc6d7518507d59827caa29507cb0962b3ca4670f2a3a1d083019600ce838385d3116574887739f505cfdc01f5077a00ae584854bd0 WHIRLPOOL e6655eeeb47588d999585249f335571e427528d1a25878d6f16e47d37e1b30db5e1a1e13603f934ee20d76e5a3d16445c348169c3b6b6cbb81e5dfd543a43674
|
||||
DIST AMD-APP-SDK-v2.9-lnx64.tgz 149825628 SHA256 6287d3d0700e563f2086188b1b2143a0e988a12c1dc22709b9a23d28b8ae83bb SHA512 b00d92b9e2ead559aa66120697a1dc15ecbc1c880eed99c2a7ed030f6cccce7434245a94aa6149e2ce2dc287cb9443700d7dbc8b3756c7420c0f54cc008065bb WHIRLPOOL b839c042a73251c0b774d1c2f6b968c166f4b74b4828a4f12709220e2c79783833979140127ec98a19b0883d7bf49d031088aeaeeb150855907f18378d5de0a9
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
# Patched ebuild for 2.9 from anyc overlay
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils toolchain-funcs multilib
|
||||
|
||||
MY_PN=AMD-APP-SDK
|
||||
MY_P=${MY_PN}-v${PV}
|
||||
|
||||
DESCRIPTION="AMD Accelerated Parallel Processing (APP) SDK (formerly ATI Stream)"
|
||||
HOMEPAGE="http://developer.amd.com/tools-and-sdks/heterogeneous-computing/amd-accelerated-parallel-processing-app-sdk/"
|
||||
|
||||
SRC_URI="amd64? ( http://developer.amd.com/wordpress/media/files/${MY_P}-lnx64.tgz )
|
||||
x86? ( http://developer.amd.com/wordpress/media/files/${MY_P}-lnx32.tgz )"
|
||||
LICENSE="AMD-APP-SDK"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="examples"
|
||||
|
||||
#check if those deps are valid, especially llvm
|
||||
RDEPEND="
|
||||
app-eselect/eselect-opencl
|
||||
x11-libs/libXext
|
||||
x11-libs/libX11
|
||||
examples? (
|
||||
sys-devel/llvm
|
||||
media-libs/glew
|
||||
media-libs/freeglut
|
||||
)"
|
||||
DEPEND=""
|
||||
|
||||
S=${WORKDIR}
|
||||
|
||||
RESTRICT="bindist mirror fetch"
|
||||
QA_PREBUILT="opt/AMDAPP/lib/*
|
||||
opt/AMDAPP/bin/clinfo
|
||||
opt/AMDAPP/samples/opencl/bin/x86_64/*
|
||||
opt/AMDAPP/samples/opencl/bin/x86/*"
|
||||
|
||||
pkg_nofetch() {
|
||||
einfo "Please download ${A} from ${HOMEPAGE}/downloads"
|
||||
einfo "The archive should then be placed into ${DISTDIR}."
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
if [[ $(tc-arch) == 'x86' ]] ; then
|
||||
bitness=32
|
||||
_arch=x86
|
||||
_narch=x86_64
|
||||
else
|
||||
bitness=64
|
||||
_arch=x86_64
|
||||
_narch=x86
|
||||
fi
|
||||
export bitness
|
||||
export _arch
|
||||
export MY_S=${MY_P}-RC-lnx${bitness}
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
default_src_unpack
|
||||
unpack ./${MY_S}.tgz ./icd-registration.tgz
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
local _ddir=/opt/AMDAPP/
|
||||
cat <<-EOF > 99${PN}
|
||||
PATH=${_ddir}bin
|
||||
LDPATH=${_ddir}lib
|
||||
AMDSTREAMSDKROOT=${_ddir}
|
||||
AMDSTREAMSDKSAMPLEROOT=${_ddir}
|
||||
EOF
|
||||
|
||||
if use examples ; then
|
||||
pushd ${MY_S} &> /dev/null
|
||||
# epatch "${FILESDIR}"/${P}-x11.patch \
|
||||
# "${FILESDIR}"/${P}-parallel-build.patch
|
||||
sed -i make/openclsdkdefs.mk \
|
||||
-e "s/g++/$(tc-getCXX)/" \
|
||||
-e "/C_DEBUG_FLAG/d" || die #CXXFLAGS
|
||||
popd &> /dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
use examples || return
|
||||
#emake -C ${MY_S} # Does it make sense to build it?
|
||||
}
|
||||
|
||||
src_install() {
|
||||
doenvd 99${PN}
|
||||
doins -r etc
|
||||
|
||||
#Install SDK
|
||||
pushd ${MY_S} &> /dev/null
|
||||
insinto /opt/AMDAPP
|
||||
doins -r include
|
||||
|
||||
if use examples ; then
|
||||
rm -rf samples/opencl/bin/${_narch}
|
||||
doins -r samples
|
||||
for i in /opt/AMDAPP/samples/opencl/bin/${_arch}/*; do
|
||||
[[ ${i} == ${i%.*} ]] && fperms 755 "${i}"
|
||||
done
|
||||
fi
|
||||
|
||||
insopts -m755
|
||||
insinto /opt/AMDAPP/bin
|
||||
doins bin/${_arch}/clinfo
|
||||
|
||||
insinto /opt/AMDAPP/
|
||||
rm -rf lib/*/lib{GLEW,glut}.so
|
||||
doins -r lib
|
||||
|
||||
dodir /usr/$(get_libdir)/OpenCL/vendors/
|
||||
dosym /opt/AMDAPP/lib/${_arch}/ /usr/$(get_libdir)/OpenCL/vendors/amdappsdk
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
eselect opencl set --use-old amdappsdk
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
DIST ati-stream-sdk-v2.01-lnx64.tgz 62171129 SHA256 588d2621ff9aae5a3a72a5c5f97c81b792c5969c56b3c9176722dc6a0a56baf2
|
||||
DIST ati-stream-sdk-v2.2-lnx64.tgz 73427109 SHA256 50e77acdb4aa7c8b0e97c49d6806b47ee3d33e22c32f4f432c26de74aeb84b18
|
||||
DIST ati-stream-sdk-v2.3-lnx64.tgz 78659015 SHA256 f92537d1fc306af0bff1441af4669bf2fa668654b12d9fb53a3a872dc8826cad SHA512 eed70230ddbfc4da38998965806d69a279e05e84bee5103510f664eecbdb8d49e2326e5c2361fd593340131f05258e2ec765be10b8c82c31826709f982f3c7ec WHIRLPOOL 778bd29d1e64d56cd0bdb5c98cd811df29d90c055f3177bc3b03900fc7544e8dda2a10fd444ef41d3b91d0fc563eeba7a4629ac1d0898c52bf174b610af80fd9
|
||||
|
|
@ -1,69 +0,0 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
DESCRIPTION="Enable compiling code and loading it on ATI/AMD GPU"
|
||||
HOMEPAGE="http://ati.amd.com/technology/streamcomputing/sdkdwnld.htm"
|
||||
SRC_URI="http://download2-developer.amd.com/amd/Stream20GA/${PN/-bin/}-v${PV}-lnx64.tgz"
|
||||
|
||||
LICENSE="AMD GPL-1 as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="livecd examples doc"
|
||||
RESTRICT="strip fetch"
|
||||
RDEPEND=" !livecd? ( >=x11-drivers/ati-drivers-9.11 ) \
|
||||
examples? ( media-libs/glew )"
|
||||
|
||||
src_install() {
|
||||
local DEST=/opt/ati-stream-sdk
|
||||
insinto ${DEST}
|
||||
|
||||
cd ati-stream-sdk-v${PV}-lnx64 || die
|
||||
|
||||
# Install executables
|
||||
insopts -m0755
|
||||
doins -r bin
|
||||
|
||||
# Install libraries
|
||||
|
||||
doins -r lib
|
||||
|
||||
# There should be something like eselect opencl, to switch
|
||||
# between OpenCL implementations
|
||||
if use amd64; then
|
||||
dosym ${DEST}/lib/x86_64/libOpenCL.so /usr/lib64/
|
||||
dosym ${DEST}/lib/x86/libOpenCL.so /usr/lib32/
|
||||
else
|
||||
dosym ${DEST}/lib/x86/libOpenCL.so /usr/lib/
|
||||
fi
|
||||
|
||||
# Install includes
|
||||
# only selected header; not glew
|
||||
insinto ${DEST}/include
|
||||
insopts -m0644
|
||||
doins include/cal*.h
|
||||
doins -r include/CL
|
||||
doins -r include/GL
|
||||
|
||||
# Install examples & docs
|
||||
if use examples; then
|
||||
insinto ${DEST}
|
||||
doins -r samples
|
||||
fi
|
||||
|
||||
if use doc; then
|
||||
insinto ${DEST}
|
||||
doins -r docs
|
||||
fi
|
||||
|
||||
# install OpenCL installable client driver
|
||||
# What should we do with the absolute symlink?
|
||||
dodir /usr/lib/OpenCL/vendors
|
||||
|
||||
dosym ${DEST}/lib/x86/libatiocl32.so /usr/lib/OpenCL/vendors
|
||||
if use amd64; then
|
||||
dosym ${DEST}/lib/x86_64/libatiocl64.so /usr/lib/OpenCL/vendors
|
||||
fi
|
||||
|
||||
}
|
||||
|
|
@ -1,80 +0,0 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
DESCRIPTION="Enable compiling code and loading it on ATI/AMD GPU"
|
||||
HOMEPAGE="http://ati.amd.com/technology/streamcomputing/sdkdwnld.htm"
|
||||
SRC_URI="http://download2-developer.amd.com/amd/Stream20GA/ati-stream-sdk-v${PV}-lnx64.tgz"
|
||||
|
||||
LICENSE="AMD GPL-1 as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="livecd examples doc"
|
||||
RESTRICT="strip"
|
||||
RDEPEND="!livecd? ( >=x11-drivers/ati-drivers-10.1 )
|
||||
app-eselect/eselect-opencl
|
||||
examples? ( media-libs/glew )"
|
||||
# !x11-drivers/nvidia-drivers"
|
||||
|
||||
src_install() {
|
||||
local DEST=/opt/ati-stream-sdk
|
||||
insinto ${DEST}
|
||||
|
||||
cd ati-stream-sdk-v${PV}-lnx64 || die
|
||||
|
||||
# Install executables
|
||||
insopts -m0755
|
||||
doins -r bin
|
||||
|
||||
# Install libraries
|
||||
|
||||
doins -r lib
|
||||
|
||||
# There should be something like eselect opencl, to switch
|
||||
# between OpenCL implementations
|
||||
if use amd64; then
|
||||
# Managed by eselect opencl
|
||||
# dosym ../..${DEST}/lib/x86_64/libOpenCL.so /usr/lib64/
|
||||
# dosym ../..${DEST}/lib/x86/libOpenCL.so /usr/lib32/
|
||||
dosym ../..${DEST}/lib/x86_64/libatiocl64.so /usr/lib64/
|
||||
dosym ../..${DEST}/lib/x86/libatiocl32.so /usr/lib32/
|
||||
else
|
||||
# Managed by eselect opencl
|
||||
# dosym ../..${DEST}/lib/x86/libOpenCL.so /usr/lib/
|
||||
dosym ../..${DEST}/lib/x86/libatiocl32.so /usr/lib/
|
||||
fi
|
||||
|
||||
# Install includes
|
||||
# only selected header; not glew
|
||||
insinto ${DEST}/include
|
||||
insopts -m0644
|
||||
doins include/cal*.h
|
||||
doins -r include/CL
|
||||
doins -r include/GL
|
||||
|
||||
# Install examples & docs
|
||||
if use examples; then
|
||||
insinto ${DEST}
|
||||
doins -r samples
|
||||
doins -r make
|
||||
fi
|
||||
|
||||
if use doc; then
|
||||
insinto ${DEST}
|
||||
doins -r docs
|
||||
fi
|
||||
|
||||
# install OpenCL installable client driver
|
||||
# What should we do with the absolute symlink?
|
||||
dodir /etc/OpenCL/vendors
|
||||
if use amd64; then
|
||||
echo "libatiocl64.so" > ${D}/etc/OpenCL/vendors/atiocl64.icd
|
||||
fi
|
||||
echo "libatiocl32.so" > ${D}/etc/OpenCL/vendors/atiocl32.icd
|
||||
|
||||
# Create env file
|
||||
echo "ATISTREAMSDKROOT=${DEST}" > 99${PN}
|
||||
doenvd 99${PN}
|
||||
|
||||
}
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
DESCRIPTION="Enable compiling code and loading it on ATI/AMD GPU"
|
||||
HOMEPAGE="http://ati.amd.com/technology/streamcomputing/sdkdwnld.htm"
|
||||
SRC_URI="http://download2-developer.amd.com/amd/Stream20GA/ati-stream-sdk-v${PV}-lnx64.tgz"
|
||||
|
||||
LICENSE="AMD GPL-1 as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="livecd examples doc"
|
||||
RESTRICT="strip"
|
||||
RDEPEND="!livecd? ( >=x11-drivers/ati-drivers-10.11 )
|
||||
app-eselect/eselect-opencl
|
||||
examples? ( media-libs/glew )"
|
||||
|
||||
QA_EXECSTACK="
|
||||
opt/ati-stream-sdk/lib/x86/libatiocl32.so
|
||||
opt/ati-stream-sdk/lib/x86_64/libatiocl64.so
|
||||
"
|
||||
|
||||
src_install() {
|
||||
local DEST=/opt/ati-stream-sdk
|
||||
insinto ${DEST}
|
||||
|
||||
cd ati-stream-sdk-v${PV}-lnx64 || die
|
||||
|
||||
if use amd64; then
|
||||
if use multilib; then
|
||||
dosym ../..${DEST}/lib/x86/libatiocl32.so /usr/lib32/
|
||||
else
|
||||
rm -rf bin/x86 lib/x86
|
||||
fi
|
||||
dosym ../..${DEST}/lib/x86_64/libatiocl64.so /usr/lib64/
|
||||
else
|
||||
dosym ../..${DEST}/lib/x86/libatiocl32.so /usr/lib/
|
||||
rm -rf bin/x86_64 lib/x86_64
|
||||
fi
|
||||
|
||||
# Install executables
|
||||
insopts -m0755
|
||||
doins -r bin
|
||||
# Install libraries
|
||||
doins -r lib
|
||||
|
||||
|
||||
# Install includes
|
||||
# only selected header; not glew
|
||||
insinto ${DEST}/include
|
||||
insopts -m0644
|
||||
doins -r include/*
|
||||
|
||||
# Install examples & docs
|
||||
if use examples; then
|
||||
insinto ${DEST}
|
||||
doins -r samples
|
||||
doins -r make
|
||||
fi
|
||||
|
||||
if use doc; then
|
||||
insinto ${DEST}
|
||||
doins -r docs
|
||||
fi
|
||||
|
||||
# install OpenCL installable client driver
|
||||
# What should we do with the absolute symlink?
|
||||
dodir /etc/OpenCL/vendors
|
||||
if use amd64; then
|
||||
echo "libatiocl64.so" > ${D}/etc/OpenCL/vendors/atiocl64.icd
|
||||
fi
|
||||
echo "libatiocl32.so" > ${D}/etc/OpenCL/vendors/atiocl32.icd
|
||||
|
||||
# Create env file
|
||||
echo "ATISTREAMSDKROOT=${DEST}" > 99${PN}
|
||||
doenvd 99${PN}
|
||||
|
||||
}
|
||||
|
|
@ -1,669 +0,0 @@
|
|||
diff -Naur usr.orig/local/atibrook/platform/brcc/src/amdhlsl/AMDhlsl/ILCodeGen/HeaderFiles/ilregister.hpp usr/local/atibrook/platform/brcc/src/amdhlsl/AMDhlsl/ILCodeGen/HeaderFiles/ilregister.hpp
|
||||
--- usr.orig/local/atibrook/platform/brcc/src/amdhlsl/AMDhlsl/ILCodeGen/HeaderFiles/ilregister.hpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/platform/brcc/src/amdhlsl/AMDhlsl/ILCodeGen/HeaderFiles/ilregister.hpp 2009-04-29 22:11:00.000000000 +0000
|
||||
@@ -89,6 +89,7 @@
|
||||
#ifndef AMD_ILREGISTER_HPP
|
||||
#define AMD_ILREGISTER_HPP
|
||||
|
||||
+#include <cstring>
|
||||
#include "convert.hpp"
|
||||
|
||||
#ifndef IL_BIT
|
||||
diff -Naur usr.orig/local/atibrook/platform/brcc/src/amdhlsl/InterfaceUtils/SourceFiles/calutAMDhlslCompiler.cpp usr/local/atibrook/platform/brcc/src/amdhlsl/InterfaceUtils/SourceFiles/calutAMDhlslCompiler.cpp
|
||||
--- usr.orig/local/atibrook/platform/brcc/src/amdhlsl/InterfaceUtils/SourceFiles/calutAMDhlslCompiler.cpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/platform/brcc/src/amdhlsl/InterfaceUtils/SourceFiles/calutAMDhlslCompiler.cpp 2009-04-29 22:11:00.000000000 +0000
|
||||
@@ -95,6 +95,8 @@
|
||||
#include <assert.h>
|
||||
#include "amuABIMultiBinary.h"
|
||||
#include "hlfrontendapi.hpp"
|
||||
+#include <cstdlib>
|
||||
+#include <cstring>
|
||||
|
||||
static ErrorState amdHLSLerrst;
|
||||
|
||||
diff -Naur usr.orig/local/atibrook/platform/brcc/src/Deprecated/ps2arb_lexer.cpp usr/local/atibrook/platform/brcc/src/Deprecated/ps2arb_lexer.cpp
|
||||
--- usr.orig/local/atibrook/platform/brcc/src/Deprecated/ps2arb_lexer.cpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/platform/brcc/src/Deprecated/ps2arb_lexer.cpp 2009-04-29 22:11:00.000000000 +0000
|
||||
@@ -27,6 +27,7 @@
|
||||
#define YY_FLEX_MINOR_VERSION 5
|
||||
|
||||
#include <stdio.h>
|
||||
+#include <cstring>
|
||||
|
||||
|
||||
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
||||
diff -Naur usr.orig/local/atibrook/platform/brcc/src/HighLevelFE/Parser/lexer.cpp usr/local/atibrook/platform/brcc/src/HighLevelFE/Parser/lexer.cpp
|
||||
--- usr.orig/local/atibrook/platform/brcc/src/HighLevelFE/Parser/lexer.cpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/platform/brcc/src/HighLevelFE/Parser/lexer.cpp 2009-04-29 22:11:00.000000000 +0000
|
||||
@@ -9,6 +9,7 @@
|
||||
#define YY_FLEX_MINOR_VERSION 5
|
||||
|
||||
#include <stdio.h>
|
||||
+#include <cstring>
|
||||
|
||||
|
||||
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
||||
diff -Naur usr.orig/local/atibrook/platform/include/brook/CPU/brtvector.hpp usr/local/atibrook/platform/include/brook/CPU/brtvector.hpp
|
||||
--- usr.orig/local/atibrook/platform/include/brook/CPU/brtvector.hpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/platform/include/brook/CPU/brtvector.hpp 2009-04-29 22:11:00.000000000 +0000
|
||||
@@ -317,7 +317,7 @@
|
||||
template <class T> static typename GetValueOf<T>::type GetAt (const T& in,int i) {
|
||||
return in.getAt(i);
|
||||
}
|
||||
-#define SPECIALGETAT(TYP) template <> static TYP GetAt (const TYP& in,int UNUSED(i)) {return in;}
|
||||
+#define SPECIALGETAT(TYP) template <> TYP GetAt (const TYP& in,int UNUSED(i)) {return in;}
|
||||
|
||||
SPECIALGETAT(int)
|
||||
SPECIALGETAT(unsigned int)
|
||||
diff -Naur usr.orig/local/atibrook/samples/CPP/common/util.cpp usr/local/atibrook/samples/CPP/common/util.cpp
|
||||
--- usr.orig/local/atibrook/samples/CPP/common/util.cpp 2009-03-02 22:47:34.000000000 +0000
|
||||
+++ usr/local/atibrook/samples/CPP/common/util.cpp 2009-04-29 22:12:48.000000000 +0000
|
||||
@@ -2,6 +2,7 @@
|
||||
#include <ctime>
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
+#include <limits.h>
|
||||
|
||||
#include "util.h"
|
||||
|
||||
diff -Naur usr.orig/local/atical/samples/app/compute_matmult/compute_matmult.cpp usr/local/atical/samples/app/compute_matmult/compute_matmult.cpp
|
||||
--- usr.orig/local/atical/samples/app/compute_matmult/compute_matmult.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/compute_matmult/compute_matmult.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -244,7 +244,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/double_matmult/double_matmult.cpp usr/local/atical/samples/app/double_matmult/double_matmult.cpp
|
||||
--- usr.orig/local/atical/samples/app/double_matmult/double_matmult.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/double_matmult/double_matmult.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -393,7 +393,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/hellocal/hellocal.cpp usr/local/atical/samples/app/hellocal/hellocal.cpp
|
||||
--- usr.orig/local/atical/samples/app/hellocal/hellocal.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/hellocal/hellocal.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -100,7 +100,7 @@
|
||||
/**
|
||||
* \brief Main function that shows the basics needed to setup and run a CAL program
|
||||
*/
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
// Validate the available CAL runtime version
|
||||
if(!ValidateCALRuntime())
|
||||
diff -Naur usr.orig/local/atical/samples/app/lds_transpose/lds_transpose.cpp usr/local/atical/samples/app/lds_transpose/lds_transpose.cpp
|
||||
--- usr.orig/local/atical/samples/app/lds_transpose/lds_transpose.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/lds_transpose/lds_transpose.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -282,7 +282,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/matrix_transpose/matrix_transpose.cpp usr/local/atical/samples/app/matrix_transpose/matrix_transpose.cpp
|
||||
--- usr.orig/local/atical/samples/app/matrix_transpose/matrix_transpose.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/matrix_transpose/matrix_transpose.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -330,7 +330,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/memexport_matmult/memexport_matmult.cpp usr/local/atical/samples/app/memexport_matmult/memexport_matmult.cpp
|
||||
--- usr.orig/local/atical/samples/app/memexport_matmult/memexport_matmult.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/memexport_matmult/memexport_matmult.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -255,7 +255,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/memimport_matmult/memimport_matmult.cpp usr/local/atical/samples/app/memimport_matmult/memimport_matmult.cpp
|
||||
--- usr.orig/local/atical/samples/app/memimport_matmult/memimport_matmult.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/memimport_matmult/memimport_matmult.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -253,7 +253,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/NLM_Denoise/nlm_denoise.cpp usr/local/atical/samples/app/NLM_Denoise/nlm_denoise.cpp
|
||||
--- usr.orig/local/atical/samples/app/NLM_Denoise/nlm_denoise.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/NLM_Denoise/nlm_denoise.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -337,7 +337,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/NLM_Denoise_Compute/NLM_Denoise_Compute.cpp usr/local/atical/samples/app/NLM_Denoise_Compute/NLM_Denoise_Compute.cpp
|
||||
--- usr.orig/local/atical/samples/app/NLM_Denoise_Compute/NLM_Denoise_Compute.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/NLM_Denoise_Compute/NLM_Denoise_Compute.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -338,7 +338,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/app/simple_matmult/simple_matmult.cpp usr/local/atical/samples/app/simple_matmult/simple_matmult.cpp
|
||||
--- usr.orig/local/atical/samples/app/simple_matmult/simple_matmult.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/app/simple_matmult/simple_matmult.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -242,7 +242,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/bursting_CS/bursting_CS.cpp usr/local/atical/samples/languages/IL/bursting_CS/bursting_CS.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/bursting_CS/bursting_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/bursting_CS/bursting_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -232,7 +232,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/bursting_IL/bursting_IL.cpp usr/local/atical/samples/languages/IL/bursting_IL/bursting_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/bursting_IL/bursting_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/bursting_IL/bursting_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -234,7 +234,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/comparison_instr_IL/comparison_instr_IL.cpp usr/local/atical/samples/languages/IL/comparison_instr_IL/comparison_instr_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/comparison_instr_IL/comparison_instr_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/comparison_instr_IL/comparison_instr_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -251,7 +251,7 @@
|
||||
|
||||
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/constbuf_IL/constbuf_IL.cpp usr/local/atical/samples/languages/IL/constbuf_IL/constbuf_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/constbuf_IL/constbuf_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/constbuf_IL/constbuf_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -226,7 +226,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/float_instr_IL/float_instr_IL.cpp usr/local/atical/samples/languages/IL/float_instr_IL/float_instr_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/float_instr_IL/float_instr_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/float_instr_IL/float_instr_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -241,7 +241,7 @@
|
||||
|
||||
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
if (!ParseCommandLine(argc, argv, &Info))
|
||||
{
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/gather_IL/gather_IL.cpp usr/local/atical/samples/languages/IL/gather_IL/gather_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/gather_IL/gather_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/gather_IL/gather_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -265,7 +265,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/input_IL/input_IL.cpp usr/local/atical/samples/languages/IL/input_IL/input_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/input_IL/input_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/input_IL/input_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -240,7 +240,7 @@
|
||||
}
|
||||
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/int_instr_IL/int_instr_IL.cpp usr/local/atical/samples/languages/IL/int_instr_IL/int_instr_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/int_instr_IL/int_instr_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/int_instr_IL/int_instr_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -225,7 +225,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/loop_IL/loop_IL.cpp usr/local/atical/samples/languages/IL/loop_IL/loop_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/loop_IL/loop_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/loop_IL/loop_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -212,7 +212,7 @@
|
||||
return 1;
|
||||
}
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/output_IL/output_IL.cpp usr/local/atical/samples/languages/IL/output_IL/output_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/output_IL/output_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/output_IL/output_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -203,7 +203,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/scatter_IL/scatter_IL.cpp usr/local/atical/samples/languages/IL/scatter_IL/scatter_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/scatter_IL/scatter_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/scatter_IL/scatter_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -243,7 +243,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/languages/IL/scratch_buffer_IL/scratch_buffer_IL.cpp usr/local/atical/samples/languages/IL/scratch_buffer_IL/scratch_buffer_IL.cpp
|
||||
--- usr.orig/local/atical/samples/languages/IL/scratch_buffer_IL/scratch_buffer_IL.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/languages/IL/scratch_buffer_IL/scratch_buffer_IL.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -229,7 +229,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/cachespeed/cachespeed.cpp usr/local/atical/samples/runtime/cachespeed/cachespeed.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/cachespeed/cachespeed.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/cachespeed/cachespeed.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -401,7 +401,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/cachespeed_CS/cachespeed_CS.cpp usr/local/atical/samples/runtime/cachespeed_CS/cachespeed_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/cachespeed_CS/cachespeed_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/cachespeed_CS/cachespeed_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -412,7 +412,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/domain/domain.cpp usr/local/atical/samples/runtime/domain/domain.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/domain/domain.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/domain/domain.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -393,7 +393,7 @@
|
||||
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/export_burst_perf/export_burst_perf.cpp usr/local/atical/samples/runtime/export_burst_perf/export_burst_perf.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/export_burst_perf/export_burst_perf.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/export_burst_perf/export_burst_perf.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -414,7 +414,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/exportspeed/exportspeed.cpp usr/local/atical/samples/runtime/exportspeed/exportspeed.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/exportspeed/exportspeed.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/exportspeed/exportspeed.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -389,7 +389,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/exportspeed_CS/exportspeed_CS.cpp usr/local/atical/samples/runtime/exportspeed_CS/exportspeed_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/exportspeed_CS/exportspeed_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/exportspeed_CS/exportspeed_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -371,7 +371,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/importspeed/importspeed.cpp usr/local/atical/samples/runtime/importspeed/importspeed.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/importspeed/importspeed.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/importspeed/importspeed.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -410,7 +410,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/importspeed_CS/importspeed_CS.cpp usr/local/atical/samples/runtime/importspeed_CS/importspeed_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/importspeed_CS/importspeed_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/importspeed_CS/importspeed_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -375,7 +375,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/inputspeed/inputspeed.cpp usr/local/atical/samples/runtime/inputspeed/inputspeed.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/inputspeed/inputspeed.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/inputspeed/inputspeed.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -403,7 +403,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/inputspeed_CS/inputspeed_CS.cpp usr/local/atical/samples/runtime/inputspeed_CS/inputspeed_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/inputspeed_CS/inputspeed_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/inputspeed_CS/inputspeed_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -385,7 +385,7 @@
|
||||
return 0;
|
||||
}
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/ldsread_CS/ldsread_CS.cpp usr/local/atical/samples/runtime/ldsread_CS/ldsread_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/ldsread_CS/ldsread_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/ldsread_CS/ldsread_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -380,7 +380,7 @@
|
||||
|
||||
return 0;
|
||||
}
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/ldswrite_CS/ldswrite_CS.cpp usr/local/atical/samples/runtime/ldswrite_CS/ldswrite_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/ldswrite_CS/ldswrite_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/ldswrite_CS/ldswrite_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -363,7 +363,7 @@
|
||||
return 0;
|
||||
}
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/memtiming/memtiming.cpp usr/local/atical/samples/runtime/memtiming/memtiming.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/memtiming/memtiming.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/memtiming/memtiming.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -302,7 +302,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/nonblocking_map/nonblocking_map.cpp usr/local/atical/samples/runtime/nonblocking_map/nonblocking_map.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/nonblocking_map/nonblocking_map.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/nonblocking_map/nonblocking_map.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -435,7 +435,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv )
|
||||
+main(CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/outputspeed/outputspeed.cpp usr/local/atical/samples/runtime/outputspeed/outputspeed.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/outputspeed/outputspeed.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/outputspeed/outputspeed.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -351,7 +351,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/perf_counters/perf_counters.cpp usr/local/atical/samples/runtime/perf_counters/perf_counters.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/perf_counters/perf_counters.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/perf_counters/perf_counters.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -144,7 +144,7 @@
|
||||
}
|
||||
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/throughput/throughput.cpp usr/local/atical/samples/runtime/throughput/throughput.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/throughput/throughput.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/throughput/throughput.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -398,7 +398,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/runtime/throughput_CS/throughput_CS.cpp usr/local/atical/samples/runtime/throughput_CS/throughput_CS.cpp
|
||||
--- usr.orig/local/atical/samples/runtime/throughput_CS/throughput_CS.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/runtime/throughput_CS/throughput_CS.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -423,7 +423,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main( CALuint argc, CALchar** argv )
|
||||
+main( CALint argc, CALchar** argv )
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/basic/basic.cpp usr/local/atical/samples/tutorial/basic/basic.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/basic/basic.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/basic/basic.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -111,6 +111,8 @@
|
||||
|
||||
#include <assert.h>
|
||||
#include <string>
|
||||
+#include <cstdlib>
|
||||
+#include <cstring>
|
||||
|
||||
static const unsigned int Width = 256;
|
||||
static const unsigned int Height = 256;
|
||||
@@ -309,7 +311,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/CompileProgram/CompileProgram.cpp usr/local/atical/samples/tutorial/CompileProgram/CompileProgram.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/CompileProgram/CompileProgram.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/CompileProgram/CompileProgram.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -284,7 +284,7 @@
|
||||
* \brief Main function
|
||||
*/
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/CreateContext/CreateContext.cpp usr/local/atical/samples/tutorial/CreateContext/CreateContext.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/CreateContext/CreateContext.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/CreateContext/CreateContext.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -157,7 +157,7 @@
|
||||
/**
|
||||
* \brief Main function
|
||||
*/
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/CreateResource/CreateResource.cpp usr/local/atical/samples/tutorial/CreateResource/CreateResource.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/CreateResource/CreateResource.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/CreateResource/CreateResource.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -110,6 +110,7 @@
|
||||
#include "Samples.h"
|
||||
#include <assert.h>
|
||||
#include <string>
|
||||
+#include <cstdlib>
|
||||
|
||||
/**
|
||||
* \param retval Value returned from a function
|
||||
@@ -165,7 +166,7 @@
|
||||
* \brief Main function
|
||||
*/
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/DoublePrecision/DoublePrecision.cpp usr/local/atical/samples/tutorial/DoublePrecision/DoublePrecision.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/DoublePrecision/DoublePrecision.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/DoublePrecision/DoublePrecision.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -110,6 +110,7 @@
|
||||
#include <assert.h>
|
||||
#include <string>
|
||||
#include <cmath>
|
||||
+#include <cstdlib>
|
||||
|
||||
static const CALuint Width = 8;
|
||||
static const CALuint Height = 8;
|
||||
@@ -288,7 +289,7 @@
|
||||
* \brief Main function
|
||||
*/
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/DownloadReadback/DownloadReadback.cpp usr/local/atical/samples/tutorial/DownloadReadback/DownloadReadback.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/DownloadReadback/DownloadReadback.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/DownloadReadback/DownloadReadback.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -243,7 +243,7 @@
|
||||
* \brief Main function
|
||||
*/
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/FindNumDevices/FindNumDevices.cpp usr/local/atical/samples/tutorial/FindNumDevices/FindNumDevices.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/FindNumDevices/FindNumDevices.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/FindNumDevices/FindNumDevices.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -120,7 +120,7 @@
|
||||
* \brief Main function
|
||||
*/
|
||||
|
||||
-int main(CALuint argc, CALchar** argv)
|
||||
+int main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
diff -Naur usr.orig/local/atical/samples/tutorial/OpenCloseDevice/OpenCloseDevice.cpp usr/local/atical/samples/tutorial/OpenCloseDevice/OpenCloseDevice.cpp
|
||||
--- usr.orig/local/atical/samples/tutorial/OpenCloseDevice/OpenCloseDevice.cpp 2009-03-02 21:54:04.000000000 +0000
|
||||
+++ usr/local/atical/samples/tutorial/OpenCloseDevice/OpenCloseDevice.cpp 2009-04-29 22:13:24.000000000 +0000
|
||||
@@ -210,7 +210,7 @@
|
||||
}
|
||||
|
||||
int
|
||||
-main(CALuint argc, CALchar** argv)
|
||||
+main(CALint argc, CALchar** argv)
|
||||
{
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
|
@ -1 +0,0 @@
|
|||
DIST calpp-0.90.tar.gz 94015 SHA256 2c26fa667efd2326cefe475c951cd80055d515959c73203340dbab933aad05c4
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="A library for efficient use of ATI CAL with C++"
|
||||
HOMEPAGE="http://calpp.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-util/ati-app-sdk-bin
|
||||
x11-drivers/ati-drivers"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-libs/boost
|
||||
dev-util/cmake
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
SRC_ECLASS="git-r3"
|
||||
|
|
|
|||
13
dev-util/catalyst/metadata.xml
Normal file
13
dev-util/catalyst/metadata.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="ccache">Add ccache support</flag>
|
||||
<flag name="iso">Add ISO support</flag>
|
||||
<flag name="system-bootloader">Add bootloader support</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
inherit subversion
|
||||
|
||||
|
|
@ -12,12 +12,11 @@ ESVN_REPO_URI="https://svn.code.sf.net/p/collabreate/code/trunk@20"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
#IUSE="+mysql"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="virtual/jdk
|
||||
dev-db/postgresql-server
|
||||
RDEPEND="virtual/jdk:1.8
|
||||
dev-db/postgresql:*
|
||||
dev-java/jdbc-postgresql"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
|
|
|||
8
dev-util/collabreate/metadata.xml
Normal file
8
dev-util/collabreate/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
8
dev-util/dependency-check-bin/metadata.xml
Normal file
8
dev-util/dependency-check-bin/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,12 +1,9 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
EAPI=7
|
||||
|
||||
inherit versionator
|
||||
|
||||
MY_PV=( $(get_version_component_range 1-2) )
|
||||
MY_PV=( $(ver_cut 1-2) )
|
||||
MY_PV_PRE="20150601.060031-26"
|
||||
|
||||
DESCRIPTION="Tools to work with android .dex and java .class files"
|
||||
|
|
@ -14,8 +11,7 @@ HOMEPAGE="https://github.com/pxb1988/dex2jar/releases"
|
|||
SRC_URI="https://github.com/pxb1988/dex2jar/releases/download/${MY_PV}-nightly-26/dex-tools-${MY_PV}-${MY_PV_PRE}.zip"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
||||
|
||||
|
|
@ -34,6 +30,6 @@ src_install() {
|
|||
dodir /opt/"${PN}"
|
||||
cp -R "${S}"/* "${ED}/opt/"${PN}"" || die "Install failed!"
|
||||
for i in *.sh; do
|
||||
dosym /opt/dex2jar/${i} /usr/bin/${i##*/}
|
||||
dosym ${i} /usr/bin/${i##*/}
|
||||
done
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
MY_RND_PN="dex-tools-2.1-SNAPSHOT"
|
||||
|
||||
|
|
@ -11,7 +11,7 @@ SRC_URI="https://github.com/pxb1988/dex2jar/files/1867564/${MY_RND_PN}.zip -> ${
|
|||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
||||
|
|
@ -32,6 +32,6 @@ src_install() {
|
|||
dodir /opt/"${PN}"
|
||||
cp -R "${S}"/* "${ED}/opt/"${PN}"" || die "Install failed!"
|
||||
for i in *.sh; do
|
||||
dosym /opt/dex2jar/${i} /usr/bin/${i##*/}
|
||||
dosym ${i} /usr/bin/${i##*/}
|
||||
done
|
||||
}
|
||||
|
|
|
|||
8
dev-util/dex2jar/metadata.xml
Normal file
8
dev-util/dex2jar/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ EAPI=7
|
|||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PN="dwarf_debugger"
|
||||
|
|
|
|||
8
dev-util/dwarf-debugger/metadata.xml
Normal file
8
dev-util/dwarf-debugger/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
8
dev-util/electron-bin/metadata.xml
Normal file
8
dev-util/electron-bin/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/electron-userland/electron-packager"
|
|||
SRC_URI="https://github.com/electron-userland/electron-packager/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://dev.pentoo.ch/~blshkv/distfiles/electron-packager-14.0.1-node_modules.tar.gz"
|
||||
|
||||
LICENSE=""
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
#broken, "electon-packager version" fails to run
|
||||
#KEYWORDS="~amd64"
|
||||
|
|
|
|||
8
dev-util/electron-packager/metadata.xml
Normal file
8
dev-util/electron-packager/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,65 +0,0 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils eutils git-r3
|
||||
|
||||
DESCRIPTION="Graphical disassembler for a large number of instruction sets"
|
||||
HOMEPAGE="http://www.emilpro.com/"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/SimonKagstrom/emilpro.git"
|
||||
EGIT_COMMIT="0e8a615d463244a9969df3a0b92b2b77d1c61365"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+system-binutils"
|
||||
|
||||
DEPEND="virtual/libelf:0=
|
||||
dev-cpp/gtkmm:3.0
|
||||
dev-cpp/gtksourceviewmm:3.0
|
||||
dev-cpp/libxmlpp:2.6
|
||||
net-misc/curl
|
||||
dev-libs/capstone
|
||||
sys-devel/bison
|
||||
sys-apps/texinfo
|
||||
|
||||
system-binutils? ( >=sys-libs/binutils-libs-2.25.1-r2:=[multitarget] )
|
||||
"
|
||||
|
||||
# dev-cpp/glibmm
|
||||
# dev-cpp/pangomm
|
||||
# dev-cpp/cairomm
|
||||
# dev-libs/libsigc++:2
|
||||
# dev-libs/glib:2
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
if use system-binutils; then
|
||||
epatch "${FILESDIR}"/${PN}-9999-system-binutils.patch
|
||||
epatch "${FILESDIR}"/${PN}-9999-binutils-2.29.1.patch
|
||||
else
|
||||
touch .binutils-downloaded
|
||||
sed -i "s#wget -O binutils.tar.bz2 https://ftp.gnu.org/gnu/binutils/binutils-2.23.2.tar.bz2#cp \"${DISTDIR}/binutils-2.23.2.tar.bz2\" ./binutils.tar.bz2#" cmake/BuildBinutils.cmake
|
||||
fi
|
||||
cmake-utils_src_prepare
|
||||
einfo "sed here ps_get_thread_area (struct ps_prochandle"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use system-binutils; then
|
||||
cmake-utils_src_compile
|
||||
else
|
||||
#bundled binutils is broken, always builds with one thread
|
||||
#but somehow it still fails if I don't do this
|
||||
cd "${BUILD_DIR}"
|
||||
emake -j1
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${BUILD_DIR}"/emilpro
|
||||
}
|
||||
|
|
@ -1,65 +0,0 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils eutils git-r3
|
||||
|
||||
DESCRIPTION="Graphical disassembler for a large number of instruction sets"
|
||||
HOMEPAGE="http://www.emilpro.com/"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/SimonKagstrom/emilpro.git"
|
||||
EGIT_COMMIT="56a09f9f2cb628c6af66234ee4d3a2bf082fd302"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+system-binutils"
|
||||
|
||||
DEPEND="virtual/libelf:0=
|
||||
dev-cpp/gtkmm:3.0
|
||||
dev-cpp/gtksourceviewmm:3.0
|
||||
dev-cpp/libxmlpp:2.6
|
||||
net-misc/curl
|
||||
dev-libs/capstone
|
||||
sys-devel/bison
|
||||
sys-apps/texinfo
|
||||
|
||||
system-binutils? ( >=sys-libs/binutils-libs-2.25.1-r2:=[multitarget] )
|
||||
"
|
||||
|
||||
# dev-cpp/glibmm
|
||||
# dev-cpp/pangomm
|
||||
# dev-cpp/cairomm
|
||||
# dev-libs/libsigc++:2
|
||||
# dev-libs/glib:2
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
if use system-binutils; then
|
||||
epatch "${FILESDIR}"/${PN}-9999-system-binutils.patch
|
||||
epatch "${FILESDIR}"/${PN}-9999-binutils-2.29.1.patch
|
||||
else
|
||||
touch .binutils-downloaded
|
||||
sed -i "s#wget -O binutils.tar.bz2 https://ftp.gnu.org/gnu/binutils/binutils-2.23.2.tar.bz2#cp \"${DISTDIR}/binutils-2.23.2.tar.bz2\" ./binutils.tar.bz2#" cmake/BuildBinutils.cmake
|
||||
fi
|
||||
cmake-utils_src_prepare
|
||||
einfo "sed here ps_get_thread_area (struct ps_prochandle"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use system-binutils; then
|
||||
cmake-utils_src_compile
|
||||
else
|
||||
#bundled binutils is broken, always builds with one thread
|
||||
#but somehow it still fails if I don't do this
|
||||
cd "${BUILD_DIR}"
|
||||
emake -j1
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${BUILD_DIR}"/emilpro
|
||||
}
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
--- src/bfd-disassembly.cc.orig 2017-11-27 07:42:40.000000000 +0800
|
||||
+++ src/bfd-disassembly.cc 2017-11-27 07:45:10.492717240 +0800
|
||||
@@ -5,6 +5,7 @@
|
||||
#include <vector>
|
||||
#include <functional>
|
||||
|
||||
+#include <string.h>
|
||||
#include <bfd.h>
|
||||
#include <dis-asm.h>
|
||||
|
||||
@@ -15,6 +16,95 @@
|
||||
#include <preferences.hh>
|
||||
#include <utils.hh>
|
||||
|
||||
+/* copy binutils 2.29.1 disassemble.h here */
|
||||
+extern "C" int print_insn_aarch64 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_alpha (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_avr (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_bfin (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_big_arm (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_big_mips (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_big_nios2 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_big_powerpc (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_big_score (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_cr16 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_crx (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_d10v (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_d30v (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_dlx (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_epiphany (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_fr30 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_frv (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_ft32 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_h8300 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_h8300h (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_h8300s (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_h8500 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_hppa (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i370 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i386 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i386_att (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i386_intel (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i860 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_i960 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_ia64 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_ip2k (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_iq2000 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_little_nios2 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_riscv (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_little_arm (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_little_mips (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_little_powerpc (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_little_score (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_lm32 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m32r (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m68hc11 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m68hc12 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m9s12x (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m9s12xg (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m68k (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_m88k (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_mcore (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_metag (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_microblaze (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_mmix (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_mn10200 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_mn10300 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_moxie (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_msp430 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_mt (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_nds32 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_ns32k (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_or1k (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_pdp11 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_pj (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_pru (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_rs6000 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_s390 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_sh64 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_spu (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tic30 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tic4x (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tic54x (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tic6x (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tic80 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tilegx (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_tilepro (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_v850 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_vax (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_visium (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_w65 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_wasm32 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_xc16x (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_xgate (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_xstormy16 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_xtensa (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_z80 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_z8001 (bfd_vma, disassemble_info *);
|
||||
+extern "C" int print_insn_z8002 (bfd_vma, disassemble_info *);
|
||||
+
|
||||
+extern disassembler_ftype rl78_get_disassembler (bfd *);
|
||||
+/* end of disassemble.h */
|
||||
+
|
||||
using namespace emilpro;
|
||||
|
||||
class Disassembly : public
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
--- CMakeLists.txt.orig 2017-07-12 07:29:43.000000000 +0800
|
||||
+++ CMakeLists.txt 2017-07-12 07:34:44.000000000 +0800
|
||||
@@ -10,9 +10,6 @@
|
||||
|
||||
set (BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
-# Dependencies
|
||||
-include (${CMAKE_CURRENT_SOURCE_DIR}/cmake/BuildBinutils.cmake)
|
||||
-
|
||||
find_package (LibElf REQUIRED)
|
||||
find_package (LibCapstone)
|
||||
find_package (PkgConfig REQUIRED)
|
||||
@@ -40,10 +37,6 @@
|
||||
pkg_check_modules(LIBCURL REQUIRED libcurl)
|
||||
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wall -D_GLIBCXX_USE_NANOSLEEP -DPACKAGE=emilpro -DPACKAGE_VERSION=1 -pthread")
|
||||
-LINK_DIRECTORIES(
|
||||
- ${CMAKE_BINARY_DIR}/install-binutils/lib ${CMAKE_BINARY_DIR}/install-binutils/lib64
|
||||
- ${CMAKE_BINARY_DIR}/binutils/libiberty
|
||||
- )
|
||||
|
||||
if (HAVE_BFD_MULTIARCH)
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DHAVE_BFD_MULTIARCH")
|
||||
@@ -120,7 +113,6 @@
|
||||
set_property(SOURCE src/emilpro.cc APPEND PROPERTY OBJECT_DEPENDS ${CMAKE_BINARY_DIR}/built_in_instruction_models.hh)
|
||||
|
||||
include_directories(
|
||||
- ${CMAKE_BINARY_DIR}/install-binutils/include/
|
||||
src/gtk/include/
|
||||
src/include/
|
||||
${CMAKE_BINARY_DIR}
|
||||
@@ -143,9 +135,6 @@
|
||||
tools/squash-instruction-models.cc
|
||||
)
|
||||
|
||||
-add_dependencies(emilpro binutils)
|
||||
-add_dependencies(tools/squash-instruction-models binutils)
|
||||
-
|
||||
set (BASE_LIBS
|
||||
${LIBELF_LIBRARIES}
|
||||
opcodes
|
||||
--- src/namemangler.cc.orig 2017-07-12 07:29:43.000000000 +0800
|
||||
+++ src/namemangler.cc 2017-07-12 07:33:50.000000000 +0800
|
||||
@@ -1,7 +1,7 @@
|
||||
#include <namemangler.hh>
|
||||
|
||||
#include <bfd.h>
|
||||
-#include <demangle.h>
|
||||
+#include <libiberty/demangle.h>
|
||||
|
||||
using namespace emilpro;
|
||||
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
DIST AXMLPrinter2.jar 24552 BLAKE2B 3ff09da948c2962919927ad35f8d38a13391c763a83962f8fdce90ec4720430b00be891f68fc149f62180ddf5f5e818af4e6b6a153d1a55e871f181e930d2b7b SHA512 c1168ec913f1fbb0675915d4fd865ec9a8e8573f6c8aedcb6e68166f61f11aeaececc7548d54d78134843c0102c57d6350973f6d3027d0ffdae52a5c57a7f601
|
||||
DIST Ghidra_9.1.1_build.tar.gz 59610720 BLAKE2B aa6eafe5061b8fea3308e687bb5c2f1eb89316cf99174760baea5a729e4d7f3b46607d6f18fa94c485bab3cb6d782c54b85dbed9a8ed6b3889f233f35657662f SHA512 642fbeb7ea00f72a899a0ff9fba1ee8c802b81596e333420d080dca0b985d0a132126a97e0c125128effe050ccc6a7446e018846dd285162bbcdb9051e81bb02
|
||||
DIST Ghidra_9.1.2_build.tar.gz 59623429 BLAKE2B 43fca3f8a10efdecd6c86920920f611c8d90d5a1b4729a17eb3ae5f4ef2fea93798532b05c4213c69c54dc7d2bc3aeebe84f735021fde4aa476e158ca921b792 SHA512 48e200e11b87dc07e8381af3a8b50df509991e49bba0cf73d6494d9f606d2b61850c2ebe051092567da5098b2e298332fb01923325135037e1f2fd097ff2b22d
|
||||
DIST PyDev-6.3.1.zip 24756333 BLAKE2B e9a942e0ff90b9eafbd1fa0df5429f2ff227ed140b7352a1003be04ffbc043e17bf19bd622d7fe9b958286a75ff4897c03088c1627ee62ea7b6e832752cb427e SHA512 411ed78d1057f5e9780e44169935fb8a0da17e97ce26e9a7a9fa9a251d4d3c1118e9b47dd9f7af03bde1f47180bde0d456039b65687f600026a148055311ecfa
|
||||
DIST cdt-8.6.0.zip 76639241 BLAKE2B 32c724b1f6ff43132f09c544bac8b35ed3f4f5866c844810abba3a52f82a3585ae7a57430fcf5603afecbeec1f46461a831339e442ca628b77f78c319bd9fc26 SHA512 2b8bb498146aa29995e807c5b4e9d5dab0f6afe89a5ce256978b7b2c478677a0cb5a0f15913a32bd99cb7b4bb31230521f70b9c26cdef1cb983dfcea599737c0
|
||||
|
|
|
|||
8
dev-util/ghidra/metadata.xml
Normal file
8
dev-util/ghidra/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
8
dev-util/hexd/metadata.xml
Normal file
8
dev-util/hexd/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
8
dev-util/jadx-bin/metadata.xml
Normal file
8
dev-util/jadx-bin/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,6 +1,2 @@
|
|||
DIST jd-gui-1.6.3-dependencies.tar.gz 13518466 BLAKE2B cda9607a79f327376a3137eceb5fd521b497ed3f647a0cc066422cfc93f398cfa906a30bbf99d1995b53a890e4578159e72b3aa5e2d621a40a09a9a5bd2e89bf SHA512 2c2b7556db0e0fa59bdbc3575f45f7268067cffa8570f8a62f371807be8fab675d5c6e1380e7da38ede007c70ae6abb36743d50683e0f282b04d62bd5db9dc59
|
||||
DIST jd-gui-1.6.3.tar.gz 365399 BLAKE2B df6070e85a237eea97f297aaf2df60d84e0836eae3937e626b9647308939a554e77011feb5d8579508f6a3ee0c896afcb58a24114e9daf1bcc60a5c1b412ca86 SHA512 0c45c24290e940a952bf03bb3928cb8828fa28218b3cd7f1a35c7b7bae8468863f9ef32260ba1499a29b931668bc7cf23b94ad1484c1ff90310d383b83801033
|
||||
DIST jd-gui-1.6.5-dependencies.tar.gz 13705621 BLAKE2B c93d98dc222a62c437c95d50896e5af7f578e12c2e0c64a7c115401038ad6a22ce7e08e923e175f6b2429741efffe71fb51b0f2ab6b835f0aba1f7421790db52 SHA512 fdcaf02db4343c4c6dbf393f5136d9ca9370784c7c90b6f9b99a877a5cf603a89e9ed870aba1d75330c03e55d0b9eb502bff7e1601f0ef262616e87fea0b0724
|
||||
DIST jd-gui-1.6.5.tar.gz 365818 BLAKE2B 5ac2f76fed4eb8fb2be6916ab0c6c3d078892e9ca3e5fa161f36882babffaecaa27ce613587e9497d6aa7577e171cfe9c992d157818dff131105e6c6f2e1bafe SHA512 1951c1122b6f33a06732fa35998cd07add041a8859d0d161a1ed0074ddecdb2918223758048a1d8992d0f9a7300cf15424a24c9d54266c3fb53433814ee54242
|
||||
DIST jd-gui-1.6.6.tar.gz 365813 BLAKE2B 8615221af81682a8f6f8143ef6b639842964a402fa6a703379d02aef993960891ed2fc1e49b7ac71ae9f556068c48a8cf75e67cf40ba82853239bd80a7b0720f SHA512 325491638a66ccffa51dd989a1f09711c47da8e356d05141d35368b3a9acdb8e6dfdc2a5f422c91c4c6d5f50d214901c64d8c23e625dfd9278b0555ce1aa9214
|
||||
DIST jd-gui-dependencies-20191226.tar.gz 13715625 BLAKE2B fe557f8a487bbccdec3e70c4247c18fec7c4b55de20317813b503b7dd7db832f8a2af229716ac393cad95b513a0f2c5277e06aee31bc1930b7daad927bd17c01 SHA512 0f8af0e2001fb2f38ac2b5b241e9ff125594132f4849c601b8355b6be7636ee66496d14b67853e0719d4de0c0ca3e55ac5a6cc26c1175f9462636aa8f1dfc50f
|
||||
|
|
|
|||
8
dev-util/jd-gui/metadata.xml
Normal file
8
dev-util/jd-gui/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
8
dev-util/jnitrace/metadata.xml
Normal file
8
dev-util/jnitrace/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
DIST libdisasm-0.16.tgz 37933 SHA256 f80f1082a1bb26d29db83ae66f4309a6f7444f12b8b64fc4bc02f479e275900c
|
||||
DIST lida-03.00.00.tgz 123074 SHA256 3661a4521e758c6b4194ad805efcd37dbf5ab0c0519332796f692dec373a41b5
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
DESCRIPTION="interactive ELF disambler"
|
||||
HOMEPAGE="http://lida.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/$PN/$P.tgz
|
||||
mirror://sourceforge/bastard/libdisasm-0.16.tgz"
|
||||
LICENSE="GPL-1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-perl/perl-tk"
|
||||
|
||||
RESTRICT="strip"
|
||||
|
||||
src_prepare() {
|
||||
sed -i 's|./lida.pl|lida.pl|g' lida || die 'sed failed'
|
||||
sed -i 's|./lida_back|lida_back|g' lida.pl || die 'sed failed'
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cd backend
|
||||
cp ../../libdisasm_src-0.16/src/arch/i386/libdisasm/i386.opcode.map .
|
||||
gcc -I. -ggdb $CFLAGS libdis.c i386_invariant.c i386.c lida_back.c -o\
|
||||
../lida_back || die "compile failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin lida lida_back lida.pl || die "install failed"
|
||||
dodoc README CHANGELOG TODO
|
||||
}
|
||||
|
|
@ -1,3 +1 @@
|
|||
DIST lief-0.10.0.tar.gz 13155479 BLAKE2B 4b94c9bc7ee1e7f2bd621f52580aaeee302f396c865fb60e47e56646ceae7fd530b60ab5000ab31e64bfcb07e604620ccbe89deca80e2c1ef190d53c5569848e SHA512 51fcd21710dd7c603ebd0ebcc596f723906ababa67ee7433a4b2fc35f41965346978cd14126d59611bfc7544e1a7d77a6aeff0f3521981f29e5d3e06f7313f7f
|
||||
DIST lief-0.10.1.tar.gz 13155687 BLAKE2B bb3df4ac9d05430baf401e5e4790af2f623f83a901a00abe14352c65367dc77feb394abf7cdb03d98d0ab9dd3050d134f1e4e6614111e81bc5e4da5ffe71ce3f SHA512 08cc6374fa5026099e4d43cb6bcd6401a8eadb6ea9749f5cde09ce80a555eb5ebc05ef6db8f01085ff20d56ba506fa0ab07e8d5f2e12dea723bebeb0f93410e3
|
||||
DIST lief-0.9.0_p20190626.tar.gz 13133521 BLAKE2B b3bdd46535e894cf4989a52082d0763c2958eaca215fb5a69219f7d12d50a5c2e1f8bf0528ace5b81eeec19b732340959ff974cacbfd9097b59ddceae4a83520 SHA512 ee943b4048994b0969cb9e5a0ebc83e74d26a64752b3b098cd47dd261b01cee11b23b12bb058619aeffbe9673aa63f9a430c55f3ee249f410cca6cdad6a5e21a
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2019 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
DIST memfetch.tgz 12438 SHA256 bf5fd71fa645c19b2ad6cd9b578837dfb8cffcd2d2d6691b2cc43fd87c510e09 SHA512 f8abe55244a1842ee6942a5178e641521fcd0e6cb2a67e871a54b1d505921b35cb4c32ff87c955176e48a0e30edbf3ff6f64bfd9f88956a500de6666420788a3 WHIRLPOOL c063a575d02b623bc7e6fed277e30d4479627eacb558b97569143472e9b6da360cfac819bf3c3dd619ca982edb07532f07061c0608ba48964b1f27ec75c7ec0c
|
||||
DIST memfetch.tgz 12438 BLAKE2B e033bf17b4d16f34a6efdaf5c337ef60fb97c47e193c2002deb18809c4f556bdda80dc324126bc834bed66ea2cd6806cbc56ad8eec7e3a1ce52fed18f9d6890d SHA512 f8abe55244a1842ee6942a5178e641521fcd0e6cb2a67e871a54b1d505921b35cb4c32ff87c955176e48a0e30edbf3ff6f64bfd9f88956a500de6666420788a3
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="A simple utility to dump all memory of a running process"
|
||||
HOMEPAGE="http://lcamtuf.coredump.cx/"
|
||||
|
|
@ -9,10 +9,7 @@ SRC_URI="http://lcamtuf.coredump.cx/soft/${PN}.tgz"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
|
|
|
|||
8
dev-util/memfetch/metadata.xml
Normal file
8
dev-util/memfetch/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
11
dev-util/objection/metadata.xml
Normal file
11
dev-util/objection/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="patchapk">Add support to patch APKs</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -5,4 +5,7 @@
|
|||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="exploit">Add support for generating exploit APKs</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2020 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
|
@ -22,7 +22,6 @@ RDEPEND="${PYTHON_DEPS}
|
|||
dev-python/requests[ssl,${PYTHON_USEDEP}]
|
||||
dev-python/pluginbase[${PYTHON_USEDEP}]
|
||||
dev-python/jinja[${PYTHON_USEDEP}]
|
||||
virtual/python-enum34[${PYTHON_USEDEP}]
|
||||
dev-python/javalang[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
|
|
|
|||
11
dev-util/recaf-bin/metadata.xml
Normal file
11
dev-util/recaf-bin/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="system-openjfx">Add OpenJFX support</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
11
dev-util/redasm/metadata.xml
Normal file
11
dev-util/redasm/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="database">Add REDasm database support</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
inherit cmake-utils git-r3
|
||||
|
||||
|
|
|
|||
11
dev-util/retdec/metadata.xml
Normal file
11
dev-util/retdec/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="system-libs">Use system libraries</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -16,24 +16,26 @@ SLOT="0"
|
|||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND="|| ( app-arch/upx app-arch/upx-bin )
|
||||
MY_RDEPEND="|| ( app-arch/upx app-arch/upx-bin )
|
||||
sys-devel/bc
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
dev-ruby/pkg-config
|
||||
sys-apps/coreutils
|
||||
sys-libs/zlib
|
||||
sys-libs/ncurses:*[tinfo]
|
||||
dev-libs/libdwarf
|
||||
dev-libs/capstone
|
||||
dev-libs/openssl:0
|
||||
dev-libs/openssl:0"
|
||||
|
||||
RDEPEND="${MY_RDEPEND}"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
|
||||
doc? ( media-gfx/graphviz
|
||||
app-doc/doxygen )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake"
|
||||
|
||||
CMAKE_REMOVE_MODULES_LIST="FindJsoncpp FindRapidjson FindTynyxml2 FindLibdwarf FindOpenssl"
|
||||
|
||||
src_prepare(){
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
|
@ -17,10 +17,8 @@ SLOT="0"
|
|||
#KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc system-libs"
|
||||
|
||||
RDEPEND="|| ( app-arch/upx app-arch/upx-bin )
|
||||
MY_RDEPEND="|| ( app-arch/upx app-arch/upx-bin )
|
||||
sys-devel/bc
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
dev-ruby/pkg-config
|
||||
sys-apps/coreutils
|
||||
sys-libs/zlib
|
||||
|
|
@ -33,14 +31,18 @@ RDEPEND="|| ( app-arch/upx app-arch/upx-bin )
|
|||
sys-devel/llvm:*
|
||||
dev-libs/rapidjson
|
||||
dev-libs/tinyxml2
|
||||
)
|
||||
)"
|
||||
|
||||
RDEPEND=${MY_RDEPEND}
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
|
||||
doc? ( media-gfx/graphviz
|
||||
app-doc/doxygen )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake"
|
||||
|
||||
CMAKE_REMOVE_MODULES_LIST="FindJsoncpp FindRapidjson FindTynyxml2 FindLibdwarf FindOpenssl"
|
||||
|
||||
src_prepare(){
|
||||
|
|
|
|||
8
dev-util/soapui/metadata.xml
Normal file
8
dev-util/soapui/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
11
dev-util/sonarscanner-bin/metadata.xml
Normal file
11
dev-util/sonarscanner-bin/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="embedded_jre">Install embedded JRE</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit user eutils
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="SonarQube Command-Line Scanner"
|
||||
HOMEPAGE="https://www.sonarqube.org/"
|
||||
|
|
|
|||
8
dev-util/valabind/metadata.xml
Normal file
8
dev-util/valabind/metadata.xml
Normal file
|
|
@ -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>unknown@pentoo.ch</email>
|
||||
<name>Author Unknown</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
VALA_MIN_API_VERSION=0.32
|
||||
VALA_USE_DEPEND=vapigen
|
||||
|
|
@ -13,8 +13,7 @@ SRC_URI="https://github.com/radare/valabind/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="$(vala_depend)"
|
||||
DEPEND="${RDEPEND}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
VALA_MIN_API_VERSION=0.40
|
||||
VALA_USE_DEPEND=vapigen
|
||||
|
|
@ -13,8 +13,7 @@ SRC_URI="https://github.com/radare/valabind/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="$(vala_depend)"
|
||||
DEPEND="${RDEPEND}
|
||||
|
|
|
|||
2
profiles/default/linux/amd64/17.0/desktop/gnome/parent
Normal file
2
profiles/default/linux/amd64/17.0/desktop/gnome/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/desktop/gnome
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/desktop/gnome/systemd
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/desktop/parent
Normal file
2
profiles/default/linux/amd64/17.0/desktop/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/desktop
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/desktop/plasma/parent
Normal file
2
profiles/default/linux/amd64/17.0/desktop/plasma/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/desktop/plasma
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/desktop/plasma/systemd
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/developer/parent
Normal file
2
profiles/default/linux/amd64/17.0/developer/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/developer
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/hardened/parent
Normal file
2
profiles/default/linux/amd64/17.0/hardened/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/hardened
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/hardened/selinux
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/no-multilib/hardened
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/no-multilib/hardened/selinux
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/no-multilib/parent
Normal file
2
profiles/default/linux/amd64/17.0/no-multilib/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/no-multilib
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/parent
Normal file
2
profiles/default/linux/amd64/17.0/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/selinux/parent
Normal file
2
profiles/default/linux/amd64/17.0/selinux/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/selinux
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/systemd/parent
Normal file
2
profiles/default/linux/amd64/17.0/systemd/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/systemd
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.0/x32/parent
Normal file
2
profiles/default/linux/amd64/17.0/x32/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.0/x32
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/desktop/gnome/parent
Normal file
2
profiles/default/linux/amd64/17.1/desktop/gnome/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/desktop/gnome
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/desktop/gnome/systemd
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/desktop/parent
Normal file
2
profiles/default/linux/amd64/17.1/desktop/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/desktop
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/desktop/plasma/parent
Normal file
2
profiles/default/linux/amd64/17.1/desktop/plasma/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/desktop/plasma
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/desktop/plasma/systemd
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/developer/parent
Normal file
2
profiles/default/linux/amd64/17.1/developer/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/developer
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/hardened/parent
Normal file
2
profiles/default/linux/amd64/17.1/hardened/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/hardened
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/hardened/selinux
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/no-multilib/hardened
|
||||
:override
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/no-multilib/hardened/selinux
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/no-multilib/parent
Normal file
2
profiles/default/linux/amd64/17.1/no-multilib/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/no-multilib
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/parent
Normal file
2
profiles/default/linux/amd64/17.1/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/selinux/parent
Normal file
2
profiles/default/linux/amd64/17.1/selinux/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/selinux
|
||||
:override
|
||||
2
profiles/default/linux/amd64/17.1/systemd/parent
Normal file
2
profiles/default/linux/amd64/17.1/systemd/parent
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
gentoo:default/linux/amd64/17.1/systemd
|
||||
:override
|
||||
1
profiles/override/package.mask/dev-util
Normal file
1
profiles/override/package.mask/dev-util
Normal file
|
|
@ -0,0 +1 @@
|
|||
dev-util/AndroidProjectCreator-bin
|
||||
|
|
@ -8,7 +8,6 @@ dev-util/dependency-check-bin
|
|||
=dev-util/dex2jar-2.1*
|
||||
dev-util/dwarf-debugger
|
||||
=dev-util/electron-packager-14*
|
||||
=dev-util/emilpro-3*
|
||||
=dev-util/frida-tools-7.2*
|
||||
dev-util/ghidra
|
||||
dev-util/jd-gui
|
||||
|
|
@ -34,7 +33,6 @@ dev-util/recaf-bin
|
|||
dev-lang/vala:0.42
|
||||
=dev-libs/vala-common-0.42*
|
||||
~dev-util/android-sdk-update-manager-23
|
||||
~dev-util/calpp-0.90
|
||||
~dev-util/edb-debugger-1.2.0
|
||||
~dev-util/gn-0.1463 amd64
|
||||
dev-util/intel-ocl-sdk
|
||||
|
|
|
|||
|
|
@ -2,8 +2,5 @@
|
|||
sys-devel/gcc lto pgo
|
||||
sys-devel/llvm clang
|
||||
|
||||
#needed for emilpro and general awesomeness
|
||||
sys-devel/binutils multitarget
|
||||
|
||||
# required by net-analyzer/tcpreplay-4.0.4
|
||||
sys-devel/autogen libopts
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
sys-libs/binutils-libs multitarget
|
||||
sys-libs/libunwind -static-libs
|
||||
sys-libs/ncurses threads tinfo unicode
|
||||
sys-libs/talloc python
|
||||
|
|
|
|||
|
|
@ -1,20 +1,50 @@
|
|||
amd64 pentoo/hardened/linux/amd64 stable
|
||||
amd64 pentoo/hardened/linux/amd64/binary stable
|
||||
amd64 pentoo/hardened/linux/amd64/bleeding_edge dev
|
||||
amd64 default/linux/amd64/17.0 stable
|
||||
amd64 default/linux/amd64/17.0/desktop stable
|
||||
amd64 default/linux/amd64/17.0/desktop/gnome stable
|
||||
amd64 default/linux/amd64/17.0/desktop/gnome/systemd stable
|
||||
amd64 default/linux/amd64/17.0/desktop/plasma stable
|
||||
amd64 default/linux/amd64/17.0/desktop/plasma/systemd stable
|
||||
amd64 default/linux/amd64/17.0/developer stable
|
||||
amd64 default/linux/amd64/17.0/hardened stable
|
||||
amd64 default/linux/amd64/17.0/hardened/selinux stable
|
||||
amd64 default/linux/amd64/17.0/no-multilib stable
|
||||
amd64 default/linux/amd64/17.0/no-multilib/hardened stable
|
||||
amd64 default/linux/amd64/17.0/no-multilib/hardened/selinux stable
|
||||
amd64 default/linux/amd64/17.0/selinux stable
|
||||
amd64 default/linux/amd64/17.0/systemd stable
|
||||
amd64 default/linux/amd64/17.0/x32 dev
|
||||
amd64 default/linux/amd64/17.1 stable
|
||||
amd64 default/linux/amd64/17.1/desktop stable
|
||||
amd64 default/linux/amd64/17.1/desktop/gnome stable
|
||||
amd64 default/linux/amd64/17.1/desktop/gnome/systemd stable
|
||||
amd64 default/linux/amd64/17.1/desktop/plasma stable
|
||||
amd64 default/linux/amd64/17.1/desktop/plasma/systemd stable
|
||||
amd64 default/linux/amd64/17.1/developer stable
|
||||
amd64 default/linux/amd64/17.1/hardened stable
|
||||
amd64 default/linux/amd64/17.1/hardened/selinux stable
|
||||
amd64 default/linux/amd64/17.1/no-multilib stable
|
||||
amd64 default/linux/amd64/17.1/no-multilib/hardened stable
|
||||
amd64 default/linux/amd64/17.1/no-multilib/hardened/selinux stable
|
||||
amd64 default/linux/amd64/17.1/selinux stable
|
||||
amd64 default/linux/amd64/17.1/systemd stable
|
||||
|
||||
x86 pentoo/default/linux/x86 stable
|
||||
x86 pentoo/default/linux/x86/binary dev
|
||||
x86 pentoo/default/linux/x86/bleeding_edge dev
|
||||
x86 pentoo/hardened/linux/x86 stable
|
||||
x86 pentoo/hardened/linux/x86/binary stable
|
||||
x86 pentoo/hardened/linux/x86/bleeding_edge dev
|
||||
amd64 pentoo/hardened/linux/amd64 stable
|
||||
amd64 pentoo/hardened/linux/amd64/binary stable
|
||||
amd64 pentoo/hardened/linux/amd64/bleeding_edge dev
|
||||
|
||||
arm pentoo/default/linux/arm/armv7a stable
|
||||
arm pentoo/default/linux/arm/armv7a/bleeding_edge dev
|
||||
#arm pentoo/hardened/linux/arm/armv7a stable
|
||||
#arm pentoo/hardened/linux/arm/armv7a/bleeding_edge dev
|
||||
arm pentoo/default/linux/arm/armv6j stable
|
||||
arm pentoo/default/linux/arm/armv6j/bleeding_edge dev
|
||||
x86 pentoo/default/linux/x86 stable
|
||||
x86 pentoo/default/linux/x86/binary dev
|
||||
x86 pentoo/default/linux/x86/bleeding_edge dev
|
||||
x86 pentoo/hardened/linux/x86 stable
|
||||
x86 pentoo/hardened/linux/x86/binary stable
|
||||
x86 pentoo/hardened/linux/x86/bleeding_edge dev
|
||||
|
||||
#arm pentoo/hardened/linux/uclibc/arm dev
|
||||
#arm pentoo/hardened/linux/uclibc/arm/bleeding_edge dev
|
||||
arm pentoo/default/linux/arm/armv7a stable
|
||||
arm pentoo/default/linux/arm/armv7a/bleeding_edge dev
|
||||
#arm pentoo/hardened/linux/arm/armv7a stable
|
||||
#arm pentoo/hardened/linux/arm/armv7a/bleeding_edge dev
|
||||
arm pentoo/default/linux/arm/armv6j stable
|
||||
arm pentoo/default/linux/arm/armv6j/bleeding_edge dev
|
||||
|
||||
#arm pentoo/hardened/linux/uclibc/arm dev
|
||||
#arm pentoo/hardened/linux/uclibc/arm/bleeding_edge dev
|
||||
|
|
|
|||
Loading…
Reference in a new issue