* [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/
@ 2018-09-11 22:58 ILMostro
0 siblings, 0 replies; 5+ messages in thread
From: ILMostro @ 2018-09-11 22:58 UTC (permalink / raw
To: gentoo-commits
commit: 7904712c71e0f50966925ab783bf3e7201595ddb
Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
AuthorDate: Tue Sep 11 22:58:29 2018 +0000
Commit: ILMostro <ilmostro7 <AT> gmail <DOT> com>
CommitDate: Tue Sep 11 22:58:29 2018 +0000
URL: https://gitweb.gentoo.org/repo/user/ag-ops.git/commit/?id=7904712c
net-irc/weechat: revbump
gentoo repo has weechat-2.2-r1 finally. This increment should suffice to prevent ag-ops version from being overwritten by that
provided in gentoo repo.
net-irc/weechat/weechat-2.2.ebuild | 151 -------------------------------------
1 file changed, 151 deletions(-)
diff --git a/net-irc/weechat/weechat-2.2.ebuild b/net-irc/weechat/weechat-2.2.ebuild
deleted file mode 100644
index 1cd2258..0000000
--- a/net-irc/weechat/weechat-2.2.ebuild
+++ /dev/null
@@ -1,151 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-CMAKE_MAKEFILE_GENERATOR=emake
-inherit python-single-r1 cmake-utils
-
-if [[ ${PV} == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/weechat/weechat.git"
-else
- SRC_URI="https://weechat.org/files/src/${P}.tar.xz"
- KEYWORDS="~amd64 ~x86 ~x64-macos"
-fi
-
-DESCRIPTION="Portable and multi-interface IRC client"
-HOMEPAGE="https://weechat.org/"
-
-LICENSE="GPL-3"
-SLOT="0"
-
-NETWORKS="+irc"
-PLUGINS="+alias +buflist +charset +exec +fset +fifo +logger +relay +scripts +spell +trigger +xfer"
-# dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
-SCRIPT_LANGS="guile lua +perl php +python ruby tcl"
-LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
-IUSE="doc nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/libgcrypt:0=
- net-misc/curl[ssl]
- sys-libs/ncurses:0=
- sys-libs/zlib
- charset? ( virtual/libiconv )
- guile? ( >=dev-scheme/guile-2.0 )
- lua? ( dev-lang/lua:* )
- nls? ( virtual/libintl )
- perl? ( dev-lang/perl:= )
- php? ( >=dev-lang/php-7.0:* )
- python? ( ${PYTHON_DEPS} )
- ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 dev-lang/ruby:2.2 ) )
- ssl? ( net-libs/gnutls )
- spell? ( app-text/aspell )
- tcl? ( >=dev-lang/tcl-8.4.15:0= )
-"
-DEPEND="${RDEPEND}
- doc? (
- >=dev-ruby/asciidoctor-1.5.4
- dev-util/source-highlight
- )
- nls? ( >=sys-devel/gettext-0.15 )
- test? ( dev-util/cpputest )
-"
-
-DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc ReleaseNotes.adoc README.adoc"
-
-# tests need to be fixed to not use system plugins if weechat is already installed
-RESTRICT="test"
-
-PATCHES=( "${FILESDIR}"/${PN}-2.1-tinfo.patch )
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- cmake-utils_src_prepare
-
- # fix libdir placement
- sed -i \
- -e "s:lib/:$(get_libdir)/:g" \
- -e "s:lib\":$(get_libdir)\":g" \
- CMakeLists.txt || die "sed failed"
-
- # install only required translations
- local i
- for i in ${LANGS} ; do
- if ! has ${i} ${LINGUAS-${i}} ; then
- sed -i \
- -e "/${i}.po/d" \
- po/CMakeLists.txt || die
- fi
- done
-
- # install only required documentation ; en always
- for i in $(grep add_subdirectory doc/CMakeLists.txt \
- | sed -e 's/.*add_subdirectory(\(..\)).*/\1/' -e '/en/d'); do
- if ! has ${i} ${LINGUAS-${i}} ; then
- sed -i \
- -e '/add_subdirectory('${i}')/d' \
- doc/CMakeLists.txt || die
- fi
- done
-
- # install docs in correct directory
- sed -i "s#\${SHAREDIR}/doc/\${PROJECT_NAME}#\0-${PV}/html#" doc/*/CMakeLists.txt || die
-
- if [[ ${CHOST} == *-darwin* ]]; then
- # fix linking error on Darwin
- sed -i "s/+ get_config_var('LINKFORSHARED')//" \
- cmake/FindPython.cmake || die
- # allow to find the plugins by default
- sed -i 's/".so,.dll"/".bundle,.so,.dll"/' \
- src/core/wee-config.c || die
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_NCURSES=ON
- -DENABLE_NLS=$(usex nls)
- -DENABLE_GNUTLS=$(usex ssl)
- -DENABLE_LARGEFILE=ON
- -DENABLE_ALIAS=$(usex alias)
- -DENABLE_ASPELL=$(usex spell)
- -DENABLE_BUFLIST=$(usex buflist)
- -DENABLE_CHARSET=$(usex charset)
- -DENABLE_EXEC=$(usex exec)
- -DENABLE_FSET=$(usex fset)
- -DENABLE_FIFO=$(usex fifo)
- -DENABLE_IRC=$(usex irc)
- -DENABLE_LOGGER=$(usex logger)
- -DENABLE_RELAY=$(usex relay)
- -DENABLE_SCRIPT=$(usex scripts)
- -DENABLE_SCRIPTS=$(usex scripts)
- -DENABLE_PERL=$(usex perl)
- -DENABLE_PHP=$(usex php)
- -DENABLE_PYTHON=$(usex python)
- -DENABLE_RUBY=$(usex ruby)
- -DENABLE_LUA=$(usex lua)
- -DENABLE_TCL=$(usex tcl)
- -DENABLE_GUILE=$(usex guile)
- -DENABLE_JAVASCRIPT=OFF
- -DENABLE_TRIGGER=$(usex trigger)
- -DENABLE_XFER=$(usex xfer)
- -DENABLE_DOC=$(usex doc)
- -DENABLE_TESTS=$(usex test)
- )
-
- if use python; then
- python_export PYTHON_LIBPATH
- mycmakeargs+=(
- -DPYTHON_EXECUTABLE="${PYTHON}"
- -DPYTHON_LIBRARY="${PYTHON_LIBPATH}"
- )
- fi
-
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/
@ 2018-09-12 2:05 ILMostro
0 siblings, 0 replies; 5+ messages in thread
From: ILMostro @ 2018-09-12 2:05 UTC (permalink / raw
To: gentoo-commits
commit: 8d8547f6a91138293bb860d2d88efb45622f49bf
Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
AuthorDate: Wed Sep 12 02:05:34 2018 +0000
Commit: ILMostro <ilmostro7 <AT> gmail <DOT> com>
CommitDate: Wed Sep 12 02:05:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/user/ag-ops.git/commit/?id=8d8547f6
net-irc/weechat: revbump
gentoo repo has weechat-2.2-r1 finally. This increment should suffice to prevent ag-ops version from being overwritten by that
provided in gentoo repo.
forgot to add the ebuild file
net-irc/weechat/weechat-2.2-r2.ebuild | 151 ++++++++++++++++++++++++++++++++++
1 file changed, 151 insertions(+)
diff --git a/net-irc/weechat/weechat-2.2-r2.ebuild b/net-irc/weechat/weechat-2.2-r2.ebuild
new file mode 100644
index 0000000..1cd2258
--- /dev/null
+++ b/net-irc/weechat/weechat-2.2-r2.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+CMAKE_MAKEFILE_GENERATOR=emake
+inherit python-single-r1 cmake-utils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/weechat/weechat.git"
+else
+ SRC_URI="https://weechat.org/files/src/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86 ~x64-macos"
+fi
+
+DESCRIPTION="Portable and multi-interface IRC client"
+HOMEPAGE="https://weechat.org/"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+NETWORKS="+irc"
+PLUGINS="+alias +buflist +charset +exec +fset +fifo +logger +relay +scripts +spell +trigger +xfer"
+# dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
+SCRIPT_LANGS="guile lua +perl php +python ruby tcl"
+LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
+IUSE="doc nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+ dev-libs/libgcrypt:0=
+ net-misc/curl[ssl]
+ sys-libs/ncurses:0=
+ sys-libs/zlib
+ charset? ( virtual/libiconv )
+ guile? ( >=dev-scheme/guile-2.0 )
+ lua? ( dev-lang/lua:* )
+ nls? ( virtual/libintl )
+ perl? ( dev-lang/perl:= )
+ php? ( >=dev-lang/php-7.0:* )
+ python? ( ${PYTHON_DEPS} )
+ ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 dev-lang/ruby:2.2 ) )
+ ssl? ( net-libs/gnutls )
+ spell? ( app-text/aspell )
+ tcl? ( >=dev-lang/tcl-8.4.15:0= )
+"
+DEPEND="${RDEPEND}
+ doc? (
+ >=dev-ruby/asciidoctor-1.5.4
+ dev-util/source-highlight
+ )
+ nls? ( >=sys-devel/gettext-0.15 )
+ test? ( dev-util/cpputest )
+"
+
+DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc ReleaseNotes.adoc README.adoc"
+
+# tests need to be fixed to not use system plugins if weechat is already installed
+RESTRICT="test"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.1-tinfo.patch )
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ cmake-utils_src_prepare
+
+ # fix libdir placement
+ sed -i \
+ -e "s:lib/:$(get_libdir)/:g" \
+ -e "s:lib\":$(get_libdir)\":g" \
+ CMakeLists.txt || die "sed failed"
+
+ # install only required translations
+ local i
+ for i in ${LANGS} ; do
+ if ! has ${i} ${LINGUAS-${i}} ; then
+ sed -i \
+ -e "/${i}.po/d" \
+ po/CMakeLists.txt || die
+ fi
+ done
+
+ # install only required documentation ; en always
+ for i in $(grep add_subdirectory doc/CMakeLists.txt \
+ | sed -e 's/.*add_subdirectory(\(..\)).*/\1/' -e '/en/d'); do
+ if ! has ${i} ${LINGUAS-${i}} ; then
+ sed -i \
+ -e '/add_subdirectory('${i}')/d' \
+ doc/CMakeLists.txt || die
+ fi
+ done
+
+ # install docs in correct directory
+ sed -i "s#\${SHAREDIR}/doc/\${PROJECT_NAME}#\0-${PV}/html#" doc/*/CMakeLists.txt || die
+
+ if [[ ${CHOST} == *-darwin* ]]; then
+ # fix linking error on Darwin
+ sed -i "s/+ get_config_var('LINKFORSHARED')//" \
+ cmake/FindPython.cmake || die
+ # allow to find the plugins by default
+ sed -i 's/".so,.dll"/".bundle,.so,.dll"/' \
+ src/core/wee-config.c || die
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_NCURSES=ON
+ -DENABLE_NLS=$(usex nls)
+ -DENABLE_GNUTLS=$(usex ssl)
+ -DENABLE_LARGEFILE=ON
+ -DENABLE_ALIAS=$(usex alias)
+ -DENABLE_ASPELL=$(usex spell)
+ -DENABLE_BUFLIST=$(usex buflist)
+ -DENABLE_CHARSET=$(usex charset)
+ -DENABLE_EXEC=$(usex exec)
+ -DENABLE_FSET=$(usex fset)
+ -DENABLE_FIFO=$(usex fifo)
+ -DENABLE_IRC=$(usex irc)
+ -DENABLE_LOGGER=$(usex logger)
+ -DENABLE_RELAY=$(usex relay)
+ -DENABLE_SCRIPT=$(usex scripts)
+ -DENABLE_SCRIPTS=$(usex scripts)
+ -DENABLE_PERL=$(usex perl)
+ -DENABLE_PHP=$(usex php)
+ -DENABLE_PYTHON=$(usex python)
+ -DENABLE_RUBY=$(usex ruby)
+ -DENABLE_LUA=$(usex lua)
+ -DENABLE_TCL=$(usex tcl)
+ -DENABLE_GUILE=$(usex guile)
+ -DENABLE_JAVASCRIPT=OFF
+ -DENABLE_TRIGGER=$(usex trigger)
+ -DENABLE_XFER=$(usex xfer)
+ -DENABLE_DOC=$(usex doc)
+ -DENABLE_TESTS=$(usex test)
+ )
+
+ if use python; then
+ python_export PYTHON_LIBPATH
+ mycmakeargs+=(
+ -DPYTHON_EXECUTABLE="${PYTHON}"
+ -DPYTHON_LIBRARY="${PYTHON_LIBPATH}"
+ )
+ fi
+
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/
@ 2018-10-22 3:15 ILMostro
0 siblings, 0 replies; 5+ messages in thread
From: ILMostro @ 2018-10-22 3:15 UTC (permalink / raw
To: gentoo-commits
commit: e166bd2e68e222e2af2ccb86a41c058487cb9727
Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
AuthorDate: Mon Oct 22 03:14:15 2018 +0000
Commit: ILMostro <ilmostro7 <AT> gmail <DOT> com>
CommitDate: Mon Oct 22 03:14:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/user/ag-ops.git/commit/?id=e166bd2e
net-irc/weechat: version bump
weechat v2.3 released on 20181021
net-irc/weechat/weechat-2.3-r2.ebuild | 151 ++++++++++++++++++++++++++++++++++
1 file changed, 151 insertions(+)
diff --git a/net-irc/weechat/weechat-2.3-r2.ebuild b/net-irc/weechat/weechat-2.3-r2.ebuild
new file mode 100644
index 0000000..43661e9
--- /dev/null
+++ b/net-irc/weechat/weechat-2.3-r2.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,,3_5,3_6} )
+CMAKE_MAKEFILE_GENERATOR=emake
+inherit python-single-r1 cmake-utils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/weechat/weechat.git"
+else
+ SRC_URI="https://weechat.org/files/src/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86 ~x64-macos"
+fi
+
+DESCRIPTION="Portable and multi-interface IRC client"
+HOMEPAGE="https://weechat.org/"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+NETWORKS="+irc"
+PLUGINS="+alias +buflist +charset +exec +fset +fifo +logger +relay +scripts +spell +trigger +xfer"
+# dev-lang/v8 was dropped from Gentoo so we can't enable javascript support
+SCRIPT_LANGS="guile lua +perl php +python ruby tcl"
+LANGS=" cs de es fr hu it ja pl pt pt_BR ru tr"
+IUSE="doc nls +ssl test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+ dev-libs/libgcrypt:0=
+ net-misc/curl[ssl]
+ sys-libs/ncurses:0=
+ sys-libs/zlib
+ charset? ( virtual/libiconv )
+ guile? ( >=dev-scheme/guile-2.0 )
+ lua? ( dev-lang/lua:* )
+ nls? ( virtual/libintl )
+ perl? ( dev-lang/perl:= )
+ php? ( >=dev-lang/php-7.0:* )
+ python? ( ${PYTHON_DEPS} )
+ ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 dev-lang/ruby:2.2 ) )
+ ssl? ( net-libs/gnutls )
+ spell? ( app-text/aspell )
+ tcl? ( >=dev-lang/tcl-8.4.15:0= )
+"
+DEPEND="${RDEPEND}
+ doc? (
+ >=dev-ruby/asciidoctor-1.5.4
+ dev-util/source-highlight
+ )
+ nls? ( >=sys-devel/gettext-0.15 )
+ test? ( dev-util/cpputest )
+"
+
+DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc ReleaseNotes.adoc README.adoc"
+
+# tests need to be fixed to not use system plugins if weechat is already installed
+RESTRICT="test"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.1-tinfo.patch )
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ cmake-utils_src_prepare
+
+ # fix libdir placement
+ sed -i \
+ -e "s:lib/:$(get_libdir)/:g" \
+ -e "s:lib\":$(get_libdir)\":g" \
+ CMakeLists.txt || die "sed failed"
+
+ # install only required translations
+ local i
+ for i in ${LANGS} ; do
+ if ! has ${i} ${LINGUAS-${i}} ; then
+ sed -i \
+ -e "/${i}.po/d" \
+ po/CMakeLists.txt || die
+ fi
+ done
+
+ # install only required documentation ; en always
+ for i in $(grep add_subdirectory doc/CMakeLists.txt \
+ | sed -e 's/.*add_subdirectory(\(..\)).*/\1/' -e '/en/d'); do
+ if ! has ${i} ${LINGUAS-${i}} ; then
+ sed -i \
+ -e '/add_subdirectory('${i}')/d' \
+ doc/CMakeLists.txt || die
+ fi
+ done
+
+ # install docs in correct directory
+ sed -i "s#\${SHAREDIR}/doc/\${PROJECT_NAME}#\0-${PV}/html#" doc/*/CMakeLists.txt || die
+
+ if [[ ${CHOST} == *-darwin* ]]; then
+ # fix linking error on Darwin
+ sed -i "s/+ get_config_var('LINKFORSHARED')//" \
+ cmake/FindPython.cmake || die
+ # allow to find the plugins by default
+ sed -i 's/".so,.dll"/".bundle,.so,.dll"/' \
+ src/core/wee-config.c || die
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_NCURSES=ON
+ -DENABLE_NLS=$(usex nls)
+ -DENABLE_GNUTLS=$(usex ssl)
+ -DENABLE_LARGEFILE=ON
+ -DENABLE_ALIAS=$(usex alias)
+ -DENABLE_ASPELL=$(usex spell)
+ -DENABLE_BUFLIST=$(usex buflist)
+ -DENABLE_CHARSET=$(usex charset)
+ -DENABLE_EXEC=$(usex exec)
+ -DENABLE_FSET=$(usex fset)
+ -DENABLE_FIFO=$(usex fifo)
+ -DENABLE_IRC=$(usex irc)
+ -DENABLE_LOGGER=$(usex logger)
+ -DENABLE_RELAY=$(usex relay)
+ -DENABLE_SCRIPT=$(usex scripts)
+ -DENABLE_SCRIPTS=$(usex scripts)
+ -DENABLE_PERL=$(usex perl)
+ -DENABLE_PHP=$(usex php)
+ -DENABLE_PYTHON=$(usex python)
+ -DENABLE_RUBY=$(usex ruby)
+ -DENABLE_LUA=$(usex lua)
+ -DENABLE_TCL=$(usex tcl)
+ -DENABLE_GUILE=$(usex guile)
+ -DENABLE_JAVASCRIPT=OFF
+ -DENABLE_TRIGGER=$(usex trigger)
+ -DENABLE_XFER=$(usex xfer)
+ -DENABLE_DOC=$(usex doc)
+ -DENABLE_TESTS=$(usex test)
+ )
+
+ if use python; then
+ python_export PYTHON_LIBPATH
+ mycmakeargs+=(
+ -DPYTHON_EXECUTABLE="${PYTHON}"
+ -DPYTHON_LIBRARY="${PYTHON_LIBPATH}"
+ )
+ fi
+
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/
@ 2018-10-22 3:16 ILMostro
0 siblings, 0 replies; 5+ messages in thread
From: ILMostro @ 2018-10-22 3:16 UTC (permalink / raw
To: gentoo-commits
commit: 6a7f25f177fc659235c9400f397c52fd60019f02
Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
AuthorDate: Mon Oct 22 03:16:47 2018 +0000
Commit: ILMostro <ilmostro7 <AT> gmail <DOT> com>
CommitDate: Mon Oct 22 03:16:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/user/ag-ops.git/commit/?id=6a7f25f1
net-irc/weechat: typo regarding python compat
net-irc/weechat/weechat-2.3-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-irc/weechat/weechat-2.3-r2.ebuild b/net-irc/weechat/weechat-2.3-r2.ebuild
index 43661e9..3958478 100644
--- a/net-irc/weechat/weechat-2.3-r2.ebuild
+++ b/net-irc/weechat/weechat-2.3-r2.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
CMAKE_MAKEFILE_GENERATOR=emake
inherit python-single-r1 cmake-utils
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/
@ 2018-10-22 4:18 ILMostro
0 siblings, 0 replies; 5+ messages in thread
From: ILMostro @ 2018-10-22 4:18 UTC (permalink / raw
To: gentoo-commits
commit: f8b467f888ee3b7b6fb4c8fbc1b9c95f3d6ce6ca
Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
AuthorDate: Mon Oct 22 04:18:05 2018 +0000
Commit: ILMostro <ilmostro7 <AT> gmail <DOT> com>
CommitDate: Mon Oct 22 04:18:05 2018 +0000
URL: https://gitweb.gentoo.org/repo/user/ag-ops.git/commit/?id=f8b467f8
net-irc/weechat: manifest update for weechat-2.3
net-irc/weechat/Manifest | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-irc/weechat/Manifest b/net-irc/weechat/Manifest
index 4a1200f..b0a04ca 100644
--- a/net-irc/weechat/Manifest
+++ b/net-irc/weechat/Manifest
@@ -1,3 +1,4 @@
DIST weechat-2.0.1.tar.xz 1967336 SHA256 6943582eabbd8a6fb6dca860a86f896492cae5fceacaa396dbc9eeaa722305d1 SHA512 3947e79a0ac8dce7605905c39039bedf9ba2af4778ee6905f12ca75786b62f3081568ce9426be251e65bad2837ddcf0664cbb08059f898d4ac60171325a94e74 WHIRLPOOL 386af3ac1bf40b7682d47bb1da598fd271ac19a45d5a8f2b1757fb5821960bf1a9b79d6628844828b0963aee0cd6b5f16e91e87aef9d5c1d9378eba39a256bc8
DIST weechat-2.1.tar.xz 1990748 SHA256 cda0f81ff8243fd25cca76c8e490e2fdb5b8fbb2554d7aa87cb3b0beda16ed38 SHA512 4bea8c0c4467b81e2241d68e5c6425274f0fe15d853ddac46ddf3cce481e03549660d6083277719d462ec5d0dea4b31d89f6b3f51f92f12908213232d2d807df WHIRLPOOL b3731593c68f15961b0f67066bd211019307944dffb91fbb9918af50e167413fb06cf9dc0c355dfd9ef4a2ebe352ea371f45fe314cbe7de98853541876745f93
DIST weechat-2.2.tar.xz 2007944 SHA256 48cf555fae00d6ce876d08bb802707b657a1134808762630837617392899a12f SHA512 bb5103c266f6e6850250a5e0602ff26be06289ea1e13511b111f975eb492a0bbe508b2a6088b15e5bfd5278341e9dd5ee0facfb08d23ff7335c5c18bc21e4b02 WHIRLPOOL 95da2b418e099a61c99ff826d47920d7785d9efebf22da1199f58d28ad0b21436adf8ce955d1cfd5133941ea860b0bcb2f2bd0a4a245eb359f439013aa719c99
+DIST weechat-2.3.tar.xz 2025652 SHA256 ef8654313bfb0ca92e27cf579efb2d9b17e53505e615bf3d71a51aef44e56a5f SHA512 0de827850de5c70c528e1a8cfa44220c3d48d6767df61a8a6283123173ba63b4c8554d5334a8b14976d19602c36bbc27d89ebbd201ccd8c048d50edc3a4ea19b WHIRLPOOL e5ef9938b4efdc28153eca5eef26dda881bb122bd5b14c58aeadb565c33511f02d586f2c7774f0c7e0132d027c0b20668575bc826c14350ee9dab261960a8aa5
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-10-22 4:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-11 22:58 [gentoo-commits] repo/user/ag-ops:master commit in: net-irc/weechat/ ILMostro
-- strict thread matches above, loose matches on Subject: below --
2018-09-12 2:05 ILMostro
2018-10-22 3:15 ILMostro
2018-10-22 3:16 ILMostro
2018-10-22 4:18 ILMostro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox