| Summary: | [PATCH] security/hottsh: eliminate py-pysqlite2x dependency | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | R.Mahmatkhanov <cvs-src> | ||||
| Component: | Individual Port(s) | Assignee: | Ashish SHUKLA <ashish> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
Sorry, synopsis should be: [PATCH] security/hotssh: eliminate py-pysqlite2x dependency -- Regards, Ruslan Tinderboxing kills... the drives. Responsible Changed From-To: freebsd-ports-bugs->ashish I'll take it. ashish 2011-09-12 14:22:20 UTC
FreeBSD ports repository
Modified files:
security/hotssh Makefile
Added files:
security/hotssh/files patch-hotssh_hotvte_vteterm.py
Log:
- Switch to databases/py-sqlite3 from databases/py-pysqlite2x[1]
- Use GNOME in MASTER_SITES instead of MASTER_SITE_GNOME[1]
- Bump PORTREVISION[1]
- Fix a bug showing up in Python 2.7+
PR: ports/160066
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Revision Changes Path
1.10 +4 -4 ports/security/hotssh/Makefile
1.1 +14 -0 ports/security/hotssh/files/patch-hotssh_hotvte_vteterm.py (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, with minor changes. Thanks! |
- since this port requires python2.5+ (with USE_PYTHON) switch to databases/py-sqlite3 instead of databases/py-pysqlite2x that is for python24 - while here use GNOME instead of ${MASTER_SITE_GNOME} - bump portrevision because of deps changes I checked the source. They use this pattern to deal with sqlite: """ 27 try: 28 import sqlite3 29 except: 30 from pysqlite2 import dbapi2 as sqlite3 """ So nothing will be broken with sqlite3. Fix: Patch attached with submission follows: