public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-07  6:52 Pacho Ramos
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos @ 2016-08-07  6:52 UTC (permalink / raw
  To: gentoo-commits

commit:     80fe250d7e2aff16f74f52b309218cca7f725ba9
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  7 06:41:37 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Aug  7 06:41:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80fe250d

media-sound/pms: Cleanup per bug #269977

Package-Manager: portage-2.3.0

 media-sound/pms/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/media-sound/pms/metadata.xml b/media-sound/pms/metadata.xml
index a60b806..2476d56 100644
--- a/media-sound/pms/metadata.xml
+++ b/media-sound/pms/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>wired@gentoo.org</email>
-		<name>Alex Alexander</name>
-	</maintainer>
 	<use>
 		<flag name="regex">Enable regular expression searches
 			using <pkg>dev-libs/boost</pkg></flag>


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-11 20:57 Marek Szuba
  0 siblings, 0 replies; 16+ messages in thread
From: Marek Szuba @ 2016-08-11 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     c6c50d144477c6aad74dbbebb36ef3f1e5410d05
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Thu Aug 11 16:27:01 2016 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 20:56:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6c50d14

media-sound/pms: live ebuild overhaul

Updated homepage and repo URIs

Bumped EAPI to version 6

Fixed build with ncurses[tinfo]

Added dependency on media-libs/libmpdclient

Removed obsolete boost dependency

Updated USE-flags and upstream metadata

Added new maintainer info

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 media-sound/pms/metadata.xml    | 13 ++++++++++---
 media-sound/pms/pms-9999.ebuild | 34 +++++++++++++++-------------------
 2 files changed, 25 insertions(+), 22 deletions(-)

diff --git a/media-sound/pms/metadata.xml b/media-sound/pms/metadata.xml
index 2476d56..aa181ca 100644
--- a/media-sound/pms/metadata.xml
+++ b/media-sound/pms/metadata.xml
@@ -1,11 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+	<maintainer type="person">
+		<email>hilobakho@gmail.com</email>
+		<name>Mykyta Holubakha</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Gentoo Proxy Maintainers Project</name>
+	</maintainer>
 	<use>
-		<flag name="regex">Enable regular expression searches
-			using <pkg>dev-libs/boost</pkg></flag>
+		<flag name="regex">Enable regular expression searches</flag>
 	</use>
 	<upstream>
-		<remote-id type="sourceforge">pms</remote-id>
+		<remote-id type="github">ambientsound/pms</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 7ead914..96f9c35 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -1,16 +1,14 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=2
+EAPI=6
 
-inherit autotools git-2
+inherit autotools flag-o-matic git-r3
 
 DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="http://pms.sourceforge.net/"
-SRC_URI=""
-
-EGIT_REPO_URI="git://pms.git.sourceforge.net/gitroot/pms/pms"
+HOMEPAGE="https://ambientsound.github.io/pms"
+EGIT_REPO_URI="https://github.com/ambientsound/pms.git"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -18,30 +16,28 @@ KEYWORDS=""
 IUSE="regex"
 
 RDEPEND="
-	sys-libs/ncurses
+	sys-libs/ncurses[unicode]
 	dev-libs/glib:2
-	regex? ( >=dev-libs/boost-1.36 )
+	media-libs/libmpdclient
 "
 DEPEND="
 	virtual/pkgconfig
 	${RDEPEND}
 "
 
+DOCS=( AUTHORS README TODO )
+
 src_prepare() {
-	# bug #424717
-	sed -i "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die "sed failed"
+	eapply_user
 
 	eautoreconf
 }
 
 src_configure() {
-	econf \
-		$(use_enable regex) ||
-			die "configure failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "installation failed"
+	# Required for ncurses[tinfo]
+	append-cppflags $(pkg-config --cflags ncursesw)
+	append-libs $(pkg-config --libs ncursesw)
 
-	dodoc AUTHORS README TODO
+	econf \
+		$(use_enable regex)
 }


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-25 19:07 Kristian Fiskerstrand
  0 siblings, 0 replies; 16+ messages in thread
From: Kristian Fiskerstrand @ 2016-08-25 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     a82547f902dc0328316ef2617945d409058e5654
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Thu Aug 25 18:28:57 2016 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 19:06:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82547f9

media-sound/pms-9999: match ncurses slot

 media-sound/pms/pms-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 96f9c35..af181ef 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -16,7 +16,7 @@ KEYWORDS=""
 IUSE="regex"
 
 RDEPEND="
-	sys-libs/ncurses[unicode]
+	sys-libs/ncurses:=[unicode]
 	dev-libs/glib:2
 	media-libs/libmpdclient
 "


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-25 19:07 Kristian Fiskerstrand
  0 siblings, 0 replies; 16+ messages in thread
From: Kristian Fiskerstrand @ 2016-08-25 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     1a0a1691f6f70cad55b538de0a7f947da297f822
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Tue Aug 16 17:12:39 2016 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 19:06:35 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a0a1691

media-sound/pms: revbump to 0.42-r2

EAPI bump to 6

fixed bug #526530 (build with ncurses[tinfo])

fixed bug #351996 (a buffer overflow)

updated HOMEPAGE, SRC_URI and the year in the header

 media-sound/pms/Manifest           |  1 +
 media-sound/pms/pms-0.42-r2.ebuild | 52 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
index 0517e1b..7cbc494 100644
--- a/media-sound/pms/Manifest
+++ b/media-sound/pms/Manifest
@@ -1 +1,2 @@
 DIST pms-0.42.tar.bz2 196053 SHA256 96bf942b08cba10ee891a63eeccad307fd082ef3bd20be879f189e1959e775a6 SHA512 34fea13f524154455d9a44eb5c885ae3a555adc5e495234c0e720c7351b0e9169226cede08b65eb8236d6b0f35eaeae4968baa374dfd4f53c6cc164cb669ab0a WHIRLPOOL 45a0bb0322541cad6dffb14bb28c1156ce85be7ced57cc7a8dcc12d6b3f298d811f564b522d0110eeceb9fe697bf402541384d611b94fb211bda2181e68b1d1f
+DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c

diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild
new file mode 100644
index 00000000..d1f9729
--- /dev/null
+++ b/media-sound/pms/pms-0.42-r2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils autotools flag-o-matic
+
+DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
+HOMEPAGE="https://ambientsound.github.io/pms/"
+SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="regex"
+
+RDEPEND="
+	sys-libs/ncurses:=
+	dev-libs/glib:2
+	regex? ( dev-libs/boost:= )
+"
+DEPEND="
+	virtual/pkgconfig
+	${RDEPEND}
+"
+
+DOCS=( AUTHORS README TODO )
+
+src_prepare() {
+	# bug #424717
+	sed -i -e "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die 'sed on Makefile.am failed'
+
+	# Compatibility with automake 1.14
+	sed -i -e '/AM_INIT_AUTOMAKE/s/-Werror/subdir-objects/' configure.ac || die 'sed on configure.ac failed'
+
+	# bug #351995
+	sed -i -e '394s/BUFFER/ERRORSTR/' src/libmpdclient.c || die 'sed on libmpdclient.c failed'
+
+	eapply_user
+
+	eautoreconf
+}
+
+src_configure() {
+	# fixes build with ncurses[tinfo], bug #526530
+	append-cflags $(pkg-config --cflags ncursesw)
+	append-libs $(pkg-config --libs ncursesw)
+
+	econf \
+		$(use_enable regex)
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-25 19:07 Kristian Fiskerstrand
  0 siblings, 0 replies; 16+ messages in thread
From: Kristian Fiskerstrand @ 2016-08-25 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     7bfbcb11dd61ac980b5380b29599d73071af9286
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Tue Aug 16 17:14:41 2016 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 19:06:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bfbcb11

media-sound/pms: dropped old 0.42-r1 from the tree

 media-sound/pms/Manifest           |  1 -
 media-sound/pms/pms-0.42-r1.ebuild | 45 --------------------------------------
 2 files changed, 46 deletions(-)

diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
index 7cbc494..c484daa 100644
--- a/media-sound/pms/Manifest
+++ b/media-sound/pms/Manifest
@@ -1,2 +1 @@
-DIST pms-0.42.tar.bz2 196053 SHA256 96bf942b08cba10ee891a63eeccad307fd082ef3bd20be879f189e1959e775a6 SHA512 34fea13f524154455d9a44eb5c885ae3a555adc5e495234c0e720c7351b0e9169226cede08b65eb8236d6b0f35eaeae4968baa374dfd4f53c6cc164cb669ab0a WHIRLPOOL 45a0bb0322541cad6dffb14bb28c1156ce85be7ced57cc7a8dcc12d6b3f298d811f564b522d0110eeceb9fe697bf402541384d611b94fb211bda2181e68b1d1f
 DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c

diff --git a/media-sound/pms/pms-0.42-r1.ebuild b/media-sound/pms/pms-0.42-r1.ebuild
deleted file mode 100644
index 67e01f4..00000000
--- a/media-sound/pms/pms-0.42-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="http://pms.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="regex"
-
-RDEPEND="
-	sys-libs/ncurses
-	dev-libs/glib:2
-	regex? ( dev-libs/boost:= )
-"
-DEPEND="
-	virtual/pkgconfig
-	${RDEPEND}
-"
-
-DOCS=( AUTHORS README TODO )
-
-src_prepare() {
-	# bug #424717
-	sed -i -e "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die 'sed on Makefile.am failed'
-
-	# Compatibility with automake 1.14
-	sed -i -e '/AM_INIT_AUTOMAKE/s/-Werror/subdir-objects/' configure.ac || die 'sed on configure.ac failed'
-
-	epatch_user
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable regex)
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-08-25 19:07 Kristian Fiskerstrand
  0 siblings, 0 replies; 16+ messages in thread
From: Kristian Fiskerstrand @ 2016-08-25 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f8c37ed6cb707f44a21df0c1561dba6b46dad064
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Tue Aug 16 17:14:10 2016 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 19:06:45 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c37ed6

media-sound/pms: dropped old 0.42 from the tree

 media-sound/pms/pms-0.42.ebuild | 45 -----------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/media-sound/pms/pms-0.42.ebuild b/media-sound/pms/pms-0.42.ebuild
deleted file mode 100644
index a6d0e14..00000000
--- a/media-sound/pms/pms-0.42.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-inherit autotools
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="http://pms.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="regex"
-
-RDEPEND="
-	sys-libs/ncurses
-	dev-libs/glib:2
-	regex? ( >=dev-libs/boost-1.36 )
-"
-DEPEND="
-	virtual/pkgconfig
-	${RDEPEND}
-"
-
-src_prepare() {
-	# bug #424717
-	sed -i "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die "sed failed"
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable regex) ||
-			die "configure failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "installation failed"
-
-	dodoc AUTHORS README TODO
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2016-09-13  8:46 Marek Szuba
  0 siblings, 0 replies; 16+ messages in thread
From: Marek Szuba @ 2016-09-13  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     04ca133096356768248a6ab45183e5b074be2652
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Thu Sep  8 19:24:21 2016 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Sep 13 08:45:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ca1330

media-sound/pms: fix numerous QA issues in 0.42-r2

specify correct license

fix ncurses slot depend

add missing virtual/libintl depend and sys-devel/gettext rdepend

use tc-getPKG_CONFIG from toolchain funcs

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 media-sound/pms/pms-0.42-r2.ebuild | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild
index d1f9729..13e7ff0 100644
--- a/media-sound/pms/pms-0.42-r2.ebuild
+++ b/media-sound/pms/pms-0.42-r2.ebuild
@@ -4,24 +4,26 @@
 
 EAPI=6
 
-inherit eutils autotools flag-o-matic
+inherit autotools eutils flag-o-matic toolchain-funcs
 
 DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
 HOMEPAGE="https://ambientsound.github.io/pms/"
 SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="regex"
 
 RDEPEND="
-	sys-libs/ncurses:=
+	sys-libs/ncurses:0=
 	dev-libs/glib:2
+	virtual/libintl
 	regex? ( dev-libs/boost:= )
 "
 DEPEND="
 	virtual/pkgconfig
+	sys-devel/gettext
 	${RDEPEND}
 "
 
@@ -44,8 +46,8 @@ src_prepare() {
 
 src_configure() {
 	# fixes build with ncurses[tinfo], bug #526530
-	append-cflags $(pkg-config --cflags ncursesw)
-	append-libs $(pkg-config --libs ncursesw)
+	append-cflags $($(tc-getPKG_CONFIG) --cflags ncursesw)
+	append-libs $($(tc-getPKG_CONFIG) --libs ncursesw)
 
 	econf \
 		$(use_enable regex)


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2017-04-15 13:38 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2017-04-15 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     05e470895b9ca1deff170761c92079727005e3ec
Author:     Hummer12007 <hilobakho <AT> gmail <DOT> com>
AuthorDate: Sat Apr 15 13:29:50 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 15 13:37:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e47089

media-sound/pms: drop dependency on glib (removed upstream)

Closes: https://github.com/gentoo/gentoo/pull/4426

 media-sound/pms/pms-9999.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 6d7622c10d9..56a45392e8c 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -16,7 +16,6 @@ IUSE="+regex doc"
 
 RDEPEND="
 	sys-libs/ncurses:0=[unicode]
-	dev-libs/glib:2
 	media-libs/libmpdclient
 "
 DEPEND="


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2017-05-08 16:49 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2017-05-08 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     f3dfb51af5552ef82e8343665dbcf6338ca03b4e
Author:     Hummer12007 <hilobakho <AT> gmail <DOT> com>
AuthorDate: Mon May  8 11:52:17 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  8 16:49:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3dfb51a

media-sound/pms: version bump to 0.42_p20170508

 media-sound/pms/Manifest                  |  1 +
 media-sound/pms/pms-0.42_p20170508.ebuild | 36 +++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
index c484daa4339..54c723732f4 100644
--- a/media-sound/pms/Manifest
+++ b/media-sound/pms/Manifest
@@ -1 +1,2 @@
 DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c
+DIST pms-0.42_p20170508.tar.gz 140157 SHA256 a5453fe84421608cd2ebe0827e9c011259723a41e1eba1519eb3df83e4ade7f4 SHA512 686a5e265ebad418a153b9888cc213bbf8cca5aa2d398206848823105edac16e298431c288dc0a74adb23d327c75845cdec1680a6a2a2ae40bc7b41c55ca163c WHIRLPOOL 745e7a8bf61c06e35575ff62a22fa36b808db21b0f1500ecebd7ec830e968d708fb7ed0e813e98f52fa689f1cafcf6ade3da69e756cd7adffd5c64ad68c9baa0

diff --git a/media-sound/pms/pms-0.42_p20170508.ebuild b/media-sound/pms/pms-0.42_p20170508.ebuild
new file mode 100644
index 00000000000..13f5072cbc9
--- /dev/null
+++ b/media-sound/pms/pms-0.42_p20170508.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils vcs-snapshot
+
+REF="8c8918488a4a22924ee04442dc5e5216783d51ff"
+
+DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
+HOMEPAGE="https://ambientsound.github.io/pms"
+SRC_URI="https://github.com/ambientsound/${PN}/tarball/${REF} -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+regex doc"
+
+RDEPEND="
+	sys-libs/ncurses:0=[unicode]
+	media-libs/libmpdclient
+"
+DEPEND="
+	virtual/pkgconfig
+	doc? ( app-text/pandoc )
+	${RDEPEND}
+"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_DOC=$(usex doc)
+		-DENABLE_REGEX=$(usex regex)
+	)
+
+	cmake-utils_src_configure
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2017-05-08 16:49 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2017-05-08 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     66faf8a0cb7d8a3b9ae0e3e3281425643fdf0a71
Author:     Hummer12007 <hilobakho <AT> gmail <DOT> com>
AuthorDate: Mon May  8 11:45:49 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  8 16:49:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66faf8a0

media-sound/pms: update branch in live ebuild

as per https://github.com/ambientsound/pms/commit/8c8918488a4a22924ee04442dc5e5216783d51ff

 media-sound/pms/pms-9999.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 56a45392e8c..2a0de1e38b9 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -7,7 +7,9 @@ inherit cmake-utils git-r3
 
 DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
 HOMEPAGE="https://ambientsound.github.io/pms"
+
 EGIT_REPO_URI="https://github.com/ambientsound/pms.git"
+EGIT_BRANCH="0.42.x" # todo: package the golang version
 
 LICENSE="GPL-3+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2017-05-08 16:49 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2017-05-08 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     c5eb4f574fc04e925e9e53f1827cd24506312c19
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Mon May  8 11:55:58 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  8 16:49:22 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5eb4f57

media-sound/pms: drop old 0.42-r2

Closes: https://github.com/gentoo/gentoo/pull/4569

 media-sound/pms/Manifest           |  1 -
 media-sound/pms/pms-0.42-r2.ebuild | 53 --------------------------------------
 2 files changed, 54 deletions(-)

diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
index 54c723732f4..0075b59e05a 100644
--- a/media-sound/pms/Manifest
+++ b/media-sound/pms/Manifest
@@ -1,2 +1 @@
-DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c
 DIST pms-0.42_p20170508.tar.gz 140157 SHA256 a5453fe84421608cd2ebe0827e9c011259723a41e1eba1519eb3df83e4ade7f4 SHA512 686a5e265ebad418a153b9888cc213bbf8cca5aa2d398206848823105edac16e298431c288dc0a74adb23d327c75845cdec1680a6a2a2ae40bc7b41c55ca163c WHIRLPOOL 745e7a8bf61c06e35575ff62a22fa36b808db21b0f1500ecebd7ec830e968d708fb7ed0e813e98f52fa689f1cafcf6ade3da69e756cd7adffd5c64ad68c9baa0

diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild
deleted file mode 100644
index 3b01d052260..00000000000
--- a/media-sound/pms/pms-0.42-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="https://ambientsound.github.io/pms/"
-SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="regex"
-
-RDEPEND="
-	sys-libs/ncurses:0=
-	dev-libs/glib:2
-	virtual/libintl
-	regex? ( dev-libs/boost:= )
-"
-DEPEND="
-	virtual/pkgconfig
-	sys-devel/gettext
-	${RDEPEND}
-"
-
-DOCS=( AUTHORS README TODO )
-
-src_prepare() {
-	# bug #424717
-	sed -i -e "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die 'sed on Makefile.am failed'
-
-	# Compatibility with automake 1.14
-	sed -i -e '/AM_INIT_AUTOMAKE/s/-Werror/subdir-objects/' configure.ac || die 'sed on configure.ac failed'
-
-	# bug #351995
-	sed -i -e '394s/BUFFER/ERRORSTR/' src/libmpdclient.c || die 'sed on libmpdclient.c failed'
-
-	eapply_user
-
-	eautoreconf
-}
-
-src_configure() {
-	# fixes build with ncurses[tinfo], bug #526530
-	append-cflags $($(tc-getPKG_CONFIG) --cflags ncursesw)
-	append-libs $($(tc-getPKG_CONFIG) --libs ncursesw)
-
-	econf \
-		$(use_enable regex)
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2021-01-09 10:36 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-01-09 10:36 UTC (permalink / raw
  To: gentoo-commits

commit:     7d295a484f9437407d30a6e3bdb7d5b2a1d5adba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  9 10:03:32 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  9 10:36:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d295a48

media-sound/pms: port to EAPI 7

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/pms/pms-0.42_p20170508.ebuild | 21 ++++++++++-----------
 media-sound/pms/pms-9999.ebuild           | 18 +++++++++---------
 2 files changed, 19 insertions(+), 20 deletions(-)

diff --git a/media-sound/pms/pms-0.42_p20170508.ebuild b/media-sound/pms/pms-0.42_p20170508.ebuild
index 13f5072cbc9..5fff6b4dc85 100644
--- a/media-sound/pms/pms-0.42_p20170508.ebuild
+++ b/media-sound/pms/pms-0.42_p20170508.ebuild
@@ -1,30 +1,29 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils vcs-snapshot
+inherit cmake vcs-snapshot
 
 REF="8c8918488a4a22924ee04442dc5e5216783d51ff"
-
 DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
 HOMEPAGE="https://ambientsound.github.io/pms"
-SRC_URI="https://github.com/ambientsound/${PN}/tarball/${REF} -> ${P}.tar.gz"
+SRC_URI="https://github.com/ambientsound/${PN}/archive/${REF}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+regex doc"
 
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-text/pandoc )
+"
 RDEPEND="
 	sys-libs/ncurses:0=[unicode]
 	media-libs/libmpdclient
 "
-DEPEND="
-	virtual/pkgconfig
-	doc? ( app-text/pandoc )
-	${RDEPEND}
-"
+DEPEND="${RDEPEND}"
 
 src_configure() {
 	local mycmakeargs=(
@@ -32,5 +31,5 @@ src_configure() {
 		-DENABLE_REGEX=$(usex regex)
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 2a0de1e38b9..4260a7d72b3 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils git-r3
+inherit cmake git-r3
 
 DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
 HOMEPAGE="https://ambientsound.github.io/pms"
@@ -16,15 +16,15 @@ SLOT="0"
 KEYWORDS=""
 IUSE="+regex doc"
 
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-text/pandoc )
+"
 RDEPEND="
 	sys-libs/ncurses:0=[unicode]
 	media-libs/libmpdclient
 "
-DEPEND="
-	virtual/pkgconfig
-	doc? ( app-text/pandoc )
-	${RDEPEND}
-"
+DEPEND="${RDEPEND}"
 
 src_configure() {
 	local mycmakeargs=(
@@ -32,5 +32,5 @@ src_configure() {
 		-DENABLE_REGEX=$(usex regex)
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2021-07-17 21:30 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2021-07-17 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     d94b0a524e372b207f75b41a3b9461acb9492315
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 17 21:30:15 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul 17 21:30:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94b0a52

media-sound/pms: Add sys-libs/ncurses[unicode(+)]

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../pms/{pms-0.42_p20170508.ebuild => pms-0.42_p20170508-r1.ebuild}     | 2 +-
 media-sound/pms/pms-9999.ebuild                                         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/pms/pms-0.42_p20170508.ebuild b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
similarity index 95%
rename from media-sound/pms/pms-0.42_p20170508.ebuild
rename to media-sound/pms/pms-0.42_p20170508-r1.ebuild
index 5fff6b4dc85..9f0546f7b15 100644
--- a/media-sound/pms/pms-0.42_p20170508.ebuild
+++ b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
@@ -20,7 +20,7 @@ BDEPEND="
 	doc? ( app-text/pandoc )
 "
 RDEPEND="
-	sys-libs/ncurses:0=[unicode]
+	sys-libs/ncurses:=[unicode(+)]
 	media-libs/libmpdclient
 "
 DEPEND="${RDEPEND}"

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
index 4260a7d72b3..c1e5c9adb45 100644
--- a/media-sound/pms/pms-9999.ebuild
+++ b/media-sound/pms/pms-9999.ebuild
@@ -21,7 +21,7 @@ BDEPEND="
 	doc? ( app-text/pandoc )
 "
 RDEPEND="
-	sys-libs/ncurses:0=[unicode]
+	sys-libs/ncurses:=[unicode(+)]
 	media-libs/libmpdclient
 "
 DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2022-06-13 16:43 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-06-13 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9d7568dae684dae390beb72aae33b12ce3c273ce
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 13 16:42:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 13 16:42:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7568da

media-sound/pms: drop 9999

Package is abandoned per upstream.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/pms/pms-9999.ebuild | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
deleted file mode 100644
index c1e5c9adb459..000000000000
--- a/media-sound/pms/pms-9999.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake git-r3
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="https://ambientsound.github.io/pms"
-
-EGIT_REPO_URI="https://github.com/ambientsound/pms.git"
-EGIT_BRANCH="0.42.x" # todo: package the golang version
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS=""
-IUSE="+regex doc"
-
-BDEPEND="
-	virtual/pkgconfig
-	doc? ( app-text/pandoc )
-"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)]
-	media-libs/libmpdclient
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_DOC=$(usex doc)
-		-DENABLE_REGEX=$(usex regex)
-	)
-
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2023-06-08 22:35 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2023-06-08 22:35 UTC (permalink / raw
  To: gentoo-commits

commit:     833a9c14742a55ed89ab93d38316949441ec2f43
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  8 22:30:45 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun  8 22:34:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=833a9c14

media-sound/pms: use virtual/pandoc

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/pms/pms-0.42_p20170508-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/pms/pms-0.42_p20170508-r1.ebuild b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
index 750e97d2c674..d7935d73fe64 100644
--- a/media-sound/pms/pms-0.42_p20170508-r1.ebuild
+++ b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ IUSE="+regex doc"
 
 BDEPEND="
 	virtual/pkgconfig
-	doc? ( app-text/pandoc )
+	doc? ( virtual/pandoc )
 "
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)]


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
@ 2023-09-04 21:24 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2023-09-04 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0e64916ba08ca3915c6be3f8ac225db0bfebbbf6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  4 19:21:34 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Sep  4 21:24:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e64916b

media-sound/pms: update EAPI 7 -> 8

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/pms/pms-0.42_p20170508-r1.ebuild | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/media-sound/pms/pms-0.42_p20170508-r1.ebuild b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
index d7935d73fe64..ca0250888b93 100644
--- a/media-sound/pms/pms-0.42_p20170508-r1.ebuild
+++ b/media-sound/pms/pms-0.42_p20170508-r1.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake vcs-snapshot
 
 REF="8c8918488a4a22924ee04442dc5e5216783d51ff"
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
+DESCRIPTION="Practical Music Search: open source ncurses client for mpd, written in C++"
 HOMEPAGE="https://ambientsound.github.io/pms"
 SRC_URI="https://github.com/ambientsound/${PN}/archive/${REF}.tar.gz -> ${P}.tar.gz"
 
@@ -15,19 +15,17 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+regex doc"
 
-BDEPEND="
-	virtual/pkgconfig
-	doc? ( virtual/pandoc )
-"
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)]
 	media-libs/libmpdclient
 "
 DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( virtual/pandoc )
+"
 
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.42_p20170508-gcc12-time.patch
-)
+PATCHES=( "${FILESDIR}"/${PN}-0.42_p20170508-gcc12-time.patch )
 
 src_configure() {
 	local mycmakeargs=(


^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2023-09-04 21:24 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-25 19:07 [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/ Kristian Fiskerstrand
  -- strict thread matches above, loose matches on Subject: below --
2023-09-04 21:24 Andreas Sturmlechner
2023-06-08 22:35 Sam James
2022-06-13 16:43 Sam James
2021-07-17 21:30 David Seifert
2021-01-09 10:36 Sam James
2017-05-08 16:49 Michał Górny
2017-05-08 16:49 Michał Górny
2017-05-08 16:49 Michał Górny
2017-04-15 13:38 Michał Górny
2016-09-13  8:46 Marek Szuba
2016-08-25 19:07 Kristian Fiskerstrand
2016-08-25 19:07 Kristian Fiskerstrand
2016-08-25 19:07 Kristian Fiskerstrand
2016-08-11 20:57 Marek Szuba
2016-08-07  6:52 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox