sqlobject 0.12.4-3 source package in Ubuntu

Changelog

sqlobject (0.12.4-3) unstable; urgency=low


  * Acknowledge NMUs (Closes: #695233, #633843)
  * Use canonical URIs for Vcs-* fields (fix by Jakub Wilk)
  * Apply patch from upstream for insecure use of PYTHONPATH (Closes: #605183)
  * Add myself to the Uploaders
  * debian/copyright
    - Replaced (C) with © in the copyright mention (Fix by Carl Chenet)
  * debian/watch
    - Changed the regex to skip beta version in the remote repository
      (Fix by Carl Chenet)
    - Use https url for cheeseshop (fix from Stefano Rivera)
  * Update Build-Depends
    - Remove obsolete quilt dependancy (unneeded with source 3.0)
    - Update debhelper dependancy
  * Bump standards version to 3.9.4 (no further changes needed)

 -- Neil Muller <email address hidden>  Sun, 07 Jul 2013 15:59:05 +0200

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
sqlobject_0.12.4-3.dsc 2.0 KiB e8289ef443eba77db0df24b7ccdad4059baf6d1869890c43af691861a0afceb3
sqlobject_0.12.4.orig.tar.gz 246.4 KiB 75c2fdcbe3af7b18fd8d4a892279a474d306f75b0780aa50f656022388bee31c
sqlobject_0.12.4-3.debian.tar.gz 8.2 KiB c7c0c6d79cdec68cb2c9a63d7aad3ffdcae34540fc2783167a43527c8c1d74a1

Available diffs

No changes file available.

Binary packages built by this source

python-sqlobject: object relational manager providing an object interface to your database

 SQLObject is an object-relational mapper. It allows you to translate RDBMS
 table rows into Python objects, and manipulate those objects to transparently
 manipulate the database.
 .
 In using SQLObject, you will create a class definition that will describe how
 the object connects to the database (in addition to any other methods you may
 wish to add to the class). SQLObject will produce the code to access the
 database, and update the database with your changes. The interface to the
 database is meant to be indistinguishable from other interfaces you may add
 to the object.
 .
 SQLObject also includes a novel feature to generate WHERE clauses using
 Python syntax and objects (instead of generating SQL using string
 substitution, as is traditional).