Changeset 212
- Timestamp:
- 08/30/09 16:42:34 (11 months ago)
- Location:
- boscli-oss/boscli-oss-core
- Files:
-
- 6 added
- 3 removed
- 3 modified
- 5 moved
-
Makefile (deleted)
-
bin (deleted)
-
boscli.1 (added)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
debian/manpages (added)
-
debian/pyversions (added)
-
debian/rules (modified) (1 diff)
-
setup.py (added)
-
src/boscli (added)
-
src/boscli/__init__.py (added)
-
src/boscli/boscli.py (moved) (moved from boscli-oss/boscli-oss-core/src/boscli.py) (1 diff, 1 prop)
-
src/boscli/boscliutils.py (moved) (moved from boscli-oss/boscli-oss-core/src/boscliutils.py) (1 prop)
-
src/boscli/bosip.py (moved) (moved from boscli-oss/boscli-oss-core/src/bosip.py) (1 prop)
-
src/boscli/bostypes.py (moved) (moved from boscli-oss/boscli-oss-core/src/bostypes.py) (1 diff, 1 prop)
-
src/boscli/privileges.py (moved) (moved from boscli-oss/boscli-oss-core/src/privileges.py) (1 prop)
-
src/main.py (deleted)
Legend:
- Unmodified
- Added
- Removed
-
boscli-oss/boscli-oss-core/debian/changelog
r207 r212 1 boscli-oss-core (0.2.0-2) unstable; urgency=low 2 3 * Debian package rewrite (using python-support) 4 5 -- Eduardo Ferro <eferro@alea-soluciones.com> Sun, 30 Aug 2009 16:41:33 +0200 6 1 7 boscli-oss-core (0.2.0-1) unstable; urgency=low 2 8 -
boscli-oss/boscli-oss-core/debian/control
r204 r212 3 3 Priority: extra 4 4 Maintainer: Eduardo Ferro Aldama <eferro@alea-soluciones.com> 5 Build-Depends: debhelper (>= 5) 5 Build-Depends: cdbs (>= 0.4.49), 6 debhelper (>= 5.0), 7 python, 8 python-support (>= 0.6) 6 9 Standards-Version: 3.8.1 7 10 Homepage: http://oss.alea-soluciones.com/trac/wiki/BoscliOss/ 8 11 9 12 Package: boscli-oss-core 10 Architecture: all 11 Depends: ${shlibs:Depends}, python 13 Architecture: any 14 Depends: ${shlibs:Depends}, 15 ${misc:Depends}, 16 ${python:Depends} 12 17 Suggests: boscli-oss-utils, boscli-oss-system, boscli-oss-asterisk 13 18 Description: extensible command line processor for "ad hoc" shells creation -
boscli-oss/boscli-oss-core/debian/rules
r171 r212 1 1 #!/usr/bin/make -f 2 # -*- makefile -*-3 # Sample debian/rules that uses debhelper.4 # This file was originally written by Joey Hess and Craig Small.5 # As a special exception, when this file is copied by dh-make into a6 # dh-make output file, you may use that output file without restriction.7 # This special exception was added by Craig Small in version 0.37 of dh-make.8 2 9 # Uncomment this to turn on verbose mode.10 3 #export DH_VERBOSE=1 4 5 DEB_PYTHON_SYSTEM = pysupport 6 DEB_PYTHON_COMPILE_VERSION = $(shell pyversions -vd 2>/dev/null) 7 8 # Must be included before python-distutils.mk to use dh_python/dh_pysupport. 9 include /usr/share/cdbs/1/rules/debhelper.mk 10 11 include /usr/share/cdbs/1/class/python-distutils.mk 12 include /usr/share/cdbs/1/rules/utils.mk 13 14 15 common-install-prehook-arch:: 16 @# Remove unneeded files from the deb. 17 18 binary-post-install:: 19 @# Binary post install 20 21 22 clean:: 23 @# Clean 24 25 # For /usr/share/cdbs/1/rules/utils.mk sanity check. 26 common-binary-post-install-arch:: list-missing 11 27 12 28 13 29 14 15 configure: configure-stamp16 configure-stamp:17 dh_testdir18 # Add here commands to configure the package.19 20 touch configure-stamp21 22 23 build: build-stamp24 25 build-stamp: configure-stamp26 dh_testdir27 28 # Add here commands to compile the package.29 $(MAKE)30 #docbook-to-man debian/boscli-oss-core.sgml > boscli-oss-core.131 32 touch $@33 34 clean:35 dh_testdir36 dh_testroot37 rm -f build-stamp configure-stamp38 39 [ ! -f Makefile ] || $(MAKE) distclean40 41 dh_clean42 43 install: build44 dh_testdir45 dh_testroot46 dh_clean -k47 dh_installdirs48 49 # Add here commands to install the package into debian/boscli-oss.50 $(MAKE) DESTDIR=$(CURDIR)/debian/boscli-oss-core install51 52 53 # Build architecture-independent files here.54 binary-indep: build install55 dh_testdir56 dh_testroot57 dh_installchangelogs58 dh_installdocs59 dh_installexamples60 dh_install61 dh_installman62 dh_link63 dh_strip64 dh_compress65 dh_fixperms66 dh_installdeb67 dh_gencontrol68 dh_md5sums69 dh_builddeb70 71 72 # Build architecture-dependent files here.73 binary-arch: build install74 75 binary: binary-indep binary-arch76 .PHONY: build clean binary-indep binary-arch binary install configure -
boscli-oss/boscli-oss-core/src/boscli/boscli.py
r205 r212 762 762 The valid options are: 763 763 (The mandatory argument for "long format" options are also 764 mandatory for the correspondent s ort option)764 mandatory for the correspondent short option) 765 765 766 766 -h, --help -
boscli-oss/boscli-oss-core/src/boscli/boscliutils.py
-
boscli-oss/boscli-oss-core/src/boscli/bosip.py
-
boscli-oss/boscli-oss-core/src/boscli/bostypes.py
r210 r212 359 359 print type5.values('incomp') 360 360 print type5.help() 361 362 type6 = BiferGenericType(lambda incomplete_word: incomplete_word.lower(), "Lower case words") 363 print type6.values('inCOMPle') 364 print type6.help() 365 -
boscli-oss/boscli-oss-core/src/boscli/privileges.py
