public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2015-04-10 13:29 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2015-04-10 13:29 UTC (permalink / raw
  To: gentoo-commits

commit:     32566a41f92e5d79bff45be4cf4682c12aa78eb0
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Fri Apr 10 13:28:59 2015 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Apr 10 13:28:59 2015 +0000
URL:        https://gitweb.gentoo.org/dev/xmw.git/commit/?id=32566a41

Add multilib-minimal

Package-Manager: portage-2.2.18
Manifest-Sign-Key: 62EEF090

 media-sound/sndio/ChangeLog                        |  6 +++++
 .../{sndio-9999.ebuild => sndio-0.0.8-r1.ebuild}   | 26 +++++++++-------------
 media-sound/sndio/sndio-9999.ebuild                | 14 +++++++-----
 3 files changed, 24 insertions(+), 22 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 7e96525..3db969c 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*sndio-0.0.8-r1 (10 Apr 2015)
+
+  10 Apr 2015; Michael Weber <xmw@gentoo.org> +sndio-0.0.8-r1.ebuild,
+  sndio-9999.ebuild:
+  Add multilib-minimal
+
 *sndio-0.0.8 (25 Mar 2015)
 
   25 Mar 2015; Michael Weber <xmw@gentoo.org> +sndio-0.0.8.ebuild,

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-0.0.8-r1.ebuild
similarity index 61%
copy from media-sound/sndio/sndio-9999.ebuild
copy to media-sound/sndio/sndio-0.0.8-r1.ebuild
index 2e2aa34..4974213 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-0.0.8-r1.ebuild
@@ -2,30 +2,22 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
-inherit cvs eutils toolchain-funcs user
+inherit eutils toolchain-funcs user multilib-minimal
 
 DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
 HOMEPAGE="http://www.sndio.org/"
-ECVS_SERVER="moule.caoua.org:/sndio"
-ECVS_MODULE="${PN}"
-ECVS_AUTH="ext"
-ECVS_USER="anoncvs"
-#ECVS_SSH_HOST_KEY="moule.caoua.org,2001:7a8:4e69::1 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMGPWNw+u/o4raby5ZszCAUC2b4BCwfvGzm81s5mRHqDRt1ksrde6uaB79mzzM3dm/rp3rjYFx38cVeGjQDxVgs="
+SRC_URI="http://www.${PN}.org/${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORD=""
+KEYWORDS="~amd64"
 IUSE="alsa"
 
 RDEPEND="alsa? ( media-libs/alsa-lib )"
 DEPEND="${REPEND}"
 
-S=${WORKDIR}/${PN}
-
-RESTRICT="test"
-
 pkg_setup() {
 	if ! use alsa ; then
 		ewarn "alsa output disabled, no local output"
@@ -34,18 +26,20 @@ pkg_setup() {
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
+
+	multilib_copy_sources
 }
 
-src_configure() {
+multilib_src_configure() {
 	econf \
 		$(use_enable alsa) \
 		--privsep-user=${PN}d \
-		--disable-sun || die
+		--disable-sun
+
 	tc-export CC
 }
 
-src_install() {
-	default
+multilib_src_install_all() {
 	dodir /var/lib/sndio
 	newinitd "${FILESDIR}"/initd ${PN}d
 	newconfd "${FILESDIR}"/confd ${PN}d

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-9999.ebuild
index 2e2aa34..08fa4bc 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-9999.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
-inherit cvs eutils toolchain-funcs user
+inherit cvs eutils toolchain-funcs user multilib-minimal
 
 DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
 HOMEPAGE="http://www.sndio.org/"
@@ -34,18 +34,20 @@ pkg_setup() {
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
+
+	multilib_copy_sources
 }
 
-src_configure() {
+multilib_src_configure() {
 	econf \
 		$(use_enable alsa) \
 		--privsep-user=${PN}d \
-		--disable-sun || die
+		--disable-sun
+
 	tc-export CC
 }
 
-src_install() {
-	default
+multilib_src_install_all() {
 	dodir /var/lib/sndio
 	newinitd "${FILESDIR}"/initd ${PN}d
 	newconfd "${FILESDIR}"/confd ${PN}d


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2015-11-14 23:05 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2015-11-14 23:05 UTC (permalink / raw
  To: gentoo-commits

commit:     631c37d4ac36c11ce255232da297acebbdd7009d
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Sat Nov 14 23:05:44 2015 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Sat Nov 14 23:05:44 2015 +0000
URL:        https://gitweb.gentoo.org/dev/xmw.git/commit/?id=631c37d4

media-sound/sndio: drop old versions.

Package-Manager: portage-2.2.21
Manifest-Sign-Key: 0x71D573A82F434065

 media-sound/sndio/Manifest                    | 28 +++++++--------
 media-sound/sndio/sndio-0.0.8-r1.ebuild       | 50 ---------------------------
 media-sound/sndio/sndio-0.0.8.ebuild          | 48 -------------------------
 media-sound/sndio/sndio-0_p20120925-r1.ebuild | 49 --------------------------
 4 files changed, 13 insertions(+), 162 deletions(-)

diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
index a442a98..79eb6f2 100644
--- a/media-sound/sndio/Manifest
+++ b/media-sound/sndio/Manifest
@@ -2,23 +2,21 @@
 Hash: SHA256
 
 DIST sndio-0.0.10.tar.gz 140878 SHA256 100554667533f7854e703a88c167215926a58b5c898e6d3e02b60be26c5415ae SHA512 45e45a0d1e4fe1e3345606cbdf2313e14c2018bd72c10e6bc9213f2a217d0dfc29631294ef65744826247b3583dd83fb405d4eb5b9828b98871159d3ad42c3ca WHIRLPOOL 871205d70e1a9124677e574c697243490d44635d197ff4ba5d4cb2dd1c011ddfe4571b5b58c79e926566b15e6ac7c9a289ec04db64c56da39ce80c2eacda2d19
-DIST sndio-0.0.8.tar.gz 156929 SHA256 5fea4ca261e2a09a8504fda047625ae38cb50f71432285c3605c44ed0d700fdf SHA512 35d011f47d93be19c97ffbb031d4611ad8c26bbb9ddb62073506aca991ab3424dcc0c96d9073e89e5455151f2ed7a001e56a7d1d2d9646c7c3e36e5f69e8da76 WHIRLPOOL 05ff5129acee8fab6c635a933ca33bf2a71d6cc3b3dd42a2243c491b81e211d9cc003cfb752148c217b822134a920d3329b3d98550717ae9ca1ea334a18b52be
-DIST sndio-0_p20120925.tar.bz2 108604 SHA256 09424042e53a29996615edb242ec264a024e418047c6901817e0a5a7e201f1c0 SHA512 b17bc5235efdb5d991170b81782bcbedcf300622a85bd4c691b4da0010756e3f4b54d8265b2a75f293777f3a9f318fe895d6054e7d31e3bff93573eab9e1e53f WHIRLPOOL 009e41c13caf2d2e2f8e761d9078bae52636774cb870126867c403b6ceb6fa59bb4aa792cb91874912d3f65652c138f8460c8c5b48502516a2ab00326dd7cd69
 DIST sndio-1.0.1.tar.gz 119832 SHA256 95591fbcb3faaebb0ce023f1c95d6809a506269758d57b700d9549322eaef702 SHA512 7cccb2bd7cff72bffc146f83b6603bb77a07adef0a2381c93ea9294353956a57d0dfc9117ef27ef3397ec6a7017ae7a1d218b57c3a00276d6724774a62c56348 WHIRLPOOL 30e737a7ff1d3dcd77ffb85e296b0c02d68bb62a0fb3a6bb6184ac80cfff55f7c957e1b310602a07072a5d8ec34118c3dbae2bbc9d7398f029bc401e7292dfc3
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iQIcBAEBCAAGBQJWR731AAoJEHHVc6gvQ0BlFjYP/jPIJscgAygWRnVBr15K/BI1
-8XMXn7AS3eXw91JJvaT3SuKDt74he2mZur2P2h3fvnk9EIDag3qNlEeVm+BIiBpU
-MPVyD0dJsOqV0dIjL3QS3swTioIZIPdLylT5LPXGjXfJmH6BfJi5mKggFbGKstne
-dN7fNIXT+JVxlEN/5Czr00l6jXNTFWtltaQrOIJhEKBJxXWd0AHaV8dD7nifwI9j
-RRaSYKAcMU5t6Tw4vMnnSgNwZq/GsfjDZ5h2J0wP/HFLrNvzFQo33aj3OHbS2hyb
-ZNObrJ/fdPEdrmx84XsBNg/OqFHM/NdpA0pdZazH0i9f7hDO67NbyEGjzOoQYQJH
-aNIEXFdE6maFbPIq0fY7ZPTi6QLGvCWeO18BF0xsYiEjcVPinivBLdHON+JdwotU
-EXpZwReNT6D9YDISpJFbhYrDmp0t1ag5HEQmEwU03uH3l+i2ZMwofDqgf2VcXabh
-dx3PQiEJJ0JujNDx1IenN3jIL0/r6WvDprNkGIIxLRzLMHu6pBElQHDDymSbN7Xl
-f0M8i/YSSyLu0uv4hWYme8MRlhNsCEAkYYvtrk241x+UIJU0JQcFsJ+gZQuuVLNR
-2mpWegwjNUXJK+BHNhif0yLJovUPfN0IsCRTPGCe4/p6i74GzCG65MBomNZL3fdO
-G9FGSqOdnBdz+tuN7lKn
-=06WO
+iQIcBAEBCAAGBQJWR75IAAoJEHHVc6gvQ0Bl3jsQAK3ywsRPBmmdq4ui5NUUYhjU
+MaOP8ZCDCmD6jKvp0Hx+VtxtQZlrT6F9FG17KMwnIAVRyni9k0wNXjXgMfYkIo+7
+wegaEaalYR92Pjnd00R/lWHbdSa3kOGqHINi5vtyY0fGop+zFUpedo9hmxQYEcST
+ShEyaqRt1Y62lNxL1Z82qB47KPD4CYnK3dCGgWkgxRw7TH0a3iv+XmRuHM226HE5
+g4J+Rl1KgsCC9dkjpI0wWzjlwtXpYtbEY6HzQCa6oKdVdYFkCP9Dd9r8PbtK57/n
+2KLwq/TK6z4K6CssmzV4/CGbTEvQKwwKmwlvON+rKGTlmCwJEYwOxSY+UCg3B8X9
+oIIU7RVcXWv88sVQuzhPtipDoN3HGq9UZjeki2LfGKL0Fapi0nBThqAZs47ezVgQ
+lYFld/9HVdMqImHMLxsLiDM5J1N80Vz/MhOfgBkEXg46ysOoAOZYK2jxNLEDQHOZ
+cX+dVYKV8TCoNR16S14R8555YlHDx1GtodK2MnmYb1bVFYY4/Y7waRXnPQCAowEr
+Cts6TzI5pD+4lznRECEs0SGWtvRe4EYRziXWKvhMg1p4N+YGv2lA+gbmlE0SKIn/
+UIHkgULpVpMLci5efe/LR2pMyMWRUXjDicJDyvLzxkDenYQ4ijzmuEZ2dCnfK9Hk
+uFZ/dTsFc6Ec12ImX1nE
+=1veR
 -----END PGP SIGNATURE-----

diff --git a/media-sound/sndio/sndio-0.0.8-r1.ebuild b/media-sound/sndio/sndio-0.0.8-r1.ebuild
deleted file mode 100644
index 4974213..0000000
--- a/media-sound/sndio/sndio-0.0.8-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit eutils toolchain-funcs user multilib-minimal
-
-DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
-HOMEPAGE="http://www.sndio.org/"
-SRC_URI="http://www.${PN}.org/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alsa"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )"
-DEPEND="${REPEND}"
-
-pkg_setup() {
-	if ! use alsa ; then
-		ewarn "alsa output disabled, no local output"
-	fi
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
-
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	econf \
-		$(use_enable alsa) \
-		--privsep-user=${PN}d \
-		--disable-sun
-
-	tc-export CC
-}
-
-multilib_src_install_all() {
-	dodir /var/lib/sndio
-	newinitd "${FILESDIR}"/initd ${PN}d
-	newconfd "${FILESDIR}"/confd ${PN}d
-}
-
-pkg_postinst() {
-	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
-}

diff --git a/media-sound/sndio/sndio-0.0.8.ebuild b/media-sound/sndio/sndio-0.0.8.ebuild
deleted file mode 100644
index 71e7c7e..0000000
--- a/media-sound/sndio/sndio-0.0.8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit eutils toolchain-funcs user
-
-DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
-HOMEPAGE="http://www.sndio.org/"
-SRC_URI="http://www.${PN}.org/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alsa"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )"
-DEPEND="${REPEND}"
-
-pkg_setup() {
-	if ! use alsa ; then
-		ewarn "alsa output disabled, no local output"
-	fi
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
-}
-
-src_configure() {
-	econf \
-		$(use_enable alsa) \
-		--privsep-user=${PN}d \
-		--disable-sun || die
-	tc-export CC
-}
-
-src_install() {
-	default
-	dodir /var/lib/sndio
-	newinitd "${FILESDIR}"/initd ${PN}d
-	newconfd "${FILESDIR}"/confd ${PN}d
-}
-
-pkg_postinst() {
-	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
-}

diff --git a/media-sound/sndio/sndio-0_p20120925-r1.ebuild b/media-sound/sndio/sndio-0_p20120925-r1.ebuild
deleted file mode 100644
index 6de61e2..0000000
--- a/media-sound/sndio/sndio-0_p20120925-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit eutils toolchain-funcs user
-
-DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
-HOMEPAGE="http://www.sndio.org/"
-SRC_URI="http://xmw.de/mirror/${PN}/${P}.tar.bz2"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alsa"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )"
-DEPEND="${REPEND}"
-
-pkg_setup() {
-	if ! use alsa ; then
-		ewarn "alsa output disabled, no local output"
-	fi
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
-	epatch "${FILESDIR}"/${PN}-0_p20120925-username.patch
-	epatch "${FILESDIR}"/${PN}-0_p20120925-syntax.patch
-}
-
-src_configure() {
-	econf \
-		$(use_enable alsa) \
-		--disable-sun || die
-	tc-export CC
-}
-
-src_install() {
-	default
-	dodir /var/lib/sndio
-	newinitd "${FILESDIR}"/initd ${PN}d
-	newconfd "${FILESDIR}"/confd ${PN}d
-}
-
-pkg_postinst() {
-	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2015-11-14 23:04 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2015-11-14 23:04 UTC (permalink / raw
  To: gentoo-commits

commit:     00590554443f6373f4f61368709949a42f3ae666
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Sat Nov 14 23:04:24 2015 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Sat Nov 14 23:04:24 2015 +0000
URL:        https://gitweb.gentoo.org/dev/xmw.git/commit/?id=00590554

media-sound/sndio: Version bump.

Package-Manager: portage-2.2.21
Manifest-Sign-Key: 0x71D573A82F434065

 media-sound/sndio/Manifest           | 17 +++++++++---
 media-sound/sndio/sndio-1.0.1.ebuild | 50 ++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+), 3 deletions(-)

diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
index e603b17..a442a98 100644
--- a/media-sound/sndio/Manifest
+++ b/media-sound/sndio/Manifest
@@ -4,10 +4,21 @@ Hash: SHA256
 DIST sndio-0.0.10.tar.gz 140878 SHA256 100554667533f7854e703a88c167215926a58b5c898e6d3e02b60be26c5415ae SHA512 45e45a0d1e4fe1e3345606cbdf2313e14c2018bd72c10e6bc9213f2a217d0dfc29631294ef65744826247b3583dd83fb405d4eb5b9828b98871159d3ad42c3ca WHIRLPOOL 871205d70e1a9124677e574c697243490d44635d197ff4ba5d4cb2dd1c011ddfe4571b5b58c79e926566b15e6ac7c9a289ec04db64c56da39ce80c2eacda2d19
 DIST sndio-0.0.8.tar.gz 156929 SHA256 5fea4ca261e2a09a8504fda047625ae38cb50f71432285c3605c44ed0d700fdf SHA512 35d011f47d93be19c97ffbb031d4611ad8c26bbb9ddb62073506aca991ab3424dcc0c96d9073e89e5455151f2ed7a001e56a7d1d2d9646c7c3e36e5f69e8da76 WHIRLPOOL 05ff5129acee8fab6c635a933ca33bf2a71d6cc3b3dd42a2243c491b81e211d9cc003cfb752148c217b822134a920d3329b3d98550717ae9ca1ea334a18b52be
 DIST sndio-0_p20120925.tar.bz2 108604 SHA256 09424042e53a29996615edb242ec264a024e418047c6901817e0a5a7e201f1c0 SHA512 b17bc5235efdb5d991170b81782bcbedcf300622a85bd4c691b4da0010756e3f4b54d8265b2a75f293777f3a9f318fe895d6054e7d31e3bff93573eab9e1e53f WHIRLPOOL 009e41c13caf2d2e2f8e761d9078bae52636774cb870126867c403b6ceb6fa59bb4aa792cb91874912d3f65652c138f8460c8c5b48502516a2ab00326dd7cd69
+DIST sndio-1.0.1.tar.gz 119832 SHA256 95591fbcb3faaebb0ce023f1c95d6809a506269758d57b700d9549322eaef702 SHA512 7cccb2bd7cff72bffc146f83b6603bb77a07adef0a2381c93ea9294353956a57d0dfc9117ef27ef3397ec6a7017ae7a1d218b57c3a00276d6724774a62c56348 WHIRLPOOL 30e737a7ff1d3dcd77ffb85e296b0c02d68bb62a0fb3a6bb6184ac80cfff55f7c957e1b310602a07072a5d8ec34118c3dbae2bbc9d7398f029bc401e7292dfc3
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iF4EAREIAAYFAlWoICkACgkQknrdDGLu8JBGfgD/WM4q3qbmqyWJ4DqCH22f/Ag5
-xIeDLm1ywJjToUzvQwUA/Rt0XxolNxqrbhbHPODAleUO47cDQlCeWxoT46EFpHuK
-=Z0h/
+iQIcBAEBCAAGBQJWR731AAoJEHHVc6gvQ0BlFjYP/jPIJscgAygWRnVBr15K/BI1
+8XMXn7AS3eXw91JJvaT3SuKDt74he2mZur2P2h3fvnk9EIDag3qNlEeVm+BIiBpU
+MPVyD0dJsOqV0dIjL3QS3swTioIZIPdLylT5LPXGjXfJmH6BfJi5mKggFbGKstne
+dN7fNIXT+JVxlEN/5Czr00l6jXNTFWtltaQrOIJhEKBJxXWd0AHaV8dD7nifwI9j
+RRaSYKAcMU5t6Tw4vMnnSgNwZq/GsfjDZ5h2J0wP/HFLrNvzFQo33aj3OHbS2hyb
+ZNObrJ/fdPEdrmx84XsBNg/OqFHM/NdpA0pdZazH0i9f7hDO67NbyEGjzOoQYQJH
+aNIEXFdE6maFbPIq0fY7ZPTi6QLGvCWeO18BF0xsYiEjcVPinivBLdHON+JdwotU
+EXpZwReNT6D9YDISpJFbhYrDmp0t1ag5HEQmEwU03uH3l+i2ZMwofDqgf2VcXabh
+dx3PQiEJJ0JujNDx1IenN3jIL0/r6WvDprNkGIIxLRzLMHu6pBElQHDDymSbN7Xl
+f0M8i/YSSyLu0uv4hWYme8MRlhNsCEAkYYvtrk241x+UIJU0JQcFsJ+gZQuuVLNR
+2mpWegwjNUXJK+BHNhif0yLJovUPfN0IsCRTPGCe4/p6i74GzCG65MBomNZL3fdO
+G9FGSqOdnBdz+tuN7lKn
+=06WO
 -----END PGP SIGNATURE-----

diff --git a/media-sound/sndio/sndio-1.0.1.ebuild b/media-sound/sndio/sndio-1.0.1.ebuild
new file mode 100644
index 0000000..4974213
--- /dev/null
+++ b/media-sound/sndio/sndio-1.0.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils toolchain-funcs user multilib-minimal
+
+DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
+HOMEPAGE="http://www.sndio.org/"
+SRC_URI="http://www.${PN}.org/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="alsa"
+
+RDEPEND="alsa? ( media-libs/alsa-lib )"
+DEPEND="${REPEND}"
+
+pkg_setup() {
+	if ! use alsa ; then
+		ewarn "alsa output disabled, no local output"
+	fi
+}
+
+src_prepare() {
+	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
+
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	econf \
+		$(use_enable alsa) \
+		--privsep-user=${PN}d \
+		--disable-sun
+
+	tc-export CC
+}
+
+multilib_src_install_all() {
+	dodir /var/lib/sndio
+	newinitd "${FILESDIR}"/initd ${PN}d
+	newconfd "${FILESDIR}"/confd ${PN}d
+}
+
+pkg_postinst() {
+	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2015-07-16 21:21 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2015-07-16 21:21 UTC (permalink / raw
  To: gentoo-commits

commit:     9e6648f0d9d72fb622e331f34bc08e71b6df1922
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Thu Jul 16 21:20:44 2015 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 21:20:44 2015 +0000
URL:        https://gitweb.gentoo.org/dev/xmw.git/commit/?id=9e6648f0

Version bump

Package-Manager: portage-2.2.20
Manifest-Sign-Key: 62EEF090

 media-sound/sndio/ChangeLog           |  5 ++++
 media-sound/sndio/Manifest            |  7 ++---
 media-sound/sndio/sndio-0.0.10.ebuild | 50 +++++++++++++++++++++++++++++++++++
 3 files changed, 59 insertions(+), 3 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 3db969c..35908cd 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*sndio-0.0.10 (16 Jul 2015)
+
+  16 Jul 2015; Michael Weber <xmw@gentoo.org> +sndio-0.0.10.ebuild:
+  Version bump
+
 *sndio-0.0.8-r1 (10 Apr 2015)
 
   10 Apr 2015; Michael Weber <xmw@gentoo.org> +sndio-0.0.8-r1.ebuild,

diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
index e12f546..e603b17 100644
--- a/media-sound/sndio/Manifest
+++ b/media-sound/sndio/Manifest
@@ -1,12 +1,13 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA256
 
+DIST sndio-0.0.10.tar.gz 140878 SHA256 100554667533f7854e703a88c167215926a58b5c898e6d3e02b60be26c5415ae SHA512 45e45a0d1e4fe1e3345606cbdf2313e14c2018bd72c10e6bc9213f2a217d0dfc29631294ef65744826247b3583dd83fb405d4eb5b9828b98871159d3ad42c3ca WHIRLPOOL 871205d70e1a9124677e574c697243490d44635d197ff4ba5d4cb2dd1c011ddfe4571b5b58c79e926566b15e6ac7c9a289ec04db64c56da39ce80c2eacda2d19
 DIST sndio-0.0.8.tar.gz 156929 SHA256 5fea4ca261e2a09a8504fda047625ae38cb50f71432285c3605c44ed0d700fdf SHA512 35d011f47d93be19c97ffbb031d4611ad8c26bbb9ddb62073506aca991ab3424dcc0c96d9073e89e5455151f2ed7a001e56a7d1d2d9646c7c3e36e5f69e8da76 WHIRLPOOL 05ff5129acee8fab6c635a933ca33bf2a71d6cc3b3dd42a2243c491b81e211d9cc003cfb752148c217b822134a920d3329b3d98550717ae9ca1ea334a18b52be
 DIST sndio-0_p20120925.tar.bz2 108604 SHA256 09424042e53a29996615edb242ec264a024e418047c6901817e0a5a7e201f1c0 SHA512 b17bc5235efdb5d991170b81782bcbedcf300622a85bd4c691b4da0010756e3f4b54d8265b2a75f293777f3a9f318fe895d6054e7d31e3bff93573eab9e1e53f WHIRLPOOL 009e41c13caf2d2e2f8e761d9078bae52636774cb870126867c403b6ceb6fa59bb4aa792cb91874912d3f65652c138f8460c8c5b48502516a2ab00326dd7cd69
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iF4EAREIAAYFAlUSuL0ACgkQknrdDGLu8JDtUwD/SjKsuZN7usSXWUBICMy7kWQD
-B8KKxsrYZN2DFhUtyboA/jypMS9KWRrvO5deLTpGTpNT+C6iIq4TEvvdh+hYWOn9
-=1Cb7
+iF4EAREIAAYFAlWoICkACgkQknrdDGLu8JBGfgD/WM4q3qbmqyWJ4DqCH22f/Ag5
+xIeDLm1ywJjToUzvQwUA/Rt0XxolNxqrbhbHPODAleUO47cDQlCeWxoT46EFpHuK
+=Z0h/
 -----END PGP SIGNATURE-----

diff --git a/media-sound/sndio/sndio-0.0.10.ebuild b/media-sound/sndio/sndio-0.0.10.ebuild
new file mode 100644
index 0000000..4974213
--- /dev/null
+++ b/media-sound/sndio/sndio-0.0.10.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils toolchain-funcs user multilib-minimal
+
+DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
+HOMEPAGE="http://www.sndio.org/"
+SRC_URI="http://www.${PN}.org/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="alsa"
+
+RDEPEND="alsa? ( media-libs/alsa-lib )"
+DEPEND="${REPEND}"
+
+pkg_setup() {
+	if ! use alsa ; then
+		ewarn "alsa output disabled, no local output"
+	fi
+}
+
+src_prepare() {
+	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
+
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	econf \
+		$(use_enable alsa) \
+		--privsep-user=${PN}d \
+		--disable-sun
+
+	tc-export CC
+}
+
+multilib_src_install_all() {
+	dodir /var/lib/sndio
+	newinitd "${FILESDIR}"/initd ${PN}d
+	newconfd "${FILESDIR}"/confd ${PN}d
+}
+
+pkg_postinst() {
+	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2015-03-25 13:32 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2015-03-25 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a591f21e09d6eab6f2b4ddcc09b1180a6a32ef53
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Wed Mar 25 13:31:41 2015 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 13:31:41 2015 +0000
URL:        https://gitweb.gentoo.org/dev/xmw.git/commit/?id=a591f21e

Version bump

Package-Manager: portage-2.2.18
Manifest-Sign-Key: 62EEF090

 media-sound/sndio/ChangeLog                             |  9 +++++++--
 media-sound/sndio/Manifest                              |  9 +++++----
 .../sndio/{sndio-9999.ebuild => sndio-0.0.8.ebuild}     | 17 +++++------------
 media-sound/sndio/sndio-9999.ebuild                     |  3 ++-
 4 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 41148b9..7e96525 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for media-sound/sndio
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*sndio-0.0.8 (25 Mar 2015)
+
+  25 Mar 2015; Michael Weber <xmw@gentoo.org> +sndio-0.0.8.ebuild,
+  sndio-9999.ebuild:
+  Version bump
+
 *sndio-0_p20120925-r1 (05 Dec 2012)
 
   05 Dec 2012; Michael Weber <xmw@gentoo.org> -sndio-0_p20120925.ebuild,
@@ -27,4 +33,3 @@
   +files/sndio-0_p20120925-username.patch, sndio-9999.ebuild,
   -files/sndio-9999-configure.patch:
   Initial import
-

diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
index 79f6404..e12f546 100644
--- a/media-sound/sndio/Manifest
+++ b/media-sound/sndio/Manifest
@@ -1,11 +1,12 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA256
 
+DIST sndio-0.0.8.tar.gz 156929 SHA256 5fea4ca261e2a09a8504fda047625ae38cb50f71432285c3605c44ed0d700fdf SHA512 35d011f47d93be19c97ffbb031d4611ad8c26bbb9ddb62073506aca991ab3424dcc0c96d9073e89e5455151f2ed7a001e56a7d1d2d9646c7c3e36e5f69e8da76 WHIRLPOOL 05ff5129acee8fab6c635a933ca33bf2a71d6cc3b3dd42a2243c491b81e211d9cc003cfb752148c217b822134a920d3329b3d98550717ae9ca1ea334a18b52be
 DIST sndio-0_p20120925.tar.bz2 108604 SHA256 09424042e53a29996615edb242ec264a024e418047c6901817e0a5a7e201f1c0 SHA512 b17bc5235efdb5d991170b81782bcbedcf300622a85bd4c691b4da0010756e3f4b54d8265b2a75f293777f3a9f318fe895d6054e7d31e3bff93573eab9e1e53f WHIRLPOOL 009e41c13caf2d2e2f8e761d9078bae52636774cb870126867c403b6ceb6fa59bb4aa792cb91874912d3f65652c138f8460c8c5b48502516a2ab00326dd7cd69
 -----BEGIN PGP SIGNATURE-----
-Version: GnuPG v2.0.19 (GNU/Linux)
+Version: GnuPG v2
 
-iF4EAREIAAYFAlC+KnwACgkQknrdDGLu8JD38gD/WI9TSbUraP5oahB9is1iFNOM
-FAtJ6X2otMHsT1ZNtDkA/A4vk3Hdp7ACSPgflxGqikZYO8jOhdrxuRmLDJOBEaar
-=TSXJ
+iF4EAREIAAYFAlUSuL0ACgkQknrdDGLu8JDtUwD/SjKsuZN7usSXWUBICMy7kWQD
+B8KKxsrYZN2DFhUtyboA/jypMS9KWRrvO5deLTpGTpNT+C6iIq4TEvvdh+hYWOn9
+=1Cb7
 -----END PGP SIGNATURE-----

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-0.0.8.ebuild
similarity index 62%
copy from media-sound/sndio/sndio-9999.ebuild
copy to media-sound/sndio/sndio-0.0.8.ebuild
index 171786f..71e7c7e 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-0.0.8.ebuild
@@ -1,31 +1,23 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI=4
 
-inherit cvs eutils toolchain-funcs user
+inherit eutils toolchain-funcs user
 
 DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
 HOMEPAGE="http://www.sndio.org/"
-ECVS_SERVER="moule.caoua.org:/sndio"
-ECVS_MODULE="${PN}"
-ECVS_AUTH="ext"
-ECVS_USER="anoncvs"
-#ECVS_SSH_HOST_KEY="moule.caoua.org,2001:7a8:4e69::1 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMGPWNw+u/o4raby5ZszCAUC2b4BCwfvGzm81s5mRHqDRt1ksrde6uaB79mzzM3dm/rp3rjYFx38cVeGjQDxVgs="
+SRC_URI="http://www.${PN}.org/${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORD=""
+KEYWORDS="~amd64"
 IUSE="alsa"
 
 RDEPEND="alsa? ( media-libs/alsa-lib )"
 DEPEND="${REPEND}"
 
-S=${WORKDIR}/${PN}
-
-RESTRICT="test"
-
 pkg_setup() {
 	if ! use alsa ; then
 		ewarn "alsa output disabled, no local output"
@@ -39,6 +31,7 @@ src_prepare() {
 src_configure() {
 	econf \
 		$(use_enable alsa) \
+		--privsep-user=${PN}d \
 		--disable-sun || die
 	tc-export CC
 }

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-9999.ebuild
index 171786f..2e2aa34 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -39,6 +39,7 @@ src_prepare() {
 src_configure() {
 	econf \
 		$(use_enable alsa) \
+		--privsep-user=${PN}d \
 		--disable-sun || die
 	tc-export CC
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2013-02-04 10:48 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2013-02-04 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     6dc5a708d68392b0328ed6c58005d08aba99cd3b
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  4 10:47:43 2013 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Mon Feb  4 10:47:43 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=6dc5a708

Changed username

Package-Manager: portage-2.2.0_alpha161
Manifest-Sign-Key: 62EEF090

---
 media-sound/sndio/ChangeLog                        |    6 ++++++
 ...20120925.ebuild => sndio-0_p20120925-r1.ebuild} |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 0849300..41148b9 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*sndio-0_p20120925-r1 (05 Dec 2012)
+
+  05 Dec 2012; Michael Weber <xmw@gentoo.org> -sndio-0_p20120925.ebuild,
+  +sndio-0_p20120925-r1.ebuild:
+  Change username to sndiod
+
   04 Dec 2012; Michael Weber <xmw@gentoo.org> sndio-0_p20120925.ebuild,
   sndio-9999.ebuild:
   inherit user for enewuser, restrict test phase

diff --git a/media-sound/sndio/sndio-0_p20120925.ebuild b/media-sound/sndio/sndio-0_p20120925-r1.ebuild
similarity index 95%
rename from media-sound/sndio/sndio-0_p20120925.ebuild
rename to media-sound/sndio/sndio-0_p20120925-r1.ebuild
index 5caea8e..6de61e2 100644
--- a/media-sound/sndio/sndio-0_p20120925.ebuild
+++ b/media-sound/sndio/sndio-0_p20120925-r1.ebuild
@@ -45,5 +45,5 @@ src_install() {
 }
 
 pkg_postinst() {
-	enewuser ${PN} -1 -1 /var/lib/${PN} audio
+	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2012-12-04 16:53 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2012-12-04 16:53 UTC (permalink / raw
  To: gentoo-commits

commit:     cd3252c3d89e581508bd98bf4d8f37985d33d945
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  4 16:53:16 2012 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Dec  4 16:53:16 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=cd3252c3

media-sound/sndio: inherit user for enewuser, restrict test phase

Package-Manager: portage-2.2.0_alpha144
Manifest-Sign-Key: 62EEF090

---
 media-sound/sndio/ChangeLog                |    4 ++++
 media-sound/sndio/Manifest                 |    6 +++---
 media-sound/sndio/sndio-0_p20120925.ebuild |    2 +-
 media-sound/sndio/sndio-9999.ebuild        |    4 +++-
 4 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 34d6d0e..0849300 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  04 Dec 2012; Michael Weber <xmw@gentoo.org> sndio-0_p20120925.ebuild,
+  sndio-9999.ebuild:
+  inherit user for enewuser, restrict test phase
+
   06 Nov 2012; Michael Weber <xmw@gentoo.org> sndio-9999.ebuild:
   Update live build
 

diff --git a/media-sound/sndio/Manifest b/media-sound/sndio/Manifest
index 59a862e..79f6404 100644
--- a/media-sound/sndio/Manifest
+++ b/media-sound/sndio/Manifest
@@ -5,7 +5,7 @@ DIST sndio-0_p20120925.tar.bz2 108604 SHA256 09424042e53a29996615edb242ec264a024
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.19 (GNU/Linux)
 
-iF4EAREIAAYFAlBiJU0ACgkQknrdDGLu8JDrNwD/UIiQsNEyQVuxquG4YtEmIq8h
-TEJXsQiCNKOZthBiL5gA/2w4NE0feH/mi0ubfxx/ZoJKxRTh3y2uvCiXW7OC+xfC
-=Sk73
+iF4EAREIAAYFAlC+KnwACgkQknrdDGLu8JD38gD/WI9TSbUraP5oahB9is1iFNOM
+FAtJ6X2otMHsT1ZNtDkA/A4vk3Hdp7ACSPgflxGqikZYO8jOhdrxuRmLDJOBEaar
+=TSXJ
 -----END PGP SIGNATURE-----

diff --git a/media-sound/sndio/sndio-0_p20120925.ebuild b/media-sound/sndio/sndio-0_p20120925.ebuild
index 62cc65a..5caea8e 100644
--- a/media-sound/sndio/sndio-0_p20120925.ebuild
+++ b/media-sound/sndio/sndio-0_p20120925.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-inherit eutils toolchain-funcs
+inherit eutils toolchain-funcs user
 
 DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
 HOMEPAGE="http://www.sndio.org/"

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-9999.ebuild
index 57dd19d..171786f 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-9999.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-inherit cvs eutils toolchain-funcs
+inherit cvs eutils toolchain-funcs user
 
 DESCRIPTION="small audio and MIDI framework part of the OpenBSD project"
 HOMEPAGE="http://www.sndio.org/"
@@ -24,6 +24,8 @@ DEPEND="${REPEND}"
 
 S=${WORKDIR}/${PN}
 
+RESTRICT="test"
+
 pkg_setup() {
 	if ! use alsa ; then
 		ewarn "alsa output disabled, no local output"


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/
@ 2012-11-06 21:18 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2012-11-06 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ceec8cbb596b72a7b5e29e651a9bd2e7265024e8
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  6 21:17:18 2012 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Nov  6 21:17:18 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=ceec8cbb

media-sound/sndio: Update live build

Package-Manager: portage-2.1.11.31
Manifest-Sign-Key: 62EEF090

---
 media-sound/sndio/ChangeLog         |    3 +++
 media-sound/sndio/sndio-9999.ebuild |    4 +---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-sound/sndio/ChangeLog b/media-sound/sndio/ChangeLog
index 415dbb5..34d6d0e 100644
--- a/media-sound/sndio/ChangeLog
+++ b/media-sound/sndio/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Nov 2012; Michael Weber <xmw@gentoo.org> sndio-9999.ebuild:
+  Update live build
+
   25 Sep 2012; Michael Weber <xmw@gentoo.org> sndio-0_p20120925.ebuild,
   sndio-9999.ebuild, +files/confd, +files/initd:
   Add openrc service scripts

diff --git a/media-sound/sndio/sndio-9999.ebuild b/media-sound/sndio/sndio-9999.ebuild
index 8268dbf..57dd19d 100644
--- a/media-sound/sndio/sndio-9999.ebuild
+++ b/media-sound/sndio/sndio-9999.ebuild
@@ -32,8 +32,6 @@ pkg_setup() {
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0_p20120925-configure.patch
-	epatch "${FILESDIR}"/${PN}-0_p20120925-username.patch
-	epatch "${FILESDIR}"/${PN}-0_p20120925-syntax.patch
 }
 
 src_configure() {
@@ -51,5 +49,5 @@ src_install() {
 }
 
 pkg_postinst() {
-	enewuser ${PN} -1 -1 /var/lib/${PN} audio
+	enewuser ${PN}d -1 -1 /var/lib/${PN} audio
 }


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

end of thread, other threads:[~2015-11-14 23:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-10 13:29 [gentoo-commits] dev/xmw:master commit in: media-sound/sndio/ Michael Weber
  -- strict thread matches above, loose matches on Subject: below --
2015-11-14 23:05 Michael Weber
2015-11-14 23:04 Michael Weber
2015-07-16 21:21 Michael Weber
2015-03-25 13:32 Michael Weber
2013-02-04 10:48 Michael Weber
2012-12-04 16:53 Michael Weber
2012-11-06 21:18 Michael Weber

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