All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4
@ 2011-09-30 19:47 Gustavo Zacarias
  2011-09-30 19:47 ` [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default Gustavo Zacarias
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2011-09-30 19:47 UTC (permalink / raw)
  To: buildroot

Bump mpg123 to version 1.13.4, fixes for very long files (endless
streams).

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/mpg123/mpg123.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/mpg123/mpg123.mk b/package/multimedia/mpg123/mpg123.mk
index 17d398e..53b7b39 100644
--- a/package/multimedia/mpg123/mpg123.mk
+++ b/package/multimedia/mpg123/mpg123.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-MPG123_VERSION = 1.13.3
+MPG123_VERSION = 1.13.4
 MPG123_SOURCE = mpg123-$(MPG123_VERSION).tar.bz2
 MPG123_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mpg123
 MPG123_CONF_OPT = --with-optimization=0 --disable-lfs-alias
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default
  2011-09-30 19:47 [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Gustavo Zacarias
@ 2011-09-30 19:47 ` Gustavo Zacarias
  2011-09-30 20:21   ` Thomas Petazzoni
  2011-09-30 19:47 ` [Buildroot] [PATCH 3/4] mpd: fixup sample config Gustavo Zacarias
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-09-30 19:47 UTC (permalink / raw)
  To: buildroot

Disable installing binaries by default based on a new "install basic
utilities" option.
This is to avoid installing unnecessary bloat when we just need
libblkid/libuuid for e2fsprogs for example.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/util-linux/Config.in     |    5 +++++
 package/util-linux/util-linux.mk |   29 +++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
index 816130d..4cacfca 100644
--- a/package/util-linux/Config.in
+++ b/package/util-linux/Config.in
@@ -16,6 +16,11 @@ if BR2_PACKAGE_UTIL_LINUX
 #  --disable-foo
 #
 
+config BR2_PACKAGE_UTIL_LINUX_BASIC
+	bool "install basic utilities"
+	help
+	  Install the basic util-linux binaries.
+
 config BR2_PACKAGE_UTIL_LINUX_MOUNT
 	bool "build mount utilties"
 	select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk
index b77e326..f822bcc 100644
--- a/package/util-linux/util-linux.mk
+++ b/package/util-linux/util-linux.mk
@@ -3,6 +3,7 @@
 # util-linux
 #
 #############################################################
+
 UTIL_LINUX_VERSION = $(UTIL_LINUX_VERSION_MAJOR)
 UTIL_LINUX_VERSION_MAJOR = 2.20
 UTIL_LINUX_SOURCE = util-linux-$(UTIL_LINUX_VERSION).tar.bz2
@@ -67,6 +68,34 @@ UTIL_LINUX_CONF_OPT += \
 	$(if $(BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS),--enable-login-utils) \
 	$(if $(BR2_PACKAGE_UTIL_LINUX_WRITE),--enable-write)
 
+ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBBLKID),y)
+define UTIL_LINUX_INSTALL_LIBBLKID
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libblkid \
+		DESTDIR=$(TARGET_DIR) install
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBMOUNT),y)
+define UTIL_LINUX_INSTALL_LIBMOUNT
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libmount \
+		DESTDIR=$(TARGET_DIR) install
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
+define UTIL_LINUX_INSTALL_LIBUUID
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/libuuid \
+		DESTDIR=$(TARGET_DIR) install
+endef
+endif
+
+define UTIL_LINUX_INSTALL_TARGET_CMDS
+	$(UTIL_LINUX_INSTALL_BASIC)
+	$(UTIL_LINUX_INSTALL_LIBBLKID)
+	$(UTIL_LINUX_INSTALL_LIBMOUNT)
+	$(UTIL_LINUX_INSTALL_LIBUUID)
+endef
+
 $(eval $(call AUTOTARGETS))
 
 # MKINSTALLDIRS comes from tweaked m4/nls.m4, but autoreconf uses staging
-- 
1.7.3.4

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

