From: <suc...@us...> - 2007-02-11 21:57:52
|
Revision: 346 http://svn.sourceforge.net/pmplib/?rev=346&view=rev Author: sucknblow Date: 2007-02-11 13:57:53 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Update package description to mention playlists. Update copyrights Modified Paths: -------------- trunk/pmplib/debian/control trunk/pmplib/debian/copyright trunk/pmplib/debian/easypmp.install Modified: trunk/pmplib/debian/control =================================================================== --- trunk/pmplib/debian/control 2007-02-11 21:17:39 UTC (rev 345) +++ trunk/pmplib/debian/control 2007-02-11 21:57:53 UTC (rev 346) @@ -10,7 +10,7 @@ Depends: ${shlibs:Depends} Description: create music databases used by portable media players Easypmp is a command line utility used to create and maintain the music - database on a variety of portable music players. + database and playlists on a variety of portable music players. . Many Portable music players allow the user to browse tracks by artist, album, genre, etc. In order to do this efficiently, they require a database of @@ -25,10 +25,17 @@ * iRiver H10 MTP (with emergency connect mode) * iRiver H10Jr. UMS * iRiver U10 UMS - * MEDION MDJuke220 and MDJuke 440 + * iRiver E10 UMS + * MEDION MDJuke220 and MDJuke440 * Samsung YH-820, YH-920 and YH-925 + * MSI MEGA PLAYER 540 + * Philips HDD6320 . A typical usage of easypmp is to connect the media player to the computer; mount it as if it were a normal USB disk; remove some music files from the player; copy some new music files to the player, and then running easypmp to update the database, before disconnecting the player. + . + Easypmp can also convert playlist files into a format suitable for media + player. Playlist files typically have a .m3u or .pls file extension, and + can be created by many desktop media players. Modified: trunk/pmplib/debian/copyright =================================================================== --- trunk/pmplib/debian/copyright 2007-02-11 21:17:39 UTC (rev 345) +++ trunk/pmplib/debian/copyright 2007-02-11 21:57:53 UTC (rev 346) @@ -7,7 +7,7 @@ https://svn.sourceforge.net/svnroot/pmplib The upstream maintainer of this package is -Nyaochi <ny...@ny...> +Naoaki Okazaki <ny...@ny...> Copyright: @@ -71,6 +71,7 @@ Copyright (c) 1997 Shigio Yamaguchi. All rights reserved. Copyright (c) 1999 Tama Communications Corporation. All rights reserved. +Copyright (c) 2006 Martin Ellis <mar...@kd...>. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -96,6 +97,6 @@ The Debian packaging is - Copyright (c) 2006 Martin Ellis <mar...@kd...> + Copyright (c) 2006-2007 Martin Ellis <mar...@kd...> and is licensed under the GPL, see above. Modified: trunk/pmplib/debian/easypmp.install =================================================================== --- trunk/pmplib/debian/easypmp.install 2007-02-11 21:17:39 UTC (rev 345) +++ trunk/pmplib/debian/easypmp.install 2007-02-11 21:57:53 UTC (rev 346) @@ -4,5 +4,7 @@ debian/tmp/usr/bin/easypmp debian/tmp/usr/share/pmplib/* debian/tmp/usr/share/man/man1/easypmp.1 -debian/tmp/usr/share/doc/easypmp/* +debian/tmp/usr/share/doc/pmplib/README +debian/tmp/usr/share/doc/pmplib/AUTHORS +debian/tmp/usr/share/doc/pmplib/ChangeLog debian/lintian/easypmp usr/share/lintian/overrides This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <suc...@us...> - 2007-02-11 23:19:57
|
Revision: 347 http://svn.sourceforge.net/pmplib/?rev=347&view=rev Author: sucknblow Date: 2007-02-11 15:19:58 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Split up Debian package to include separate libpmp0 and libpmp-dev packages. Modified Paths: -------------- trunk/pmplib/debian/changelog trunk/pmplib/debian/control trunk/pmplib/debian/easypmp.install trunk/pmplib/debian/rules Added Paths: ----------- trunk/pmplib/debian/libpmp-dev.install trunk/pmplib/debian/libpmp0.install Modified: trunk/pmplib/debian/changelog =================================================================== --- trunk/pmplib/debian/changelog 2007-02-11 21:57:53 UTC (rev 346) +++ trunk/pmplib/debian/changelog 2007-02-11 23:19:58 UTC (rev 347) @@ -1,4 +1,4 @@ -pmplib (0.12-1) unstable; urgency=low +pmplib (0.14-1) unstable; urgency=low * Initial release Closes: #369975 Modified: trunk/pmplib/debian/control =================================================================== --- trunk/pmplib/debian/control 2007-02-11 21:57:53 UTC (rev 346) +++ trunk/pmplib/debian/control 2007-02-11 23:19:58 UTC (rev 347) @@ -7,7 +7,7 @@ Package: easypmp Architecture: any -Depends: ${shlibs:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} Description: create music databases used by portable media players Easypmp is a command line utility used to create and maintain the music database and playlists on a variety of portable music players. @@ -39,3 +39,43 @@ Easypmp can also convert playlist files into a format suitable for media player. Playlist files typically have a .m3u or .pls file extension, and can be created by many desktop media players. + +Package: libpmp0 +Architecture: any +Depends: ${shlibs:Depends} +Description: library for creating playlists for portable media players + PMPlib is a library for creating and maintaining the music database and + playlists for a variety of portable music players. + . + This package provides the PMPlib library only: it does not provide any programs + for updating the music database or playlists on a device. A command line + program for this task is included in the easypmp package. + . + Developers who wish to use PMPlib in their own application should install the + libpmp-dev package. + . + PMPlib currently only supports media players that can be mounted as a USB + storage device. These are: + . + * iRiver H100 series + * iRiver H300 series + * iRiver H10 UMS + * iRiver H10 MTP (with emergency connect mode) + * iRiver H10Jr. UMS + * iRiver U10 UMS + * iRiver E10 UMS + * MEDION MDJuke220 and MDJuke440 + * Samsung YH-820, YH-920 and YH-925 + * MSI MEGA PLAYER 540 + * Philips HDD6320 + +Package: libpmp-dev +Architecture: any +Depends: libpmp0 (= ${Source-Version}) +Description: library for creating databases for portable media players (development files) + PMPlib is a library for creating and maintaining the music database and + playlists for a variety of portable music players. + . + This package contains the header files and static library for PMPlib. Install + it if you want to develop or compile programs that use PMPlib. The PMPlib + library itself is included in the libpmp0 package. \ No newline at end of file Modified: trunk/pmplib/debian/easypmp.install =================================================================== --- trunk/pmplib/debian/easypmp.install 2007-02-11 21:57:53 UTC (rev 346) +++ trunk/pmplib/debian/easypmp.install 2007-02-11 23:19:58 UTC (rev 347) @@ -1,10 +1,2 @@ -debian/tmp/usr/lib/libpmp*.so.* -debian/tmp/usr/lib/pmplib/*.so -debian/tmp/usr/lib/pmplib/*.la debian/tmp/usr/bin/easypmp -debian/tmp/usr/share/pmplib/* debian/tmp/usr/share/man/man1/easypmp.1 -debian/tmp/usr/share/doc/pmplib/README -debian/tmp/usr/share/doc/pmplib/AUTHORS -debian/tmp/usr/share/doc/pmplib/ChangeLog -debian/lintian/easypmp usr/share/lintian/overrides Added: trunk/pmplib/debian/libpmp-dev.install =================================================================== --- trunk/pmplib/debian/libpmp-dev.install (rev 0) +++ trunk/pmplib/debian/libpmp-dev.install 2007-02-11 23:19:58 UTC (rev 347) @@ -0,0 +1,3 @@ +debian/tmp/usr/include/pmplib/* +debian/tmp/usr/lib/*.so +debian/tmp/usr/lib/*.la Added: trunk/pmplib/debian/libpmp0.install =================================================================== --- trunk/pmplib/debian/libpmp0.install (rev 0) +++ trunk/pmplib/debian/libpmp0.install 2007-02-11 23:19:58 UTC (rev 347) @@ -0,0 +1,5 @@ +debian/tmp/usr/lib/libpmp*.so.* +debian/tmp/usr/lib/pmplib/*.so +debian/tmp/usr/lib/pmplib/*.la +debian/tmp/usr/share/pmplib/* +debian/lintian/easypmp usr/share/lintian/overrides Modified: trunk/pmplib/debian/rules =================================================================== --- trunk/pmplib/debian/rules 2007-02-11 21:57:53 UTC (rev 346) +++ trunk/pmplib/debian/rules 2007-02-11 23:19:58 UTC (rev 347) @@ -20,7 +20,8 @@ config.status: configure dh_testdir - CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" ./configure \ + CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs -Wl,--as-needed" \ + ./configure \ --host=$(DEB_HOST_GNU_TYPE) \ --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr \ @@ -68,9 +69,8 @@ dh_testdir dh_testroot dh_installchangelogs ChangeLog - dh_installdocs + dh_installdocs -A AUTHORS dh_install -# dh_installmenu dh_installman dh_link dh_strip @@ -78,7 +78,7 @@ dh_fixperms dh_makeshlibs dh_installdeb - dh_shlibdeps -ldebian/easypmp/usr/lib + dh_shlibdeps -Llibpmp0 -ldebian/libpmp0/usr/lib dh_gencontrol dh_md5sums dh_builddeb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <suc...@us...> - 2007-02-12 00:33:34
|
Revision: 349 http://svn.sourceforge.net/pmplib/?rev=349&view=rev Author: sucknblow Date: 2007-02-11 16:33:34 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Lintian override now unneccessary Modified Paths: -------------- trunk/pmplib/debian/libpmp0.install Removed Paths: ------------- trunk/pmplib/debian/lintian/ Modified: trunk/pmplib/debian/libpmp0.install =================================================================== --- trunk/pmplib/debian/libpmp0.install 2007-02-11 23:45:11 UTC (rev 348) +++ trunk/pmplib/debian/libpmp0.install 2007-02-12 00:33:34 UTC (rev 349) @@ -2,4 +2,3 @@ debian/tmp/usr/lib/pmplib/*.so debian/tmp/usr/lib/pmplib/*.la debian/tmp/usr/share/pmplib/* -debian/lintian/easypmp usr/share/lintian/overrides This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <suc...@us...> - 2007-02-14 21:23:45
|
Revision: 366 http://svn.sourceforge.net/pmplib/?rev=366&view=rev Author: sucknblow Date: 2007-02-14 13:23:45 -0800 (Wed, 14 Feb 2007) Log Message: ----------- Small style improvements to packaging scripts Modified Paths: -------------- trunk/pmplib/debian/changelog trunk/pmplib/debian/control trunk/pmplib/debian/copyright Modified: trunk/pmplib/debian/changelog =================================================================== --- trunk/pmplib/debian/changelog 2007-02-14 21:17:52 UTC (rev 365) +++ trunk/pmplib/debian/changelog 2007-02-14 21:23:45 UTC (rev 366) @@ -3,4 +3,3 @@ * Initial release Closes: #369975 -- Martin Ellis <mar...@kd...> Sat, 29 Jul 2006 23:05:36 +0100 - Modified: trunk/pmplib/debian/control =================================================================== --- trunk/pmplib/debian/control 2007-02-14 21:17:52 UTC (rev 365) +++ trunk/pmplib/debian/control 2007-02-14 21:23:45 UTC (rev 366) @@ -40,6 +40,8 @@ Easypmp can also convert playlist files into a format suitable for media player. Playlist files typically have a .m3u or .pls file extension, and can be created by many desktop media players. + . + Homepage: http://pmplib.sourceforge.net/ Package: libpmp-0.14 Architecture: any @@ -70,6 +72,8 @@ * Samsung YH-820, YH-920 and YH-925 * MSI MEGA PLAYER 540 * Philips HDD6320 + . + Homepage: http://pmplib.sourceforge.net/ Package: libpmp-dev Architecture: any @@ -82,3 +86,5 @@ This package contains the header files and static library for PMPlib. Install it if you want to develop or compile programs that use PMPlib. The PMPlib library itself is included in the libpmp0 package. + . + Homepage: http://pmplib.sourceforge.net/ Modified: trunk/pmplib/debian/copyright =================================================================== --- trunk/pmplib/debian/copyright 2007-02-14 21:17:52 UTC (rev 365) +++ trunk/pmplib/debian/copyright 2007-02-14 21:23:45 UTC (rev 366) @@ -99,4 +99,3 @@ The Debian packaging is Copyright (c) 2006-2007 Martin Ellis <mar...@kd...> and is licensed under the GPL, see above. - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |