mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-16 17:36:59 +02:00
2345.0.1
This commit is contained in:
parent
443783c7fd
commit
cf01c1a799
@ -1,2 +0,0 @@
|
||||
DIST expat-2.2.6.tar.bz2 513322 BLAKE2B 386736da1f2204fa8f15ee4d1b3d11f01ed691efe6951b9f24f2bd30ab5494e75da6a97ceb1ffe4a0a8ecdc80f96f51d21c54f35a2cbc352a9fe9425545bf15b SHA512 dbfb635a5fe7b190722664263a0dd437b512fdf519bc53bd4905567f4bfb4b1e89a021562da63df8cacd48b706d1dea60ccde47f279e57400ad3c846b6e9c4e6
|
||||
DIST expat-2.2.7.tar.xz 424264 BLAKE2B acf2fa5cf374a671603f4a12b81239ba3b1634bab66d736e87fb516ce52d599711b3014218bef822640781b8852c7238b6f071b5bd439a13838fcbc7767d06a7 SHA512 bf3af5b5a8e1a1b76658a41f67dbe7b10104e3b724e1882f529fecc509b07c75dde02d8f8b89b1522e05484e8dc417d47651c5f8d4aac1749676ba5c4752c107
|
@ -1,97 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
AUTOTOOLS_AUTO_DEPEND=no
|
||||
inherit autotools eutils libtool multilib toolchain-funcs multilib-minimal
|
||||
|
||||
DESCRIPTION="Stream-oriented XML parser library"
|
||||
HOMEPAGE="https://libexpat.github.io/"
|
||||
SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/expat-${PV}.tar.bz2"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
||||
IUSE="elibc_FreeBSD examples static-libs unicode"
|
||||
DEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
|
||||
RDEPEND=""
|
||||
|
||||
DOCS=( README.md )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# fix interpreter to be a recent/good shell
|
||||
sed -i -e "1s:/bin/sh:${BASH}:" conftools/get-version.sh || die
|
||||
if use unicode; then
|
||||
cp -R "${S}" "${S}"w || die
|
||||
pushd "${S}"w >/dev/null
|
||||
find -name Makefile.am \
|
||||
-exec sed \
|
||||
-e 's,libexpat\.la,libexpatw.la,' \
|
||||
-e 's,libexpat_la,libexpatw_la,' \
|
||||
-i {} + || die
|
||||
eautoreconf
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf="$(use_enable static-libs static) --without-docbook"
|
||||
|
||||
mkdir -p "${BUILD_DIR}"w || die
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
CPPFLAGS="${CPPFLAGS} -DXML_UNICODE" ECONF_SOURCE="${S}"w econf ${myconf}
|
||||
popd >/dev/null
|
||||
fi
|
||||
|
||||
ECONF_SOURCE="${S}" econf ${myconf}
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
emake
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
emake -C lib
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
emake -C lib install DESTDIR="${D}"
|
||||
popd >/dev/null
|
||||
|
||||
pushd "${ED}"/usr/$(get_libdir)/pkgconfig >/dev/null
|
||||
cp expat.pc expatw.pc
|
||||
sed -i -e '/^Libs/s:-lexpat:&w:' expatw.pc || die
|
||||
popd >/dev/null
|
||||
fi
|
||||
|
||||
if multilib_is_native_abi ; then
|
||||
# libgeom in /lib and ifconfig in /sbin require libexpat on FreeBSD since
|
||||
# we stripped the libbsdxml copy starting from freebsd-lib-8.2-r1
|
||||
use elibc_FreeBSD && gen_usr_ldscript -a expat
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
|
||||
# Note: Use of HTML_DOCS would add unwanted "doc" subfolder
|
||||
docinto html
|
||||
dodoc doc/*.{css,html,png}
|
||||
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/${PF}/examples
|
||||
doins examples/*.c
|
||||
fi
|
||||
|
||||
prune_libtool_files
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
AUTOTOOLS_AUTO_DEPEND=no
|
||||
inherit autotools eutils libtool multilib toolchain-funcs multilib-minimal
|
||||
|
||||
DESCRIPTION="Stream-oriented XML parser library"
|
||||
HOMEPAGE="https://libexpat.github.io/"
|
||||
SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/expat-${PV}.tar.xz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
||||
IUSE="elibc_FreeBSD examples static-libs unicode"
|
||||
BDEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
|
||||
|
||||
DOCS=( README.md )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# fix interpreter to be a recent/good shell
|
||||
sed -i -e "1s:/bin/sh:${BASH}:" conftools/get-version.sh || die
|
||||
if use unicode; then
|
||||
cp -R "${S}" "${S}"w || die
|
||||
pushd "${S}"w >/dev/null
|
||||
find -name Makefile.am \
|
||||
-exec sed \
|
||||
-e 's,libexpat\.la,libexpatw.la,' \
|
||||
-e 's,libexpat_la,libexpatw_la,' \
|
||||
-i {} + || die
|
||||
eautoreconf
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf="$(use_enable static-libs static) --without-docbook"
|
||||
|
||||
mkdir -p "${BUILD_DIR}"w || die
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
CPPFLAGS="${CPPFLAGS} -DXML_UNICODE" ECONF_SOURCE="${S}"w econf ${myconf}
|
||||
popd >/dev/null
|
||||
fi
|
||||
|
||||
ECONF_SOURCE="${S}" econf ${myconf}
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
emake
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
emake -C lib
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
|
||||
if use unicode; then
|
||||
pushd "${BUILD_DIR}"w >/dev/null
|
||||
emake -C lib install DESTDIR="${D}"
|
||||
popd >/dev/null
|
||||
|
||||
pushd "${ED}"/usr/$(get_libdir)/pkgconfig >/dev/null
|
||||
cp expat.pc expatw.pc
|
||||
sed -i -e '/^Libs/s:-lexpat:&w:' expatw.pc || die
|
||||
popd >/dev/null
|
||||
fi
|
||||
|
||||
if multilib_is_native_abi ; then
|
||||
# libgeom in /lib and ifconfig in /sbin require libexpat on FreeBSD since
|
||||
# we stripped the libbsdxml copy starting from freebsd-lib-8.2-r1
|
||||
use elibc_FreeBSD && gen_usr_ldscript -a expat
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
|
||||
# Note: Use of HTML_DOCS would add unwanted "doc" subfolder
|
||||
docinto html
|
||||
dodoc doc/*.{css,html,png}
|
||||
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/${PF}/examples
|
||||
doins examples/*.c
|
||||
fi
|
||||
|
||||
find "${D}" -name '*.la' -type f -delete || die
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>freedesktop-bugs@gentoo.org</email>
|
||||
<name>Gentoo Freedesktop Project</name>
|
||||
</maintainer>
|
||||
<maintainer type="person">
|
||||
<email>sping@gentoo.org</email>
|
||||
<name>Sebastian Pipping</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="cpe">cpe:/a:libexpat:expat</remote-id>
|
||||
<remote-id type="sourceforge">expat</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
1
sdk_container/src/third_party/portage-stable/dev-util/cmocka/Manifest
vendored
Normal file
1
sdk_container/src/third_party/portage-stable/dev-util/cmocka/Manifest
vendored
Normal file
@ -0,0 +1 @@
|
||||
DIST cmocka-1.1.5.tar.xz 81004 BLAKE2B 5625dc293ad481c654848f3de806ef88d1b651192c2461e52b54bf9d443b5e2ea5d2a685ab85b044685f57e5723ade6c4c17e38624f59c4eab240cb4feeaab1e SHA512 cad7f04757183d004f6eaad39036fc0e24c5e0e987f80e85bc43bc66dba22389cb02b08e25531cc28a541d0a24a86b29be134a2d6fc339128e87d66952f502bd
|
44
sdk_container/src/third_party/portage-stable/dev-util/cmocka/cmocka-1.1.5.ebuild
vendored
Normal file
44
sdk_container/src/third_party/portage-stable/dev-util/cmocka/cmocka-1.1.5.ebuild
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake-multilib
|
||||
|
||||
DESCRIPTION="Unit testing framework for C"
|
||||
HOMEPAGE="https://cmocka.org/"
|
||||
SRC_URI="https://cmocka.org/files/1.1/${P}.tar.xz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc examples static-libs test"
|
||||
|
||||
BDEPEND="
|
||||
doc? ( app-doc/doxygen[dot] )
|
||||
"
|
||||
|
||||
multilib_src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_EXAMPLES=$(usex examples)
|
||||
-DWITH_STATIC_LIB=$(usex static-libs)
|
||||
-DUNIT_TESTING=$(usex test)
|
||||
$(multilib_is_native_abi && cmake-utils_use_find_package doc Doxygen \
|
||||
|| echo -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON)
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
cmake-utils_src_compile
|
||||
multilib_is_native_abi && use doc && cmake-utils_src_compile docs
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
if multilib_is_native_abi && use doc; then
|
||||
local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
|
||||
fi
|
||||
|
||||
cmake-utils_src_install
|
||||
}
|
8
sdk_container/src/third_party/portage-stable/dev-util/cmocka/metadata.xml
vendored
Normal file
8
sdk_container/src/third_party/portage-stable/dev-util/cmocka/metadata.xml
vendored
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="project">
|
||||
<email>kde@gentoo.org</email>
|
||||
<name>Gentoo KDE Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/cmocka-1.1.5
vendored
Normal file
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-util/cmocka-1.1.5
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
BDEPEND=doc? ( app-doc/doxygen[dot] ) dev-util/ninja >=dev-util/cmake-3.9.6
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Unit testing framework for C
|
||||
EAPI=7
|
||||
HOMEPAGE=https://cmocka.org/
|
||||
IUSE=doc examples static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64
|
||||
KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=Apache-2.0
|
||||
SLOT=0
|
||||
SRC_URI=https://cmocka.org/files/1.1/cmocka-1.1.5.tar.xz
|
||||
_eclasses_=cmake-multilib 9400794da450ca9e38faef6eefbb3957 cmake-utils 959a7fda0dce63de9a4e73a22294d6ec eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build 0d0c25170069d06d0eb233154229af97 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 8c7f9d80beedd16f2e5a7f612c609529 xdg-utils 14d00d009167652b1fa363e55effe213
|
||||
_md5_=32fed162351364ee7c23f0db2a3d5018
|
@ -1,2 +0,0 @@
|
||||
DIST rpcsvc-proto-1.3.1.tar.gz 59174 BLAKE2B d50d958cfad79142d686ae6312cdaa6044f1322bc794dbc95c1b78d088396c5adda292c83d150f3502df859c23d4e370894283ae210e5fe9aa1d0e8ed05553d0 SHA512 d687665ed51fd6fd66ab638813c5020f0c8b8491625b91937ac4b5ee4dd2357eae8e2909394e7651494e7aea77a6279ae907ba6354682ba446de7088b55f54ea
|
||||
DIST rpcsvc-proto-1.4.tar.gz 59127 BLAKE2B 484c04d6a0f86d37c0057693771b7fe502166504fc419bce4dd182f76e349cf226307814a2c51b27fa0bc09e270b883cb40ae821f8bd7d7e0c9a120c4962ae34 SHA512 a29d7761ec9cca4d7d7aa6943a243771a6c7f35d303f01af84f390c8395dc5e543fad7ea28fec1be2f6ee8f2853bf22a157ad3b020057040685b6cbce9b09415
|
@ -1,31 +0,0 @@
|
||||
From ce0ed4f45918f9230db435ee3b733090fa4f9620 Mon Sep 17 00:00:00 2001
|
||||
From: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Tue, 27 Mar 2018 12:08:30 +0200
|
||||
Subject: [PATCH] Remove historic _RPC_THREAD_SAFE_ preprocessor conditional
|
||||
|
||||
When the code was imported from glibc, the -D_RPC_THREAD_SAFE_
|
||||
build flag was missed.
|
||||
---
|
||||
rpcgen/rpc_main.c | 9 ---------
|
||||
1 file changed, 9 deletions(-)
|
||||
|
||||
diff --git a/rpcgen/rpc_main.c b/rpcgen/rpc_main.c
|
||||
index 94bd818..1b26e52 100644
|
||||
--- a/rpcgen/rpc_main.c
|
||||
+++ b/rpcgen/rpc_main.c
|
||||
@@ -1346,15 +1346,6 @@ parseargs (int argc, const char *argv[], struct commandline *cmd)
|
||||
cmd->Scflag = flag['C'];
|
||||
cmd->makefileflag = flag['M'];
|
||||
|
||||
-#ifndef _RPC_THREAD_SAFE_
|
||||
- if (mtflag || newstyle)
|
||||
- {
|
||||
- /* glibc doesn't support these flags. */
|
||||
- f_print (stderr,
|
||||
- _("This implementation doesn't support newstyle or MT-safe code!\n"));
|
||||
- return (0);
|
||||
- }
|
||||
-#endif
|
||||
if (tirpcflag)
|
||||
{
|
||||
pmflag = inetdflag ? 0 : 1; /* pmflag or inetdflag is always TRUE */
|
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>toolchain@gentoo.org</email>
|
||||
<name>Gentoo Toolchain Project</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>base-system@gentoo.org</email>
|
||||
<name>Gentoo Base System Project</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,17 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="rpcsvc protocol definitions from glibc"
|
||||
HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto"
|
||||
|
||||
# Fake version to help portage upgrading.
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="LGPL-2.1+ BSD"
|
||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="elibc_glibc? ( sys-libs/glibc[rpc(-)] )"
|
||||
RDEPEND="${DEPEND}"
|
@ -1,30 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="rpcsvc protocol definitions from glibc"
|
||||
HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto"
|
||||
SRC_URI="https://github.com/thkukuk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="LGPL-2.1+ BSD"
|
||||
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="!<sys-libs/glibc-2.26"
|
||||
|
||||
src_prepare(){
|
||||
default
|
||||
eapply "${FILESDIR}"/${P}-old-preprocessor.patch #650852
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_install(){
|
||||
default
|
||||
|
||||
# provided by sys-fs/quota[rpc]
|
||||
rm "${ED%/}"/usr/include/rpcsvc/rquota.{x,h} || die
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="rpcsvc protocol definitions from glibc"
|
||||
HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto"
|
||||
SRC_URI="https://github.com/thkukuk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="LGPL-2.1+ BSD"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="!<sys-libs/glibc-2.26"
|
||||
|
||||
src_prepare(){
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_install(){
|
||||
default
|
||||
|
||||
# provided by sys-fs/quota[rpc]
|
||||
rm "${ED%/}"/usr/include/rpcsvc/rquota.{x,h} || die
|
||||
}
|
@ -1,197 +0,0 @@
|
||||
# ChangeLog for sys-libs/talloc
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*talloc-2.1.3 (09 Aug 2015)
|
||||
*talloc-2.1.2 (09 Aug 2015)
|
||||
*talloc-2.1.0-r1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
|
||||
+talloc-2.1.0-r1.ebuild, +talloc-2.1.2.ebuild, +talloc-2.1.3.ebuild:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
*talloc-2.1.4 (17 Oct 2015)
|
||||
|
||||
17 Oct 2015; Lars Wendler <polynomial-c@gentoo.org> +talloc-2.1.4.ebuild:
|
||||
Bump to version 2.1.4
|
||||
|
||||
Package-Manager: portage-2.2.23
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
17 Oct 2015; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.1.2.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.23
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
28 Oct 2015; Justin Lecher <jlec@gentoo.org> talloc-2.1.0-r1.ebuild,
|
||||
talloc-2.1.3.ebuild, talloc-2.1.4.ebuild:
|
||||
Fix for prefix
|
||||
|
||||
Package-Manager: portage-2.2.23
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
*talloc-2.1.5 (23 Nov 2015)
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> +talloc-2.1.5.ebuild:
|
||||
Bump to version 2.1.5
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.1.3.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
amd64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="amd64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
x86 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="x86"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
29 Dec 2015; Victor Ostorga <vostorga@gentoo.org> talloc-2.1.5.ebuild:
|
||||
Restricting tests, they have been broken for a long time. Bug 566700
|
||||
|
||||
Package-Manager: portage-2.2.24
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
ppc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
ppc64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Markus Meier <maekke@gentoo.org> talloc-2.1.5.ebuild:
|
||||
arm stable, bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="arm"
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
ia64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ia64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
alpha stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="alpha"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
09 Jan 2016; Agostino Sarubbo <ago@gentoo.org> talloc-2.1.5.ebuild:
|
||||
sparc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="sparc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
12 Jan 2016; Jeroen Roovers <jer@gentoo.org> talloc-2.1.5.ebuild:
|
||||
Stable for HPPA (bug #568432).
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --ignore-arches
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
*talloc-2.1.5-r1 (14 Feb 2016)
|
||||
|
||||
14 Feb 2016; Victor Ostorga <vostorga@gentoo.org> +talloc-2.1.5-r1.ebuild:
|
||||
Restricting distcc, bug #554790
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
|
||||
14 Feb 2016; David Seifert <soap@gentoo.org> talloc-2.1.5-r1.ebuild:
|
||||
Add python-single-r1_pkg_setup() to pkg_setup()
|
||||
|
||||
Gentoo-Bug: 574670
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
|
||||
*talloc-2.1.6 (08 Mar 2016)
|
||||
|
||||
08 Mar 2016; Lars Wendler <polynomial-c@gentoo.org> +talloc-2.1.6.ebuild:
|
||||
Bump to version 2.1.6
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
08 Mar 2016; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.1.0-r1.ebuild,
|
||||
-talloc-2.1.4.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
@ -1,318 +0,0 @@
|
||||
# ChangeLog for sys-libs/talloc
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v 1.81 2015/08/07 07:31:04 polynomial-c Exp $
|
||||
|
||||
*talloc-2.1.3 (07 Aug 2015)
|
||||
|
||||
07 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.1.1.ebuild,
|
||||
+talloc-2.1.3.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
05 May 2015; Patrick Lauer <patrick@gentoo.org> talloc-2.1.0-r1.ebuild,
|
||||
talloc-2.1.1.ebuild, talloc-2.1.2.ebuild:
|
||||
Adjust license #548254
|
||||
|
||||
08 Apr 2015; Michał Górny <mgorny@gentoo.org> talloc-2.1.0-r1.ebuild,
|
||||
talloc-2.1.1.ebuild, talloc-2.1.2.ebuild:
|
||||
Drop old Python implementations
|
||||
|
||||
*talloc-2.1.2 (12 Mar 2015)
|
||||
|
||||
12 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.0.8.ebuild,
|
||||
-talloc-2.0.8-r1.ebuild, -talloc-2.1.0.ebuild, +talloc-2.1.2.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
11 Oct 2014; Markus Meier <maekke@gentoo.org> talloc-2.1.0-r1.ebuild:
|
||||
arm stable, bug #512012
|
||||
|
||||
11 Oct 2014; Markus Meier <maekke@gentoo.org> talloc-2.0.8-r1.ebuild:
|
||||
arm stable, bug #512012
|
||||
|
||||
15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for sparc, wrt bug #512012
|
||||
|
||||
25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for alpha, wrt bug #512012
|
||||
|
||||
23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for ia64, wrt bug #512012
|
||||
|
||||
21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for ppc64, wrt bug #512012
|
||||
|
||||
07 Aug 2014; Jeroen Roovers <jer@gentoo.org> talloc-2.1.0-r1.ebuild:
|
||||
Stable for HPPA (bug #512012).
|
||||
|
||||
28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for ppc, wrt bug #512012
|
||||
|
||||
23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for x86, wrt bug #512012
|
||||
|
||||
22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.1.0-r1.ebuild:
|
||||
Stable for amd64, wrt bug #512912
|
||||
|
||||
10 Jun 2014; Mike Frysinger <vapier@gentoo.org> talloc-2.0.8-r1.ebuild,
|
||||
talloc-2.0.8.ebuild, talloc-2.1.0-r1.ebuild, talloc-2.1.0.ebuild,
|
||||
talloc-2.1.1.ebuild:
|
||||
Add arm64/m68k love.
|
||||
|
||||
*talloc-2.1.1 (23 May 2014)
|
||||
|
||||
23 May 2014; Lars Wendler <polynomial-c@gentoo.org> +talloc-2.1.1.ebuild:
|
||||
Version bump.
|
||||
|
||||
*talloc-2.1.0-r1 (14 May 2014)
|
||||
|
||||
14 May 2014; Michał Górny <mgorny@gentoo.org> +talloc-2.1.0-r1.ebuild:
|
||||
Enable multilib support, bug #491222. Clean up Python deps.
|
||||
|
||||
11 Mar 2014; Patrick Lauer <patrick@gentoo.org> talloc-2.1.0.ebuild:
|
||||
Add gettext dep #503820
|
||||
|
||||
02 Feb 2014; Victor Ostorga <vostorga@gentoo.org> talloc-2.1.0.ebuild:
|
||||
Reverting commit on talloc-2.1.0 , because emul-linux-x86-baselibs still
|
||||
provides talloc. Check bug #491222 for multilib patch
|
||||
|
||||
01 Feb 2014; Victor Ostorga <vostorga@gentoo.org> talloc-2.1.0.ebuild:
|
||||
Adding multilib support, bug #491222 , patch thanks to Kenneth Graunke
|
||||
<kenneth@whitecape.org>
|
||||
|
||||
11 Dec 2013; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
|
||||
talloc-2.0.8.ebuild, talloc-2.1.0.ebuild:
|
||||
Add python use flag to IUSE defaults - completely fix bug 489472. Non-
|
||||
maintainer commit acknowledged by Patrick (bonsaikitten).
|
||||
|
||||
*talloc-2.1.0 (13 Sep 2013)
|
||||
|
||||
13 Sep 2013; Lars Wendler <polynomial-c@gentoo.org> -talloc-2.0.7.ebuild,
|
||||
+talloc-2.1.0.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for sparc, wrt bug #466710
|
||||
|
||||
05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for ppc64, wrt bug #466710
|
||||
|
||||
05 Sep 2013; Mike Frysinger <vapier@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Mark s390/sh stable #466710.
|
||||
|
||||
01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for alpha, wrt bug #466710
|
||||
|
||||
29 Aug 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for ia64, wrt bug #466710
|
||||
|
||||
26 Aug 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for ppc, wrt bug #466710
|
||||
|
||||
25 Aug 2013; Markus Meier <maekke@gentoo.org> talloc-2.0.8.ebuild,
|
||||
talloc-2.0.8-r1.ebuild:
|
||||
stabilize correct version for bug #478260
|
||||
|
||||
25 Aug 2013; Markus Meier <maekke@gentoo.org> talloc-2.0.8-r1.ebuild:
|
||||
arm stable, bug #478260
|
||||
|
||||
24 Aug 2013; Jeroen Roovers <jer@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for HPPA (bug #466710).
|
||||
|
||||
07 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> metadata.xml:
|
||||
Removed unused local USE flag description.
|
||||
|
||||
07 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> -talloc-1.3.0.ebuild,
|
||||
-talloc-1.3.1.ebuild, -talloc-2.0.0.ebuild, -talloc-2.0.0-r1.ebuild,
|
||||
-talloc-2.0.1.ebuild, -talloc-2.0.1-r1.ebuild, -talloc-2.0.1-r2.ebuild,
|
||||
-talloc-2.0.5.ebuild, -files/talloc-2.0.0-without-doc.patch,
|
||||
-files/talloc-2.0.1-respect-ldflags.patch:
|
||||
Removed old versions.
|
||||
|
||||
*talloc-2.0.8-r1 (30 Jun 2013)
|
||||
|
||||
30 Jun 2013; Justin Lecher <jlec@gentoo.org> +talloc-2.0.8-r1.ebuild,
|
||||
metadata.xml:
|
||||
Bump to new python eclass
|
||||
|
||||
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for x86, wrt bug #466710
|
||||
|
||||
23 Apr 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Stable for amd64, wrt bug #466710
|
||||
|
||||
06 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for sh, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for sparc, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for s390, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for ia64, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for alpha, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for arm, wrt bug #458712
|
||||
|
||||
25 Feb 2013; Zac Medico <zmedico@gentoo.org> talloc-2.0.8.ebuild:
|
||||
Add ~arm-linux keyword.
|
||||
|
||||
*talloc-2.0.8 (05 Dec 2012)
|
||||
|
||||
05 Dec 2012; Patrick Lauer <patrick@gentoo.org> +talloc-2.0.8.ebuild:
|
||||
Bump
|
||||
|
||||
29 Nov 2012; Jeroen Roovers <jer@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for HPPA (bug #432754).
|
||||
|
||||
25 Nov 2012; Anthony G. Basile <blueness@gentoo.org> talloc-2.0.7.ebuild:
|
||||
stable ppc ppc64, bug #444686
|
||||
|
||||
06 Jul 2012; Jeff Horelick <jdhore@gentoo.org> talloc-2.0.7.ebuild:
|
||||
marked x86 per bug 417113
|
||||
|
||||
12 May 2012; Alexis Ballier <aballier@gentoo.org> talloc-2.0.7.ebuild:
|
||||
keyword ~amd64-fbsd
|
||||
|
||||
07 Mar 2012; Patrick Lauer <patrick@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Restrict py3 #354587
|
||||
|
||||
07 Mar 2012; Patrick Lauer <patrick@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Restrict py3 #354587
|
||||
|
||||
25 Feb 2012; Agostino Sarubbo <ago@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Stable for amd64, wrt bug #405617
|
||||
|
||||
*talloc-2.0.1-r2 (18 Dec 2011)
|
||||
|
||||
18 Dec 2011; Mike Gilbert <floppym@gentoo.org> +talloc-2.0.1-r2.ebuild:
|
||||
Install missing SONAME symlink. Resolves bug 394787.
|
||||
|
||||
18 Oct 2011; VÃctor Ostorga <vostorga@gentoo.org> talloc-2.0.7.ebuild:
|
||||
Adding block on <sys-libs/talloc-2.0.5 to DEPEND, bug 387509
|
||||
|
||||
*talloc-2.0.7 (27 Sep 2011)
|
||||
|
||||
27 Sep 2011; VÃctor Ostorga <vostorga@gentoo.org> +talloc-2.0.7.ebuild:
|
||||
Version bump to 2.0.7
|
||||
|
||||
27 Aug 2011; Fabian Groffen <grobian@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Fix install_names on Darwin, working around tremendously broken
|
||||
waf-buildsystem, bug #374455, keyworded ~x64-macos
|
||||
|
||||
17 Aug 2011; ChÃ-Thanh Christopher Nguyá»
n <chithanh@gentoo.org>
|
||||
talloc-2.0.5.ebuild:
|
||||
keyword ~sparc-solaris
|
||||
|
||||
07 Jul 2011; Alexis Ballier <aballier@gentoo.org> talloc-2.0.5.ebuild:
|
||||
keyword ~x86-fbsd
|
||||
|
||||
02 Jun 2011; VÃctor Ostorga <vostorga@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Adding dependency dev-lang/python[threads] bug 363071
|
||||
|
||||
16 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Stop unnecessarily forcing Python 2.6.
|
||||
|
||||
15 Mar 2011; VÃctor Ostorga <vostorga@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Fixing collision with /usr/lib/libtalloc.so.2 bug #351608 setting python
|
||||
2.6 as runtime python bug #354587 #357269
|
||||
|
||||
01 Mar 2011; Jonathan Callen <abcd@gentoo.org> talloc-2.0.5.ebuild:
|
||||
Add ~amd64-linux/~x86-linux keywords
|
||||
|
||||
*talloc-2.0.5 (13 Jan 2011)
|
||||
|
||||
13 Jan 2011; Tomáš Chvátal <scarabeus@gentoo.org> +talloc-2.0.5.ebuild:
|
||||
Add new talloc version. NOTE: doc xsl file is fetched from net rather than
|
||||
using the system one, this needs to be fixed.
|
||||
|
||||
27 Sep 2010; Mart Raudsepp <leio@gentoo.org> talloc-2.0.1-r1.ebuild:
|
||||
Marked ~mips for bug #285952
|
||||
|
||||
12 Aug 2010; Joseph Jezak <josejx@gentoo.org> talloc-2.0.1-r1.ebuild:
|
||||
Marked ppc/ppc64 stable for bug #300158.
|
||||
|
||||
17 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org>
|
||||
talloc-2.0.1-r1.ebuild, +files/talloc-2.0.1-respect-ldflags.patch:
|
||||
Respect LDFLAGS. Fixes bug 323497. Thanks Andreis Vinogradovs
|
||||
<spamslepnoga@inbox.ru> for report.
|
||||
|
||||
05 Jun 2010; Raúl Porcel <armin76@gentoo.org> talloc-2.0.1-r1.ebuild:
|
||||
alpha/arm/ia64/s390/sh/sparc stable wrt #300158
|
||||
|
||||
19 May 2010; Jeroen Roovers <jer@gentoo.org> talloc-2.0.1-r1.ebuild:
|
||||
Stable for HPPA (bug #300158).
|
||||
|
||||
18 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
|
||||
talloc-2.0.1-r1.ebuild:
|
||||
x86 stable wrt bug #300158
|
||||
|
||||
03 May 2010; Olivier Crête <tester@gentoo.org> ChangeLog:
|
||||
amd64 stable, bug #300158
|
||||
|
||||
*talloc-2.0.1-r1 (03 Apr 2010)
|
||||
|
||||
03 Apr 2010; Tiziano Müller <dev-zero@gentoo.org>
|
||||
+talloc-2.0.1-r1.ebuild, metadata.xml:
|
||||
Fixed: unnecessary inherit, swig dependency, documentation install,
|
||||
static-libs building.
|
||||
|
||||
*talloc-2.0.1 (26 Jan 2010)
|
||||
|
||||
26 Jan 2010; Patrick Lauer <patrick@gentoo.org> +talloc-2.0.1.ebuild:
|
||||
Bump
|
||||
|
||||
06 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
|
||||
talloc-2.0.0-r1.ebuild:
|
||||
Block older samba (to force uninstall).
|
||||
|
||||
30 Nov 2009; Raúl Porcel <armin76@gentoo.org> talloc-2.0.0-r1.ebuild:
|
||||
Add ~arm/~ia64/~s390/~sh/~sparc wrt #285952
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
talloc-2.0.0-r1.ebuild:
|
||||
Keyworded on alpha, bug #285952
|
||||
|
||||
08 Nov 2009; Joseph Jezak <josejx@gentoo.org> talloc-2.0.0-r1.ebuild:
|
||||
Marked ~ppc for bug #285952.
|
||||
|
||||
04 Nov 2009; Patrick Lauer <patrick@gentoo.org> talloc-1.3.0.ebuild,
|
||||
talloc-1.3.1.ebuild, talloc-2.0.0.ebuild, talloc-2.0.0-r1.ebuild:
|
||||
Small dep fix
|
||||
|
||||
23 Oct 2009; Patrick Lauer <patrick@gentoo.org> talloc-1.3.0.ebuild,
|
||||
talloc-1.3.1.ebuild:
|
||||
Fixing 1.3 ebuilds too
|
||||
|
||||
*talloc-2.0.0-r1 (23 Oct 2009)
|
||||
|
||||
23 Oct 2009; Patrick Lauer <patrick@gentoo.org> +talloc-2.0.0-r1.ebuild,
|
||||
+files/talloc-2.0.0-without-doc.patch:
|
||||
Ebuild cleanups thanks to pva, bug #288536, making docs optional #290193,
|
||||
thanks to Andrew Church for the patch
|
||||
|
||||
11 Oct 2009; Petteri Räty <betelgeuse@gentoo.org> talloc-2.0.0.ebuild:
|
||||
Block <net-fs/samba-libs-3.4 for bug #288545.
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> talloc-1.3.0.ebuild,
|
||||
talloc-1.3.1.ebuild, talloc-2.0.0.ebuild:
|
||||
Improve description
|
||||
|
||||
*talloc-2.0.0 (09 Oct 2009)
|
||||
*talloc-1.3.1 (09 Oct 2009)
|
||||
*talloc-1.3.0 (09 Oct 2009)
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> +talloc-1.3.0.ebuild,
|
||||
+talloc-1.3.1.ebuild, +talloc-2.0.0.ebuild, +metadata.xml:
|
||||
Initial commit. Ebuilds based on those provided by Marcel Greter in
|
||||
#231273
|
@ -1,8 +0,0 @@
|
||||
DIST talloc-2.1.5.tar.gz 436193 SHA256 3833e750cf0b8c3439186cba38800cba9e26adfbce10ee98ba709c24eb1cdddd SHA512 b938d67fcf4c6618f1149b4ec665957a604e3b07ee26e96ed36d94312db8f56b50498f69f9a07782f7f10a25047604e32b0d1786e1051d5f36b696c2755f8741 WHIRLPOOL 4cbdd527fb1adfe09052b93b38227f6e01f8aa86920aa093b7aa9a0ca63ad03f1ddcc148c996c487c55b1ba6e681b185d1df0311ed388ef9a8e6ab35c4b111ab
|
||||
DIST talloc-2.1.6.tar.gz 436983 SHA256 3b8e1a50bacb359d99942e0dd9941cef779ae4b5eb20f138873bd8270cb1d47b SHA512 d872780d7ea13757ddb5640c0de5d5c013a9669d07820e9f95b32c460854a4d9327501816a210f33db434b69218a266a6532d5b89fcb6ca84ede90908e3f95c6 WHIRLPOOL 875424e1f84fe28d14b9272758f751ca4c75a38c4fab728f5f8beb1f35052c4f8abfa2a67856120136ea8f9b78d58339e9114f16998c710dfec919b43fe320aa
|
||||
EBUILD talloc-2.1.5-r1.ebuild 2555 SHA256 4950a487ee9318fcc4af033178f8c6eb8a3838d3c46327293e4db30d86d73871 SHA512 fe374b02d6d091fb124088b9bed95f09273baf5054abd8c878fe4d50242a6bd8d8bb0554d453fc509e2a392861962b6cf12fe78193c17bccb8be18ecb2b4dee8 WHIRLPOOL 42e78bbd0f0852aeacdf3cf2acee12dd33b4cc9fe3cd06e29ac17c9b39e29953952ee5e4b6512c098b40d848b674ad3feb4e3fdf845bd4e61d8b8757ffb431e4
|
||||
EBUILD talloc-2.1.5.ebuild 2374 SHA256 163a2ee5899ae773a1a27243981fff80658cc83e6e05a287076cb1cb8bfbbf1f SHA512 96c71a577e0182f6eec46d4765ae318bae5657498d406eea634b397c1b3692ccd5bd8969c701c8fda490e4160fea5745765e81ae43e200f7eaf2d37c58613419 WHIRLPOOL 7b165d8c7b376f5fc5fafdb43424784c07413209b5019b7301d6cca7a342d95b210a5e1a27a609b501ebb770b60e08471560d84174594ae827dea7ccf9be6035
|
||||
EBUILD talloc-2.1.6.ebuild 2565 SHA256 ef2ef8deb3e40536b1d42c68977c2d8bc5e5cb7ca765ca9808fe537b8724b06d SHA512 53a678db6c947ef55400bf16e854214bcd98fa75a73afecdabc37339f259c29ce310ea3f6fcce1d59bcf3a0a6c68bb4d14ddbd7d2ec490501ec66cc234d00f69 WHIRLPOOL ac5d749629b78a3c53fa3dd88237d32f40c9f68ce1d5b1ecc50455f0baf9f18174a1935ac9b2885cc041dded8cedb8f3b2179e43fd6cd660ab3045227c10f0d6
|
||||
MISC ChangeLog 6483 SHA256 126b5ac15dbcab137c4890c844c10333d22849f230910effc8d32dc09c22a9d1 SHA512 b03838ecccfa48e94b65449e044ce90b6cec98f82fc651697eec0567e87b49db036c39fb078d2485f6ce46ea693521bfb239e324bbc16f8d7890b78745e7f17d WHIRLPOOL 423d122f803cda214265bf4e6f63305674359ce4c1e037b6b7f1631cc34fe51cdd761023b85a7dc0ef34eec47d26cb8d6e229ba8804a9d9682f0d4e4ce54e08f
|
||||
MISC ChangeLog-2015 11247 SHA256 6db1fb636ed8cf66d64b977a5151b5dff79f24575144c762107ba90b201036d8 SHA512 dc4f614e906b7b169bdf9a44e81ab5a4139c74d6ddc2a61683345fdd1f0718762ab837ed071311bfc1193e14f44abd0f7434d99e050cf9c496d468714a92d796 WHIRLPOOL 253f19a8968874b47ed4e0f11987c32317287f692c9db6c08e99e8da1987777944fc24eed520369014328a7d593b4944d9bdcd9a3aeeba1c83f61da362c5d4bd
|
||||
MISC metadata.xml 439 SHA256 1ada965eca76363431e96b05d3220a25d5100e9de31f189c5a07145760894cbd SHA512 e583aa7aa9a641067b3b38bf398ad6266980ee961e11d81b5d7c6d32cb8948879e27777a33a72376f79beca6f71aa79613db65049e6a1221922869239de9ccf3 WHIRLPOOL 14b29f433af8722d9a94f3b351f3ed46c85f32f7e6169586fc8d41239e1f1bd2f6bc8b657fd5ce4ad4facf14bbf25edf683d0f6f7aaa4d6b911d92cab24586ca
|
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>patrick@gentoo.org</email>
|
||||
<name>Patrick Lauer</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>samba@gentoo.org</email>
|
||||
<name>Samba</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="compat">Enable extra compatibility stuff</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
@ -1,95 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads"
|
||||
|
||||
inherit waf-utils python-single-r1 multilib multilib-minimal
|
||||
|
||||
DESCRIPTION="Samba talloc library"
|
||||
HOMEPAGE="http://talloc.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3 LGPL-3+ LGPL-2 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris"
|
||||
IUSE="compat +python"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="python? ( ${PYTHON_DEPS} )
|
||||
!!<sys-libs/talloc-2.0.5
|
||||
abi_x86_32? (
|
||||
!<=app-emulation/emul-linux-x86-baselibs-20140508-r1
|
||||
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/gettext
|
||||
dev-libs/libxslt
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
MULTILIB_WRAPPED_HEADERS=(
|
||||
# python goes only for native
|
||||
/usr/include/pytalloc.h
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
# try to turn off distcc and ccache for people that have a problem with it
|
||||
export DISTCC_DISABLE=1
|
||||
export CCACHE_DISABLE=1
|
||||
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# what would you expect of waf? i won't even waste time trying.
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local extra_opts=()
|
||||
|
||||
use compat && extra_opts+=( --enable-talloc-compat1 )
|
||||
if ! multilib_is_native_abi || ! use python; then
|
||||
extra_opts+=( --disable-python )
|
||||
fi
|
||||
|
||||
waf-utils_src_configure \
|
||||
"${extra_opts[@]}"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
# waf is stupid, and no, we can't fix the build-system, since it's provided
|
||||
# as a brilliant binary blob thats decompressed on the fly
|
||||
if [[ ${CHOST} == *-darwin* ]] ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libtalloc.2.0.5.dylib || die
|
||||
if use python ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libpytalloc-util.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${D}"$(python_get_sitedir)/talloc.bundle || die
|
||||
fi
|
||||
fi
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads"
|
||||
|
||||
inherit waf-utils python-single-r1 multilib multilib-minimal
|
||||
|
||||
DESCRIPTION="Samba talloc library"
|
||||
HOMEPAGE="http://talloc.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3 LGPL-3+ LGPL-2 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris"
|
||||
IUSE="compat +python"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="python? ( ${PYTHON_DEPS} )
|
||||
!!<sys-libs/talloc-2.0.5
|
||||
abi_x86_32? (
|
||||
!<=app-emulation/emul-linux-x86-baselibs-20140508-r1
|
||||
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/gettext
|
||||
dev-libs/libxslt
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
MULTILIB_WRAPPED_HEADERS=(
|
||||
# python goes only for native
|
||||
/usr/include/pytalloc.h
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
# what would you expect of waf? i won't even waste time trying.
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local extra_opts=()
|
||||
|
||||
use compat && extra_opts+=( --enable-talloc-compat1 )
|
||||
if ! multilib_is_native_abi || ! use python; then
|
||||
extra_opts+=( --disable-python )
|
||||
fi
|
||||
|
||||
waf-utils_src_configure \
|
||||
"${extra_opts[@]}"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
# waf is stupid, and no, we can't fix the build-system, since it's provided
|
||||
# as a brilliant binary blob thats decompressed on the fly
|
||||
if [[ ${CHOST} == *-darwin* ]] ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libtalloc.2.0.5.dylib || die
|
||||
if use python ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libpytalloc-util.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${D}"$(python_get_sitedir)/talloc.bundle || die
|
||||
fi
|
||||
fi
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads"
|
||||
|
||||
inherit waf-utils python-single-r1 multilib multilib-minimal
|
||||
|
||||
DESCRIPTION="Samba talloc library"
|
||||
HOMEPAGE="http://talloc.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3 LGPL-3+ LGPL-2 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris"
|
||||
IUSE="compat +python"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="python? ( ${PYTHON_DEPS} )
|
||||
!!<sys-libs/talloc-2.0.5
|
||||
abi_x86_32? (
|
||||
!<=app-emulation/emul-linux-x86-baselibs-20140508-r1
|
||||
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/gettext
|
||||
dev-libs/libxslt
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
MULTILIB_WRAPPED_HEADERS=(
|
||||
# python goes only for native
|
||||
/usr/include/pytalloc.h
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
# try to turn off distcc and ccache for people that have a problem with it
|
||||
export DISTCC_DISABLE=1
|
||||
export CCACHE_DISABLE=1
|
||||
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# what would you expect of waf? i won't even waste time trying.
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local extra_opts=()
|
||||
|
||||
use compat && extra_opts+=( --enable-talloc-compat1 )
|
||||
if ! multilib_is_native_abi || ! use python; then
|
||||
extra_opts+=( --disable-python )
|
||||
fi
|
||||
|
||||
waf-utils_src_configure \
|
||||
"${extra_opts[@]}"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
# waf is stupid, and no, we can't fix the build-system, since it's provided
|
||||
# as a brilliant binary blob thats decompressed on the fly
|
||||
if [[ ${CHOST} == *-darwin* ]] ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libtalloc.2.0.5.dylib || die
|
||||
if use python ; then
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libpytalloc-util.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${ED}"/usr/$(get_libdir)/libpytalloc-util.2.0.5.dylib || die
|
||||
install_name_tool \
|
||||
-change "${S}/bin/default/libtalloc.dylib" \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
|
||||
"${D}"$(python_get_sitedir)/talloc.bundle || die
|
||||
fi
|
||||
fi
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
# ChangeLog for sys-libs/tdb
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*tdb-1.3.7 (09 Aug 2015)
|
||||
*tdb-1.3.6 (09 Aug 2015)
|
||||
*tdb-1.3.0-r1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
|
||||
+files/add_missing_stdbool_h_include.patch, +files/tdb-1.3.7-fix.patch,
|
||||
+metadata.xml, +tdb-1.3.0-r1.ebuild, +tdb-1.3.6.ebuild, +tdb-1.3.7.ebuild:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
*tdb-1.3.8 (23 Nov 2015)
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> +tdb-1.3.8.ebuild:
|
||||
Bump to version 1.3.8
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.6.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
amd64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="amd64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
x86 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="x86"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
ppc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
ppc64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Markus Meier <maekke@gentoo.org> tdb-1.3.8.ebuild:
|
||||
arm stable, bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="arm"
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
ia64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ia64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
alpha stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="alpha"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
09 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.8.ebuild:
|
||||
sparc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="sparc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
12 Jan 2016; Jeroen Roovers <jer@gentoo.org> tdb-1.3.8.ebuild:
|
||||
Stable for HPPA (bug #568432).
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --ignore-arches
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
29 Mar 2016; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.0-r1.ebuild,
|
||||
-tdb-1.3.7.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.28
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
@ -1,329 +0,0 @@
|
||||
# ChangeLog for sys-libs/tdb
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.86 2015/08/08 09:18:14 polynomial-c Exp $
|
||||
|
||||
08 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> tdb-1.3.7.ebuild,
|
||||
+files/tdb-1.3.7-fix.patch:
|
||||
Fixed compilation with abi_x86_32 (bug #556920).
|
||||
|
||||
*tdb-1.3.7 (07 Aug 2015)
|
||||
|
||||
07 Aug 2015; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.5.ebuild,
|
||||
+tdb-1.3.7.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tdb-1.3.6 (16 Jun 2015)
|
||||
|
||||
16 Jun 2015; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.4.ebuild,
|
||||
+tdb-1.3.6.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tdb-1.3.5 (09 Jun 2015)
|
||||
|
||||
09 Jun 2015; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.3.ebuild,
|
||||
+tdb-1.3.5.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
03 Mar 2015; Yixun Lan <dlan@gentoo.org> tdb-1.3.4.ebuild:
|
||||
add arm64 support, tested on A53 board
|
||||
|
||||
03 Jan 2015; Michał Górny <mgorny@gentoo.org> tdb-1.3.0-r1.ebuild,
|
||||
tdb-1.3.3.ebuild, tdb-1.3.4.ebuild:
|
||||
Add PYTHON_REQ_USE as necessary for waf.
|
||||
|
||||
*tdb-1.3.4 (22 Dec 2014)
|
||||
|
||||
22 Dec 2014; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.2.ebuild,
|
||||
+tdb-1.3.4.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tdb-1.3.3 (04 Dec 2014)
|
||||
|
||||
04 Dec 2014; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.1.ebuild,
|
||||
+tdb-1.3.3.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tdb-1.3.2 (02 Dec 2014)
|
||||
|
||||
02 Dec 2014; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.2.10.ebuild,
|
||||
-tdb-1.2.11.ebuild, -tdb-1.2.13.ebuild, +tdb-1.3.2.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
11 Nov 2014; Mike Gilbert <floppym@gentoo.org> tdb-1.3.0-r1.ebuild,
|
||||
tdb-1.3.1.ebuild:
|
||||
Depend on python unconditionally at build time, bug 475370. Patch by Nikoli.
|
||||
|
||||
11 Oct 2014; Markus Meier <maekke@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
arm stable, bug #512012
|
||||
|
||||
*tdb-1.3.1 (18 Sep 2014)
|
||||
|
||||
18 Sep 2014; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.3.0.ebuild,
|
||||
+tdb-1.3.1.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for sparc, wrt bug #512012
|
||||
|
||||
25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for alpha, wrt bug #512012
|
||||
|
||||
23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for ia64, wrt bug #512012
|
||||
|
||||
21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for ppc64, wrt bug #512012
|
||||
|
||||
11 Aug 2014; Patrick Lauer <patrick@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Restrict parallel building #519164
|
||||
|
||||
07 Aug 2014; Jeroen Roovers <jer@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for HPPA (bug #512012).
|
||||
|
||||
28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for ppc, wrt bug #512012
|
||||
|
||||
23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for x86, wrt bug #512012
|
||||
|
||||
22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tdb-1.3.0-r1.ebuild:
|
||||
Stable for amd64, wrt bug #512912
|
||||
|
||||
11 Jun 2014; Rémi Cardona <remi@gentoo.org> tdb-1.3.0-r1.ebuild,
|
||||
+files/add_missing_stdbool_h_include.patch:
|
||||
Add patch to add missing stdbool.h include in tdb.h, see bug #511846.
|
||||
|
||||
*tdb-1.3.0-r1 (11 Jun 2014)
|
||||
|
||||
11 Jun 2014; Michał Górny <mgorny@gentoo.org> +tdb-1.3.0-r1.ebuild:
|
||||
Enable multilib support, needed by net-fs/samba.
|
||||
|
||||
24 May 2014; Patrick Lauer <patrick@gentoo.org> metadata.xml:
|
||||
Remove unneded useflags from metadata.xml
|
||||
|
||||
*tdb-1.3.0 (23 May 2014)
|
||||
|
||||
23 May 2014; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.2.7-r1.ebuild,
|
||||
-tdb-1.2.12-r1.ebuild, +tdb-1.3.0.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tdb-1.2.13 (23 Mar 2014)
|
||||
|
||||
23 Mar 2014; Lars Wendler <polynomial-c@gentoo.org> +tdb-1.2.13.ebuild:
|
||||
Version bump.
|
||||
|
||||
06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Stable for sparc, wrt bug #478260
|
||||
|
||||
03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Stable for ia64, wrt bug #478260
|
||||
|
||||
01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Stable for alpha, wrt bug #478260
|
||||
|
||||
25 Aug 2013; Markus Meier <maekke@gentoo.org> tdb-1.2.11.ebuild:
|
||||
arm stable, bug #478260
|
||||
|
||||
07 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.2.1.ebuild,
|
||||
-tdb-1.2.1-r1.ebuild, tdb-1.2.7-r1.ebuild, -tdb-1.2.9.ebuild,
|
||||
tdb-1.2.10.ebuild, -tdb-1.2.12.ebuild:
|
||||
Removed old versions. Dropped KEYWORDS on remaining older versions.
|
||||
|
||||
*tdb-1.2.12-r1 (30 Jun 2013)
|
||||
|
||||
30 Jun 2013; Justin Lecher <jlec@gentoo.org> +tdb-1.2.12-r1.ebuild,
|
||||
metadata.xml:
|
||||
Bump to new python eclasses
|
||||
|
||||
*tdb-1.2.12 (13 Jun 2013)
|
||||
|
||||
13 Jun 2013; Patrick Lauer <patrick@gentoo.org> +tdb-1.2.12.ebuild:
|
||||
Bump
|
||||
|
||||
28 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Stable for x86, wrt bug #466284
|
||||
|
||||
28 Apr 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Stable for amd64, wrt bug #466284
|
||||
|
||||
25 Feb 2013; Zac Medico <zmedico@gentoo.org> tdb-1.2.11.ebuild:
|
||||
Add ~arm-linux and ~x86-linux keywords.
|
||||
|
||||
*tdb-1.2.11 (05 Dec 2012)
|
||||
|
||||
05 Dec 2012; Patrick Lauer <patrick@gentoo.org> +tdb-1.2.11.ebuild:
|
||||
Bump
|
||||
|
||||
29 Nov 2012; Jeroen Roovers <jer@gentoo.org> tdb-1.2.10.ebuild:
|
||||
Stable for HPPA (bug #444686).
|
||||
|
||||
25 Nov 2012; Anthony G. Basile <blueness@gentoo.org> tdb-1.2.10.ebuild:
|
||||
stable ppc ppc64, bug #444686
|
||||
|
||||
25 Nov 2012; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.10.ebuild:
|
||||
Stable for x86, wrt bug #444686
|
||||
|
||||
25 Nov 2012; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.10.ebuild:
|
||||
Stable for amd64, wrt bug #444686
|
||||
|
||||
29 Aug 2012; Christoph Junghans <ottxor@gentoo.org> tdb-1.2.10.ebuild:
|
||||
added ~amd64-linux
|
||||
|
||||
06 Jul 2012; Jeff Horelick <jdhore@gentoo.org> tdb-1.2.9.ebuild:
|
||||
marked x86 per bug 417107
|
||||
|
||||
15 May 2012; Alexis Ballier <aballier@gentoo.org> tdb-1.2.10.ebuild:
|
||||
keyword ~amd64-fbsd
|
||||
|
||||
*tdb-1.2.10 (23 Apr 2012)
|
||||
|
||||
23 Apr 2012; Víctor Ostorga <vostorga@gentoo.org> +tdb-1.2.10.ebuild:
|
||||
Version bump to 1.2.10
|
||||
|
||||
08 Mar 2012; Patrick Lauer <patrick@gentoo.org> tdb-1.2.9.ebuild:
|
||||
Python dependency fix
|
||||
|
||||
08 Mar 2012; Patrick Lauer <patrick@gentoo.org> tdb-1.2.9.ebuild:
|
||||
Build fix for #401291
|
||||
|
||||
25 Feb 2012; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.9.ebuild:
|
||||
Stable for amd64, wrt bug #405617
|
||||
|
||||
11 Jul 2011; Mark Loeser <halcy0n@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
Stable on ppc/ppc64; bug #361055
|
||||
|
||||
07 Jul 2011; Alexis Ballier <aballier@gentoo.org> tdb-1.2.9.ebuild:
|
||||
keyword ~x86-fbsd
|
||||
|
||||
27 Jun 2011; Víctor Ostorga <vostorga@gentoo.org> tdb-1.2.9.ebuild:
|
||||
Adding DEPEND on app-text/docbook-xml-dtd:4.2
|
||||
|
||||
*tdb-1.2.9 (27 Jun 2011)
|
||||
|
||||
27 Jun 2011; Víctor Ostorga <vostorga@gentoo.org> +tdb-1.2.9.ebuild:
|
||||
Version bump to 1.2.9 , moving to waf, bug 370999
|
||||
|
||||
25 Apr 2011; Raúl Porcel <armin76@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
alpha/ia64/s390/sh/sparc stable wrt #361055
|
||||
|
||||
25 Apr 2011; Thomas Kahle <tomka@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
x86 stable per bug 361055
|
||||
|
||||
10 Apr 2011; Markus Meier <maekke@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
arm stable, bug #361055
|
||||
|
||||
04 Apr 2011; Jeroen Roovers <jer@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
Stable for HPPA (bug #361055).
|
||||
|
||||
02 Apr 2011; Christoph Mende <angelos@gentoo.org> tdb-1.2.7-r1.ebuild:
|
||||
Removed dolib.so (bug #361621) and stable on amd64 (bug #361055)
|
||||
|
||||
01 Apr 2011; Víctor Ostorga <vostorga@gentoo.org> tdb-1.2.1.ebuild,
|
||||
tdb-1.2.1-r1.ebuild:
|
||||
Restricting working python version to 2.x bug #360033 . Adding double
|
||||
blocker to previous tdb version #314611
|
||||
|
||||
*tdb-1.2.7-r1 (18 Jan 2011)
|
||||
|
||||
18 Jan 2011; Víctor Ostorga <vostorga@gentoo.org> -tdb-1.2.7.ebuild,
|
||||
+tdb-1.2.7-r1.ebuild:
|
||||
Set _PUBLIC_ in C file rather than header files bug #350720 patch thanks
|
||||
to Rafał Mużyło <galtgendo@o2.pl>
|
||||
|
||||
*tdb-1.2.7 (03 Jan 2011)
|
||||
|
||||
03 Jan 2011; Víctor Ostorga <vostorga@gentoo.org> +tdb-1.2.7.ebuild:
|
||||
Version bump to 1.2.7 bug #350464
|
||||
|
||||
29 Dec 2010; Víctor Ostorga <vostorga@gentoo.org> tdb-1.2.1-r1.ebuild:
|
||||
Improving python related code, patch thanks to Arfrever Frehtes Taifersar
|
||||
Arahesis <arfrever@gentoo.org> bug #316959
|
||||
|
||||
27 Sep 2010; Mart Raudsepp <leio@gentoo.org> tdb-1.2.1-r1.ebuild:
|
||||
Marked ~mips for bug #285952
|
||||
|
||||
18 Aug 2010; Patrick Lauer <patrick@gentoo.org> tdb-1.2.1-r1.ebuild:
|
||||
Fixing manpage installation with USE -tools, fixes #333033
|
||||
|
||||
*tdb-1.2.1-r1 (14 Aug 2010)
|
||||
|
||||
14 Aug 2010; Markos Chandras <hwoarang@gentoo.org> +tdb-1.2.1-r1.ebuild:
|
||||
Revbump to respect LDFLAGS. Thanks to Dane Smith <smithdanea@gmail.com>
|
||||
for the patch
|
||||
|
||||
12 Aug 2010; Joseph Jezak <josejx@gentoo.org> tdb-1.2.1.ebuild:
|
||||
Marked ppc stable for bug #300158.
|
||||
|
||||
07 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> tdb-1.2.1.ebuild:
|
||||
ppc64 stable wrt #314899
|
||||
|
||||
05 Jun 2010; Raúl Porcel <armin76@gentoo.org> tdb-1.2.1.ebuild:
|
||||
alpha/arm/ia64/s390/sh/sparc stable wrt #300158
|
||||
|
||||
19 May 2010; Jeroen Roovers <jer@gentoo.org> tdb-1.2.1.ebuild:
|
||||
Stable for HPPA (bug #300158).
|
||||
|
||||
18 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> tdb-1.2.1.ebuild:
|
||||
x86 stable wrt bug #300158
|
||||
|
||||
03 May 2010; Olivier Crête <tester@gentoo.org> tdb-1.2.1.ebuild:
|
||||
amd64 stable, bug #314899
|
||||
|
||||
10 Apr 2010; Tiziano Müller <dev-zero@gentoo.org> tdb-1.2.1.ebuild:
|
||||
Fixed bug #314453 by adding --nonet to the xsltproc call.
|
||||
|
||||
*tdb-1.2.1 (09 Apr 2010)
|
||||
|
||||
09 Apr 2010; Tiziano Müller <dev-zero@gentoo.org> +tdb-1.2.1.ebuild:
|
||||
Version bump. .
|
||||
|
||||
*tdb-1.2.0-r2 (03 Apr 2010)
|
||||
|
||||
03 Apr 2010; Tiziano Müller <dev-zero@gentoo.org> +tdb-1.2.0-r2.ebuild:
|
||||
Fixed: unnecessary inherit, static-libs installation, added tests.
|
||||
|
||||
*tdb-1.2.0-r1 (11 Jan 2010)
|
||||
|
||||
11 Jan 2010; Diego E. Pettenò <flameeyes@gentoo.org>
|
||||
+tdb-1.2.0-r1.ebuild:
|
||||
Fix installation of shared objects with USE=-python. Thanks to Davide
|
||||
Pesavento for reporting.
|
||||
|
||||
*tdb-1.2.0 (04 Jan 2010)
|
||||
|
||||
04 Jan 2010; Patrick Lauer <patrick@gentoo.org> +tdb-1.2.0.ebuild:
|
||||
Bump
|
||||
|
||||
06 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org> tdb-1.1.5-r1.ebuild:
|
||||
Block older samba (to force uninstall).
|
||||
|
||||
30 Nov 2009; Raúl Porcel <armin76@gentoo.org> tdb-1.1.5-r1.ebuild:
|
||||
Add ~arm/~ia64/~s390/~sh/~sparc wrt #285952
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org> tdb-1.1.5-r1.ebuild:
|
||||
Keyworded on alpha, bug #285952
|
||||
|
||||
08 Nov 2009; Joseph Jezak <josejx@gentoo.org> tdb-1.1.5-r1.ebuild:
|
||||
Marked ~ppc for bug #285952.
|
||||
|
||||
04 Nov 2009; Patrick Lauer <patrick@gentoo.org> tdb-1.1.5.ebuild,
|
||||
tdb-1.1.5-r1.ebuild:
|
||||
Small dep fix
|
||||
|
||||
*tdb-1.1.5-r1 (23 Oct 2009)
|
||||
|
||||
23 Oct 2009; Patrick Lauer <patrick@gentoo.org> +tdb-1.1.5-r1.ebuild:
|
||||
Some cleanups for #288536
|
||||
|
||||
11 Oct 2009; Petteri Räty <betelgeuse@gentoo.org> tdb-1.1.5.ebuild:
|
||||
Block <net-fs/samba-libs-3.4 for bug #288545.
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> tdb-1.1.5.ebuild:
|
||||
Improve description
|
||||
|
||||
*tdb-1.1.5 (09 Oct 2009)
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> +tdb-1.1.5.ebuild,
|
||||
+metadata.xml:
|
||||
Initial commit. Ebuilds based on those provided by Marcel Greter in
|
||||
#231273
|
@ -1,7 +0,0 @@
|
||||
AUX add_missing_stdbool_h_include.patch 735 SHA256 d183183b15242ca3f2273983a5ba6f900e49626f21f1d6b4efad81769161497f SHA512 cbfd63c4af8cff139648b136ce1ca619a21e7606256196297bb487dab6a7c4055bd7ab6d7462fb1d336518dbb9399cb1c25563f384f84aec575ef89f71faa10e WHIRLPOOL d774b0ac858b76b1355dc64ba1167867f3fa337620fb20fb9dad6760f2ce56916443f7fcd6c1c3a1c94ef0a62f9d5fffcd1bd45d2ce3acdf0ce4f7b923844f1d
|
||||
AUX tdb-1.3.7-fix.patch 1919 SHA256 8255ef8cadebead48554cf011bee43e75d26513c450c973f4a9fc9d5e3695051 SHA512 c40be31c19b733a4174909daa743145319b4701f691d5dc77aee97001165140943980e126e55dcc15d4be438c014e76026103b65245dbac4d11666942c9f3013 WHIRLPOOL 6fe5aff37eed69db6c8b8acdca0da106b6b1e3200d24b0e7e636ab2eaea202872a2b6ed970ae3b0af4ba04b47fc1bc5824d41fc33a56454825df896c9c534499
|
||||
DIST tdb-1.3.8.tar.gz 494106 SHA256 0605ac0427eac9c23bf61ebfd8206a07d5ece198498eab1769cd0cfb6e7de6b1 SHA512 9a7040206bbaae419a296714fe14fcbd3b67c0cef2b0f33563d52336aac2fe814049f5136a148fb049a273bb36fe81e3d777df58869c93f45d6e42b4adf9970b WHIRLPOOL 61070a71aba9b44d5141844ffac6b4657ddc938850934fe00ff7312d9f76e1c318e37764b60fbac255ff5b8dc8d8226f668f80315fccdc67550eeb9bd1c4bc25
|
||||
EBUILD tdb-1.3.8.ebuild 1346 SHA256 5b3593d899c14a87c7131a8f1a6abd44887353290555337ff0d93aeff4d2d7de SHA512 04e21677d72f088c3b8500f09eb15f9c0a72289853c64289065fab1840ae1e302c0479bcc400908f27a1005797272716d2ae65c44e01686ef6087c7d00337c73 WHIRLPOOL bc06d37368852a9b4310860a07625e396746caa27d756d11de12e41c9c45c4bcd447c773b0aa957def063e00e7eb70904b75236368f9b4b858e707bab4dbc19a
|
||||
MISC ChangeLog 5114 SHA256 1dae3e2d8af6c0ddb4fd1fd563a5a56bd950fd9b97e22a52a318d8d4f49f24e8 SHA512 d20aa0da9ff6bb442024ac316d57925b760021bd43f96fda43618727a258af609adc83c29dc432e18008de1858912b162293eb19c68092a59497b71e6275e8bb WHIRLPOOL 4c300edf2b930fffefbffc7e0757cad08bf85eb816ed1a9956f36647b2655d942cf72fe77ae276349311749e0dc5812d6b4e41e7310d13c26425612b020df78c
|
||||
MISC ChangeLog-2015 10789 SHA256 1bb910d8c68511c73b356cc9e77591fa92bcade8e8547b3828ff8251e9902cc1 SHA512 65da20134221c0588c7b772dbac6170c101ec2d9386569052af14da87a57e226b66f2353510b0fda6fb870ae3aa12ccf006730bd2b0346b4bbef2fe1db561b80 WHIRLPOOL 7b3a8814bbe259d8cd4b0978f9c8f5b066f98918c98838dfa4739703a5af6edda6217854e0ef3943941e6e00544913b11285f2503fbf5b6eb84d4375f1e06b5c
|
||||
MISC metadata.xml 356 SHA256 0990f052548eb3a00ce43438f8753a35456ea27c1d3da699f00b12e66a5039cd SHA512 59095952e57315232ef95494f2c30f520f13538f279df25f17a923a836194c4df78e11a03ff6fab814c1db1fe5a81cae2cf20988d77ef30e0c0d47f9a74f01cb WHIRLPOOL 3460b24cad2050d51f7196967aba58b491cce004285b5fb41ec7d879e7fff5551dad15ec4ec797567383e906f5fde716f55945ed81f9b16624636b92caaa833d
|
@ -1,27 +0,0 @@
|
||||
From 4e14a437963ba54987cd58b4e0705d9a6d8aea6f Mon Sep 17 00:00:00 2001
|
||||
From: Adam Williamson <awilliam@redhat.com>
|
||||
Date: Fri, 23 May 2014 10:08:14 -0700
|
||||
Subject: [PATCH] tdb/include: include stdbool.h in tdb.h
|
||||
|
||||
Commit db5bda56bf08 (tdb: add TDB_MUTEX_LOCKING support) adds a bool, but does
|
||||
not include stdbool.h. This causes any build including tdb.h to fail, at least
|
||||
for me with GCC 4.9.0.
|
||||
---
|
||||
lib/tdb/include/tdb.h | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/lib/tdb/include/tdb.h b/lib/tdb/include/tdb.h
|
||||
index 5ea5e60..03e429c 100644
|
||||
--- a/lib/tdb/include/tdb.h
|
||||
+++ b/lib/tdb/include/tdb.h
|
||||
@@ -31,6 +31,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
#include <signal.h>
|
||||
+#include <stdbool.h>
|
||||
|
||||
/**
|
||||
* @defgroup tdb The tdb API
|
||||
--
|
||||
1.9.3
|
||||
|
@ -1,55 +0,0 @@
|
||||
From patchwork Thu Jul 23 05:10:38 2015
|
||||
Content-Type: text/plain; charset="utf-8"
|
||||
MIME-Version: 1.0
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Subject: tdb: Fix broken build with --disable-python
|
||||
Date: Thu, 23 Jul 2015 04:10:38 -0000
|
||||
From: Martin Schwenke <martin@meltin.net>
|
||||
X-Patchwork-Id: 11098
|
||||
Message-Id: <20150723151038.617e1c49@martins.ozlabs.org>
|
||||
To: Samba Technical <samba-technical@lists.samba.org>
|
||||
|
||||
Please NACK if you don't want this pushed... :-)
|
||||
|
||||
peace & happiness,
|
||||
martin
|
||||
|
||||
|
||||
>From c7609c35b6bdb488b74d63ebfd27838b9b8e7e2f Mon Sep 17 00:00:00 2001
|
||||
From: Martin Schwenke <martin@meltin.net>
|
||||
Date: Thu, 23 Jul 2015 09:47:24 +1000
|
||||
Subject: [PATCH] tdb: Fix broken build with --disable-python
|
||||
|
||||
With --disable-python, we should not install any python files.
|
||||
|
||||
Signed-off-by: Martin Schwenke <martin@meltin.net>
|
||||
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
|
||||
---
|
||||
lib/tdb/wscript | 11 ++++++-----
|
||||
1 file changed, 6 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/lib/tdb/wscript b/lib/tdb/wscript
|
||||
index 5845fa0..1822e74 100644
|
||||
--- a/lib/tdb/wscript
|
||||
+++ b/lib/tdb/wscript
|
||||
@@ -187,12 +187,13 @@ def build(bld):
|
||||
realname='tdb.so',
|
||||
cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
|
||||
|
||||
- for env in bld.gen_python_environments(['PKGCONFIGDIR']):
|
||||
- bld.SAMBA_SCRIPT('_tdb_text.py',
|
||||
- pattern='_tdb_text.py',
|
||||
- installdir='python')
|
||||
+ if not bld.env.disable_python:
|
||||
+ for env in bld.gen_python_environments(['PKGCONFIGDIR']):
|
||||
+ bld.SAMBA_SCRIPT('_tdb_text.py',
|
||||
+ pattern='_tdb_text.py',
|
||||
+ installdir='python')
|
||||
|
||||
- bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py')
|
||||
+ bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py')
|
||||
|
||||
def testonly(ctx):
|
||||
'''run tdb testsuite'''
|
||||
--
|
||||
2.1.4
|
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>patrick@gentoo.org</email>
|
||||
<name>Patrick Lauer</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>samba@gentoo.org</email>
|
||||
<name>Samba</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,60 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads"
|
||||
|
||||
inherit waf-utils multilib-minimal python-single-r1 eutils
|
||||
|
||||
DESCRIPTION="A simple database API"
|
||||
HOMEPAGE="http://tdb.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
|
||||
IUSE="python"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="python? ( ${PYTHON_DEPS} )"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
${PYTHON_DEPS}
|
||||
app-text/docbook-xml-dtd:4.2"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
src_prepare() {
|
||||
python_fix_shebang .
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local extra_opts=()
|
||||
if ! multilib_is_native_abi || ! use python; then
|
||||
extra_opts+=( --disable-python )
|
||||
fi
|
||||
|
||||
waf-utils_src_configure \
|
||||
"${extra_opts[@]}"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
# need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
|
||||
unset MAKEOPTS
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
# the default src_test runs 'make test' and 'make check', letting
|
||||
# the tests fail occasionally (reason: unknown)
|
||||
emake check
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
}
|
@ -1,200 +0,0 @@
|
||||
# ChangeLog for sys-libs/tevent
|
||||
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
|
||||
# (auto-generated from git log)
|
||||
|
||||
*tevent-0.9.25 (09 Aug 2015)
|
||||
*tevent-0.9.24 (09 Aug 2015)
|
||||
*tevent-0.9.21-r1 (09 Aug 2015)
|
||||
|
||||
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
|
||||
+tevent-0.9.21-r1.ebuild, +tevent-0.9.24.ebuild, +tevent-0.9.25.ebuild:
|
||||
proj/gentoo: Initial commit
|
||||
|
||||
This commit represents a new era for Gentoo:
|
||||
Storing the gentoo-x86 tree in Git, as converted from CVS.
|
||||
|
||||
This commit is the start of the NEW history.
|
||||
Any historical data is intended to be grafted onto this point.
|
||||
|
||||
Creation process:
|
||||
1. Take final CVS checkout snapshot
|
||||
2. Remove ALL ChangeLog* files
|
||||
3. Transform all Manifests to thin
|
||||
4. Remove empty Manifests
|
||||
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
|
||||
5.1. Do not touch files with -kb/-ko keyword flags.
|
||||
|
||||
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
||||
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
|
||||
tests
|
||||
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
|
||||
project
|
||||
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
|
||||
developer, wrote Git features for the migration
|
||||
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
|
||||
cvs2svn
|
||||
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
|
||||
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
|
||||
work in migration
|
||||
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
|
||||
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
|
||||
the bikeshed
|
||||
|
||||
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
|
||||
Use https by default
|
||||
|
||||
Convert all URLs for sites supporting encrypted connections from http to
|
||||
https
|
||||
|
||||
Signed-off-by: Justin Lecher <jlec@gentoo.org>
|
||||
|
||||
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
|
||||
Revert DOCTYPE SYSTEM https changes in metadata.xml
|
||||
|
||||
repoman does not yet accept the https version.
|
||||
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
|
||||
|
||||
Bug: https://bugs.gentoo.org/552720
|
||||
|
||||
*tevent-0.9.26 (23 Nov 2015)
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.26.ebuild:
|
||||
Bump to version 0.9.26
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
23 Nov 2015; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.24.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.25
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
amd64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="amd64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
29 Dec 2015; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
x86 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="x86"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
ppc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
ppc64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
07 Jan 2016; Markus Meier <maekke@gentoo.org> tevent-0.9.26.ebuild:
|
||||
arm stable, bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="arm"
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
ia64 stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ia64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
08 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
alpha stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="alpha"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
09 Jan 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.26.ebuild:
|
||||
sparc stable wrt bug #568432
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="sparc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
12 Jan 2016; Jeroen Roovers <jer@gentoo.org> tevent-0.9.26.ebuild:
|
||||
Stable for HPPA (bug #568432).
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --ignore-arches
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Replace all herds with appropriate projects (GLEP 67)
|
||||
|
||||
Replace all uses of herd with appropriate project maintainers, or no
|
||||
maintainers in case of herds requested to be disbanded.
|
||||
|
||||
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
|
||||
Set appropriate maintainer types in metadata.xml (GLEP 67)
|
||||
|
||||
*tevent-0.9.27 (24 Feb 2016)
|
||||
|
||||
24 Feb 2016; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.27.ebuild:
|
||||
Bump to version 0.9.27
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
24 Feb 2016; Lars Wendler <polynomial-c@gentoo.org>
|
||||
-tevent-0.9.21-r1.ebuild, -tevent-0.9.25.ebuild:
|
||||
Removed old.
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
*tevent-0.9.28 (08 Mar 2016)
|
||||
|
||||
08 Mar 2016; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.28.ebuild:
|
||||
Bump to version 0.9.28
|
||||
|
||||
Package-Manager: portage-2.2.27
|
||||
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
|
||||
|
||||
29 Mar 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.28.ebuild:
|
||||
amd64 stable wrt bug #578498
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="amd64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
29 Mar 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.28.ebuild:
|
||||
x86 stable wrt bug #578498
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="x86"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
30 Mar 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.28.ebuild:
|
||||
ppc stable wrt bug #578498
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
30 Mar 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.28.ebuild:
|
||||
ppc64 stable wrt bug #578498
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ppc64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
||||
31 Mar 2016; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.28.ebuild:
|
||||
ia64 stable wrt bug #578498
|
||||
|
||||
Package-Manager: portage-2.2.26
|
||||
RepoMan-Options: --include-arches="ia64"
|
||||
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
||||
|
@ -1,296 +0,0 @@
|
||||
# ChangeLog for sys-libs/tevent
|
||||
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.78 2015/06/16 12:09:58 polynomial-c Exp $
|
||||
|
||||
*tevent-0.9.25 (16 Jun 2015)
|
||||
|
||||
16 Jun 2015; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.19.ebuild,
|
||||
-tevent-0.9.23.ebuild, +tevent-0.9.25.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
08 Apr 2015; Michał Górny <mgorny@gentoo.org> tevent-0.9.19.ebuild,
|
||||
tevent-0.9.21-r1.ebuild, tevent-0.9.23.ebuild, tevent-0.9.24.ebuild:
|
||||
Drop old Python implementations
|
||||
|
||||
*tevent-0.9.24 (06 Mar 2015)
|
||||
|
||||
06 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.22.ebuild,
|
||||
+tevent-0.9.24.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
*tevent-0.9.23 (02 Mar 2015)
|
||||
|
||||
02 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.23.ebuild:
|
||||
Version bump.
|
||||
|
||||
03 Jan 2015; Michał Górny <mgorny@gentoo.org> tevent-0.9.22.ebuild:
|
||||
tevent[python] does not require talloc[python].
|
||||
|
||||
03 Jan 2015; Michał Górny <mgorny@gentoo.org> tevent-0.9.19.ebuild,
|
||||
tevent-0.9.21-r1.ebuild, tevent-0.9.22.ebuild:
|
||||
Add PYTHON_REQ_USE as necessary for waf.
|
||||
|
||||
11 Oct 2014; Markus Meier <maekke@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
arm stable, bug #512012
|
||||
|
||||
*tevent-0.9.22 (03 Oct 2014)
|
||||
|
||||
03 Oct 2014; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.20.ebuild,
|
||||
-tevent-0.9.21.ebuild, +tevent-0.9.22.ebuild,
|
||||
-files/add-py-file-0.9.14.patch, -files/add-py-file.patch,
|
||||
-files/tevent-version.patch:
|
||||
Version bump. Removed old.
|
||||
|
||||
15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for sparc, wrt bug #512012
|
||||
|
||||
25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for alpha, wrt bug #512012
|
||||
|
||||
23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for ia64, wrt bug #512012
|
||||
|
||||
21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for ppc64, wrt bug #512012
|
||||
|
||||
11 Aug 2014; Patrick Lauer <patrick@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Restrict parallel building #519164
|
||||
|
||||
07 Aug 2014; Jeroen Roovers <jer@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for HPPA (bug #512012).
|
||||
|
||||
28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for ppc, wrt bug #512012
|
||||
|
||||
23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for x86, wrt bug #512012
|
||||
|
||||
22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Stable for amd64, wrt bug #512912
|
||||
|
||||
18 Jun 2014; Michał Górny <mgorny@gentoo.org> tevent-0.9.21-r1.ebuild:
|
||||
Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
|
||||
#513718.
|
||||
|
||||
10 Jun 2014; Mike Frysinger <vapier@gentoo.org> tevent-0.9.19.ebuild,
|
||||
tevent-0.9.20.ebuild, tevent-0.9.21-r1.ebuild, tevent-0.9.21.ebuild:
|
||||
Add arm64/m68k love.
|
||||
|
||||
10 Jun 2014; Mike Frysinger <vapier@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Mark s390/sh stable.
|
||||
|
||||
*tevent-0.9.21-r1 (14 May 2014)
|
||||
|
||||
14 May 2014; Michał Górny <mgorny@gentoo.org> +tevent-0.9.21-r1.ebuild:
|
||||
Enable multilib support, bug #505012. Make Python optional & clean up its
|
||||
handling, bug #489114.
|
||||
|
||||
*tevent-0.9.21 (18 Jan 2014)
|
||||
|
||||
18 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.21.ebuild:
|
||||
Version bump.
|
||||
|
||||
16 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> tevent-0.9.20.ebuild:
|
||||
Raised dependency on sys-libs/talloc to version 2.1.0 for bug #481174.
|
||||
|
||||
*tevent-0.9.20 (13 Dec 2013)
|
||||
|
||||
13 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.17.ebuild,
|
||||
-tevent-0.9.18.ebuild, +tevent-0.9.20.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
06 Sep 2013; Markus Meier <maekke@gentoo.org> tevent-0.9.19.ebuild:
|
||||
arm stable, bug #478260
|
||||
|
||||
06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for sparc, wrt bug #478260
|
||||
|
||||
05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for ppc64, wrt bug #478260
|
||||
|
||||
04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for ppc, wrt bug #478260
|
||||
|
||||
03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for ia64, wrt bug #478260
|
||||
|
||||
01 Sep 2013; Jeroen Roovers <jer@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for HPPA (bug #478260).
|
||||
|
||||
01 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for alpha, wrt bug #478260
|
||||
|
||||
31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for x86, wrt bug #478260
|
||||
|
||||
31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Stable for amd64, wrt bug #478260
|
||||
|
||||
25 Aug 2013; Markus Meier <maekke@gentoo.org> tevent-0.9.18.ebuild,
|
||||
tevent-0.9.19.ebuild:
|
||||
stabilize correct version for bug #478260
|
||||
|
||||
25 Aug 2013; Markus Meier <maekke@gentoo.org> tevent-0.9.19.ebuild:
|
||||
arm stable, bug #478260
|
||||
|
||||
24 Aug 2013; Jeroen Roovers <jer@gentoo.org> tevent-0.9.18.ebuild:
|
||||
Stable for HPPA (bug #478260).
|
||||
|
||||
16 Aug 2013; Sergey Popov <pinkbyte@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Add ~mips keyword, wrt bug #412489
|
||||
|
||||
13 Aug 2013; Zac Medico <zmedico@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Fix for prefix and add ~arm-linux + ~x86-linux keywords.
|
||||
|
||||
06 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> tevent-0.9.19.ebuild:
|
||||
Added python_optimize call.
|
||||
|
||||
*tevent-0.9.19 (06 Aug 2013)
|
||||
|
||||
06 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> -tevent-0.9.14-r1.ebuild,
|
||||
-tevent-0.9.16.ebuild, +tevent-0.9.19.ebuild:
|
||||
Version bump. Removed old.
|
||||
|
||||
20 Jun 2013; Patrick Lauer <patrick@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Restore stable keyword
|
||||
|
||||
19 Jun 2013; Tobias Klausmann <klausman@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Keyworded on alpha, bug #424649
|
||||
|
||||
*tevent-0.9.18 (11 Mar 2013)
|
||||
|
||||
11 Mar 2013; Patrick Lauer <patrick@gentoo.org> +tevent-0.9.18.ebuild:
|
||||
Bump
|
||||
|
||||
06 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for sh, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for sparc, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for s390, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for ia64, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for alpha, wrt bug #458712
|
||||
|
||||
03 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for arm, wrt bug #458712
|
||||
|
||||
19 Dec 2012; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Add ~ia64, wrt bug #377809
|
||||
|
||||
29 Nov 2012; Jeroen Roovers <jer@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for HPPA (bug #444686).
|
||||
|
||||
25 Nov 2012; Anthony G. Basile <blueness@gentoo.org> tevent-0.9.17.ebuild:
|
||||
stable ppc ppc64, bug #444686
|
||||
|
||||
25 Nov 2012; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for x86, wrt bug #444686
|
||||
|
||||
25 Nov 2012; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.17.ebuild:
|
||||
Stable for amd64, wrt bug #444686
|
||||
|
||||
30 Sep 2012; Mike Gilbert <floppym@gentoo.org> tevent-0.9.16.ebuild,
|
||||
tevent-0.9.17.ebuild:
|
||||
Remove minimum python version.
|
||||
|
||||
*tevent-0.9.17 (23 Sep 2012)
|
||||
|
||||
23 Sep 2012; Víctor Ostorga <vostorga@gentoo.org> +tevent-0.9.17.ebuild:
|
||||
Version bump to 0.9.17
|
||||
|
||||
20 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org>
|
||||
+files/add-py-file-0.9.14.patch, +files/tevent-version.patch:
|
||||
Also add missing patches wrt bug#435568.
|
||||
|
||||
*tevent-0.9.14-r1 (13 Sep 2012)
|
||||
|
||||
13 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> +tevent-0.9.14-r1.ebuild:
|
||||
Restore 0.9.14 it is still needed.
|
||||
|
||||
13 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org>
|
||||
-files/add-py-file-0.9.14.patch, -files/tevent-version.patch,
|
||||
-tevent-0.9.12.ebuild, -tevent-0.9.14-r1.ebuild, -tevent-0.9.15.ebuild,
|
||||
tevent-0.9.16.ebuild:
|
||||
Stabilise latest on amd64 and x86. Drop older.
|
||||
|
||||
06 Jul 2012; Jeff Horelick <jdhore@gentoo.org> tevent-0.9.14-r1.ebuild:
|
||||
marked x86 per bug 417115
|
||||
|
||||
*tevent-0.9.16 (04 Jul 2012)
|
||||
|
||||
04 Jul 2012; Patrick Lauer <patrick@gentoo.org> +tevent-0.9.16.ebuild:
|
||||
Bump for #424705
|
||||
|
||||
12 May 2012; Alexis Ballier <aballier@gentoo.org> tevent-0.9.15.ebuild:
|
||||
keyword ~amd64-fbsd
|
||||
|
||||
04 May 2012; Jeff Horelick <jdhore@gentoo.org> tevent-0.9.14-r1.ebuild,
|
||||
tevent-0.9.15.ebuild:
|
||||
dev-util/pkgconfig -> virtual/pkgconfig
|
||||
|
||||
21 Apr 2012; Markus Meier <maekke@gentoo.org> tevent-0.9.15.ebuild:
|
||||
add ~arm, bug #412489
|
||||
|
||||
25 Feb 2012; Agostino Sarubbo <ago@gentoo.org> tevent-0.9.14-r1.ebuild:
|
||||
Stable for amd64, wrt bug #405617
|
||||
|
||||
18 Feb 2012; Tobias Klausmann <klausman@gentoo.org> tevent-0.9.14-r1.ebuild:
|
||||
Keyworded on alpha, bug #377809
|
||||
|
||||
*tevent-0.9.14-r1 (12 Feb 2012)
|
||||
|
||||
12 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org>
|
||||
+files/add-py-file-0.9.14.patch, +files/tevent-version.patch,
|
||||
+tevent-0.9.14-r1.ebuild, -tevent-0.9.14.ebuild:
|
||||
Add patches to 0.9.14, fix bug 403239. Thanks to slepnoga
|
||||
|
||||
*tevent-0.9.15 (12 Feb 2012)
|
||||
|
||||
12 Feb 2012; Maxim Koltsov <maksbotan@gentoo.org> +files/add-py-file.patch,
|
||||
+tevent-0.9.15.ebuild:
|
||||
Bump to 0.9.15, bug 403237. Fix bug 403239 for 0.9.15
|
||||
|
||||
31 Oct 2011; Víctor Ostorga <vostorga@gentoo.org> tevent-0.9.14.ebuild:
|
||||
Fixing file collision with sys-libs/talloc, bug #384873
|
||||
|
||||
*tevent-0.9.14 (27 Sep 2011)
|
||||
|
||||
27 Sep 2011; Víctor Ostorga <vostorga@gentoo.org> -tevent-0.9.8.ebuild,
|
||||
-tevent-0.9.11.ebuild, +tevent-0.9.14.ebuild:
|
||||
Version bump to 0.9.14
|
||||
|
||||
14 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> tevent-0.9.12.ebuild:
|
||||
Marked ~ppc/~ppc64 wrt #377809
|
||||
|
||||
07 Jul 2011; Alexis Ballier <aballier@gentoo.org> tevent-0.9.12.ebuild:
|
||||
keyword ~x86-fbsd
|
||||
|
||||
*tevent-0.9.12 (28 Jun 2011)
|
||||
|
||||
28 Jun 2011; Víctor Ostorga <vostorga@gentoo.org> +tevent-0.9.12.ebuild:
|
||||
Version bump to 0.9.12, moving to waf, ebuild thanks to Ewoud Kohl van
|
||||
Wijngaarden <gentoo@kohlvanwijngaarden.nl> bug 373311
|
||||
|
||||
*tevent-0.9.11 (02 Apr 2011)
|
||||
|
||||
02 Apr 2011; Patrick Lauer <patrick@gentoo.org> +tevent-0.9.11.ebuild:
|
||||
Bump
|
||||
|
||||
04 Nov 2009; Patrick Lauer <patrick@gentoo.org> tevent-0.9.8.ebuild:
|
||||
Cleanup
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> tevent-0.9.8.ebuild:
|
||||
Improve description
|
||||
|
||||
*tevent-0.9.8 (09 Oct 2009)
|
||||
|
||||
09 Oct 2009; Patrick Lauer <patrick@gentoo.org> +tevent-0.9.8.ebuild,
|
||||
+metadata.xml:
|
||||
Initial commit. Ebuilds based on those provided by Marcel Greter in
|
||||
#231273
|
@ -1,9 +0,0 @@
|
||||
DIST tevent-0.9.26.tar.gz 581664 SHA256 262c14d78ede13f2c4fc5e61485ae7250a201782d94735a1d8412652453370bd SHA512 cc841e4267cdda52d4e236040a82852a29a29427d7d374170cc74b4ff8ec0652f521580a1f69a9b4f2a66d8b2a6e3fcd34f21b2e94d0512dae848d271c090ec1 WHIRLPOOL df159329f30c9bd014be9b33b2f2e6ed1a47b7dd5af7fb964952d1e9aa7d7b72fc3028122b464c933c93253fd72b2f6248af5e7cfbb6d8cfb9259454804618d7
|
||||
DIST tevent-0.9.27.tar.gz 580967 SHA256 fbc9ed76aa92f333629b61a1bfa616819704896885937a855e07d3bc0b65c913 SHA512 9e03cbafe738de3bba95ee14f7acb708ba4fc1848d1ebe9ce6b54650db64e34b6fb1eb399d78c6f925d3be38e119303085467c40e448190ed8fd82b6819f494c WHIRLPOOL fd127622050f427c85c64fa10963f0bbb2a2315e0636c859886f9db43ca6738df38b18033a164b603b74119a1d49645e0d30d3423448a460e4fff8fc5e078298
|
||||
DIST tevent-0.9.28.tar.gz 581522 SHA256 04d953379025b1560af5c4ffcce58a3ee84db7aaa09c9f1e3eff5b2945a13529 SHA512 328d586a5891796a731e6f0d02e1a731d3541a977c16abca355359cd7f60bbdbb0baaad49c05eb42c3a44f97e57a775605974d22d46ca6c26f283c8ca1b5a909 WHIRLPOOL 3a572a1c73d564b535b15fca06a1df1ba124cac031026a1cabcbc66e38cac374eb8dad05a25372ab66982ff3c772ed63e890b62545dcce926fa782fe5fc21147
|
||||
EBUILD tevent-0.9.26.ebuild 1300 SHA256 6cbe15f74100b785447abb6af77fae46ff763fbdb8080bdeaafadecd79b8e69e SHA512 f4405ce8be71cc7ac3d04c157051bc7d1135f55a6b3d5d9927de41fcb5dc5903df519dc493511ba056ff7fb072ff37ddf0e9f9b1be5a4d163ebcfbe09f121b13 WHIRLPOOL b98747de905f27202a99164c0ba7efe59316b5bca7146cce0bd08db57e39abd0188dcda2c3ae5650ca8fd4af9ac85be8df30663f73b6eab7ae2a48338af1f89d
|
||||
EBUILD tevent-0.9.27.ebuild 1318 SHA256 53fde24e204fe8238c547c7305a56068e3d2d2f94c4a299d215a96a0aa9eb167 SHA512 4efacd11dfaa2e02603b2ff38b6d5f41c028a8b06c04842cf200328b637ac540da522b9553c1960de0c06f254834f5550430587eac057d919614732d72c55f15 WHIRLPOOL 7255b649cde771f94f467a326a72b7e5bc9520fcf767ef7cf2a2c1a13c38d62536ac91877164ba1b45ed7c49c69221254c422fbf36a3e3ce89c12946660ee536
|
||||
EBUILD tevent-0.9.28.ebuild 1313 SHA256 8049e55daafc286d1223a3a9b00f0bed1eaa0a994ded0e46fd1052bcf18a123a SHA512 5aee337d35335cfcbaefe8c3e117f2e49840da4927611287e90362f20eac2fe583234cccb20c043ab27212c10db05431f45affcb39745e3c5b36e9534193e3ae WHIRLPOOL 892a85328e6010f2c4b7e48942911162646c7079b1ed3971db5d1663534bf5b1f4cf60f48eccfc7789b6e2ffefc11de53e8fe35c295b0705f8561de05879b6e2
|
||||
MISC ChangeLog 6727 SHA256 e057d18273b25ae0b59421f1dc4bf203693d6adb680b14708ea3245d2770a285 SHA512 63390e13c25b2d6d62b62b1db48118f21c8f8937bc971a1ba618be7267fac8c33fb4f4d2feda352cc1b2c1e422a8df8f6bafce1e0989b52feb6256dd6bae431b WHIRLPOOL 7c87526113fc27d8ff65be7b1915fdfe4c1cf608918291d196506d614077a8b73c5848502d0c28ccbda051fff91c8b96696c4893fdaf34d5203b14ec766a6503
|
||||
MISC ChangeLog-2015 10241 SHA256 6f65e7a41ae0bf207c61dbee4eedd31191630d70d0b2beb45defa40ba4055ef6 SHA512 0be650b5a21ca7e3499698fc2224119de5808ad39da142b46edc353c5646fe8c122d21daf6042e2c7d82a8c530c5d0270157f6df3029af1feef8871849910542 WHIRLPOOL 5adab9b456fc51b45b5ae8e8f28800dafee1b11f869a751148345915533edd91a7268e5405cc2312c5f04d96ce3db39613932aff5c4d747d61f01d6ea12fb663
|
||||
MISC metadata.xml 345 SHA256 c71a19f7b21e012e46ed9e3c5f48a7f8345678680907434bd2e708ff48d69401 SHA512 35515a1369eeb1e4949415f8571fc54e7546ac83a59b506e04dc795f0a9b4cb06d7c8e1785577c20ca398fd87543f1742d9d4267fc09320503835bad1fc36cf5 WHIRLPOOL 0dc86f0d823c4f4b58ea7d623c27cd1f1985acb35ab891f32e3a7cf0bc307f029e6e94ab4f7385e44d13664b49bf4f0876b2447b45e8132a881dcaf45d4c063f
|
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>patrick@gentoo.org</email>
|
||||
<name>Patrick Lauer</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>samba@gentoo.org</email>
|
||||
<name>Samba</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1,55 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit waf-utils multilib-minimal python-single-r1
|
||||
|
||||
DESCRIPTION="Samba tevent library"
|
||||
HOMEPAGE="http://tevent.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
|
||||
IUSE="python"
|
||||
|
||||
RDEPEND=">=sys-libs/talloc-2.1.5[${MULTILIB_USEDEP}]
|
||||
python? ( ${PYTHON_DEPS} )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
# build system does not work with python3
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
waf-utils_src_configure \
|
||||
$(multilib_native_usex python '' '--disable-python')
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
# need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
|
||||
unset MAKEOPTS
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
multilib_is_native_abi && use python && python_domodule tevent.py
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit waf-utils multilib-minimal python-single-r1
|
||||
|
||||
DESCRIPTION="Samba tevent library"
|
||||
HOMEPAGE="http://tevent.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
|
||||
IUSE="python"
|
||||
|
||||
RDEPEND=">=sys-libs/talloc-2.1.5[${MULTILIB_USEDEP}]
|
||||
python? ( ${PYTHON_DEPS} )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
# build system does not work with python3
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
waf-utils_src_configure \
|
||||
$(multilib_native_usex python '' '--disable-python')
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
# need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
|
||||
unset MAKEOPTS
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
multilib_is_native_abi && use python && python_domodule tevent.py
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit waf-utils multilib-minimal python-single-r1
|
||||
|
||||
DESCRIPTION="Samba tevent library"
|
||||
HOMEPAGE="http://tevent.samba.org/"
|
||||
SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
|
||||
IUSE="python"
|
||||
|
||||
RDEPEND=">=sys-libs/talloc-2.1.5[${MULTILIB_USEDEP}]
|
||||
python? ( ${PYTHON_DEPS} )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
|
||||
${PYTHON_DEPS}
|
||||
"
|
||||
# build system does not work with python3
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
WAF_BINARY="${S}/buildtools/bin/waf"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
waf-utils_src_configure \
|
||||
$(multilib_native_usex python '' '--disable-python')
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
# need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
|
||||
unset MAKEOPTS
|
||||
waf-utils_src_compile
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
waf-utils_src_install
|
||||
|
||||
multilib_is_native_abi && use python && python_domodule tevent.py
|
||||
}
|
Loading…
Reference in New Issue
Block a user