diff options
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/Manifest.gz | bin | 9022 -> 8851 bytes | |||
-rw-r--r-- | sci-electronics/freehdl/Manifest | 5 | ||||
-rw-r--r-- | sci-electronics/freehdl/files/freehdl-0.0.8-fix-c++14.patch | 507 | ||||
-rw-r--r-- | sci-electronics/freehdl/files/freehdl-0.0.8-qa.patch | 279 | ||||
-rw-r--r-- | sci-electronics/freehdl/freehdl-0.0.8.ebuild | 32 | ||||
-rw-r--r-- | sci-electronics/freehdl/metadata.xml | 24 | ||||
-rw-r--r-- | sci-electronics/geda/Manifest | 2 | ||||
-rw-r--r-- | sci-electronics/geda/geda-1.10.2-r2.ebuild | 4 | ||||
-rw-r--r-- | sci-electronics/systemc/Manifest | 2 | ||||
-rw-r--r-- | sci-electronics/systemc/systemc-2.3.4-r2.ebuild | 4 |
10 files changed, 6 insertions, 853 deletions
diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz Binary files differindex fa7808ff8cdf..908e91b8e718 100644 --- a/sci-electronics/Manifest.gz +++ b/sci-electronics/Manifest.gz diff --git a/sci-electronics/freehdl/Manifest b/sci-electronics/freehdl/Manifest deleted file mode 100644 index b803494334c5..000000000000 --- a/sci-electronics/freehdl/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX freehdl-0.0.8-fix-c++14.patch 11726 BLAKE2B ea8c514ccccb56db92c258d982092f17e25054e96a81729e222936a584e52b5d6603f78735600e7c4a100e52627f8ae21b4eba83b7c41b8d2ed77ee255c500bd SHA512 f093ef9599376f5d56e6857365c931094346d0e33d61aef086e427737ac54bcb9667b154f58cb1949e55eeca1a5f8fc8351be4e1e2858a5df1abc23c01179a4b -AUX freehdl-0.0.8-qa.patch 10587 BLAKE2B 3276c73ccbb09cf02ff120548a180283507781aabcc9033ff32a422cff749884504f764a39ba85239a8a4f39fa90ba284febe3d3e5f0e4c193ace19cd2c0719c SHA512 37d4c497fc843e1d57b044782e57a3d38c579301b3ac3b9f3ee1c83f44bc707608bed82339693e09144078b97a65885eeb7e884b74276bc9261206ea35dfaa5d -DIST freehdl-0.0.8.tar.gz 1389888 BLAKE2B 2205f07435bf3cd79d51ccec4c976de5c1d0eb30279ebbaf3bd9ebda274508501421bd6c0b10c2f73989ee4a01f0cc09bfb0542e5e442ea509911fdb5e9ee172 SHA512 731fde1a940a762e570107819a89ac2884029e5c4f5d51e5df0032a4381fd04c7da948b5f2de6b1ce60801f6ce3a0a9123a4902e75e216a1182b25b2134f44ee -EBUILD freehdl-0.0.8.ebuild 598 BLAKE2B 8b28eed7391600eb19ed367a36980dd33db7d6016bfd665776a4bd40770b4985766111a6ee4fc9e4213912cb110802293584561c833da8c2f33c356c6a6857ea SHA512 2ec28ecf39c6ebad74e27ee1d4ec56aba6c3a47f287a81f892c5c905516dd0ed0b641c00a4f4a6de995518519a258fefba190758b10a1942c9e966f3247c0dc9 -MISC metadata.xml 976 BLAKE2B 0dd709eeda8b0cd59534ee6a27e7f7a9e8dc68de94b9c457a5f61e847aae1e99482f4572b2c264b7544828216508d27d13be27962a76695b24c86f1b448c2171 SHA512 b3aac649943f00af0bbbfb9a4d171bf302f502803455ecb81f26dc473bffbe36441f85f2a38d9fbdaa89a159cfed732315ed9b6213f22fe0bea06d8d191b01fe diff --git a/sci-electronics/freehdl/files/freehdl-0.0.8-fix-c++14.patch b/sci-electronics/freehdl/files/freehdl-0.0.8-fix-c++14.patch deleted file mode 100644 index 6da5bb1b27a1..000000000000 --- a/sci-electronics/freehdl/files/freehdl-0.0.8-fix-c++14.patch +++ /dev/null @@ -1,507 +0,0 @@ -C++11 has added new types (std::hash), which get dropped into the namespace due to -awful 'using namespace std;' declarations everywhere, causing name collisions. -Instead, only drop a minimal set of declarations into the global :: namespace. -See also: https://bugs.gentoo.org/show_bug.cgi?id=594706 - ---- a/fire/test-fire.cc -+++ b/fire/test-fire.cc -@@ -2,7 +2,7 @@ - #include <stdio.h> - #include <freehdl/fire.h> - --using namespace std; -+using std::cout; - - extern tree_chunk_info fire_chunk_info; - ---- a/freehdl/cdfggen-chunk.h -+++ b/freehdl/cdfggen-chunk.h -@@ -7,7 +7,9 @@ - #include <string> - #include <vector> - typedef enum {to, downto} cdfgg_direction; --using namespace std; -+using std::string; -+using std::vector; -+using std::pair; - - extern tree_chunk_info cdfggen_chunk_info; - extern tree_ctype_info int_ctype_info; ---- a/freehdl/cdfggen-chunk.t -+++ b/freehdl/cdfggen-chunk.t -@@ -13,8 +13,7 @@ - (header-add "#include <freehdl/tree-supp.h>" - "#include <string>" - "#include <vector>" -- "typedef enum {to, downto} cdfgg_direction;" -- "using namespace std;") -+ "typedef enum {to, downto} cdfgg_direction;") - - (impl-add "#include <freehdl/cdfggen-chunk.h>") - ---- a/freehdl/kernel-attributes.hh -+++ b/freehdl/kernel-attributes.hh -@@ -1,6 +1,8 @@ - #ifndef FREEHDL_KERNEL_ATTRIBUTES_H - #define FREEHDL_KERNEL_ATTRIBUTES_H - -+using std::max; -+ - /* ************************************************************* - * Function kind attributes for signals - * ************************************************************* */ ---- a/freehdl/kernel-db.hh -+++ b/freehdl/kernel-db.hh -@@ -3,6 +3,8 @@ - - #include <assert.h> - -+#include <string> -+using std::string; - - /* This header file includes the definitions that are required to - * setup a kernel database. This database will be used by the kernel -@@ -254,7 +256,7 @@ - - // A hash function template used tp generate a hash number from - // d --class db_basic_key_hash : public hash<unsigned long> { -+class db_basic_key_hash : public __gnu_cxx::hash<unsigned long> { - public: - size_t operator()(const db_basic_key& x) const { - return (*(hash<unsigned long> *)this)(((unsigned long)x.value)>>2); ---- a/freehdl/kernel-dump.hh -+++ b/freehdl/kernel-dump.hh -@@ -13,9 +13,9 @@ - #include <string> - #include <fstream> - --using namespace std; -+using std::fstream; - --typedef map<string, char*, less<string> > Tmap; -+typedef map<string, const char*, less<string> > Tmap; - extern Tmap mapping_translation_table; - - // For each signal which is dumped an virtual process is created. This ---- a/freehdl/kernel-fhdl-stream.hh -+++ b/freehdl/kernel-fhdl-stream.hh -@@ -9,7 +9,9 @@ - #include <string> - #include <iostream> - --using namespace std; -+using std::istream; -+using std::ostream; -+using std::string; - - struct fhdl_ostream_t { - union { ---- a/freehdl/kernel-map-list.hh -+++ b/freehdl/kernel-map-list.hh -@@ -7,7 +7,6 @@ - #include <freehdl/kernel-acl.hh> - #include <freehdl/kernel-sig-info.hh> - --using namespace std; - //using namespace __gnu_cxx; - - // A signal_link instance describes the connection ---- a/freehdl/kernel-name-stack.hh -+++ b/freehdl/kernel-name-stack.hh -@@ -3,7 +3,7 @@ - - #include <string> - --using namespace std; -+using std::string; - - #define NAME_STACK_INCREMENT 10 - ---- a/freehdl/kernel-signal-source-list-array.hh -+++ b/freehdl/kernel-signal-source-list-array.hh -@@ -13,7 +13,6 @@ - #include <freehdl/kernel-util.hh> - #include <freehdl/kernel-source-descriptor.hh> - --using namespace std; - //using namespace __gnu_cxx; - - // signal_source stores information about a source of a signal. Note ---- a/freehdl/kernel-util.hh -+++ b/freehdl/kernel-util.hh -@@ -15,7 +15,8 @@ - #include <hash_map> - #endif - --using namespace std; -+using std::stringstream; -+using std::string; - - #if !defined __GNUC__ || __GNUC__ != 2 - using namespace __gnu_cxx; -@@ -24,7 +25,7 @@ - // A hash function template used tp generate a hash number from - // pointer values. - template<class T> --class pointer_hash : public hash<unsigned long> { -+class pointer_hash : public __gnu_cxx::hash<unsigned long> { - public: - size_t operator()(const T& x) const { - return (*(hash<unsigned long> *)this)(((unsigned long)x)>>2); ---- a/freehdl/std.h -+++ b/freehdl/std.h -@@ -1,7 +1,6 @@ - #ifndef FREEHDL_STD_H - #define FREEHDL_STD_H - --using namespace std; - - #include <freehdl/std-standard.hh> - #include <freehdl/std-vhdl-types.hh> ---- a/freehdl/std-vhdl-types.hh -+++ b/freehdl/std-vhdl-types.hh -@@ -6,13 +6,24 @@ - #include <float.h> - #include <math.h> - #include <iostream> -+#include <map> -+#include <list> -+#include <functional> - #include <string.h> - - #include <freehdl/std-memory.hh> - #include <freehdl/kernel-error.hh> - #include <freehdl/kernel-acl.hh> - --using namespace std; -+using std::string; -+using std::istream; -+using std::ostream; -+using std::min; -+using std::map; -+using std::stringstream; -+using std::list; -+using std::less; -+using std::iostream; - - typedef long long int lint; - const int BUFFER_STREAM_SIZE_INCREMENT = 1024; ---- a/freehdl/vaul-lexer.h -+++ b/freehdl/vaul-lexer.h -@@ -32,7 +32,6 @@ - #include <stdarg.h> - #include <string.h> - --using namespace std; - - #undef yyFlexLexer - #define yyFlexLexer vaul_FlexLexer ---- a/ieee/numeric_std.cc -+++ b/ieee/numeric_std.cc -@@ -2,6 +2,7 @@ - #include <freehdl/std.h> - - -+using std::max; - - /* package :ieee:numeric_std */ - /* External declarations */ ---- a/kernel/attributes.cc -+++ b/kernel/attributes.cc -@@ -5,6 +5,7 @@ - #include <freehdl/kernel-kernel-class.hh> - #include <freehdl/kernel-reader-info.hh> - #include <freehdl/kernel-driver-info.hh> -+using std::max; - #include <freehdl/kernel-attributes.hh> - - ---- a/kernel/db.cc -+++ b/kernel/db.cc -@@ -1,6 +1,5 @@ - #define KERNEL // Include internal kernel definitions - --using namespace std; - #include <freehdl/kernel-db.hh> - - ---- a/kernel/fhdl_stream.cc -+++ b/kernel/fhdl_stream.cc -@@ -7,6 +7,9 @@ - #include <freehdl/kernel-error.hh> - #include <freehdl/kernel-fhdl-stream.hh> - -+using std::cin; -+using std::cout; -+using std::stringstream; - - // Error stream to output error messages generated by the kernel, - // e.g. to print error messages due to invalid simulator commands ---- a/kernel/kernel_class.cc -+++ b/kernel/kernel_class.cc -@@ -16,6 +16,10 @@ - #include <freehdl/kernel-resolver-descriptor.hh> - #include <freehdl/kernel-fhdl-stream.hh> - -+using std::cerr; -+using std::pair; -+using std::binary_function; -+ - // Arguments that are passed in form the command line - int main_argc; - char **main_argv; ---- a/kernel/main.cc -+++ b/kernel/main.cc -@@ -34,6 +34,15 @@ - #include <freehdl/kernel-error.hh> - #include <freehdl/kernel-fhdl-stream.hh> - -+using std::ios; -+using std::ifstream; -+using std::ofstream; -+using std::ostringstream; -+using std::cin; -+using std::cerr; -+using std::cout; -+using std::endl; -+ - #ifdef PERFMON_STATISTICS - #include "pcounter.hh" - #endif ---- a/kernel/map_list.cc -+++ b/kernel/map_list.cc -@@ -4,6 +4,8 @@ - #include <freehdl/kernel-sig-info.hh> - #include <freehdl/kernel-resolver-descriptor.hh> - -+using std::max; -+ - // Stores the father signal(s) of port signals - port_signal_link_map_t port_signal_link_map; - ---- a/kernel/name_stack.cc -+++ b/kernel/name_stack.cc -@@ -1,8 +1,10 @@ - #include <stdlib.h> - #include <stdio.h> -+#include <stack> - #include <freehdl/kernel-error.hh> - #include <freehdl/kernel-name-stack.hh> - -+using std::stack; - - name_stack instance_name; - ---- a/kernel/persistent_cdfg_dump.cc -+++ b/kernel/persistent_cdfg_dump.cc -@@ -3,6 +3,7 @@ - #include <freehdl/kernel-persistent-cdfg-dump.hh> - #include <freehdl/kernel-persistent-dump.hh> - -+using std::endl; - - buffer_stream register_cdfg_tmp_buffer; - ---- a/kernel/sig_info.cc -+++ b/kernel/sig_info.cc -@@ -1,6 +1,5 @@ - #define KERNEL // Include internal kernel definitions - --using namespace std; - #include <freehdl/kernel-error.hh> - #include <freehdl/kernel-db.hh> - #include <freehdl/kernel-sig-info.hh> ---- a/std/internal_textio.cc -+++ b/std/internal_textio.cc -@@ -10,6 +10,10 @@ - #include <freehdl/kernel-name-stack.hh> - #include <freehdl/kernel-register.hh> - -+using std::ios; -+using std::cin; -+using std::cout; -+ - /* package :std:textio */ - - /* Definitions for access type :std:textio:line */ ---- a/std/vhdl_types.cc -+++ b/std/vhdl_types.cc -@@ -12,6 +12,9 @@ - #include <freehdl/kernel-register.hh> - - -+using std::ios; -+using std::ifstream; -+using std::ofstream; - - /* ************************************************************* - * Some global functions ---- a/v2cc/mapping.cc -+++ b/v2cc/mapping.cc -@@ -34,7 +34,12 @@ - #include <iostream> - #include <stdlib.h> - --using namespace std; -+using std::string; -+using std::list; -+using std::map; -+using std::istream; -+using std::ifstream; -+using std::cerr; - - v2cc_mapper::v2cc_mapper () - { ---- a/v2cc/v2cc.cc -+++ b/v2cc/v2cc.cc -@@ -35,7 +35,6 @@ - - */ - --using namespace std; - - #if HAVE_MALLOC_H - #include <malloc.h> ---- a/v2cc/v2cc-const-fold.cc -+++ b/v2cc/v2cc-const-fold.cc -@@ -16,6 +16,9 @@ - #include "v2cc-util.h" - - -+using std::cerr; -+using std::max; -+using std::min; - - // Used to generate error messages - extern vaul_error_printer codegen_error; ---- a/v2cc/v2cc-decl.cc -+++ b/v2cc/v2cc-decl.cc -@@ -13,6 +13,9 @@ - #include "mapping.h" - #include "v2cc-util.h" - -+using std::endl; -+using std::min; -+using std::max; - - void test (RegionStack &rstack) - { ---- a/v2cc/v2cc-explore.cc -+++ b/v2cc/v2cc-explore.cc -@@ -15,7 +15,6 @@ - #include "mapping.h" - #include "v2cc-util.h" - --using namespace std; - - // Used to generate error messages - extern vaul_error_printer codegen_error; ---- a/v2cc/v2cc.h -+++ b/v2cc/v2cc.h -@@ -1,7 +1,17 @@ - #ifndef V2CC_HEADER - #define V2CC_HEADER - --using namespace std; -+using std::vector; -+using std::list; -+using std::string; -+using std::pair; -+using std::string; -+using std::set; -+using std::less; -+using std::deque; -+using std::binary_function; -+using std::map; -+using std::binary_function; - - #include <freehdl/vaul.h> - #include "mapping.h" ---- a/v2cc/v2cc-qid.cc -+++ b/v2cc/v2cc-qid.cc -@@ -4,6 +4,7 @@ - #include "v2cc-util.h" - - -+using std::endl; - - // ****************************************************************************************** - // Name: m_qid , generic function ---- a/v2cc/v2cc-util.cc -+++ b/v2cc/v2cc-util.cc -@@ -9,6 +9,9 @@ - - #include "v2cc-util.h" - -+using std::endl; -+using std::hex; -+using std::dec; - - // ****************************************************************************************** - // Some global variables ---- a/v2cc/v2cc-util.h -+++ b/v2cc/v2cc-util.h -@@ -2,13 +2,18 @@ - #ifndef V2CC_UTIL_H - #define V2CC_UTIL_H - --using namespace std; - - #include <sstream> - #include <iomanip> - #include <freehdl/vaul.h> - #include "v2cc-chunk.h" - -+using std::stringstream; -+using std::setprecision; -+using std::showpoint; -+using std::ofstream; -+using std::cout; -+ - // ****************************************************************************************** - // Some global variables - // ****************************************************************************************** ---- a/vaul/bison-parser.cc -+++ b/vaul/bison-parser.cc -@@ -86,7 +86,6 @@ - #include <malloc.h> - #endif - --using namespace std; - - #define YYINITDEPTH 10000 - #define YYMAXDEPTH 100000 ---- a/vaul/bison-parser.yy -+++ b/vaul/bison-parser.yy -@@ -49,7 +49,6 @@ - #include <malloc.h> - #endif - --using namespace std; - - #define YYINITDEPTH 10000 - #define YYMAXDEPTH 100000 ---- a/vaul/printer.cc -+++ b/vaul/printer.cc -@@ -27,7 +27,8 @@ - #include <string.h> - #include <sstream> - --using namespace std; -+using std::ostringstream; -+using std::ostream; - - void vaul_printer::printf (const char *fmt, ...) - { ---- a/vaul/tree.cc -+++ b/vaul/tree.cc -@@ -31,7 +31,7 @@ - #include <assert.h> - #include <stdlib.h> - --using namespace std; -+using std::ostream; - - vaul_id_set::vaul_id_set(int dummy) - { diff --git a/sci-electronics/freehdl/files/freehdl-0.0.8-qa.patch b/sci-electronics/freehdl/files/freehdl-0.0.8-qa.patch deleted file mode 100644 index d35af9f69a69..000000000000 --- a/sci-electronics/freehdl/files/freehdl-0.0.8-qa.patch +++ /dev/null @@ -1,279 +0,0 @@ -Fix various QA issues: -* Use correct printf format specifiers for 'size_t' -* Fix const correctness ('char*' -> 'const char*') for C-string literals -* Correctly forward declare inline functions - ---- a/fire/test-fire.cc -+++ b/fire/test-fire.cc -@@ -24,7 +24,7 @@ - if (k->size < (size_t) N) - sizes[k->size]++; - if (k->size % 4 !=0) -- printf ("odd size: %d\n", k->size); -+ printf ("odd size: %zu\n", k->size); - } - printf ("min = %d, max = %d\n", min, max); - for (int i = min; i <= max && i < N; i+=4) ---- a/fire/tree-supp.cc -+++ b/fire/tree-supp.cc -@@ -485,7 +485,7 @@ - if (size < (size_t) N) - sizes[size]++; - if (size % 4 !=0) -- printf ("odd size: %d\n", size); -+ printf ("odd size: %zu\n", size); - } - - void ---- a/freehdl/kernel-dump.hh -+++ b/freehdl/kernel-dump.hh -@@ -42,9 +42,9 @@ - short wait_id; - // This function will return an appropriate table entry (if - // available) -- char *find_table(type_info_interface* type); -+ const char *find_table(type_info_interface* type); - //this variable is used by the read_type function -- char* translation_table; -+ const char* translation_table; - // This method is executed each time the signal value changes - bool execute(); - // Continue dumping the signal. -@@ -77,7 +77,7 @@ - extern list<signal_dump*> signal_dump_process_list; - - // Used to store the user_defined translation table types --extern map<string, char*, less<string> > mapping_translation_table; -+extern map<string, const char*, less<string> > mapping_translation_table; - - - /****************************************************** ---- a/freehdl/kernel-fhdl-stream.hh -+++ b/freehdl/kernel-fhdl-stream.hh -@@ -29,7 +31,7 @@ - str->flush(); - } - -- fhdl_ostream_t &operator<<(char *p); -+ fhdl_ostream_t &operator<<(const char *p); - fhdl_ostream_t &operator<<(const string &a); - fhdl_ostream_t &operator<<(const int i); - fhdl_ostream_t &operator<<(const unsigned int i); ---- a/freehdl/std-vhdl-types.hh -+++ b/freehdl/std-vhdl-types.hh -@@ -607,7 +618,7 @@ - // which caused the failure or NULL otherwise. - virtual const char *read(void *dest, const char *str) = 0; - // Prints the content of src into an string stream in VCD format -- virtual void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) = 0; -+ virtual void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) = 0; - // Prints value into binary stream. Note that only the raw data but - // no type info objects are written! The method returns the number - // of bytes written to the stream. -@@ -785,7 +796,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure); -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure); - const char *read(void *dest, const char *str); - - integer check(integer value) { -@@ -821,7 +832,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) {}; -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) {}; - const char *read(void *dest, const char *str); - }; - -@@ -849,7 +860,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode) {}; -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) {}; -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) {}; - const char *read(void *dest, const char *str); - }; - -@@ -879,7 +890,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure); -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure); - const char *read(void *dest, const char *str); - - floatingpoint check(floatingpoint value) { -@@ -914,7 +925,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure); -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure); - const char *read(void *dest, const char *str); - - enumeration check(integer value) { -@@ -954,7 +965,7 @@ - bool assign(void *dest, const void *src); - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) ; -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) ; - const char *read(void *dest, const char *str); - - physical check(physical value) { -@@ -1087,7 +1098,7 @@ - bool assign(void *dest, const void *src) { return false; }; - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) ; -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) ; - const char *read(void *dest, const char *str); - }; - -@@ -1230,7 +1241,7 @@ - bool assign(void *dest, const void *src) { return false; }; - void remove(void *src); - void print(buffer_stream &str, const void *src, int mode); -- void vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure); -+ void vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure); - const char *read(void *dest, const char *str); - }; - ---- a/freehdl/vaul-lexer.h -+++ b/freehdl/vaul-lexer.h -@@ -115,7 +114,7 @@ - IR_String expand_bitstring(const char *, int len); - - int LexerInput(char *buf, int max_size); -- void LexerError(char *msg); -+ void LexerError(const char *msg); - void message(char *fmt, va_list ap); - void message(vaul_yyltype &loc, char *fmt, va_list ap); - ---- a/kernel/driver_info.cc -+++ b/kernel/driver_info.cc -@@ -270,6 +270,7 @@ - - - // Creates transaction composite signals. Returns number of assigned scalars. -+inline int do_record_transport_assignment(driver_info &, const record_base &, int, const vtime &); - inline int - do_array_transport_assignment(driver_info &driver, const array_base &value, int first, const vtime &tr_time) - { -@@ -311,7 +312,6 @@ - assigned_scalars += do_array_transport_assignment(driver, (array_base&)value.data[j], i, tr_time); - break; - case RECORD: -- inline int do_record_transport_assignment(driver_info &, const record_base &, int, const vtime &); - assigned_scalars += do_record_transport_assignment(driver, (record_base&)value.data[j], i, tr_time); - break; - } -@@ -339,6 +339,7 @@ - - - // Creates transaction for composite signals. Returns number of assigned scalars. -+inline int do_record_inertial_assignment(driver_info &, const record_base &, int, const vtime &, const vtime &); - inline int - do_array_inertial_assignment(driver_info &driver, - const array_base &value, int first, -@@ -381,8 +382,6 @@ - assigned_scalars += do_array_inertial_assignment(driver, (array_base&)value.data[j], i, tr_time, rm_time); - break; - case RECORD: -- inline int do_record_inertial_assignment(driver_info &, const record_base &, int, -- const vtime &, const vtime &); - assigned_scalars += do_record_inertial_assignment(driver, (record_base&)value.data[j], i, tr_time, rm_time); - break; - } ---- a/kernel/dump.cc -+++ b/kernel/dump.cc -@@ -90,7 +90,7 @@ - - - // find_translation table --char * -+const char * - signal_dump::find_table(type_info_interface* type) - { - switch(type->id) ---- a/kernel/fhdl_stream.cc -+++ b/kernel/fhdl_stream.cc -@@ -60,7 +63,7 @@ - } - - fhdl_ostream_t & --fhdl_ostream_t::operator<<(char *p) -+fhdl_ostream_t::operator<<(const char *p) - { - if (!socket_connection) - *str << p; ---- a/std/vhdl_types.cc -+++ b/std/vhdl_types.cc -@@ -1013,7 +1016,7 @@ - } - - void --integer_info_base::vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) -+integer_info_base::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) - { - integer op =*((integer*)src); - static char result[INTEGER_SIZE_LD + 1]; -@@ -1306,7 +1309,7 @@ - } - - void --float_info_base::vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) { -+float_info_base::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) { - // should be definitly enough characters to hold a string - // representation of a double - static char rbuffer[8*sizeof(double)]; -@@ -1432,7 +1435,7 @@ - - - void --enum_info_base::vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) -+enum_info_base::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) - { - if (translation_table != NULL) { - const char output = translation_table[*((enumeration*)src)]; -@@ -1583,7 +1586,7 @@ - } - - void --physical_info_base::vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) { -+physical_info_base::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) { - str << *((physical*)src) << " " << units[0]; - } - -@@ -1778,7 +1781,7 @@ - } - - // Temporary VCD_Print function --void array_info::vcd_print(buffer_stream &str, const void *src,char* translation_table, bool pure) -+void array_info::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) - { - //str.clean(); - int length = ((array_base*)src)->info->length; -@@ -2090,7 +2093,7 @@ - - - // Temporary VCD_Print function --void record_info::vcd_print(buffer_stream &str, const void *src, char* translation_table, bool pure) -+void record_info::vcd_print(buffer_stream &str, const void *src, const char* translation_table, bool pure) - { - record_base &record = *(record_base*)src; - record_info &rinfo = *record.info; ---- a/vaul/lexer.cc -+++ b/vaul/lexer.cc -@@ -2075,7 +2075,7 @@ - } - - void --vaul_lexer::LexerError (char *m) -+vaul_lexer::LexerError (const char *m) - { - if (prt) - prt->fprintf (log, "%?%s %C\n", this, m, this); diff --git a/sci-electronics/freehdl/freehdl-0.0.8.ebuild b/sci-electronics/freehdl/freehdl-0.0.8.ebuild deleted file mode 100644 index 9bb8acab3f66..000000000000 --- a/sci-electronics/freehdl/freehdl-0.0.8.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A free VHDL simulator" -SRC_URI="mirror://sourceforge/qucs/${P}.tar.gz" -HOMEPAGE="http://freehdl.seul.org/" -LICENSE="GPL-2" - -SLOT="0" -IUSE="" -KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND=">=dev-scheme/guile-2.0:*" -DEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-0.0.8-fix-c++14.patch" - "${FILESDIR}/${PN}-0.0.8-qa.patch" -) - -src_configure() { - econf --disable-static -} - -src_install() { - default - - # package provides .pc files - find "${D}" -name '*.la' -delete || die -} diff --git a/sci-electronics/freehdl/metadata.xml b/sci-electronics/freehdl/metadata.xml deleted file mode 100644 index 4b6dfed69f58..000000000000 --- a/sci-electronics/freehdl/metadata.xml +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci-electronics@gentoo.org</email> - <name>Gentoo Electronics Project</name> - </maintainer> - <longdescription> - Free, open source, GPL'ed VHDL simulator. The project goal is to develop a - VHDL simulator that : - * Has a graphical waveform viewer. - * Has a source level debugger. - * Is VHDL-93 compliant. - * Is of commercial quality. (on par with, say, V-System - it'll take us a - while to get there, but that should be our aim) - * Is freely distributable - both source and binaries - like Linux itself. - (Under the Gnu General Public License (GPL)). - * Works with Linux. If others want to port it to other platforms they may, - but it is not the goal of this project. - </longdescription> - <upstream> - <remote-id type="sourceforge">qucs</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-electronics/geda/Manifest b/sci-electronics/geda/Manifest index 9641570bb1e7..400192dbd00d 100644 --- a/sci-electronics/geda/Manifest +++ b/sci-electronics/geda/Manifest @@ -5,6 +5,6 @@ AUX geda-1.9.2-guile-2.2.patch 655 BLAKE2B 503f041c3217dc6eaccba95fe5044a88ef08d DIST geda-gaf-1.10.2.tar.gz 14441491 BLAKE2B d6ecc4bc1390ff457396ae406fdeee909418f63d8c50e537215fa0a1131cfda91339f44ddc2c91ca0f3772f4416be1c4448fea45336c78bb601fb9b4df399b14 SHA512 c7beabf019762d9d3b4faa63f1345fb064ebbb6e0203a6c5bcab6b740d20db9f3cedf85c2f99e3ab1cb5396c06886fad1dbd5201eb7bad9e77c03511cf23b1a1 DIST geda-gaf-1.9.2.tar.gz 10612225 BLAKE2B d09accde32f672b984bc2541404efccc886edb15e985bab287b4a619f11fc10cfd2b3ce3074d82c1a61811c4df9e515ecfbc61bd537c6943188b130062bda97f SHA512 5e26ea2cffffe50bd4f0bdb4594af9cc4510386d29c715c2b4ea99c6522838a08cc2045bf65e8b1da01ab33a266fc9f03da42e28b8cc4d5c030001777ab077e3 EBUILD geda-1.10.2-r1.ebuild 2228 BLAKE2B b29c878b05ffe7879b7107d546071044d7dbb790d7e1a18b9afe1d255babd4235f9df75eb47cbb3566c134f30fc2466c7e6e4cd54b0ec45223e39acf415f4b4d SHA512 361ab53aeb6bd90b6430cdff30ce308ef97a734d6a968b330f9a07085c4640729eb626a50a411a06f81123d50973d512a02e50bbb89bc46ca5ba05c4441f4755 -EBUILD geda-1.10.2-r2.ebuild 2278 BLAKE2B 5c46a6f5dee7ec8fb0aa66f0faef04aee88c9a4fe263a63af035aec2d25e2d90eb08ebcffbb0cfa7524fe1c096f6a204d8abe8016e800faaffa9ba71694b0142 SHA512 f4f1db56808bfcba4db18810e8e323d49f47296c1fd443c95c50ae8e9567c22319477aa87a11bb01b8b2277630c3766398837dc9da9cb34579ab6a1b12dd176e +EBUILD geda-1.10.2-r2.ebuild 2277 BLAKE2B bbbb9ea653c4abae95ab61c3288b1359ece672b0a37c84c17a69c7e3eacd1ffff4659842e9be7f746f2ca87a6d5e0b9bab98372a019992037e035ad6cf73825c SHA512 0c4c327cac4bfbb02624a817c533c1910b4428dcc3fe1cb234252a6a22ab8bb6334b494c5da6a6d8e9edf51ccdd57874f0046efa840da9f675c928386171dd3f EBUILD geda-1.9.2-r1.ebuild 2032 BLAKE2B 1c2a55979d12c8c8d942f6b2d2d23bde9cb4a3624bd86df5e70c1116b93802cf4bfb48d94535ef7c53c63be16ca7e32de8f6e4cff5c5bac19398dc8b8ff5d656 SHA512 b7115502572657db48dac3a0420a22f8f4c08501f81b8f94a552cbe8faeb66e008d23fd8aa96c0bf06f30c379ac62f9a692ac8329f4117df3b2cd5ea678d7086 MISC metadata.xml 1108 BLAKE2B 4a11952f3543eac02bd65619442e3dd333c550c93969e5c8032d8f478b19a37763f23d353b9f7bd6b61783c70c5eafce10e493e5fd3a594edcdf93dba926d766 SHA512 9f4527cce78e7e5a69c7cd3f655be7f51f23eed736e94f63ec84dfe19ed7b409512e357f4008a2271f42f4d96c6b86a5aeb244efd6ce10d6a3bbeeb8f65be2d2 diff --git a/sci-electronics/geda/geda-1.10.2-r2.ebuild b/sci-electronics/geda/geda-1.10.2-r2.ebuild index a1e9c74fae8e..219932fee130 100644 --- a/sci-electronics/geda/geda-1.10.2-r2.ebuild +++ b/sci-electronics/geda/geda-1.10.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="debug examples fam nls" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/sci-electronics/systemc/Manifest b/sci-electronics/systemc/Manifest index 7c8000b5354f..c73758a87318 100644 --- a/sci-electronics/systemc/Manifest +++ b/sci-electronics/systemc/Manifest @@ -1,4 +1,4 @@ DIST systemc-2.3.4.tar.gz 7142529 BLAKE2B 8a7e7e9f49b0131c1536d217dcc4fc420bc72ed962736a457cdaf3e40390be2a5051010317a62ba1eca17ee7ee4a171950979d2f07cb7fecc7286d028675540f SHA512 77fd1810fafeaa639cb21fcd77c7132c0ba3cf42309d3e09953c62c92f83b18e6de2e26620cee267683ca851503e5a8419523e7c9161f2ae33aea372af0be966 EBUILD systemc-2.3.4-r1.ebuild 1182 BLAKE2B f239a73bbf18ad782440cf3c20d1b27dc6b65605c1c0786ad88da50da5eabcad225c6f1784eaaee338c5f3371990fbd98efb8310248b446fb579c45609adfd55 SHA512 91aa7cdad82a3e4b0bce5ed6d87887c5cc05f25ca5ec72326cf637f97d874026b0d898b2c6dda113a102e32b7512e8b4f6b58c27de3d085ff2e457f23d0a55fb -EBUILD systemc-2.3.4-r2.ebuild 1223 BLAKE2B 8b15e91d089f634c838eb52e5dd413a7b10870680f4dd1fed4e50570fcfd7fb7cc0707248752d55348bf0373b1c623fea3f138151b05a81ca14579949b872009 SHA512 a2250d479f35b6e3cb6d41cf19a81e5c87799db4027daba948d91ca66f25cfb6b6b29d94d4143af80e7c1d3cb56208c86db9abdc559b7ac2125a34265ec2a194 +EBUILD systemc-2.3.4-r2.ebuild 1222 BLAKE2B 1a2708141ceb0948eb1eae58d96686185fea0a7518ec51bd4413ea1ff24d8f245eed466cdc616125f8e7df455c66f12370bcff92df9f728a4674afaf32ec61bc SHA512 b40847d582a1541497c01d14c270f04303aabdc121de36d2802921b08fffe73772c6f45589ab34f939ec789f7dd825a51c05d91fc8292ce36d76071737665b75 MISC metadata.xml 1094 BLAKE2B 8edeeea6726686d80ea047a7829ffdb313c8e31b80dd6b8c7e6da98102f66635807d4049da38a74197b270f67f25cf875a36234c7cddbe25649039f4fe5a5364 SHA512 e41a951f37b22345d5991e588d9a038df08fa379d7bfaf2b9860aeb2c6dd4795413d9d411a70bdce6f71a624c9b24c329dafd18aee9f2ee1d4368ff72376cd1c diff --git a/sci-electronics/systemc/systemc-2.3.4-r2.ebuild b/sci-electronics/systemc/systemc-2.3.4-r2.ebuild index 9e61f04f5519..098270948b4f 100644 --- a/sci-electronics/systemc/systemc-2.3.4-r2.ebuild +++ b/sci-electronics/systemc/systemc-2.3.4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,7 +18,7 @@ if [[ "${PV}" == "9999" ]] ; then inherit git-r3 else SRC_URI="https://github.com/accellera-official/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~x86" S="${WORKDIR}/${PN}-${MY_PV}" fi |