Index: cambalache/Makefile
===================================================================
--- cambalache/Makefile (nonexistent)
+++ cambalache/Makefile (revision 145)
@@ -0,0 +1,56 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../build-system/constants.mk
+
+
+url = $(DOWNLOAD_SERVER)/sources/GNOME/apps/cambalache
+
+versions = 0.12.1
+pkgname = cambalache
+suffix = tar.xz
+
+tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s = $(addsuffix .sha1sum, $(tarballs))
+
+patches = $(CURDIR)/patches/cambalache-0.12.1-python-cross.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
+
+
+include ../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(tarballs):
+ @echo -e "\n======= Downloading source tarballs =======" ; \
+ for tarball in $(tarballs) ; do \
+ echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+ done ; wait
+
+$(sha1s): $(tarballs)
+ @for sha in $@ ; do \
+ echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
+ echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+ touch $$sha ; \
+ echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
+ sha1sum --check $$sha ; ret="$$?" ; \
+ if [ "$$ret" == "1" ]; then \
+ echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
+ exit 1 ; \
+ fi ; \
+ done
+
+$(patches): $(sha1s)
+ @echo -e "\n======= Create Patches =======\n" ; \
+ ( cd create-0.12.1-python-cross-patch ; ./create.patch.sh ) ; \
+ echo -e "\n"
+
+download_clean:
+ @rm -f $(tarballs) $(sha1s) $(patches)
Index: cambalache/create-0.12.1-python-cross-patch/cambalache-0.12.1-new/meson.build
===================================================================
--- cambalache/create-0.12.1-python-cross-patch/cambalache-0.12.1-new/meson.build (nonexistent)
+++ cambalache/create-0.12.1-python-cross-patch/cambalache-0.12.1-new/meson.build (revision 145)
@@ -0,0 +1,53 @@
+project(
+ 'cambalache', 'c',
+ version: '0.12.1',
+ meson_version: '>= 0.50.0'
+)
+
+# File format version follows app version and only changes when there is a
+# change that prevents older versions to load it.
+fileformatversion = '0.12.0'
+
+python = import('python')
+python_bin = python.find_installation('python3')
+pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), 'cambalache')
+catalogsdir = join_paths(pkgdatadir, 'catalogs')
+localedir = join_paths(get_option('prefix'), get_option('localedir'))
+gnome = import('gnome')
+
+i18n = import('i18n')
+
+
+# Python requirements ['module', 'version', 'gi required version]
+modules = [
+ ['lxml', '>= 4.5.0'],
+ ['gi', '>= 3.38.0'],
+ ['gi.repository.GLib', '>= 2.66.0'],
+ ['gi.repository.Gtk', '>= 3.24.0', '3.0'],
+ ['gi.repository.Gtk', '>= 4.0.0', '4.0'],
+ ['gi.repository.WebKit2', '>= 2.32.0', '4.1'],
+ ['gi.repository.WebKit', '>= 2.32.0', '6.0'],
+ ['gi.repository.GtkSource', '', '4'],
+ ['gi.repository.Handy'],
+ ['gi.repository.Adw'],
+]
+
+gtk3_dep = dependency('gtk+-3.0', version: '>= 3.24.0')
+gtk4_dep = dependency('gtk4', version: '>= 4.4.0')
+
+handy_dep = dependency('libhandy-1', version: '>= 1.6.2')
+adw_dep = dependency('libadwaita-1', version: '>= 1.1.2')
+
+subdir('data')
+subdir('cambalache')
+subdir('catalogs')
+subdir('po')
+subdir('tests')
+
+# Post Install deps
+find_program('update-mime-database', required: true)
+find_program('gtk-update-icon-cache', required: true)
+find_program('update-desktop-database', required: true)
+find_program('glib-compile-schemas', required: true)
+
+meson.add_install_script('postinstall.py')
\ No newline at end of file
Index: cambalache/create-0.12.1-python-cross-patch/create.patch.sh
===================================================================
--- cambalache/create-0.12.1-python-cross-patch/create.patch.sh (nonexistent)
+++ cambalache/create-0.12.1-python-cross-patch/create.patch.sh (revision 145)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=0.12.1
+
+tar --files-from=file.list -xJvf ../cambalache-$VERSION.tar.xz
+mv cambalache-$VERSION cambalache-$VERSION-orig
+
+cp -rf ./cambalache-$VERSION-new ./cambalache-$VERSION
+
+diff --unified -Nr cambalache-$VERSION-orig cambalache-$VERSION > cambalache-$VERSION-python-cross.patch
+
+mv cambalache-$VERSION-python-cross.patch ../patches
+
+rm -rf ./cambalache-$VERSION
+rm -rf ./cambalache-$VERSION-orig
Property changes on: cambalache/create-0.12.1-python-cross-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: cambalache/create-0.12.1-python-cross-patch/file.list
===================================================================
--- cambalache/create-0.12.1-python-cross-patch/file.list (nonexistent)
+++ cambalache/create-0.12.1-python-cross-patch/file.list (revision 145)
@@ -0,0 +1 @@
+cambalache-0.12.1/meson.build
Index: cambalache/patches/README
===================================================================
--- cambalache/patches/README (nonexistent)
+++ cambalache/patches/README (revision 145)
@@ -0,0 +1,6 @@
+
+/* begin *
+
+ TODO: Leave some comment here.
+
+ * end */
Index: cambalache/patches
===================================================================
--- cambalache/patches (nonexistent)
+++ cambalache/patches (revision 145)
Property changes on: cambalache/patches
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,74 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.rk358x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: cambalache
===================================================================
--- cambalache (nonexistent)
+++ cambalache (revision 145)
Property changes on: cambalache
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,74 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.rk358x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~