diff options
author | wiz <wiz@pkgsrc.org> | 2008-08-14 19:38:27 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-08-14 19:38:27 +0000 |
commit | 0594ed5c58151f8105a7c05a3c5a6681f94665d5 (patch) | |
tree | 3b8007e1023e1e573b86286ff192f6f4d49b05b9 /net/clive | |
parent | 2c824d3104b36b1e81c94bf6839de35011419f66 (diff) | |
download | pkgsrc-0594ed5c58151f8105a7c05a3c5a6681f94665d5.tar.gz |
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> 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 (limited to 'net/clive')
-rw-r--r-- | net/clive/Makefile | 12 | ||||
-rw-r--r-- | net/clive/PLIST | 10 | ||||
-rw-r--r-- | net/clive/distinfo | 8 |
3 files changed, 18 insertions, 12 deletions
diff --git a/net/clive/Makefile b/net/clive/Makefile index ca1260f19da..358206c511c 100644 --- a/net/clive/Makefile +++ b/net/clive/Makefile @@ -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 @@ COMMENT= Command line video extraction tool for user-uploaded video hosts 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 --git a/net/clive/PLIST b/net/clive/PLIST index 194e5f6c205..13667b7b12a 100644 --- a/net/clive/PLIST +++ b/net/clive/PLIST @@ -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/login.pyo ${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/opts.pyo ${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.py ${PYSITELIB}/clive/util.pyc ${PYSITELIB}/clive/util.pyo man/man1/clive.1 +man/man1/clive-passwd.1 @dirrm ${PYSITELIB}/clive diff --git a/net/clive/distinfo b/net/clive/distinfo index 2613d63fbd1..ec5d8e1b42e 100644 --- a/net/clive/distinfo +++ b/net/clive/distinfo @@ -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 |