pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/clive Update to 1.0.0:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9ecb35ad4386
branches:  trunk
changeset: 545840:9ecb35ad4386
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Aug 14 19:38:27 2008 +0000

description:
Update to 1.0.0:

Version 1.0.0
(August 9 2008, from branches/release/1.0.x)
svn://svn.gna.org/svn/clive/tags/1.0.0

 User-visible changes:
  - Major new features:
    * added: support for encrypted passwords, see clive(1) (--youtube,--dmotion)
    * added: clive-passwd utility for storing encrypted login passwords
    * added: --passwd option for using encrypted login passwords

  - Minor improvements:
    * fixed: some errors were still using "--youtube-user" and "--dmotion-user"
    * --version: print pycrypto, pysqlite and newt (? if found, otherwise -)

 Developer-visible changes:
    * urlgrabber is now the only prerequisite that is needed to run clive:
      features that req. other modules are disabled if a module is not found
    * added: prerequisite pycrypto
    * added: man/clive-passwd.1
    * added: src/clive/passwd.py
    * added: run-passwd.py
    * added: src/clive/modules.py
    * fixed: sqlite3 ImportError is now handled (src/clive/cache.py)
    * removed: *all* bundled packages
      - each dep. is best installed separately for security reasons
    * removed: --with-installed-PACKAGE configure options
      - now obsolete due to above change
    * removed: obsolete configuration scripts
      - acinclude.m4, config.guess, config.h.in, config.sub, depcomp, ltmain.sh
    * removed: obsolete src/clive/*.py.in files
      - src/clive/__init__.py.in remains
    * cleanups: INSTALL, README, NEWS, ChangeLog, TODO, configure.ac
    * configure.ac: if trunk: use revision for release date string


Version 0.5.0
(August 5 2008, from branches/release/0.5.x)
svn://svn.gna.org/svn/clive/tags/0.5.0

 New features, enhancements:
    * Added support for break.com
        Thanks to Jan Hulsbergen <afoo%gmail.com@localhost> for the initial patch
    * Added CHANGES file (ChangeLog and NEWS files are no longer updated)
    * Added xine,mplayer detection (--write-conf)
    * Added --no-login option
    * Added --no-proxy option
    * Added --no-confirm option (closes sr #2065)
    * Replaced --$host-(user|pass) with --$host=$username:$password
    * Replaced config $host_(user|pass) with $host_login="$username:$password"
    * Revived AC_PROG_RANLIB in configure.ac
    * Tweaked program description

 Bugfixes
    * --check-update: flawed version checking (e.g. 0.5.0 < 0.4.20)

 Other
    * Trackers now allow anononymous submissions
        https://gna.org/projects/clive

    * Added clive-users mailing list (General questions and discussion)
        https://lists.sourceforge.net/lists/listinfo/clive-users

        At the moment anything clive related can be discussed here including
        development related issues. clive-dev is likely to be added later.

    * Release branches are now used in the development
        svn://svn.gna.org/svn/clive/branches
        svn://svn.gna.org/svn/clive/trunk
        svn://svn.gna.org/svn/clive/tags

    * Release numbering is no longer as ad hoc as before
        Starting with this release, the project follows the following
        release numbering strategy:

        major.minor.micro

        major = Expected to have new features or entire feature sets
        marks compatibility boundaries - may be forward/backward incompatible

        minor = New features, usually only few at once
        must be backward compatible, not necessarily forward compatible

        micro = Bug fixes only or minor enhancements to existing features
        must be forward/backward compatible, no new features

diffstat:

 net/clive/Makefile |  12 +++++-------
 net/clive/PLIST    |  10 +++++++++-
 net/clive/distinfo |   8 ++++----
 3 files changed, 18 insertions(+), 12 deletions(-)

diffs (89 lines):

diff -r 234e748e0237 -r 9ecb35ad4386 net/clive/Makefile
--- a/net/clive/Makefile        Thu Aug 14 19:24:07 2008 +0000
+++ b/net/clive/Makefile        Thu Aug 14 19:38:27 2008 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2008/07/29 21:30:10 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2008/08/14 19:38:27 wiz Exp $
 #
 
-DISTNAME=      clive-0.4.20
+DISTNAME=      clive-1.0.0
 CATEGORIES=    net multimedia www
 MASTER_SITES=  http://dl.gna.org/clive/0.4/src/ \
                ${MASTER_SITE_SOURCEFORGE:=clive/}
@@ -13,22 +13,20 @@
 
 PKG_DESTDIR_SUPPORT=   user-destdir
 
+DEPENDS+=      ${PYPKGPREFIX}-sqlite2-[0-9]*:../../databases/py-sqlite2
 DEPENDS+=      ${PYPKGPREFIX}-newt>=0.51:../../devel/py-newt
+DEPENDS+=      ${PYPKGPREFIX}-m2crypto-[0-9]*:../../security/py-m2crypto
 DEPENDS+=      ${PYPKGPREFIX}-feedparser>=4.1:../../textproc/py-feedparser
 DEPENDS+=      urlgrabber>=3.1.0:../../www/urlgrabber
 
 GNU_CONFIGURE= yes
-CONFIGURE_ARGS+=       --with-installed-urlgrabber
-CONFIGURE_ARGS+=       --with-installed-feedparser
-CONFIGURE_ARGS+=       --with-installed-newt
 USE_LANGUAGES= c # configure script
 PY_PATCHPLIST=                 yes
 
 REPLACE_INTERPRETER+=  env_python
 REPLACE.env_python.old=        /usr/bin/env python
 REPLACE.env_python.new= ${PYTHONBIN}
-REPLACE_FILES.env_python=      src/clive/feedparser/feedparser.py
-REPLACE_FILES.env_python+=     src/scripts/clive
+REPLACE_FILES.env_python=      src/scripts/clive
 
 .include "../../lang/python/extension.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 234e748e0237 -r 9ecb35ad4386 net/clive/PLIST
--- a/net/clive/PLIST   Thu Aug 14 19:24:07 2008 +0000
+++ b/net/clive/PLIST   Thu Aug 14 19:38:27 2008 +0000
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.6 2008/07/29 21:30:10 wiz Exp $
+@comment $NetBSD: PLIST,v 1.7 2008/08/14 19:38:27 wiz Exp $
 bin/clive
+bin/clive-passwd
 ${PYSITELIB}/clive/__init__.py
 ${PYSITELIB}/clive/__init__.pyc
 ${PYSITELIB}/clive/__init__.pyo
@@ -21,6 +22,9 @@
 ${PYSITELIB}/clive/main.py
 ${PYSITELIB}/clive/main.pyc
 ${PYSITELIB}/clive/main.pyo
+${PYSITELIB}/clive/modules.py
+${PYSITELIB}/clive/modules.pyc
+${PYSITELIB}/clive/modules.pyo
 ${PYSITELIB}/clive/nomad.py
 ${PYSITELIB}/clive/nomad.pyc
 ${PYSITELIB}/clive/nomad.pyo
@@ -30,6 +34,9 @@
 ${PYSITELIB}/clive/parse.py
 ${PYSITELIB}/clive/parse.pyc
 ${PYSITELIB}/clive/parse.pyo
+${PYSITELIB}/clive/passwd.py
+${PYSITELIB}/clive/passwd.pyc
+${PYSITELIB}/clive/passwd.pyo
 ${PYSITELIB}/clive/path.py
 ${PYSITELIB}/clive/path.pyc
 ${PYSITELIB}/clive/path.pyo
@@ -55,4 +62,5 @@
 ${PYSITELIB}/clive/util.pyc
 ${PYSITELIB}/clive/util.pyo
 man/man1/clive.1
+man/man1/clive-passwd.1
 @dirrm ${PYSITELIB}/clive
diff -r 234e748e0237 -r 9ecb35ad4386 net/clive/distinfo
--- a/net/clive/distinfo        Thu Aug 14 19:24:07 2008 +0000
+++ b/net/clive/distinfo        Thu Aug 14 19:38:27 2008 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2008/07/29 21:30:10 wiz Exp $
+$NetBSD: distinfo,v 1.9 2008/08/14 19:38:27 wiz Exp $
 
-SHA1 (clive-0.4.20.tar.bz2) = 668fd72d455a324736edcfe83ab17feb4df01100
-RMD160 (clive-0.4.20.tar.bz2) = d5ffb28ff012db42cfcbe9358cc2286434660282
-Size (clive-0.4.20.tar.bz2) = 429981 bytes
+SHA1 (clive-1.0.0.tar.bz2) = 5cd79b806b0c684fa06defb6c2d082ae57c588c4
+RMD160 (clive-1.0.0.tar.bz2) = 521b91cb9a00ba35d6101496dcdc1dd1cbdd6443
+Size (clive-1.0.0.tar.bz2) = 104575 bytes



Home | Main Index | Thread Index | Old Index