Skip to content

Commit

Permalink
Preparing a new release system
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Jan 30, 2013
1 parent d5ba2ba commit 5f2ad12
Show file tree
Hide file tree
Showing 9 changed files with 275 additions and 269 deletions.
204 changes: 49 additions & 155 deletions .gitignore
@@ -1,163 +1,57 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML



############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.pyc
*.pyo
*.mo
*.egg-info
dist
*.egg
*.EGG
*.EGG-INFO
build
eggs
parts
bin
var
sdist
downloads/*
eggs/*
fake-eggs/*
parts/*
develop-eggs
dist
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.mr.developer.cfg
.hg
.bzr
.svn
*.pyc
*.pyo
*.LCK
*.lck
*~
*.bak
.coverage
.tox
*.pyd
*.so
*.orig
*.rej
__minitage__*
.metadata
.secret.cfg
.settings
.project
.pydevproject
*.status

#Translations
*.mo
.DS_Store
docs/build/*

#Mr Developer
.mr.developer.cfg
*.min.js
*.min.css
*.debug.css
*.db
*.jar
venv*
__pycache__

# Mac crap
.DS_Store
tests/test-installation-environment

bin/
distribute-*.tar.gz
include/
lib/
local/
virtualenv.py
22 changes: 14 additions & 8 deletions README → CHANGES.rst
@@ -1,10 +1,17 @@
What's new in Skype4Py 1.0.32.1 ?
1.0.33.1
=================================

* Reworked release system and egg structure to follow the best practices [miohtama]

* Merged all fixed done in a fork https://github.com/stigkj/Skype4Py [miohtama]

1.0.32.1
=================================

* Project moved to github.


What's new in Skype4Py 1.0.32.0 ?
1.0.32.0
=================================

* Skype4Py.platform
Expand All @@ -27,20 +34,20 @@ What's new in Skype4Py 1.0.32.0 ?
The old DBus transport options (the options passed to Skype object constructor)
were removed and replaced by a single "RunMainLoop" option. The same option has
been added to Mac OS X platform transport.

The default value (if option is not specified) is True which means that the
transport will run an events loop on a separate thread to be able to receive
and process messages from Skype (which result in Skype4Py event handlers being
fired up).

This option has to be set to False if the events loop is going to be run somewhere
else - the primary example are GUI applications which use the events loop to
process messages from the user interfaces.

Trying to run two loops (one by the GUI framework and another one by Skype4Py)
causes a lot of problems and unexpected behavior. When set to False, this option
will tell Skype4Py to reuse the already running loop.

Note that if no other loop is running and this option is False, Skype4Py will
remain to function (commands may be send to Skype and replies are returned)
but it won't receive notifications from the client and their corresponding
Expand Down Expand Up @@ -79,8 +86,7 @@ What's new in Skype4Py 1.0.32.0 ?

Skype4Py now returns unicode only when it is needed. For example, Skypenames
are plain strings now while chat messages (their bodies) remain in unicode.

Also, if Skype4Py expects a unicode string from the user and a plain string
is passed instead, it tries to decode it using the UTF-8 codec (as opposed
to ASCII codec which was used previously).

21 changes: 21 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,21 @@
Copyright (c) 2007-2009, Arkadiusz Wahlig

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of Arkadiusz Wahlig nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73 changes: 73 additions & 0 deletions MANIFEST
@@ -0,0 +1,73 @@
# file GENERATED by distutils, do NOT edit
setup.py
Skype4Py/LICENSE
Skype4Py/__init__.py
Skype4Py/application.py
Skype4Py/call.py
Skype4Py/callchannel.py
Skype4Py/chat.py
Skype4Py/client.py
Skype4Py/conversion.py
Skype4Py/enums.py
Skype4Py/errors.py
Skype4Py/filetransfer.py
Skype4Py/profile.py
Skype4Py/settings.py
Skype4Py/skype.py
Skype4Py/sms.py
Skype4Py/user.py
Skype4Py/utils.py
Skype4Py/voicemail.py
Skype4Py/api/__init__.py
Skype4Py/api/darwin.py
Skype4Py/api/posix.py
Skype4Py/api/posix_dbus.py
Skype4Py/api/posix_x11.py
Skype4Py/api/windows.py
Skype4Py/lang/__init__.py
Skype4Py/lang/ar.py
Skype4Py/lang/bg.py
Skype4Py/lang/cs.py
Skype4Py/lang/cz.py
Skype4Py/lang/da.py
Skype4Py/lang/de.py
Skype4Py/lang/el.py
Skype4Py/lang/en.py
Skype4Py/lang/es.py
Skype4Py/lang/et.py
Skype4Py/lang/fi.py
Skype4Py/lang/fr.py
Skype4Py/lang/he.py
Skype4Py/lang/hu.py
Skype4Py/lang/it.py
Skype4Py/lang/ja.py
Skype4Py/lang/ko.py
Skype4Py/lang/lt.py
Skype4Py/lang/lv.py
Skype4Py/lang/nl.py
Skype4Py/lang/no.py
Skype4Py/lang/pl.py
Skype4Py/lang/pp.py
Skype4Py/lang/pt.py
Skype4Py/lang/ro.py
Skype4Py/lang/ru.py
Skype4Py/lang/sv.py
Skype4Py/lang/tr.py
Skype4Py/lang/x1.py
examples/app2app_client.py
examples/app2app_server.py
examples/callfriend.py
examples/search.py
examples/sms.py
unittests/applicationtest.py
unittests/calltest.py
unittests/chattest.py
unittests/clienttest.py
unittests/filetransfertest.py
unittests/profiletest.py
unittests/settingstest.py
unittests/skype4pytest.py
unittests/skypetest.py
unittests/smstest.py
unittests/usertest.py
unittests/voicemailtest.py

0 comments on commit 5f2ad12

Please sign in to comment.