* [Buildroot] [PATCH 3/4] mpd: fixup sample config
  2011-09-30 19:47 [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Gustavo Zacarias
  2011-09-30 19:47 ` [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default Gustavo Zacarias
@ 2011-09-30 19:47 ` Gustavo Zacarias
  2011-10-02 18:58   ` Peter Korsgaard
  2011-09-30 19:47 ` [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41 Gustavo Zacarias
  2011-10-02 18:57 ` [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Peter Korsgaard
  3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-09-30 19:47 UTC (permalink / raw)
  To: buildroot

Fix sample mpd.conf so that the playlists directory lives inside the
main mpd data directory.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/multimedia/mpd/mpd.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/mpd/mpd.conf b/package/multimedia/mpd/mpd.conf
index 1a08ed0..5956b75 100644
--- a/package/multimedia/mpd/mpd.conf
+++ b/package/multimedia/mpd/mpd.conf
@@ -7,7 +7,7 @@
 music_directory		"/var/lib/mpd/music"
 
 # Directory where user-made playlists are stored (RW)
-playlist_directory	"/mnt/mpd/playlists"
+playlist_directory	"/var/lib/mpd/playlists"
 
 # Database file (RW)
 db_file			"/var/lib/mpd/database"
-- 
1.7.3.4

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

* [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41
  2011-09-30 19:47 [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Gustavo Zacarias
  2011-09-30 19:47 ` [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default Gustavo Zacarias
  2011-09-30 19:47 ` [Buildroot] [PATCH 3/4] mpd: fixup sample config Gustavo Zacarias
@ 2011-09-30 19:47 ` Gustavo Zacarias
  2011-10-02 18:57   ` Peter Korsgaard
  2011-10-02 18:57 ` [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Peter Korsgaard
  3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-09-30 19:47 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/smartmontools/smartmontools.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/smartmontools/smartmontools.mk b/package/smartmontools/smartmontools.mk
index d941504..d14e740 100644
--- a/package/smartmontools/smartmontools.mk
+++ b/package/smartmontools/smartmontools.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-SMARTMONTOOLS_VERSION = 5.40
+SMARTMONTOOLS_VERSION = 5.41
 SMARTMONTOOLS_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/smartmontools
 
 $(eval $(call AUTOTARGETS))
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default
  2011-09-30 19:47 ` [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default Gustavo Zacarias
@ 2011-09-30 20:21   ` Thomas Petazzoni
  2011-09-30 20:52     ` Gustavo Zacarias
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2011-09-30 20:21 UTC (permalink / raw)
  To: buildroot

Le Fri, 30 Sep 2011 16:47:30 -0300,
Gustavo Zacarias <gustavo@zacarias.com.ar> a ?crit :

> +config BR2_PACKAGE_UTIL_LINUX_BASIC
> +	bool "install basic utilities"
> +	help
> +	  Install the basic util-linux binaries.
> +

I don't see where this new option is being used.

> +define UTIL_LINUX_INSTALL_TARGET_CMDS
> +	$(UTIL_LINUX_INSTALL_BASIC)

And where this variable is defined.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default
  2011-09-30 20:21   ` Thomas Petazzoni
@ 2011-09-30 20:52     ` Gustavo Zacarias
  0 siblings, 0 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2011-09-30 20:52 UTC (permalink / raw)
  To: buildroot

On Fri, 30 Sep 2011 22:21:38 +0200, Thomas Petazzoni wrote:

> I don't see where this new option is being used.
>
>> +define UTIL_LINUX_INSTALL_TARGET_CMDS
>> +	$(UTIL_LINUX_INSTALL_BASIC)
>
> And where this variable is defined.
>
> Thomas

Sleep deprivation wins again, just sent proper v2.
Regards.

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

* [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4
  2011-09-30 19:47 [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2011-09-30 19:47 ` [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41 Gustavo Zacarias
@ 2011-10-02 18:57 ` Peter Korsgaard
  3 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-10-02 18:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Bump mpg123 to version 1.13.4, fixes for very long files (endless
 Gustavo> streams).

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41
  2011-09-30 19:47 ` [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41 Gustavo Zacarias
@ 2011-10-02 18:57   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-10-02 18:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/4] mpd: fixup sample config
  2011-09-30 19:47 ` [Buildroot] [PATCH 3/4] mpd: fixup sample config Gustavo Zacarias
@ 2011-10-02 18:58   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-10-02 18:58 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Fix sample mpd.conf so that the playlists directory lives
 Gustavo> inside the main mpd data directory.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-10-02 18:58 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-30 19:47 [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Gustavo Zacarias
2011-09-30 19:47 ` [Buildroot] [PATCH 2/4] util-linux: disable installing binaries by default Gustavo Zacarias
2011-09-30 20:21   ` Thomas Petazzoni
2011-09-30 20:52     ` Gustavo Zacarias
2011-09-30 19:47 ` [Buildroot] [PATCH 3/4] mpd: fixup sample config Gustavo Zacarias
2011-10-02 18:58   ` Peter Korsgaard
2011-09-30 19:47 ` [Buildroot] [PATCH 4/4] smartmontools: bump to version 5.41 Gustavo Zacarias
2011-10-02 18:57   ` Peter Korsgaard
2011-10-02 18:57 ` [Buildroot] [PATCH 1/4] mpg123: bump to version 1.13.4 Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.