Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Debian Astro Team
astrometry.net
Commits
61c8e2b4
Commit
61c8e2b4
authored
Jan 29, 2022
by
Ole Streicher
Browse files
New upstream version 0.89+dfsg
parent
65a91ed6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
61c8e2b4
...
...
@@ -222,7 +222,7 @@ config: util/os-features-config.h util/makefile.os-features
$(MAKE)
-C
util config
.PHONY
:
config
RELEASE_VER
:=
0.8
8
RELEASE_VER
:=
0.8
9
RELEASE_DIR
:=
astrometry.net-
$(RELEASE_VER)
RELEASE_RMDIRS
:=
net
...
...
@@ -237,7 +237,7 @@ release:
(
cd
$(RELEASE_DIR)
/plot
&&
swig
-python
-I
.
-I
../util
-I
../include/astrometry plotstuff.i
)
(
cd
$(RELEASE_DIR)
/sdss
&&
swig
-python
-I
.
cutils.i
)
cat
$(RELEASE_DIR)
/util/makefile.common |
sed
"s/AN_GIT_REVISION .=.*/AN_GIT_REVISION :=
$$
(git describe)/"
|
sed
"s/AN_GIT_DATE .=.*/AN_GIT_DATE :=
$$
(git log -n 1 --format=%cd | sed 's/ /_/g')/"
>
$(RELEASE_DIR)
/util/makefile.common.x
&&
mv
$(RELEASE_DIR)
/util/makefile.common.x
$(RELEASE_DIR)
/util/makefile.common
cat
$(RELEASE_DIR)
/Makefile |
sed
"s/RELEASE_VER := 0.8
8
cat
$(RELEASE_DIR)
/Makefile |
sed
"s/RELEASE_VER := 0.8
9
tar cf
$(RELEASE_DIR)
.tar
$(RELEASE_DIR)
gzip --best -c
$(RELEASE_DIR)
.tar >
$(RELEASE_DIR)
.tar.gz
bzip2 --best
$(RELEASE_DIR)
.tar
...
...
__init__.py
View file @
61c8e2b4
__version__
=
'0.8
7-10-gd7855b91
'
__version__
=
'0.8
8
'
doc/build.rst
View file @
61c8e2b4
...
...
@@ -94,26 +94,15 @@ First set up homebrew:
* grab `Homebrew <http://mxcl.github.com/homebrew/>`_
* grab `pip <http://www.pip-installer.org/en/latest/installing.html>`_ if you don't have it already
Get homebrew dependencies that need special instructions::
$ brew install --HEAD --use-gcc netpbm
Optionally, grab some other handy homebrew packages::
Optionally, grab some handy homebrew packages::
$ brew install cfitsio --with-examples
$ brew install md5sha1sum # OSX doesn't come with this?! For shame
Get our fork of homebrew-science and i
nstall:
:
I
nstall:
$ brew tap homebrew/homebrew-science
$ brew install astrometry-net
Or::
$ brew install --HEAD astrometry.net
if you like to live dangerously (but trendily).
Mac OS X using Fink:
^^^^^^^^^^^^^^^^^^^^
...
...
libkd/kdint_ttype_l.h
View file @
61c8e2b4
...
...
@@ -5,15 +5,27 @@
typedef
u64
ttype
;
// https://stackoverflow.com/questions/16088282/is-there-a-128-bit-integer-in-gcc
// gcc: 128-bit ints only available on 64-bit platforms, not 32-bit
#ifdef __SIZEOF_INT128__
// GCC only??
typedef
__int128
int128_t
;
typedef
unsigned
__int128
uint128_t
;
static
const
uint128_t
UINT128_MAX
=
(
uint128_t
)((
int128_t
)(
-
1L
));
#define BIGTTYPE uint128_t
#define BIGTTYPE_MAX UINT128_MAX
typedef
uint128_t
bigttype
;
#else
// Fall back to using just 64-bit types. This *should* still work okay, because
// we're careful to check the max possible value before using BIGT types; search
// for "use_tmath" in the code.
#define BIGTTYPE uint64_t
#define BIGTTYPE_MAX UINT64_MAX
typedef
uint64_t
bigttype
;
#endif
#define TTYPE_INTEGER 1
#define TTYPE_MIN 0
...
...
util/makefile.common
View file @
61c8e2b4
...
...
@@ -342,8 +342,8 @@ LDLIBS_DEF := $(LDLIBS)
# Provide for executable programs and FITS headers
# GIT fields: revision, date and url via CFLAGS.
# These fields replace the deprecated SVN fields.
AN_GIT_REVISION
:=
0.8
8
AN_GIT_DATE
:=
Sat
_Jan_
8_15:2
7:2
5
_2022_-0500
AN_GIT_REVISION
:=
0.8
9
AN_GIT_DATE
:=
Mon
_Jan_
17_07:4
7:2
6
_2022_-0500
AN_GIT_URL
:=
https://github.com/dstndstn/astrometry.net
CFLAGS_DEF
+=
-DAN_GIT_REVISION
=
'"
$(AN_GIT_REVISION)
"'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment