commit:     9ddedade76f8233c0983cd943b556f20e2e60ef4
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 20:46:18 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 20:46:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddedade

net-libs/libtorrent-rasterbar: move stable keywords

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 .../libtorrent-rasterbar-1.1.10-r1.ebuild          |   2 +-
 .../libtorrent-rasterbar-1.1.10.ebuild             | 104 -------------------
 .../libtorrent-rasterbar-1.1.12-r1.ebuild          |   2 +-
 .../libtorrent-rasterbar-1.1.12.ebuild             | 104 -------------------
 .../libtorrent-rasterbar-1.1.13-r1.ebuild          |   2 +-
 .../libtorrent-rasterbar-1.1.13.ebuild             | 104 -------------------
 .../libtorrent-rasterbar-1.2.0.ebuild              | 112 ---------------------
 .../libtorrent-rasterbar-1.2.1.ebuild              | 111 --------------------
 8 files changed, 3 insertions(+), 538 deletions(-)

diff --git 
a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10-r1.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10-r1.ebuild
index bad9c6cc435..64ee98e5ca6 100644
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10-r1.ebuild
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_
 
 LICENSE="BSD"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 IUSE="debug +dht doc examples libressl python +ssl static-libs test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild
deleted file mode 100644
index de5e91692fd..00000000000
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit distutils-r1 flag-o-matic
-
-MY_PV=$(ver_rs 1-2 '_')
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="https://libtorrent.org";
-SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0/9"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-IUSE="debug +dht doc examples libressl python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       dev-libs/boost:=[threads]
-       virtual/libiconv
-       examples? ( !net-p2p/mldonkey )
-       python? (
-               ${PYTHON_DEPS}
-               dev-libs/boost:=[python,${PYTHON_USEDEP}]
-       )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:= )
-       )
-"
-DEPEND="${RDEPEND}
-       sys-devel/libtool
-"
-
-src_prepare() {
-       default
-
-       # bug 578026
-       # prepend -L${S}/... to ensure bindings link against the lib we just 
built
-       sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
-
-       # prepend -I${S}/... to ensure bindings use the right headers
-       sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
-
-       use python && distutils-r1_src_prepare
-}
-
-src_configure() {
-       append-cxxflags -std=c++11 # bug 634506
-
-       local myeconfargs=(
-               $(use_enable debug)
-               $(use_enable debug logging)
-               $(use_enable debug disk-stats)
-               $(use_enable dht dht $(usex debug logging $(usex ('yes' 'no'))))
-               $(use_enable examples)
-               $(use_enable ssl encryption)
-               $(use_enable static-libs static)
-               $(use_enable test tests)
-               --with-libiconv
-       )
-       econf "${myeconfargs[@]}"
-
-       if use python; then
-               python_configure() {
-                       econf "${myeconfargs[@]}" \
-                               --enable-python-binding \
-                               --with-boost-python="${EPYTHON#python}"
-               }
-               distutils-r1_src_configure
-       fi
-}
-
-src_compile() {
-       default
-
-       python_compile() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_compile
-       }
-       use python && distutils-r1_src_compile
-}
-
-src_install() {
-       use doc && HTML_DOCS+=( "${S}"/docs )
-
-       default
-
-       python_install() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_install
-       }
-       use python && distutils-r1_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

diff --git 
a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12-r1.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12-r1.ebuild
index 083a26319c0..732866f9170 100644
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12-r1.ebuild
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent_${MY_
 
 LICENSE="BSD"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 IUSE="debug +dht doc examples libressl python +ssl static-libs test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12.ebuild
deleted file mode 100644
index d047b646998..00000000000
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.12.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit distutils-r1 flag-o-matic
-
-MY_PV=$(ver_rs 1-2 '_')
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="https://libtorrent.org";
-SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent_${MY_PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0/9"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-IUSE="debug +dht doc examples libressl python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       dev-libs/boost:=[threads]
-       virtual/libiconv
-       examples? ( !net-p2p/mldonkey )
-       python? (
-               ${PYTHON_DEPS}
-               dev-libs/boost:=[python,${PYTHON_USEDEP}]
-       )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:= )
-       )
-"
-DEPEND="${RDEPEND}
-       sys-devel/libtool
-"
-
-src_prepare() {
-       default
-
-       # bug 578026
-       # prepend -L${S}/... to ensure bindings link against the lib we just 
built
-       sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
-
-       # prepend -I${S}/... to ensure bindings use the right headers
-       sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
-
-       use python && distutils-r1_src_prepare
-}
-
-src_configure() {
-       append-cxxflags -std=c++11 # bug 634506
-
-       local myeconfargs=(
-               $(use_enable debug)
-               $(use_enable debug logging)
-               $(use_enable debug disk-stats)
-               $(use_enable dht dht $(usex debug logging $(usex ('yes' 'no'))))
-               $(use_enable examples)
-               $(use_enable ssl encryption)
-               $(use_enable static-libs static)
-               $(use_enable test tests)
-               --with-libiconv
-       )
-       econf "${myeconfargs[@]}"
-
-       if use python; then
-               python_configure() {
-                       econf "${myeconfargs[@]}" \
-                               --enable-python-binding \
-                               --with-boost-python="${EPYTHON#python}"
-               }
-               distutils-r1_src_configure
-       fi
-}
-
-src_compile() {
-       default
-
-       python_compile() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_compile
-       }
-       use python && distutils-r1_src_compile
-}
-
-src_install() {
-       use doc && HTML_DOCS+=( "${S}"/docs )
-
-       default
-
-       python_install() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_install
-       }
-       use python && distutils-r1_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

diff --git 
a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13-r1.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13-r1.ebuild
index 7608777a633..cc10a56b422 100644
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13-r1.ebuild
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_
 
 LICENSE="BSD"
 SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 IUSE="debug +dht doc examples libressl python +ssl static-libs test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13.ebuild
