1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

devel/fossology-nomos-standalone: update to 3.11.0

This commit is contained in:
Dmitry Marakasov 2021-08-17 23:01:08 +03:00
parent b63ec35a58
commit 5602ff61ef
7 changed files with 4 additions and 74 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= fossology
PORTVERSION= 3.10.0
PORTREVISION= 1
PORTVERSION= 3.11.0
CATEGORIES= devel
PKGNAMESUFFIX= -nomos-standalone

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1620670653
SHA256 (fossology-fossology-3.10.0_GH0.tar.gz) = eb56e1c2cf426c817f3039308b9886dfdb3d4060b92e14cd29e5505093f066de
SIZE (fossology-fossology-3.10.0_GH0.tar.gz) = 20835469
TIMESTAMP = 1629215142
SHA256 (fossology-fossology-3.11.0_GH0.tar.gz) = f894abc51389da657b22ef45518261955fe4c16a1118d75883c35c7c5f96e7e9
SIZE (fossology-fossology-3.11.0_GH0.tar.gz) = 22268025

View File

@ -1,15 +0,0 @@
--- src/nomos/agent/nomos.c.orig 2021-05-07 09:49:07 UTC
+++ src/nomos/agent/nomos.c
@@ -33,6 +33,12 @@
#include "nomos.h"
#include "nomos_utils.h"
+char debugStr[myBUFSIZ];
+char dbErrString[myBUFSIZ];
+char saveLics[myBUFSIZ];
+
+size_t hashEntries;
+
extern licText_t licText[]; /* Defined in _autodata.c */
struct globals gl;
struct curScan cur;

View File

@ -1,18 +0,0 @@
--- src/nomos/agent/nomos.h.orig 2021-05-07 09:49:07 UTC
+++ src/nomos/agent/nomos.h
@@ -156,11 +156,11 @@
#define OPTS_JSON_OUTPUT 0x20
#define OPTS_SCANNING_DIRECTORY 0x40
-char debugStr[myBUFSIZ]; ///< Debug string
-char dbErrString[myBUFSIZ]; ///< DB error string
-char saveLics[myBUFSIZ]; ///< License string
+extern char debugStr[myBUFSIZ]; ///< Debug string
+extern char dbErrString[myBUFSIZ]; ///< DB error string
+extern char saveLics[myBUFSIZ]; ///< License string
-size_t hashEntries; ///< Hash entries
+extern size_t hashEntries; ///< Hash entries
/**
Flags for program control

View File

@ -1,11 +0,0 @@
--- src/nomos/agent/nomos_regex.h.orig 2021-05-07 09:49:07 UTC
+++ src/nomos/agent/nomos_regex.h
@@ -25,8 +25,6 @@
#include "util.h"
#include "_autodefs.h"
-regex_t regc[NFOOTPRINTS];
-
void regexError(int ret, regex_t *regc, char *regex);
int endsIn(char *s, char *suffix);
int lineInFile(char *pathname, char *regex);

View File

@ -1,12 +0,0 @@
--- src/nomos/agent/nomos_utils.c.orig 2021-05-07 09:49:07 UTC
+++ src/nomos/agent/nomos_utils.c
@@ -23,6 +23,9 @@
#include "nomos_utils.h"
#include "nomos.h"
+sem_t* mutexJson; ///< Mutex to handle JSON writes
+gboolean* printcomma; ///< True to print comma while printing JSON object
+
#define FUNCTION
/**

View File

@ -1,13 +0,0 @@
--- src/nomos/agent/nomos_utils.h.orig 2021-05-07 09:49:07 UTC
+++ src/nomos/agent/nomos_utils.h
@@ -35,8 +35,8 @@
#define LICENSE_REF_TABLE "ONLY license_ref"
#define SEM_DEFAULT_VALUE 4
-sem_t* mutexJson; ///< Mutex to handle JSON writes
-gboolean* printcomma; ///< True to print comma while printing JSON object
+extern sem_t* mutexJson; ///< Mutex to handle JSON writes
+extern gboolean* printcomma; ///< True to print comma while printing JSON object
/** shortname cache very simple nonresizing hash table */