# HG changeset patch # User Aleksej Bobylev # Date 1536879412 -10800 # Node ID 8b5b2a6d07b875e0083cfa64748eb2a5e29b7d94 # Parent 228b9c951d978cc753290a4c753d9a188cec9d14 Micro-updates + { new clang + assaultcube (still broken)} + {new python modules from SliTaz Cooking + their depends} diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/.icon.png Binary file assaultcube/.icon.png has changed diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/receipt --- a/assaultcube/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/assaultcube/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,41 +1,62 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="assaultcube" -VERSION="1.1.0.4" +VERSION="1.2.0.2" CATEGORY="games" -SHORT_DESC="A realistic team oriented multiplayer FPS based on the cube engine." +SHORT_DESC="A realistic team oriented multiplayer FPS based on the Cube engine" MAINTAINER="slaxemulator@gmail.com" LICENSE="zlib/libpng" -SOURCE="AssaultCube" -TARBALL="${SOURCE}_v${VERSION}_source.tar.bz2" -SOURCE="AssaultCube-Source" WEB_SITE="http://assault.cubers.net/" -WGET_URL="$SF_MIRROR/actiongame/$TARBALL" -DEPENDS="openal libsdl-image libsdl-mixer mesa glu assaultcube-data" -BUILD_DEPENDS="openal-dev libsdl-image-dev libsdl-mixer-dev mesa-dev \ -glu-dev zlib-dev" +TARBALL="AssaultCube_v$VERSION.tar.bz2" +WGET_URL="https://github.com/assaultcube/AC/releases/download/v$VERSION/$TARBALL" -# Rules to configure and make the package. -compile_rules() -{ +BUILD_DEPENDS="automake libtool clang-dev openal-dev libsdl-image-dev \ +libsdl-mixer-dev mesa-dev glu-dev zlib-dev curl-dev" +# xorg-libX11-dev libogg-dev libvorbis-dev +SPLIT="$PACKAGE-data" +COOKOPTS="skip-log-errors" + +compile_rules() { + export CXX='clang++' + + cd $src/source/enet + autoreconf -vfi + ./configure $CONFIGURE_ARGS && + make + cd $src/source/src - sed -i 's/lvorbisfile/& -lX11/' Makefile - make - mkdir -p $DESTDIR/usr/bin - cp -a ac_client $DESTDIR/usr/bin - cp -a ac_server $DESTDIR/usr/bin - + make || return 1 + + # install executables + install -Dm755 ac_client $install/usr/bin/ac_client + install -Dm755 ac_server $install/usr/bin/ac_server + + # install shell wrappers + install -Dm755 $stuff/assaultcube $install/usr/bin/assaultcube + install -Dm755 $stuff/assaultcube-server $install/usr/bin/assaultcube-server + + # install data + mkdir -p $install/usr/share/assaultcube/ + cp -r config/ packages/ docs/ mods/ $install/usr/share/assaultcube/ + find $install -type f -exec chmod a-x '{}' \; + + # remove CR line endings + find ./config ./packages ./docs ./mods -type f \ + \( -name '*.cfg' -o -name '*.txt' \) \ + | xargs -n1 dos2unix } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr/bin - cp -a $install/usr/bin/ac_client $fs/usr/bin - cp -a $install/usr/bin/ac_server $fs/usr/bin - cp -a $stuff/assaultcube $fs/usr/bin - cp -a $stuff/assaultcube-server $fs/usr/bin - chmod +x $fs/usr/bin/assaultcube - chmod +x $fs/usr/bin/assaultcube-server +genpkg_rules() { + case $PACKAGE in + assaultcube) + copy bin/ + DEPENDS="openal libsdl-image libsdl-mixer mesa glu assaultcube-data" + ;; + *-data) + copy assaultcube/ + DEPENDS=" " + CAT="games|data files" + ;; + esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/stuff/assaultcube --- a/assaultcube/stuff/assaultcube Tue Sep 11 11:29:43 2018 +0300 +++ b/assaultcube/stuff/assaultcube Fri Sep 14 01:56:52 2018 +0300 @@ -1,4 +1,4 @@ #!/bin/sh cd /usr/share/assaultcube -ac_client "--home=${HOME}/.assaultcube" "--init=${HOME}/config/init.cfg" "$@" +ac_client "--home=${HOME}/.assaultcube" "--init=${HOME}/.assaultcube/config/init.cfg" "$@" diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/stuff/assaultcube.desktop --- a/assaultcube/stuff/assaultcube.desktop Tue Sep 11 11:29:43 2018 +0300 +++ b/assaultcube/stuff/assaultcube.desktop Fri Sep 14 01:56:52 2018 +0300 @@ -7,7 +7,6 @@ Exec=assaultcube Icon=assaultcube Terminal=false -X-MultipleArgs=false MimeType=text/html; StartupNotify=false Categories=Game;ActionGame; diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/stuff/patches/assaultcube-gcc6.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/assaultcube/stuff/patches/assaultcube-gcc6.patch Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,301 @@ +From 752950989b4e286459ca9aee3d61a868d7b20fa4 Mon Sep 17 00:00:00 2001 +From: ac-stef +Date: Sat, 27 Feb 2016 21:28:23 +0100 +Subject: [PATCH] fix some errors and warnings for GCC 6 + +* do not use std::abs() because math.h includes one, that converts ints + to double. Use own iabs(), which directly uses labs() instead. +* don't use the word "gamma" as name for variables +* don't use a homebrew round() function +--- + source/src/bot/bot_waypoint.cpp | 12 ++++++------ + source/src/command.cpp | 2 +- + source/src/command.h | 1 + + source/src/crypto.cpp | 2 +- + source/src/editing.cpp | 6 +++--- + source/src/entity.h | 2 +- + source/src/main.cpp | 8 ++++---- + source/src/platform.h | 9 +-------- + source/src/protos.h | 3 ++- + source/src/rendercubes.cpp | 8 ++++---- + source/src/rendertext.cpp | 4 ++-- + source/src/tools.h | 3 +-- + source/src/world.cpp | 6 +++--- + source/src/worldocull.cpp | 2 +- + source/src/worldrender.cpp | 4 ++-- + 15 files changed, 33 insertions(+), 39 deletions(-) + +diff --git a/source/src/bot/bot_waypoint.cpp b/source/src/bot/bot_waypoint.cpp +index 520c686..7b265ef 100644 +--- a/source/src/bot/bot_waypoint.cpp ++++ b/source/src/bot/bot_waypoint.cpp +@@ -1221,7 +1221,7 @@ void CWaypointClass::CalcCost(node_s *pNode) + flCost += (1.0f-flFraction)*0.5f; + } + +- if ((abs(a) > 4) || (abs(b) > 4)) continue; ++ if ((iabs(a) > 4) || (iabs(b) > 4)) continue; + + vec from = to; + to.z -= (JUMP_HEIGHT - 1.0f); +@@ -1249,7 +1249,7 @@ void CWaypointClass::CalcCost(node_s *pNode) + flCost += (1.0f-flFraction)*0.5f; + } + +- if ((abs(a) > 4) || (abs(b) > 4)) continue; ++ if ((iabs(a) > 4) || (iabs(b) > 4)) continue; + + vec from = to; + to.z -= (JUMP_HEIGHT - 1.0f); +@@ -1671,12 +1671,12 @@ node_s *CWaypointClass::GetNearestTriggerFloodWP(vec v_origin, float flRange) + void CWaypointClass::GetNodeIndexes(const vec &v_origin, short *i, short *j) + { + // Function code by cheesy and PMB +- //*i = abs((int)((int)(v_origin.x + (2*ssize)) / SECTOR_SIZE)); +- //*j = abs((int)((int)(v_origin.y + (2*ssize)) / SECTOR_SIZE)); ++ //*i = iabs((int)((int)(v_origin.x + (2*ssize)) / SECTOR_SIZE)); ++ //*j = iabs((int)((int)(v_origin.y + (2*ssize)) / SECTOR_SIZE)); + //*i = (int)((v_origin.x) / ssize * MAX_MAP_GRIDS); + //*j = (int)((v_origin.y) / ssize * MAX_MAP_GRIDS); +- *i = abs((int)((v_origin.x) / MAX_MAP_GRIDS)); +- *j = abs((int)((v_origin.y) / MAX_MAP_GRIDS)); ++ *i = iabs((int)((v_origin.x) / MAX_MAP_GRIDS)); ++ *j = iabs((int)((v_origin.y) / MAX_MAP_GRIDS)); + + if (*i > MAX_MAP_GRIDS - 1) + *i = MAX_MAP_GRIDS - 1; +diff --git a/source/src/command.cpp b/source/src/command.cpp +index 668f3bf..2a5c90d 100644 +--- a/source/src/command.cpp ++++ b/source/src/command.cpp +@@ -499,7 +499,7 @@ char *executeret(const char *p) // all evaluation hap + if(lc<=seer_t1.length()) + { + int dt = seer_t1[seer_index] - seer_t1[lc]; +- if(abs(dt)<2) ++ if(iabs(dt)<2) + { + conoutf("SCRIPT EXECUTION warning [%d:%s]", &p, p); + seer_t2.add(seer_t1[seer_index]); +diff --git a/source/src/command.h b/source/src/command.h +index a3ca68a..2a3de0c 100644 +--- a/source/src/command.h ++++ b/source/src/command.h +@@ -86,6 +86,7 @@ enum { IEXC_CORE = 0, IEXC_CFG, IEXC_PROMPT, IEXC_MAPCFG, IEXC_MDLCFG, IEXC_NUM + #define VARNP(name, global, min, cur, max) int global = variable(#name, min, cur, max, &global, NULL, true) + #define VARF(name, min, cur, max, body) extern int name; void var_##name() { body; } int name = variable(#name, min, cur, max, &name, var_##name, false) + #define VARFP(name, min, cur, max, body) extern int name; void var_##name() { body; } int name = variable(#name, min, cur, max, &name, var_##name, true) ++#define VARNFP(name, global, min, cur, max, body) extern int global; void var_##name() { body; } int global = variable(#name, min, cur, max, &global, var_##name, true) + + #define FVARP(name, min, cur, max) float name = fvariable(#name, min, cur, max, &name, NULL, true) + #define FVAR(name, min, cur, max) float name = fvariable(#name, min, cur, max, &name, NULL, false) +diff --git a/source/src/crypto.cpp b/source/src/crypto.cpp +index 44041be..0684750 100644 +--- a/source/src/crypto.cpp ++++ b/source/src/crypto.cpp +@@ -778,7 +778,7 @@ static const char *hashchunktoa(tiger::chunk h) // portable solution instead o + const char *genpwdhash(const char *name, const char *pwd, int salt) + { + static string temp; +- formatstring(temp)("%s %d %s %s %d", pwd, salt, name, pwd, abs(PROTOCOL_VERSION)); ++ formatstring(temp)("%s %d %s %s %d", pwd, salt, name, pwd, iabs(PROTOCOL_VERSION)); + tiger::hashval hash; + tiger::hash((uchar *)temp, (int)strlen(temp), hash); + formatstring(temp)("%s %s %s", hashchunktoa(hash.chunks[0]), hashchunktoa(hash.chunks[1]), hashchunktoa(hash.chunks[2])); +diff --git a/source/src/editing.cpp b/source/src/editing.cpp +index 8d5e1ff..745aa98 100644 +--- a/source/src/editing.cpp ++++ b/source/src/editing.cpp +@@ -137,11 +137,11 @@ void checkselections() + void makesel(bool isnew) + { + block &cursel = sels.last(); //RR 10/12/12 - FIXEME, error checking should happen with "isnew", not here checking if it really is new. +- if(isnew || sels.length() == 0) addselection(min(lastx, cx), min(lasty, cy), abs(lastx-cx)+1, abs(lasty-cy)+1, max(lasth, ch)); ++ if(isnew || sels.length() == 0) addselection(min(lastx, cx), min(lasty, cy), iabs(lastx-cx)+1, iabs(lasty-cy)+1, max(lasth, ch)); + else + { + cursel.x = min(lastx, cx); cursel.y = min(lasty, cy); +- cursel.xs = abs(lastx-cx)+1; cursel.ys = abs(lasty-cy)+1; ++ cursel.xs = iabs(lastx-cx)+1; cursel.ys = iabs(lasty-cy)+1; + cursel.h = max(lasth, ch); + correctsel(cursel); + } +@@ -849,7 +849,7 @@ void movemap(int xo, int yo, int zo) // move whole map + } + if(xo || yo) + { +- block b = { max(-xo, 0), max(-yo, 0), ssize - abs(xo), ssize - abs(yo) }, *cp = blockcopy(b); ++ block b = { max(-xo, 0), max(-yo, 0), ssize - iabs(xo), ssize - iabs(yo) }, *cp = blockcopy(b); + cp->x = max(xo, 0); + cp->y = max(yo, 0); + blockpaste(*cp); +diff --git a/source/src/entity.h b/source/src/entity.h +index e2ad32d..84ac385 100644 +--- a/source/src/entity.h ++++ b/source/src/entity.h +@@ -538,7 +538,7 @@ class playerent : public dynent, public playerstate + { + const int maxskin[2] = { 4, 6 }; + t = team_base(t < 0 ? team : t); +- nextskin[t] = abs(s) % maxskin[t]; ++ nextskin[t] = iabs(s) % maxskin[t]; + } + }; + +diff --git a/source/src/main.cpp b/source/src/main.cpp +index 0d57c0c..c51cd74 100644 +--- a/source/src/main.cpp ++++ b/source/src/main.cpp +@@ -519,11 +519,11 @@ void setresdata(char *s, enet_uint32 c) + COMMANDF(screenres, "ii", (int *w, int *h) { screenres(*w, *h); }); + + static int curgamma = 100; +-VARFP(gamma, 30, 100, 300, ++VARNFP(gamma, vgamma, 30, 100, 300, + { +- if(gamma == curgamma) return; +- curgamma = gamma; +- float f = gamma/100.0f; ++ if(vgamma == curgamma) return; ++ curgamma = vgamma; ++ float f = vgamma/100.0f; + if(SDL_SetGamma(f,f,f)==-1) conoutf("Could not set gamma: %s", SDL_GetError()); + }); + +diff --git a/source/src/platform.h b/source/src/platform.h +index aece7e2..fd2eef1 100644 +--- a/source/src/platform.h ++++ b/source/src/platform.h +@@ -2,14 +2,6 @@ + #ifdef _FORTIFY_SOURCE + #undef _FORTIFY_SOURCE + #endif +- +- #define gamma __gamma +-#endif +- +-#include +- +-#ifdef __GNUC__ +- #undef gamma + #endif + + #include +@@ -19,6 +11,7 @@ + #include + #include + #include ++#include + #ifdef __GNUC__ + #include + #include +diff --git a/source/src/protos.h b/source/src/protos.h +index 1c07fad..97b0ee0 100644 +--- a/source/src/protos.h ++++ b/source/src/protos.h +@@ -1053,7 +1053,8 @@ struct servercommandline + { + demo_interm = true; + } +- else if(ai > 0) maxdemos = ai; break; ++ else if(ai > 0) maxdemos = ai; ++ break; + } + case 'W': demopath = a; break; + case 'r': maprot = a; break; +diff --git a/source/src/rendercubes.cpp b/source/src/rendercubes.cpp +index 1940da8..2be7fb0 100644 +--- a/source/src/rendercubes.cpp ++++ b/source/src/rendercubes.cpp +@@ -216,9 +216,9 @@ void render_flat(int wtex, int x, int y, int size, int h, sqr *l1, sqr *l4, sqr + else // continue strip + { + int lighterr = lighterror*2; +- if((abs(ol1r-l3->r)r)g)g)b)b)r)r)g)g)b)b)r)g)b)r)g)b) 0) ? --sp : sp]; // restore color + else if(c == 'b') { if(allowblinkingtext && !ignoreblinkingbit) stack[sp] *= -1; } // blinking text - only if allowed + else stack[sp] = c; +- switch(abs(stack[sp])) ++ switch(iabs(stack[sp])) + { + case '0': color = bvec( 2, 255, 128 ); break; // green: player talk + case '1': color = bvec( 96, 160, 255 ); break; // blue: team chat +@@ -380,7 +380,7 @@ static void text_color(char c, char *stack, int size, int &sp, bvec color, int a + //default: color = bvec( 255, 255, 255 ); break; + } + int b = (int) (sinf(lastmillis / 200.0f) * 115.0f); +- b = stack[sp] > 0 ? 100 : min(abs(b), 100); ++ b = stack[sp] > 0 ? 100 : min(iabs(b), 100); + glColor4ub(color.x, color.y, color.z, (a * b) / 100); + } + } +diff --git a/source/src/tools.h b/source/src/tools.h +index 0aeacff..9eb5a38 100644 +--- a/source/src/tools.h ++++ b/source/src/tools.h +@@ -54,8 +54,7 @@ static inline T min(T a, T b) + { + return a < b ? a : b; + } +- +-static inline float round(float x) { return floor(x + 0.5f); } ++inline int iabs(int n) { return labs(n); } + + #define clamp(a,b,c) (max(b, min(a, c))) + #define rnd(x) ((int)(randomMT()&0xFFFFFF)%(x)) +diff --git a/source/src/world.cpp b/source/src/world.cpp +index 6a1c7bb..99a70eb 100644 +--- a/source/src/world.cpp ++++ b/source/src/world.cpp +@@ -79,9 +79,9 @@ void remip(const block &b, int level) + || o[i]->ceil!=o[3]->ceil + || o[i]->ftex!=o[3]->ftex + || o[i]->ctex!=o[3]->ctex +- || abs(o[i+1]->r-o[0]->r)>lighterr // perfect mip even if light is not exactly equal +- || abs(o[i+1]->g-o[0]->g)>lighterr +- || abs(o[i+1]->b-o[0]->b)>lighterr ++ || iabs(o[i+1]->r-o[0]->r)>lighterr // perfect mip even if light is not exactly equal ++ || iabs(o[i+1]->g-o[0]->g)>lighterr ++ || iabs(o[i+1]->b-o[0]->b)>lighterr + || o[i]->utex!=o[3]->utex + || o[i]->wtex!=o[3]->wtex) goto c; + } +diff --git a/source/src/worldrender.cpp b/source/src/worldrender.cpp +index 8fd3104..45aa606 100644 +--- a/source/src/worldrender.cpp ++++ b/source/src/worldrender.cpp +@@ -297,10 +297,10 @@ void distlod(int &low, int &high, int angle, float widef) + void render_world(float vx, float vy, float vh, float changelod, int yaw, int pitch, float fov, float fovy, int w, int h) + { + loopi(LARGEST_FACTOR) stats[i] = 0; +- min_lod = minimap || (player1->isspectating() && player1->spectatemode == SM_OVERVIEW) ? MAX_LOD : MIN_LOD+abs(pitch)/12; ++ min_lod = minimap || (player1->isspectating() && player1->spectatemode == SM_OVERVIEW) ? MAX_LOD : MIN_LOD+iabs(pitch)/12; + yaw = 360-yaw; + float widef = fov/75.0f; +- int cdist = abs(yaw%90-45); ++ int cdist = iabs(yaw%90-45); + if(cdist<7) // hack to avoid popup at high fovs at 45 yaw + { + min_lod = max(min_lod, (int)(MIN_LOD+(10-cdist)/1.0f*widef)); // less if lod worked better diff -r 228b9c951d97 -r 8b5b2a6d07b8 assaultcube/stuff/patches/series --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/assaultcube/stuff/patches/series Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,3 @@ +# from Arch Linux: +# https://www.archlinux.org/packages/community/x86_64/assaultcube/ +assaultcube-gcc6.patch diff -r 228b9c951d97 -r 8b5b2a6d07b8 clang/.icon.png Binary file clang/.icon.png has changed diff -r 228b9c951d97 -r 8b5b2a6d07b8 clang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clang/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,56 @@ +# SliTaz package receipt v2. + +PACKAGE="clang" +VERSION="5.0.0" # follow llvm +CATEGORY="development" +SHORT_DESC="C language family frontend for LLVM" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="custom" +WEB_SITE="https://clang.llvm.org/" + +TARBALL="cfe-$VERSION.src.tar.xz" +WGET_URL="https://releases.llvm.org/$VERSION/$TARBALL" + +BUILD_DEPENDS="cmake llvm-dev z3-dev" +SPLIT="clang-libs clang-analyzer clang clang-dev" + +compile_rules() { + mkdir build + cd build + + cmake \ + -Wno-dev \ + -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_C_FLAGS_MINSIZEREL_INIT="$CFLAGS" \ + -DCMAKE_CXX_FLAGS_MINSIZEREL_INIT="$CXXFLAGS" \ + -DCMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT="$LDFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_VERBOSE_MAKEFILE=OFF \ + .. && + make clang-tblgen && + make && + make DESTDIR="$install" install +} + +genpkg_rules() { + case $PACKAGE in + clang-libs) + copy *.so* + CAT="development|shared libs" + DEPENDS="llvm-libs" + ;; + clang-analyzer) + copy bin/scan-* libexec/*-analyzer share/scan-* + CAT="development|analysis framework" + DEPENDS="python" + ;; + clang) + copy @std @rm + DEPENDS="clang-libs llvm-libs python clang-analyzer" + ;; + *-dev) + copy @dev + DEPENDS="" + ;; + esac +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 cmake/receipt --- a/cmake/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/cmake/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -13,7 +13,8 @@ WGET_URL="http://www.cmake.org/files/v${VERSION%.*}/$TARBALL" BUILD_DEPENDS="zlib-dev curl-dev bzip2-dev xz-dev libarchive-dev \ -expat-dev ncurses-dev gfortran libuv-dev" +expat-dev ncurses-dev gfortran libuv-dev jsoncpp-dev" +SPLIT="$PACKAGE-common" compile_rules() { sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake @@ -23,7 +24,6 @@ --prefix=/usr \ --system-libs \ --mandir=/share/man \ - --no-system-jsoncpp \ --no-system-librhash \ --docdir=/share/doc/$PACKAGE-$VERSION && make && @@ -31,8 +31,17 @@ } genpkg_rules() { - copy @std @dev - DEPENDS="expat libarchive libcurl libuv ncurses ncurses-libform zlib" + case $PACKAGE in + cmake) + copy bin/ + DEPENDS="cmake-common expat jsoncpp libarchive libcurl libuv \ + ncurses ncurses-libform zlib" + ;; + cmake-common) + copy @std @dev @rm + CAT="development|common files" + ;; + esac } # CMake should be updated both with Boost: diff -r 228b9c951d97 -r 8b5b2a6d07b8 jsoncpp/receipt --- a/jsoncpp/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/jsoncpp/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,19 +11,20 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" -BUILD_DEPENDS="cmake" +BUILD_DEPENDS="meson ninja" +SPLIT="$PACKAGE-dev" compile_rules() { mkdir build cd build - cmake \ - -DCMAKE_CXX_FLAGS="-ffloat-store" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - .. && - make && - make DESTDIR=$DESTDIR install + meson-wrapper && + ninja && + ninja install } genpkg_rules() { - copy @dev + case $PACKAGE in + jsoncpp) copy @std;; + *-dev) copy @dev;; + esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 jsoncpp/stuff/patches/0001-json_writer-fix-build-with-glibc-2.26.patch --- a/jsoncpp/stuff/patches/0001-json_writer-fix-build-with-glibc-2.26.patch Tue Sep 11 11:29:43 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,33 +0,0 @@ -From 2cb87c456f95510d55dd40f783435ecd1177c453 Mon Sep 17 00:00:00 2001 -From: Romain Naour -Date: Sat, 26 Aug 2017 19:39:03 +0200 -Subject: [PATCH] json_writer: fix build with glibc >= 2.26 - -src/lib_json/json_writer.cpp:45:23: error: 'isfinite' is not a member of 'std' - #define isfinite std::isfinite - ^ - -Signed-off-by: Romain Naour ---- - src/lib_json/json_writer.cpp | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/lib_json/json_writer.cpp b/src/lib_json/json_writer.cpp -index 02f1cb1..a3189cb 100644 ---- a/src/lib_json/json_writer.cpp -+++ b/src/lib_json/json_writer.cpp -@@ -42,9 +42,12 @@ - #else - #include - #if !(defined(__QNXNTO__)) // QNX already defines isfinite -+// std::isfinite is not defined on glibc >= 2.26 -+#if !(defined(__GLIBC__) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 26))) - #define isfinite std::isfinite - #endif - #endif -+#endif - - #if defined(_MSC_VER) - #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above --- -2.9.5 diff -r 228b9c951d97 -r 8b5b2a6d07b8 jsoncpp/stuff/patches/series --- a/jsoncpp/stuff/patches/series Tue Sep 11 11:29:43 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -# from http://patchwork.ozlabs.org/patch/809144/ -0001-json_writer-fix-build-with-glibc-2.26.patch diff -r 228b9c951d97 -r 8b5b2a6d07b8 kivy/receipt --- a/kivy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/kivy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ LICENSE="LGPL3" WEB_SITE="http://kivy.org/" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev python-cython mesa-dev glew-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libnjb/receipt --- a/libnjb/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libnjb/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="libnjb" -VERSION="2.2.6" +VERSION="2.2.7" CATEGORY="system-tools" SHORT_DESC="Communicating with the Creative Nomad JukeBox and Dell DJ" MAINTAINER="keupont@no-log.org" @@ -15,21 +15,23 @@ SPLIT="libnjb-dev" compile_rules() { - ./configure $CONFIGURE_ARGS && + ./configure \ + --disable-static \ + $CONFIGURE_ARGS && fix libtool && make && - make DESTDIR=$DESTDIR install + make install } genpkg_rules() { case $PACKAGE in libnjb) copy @std - DEPENDS="libusb-compat" + DEPENDS="libusb-compat ncurses" ;; *-dev) copy @dev - DEPENDS="libnjb libusb zlib" + DEPENDS="libnjb libusb-compat-dev" ;; esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 libnsbmp/receipt --- a/libnsbmp/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libnsbmp/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -2,7 +2,7 @@ PACKAGE="libnsbmp" COMMIT="" -VERSION="0.1.4" +VERSION="0.1.5" CATEGORY="libs" SHORT_DESC="Decoding library for BMP and ICO image file formats" MAINTAINER="al.bobylev@gmail.com" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libnsgif/receipt --- a/libnsgif/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libnsgif/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -2,7 +2,7 @@ PACKAGE="libnsgif" COMMIT="" -VERSION="0.2.0" +VERSION="0.2.1" CATEGORY="libs" SHORT_DESC="Decoding library for the GIF image file format" MAINTAINER="pankso@slitaz.org" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libnsgif/stuff/patches/gcc7.patch --- a/libnsgif/stuff/patches/gcc7.patch Tue Sep 11 11:29:43 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12 +0,0 @@ ---- a/0.2.0/src/lzw.c -+++ b/0.2.0/src/lzw.c -@@ -168,7 +168,9 @@ - const uint8_t *data = ctx->sb_data + (ctx->sb_bit >> 3); - switch (byte_advance) { - case 2: code |= data[2] << 16; -+ /* FALLTHROUGH */ - case 1: code |= data[1] << 8; -+ /* FALLTHROUGH */ - case 0: code |= data[0] << 0; - } - ctx->sb_bit += code_size; diff -r 228b9c951d97 -r 8b5b2a6d07b8 libnsgif/stuff/patches/series --- a/libnsgif/stuff/patches/series Tue Sep 11 11:29:43 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -gcc7.patch diff -r 228b9c951d97 -r 8b5b2a6d07b8 libopenraw/receipt --- a/libopenraw/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libopenraw/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="libopenraw" -VERSION="0.1.2" +VERSION="0.1.3" CATEGORY="graphics" SHORT_DESC="Library for decoding RAW files" MAINTAINER="al.bobylev@gmail.com" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libpano13/receipt --- a/libpano13/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libpano13/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="libpano13" -VERSION="2.9.18" +VERSION="2.9.19" CATEGORY="development" SHORT_DESC="Panorama tools library" MAINTAINER="pascal.bellard@slitaz.org" @@ -11,21 +11,24 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/panotools/$TARBALL" -BUILD_DEPENDS="bash libpng16-dev jpeg-dev tiff-dev" +BUILD_DEPENDS="zlib-dev libpng16-dev libjpeg-turbo-dev tiff-dev" SPLIT="libpano13-dev" compile_rules() { + # to fix: undefined reference to `float2rgbe'; undefined reference to `rgbe2float' + sed -i 's|^INLINE ||' rgbe.h rgbe.c + ./configure $CONFIGURE_ARGS && fix libtool && make && - make DESTDIR=$DESTDIR install + make install } genpkg_rules() { case $PACKAGE in libpano13) copy @std - DEPENDS="libpng16 jpeg tiff" + DEPENDS="libjpeg-turbo libpng16 tiff" ;; *-dev) copy @dev diff -r 228b9c951d97 -r 8b5b2a6d07b8 libparserutils/receipt --- a/libparserutils/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libparserutils/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -2,7 +2,7 @@ PACKAGE="libparserutils" COMMIT="" -VERSION="0.2.3" +VERSION="0.2.4" CATEGORY="system-tools" SHORT_DESC="Library for building efficient parsers" MAINTAINER="pankso@slitaz.org" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libsndfile/receipt --- a/libsndfile/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libsndfile/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,9 +1,9 @@ # SliTaz package receipt v2. PACKAGE="libsndfile" -VERSION="1.0.27" +VERSION="1.0.28" CATEGORY="multimedia" -SHORT_DESC="A C library for reading and writing files containing sampled sound" +SHORT_DESC="Reading and writing files containing sampled sound" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="http://www.mega-nerd.com/libsndfile/" diff -r 228b9c951d97 -r 8b5b2a6d07b8 libsysstat/receipt --- a/libsysstat/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libsysstat/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,13 +1,13 @@ # SliTaz package receipt v2. PACKAGE="libsysstat" -VERSION="0.4.0" +VERSION="0.4.1" CATEGORY="system-tools" SHORT_DESC="Library used to query system info and statistics" MAINTAINER="al.bobylev@gmail.com" LICENSE="LGPL2.1" WEB_SITE="https://github.com/lxde/libsysstat" -LFS="http://www.linuxfromscratch.org/blfs/view/stable/lxqt/libsysstat.html" +LFS="http://www.linuxfromscratch.org/blfs/view/svn/lxqt/libsysstat.html" TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="https://github.com/lxde/libsysstat/releases/download/$VERSION/$TARBALL" @@ -16,7 +16,8 @@ SPLIT="libsysstat-dev" compile_rules() { - mkdir build; cd build + mkdir build + cd build cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ diff -r 228b9c951d97 -r 8b5b2a6d07b8 liburcu/receipt --- a/liburcu/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/liburcu/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="liburcu" -VERSION="0.10.0" +VERSION="0.10.1" CATEGORY="system-tools" SHORT_DESC="Userspace RCU (read-copy-update) library" MAINTAINER="pascal.bellard@slitaz.org" @@ -14,15 +14,22 @@ SPLIT="liburcu-dev" compile_rules() { - ./configure $CONFIGURE_ARGS && + ./configure \ + --disable-static \ + $CONFIGURE_ARGS && fix libtool && make && - make DESTDIR=$DESTDIR install + make install } genpkg_rules() { case $PACKAGE in - liburcu) copy @std;; - *-dev) copy @dev;; + liburcu) + copy @std + ;; + *-dev) + copy @dev + rm -r $fs/usr/share/ # Makefiles in doc/ + ;; esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 libvisio/receipt --- a/libvisio/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libvisio/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="libvisio" -VERSION="0.1.5" +VERSION="0.1.6" CATEGORY="graphics" SHORT_DESC="Interpret and import visio diagrams" MAINTAINER="al.bobylev@gmail.com" @@ -26,12 +26,11 @@ case $PACKAGE in libvisio) copy @std - DEPENDS="icu libicu liblzma librevenge libxml2 zlib" + DEPENDS="libicu librevenge libxml2" ;; *-dev) copy @dev - DEPENDS="libvisio icu-dev librevenge-dev libxml2-dev xz-dev \ - zlib-dev" + DEPENDS="libvisio icu-dev librevenge-dev libxml2-dev" ;; esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 libwapcaplet/receipt --- a/libwapcaplet/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/libwapcaplet/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -2,7 +2,7 @@ PACKAGE="libwapcaplet" COMMIT="" -VERSION="0.4.0" +VERSION="0.4.1" CATEGORY="system-tools" SHORT_DESC="String internment library with rapid string comparison" MAINTAINER="erjo@slitaz.org" diff -r 228b9c951d97 -r 8b5b2a6d07b8 llvm/.icon.png Binary file llvm/.icon.png has changed diff -r 228b9c951d97 -r 8b5b2a6d07b8 lvm2/receipt --- a/lvm2/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/lvm2/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="lvm2" -VERSION="2.02.180" +VERSION="2.02.181" CATEGORY="system-tools" SHORT_DESC="Linux Logical Volume Manager" MAINTAINER="guillaume.michon@laposte.net" diff -r 228b9c951d97 -r 8b5b2a6d07b8 lxlauncher/receipt --- a/lxlauncher/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/lxlauncher/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="lxlauncher" -VERSION="0.2.4" +VERSION="0.2.5" CATEGORY="x-window" SHORT_DESC="LXDE launcher for netbooks" LICENSE="GPL3" @@ -18,7 +18,7 @@ compile_rules() { ./configure $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install || return 1 + make install || return 1 # SliTaz homemade config file install -Dm644 $stuff/gtkrc $install/etc/xdg/lxlauncher/gtkrc @@ -26,7 +26,7 @@ genpkg_rules() { copy @std - DEPENDS="xorg-libX11 gtk+ gnome-menus startup-notification menu-cache \ - xorg-libXdamage" + DEPENDS="cairo gdk-pixbuf glib gtk+ menu-cache startup-notification \ + xorg-libX11 gnome-menus" TAGS="LXDE netbook" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 man-db/receipt --- a/man-db/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/man-db/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="man-db" -VERSION="2.8.3" +VERSION="2.8.4" CATEGORY="system-tools" SHORT_DESC="The on-line manual database" MAINTAINER="al.bobylev@gmail.com" @@ -32,5 +32,6 @@ genpkg_rules() { copy @std DEPENDS="gdbm libpipeline zlib" + CONFIG_FILES="/etc/man_db.conf" TAGS="LFS" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 miau/receipt --- a/miau/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/miau/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,33 +1,22 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="miau" -VERSION="0.6.5" +VERSION="0.6.6" CATEGORY="network" -SHORT_DESC="Another IRC-bouncer/proxy." +SHORT_DESC="Another IRC-bouncer/proxy" MAINTAINER="christophe.paris@free.fr" LICENSE="GPL2" +WEB_SITE="http://miau.sourceforge.net/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://miau.sourceforge.net/" WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL" -# Rules to configure and make the package. -compile_rules() -{ - cd $src - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --docdir=/usr/share/doc \ - $CONFIGURE_ARGS && +compile_rules() { + ./configure $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share $fs/usr +genpkg_rules() { + copy @std } diff -r 228b9c951d97 -r 8b5b2a6d07b8 minetest/.icon.png Binary file minetest/.icon.png has changed diff -r 228b9c951d97 -r 8b5b2a6d07b8 minetest/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minetest/description.txt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,57 @@ +# Minetest + +An InfiniMiner/Minecraft inspired game. + +Copyright (c) 2010-2018 Perttu Ahola +and contributors (see source file comments and the version control log) + +## Further documentation + + - [Website](http://minetest.net/) + - [Wiki](http://wiki.minetest.net/) + - [Developer wiki](http://dev.minetest.net/) + - [Forum](http://forum.minetest.net/) + - [Github](https://github.com/minetest/minetest/) + +## Default controls + +All controls are re-bindable using settings. +Some can be changed in the key config dialog in the settings tab. + +Button | Action +-------------------|------------ +Move mouse | Look around +W, A, S, D | Move +Space | Jump/move up +Shift | Sneak/move down +Q | Drop itemstack +Shift + Q | Drop single item +Left mouse button | Dig/punch/take item +Right mouse button | Place/use +Shift + right mouse button | Build (without using) +I | Inventory menu +Mouse wheel | Select item +0 - 9 | Select item +Z | Zoom (needs zoom privilege) +T | Chat +/ | Command +Esc | Pause menu/abort/exit (pauses only singleplayer game) +R | Enable/disable full range view ++ | Increase view range +- | Decrease view range +K | Enable/disable fly mode (needs fly privilege) +J | Enable/disable fast mode (needs fast privilege) +H | Enable/disable noclip mode (needs noclip privilege) +E | Move fast in fast mode +F1 | Hide/show HUD +F2 | Hide/show chat +F3 | Disable/enable fog +F4 | Disable/enable camera update (Mapblocks are not updated anymore when disabled, disabled in release builds) +F5 | Cycle through debug info screens +F6 | Cycle through profiler info screens +F7 | Cycle through camera modes +F8 | Toggle cinematic mode +F9 | Cycle through minimap modes +Shift + F9 | Change minimap orientation +F10 | Show/hide console +F12 | Take screenshot diff -r 228b9c951d97 -r 8b5b2a6d07b8 minetest/receipt --- a/minetest/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/minetest/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,40 +1,58 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="minetest" -VERSION="0.4.16" +VERSION="0.4.17.1" CATEGORY="games" -SHORT_DESC="An InfiniMiner/Minecraft inspired game." +SHORT_DESC="Multiplayer infinite-world block sandbox" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" +WEB_SITE="http://minetest.net/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://minetest.net/" WGET_URL="https://github.com/minetest/minetest/archive/$VERSION.tar.gz" -TARBALL2="minetest_game-$VERSION.tar.gz" -WGET_URL2="https://github.com/minetest/minetest_game/archive/$VERSION.tar.gz" + +VERSION2="0.4.17" +TARBALL2="minetest_game-$VERSION2.tar.gz" +WGET_URL2="https://github.com/minetest/minetest_game/archive/$VERSION2.tar.gz" + EXTRA_SOURCE_FILES="$WGET_URL2" -DEPENDS="openssl libpng16 jpeg sqlite3 libvorbis openal glu curl \ -mesa irrlicht" -BUILD_DEPENDS="cmake libpng16-dev jpeg-dev sqlite3-dev libogg-dev \ -libvorbis-dev openal-dev freetype-dev xorg-libXxf86vm-dev glu-dev \ -curl-dev mesa-dev irrlicht-dev" +BUILD_DEPENDS="cmake irrlicht-dev gmp-dev jsoncpp-dev luajit-dev curl-dev \ +gettext openal-dev libvorbis-dev xorg-libX11-dev xorg-libXext-dev \ +xorg-libICE-dev xorg-libSM-dev freetype-dev ncurses-dev sqlite3-dev mesa-dev \ +glu-dev libjpeg-turbo-dev bzip2-dev zlib-dev libpng16-dev doxygen graphviz" +SPLIT="$PACKAGE-data" -# Rules to configure and make the package. -compile_rules() -{ - fix math - [ -s "$SRC/$TARBALL2" ] || wget --no-check-certificate \ - -O "$SRC/$TARBALL2" $WGET_URL2 +compile_rules() { +# fix math + + [ -s "$SRC/$TARBALL2" ] || wget -O "$SRC/$TARBALL2" $WGET_URL2 cd games/ tar xf $SRC/$TARBALL2 + mv minetest_game-$VERSION2 minetest_game cd .. - cmake -DCMAKE_INSTALL_PREFIX=/usr . + + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DENABLE_GETTEXT=ON \ + -DENABLE_GLES=ON \ + -DENABLE_SYSTEM_JSONCPP=ON \ + . && make && - make DESTDIR=$DESTDIR install + make install } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - cp -a $install/* $fs/ +genpkg_rules() { + case $PACKAGE in + minetest) + copy bin/ + DEPENDS="minetest-data freetype gmp irrlicht jsoncpp libcurl \ + libsqlite3 libvorbis luajit mesa ncurses openal xorg-libX11 zlib" + ;; + *-data) + copy @std @rm + CAT="games|data files" + DEPENDS=" " + ;; + esac } diff -r 228b9c951d97 -r 8b5b2a6d07b8 openerp-client-etl/receipt --- a/openerp-client-etl/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/openerp-client-etl/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,8 +6,8 @@ SHORT_DESC="Allows to extract, transform and load data from any data source." MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://pypi.python.org/pypi/openerp-client-etl" -WGET_URL="https://pypi.python.org/packages/source/o/$PACKAGE/$TARBALL" +WEB_SITE="https://pypi.org/project/openerp-client-etl" +WGET_URL="https://files.pythonhosted.org/packages/source/o/$PACKAGE/$TARBALL" DEPENDS="python wget" BUILD_DEPENDS="python-dev python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 ptpython/receipt --- a/ptpython/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/ptpython/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -8,7 +8,7 @@ MAINTAINER="paul@slitaz.org" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="https://github.com/jonathanslenders/ptpython" -WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python python-prompt-toolkit python-jedi python-docopt" BUILD_DEPENDS="python-dev python-prompt-toolkit python-jedi python-docopt" diff -r 228b9c951d97 -r 8b5b2a6d07b8 py-asterisk/receipt --- a/py-asterisk/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/py-asterisk/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -10,7 +10,7 @@ SOURCE="py-Asterisk" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" BUILD_DEPENDS="python-dev python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 pymux/receipt --- a/pymux/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/pymux/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ SOURCE="pymux" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" BUILD_DEPENDS="python-dev python-pyte python-prompt-toolkit python-docopt" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-aeroolib/receipt --- a/python-aeroolib/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-aeroolib/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -13,16 +13,12 @@ BUILD_DEPENDS="python" -# Rules to configure and make the package. -compile_rules() -{ +compile_rules() { python setup.py build python setup.py install --root=$DESTDIR } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ +genpkg_rules() { copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-alabaster/receipt --- a/python-alabaster/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-alabaster/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,6 +1,7 @@ # SliTaz package receipt v2. PACKAGE="python-alabaster" +ORIGIN="alabaster" VERSION="latest" CATEGORY="python" SHORT_DESC="A configurable sidebar-enabled Sphinx theme" @@ -12,11 +13,11 @@ BUILD_DEPENDS="python" compile_rules() { - pip install --no-compile --root=$DESTDIR alabaster + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*alabaster-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-antlr/receipt --- a/python-antlr/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-antlr/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,6 +1,7 @@ # SliTaz package receipt v2. PACKAGE="python-antlr" +ORIGIN="antlr4-python2-runtime" VERSION="latest" CATEGORY="development" SHORT_DESC="Language tool for constructing recognizers, compilers for Python" @@ -12,11 +13,11 @@ BUILD_DEPENDS="python" compile_rules() { - pip install --no-compile --root=$DESTDIR antlr4-python2-runtime + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*antlr4-python2-runtime-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-asn1crypto/receipt --- a/python-asn1crypto/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-asn1crypto/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,6 +1,7 @@ # SliTaz package receipt v2. PACKAGE="python-asn1crypto" +ORIGIN="asn1crypto" VERSION="latest" CATEGORY="python" SHORT_DESC="Fast ASN.1 parser and serializer" @@ -13,11 +14,11 @@ BUILD_DEPENDS="python" compile_rules() { - pip install --no-compile --root=$DESTDIR asn1crypto + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*asn1crypto-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-asterisk/receipt --- a/python-asterisk/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-asterisk/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,22 +1,23 @@ # SliTaz package receipt v2. PACKAGE="python-asterisk" +ORIGIN="py-Asterisk" VERSION="latest" CATEGORY="development" SHORT_DESC="Python bindings for the Asterisk Manager API" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/py-Asterisk" +WEB_SITE="https://pypi.org/project/py-Asterisk/" REPOLOGY="py-asterisk" # python:asterisk ? BUILD_DEPENDS="python" compile_rules() { - pip install --no-compile --root=$DESTDIR py-Asterisk + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*py-Asterisk-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-babel/receipt --- a/python-babel/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-babel/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,22 +1,23 @@ # SliTaz package receipt v2. PACKAGE="python-babel" +ORIGIN="Babel" VERSION="latest" CATEGORY="python" SHORT_DESC="A collection of tools for internationalizing Python applications" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/Babel" +WEB_SITE="https://pypi.org/project/Babel/" REPOLOGY="python:babel" BUILD_DEPENDS="python-pytz" compile_rules() { - pip install --no-compile --root=$DESTDIR Babel + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*Babel-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python-pytz" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-backports_abc/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-backports_abc/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-backports_abc/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-backports_abc/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-backports_abc" +ORIGIN="backports_abc" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="A backport of recent additions to the 'collections.abc' module" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="PSF" +WEB_SITE="https://pypi.org/project/$ORIGIN/" +REPOLOGY="python:backports-abc" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*${ORIGIN//_/-}-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-barcode/receipt --- a/python-barcode/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-barcode/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,22 +1,23 @@ # SliTaz package receipt v2. PACKAGE="python-barcode" +ORIGIN="pyBarcode" VERSION="latest" CATEGORY="development" SHORT_DESC="Create standard barcodes" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/pyBarcode" +WEB_SITE="https://pypi.org/project/pyBarcode/" REPOLOGY="python:pybarcode" BUILD_DEPENDS="python" compile_rules() { - pip install --no-compile --root=$DESTDIR pyBarcode + pip install --no-compile --root=$DESTDIR $OROGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*pyBarcode-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-bcrypt/receipt --- a/python-bcrypt/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-bcrypt/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,6 +1,7 @@ # SliTaz package receipt v2. PACKAGE="python-bcrypt" +ORIGIN="bcrypt" VERSION="latest" CATEGORY="python" SHORT_DESC="Modern password hashing for your software and your servers" @@ -12,11 +13,11 @@ BUILD_DEPENDS="python python-six python-cffi" compile_rules() { - pip install --no-compile --root=$DESTDIR bcrypt + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*bcrypt-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-beaker/receipt --- a/python-beaker/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-beaker/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -1,22 +1,23 @@ # SliTaz package receipt v2. PACKAGE="python-beaker" +ORIGIN="Beaker" VERSION="latest" CATEGORY="development" SHORT_DESC="Cache and Session Library" MAINTAINER="taziden@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/Beaker" +WEB_SITE="https://pypi.org/project/Beaker/" REPOLOGY="python:beaker" BUILD_DEPENDS="python-funcsigs" compile_rules() { - pip install --no-compile --root=$DESTDIR Beaker + pip install --no-compile --root=$DESTDIR $ORIGIN } genpkg_rules() { - VERSION=$(sed -n '/^Successfully installed/ s|.*Beaker-||p' $LOGS/$PACKAGE.log) + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) copy @std DEPENDS="python-funcsigs" } diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-blessings/receipt --- a/python-blessings/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-blessings/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="A thin, practical wrapper around terminal coloring, styling, and positioning" MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/blessings" +WEB_SITE="https://pypi.org/project/blessings/" REPOLOGY="python:blessings" BUILD_DEPENDS="python-six" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-bpython/receipt --- a/python-bpython/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-bpython/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="A fancy interface to the Python interpreter" MAINTAINER="claudinei@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/bpython" +WEB_SITE="https://pypi.org/project/bpython/" REPOLOGY="python:bpython" BUILD_DEPENDS="python-dev python-pygments python-greenlet python-requests \ diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-certifi/receipt --- a/python-certifi/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-certifi/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Python package for providing Mozilla's CA Bundle" MAINTAINER="al.bobylev@gmail.com" LICENSE="ISC" -WEB_SITE="https://pypi.python.org/pypi/certifi" +WEB_SITE="https://pypi.org/project/certifi/" REPOLOGY="python:certifi" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-chardet/receipt --- a/python-chardet/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-chardet/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Python module for character encoding auto-detection" MAINTAINER="devel@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="https://pypi.python.org/pypi/chardet" +WEB_SITE="https://pypi.org/project/chardet/" REPOLOGY="python:chardet" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-cheetah/receipt --- a/python-cheetah/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-cheetah/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="Cheetah" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/C/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/C/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-contextlib2/receipt --- a/python-contextlib2/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-contextlib2/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Backports and enhancements for the contextlib module" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/contextlib2" +WEB_SITE="https://pypi.org/project/contextlib2/" REPOLOGY="python:contextlib2" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-cssselect/receipt --- a/python-cssselect/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-cssselect/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="parses CSS3 Selectors and translates them to XPath." MAINTAINER="monghitri@aruba.it" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/cssselect" +WEB_SITE="https://pypi.org/project/cssselect/" REPOLOGY="python:cssselect" SOURCE="cssselect" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/c/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/c/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-cssutils/receipt --- a/python-cssutils/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-cssutils/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="cssutils" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="http://pypi.python.org/packages/source/c/cssutils/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/c/cssutils/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-cups/receipt --- a/python-cups/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-cups/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python bindings for libcups." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://pypi.python.org/pypi/pycups" +WEB_SITE="https://pypi.org/project/pycups/" REPOLOGY="python:pycups" SOURCE="pycups" TARBALL="$SOURCE-$VERSION.tar.bz2" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python libcups" BUILD_DEPENDS="python-dev cups-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-curtsies/receipt --- a/python-curtsies/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-curtsies/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Curses-like terminal wrapper, with colored strings" MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/curtsies" +WEB_SITE="https://pypi.org/project/curtsies/" REPOLOGY="python:curtsies" BUILD_DEPENDS="python-wcwidth python-blessings python-typing" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-decoratortools/receipt --- a/python-decoratortools/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-decoratortools/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Class, function, and metaclass decorators" MAINTAINER="taziden@slitaz.org" LICENSE="PSL" -WEB_SITE="http://pypi.python.org/pypi/DecoratorTools" +WEB_SITE="https://pypi.org/project/DecoratorTools/" REPOLOGY="python:decoratortools" SOURCE="DecoratorTools" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="http://pypi.python.org/packages/source/D/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/D/$SOURCE/$TARBALL" BUILD_DEPENDS="python python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-distribute/receipt --- a/python-distribute/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-distribute/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Distribute legacy wrapper" MAINTAINER="slaxemulator@gmail.com" LICENSE="PSL" -WEB_SITE="http://pypi.python.org/pypi/distribute" +WEB_SITE="https://pypi.org/project/distribute/" REPOLOGY="python:distribute" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-docopt/receipt --- a/python-docopt/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-docopt/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="docopt" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/d/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/d/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-elaphe/receipt --- a/python-elaphe/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-elaphe/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Generates various barcodes using barcode.ps and PIL/Pillow." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/elaphe/" REPOLOGY="python:elaphe" SOURCE="elaphe" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-erppeek/receipt --- a/python-erppeek/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-erppeek/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Versatile tool for browsing Odoo / OpenERP data." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/ERPpeek/" REPOLOGY="python:erppeek" SOURCE="ERPpeek" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-extremes/receipt --- a/python-extremes/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-extremes/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Production-quality 'Min' and 'Max' objects (adapted from PEP 326)." MAINTAINER="pankso@slitaz.org" LICENSE="PSL" -WEB_SITE="http://pypi.python.org/pypi/Extremes" +WEB_SITE="https://pypi.org/project/Extremes" REPOLOGY="python:extremes" SOURCE="Extremes" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="http://pypi.python.org/packages/source/E/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/E/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-foolscap/receipt --- a/python-foolscap/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-foolscap/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Foolscap contains an RPC protocol for Twisted.." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/foolscap" +WEB_SITE="https://pypi.org/project/foolscap/" REPOLOGY="python:foolscap" SOURCE="foolscap" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/f/foolscap/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/f/foolscap/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-formencode/receipt --- a/python-formencode/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-formencode/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="FormEncode" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/F/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/F/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-funcsigs/receipt --- a/python-funcsigs/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-funcsigs/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Python function signatures" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/funcsigs" +WEB_SITE="https://pypi.org/project/funcsigs/" REPOLOGY="python:funcsigs" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-futures/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-futures/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-futures/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-futures/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-futures" +ORIGIN="futures" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Backport of the concurrent.futures package from Python 3" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="PSF" +WEB_SITE="https://pypi.org/project/$ORIGIN/" +REPOLOGY="${PACKAGE/-/:}" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-geojson/receipt --- a/python-geojson/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-geojson/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Encoder/decoder for simple GIS features." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/geojson/" REPOLOGY="python:geojson" SOURCE="geojson" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-gevent-psycopg2/receipt --- a/python-gevent-psycopg2/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-gevent-psycopg2/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="gevent-psycopg2" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" BUILD_DEPENDS="python-distribute python-dev python openssl" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-gevent/receipt --- a/python-gevent/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-gevent/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="gevent" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="wget python-dev python libevent-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-greenlet/receipt --- a/python-greenlet/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-greenlet/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Lightweight in-process concurrent programming" MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/greenlet" +WEB_SITE="https://pypi.org/project/greenlet/" REPOLOGY="python:greenlet" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-html2text/receipt --- a/python-html2text/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-html2text/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="html2text" TARBALL="${SOURCE}-${VERSION}.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/h/html2text/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/h/html2text/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev python-distribute" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-idna/receipt --- a/python-idna/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-idna/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Internationalized Domain Names in Applications" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/idna" +WEB_SITE="https://pypi.org/project/idna/" REPOLOGY="python:idna" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-imagesize/receipt --- a/python-imagesize/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-imagesize/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Getting image size from png/jpeg/jpeg2000/gif file" MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/imagesize" +WEB_SITE="https://pypi.org/project/imagesize/" REPOLOGY="python:imagesize" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-ipy/receipt --- a/python-ipy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-ipy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="IPy" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://cheeseshop.python.org/packages/source/I/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/I/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-jcconv/receipt --- a/python-jcconv/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-jcconv/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python Japanese Characters CONVerter." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/jcconv/" REPOLOGY="python:jcconv" SOURCE="jcconv" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-jedi/receipt --- a/python-jedi/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-jedi/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="jedi" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/j/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/j/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-kid/receipt --- a/python-kid/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-kid/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Pythonic, XML-based Templating." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/kid/" +WEB_SITE="https://pypi.org/project/kid/" REPOLOGY="python:kid" SOURCE="kid" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/k/kid/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/k/kid/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-ldap/receipt --- a/python-ldap/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-ldap/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -10,7 +10,7 @@ REPOLOGY="python:ldap3" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/p/$PACKAGE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$PACKAGE/$TARBALL" DEPENDS="openldap openssl cyrus-sasl python" BUILD_DEPENDS="openldap-dev openssl-dev cyrus-sasl-dev python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-mako/receipt --- a/python-mako/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-mako/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="Mako" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/7a/ae/925434246ee90b42e8ef57d3b30a0ab7caf9a2de3e449b876c56dcb48155/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/M/Mako/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-markupsafe/receipt --- a/python-markupsafe/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-markupsafe/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Implements a XML/HTML/XHTML Markup safe string for Python" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/MarkupSafe" +WEB_SITE="https://pypi.org/project/MarkupSafe/" REPOLOGY="python:markupsafe" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-mechanize/receipt --- a/python-mechanize/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-mechanize/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="mechanize" TARBALL="${SOURCE}-${VERSION}.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/m/mechanize/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/m/mechanize/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev python-distribute" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-mock/receipt --- a/python-mock/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-mock/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="A library for testing in Python." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/pypi/mock/" REPOLOGY="python:mock" SOURCE="mock" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-mpd/receipt --- a/python-mpd/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-mpd/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,11 +6,11 @@ SHORT_DESC="Python MPD client library" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL3" -WEB_SITE="https://pypi.python.org/pypi/python-mpd/" +WEB_SITE="https://pypi.org/project/python-mpd/" REPOLOGY="python:mpd" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="http://pypi.python.org/packages/source/p/python-mpd/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/python-mpd/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-oauth2/receipt --- a/python-oauth2/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-oauth2/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="oauth2" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/o/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/o/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-ofxparse/receipt --- a/python-ofxparse/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-ofxparse/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Tools for working with the OFX (Open Financial Exchange) file format." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/ofxparse" +WEB_SITE="https://pypi.org/project/ofxparse/" REPOLOGY="python:ofxparse" SOURCE="ofxparse" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python python-beautifulsoup4" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-ooop/receipt --- a/python-ooop/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-ooop/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="OpenObject on Python, a library to connect with Open ERP." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -WEB_SITE="http://pypi.python.org/pypi/ooop" +WEB_SITE="https://pypi.org/project/ooop/" REPOLOGY="python:ooop" SOURCE="${PACKAGE#*-}" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-opengl-accelerate/receipt --- a/python-opengl-accelerate/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-opengl-accelerate/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="PyOpenGL-accelerate" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/$SOURCE/$TARBALL" DEPENDS="python python-opengl" BUILD_DEPENDS="python python-dev python-opengl" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-opengl/receipt --- a/python-opengl/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-opengl/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="PyOpenGL" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/$SOURCE/$TARBALL" DEPENDS="python python-numpy python-pil freeglut" BUILD_DEPENDS="python python-dev freeglut-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-packaging/receipt --- a/python-packaging/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-packaging/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Core utilities for Python packages" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/packaging" +WEB_SITE="https://pypi.org/project/packaging/" REPOLOGY="python:packaging" BUILD_DEPENDS="python-six python-pyparsing" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-passlib/receipt --- a/python-passlib/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-passlib/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="comprehensive password hashing framework supporting over 30 schemes." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/$SOURCE" +WEB_SITE="https://pypi.org/project/passlib/" REPOLOGY="python:passlib" SOURCE="passlib" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="wget python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-paste/receipt --- a/python-paste/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-paste/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="Paste" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pastedeploy/receipt --- a/python-pastedeploy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pastedeploy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="PasteDeploy" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python python-paste" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pastescript/receipt --- a/python-pastescript/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pastescript/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="PasteScript" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python python-paste python-pastedeploy" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-peak-rules/receipt --- a/python-peak-rules/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-peak-rules/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Generic functions and business rules support systems" MAINTAINER="al.bobylev@gmail.com" LICENSE="ZPL2.1" -WEB_SITE="https://pypi.python.org/pypi/PEAK-Rules" +WEB_SITE="https://pypi.org/project/PEAK-Rules" REPOLOGY="python:peak-rules" TARBALL="$PACKAGE-$VERSION.tar.gz" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-phonenumbers/receipt --- a/python-phonenumbers/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-phonenumbers/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -7,12 +7,12 @@ MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" WEB_SITE="https://github.com/daviddrysdale/python-phonenumbers" -#https://pypi.python.org/pypi/phonenumbers +#https://pypi.org/project/phonenumbers/ REPOLOGY="python:phonenumbers" SOURCE="phonenumbers" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pillow/receipt --- a/python-pillow/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pillow/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python Imaging Library (Fork)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="PSL" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/Pillow/" REPOLOGY="python:pillow" SOURCE="Pillow" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev tiff-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-prettytable/receipt --- a/python-prettytable/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-prettytable/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python library for easily displaying tabular data in ASCII." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/PrettyTable" +WEB_SITE="https://pypi.org/projects/PrettyTable/" REPOLOGY="python:prettytable" SOURCE="prettytable" TARBALL="${SOURCE}-${VERSION}.tar.bz2" -WGET_URL="http://pypi.python.org/packages/source/P/PrettyTable/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/P/PrettyTable/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev python-distribute" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-prompt-toolkit/receipt --- a/python-prompt-toolkit/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-prompt-toolkit/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -10,7 +10,7 @@ SOURCE="prompt_toolkit" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python python-six python-pygments python-wcwidth" BUILD_DEPENDS="python-dev python-six python-pygments python-wcwidth" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-py/receipt --- a/python-py/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-py/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Library with cross-python path, ini-parsing, io, code, log facilities." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/py" +WEB_SITE="https://pypi.org/project/py/" REPOLOGY="python:py" SOURCE="py" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pycryptopp/receipt --- a/python-pycryptopp/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pycryptopp/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="http://pypi.python.org/pypi/pycryptopp" +WEB_SITE="https://pypi.org/project/pycryptopp/" REPOLOGY="python:pycryptopp" SOURCE="pycryptopp" TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pygments/receipt --- a/python-pygments/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pygments/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Generic syntax highlighter" MAINTAINER="claudinei@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/Pygments" +WEB_SITE="https://pypi.org/project/Pygments/" REPOLOGY="python:pygments" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pygraphviz/receipt --- a/python-pygraphviz/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pygraphviz/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="A Python wrapper for the Graphviz Agraph data structure." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/pygraphviz" +WEB_SITE="https://pypi.org/project/pygraphviz/" REPOLOGY="python:pygraphviz" SOURCE="pygraphviz" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pyliblzma/receipt --- a/python-pyliblzma/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pyliblzma/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -3,15 +3,15 @@ PACKAGE="python-pyliblzma" VERSION="0.5.3" CATEGORY="development" -SHORT_DESC="A Python wrapper for the liblzma library." +SHORT_DESC="A Python wrapper for the liblzma library" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL3" -WEB_SITE="http://pypi.python.org/pypi/pyliblzma" +WEB_SITE="https://pypi.org/project/pyliblzma/" REPOLOGY="python:pyliblzma" SOURCE="pyliblzma" TARBALL="$SOURCE-$VERSION.tar.bz2" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="liblzma python" BUILD_DEPENDS="xz-dev python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pyparsing/receipt --- a/python-pyparsing/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pyparsing/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Python parsing module" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/pyparsing" +WEB_SITE="https://pypi.org/project/pyparsing/" REPOLOGY="python:pyparsing" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pyserial/receipt --- a/python-pyserial/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pyserial/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python Serial Port Extension." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="PSL" -WEB_SITE="https://pypi.python.org/pypi/pyserial" +WEB_SITE="https://pypi.org/project/pyserial/" REPOLOGY="python:pyserial" SOURCE="pyserial" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pyte/receipt --- a/python-pyte/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pyte/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="pyte" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python python-wcwidth" BUILD_DEPENDS="python-dev python-wcwidth" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-pytest/receipt --- a/python-pytest/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-pytest/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="A simple powerful testing with Python" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/pytest" +WEB_SITE="https://pypi.org/project/pytest/" REPOLOGY="python:pytest" SOURCE="pytest" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-qrcode/receipt --- a/python-qrcode/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-qrcode/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Python QR Code image generator." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="PSL" -WEB_SITE="https://pypi.python.org/pypi/qrcode" +WEB_SITE="https://pypi.org/project/qrcode/" REPOLOGY="python:qrcode" SOURCE="qrcode" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python python-pil python-six" BUILD_DEPENDS="python-dev python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-requests/receipt --- a/python-requests/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-requests/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Python HTTP Requests for Humans" MAINTAINER="al.bobylev@gmail.com" LICENSE="Apache" -WEB_SITE="https://pypi.python.org/pypi/requests" +WEB_SITE="https://pypi.org/project/requests/" REPOLOGY="python:requests" BUILD_DEPENDS="python-urllib3 python-idna python-certifi python-chardet" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-rpi-gpio/receipt --- a/python-rpi-gpio/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-rpi-gpio/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,13 +6,13 @@ SHORT_DESC="Python class to control the GPIO on a Raspberry Pi." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/RPi.GPIO" +WEB_SITE="https://pypi.org/project/RPi.GPIO/" REPOLOGY="python:rpi-gpio" HOST_ARCH="arm" SOURCE="RPi.GPIO" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/R/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/R/$SOURCE/$TARBALL" TAGS="raspberrypi rpi" DEPENDS="python python-smbus" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-serial/receipt --- a/python-serial/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-serial/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="pyserial" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/pyserial/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/pyserial/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-shapely/receipt --- a/python-shapely/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-shapely/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Manipulation and analysis of geometric objects in the Cartesian plane." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/Shapely/" REPOLOGY="python:shapely" SOURCE="Shapely" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python geos" BUILD_DEPENDS="python-dev wget geos-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-simplejson/receipt --- a/python-simplejson/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-simplejson/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Simple, fast, extensible JSON encoder/decoder for python." MAINTAINER="claudinei@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/simplejson" +WEB_SITE="https://pypi.org/project/simplejson/" REPOLOGY="python:simplejson" SOURCE="simplejson" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/s/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/s/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-singledispatch/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-singledispatch/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-singledispatch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-singledispatch/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-singledispatch" +ORIGIN="singledispatch" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Brings functools.singledispatch from Python 3.4 to Python 2.6-3.3" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MIT" +WEB_SITE="https://pypi.org/project/$ORIGIN/" +REPOLOGY="${PACKAGE/-/:}" + +BUILD_DEPENDS="python python-six" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python python-six" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-six/receipt --- a/python-six/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-six/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Six is a Python 2 and 3 compatibility library" MAINTAINER="claudinei@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/six" +WEB_SITE="https://pypi.org/project/six/" REPOLOGY="python:six" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-smspdu/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-smspdu/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-smspdu/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-smspdu/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,22 @@ +# SliTaz package receipt v2. + +PACKAGE="python-smspdu" +ORIGIN="smspdu" +VERSION="latest" +CATEGORY="development" +SHORT_DESC="SMS PDU encoding and decoding, including GSM-0338 character set" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://pypi.org/project/$SOURCE/" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGINd-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-snowballstemmer/receipt --- a/python-snowballstemmer/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-snowballstemmer/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="16 stemmer algorithms generated from Snowball algorithms" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/snowballstemmer" +WEB_SITE="https://pypi.org/project/snowballstemmer/" REPOLOGY="python:snowballstemmer" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-soappy/receipt --- a/python-soappy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-soappy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="SOAP services for python." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/SOAPpy" +WEB_SITE="https://pypi.org/project/SOAPpy/" REPOLOGY="python:soappy" SOURCE="SOAPpy" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="https://pypi.python.org/packages/source/S/SOAPpy/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/S/SOAPpy/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-sphinxcontrib-websupport/receipt --- a/python-sphinxcontrib-websupport/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-sphinxcontrib-websupport/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Sphinx API for Web Apps" MAINTAINER="al.bobylev@gmail.com" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/sphinxcontrib-websupport" +WEB_SITE="https://pypi.org/project/sphinxcontrib-websupport/" REPOLOGY="python:sphinxcontrib-websupport" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-sqlalchemy/receipt --- a/python-sqlalchemy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-sqlalchemy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="SQLAlchemy" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/S/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/S/$SOURCE/$TARBALL" DEPENDS="python" SUGGESTED="python-pysqlite" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-tempita/receipt --- a/python-tempita/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-tempita/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Small text templating language" MAINTAINER="taziden@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/Tempita/" +WEB_SITE="https://pypi.org/project/Tempita/" REPOLOGY="python:tempita" SOURCE="Tempita" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/packages/source/T/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/T/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-terminado/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-terminado/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-terminado/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-terminado/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-terminado" +ORIGIN="terminado" +VERSION="latest" +CATEGORY="development" +SHORT_DESC="Terminals served to xterm.js using Tornado websockets" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://pypi.org/project/terminado/" +REPOLOGY="python:terminado" + +BUILD_DEPENDS="python python-tornado" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python-tornado" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-tornado/.icon.png --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-tornado/.icon.png Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,1 @@ +../python/.icon.png \ No newline at end of file diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-tornado/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-tornado/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,25 @@ +# SliTaz package receipt v2. + +PACKAGE="python-tornado" +ORIGIN="tornado" +VERSION="latest" +CATEGORY="development" +SHORT_DESC="A web framework and asynchronous networking library" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="Apache" +WEB_SITE="http://www.tornadoweb.org/" +REPOLOGY="python:tornado" + +BUILD_DEPENDS="python python-futures python-six python-singledispatch \ +python-backports_abc" + +compile_rules() { + pip install --no-compile --root=$DESTDIR $ORIGIN +} + +genpkg_rules() { + VERSION=$(sed -n "/^Successfully installed/ s|.*$ORIGIN-||p" $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python python-futures python-six python-singledispatch \ + python-backports_abc" +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-tweepy/receipt --- a/python-tweepy/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-tweepy/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="tweepy" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/t/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/t/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-typing/receipt --- a/python-typing/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-typing/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Type Hints for Python" MAINTAINER="al.bobylev@gmail.com" LICENSE="PSF" -WEB_SITE="https://pypi.python.org/pypi/typing" +WEB_SITE="https://pypi.org/project/typing/" REPOLOGY="python:typing" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-unidecode/receipt --- a/python-unidecode/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-unidecode/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="ASCII transliterations of Unicode text." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WEB_SITE="https://pypi.org/project/Unidecode/" REPOLOGY="python:unidecode" SOURCE="Unidecode" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-unittest2/receipt --- a/python-unittest2/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-unittest2/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="New features backport to the unittest testing framework." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/unittest2" +WEB_SITE="https://pypi.org/project/unittest2/" REPOLOGY="python:unittest2" SOURCE="unittest2" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-urllib3/receipt --- a/python-urllib3/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-urllib3/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="HTTP library with thread-safe connection pooling, file post, and more" MAINTAINER="al.bobylev@gmail.com" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/urllib3" +WEB_SITE="https://pypi.org/project/urllib3/" REPOLOGY="python:urllib3" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-urwid/receipt --- a/python-urwid/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-urwid/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -11,7 +11,7 @@ SOURCE="urwid" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/u/urwid/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/u/urwid/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev wget" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-wcwidth/receipt --- a/python-wcwidth/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-wcwidth/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,7 +6,7 @@ SHORT_DESC="Measures number of Terminal column cells of wide-character codes" MAINTAINER="paul@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/wcwidth" +WEB_SITE="https://pypi.org/project/wcwidth/" REPOLOGY="python:wcwidth" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-weberror/receipt --- a/python-weberror/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-weberror/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Web Error handling and exception catching" MAINTAINER="taziden@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/" +WEB_SITE="https://pypi.org/project/WebError/" REPOLOGY="python:weberror" SOURCE="WebError" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/packages/source/W/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/W/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-webhelpers/receipt --- a/python-webhelpers/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-webhelpers/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Web Helpers" MAINTAINER="taziden@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/" +WEB_SITE="https://pypi.org/project/WebHelpers/" REPOLOGY="python:webhelpers" SOURCE="WebHelpers" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/packages/source/W/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source//W/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-webtest/receipt --- a/python-webtest/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-webtest/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Helper to test WSGI applications" MAINTAINER="taziden@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/$SOURCE/" +WEB_SITE="https://pypi.org/project/WebTest/" REPOLOGY="python:webtest" SOURCE="WebTest" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/packages/source/W/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/W/$SOURCE/$TARBALL" TAGS="python" DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-whoosh/receipt --- a/python-whoosh/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-whoosh/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="Fast full text indexing, search, and spell checking library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="http://pypi.python.org/pypi/Whoosh/" +WEB_SITE="https://pypi.org/project/Whoosh/" REPOLOGY="python:whoosh" SOURCE="Whoosh" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-xmlutils/receipt --- a/python-xmlutils/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-xmlutils/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,11 +6,11 @@ SHORT_DESC="Convert XML documents to SQL, CSV or JSON." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pypi.python.org/pypi/xmlutils" +WEB_SITE="https://pypi.org/project/xmlutils/" SOURCE="xmlutils" TARBALL="$SOURCE-$VERSION.zip" -WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python" diff -r 228b9c951d97 -r 8b5b2a6d07b8 python-zfec/receipt --- a/python-zfec/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/python-zfec/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,12 +6,12 @@ SHORT_DESC="A fast erasure codec." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://pypi.python.org/pypi/zfec" +WEB_SITE="https://pypi.org/project/zfec/" REPOLOGY="python:zfec" SOURCE="zfec" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/z/zfec/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/z/zfec/$TARBALL" DEPENDS="python" BUILD_DEPENDS="wget python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 pyvim/receipt --- a/pyvim/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/pyvim/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ SOURCE="pyvim" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python python-prompt-toolkit ptpython python-docopt python-pyflakes" BUILD_DEPENDS="python-prompt-toolkit ptpython python-docopt python-pyflakes python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 roundup/receipt --- a/roundup/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/roundup/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ DEPENDS="python" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.roundup-tracker.org" -WGET_URL="http://pypi.python.org/packages/source/r/$PACKAGE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/r/$PACKAGE/$TARBALL" # Rules to configure and make the package. compile_rules() diff -r 228b9c951d97 -r 8b5b2a6d07b8 sqlobject/receipt --- a/sqlobject/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/sqlobject/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ SOURCE="SQLObject" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://sqlobject.org/" -WGET_URL="http://pypi.python.org/packages/source/S/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/S/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 turses/receipt --- a/turses/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/turses/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -8,7 +8,7 @@ LICENSE="GPL3" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://pypi.org/project/turses/" -WGET_URL="http://pypi.python.org/packages/source/t/$PACKAGE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/t/$PACKAGE/$TARBALL" DEPENDS="python python-httplib2 python-urwid python-oauth2 \ python-tweepy" diff -r 228b9c951d97 -r 8b5b2a6d07b8 virtualenv/receipt --- a/virtualenv/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/virtualenv/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -6,11 +6,11 @@ SHORT_DESC="Virtual Python Environment Builder." MAINTAINER="taziden@slitaz.org" LICENSE="MIT" -WEB_SITE="http://pypi.python.org/pypi/virtualenv" +WEB_SITE="https://pypi.org/project/virtualenv/" REPOLOGY="python:virtualenv" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/v/virtualenv/$TARBALL" TAGS="python" DEPENDS="python python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 vnc2flv/receipt --- a/vnc2flv/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/vnc2flv/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ WEB_SITE="http://www.unixuser.org/~euske/python/vnc2flv" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://pypi.python.org/packages/source/v/vnc2flv/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/v/vnc2flv/$TARBALL" compile_rules() { make || return 1 diff -r 228b9c951d97 -r 8b5b2a6d07b8 xhtml2pdf/receipt --- a/xhtml2pdf/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/xhtml2pdf/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -9,7 +9,7 @@ LICENSE="GPL2" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.xhtml2pdf.com" -WGET_URL="http://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python python-reportlab python-html5lib python-pypdf" BUILD_DEPENDS="$DEPENDS python-dev" diff -r 228b9c951d97 -r 8b5b2a6d07b8 z3/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/z3/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt v2. + +PACKAGE="z3" +VERSION="4.7.1" +CATEGORY="development" +SHORT_DESC="The Z3 Theorem Prover" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MIT" +WEB_SITE="https://github.com/Z3Prover/z3" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/Z3Prover/z3/releases/download/$PACKAGE-$VERSION/$TARBALL" + +BUILD_DEPENDS="python" +SPLIT="z3-dev" + +compile_rules() { + python scripts/mk_make.py + cd build + make && + make install +} + +genpkg_rules() { + case $PACKAGE in + z3) + copy @std + DEPENDS="libgomp" + ;; + *-dev) + copy @dev + ;; + esac +} diff -r 228b9c951d97 -r 8b5b2a6d07b8 zopeinterface/receipt --- a/zopeinterface/receipt Tue Sep 11 11:29:43 2018 +0300 +++ b/zopeinterface/receipt Fri Sep 14 01:56:52 2018 +0300 @@ -8,8 +8,8 @@ LICENSE="other" SOURCE="zope.interface" TARBALL="$SOURCE-$VERSION.zip" -WEB_SITE="https://pypi.python.org/pypi/zope.interface" -WGET_URL="https://pypi.python.org/packages/source/z/$SOURCE/$TARBALL" +WEB_SITE="https://pypi.org/project/zope.interface/" +WGET_URL="https://files.pythonhosted.org/packages/source/z/$SOURCE/$TARBALL" TAGS="webserver application-server appserver" DEPENDS="python"