Bug 170034 - audio/libbs2b not bumped after recent libogg update
Summary: audio/libbs2b not bumped after recent libogg update
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks: 215252
  Show dependency treegraph
 
Reported: 2012-07-20 22:10 UTC by Pawel Pekala
Modified: 2016-12-12 16:16 UTC (History)
0 users

See Also:


Attachments
file.diff (614 bytes, patch)
2012-07-20 22:10 UTC, Pawel Pekala
no flags Details | Diff
patch.txt (692 bytes, text/plain; charset=US-ASCII)
2012-07-22 06:09 UTC, RyōTa SimaMoto
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Pawel Pekala freebsd_committer freebsd_triage 2012-07-20 22:10:14 UTC

Fix: This port links to libogg and it's portrevision wasn't bumped after recent libogg update. I propose to bump port revision and add explicit dependency on audio/libogg so in the future this can be avoided.

Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-07-20 22:10:25 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

Submitter has GNATS access (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-07-20 22:10:27 UTC
Maintainer of audio/libbs2b,

Please note that PR ports/170034 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170034

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2012-07-20 22:10:28 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 RyōTa SimaMoto 2012-07-22 06:09:14 UTC
Thank you.  Please try this patch.

NOTE: bin/bs2bconvert also depends on libvorbis and libFLAC as
      well as libogg, and specifies each library version explicitly.

-=-=-=-=-=
SimaMoto,RyÅTa <liangtai.s4@gmail.com>
Comment 5 dfilter service freebsd_committer freebsd_triage 2012-07-22 09:24:54 UTC
Author: pawel
Date: Sun Jul 22 08:24:40 2012
New Revision: 301301
URL: http://svn.freebsd.org/changeset/ports/301301

Log:
  - Bump port after recent audio/libogg update [1]
  - Add explicit dependency on audio/libogg so this port
    will not be forgotten in the future [1]
  - Add explicit dependency on audio/flac and audio/vorbis,
    bs2bconvert binary links to them as well [2]
  
  PR:		ports/170034 [1]
  Submitted by:	myself [1], maintainer [2]
  Approved by:	maintainer

Modified:
  head/audio/libbs2b/Makefile

Modified: head/audio/libbs2b/Makefile
==============================================================================
--- head/audio/libbs2b/Makefile	Sun Jul 22 08:16:01 2012	(r301300)
+++ head/audio/libbs2b/Makefile	Sun Jul 22 08:24:40 2012	(r301301)
@@ -7,6 +7,7 @@
 
 PORTNAME=	libbs2b
 PORTVERSION=	3.1.0
+PORTREVISION=	1
 CATEGORIES=	audio
 MASTER_SITES=	SF/bs2b/bs2b/${PORTVERSION}
 
@@ -14,7 +15,10 @@ MAINTAINER=	liangtai.s4@gmail.com
 COMMENT=	Bauer Stereophonic-to-Binaural DSP
 
 BUILD_DEPENDS=	pkg-config:${PORTSDIR}/devel/pkg-config
-LIB_DEPENDS+=	sndfile.1:${PORTSDIR}/audio/libsndfile
+LIB_DEPENDS+=	sndfile:${PORTSDIR}/audio/libsndfile \
+		ogg:${PORTSDIR}/audio/libogg \
+		FLAC:${PORTSDIR}/audio/flac \
+		vorbis:${PORTSDIR}/audio/libvorbis
 
 USE_BZIP2=	yes
 USE_GMAKE=	yes
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 6 Pawel Pekala freebsd_committer freebsd_triage 2012-07-22 09:25:22 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!