deleted file mode 100644
index 8cc6099b395..00000000000
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.13.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit distutils-r1 flag-o-matic
-
-MY_PV=$(ver_rs 1-2 '_')
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="https://libtorrent.org";
-SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0/9"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-IUSE="debug +dht doc examples libressl python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       dev-libs/boost:=[threads]
-       virtual/libiconv
-       examples? ( !net-p2p/mldonkey )
-       python? (
-               ${PYTHON_DEPS}
-               dev-libs/boost:=[python,${PYTHON_USEDEP}]
-       )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:= )
-       )
-"
-DEPEND="${RDEPEND}
-       sys-devel/libtool
-"
-
-src_prepare() {
-       default
-
-       # bug 578026
-       # prepend -L${S}/... to ensure bindings link against the lib we just 
built
-       sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
-
-       # prepend -I${S}/... to ensure bindings use the right headers
-       sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
-
-       use python && distutils-r1_src_prepare
-}
-
-src_configure() {
-       append-cxxflags -std=c++11 # bug 634506
-
-       local myeconfargs=(
-               $(use_enable debug)
-               $(use_enable debug disk-stats)
-               $(use_enable debug logging)
-               $(use_enable dht)
-               $(use_enable examples)
-               $(use_enable ssl encryption)
-               $(use_enable static-libs static)
-               $(use_enable test tests)
-               --with-libiconv
-       )
-       econf "${myeconfargs[@]}"
-
-       if use python; then
-               python_configure() {
-                       econf "${myeconfargs[@]}" \
-                               --enable-python-binding \
-                               --with-boost-python="${EPYTHON#python}"
-               }
-               distutils-r1_src_configure
-       fi
-}
-
-src_compile() {
-       default
-
-       python_compile() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_compile
-       }
-       use python && distutils-r1_src_compile
-}
-
-src_install() {
-       use doc && HTML_DOCS+=( "${S}"/docs )
-
-       default
-
-       python_install() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_install
-       }
-       use python && distutils-r1_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild
deleted file mode 100644
index d00acbe4f8e..00000000000
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit autotools distutils-r1 flag-o-matic
-
-MY_PV=$(ver_rs 1-2 '_')
-MY_P=${PN/-rasterbar}_${MY_PV}
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="https://libtorrent.org";
-SRC_URI="https://github.com/arvidn/libtorrent/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug +dht doc examples libressl python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       dev-libs/boost:=[threads]
-       virtual/libiconv
-       examples? ( !net-p2p/mldonkey )
-       python? (
-               ${PYTHON_DEPS}
-               dev-libs/boost:=[python,${PYTHON_USEDEP}]
-       )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:= )
-       )
-"
-DEPEND="${RDEPEND}
-       sys-devel/libtool
-"
-
-S="${WORKDIR}/${PN/-rasterbar}-${MY_P}"
-
-PATCHES=( "${FILESDIR}"/fix-boost-1.70.patch )
-
-src_prepare() {
-       mkdir "${S}"/build-aux/ || die
-       touch "${S}"/build-aux/config.rpath || die
-       eautoreconf
-
-       default
-
-       # bug 578026
-       # prepend -L${S}/... to ensure bindings link against the lib we just 
built
-       sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
-
-       # prepend -I${S}/... to ensure bindings use the right headers
-       sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
-
-       use python && distutils-r1_src_prepare
-}
-
-src_configure() {
-       append-cxxflags -std=c++11 # bug 634506
-
-       local myeconfargs=(
-               $(use_enable debug)
-               $(use_enable debug export-all)
-               $(use_enable dht dht $(usex debug logging $(usex ('yes' 'no'))))
-               $(use_enable examples)
-               $(use_enable ssl encryption)
-               $(use_enable static-libs static)
-               $(use_enable test tests)
-               --with-libiconv
-       )
-       econf "${myeconfargs[@]}"
-
-       if use python; then
-               python_configure() {
-                       econf "${myeconfargs[@]}" \
-                               --enable-python-binding \
-                               --with-boost-python="${EPYTHON#python}"
-               }
-               distutils-r1_src_configure
-       fi
-}
-
-src_compile() {
-       default
-
-       python_compile() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_compile
-       }
-       use python && distutils-r1_src_compile
-}
-
-src_install() {
-       use doc && HTML_DOCS+=( "${S}"/docs )
-
-       default
-
-       python_install() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_install
-       }
-       use python && distutils-r1_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.1.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.1.ebuild
deleted file mode 100644
index 9f40198c2dd..00000000000
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.1.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-PYTHON_REQ_USE="threads"
-DISTUTILS_OPTIONAL=true
-DISTUTILS_IN_SOURCE_BUILD=true
-
-inherit autotools distutils-r1 flag-o-matic
-
-MY_PV=$(ver_rs 1-2 '_')
-MY_P=${PN/-rasterbar}-${MY_PV}
-
-DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
-HOMEPAGE="https://libtorrent.org https://github.com/arvidn/libtorrent";
-SRC_URI="https://github.com/arvidn/libtorrent/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/9"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug +dht doc examples libressl python +ssl static-libs test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-       dev-libs/boost:=[threads]
-       virtual/libiconv
-       examples? ( !net-p2p/mldonkey )
-       python? (
-               ${PYTHON_DEPS}
-               dev-libs/boost:=[python,${PYTHON_USEDEP}]
-       )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:= )
-       )
-"
-DEPEND="${RDEPEND}
-       sys-devel/libtool
-"
-
-S="${WORKDIR}/${PN/-rasterbar}-${MY_P}"
-
-src_prepare() {
-       mkdir "${S}"/build-aux/ || die
-       touch "${S}"/build-aux/config.rpath || die
-       eautoreconf
-
-       default
-
-       # bug 578026
-       # prepend -L${S}/... to ensure bindings link against the lib we just 
built
-       sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
-
-       # prepend -I${S}/... to ensure bindings use the right headers
-       sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
-
-       use python && distutils-r1_src_prepare
-}
-
-src_configure() {
-       append-cxxflags -std=c++11 # bug 634506
-
-       local myeconfargs=(
-               $(use_enable debug)
-               $(use_enable debug export-all)
-               $(use_enable debug logging)
-               $(use_enable dht)
-               $(use_enable examples)
-               $(use_enable ssl encryption)
-               $(use_enable static-libs static)
-               $(use_enable test tests)
-               --with-libiconv
-       )
-       econf "${myeconfargs[@]}"
-
-       if use python; then
-               python_configure() {
-                       econf "${myeconfargs[@]}" \
-                               --enable-python-binding \
-                               --with-boost-python="${EPYTHON#python}"
-               }
-               distutils-r1_src_configure
-       fi
-}
-
-src_compile() {
-       default
-
-       python_compile() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_compile
-       }
-       use python && distutils-r1_src_compile
-}
-
-src_install() {
-       use doc && HTML_DOCS+=( "${S}"/docs )
-
-       default
-
-       python_install() {
-               cd "${BUILD_DIR}/../bindings/python" || die
-               distutils-r1_python_install
-       }
-       use python && distutils-r1_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

Reply via email to