Skip to content

Commit

Permalink
Update submodules, add minidb
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Feb 21, 2015
1 parent 0706399 commit c0e7ec4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "podcastparser"]
path = podcastparser
url = git://github.com/gpodder/podcastparser.git
[submodule "minidb"]
path = minidb
url = git://github.com/thp/minidb.git
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Included as Git submodules:
- gPodder 4 Core
- gPodder QML UI Reference Implementation
- podcastparser
- minidb
1 change: 1 addition & 0 deletions gpodder.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<file alias="touch/common/util.js">gpodder-ui-qml/common/util.js</file>
<file alias="main.py">gpodder-ui-qml/main.py</file>
<file alias="podcastparser.py">podcastparser/podcastparser.py</file>
<file alias="minidb.py">minidb/minidb.py</file>
<file alias="gpodder/__init__.py">gpodder-core/src/gpodder/__init__.py</file>
<file alias="gpodder/api.py">gpodder-core/src/gpodder/api.py</file>
<file alias="gpodder/common.py">gpodder-core/src/gpodder/common.py</file>
Expand Down
1 change: 1 addition & 0 deletions minidb
Submodule minidb added at afdf73
1 change: 1 addition & 0 deletions scripts/build_qrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def mount_files(out, source, target):
mount_files(out, 'gpodder-ui-qml/common', '%s/common' % variant)
mount_files(out, 'gpodder-ui-qml/main.py', 'main.py')
mount_files(out, 'podcastparser/podcastparser.py', 'podcastparser.py')
mount_files(out, 'minidb/minidb.py', 'minidb.py')
mount_files(out, 'gpodder-core/src/gpodder', 'gpodder')

print('</qresource>', file=out)
Expand Down

4 comments on commit c0e7ec4

@M4rtinK
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That Python 3 Android port is missing Sqlite in the build for some reason, so I'm afraid this won't work. :)

I'll eventually also need Sqlite for modRana, so I've tried to modify the Python build a bit like this:
http://paste.fedoraproject.org/190083/82680614
But it still lacked Sqlite afterwards (but the changes at least succeeded in adding CSV support).

@thp
Copy link
Member Author

@thp thp commented on c0e7ec4 Feb 26, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, getting Python 3 to build with SQLite is next on my TODO list.

@M4rtinK
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! :) Let me know if I can help with some testing, etc. :)

@M4rtinK
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW, looking at the "upstream" python3-android project, there have been some new commits, some of them looking quite handy:
rave-engine/python3-android@9eb7d83
-> I noticed the build has broken os.statvfs - I wonder if it could be fixed by this commit ?
rave-engine/python3-android@53aac72

Please sign in to comment.