Package Details: motivewave 6.9.2-1

Git Clone URL: https://aur.archlinux.org/motivewave.git (read-only, click to copy)
Package Base: motivewave
Description: Advanced trading and charting application.
Upstream URL: https://www.motivewave.com
Keywords: charting forex stocks
Licenses: custom
Submitter: sundbp
Maintainer: xavierbaez
Last Packager: xavierbaez
Votes: 4
Popularity: 0.006399
First Submitted: 2020-11-20 22:16 (UTC)
Last Updated: 2024-04-17 03:52 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

xiota commented on 2023-09-03 02:34 (UTC)

@xavierbaez You forgot to update .SRCINFO: makepkg --printsrcinfo > .SRCINFO

xavierbaez commented on 2023-09-03 02:31 (UTC)

This package has been updated 6 times in the last week.

xavierbaez commented on 2023-09-03 02:14 (UTC) (edited on 2023-09-03 02:59 (UTC) by xavierbaez)

it appears you just want to own this package. You are also duplicating this package, for no other reason than for ego. Nobody will flag an orphan package because they want to own the package, that is , except you of course.

You might want to use this in your computer:

```#!/usr/bin/python2.7 import os import re import glob import datetime import errno from operator import itemgetter

def mkdir_p(path): try: os.makedirs(path) except OSError as exc: # Python >2.5 if exc.errno == errno.EEXIST and os.path.isdir(path): pass else: logError("Could not create directory") raise

def reglob(path, exp, invert=False): """glob.glob() style searching which uses regex :param exp: Regex expression for filename :param invert: Invert match to non matching files """ m = re.compile(exp) if invert is False: res = [f for f in os.listdir(path) if m.search(f)] else: res = [f for f in os.listdir(path) if not m.search(f)] res = map(lambda x: "%s/%s" % ( path, x, ), res) return res

d = '/var/lib/pacman/local' d_old = '/var/lib/pacman/OLD' mkdir_p(d_old) packages = os.listdir(d) for p1 in packages: try: p1_name = re.search(r'^(.?)-([0-9]+)(.)', p1).group(1) except: pass print(p1_name) p = reglob(os.path.join(d), '^{0}-[0-9]+[.-\:].*'.format(re.escape(p1_name))) if len(p) > 1: p_stat = list() for p2 in p: p_stat.append((os.stat(p2).st_mtime, p2)) p_max = max(p_stat, key=itemgetter(0)) for p3 in p_stat: if p3 == p_max: continue p3_basename = os.path.basename(p3[1]) p3_new_path = os.path.join(d_old, p3_basename) print(p3_new_path) os.rename(p3[1], p3_new_path)```

xiota commented on 2023-09-03 00:17 (UTC) (edited on 2023-09-03 00:39 (UTC) by xiota)

@xavierbaez Based on your recent actions, it appears you are unfamiliar with the chown command. Please review its usage with man chown. Syntax error is on line 17 of the PKGBUILD.

xiota commented on 2023-08-28 02:27 (UTC) (edited on 2023-08-28 02:27 (UTC) by xiota)

@MarsSeed Maintainer manually edited .SRCINFO in 2941953 without actually changing PKGBUILD. The issue you reported has not been resolved.

@xavierbaez .SRCINFO files should not be manually edited, but autogenerated by running makepkg --printsrcinfo > .SRCINFO prior to committing and pushing updates. Please correct the mismatch. Please review AUR submission guidelines.

MarsSeed commented on 2023-08-26 11:34 (UTC)

@xavierbaez, thank you, it works well!

xavierbaez commented on 2023-08-26 07:55 (UTC)

Version 6.7.10 This is a bug fix only release. No new features have been added in this update.

xavierbaez commented on 2023-08-26 07:55 (UTC)

Version 6.7.9 This version of MotiveWave contains numerous bug fixes and the following features: 1. Support/Resist Component – Added an option to show top/bottom prices. 2. TradeStation – Upgraded to V3 of the TradeStation API.

xavierbaez commented on 2023-08-26 07:54 (UTC)

Version 6.7.8 This version of MotiveWave contains numerous bug fixes and the following features: 1. Volume Imprint – Added the following options: a. Option to not print the volume using Thousands (K) and millions(M) formatting.

xavierbaez commented on 2023-08-26 07:54 (UTC)

Version 6.7.7 This version of MotiveWave contains numerous bug fixes and the following features: 1. Volume Imprint – Added the following options: a. Scale histogram by Bar, Visible Bars or Chart Session (ETH or RTH) b. Color histogram using Volume or Delta c. Optional reverse coloring for Gradient option